/* === BedtimeVoice — Global Styles === */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #faf6f0;
  --cream-dark: #f2ebe0;
  --night: #1c1830;
  --plum: #3d2b4e;
  --plum-light: #5a4070;
  --amber: #c97d3a;
  --amber-light: #e0a45e;
  --amber-pale: #f9e8cc;
  --terracotta: #b05a3a;
  --sage: #6b8c6e;
  --sage-light: #9db89f;
  --warm-gray: #8c8078;
  --white: #ffffff;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--night);
  font-size: 16px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* === TYPOGRAPHY === */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  font-weight: 400;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

/* === LAYOUT === */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* === BUTTONS === */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201, 125, 58, 0.35);
}

.btn-primary:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 125, 58, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--amber);
  border: 1.5px solid var(--amber);
}

.btn-outline:hover {
  background: var(--amber-pale);
}

.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
}

/* === HEADER === */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 125, 58, 0.1);
  transition: box-shadow var(--transition);
}

header.scrolled {
  box-shadow: 0 2px 20px rgba(28, 24, 48, 0.08);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--plum);
  letter-spacing: -0.01em;
}

.logo span {
  color: var(--amber);
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  font-size: 0.88rem;
  color: var(--warm-gray);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

nav a:hover {
  color: var(--plum);
  background: var(--cream-dark);
}

.nav-cta {
  background: var(--amber) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 8px;
  font-weight: 500;
}

.nav-cta:hover {
  background: var(--terracotta) !important;
}

/* === HERO === */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 72px;
  background: linear-gradient(135deg, var(--plum) 0%, var(--night) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201, 125, 58, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 60px 40px 60px max(24px, calc((100vw - 1100px) / 2));
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 540px;
  width: 100%;
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  padding: 60px max(24px, calc((100vw - 1100px) / 2)) 60px 40px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 125, 58, 0.15);
  border: 1px solid rgba(201, 125, 58, 0.3);
  color: var(--amber-light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 300;
}

.hero h1 em {
  font-style: italic;
  color: var(--amber-light);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-item::before {
  content: '✓';
  color: var(--sage-light);
  font-size: 0.9rem;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 540px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

/* === FOR WHOM === */

.for-whom {
  background: var(--cream);
}

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.for-whom-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.for-whom-card:hover {
  box-shadow: 0 8px 32px rgba(28, 24, 48, 0.08);
  transform: translateY(-3px);
}

.for-whom-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.for-whom-card h3 {
  color: var(--plum);
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.for-whom-card p {
  color: var(--warm-gray);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* === PROBLEM === */

.problem {
  background: var(--plum);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.problem::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201, 125, 58, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.problem .section-label {
  color: var(--amber-light);
}

.problem h2 {
  color: var(--white);
  max-width: 620px;
  margin-bottom: 48px;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.problem-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
}

.problem-item p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.65;
}

.problem-item p strong {
  color: var(--white);
  font-weight: 500;
}

/* === BENEFITS === */

.benefits {
  background: var(--cream-dark);
}

.benefits-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.benefits-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  height: 460px;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(28, 24, 48, 0.15);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.benefit-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--amber);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  margin-top: 2px;
}

.benefit-item h3 {
  color: var(--plum);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.benefit-item p {
  color: var(--warm-gray);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* === FORMAT === */

.format {
  background: var(--white);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.format-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  transition: box-shadow var(--transition);
}

.format-card:hover {
  box-shadow: 0 6px 24px rgba(28, 24, 48, 0.08);
}

.format-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.format-card h3 {
  color: var(--plum);
  font-size: 1rem;
  margin-bottom: 8px;
}

.format-card p {
  color: var(--warm-gray);
  font-size: 0.87rem;
  line-height: 1.6;
}

/* === WHAT YOU LEARN === */

.learn {
  background: var(--cream);
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.learn-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px;
  border-left: 3px solid var(--amber);
}

.learn-item svg, .learn-check {
  flex-shrink: 0;
  color: var(--amber);
  font-size: 1.2rem;
  margin-top: 1px;
}

.learn-item h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 4px;
}

.learn-item p {
  font-size: 0.87rem;
  color: var(--warm-gray);
  line-height: 1.55;
}

/* === TEACHER === */

.teacher {
  background: var(--cream-dark);
}

.teacher-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}

.teacher-photo {
  position: relative;
}

.teacher-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 500px;
  box-shadow: 0 16px 48px rgba(28, 24, 48, 0.15);
}

.teacher-photo-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: var(--amber);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(201, 125, 58, 0.4);
}

.teacher-content .section-label {
  margin-top: 0;
}

.teacher-content h2 {
  color: var(--plum);
  margin-bottom: 10px;
}

.teacher-title {
  color: var(--amber);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.teacher-bio {
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.teacher-facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.teacher-fact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--plum);
}

.teacher-fact::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

/* === FAQ === */

.faq {
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: var(--cream);
  border: none;
  padding: 20px 24px;
  font-family: var(--font-sans);
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--plum);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--cream-dark);
}

