/* ===== BASE RESET & VARIABLES ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #FAF7F3;
  --bg-dark: #2C1810;
  --bg-section: #F2EBE2;
  --accent: #8B3A3A;
  --accent-hover: #6E2C2C;
  --gold: #C4963C;
  --gold-light: #DDB96B;
  --text: #1A1A1A;
  --text-muted: #6B6560;
  --text-light: #F5EEE6;
  --border: #E0D4C8;
  --white: #FFFFFF;

  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 2px 16px rgba(44,24,16,0.08);
  --shadow-md: 0 4px 32px rgba(44,24,16,0.12);

  --container: 1100px;
  --section-py: 88px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(139,58,58,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
}

.btn-light:hover {
  background: var(--bg-section);
}

.btn-lg {
  font-size: 1.05rem;
  padding: 18px 40px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 243, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-dark);
  letter-spacing: -0.02em;
}

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

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 60px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(139,58,58,0.3) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-subtext {
  font-size: 1.1rem;
  color: rgba(245,238,230,0.75);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.82rem;
  color: rgba(245,238,230,0.5);
  margin-top: 20px;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}

.hero-image-badge {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* ===== PAIN SECTION ===== */
.section {
  padding: var(--section-py) 0;
}

.section-alt {
  background: var(--bg-section);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pain-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.pain-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(139,58,58,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.pain-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 600;
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== WHAT IS ACTLIFE ===== */
.what-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.what-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.what-content h2 {
  margin-bottom: 20px;
}

.what-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.what-points {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.what-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.what-points li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(33.33% + 20px);
  right: calc(33.33% + 20px);
  height: 1px;
  background: var(--border);
}

.step {
  text-align: center;
  padding: 0 12px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== FOR WHOM ===== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.audience-card {
  background: var(--bg-dark);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.audience-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(196,150,60,0.15);
}

.audience-card-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.audience-card h3 {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 600;
}

.audience-card p {
  font-size: 0.88rem;
  color: rgba(245,238,230,0.65);
  line-height: 1.6;
}

/* ===== TEACHER ===== */
.teacher-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: start;
}

.teacher-photo {
  position: relative;
}

.teacher-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
}

.teacher-photo-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(44,24,16,0.85);
  backdrop-filter: blur(4px);
  color: var(--text-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.82rem;
}

.teacher-photo-caption strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
  font-family: var(--font-heading);
}

.teacher-content h2 {
  margin-bottom: 20px;
}

.teacher-content p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.7;
}

.teacher-facts {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.teacher-facts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.teacher-facts li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--bg-section);
}

.faq-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.2s;
  font-size: 0.85rem;
  color: var(--accent);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 4px 24px 22px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== LEAD FORM ===== */
.form-section {
  background: var(--bg-dark);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,150,60,0.12) 0%, transparent 70%);
  pointer-events: none;
}

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

.form-intro h2 {
  color: var(--text-light);
  margin-bottom: 18px;
}

.form-intro p {
  color: rgba(245,238,230,0.65);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.form-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(245,238,230,0.75);
}

.form-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

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

.lead-form h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.lead-form .form-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  padding: 12px 14px;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6560' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 24px;
}

.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-consent label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-consent a {
  color: var(--accent);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
}

.form-error {
  font-size: 0.78rem;
  color: var(--accent);
  margin-top: 4px;
  display: none;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--bg-section);
  padding: var(--section-py) 0;
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 16px;
}

.final-cta p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 36px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-dark);
  color: rgba(245,238,230,0.6);
  padding: 56px 0 32px;
}

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

.footer-brand .logo {
  color: var(--text-light);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 300px;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(245,238,230,0.55);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--text-light);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(245,238,230,0.1);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.78rem;
  line-height: 1.7;
}

.footer-legal a {
  color: rgba(245,238,230,0.4);
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--text-light);
}

.footer-copy {
  font-size: 0.78rem;
  text-align: right;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 640px;
  background: var(--bg-dark);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 999;
  border: 1px solid rgba(196,150,60,0.25);
  transition: opacity 0.3s, transform 0.3s;
}

.cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}

.cookie-text {
  font-size: 0.85rem;
  color: rgba(245,238,230,0.75);
  line-height: 1.5;
  flex: 1;
}

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

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

.cookie-accept {
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  border-radius: var(--radius);
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

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

.cookie-decline {
  background: transparent;
  color: rgba(245,238,230,0.45);
  border: none;
  padding: 9px 12px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: color 0.2s;
}

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

/* ===== INNER PAGES ===== */
.inner-hero {
  background: var(--bg-dark);
  padding: 60px 0;
  color: var(--text-light);
}

.inner-hero h1 {
  color: var(--text-light);
  margin-bottom: 10px;
}

.inner-hero p {
  color: rgba(245,238,230,0.6);
  font-size: 0.9rem;
}

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

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

.inner-content h3 {
  font-size: 1.05rem;
  margin-top: 24px;
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text);
}

.inner-content p {
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.75;
}

.inner-content ul {
  color: var(--text-muted);
  padding-left: 20px;
  margin-bottom: 14px;
  line-height: 1.8;
}

.inner-content a {
  color: var(--accent);
  text-decoration: underline;
}

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.success-wrap {
  max-width: 520px;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(139,58,58,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
}

.success-wrap h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.success-wrap p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-light);
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  :root { --section-py: 64px; }

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

  .hero-image-wrap {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-image-wrap img {
    height: 360px;
  }

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

  .what-image {
    max-width: 480px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps::before { display: none; }

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

  .teacher-photo {
    max-width: 360px;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root { --section-py: 52px; }

  .header-nav { display: none; }
  .header-actions .btn { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 52px 0 48px; }

  .hero-image-wrap img { height: 280px; }

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

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

  .lead-form {
    padding: 28px 20px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .footer-copy {
    text-align: left;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    width: 100%;
    max-width: 100%;
    left: 0;
    transform: none;
  }

  .cookie-banner.hidden {
    transform: translateY(20px);
  }
}