.faq-question.open {
  background: var(--cream-dark);
}

.faq-arrow {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--amber-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 0.9rem;
  transition: transform var(--transition);
}

.faq-question.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
  padding: 0 24px;
  color: var(--warm-gray);
  font-size: 0.93rem;
  line-height: 1.7;
  background: var(--white);
}

.faq-answer.open {
  max-height: 300px;
  padding: 16px 24px 20px;
}

/* === LEAD FORM === */

.lead-form-section {
  background: linear-gradient(135deg, var(--night) 0%, var(--plum) 100%);
  position: relative;
  overflow: hidden;
}

.lead-form-section::before {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(201, 125, 58, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.lead-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lead-form-text h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.lead-form-text p {
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
}

.lead-form-promises {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-form-promise {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.lead-form-promise-icon {
  width: 28px;
  height: 28px;
  background: rgba(201, 125, 58, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber-light);
  font-size: 0.8rem;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.form-card h3 {
  color: var(--plum);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.form-card p {
  color: var(--warm-gray);
  font-size: 0.88rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--night);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(201, 125, 58, 0.12);
  background: var(--white);
}

.form-group input::placeholder {
  color: var(--warm-gray);
}

.form-submit-btn {
  width: 100%;
  margin-top: 8px;
}

.form-disclaimer {
  font-size: 0.76rem;
  color: var(--warm-gray);
  margin-top: 12px;
  line-height: 1.5;
  text-align: center;
}

.form-disclaimer a {
  color: var(--amber);
  text-decoration: underline;
}

/* === FOOTER === */

footer {
  background: var(--night);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.65;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--amber-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.8rem;
  line-height: 1.7;
  max-width: 600px;
}

.footer-legal p {
  margin-bottom: 4px;
}

/* === COOKIE BANNER === */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 680px;
  background: var(--night);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-text {
  flex: 1;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

.cookie-text a {
  color: var(--amber-light);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept {
  padding: 8px 18px;
  background: var(--amber);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-accept:hover {
  background: var(--terracotta);
}

.cookie-decline {
  padding: 8px 12px;
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: none;
  font-size: 0.85rem;
  cursor: pointer;
  transition: color var(--transition);
}

.cookie-decline:hover {
  color: var(--white);
}

/* === LEGAL PAGES === */

.legal-page {
  padding-top: 120px;
  min-height: 100vh;
  background: var(--cream);
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.legal-content h1 {
  color: var(--plum);
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.legal-updated {
  color: var(--warm-gray);
  font-size: 0.85rem;
  margin-bottom: 40px;
}

.legal-content h2 {
  color: var(--plum);
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-content p, .legal-content li {
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content a {
  color: var(--amber);
  text-decoration: underline;
}

/* === SUCCESS PAGE === */

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--night) 0%, var(--plum) 100%);
  padding: 40px 24px;
}

.success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 52px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(107, 140, 110, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

.success-card h1 {
  color: var(--plum);
  font-size: 2rem;
  margin-bottom: 12px;
}

.success-card p {
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 32px;
}

.success-card .btn {
  margin-top: 8px;
}

/* === ANIMATIONS === */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */

@media (max-width: 1024px) {
  .format-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .teacher-inner {
    grid-template-columns: 300px 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 72px;
    text-align: center;
  }

  .hero-content-wrap {
    justify-content: center;
    padding: 60px 24px 40px;
  }

  .hero-image-wrap {
    display: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
  }

  .for-whom-grid {
    grid-template-columns: 1fr;
  }

  .problem-list {
    grid-template-columns: 1fr;
  }

  .benefits-inner {
    grid-template-columns: 1fr;
  }

  .benefits-image {
    order: -1;
  }

  .benefits-image img {
    height: 300px;
  }

  .learn-grid {
    grid-template-columns: 1fr;
  }

  .teacher-inner {
    grid-template-columns: 1fr;
  }

  .teacher-photo img {
    height: 360px;
  }

  .lead-form-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lead-form-text {
    text-align: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }

  nav .nav-links {
    display: none;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-accept {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .format-grid {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 28px 22px;
  }

  .success-card {
    padding: 40px 28px;
  }
}
