/* ============================================
   XELULMOR DIGITAL – RETRO MODERN STYLESHEET
   ============================================ */


:root {
  
  --cream: #F5F0E8;
  --cream-dark: #EDE6D6;
  --mustard: #C8922A;
  --mustard-light: #E0A93D;
  --mustard-pale: #F2DBA0;
  --terracotta: #B85C38;
  --terracotta-light: #D07050;
  --olive: #5C6B3A;
  --olive-light: #7A8B50;
  --dusty-rose: #C4857A;
  --ink: #2A2018;
  --ink-mid: #4A3828;
  --ink-light: #6B5A48;
  --ink-faint: #9A8878;
  --white-warm: #FDFAF4;
  --border: rgba(42,32,24,0.12);
  --border-strong: rgba(42,32,24,0.22);

  
  --shadow-xs: 0 1px 3px rgba(42,32,24,0.08), 0 1px 2px rgba(42,32,24,0.06);
  --shadow-sm: 0 2px 8px rgba(42,32,24,0.10), 0 1px 3px rgba(42,32,24,0.08);
  --shadow-md: 0 4px 16px rgba(42,32,24,0.12), 0 2px 6px rgba(42,32,24,0.08);
  --shadow-lg: 0 8px 32px rgba(42,32,24,0.14), 0 4px 12px rgba(42,32,24,0.10);
  --shadow-xl: 0 16px 48px rgba(42,32,24,0.16), 0 8px 20px rgba(42,32,24,0.10);

  
  --section-pad: clamp(4rem, 8vw, 8rem);
  --container-max: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  
  --font-head: 'Gabarito', serif;
  --font-body: 'Inter', sans-serif;
}


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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body.site-body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main { flex: 1; }

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

a { color: var(--mustard); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--terracotta); }


.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}


.section {
  padding: var(--section-pad) 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(245,240,232,0.98);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 40px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-mid);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--ink);
  background: var(--cream-dark);
}

.nav-link.nav-cta {
  background: var(--mustard);
  color: var(--white-warm);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.nav-link.nav-cta:hover {
  background: var(--terracotta);
  color: var(--white-warm);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.nav-toggle:hover { background: var(--cream-dark); }

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   FLOATING SIDEBAR
   ============================================ */
.floating-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.floating-sidebar.visible {
  opacity: 1;
  pointer-events: auto;
}

.sidebar-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: var(--terracotta);
  color: var(--white-warm);
  padding: 1rem 0.75rem;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-lg);
  transition: background 0.25s ease, transform 0.25s ease;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  flex-direction: row;
  writing-mode: horizontal-tb;
  flex-direction: column;
}

.sidebar-cta-btn:hover {
  background: var(--mustard);
  color: var(--white-warm);
  transform: translateX(-4px);
}

.sidebar-cta-btn i { font-size: 1.1rem; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 8rem clamp(1.25rem, 4vw, 2.5rem) 5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  overflow: hidden;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream-dark);
  border: 1px solid var(--border-strong);
  color: var(--ink-mid);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.875rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
}

.hero-badge i { color: var(--mustard); }

.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}


.hero-heading .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: charReveal 0.6s ease forwards;
}

@keyframes charReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-light);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-scroll-hint {
  color: var(--ink-faint);
  font-size: 1.2rem;
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

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

.hero-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-img-frame:hover .hero-img { transform: scale(1.03); }

.hero-accent-dot {
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--mustard-pale);
  border-radius: 50%;
  bottom: -20px;
  left: -20px;
  z-index: -1;
}

.hero-accent-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 3px solid var(--mustard-pale);
  border-radius: 50%;
  top: -30px;
  right: -30px;
  z-index: -1;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--mustard);
  color: var(--white-warm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--terracotta);
  color: var(--white-warm);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--ink-mid);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-strong);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-ghost:hover {
  border-color: var(--mustard);
  color: var(--mustard);
  background: var(--mustard-pale);
  transform: translateY(-2px);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(245,240,232,0.4);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-ghost-light:hover {
  background: rgba(245,240,232,0.15);
  border-color: rgba(245,240,232,0.7);
  color: var(--white-warm);
  transform: translateY(-2px);
}

.btn-large { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   SECTION TYPOGRAPHY
   ============================================ */
.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--ink-light);
  line-height: 1.75;
  max-width: 600px;
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.body-text {
  font-size: 1.025rem;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* ============================================
   INTRO STRIP
   ============================================ */
.intro-strip {
  background: var(--ink);
  padding: 1.25rem 0;
  overflow: hidden;
}

.strip-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--mustard-pale);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.strip-inner i { color: var(--mustard); margin-right: 0.4rem; }
.strip-divider { color: var(--ink-light); font-size: 1.2rem; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-works-section { background: var(--white-warm); }

.how-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--mustard-pale);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--mustard);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-warm);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.step-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.75;
}

/* ============================================
   FEATURE SECTION
   ============================================ */
.feature-section {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.feature-bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--cream-dark);
  z-index: 0;
}

.feature-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.feature-img-col { position: relative; }

.feature-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-stat-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--terracotta);
  color: var(--white-warm);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  max-width: 240px;
  font-size: 0.85rem;
  line-height: 1.5;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-stat-card i { font-size: 1.5rem; }

.feature-body {
  font-size: 1.025rem;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.feature-points {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1.5rem;
}

.feature-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink-mid);
}

.feature-point i { color: var(--olive); margin-top: 0.15rem; flex-shrink: 0; }

/* ============================================
   TOPICS GRID
   ============================================ */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.topic-card {
  background: var(--white-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--mustard-pale);
}

.topic-icon {
  width: 44px;
  height: 44px;
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mustard);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.topic-card:hover .topic-icon {
  background: var(--mustard);
  color: var(--white-warm);
}

.topic-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.topic-card p {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.7;
}

/* ============================================
   IMAGE BREAK
   ============================================ */
.img-break-section {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.img-break-inner {
  position: relative;
  height: 100%;
}

.img-break-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.img-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42,32,24,0.75) 0%, rgba(42,32,24,0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.img-break-quote {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--cream);
  text-align: center;
  max-width: 700px;
  line-height: 1.5;
  font-style: italic;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section { background: var(--white-warm); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

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

.faq-question:hover { color: var(--mustard); }

.faq-icon {
  flex-shrink: 0;
  color: var(--mustard);
  font-size: 0.9rem;
  transition: transform 0.35s ease;
}

.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

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

.faq-answer.open { max-height: 400px; }

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
}

.faq-answer-inner p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.8;
  padding-top: 1rem;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  background: var(--ink);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.cta-banner-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--mustard);
  opacity: 0.08;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.1;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0.875rem;
}

.cta-body {
  font-size: 1rem;
  color: var(--ink-faint);
  line-height: 1.7;
  max-width: 480px;
}

.cta-action-col {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}

.footer-illustration {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse at bottom right, rgba(200,146,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-illustration::before {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(200,146,42,0.12);
  border-radius: 50%;
}

.footer-illustration::after {
  content: '';
  position: absolute;
  bottom: 60px;
  right: 60px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(200,146,42,0.08);
  border-radius: 50%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  z-index: 1;
}

.footer-logo { height: 36px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1) opacity(0.9); }

.footer-tagline {
  font-size: 0.9rem;
  color: var(--ink-faint);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--ink-light);
  line-height: 1.6;
  padding: 0.75rem;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--mustard);
  opacity: 0.7;
}

.footer-heading {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mustard-pale);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--ink-faint);
  transition: color 0.25s ease;
}

.footer-links a:hover { color: var(--mustard-pale); }

.footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-address p {
  font-size: 0.9rem;
  color: var(--ink-faint);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.footer-address i { color: var(--mustard); margin-top: 0.15rem; flex-shrink: 0; font-size: 0.85rem; }
.footer-address a { color: var(--ink-faint); }
.footer-address a:hover { color: var(--mustard-pale); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  flex-wrap: wrap;
}

.footer-legal p {
  font-size: 0.78rem;
  color: var(--ink-light);
  opacity: 0.6;
  line-height: 1.6;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--ink-light);
  opacity: 0.5;
  white-space: nowrap;
}

/* ============================================
   PAGE HERO (INNER PAGES)
   ============================================ */
.page-hero {
  padding: clamp(6rem, 10vw, 9rem) 0 clamp(3rem, 5vw, 5rem);
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
}

.page-hero-compact {
  padding: clamp(5rem, 8vw, 7rem) 0 clamp(2rem, 4vw, 3rem);
}

.page-hero-content { max-width: 700px; }

.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.page-hero-desc {
  font-size: 1.1rem;
  color: var(--ink-light);
  line-height: 1.75;
  max-width: 560px;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb { margin-bottom: 1.5rem; }

.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--ink-faint);
}

.breadcrumb-list li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  opacity: 0.5;
}

.breadcrumb-list a {
  color: var(--ink-faint);
  transition: color 0.2s;
}

.breadcrumb-list a:hover { color: var(--mustard); }
.breadcrumb-list li[aria-current="page"] { color: var(--ink-mid); font-weight: 500; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(42,32,24,0.3) 100%);
  z-index: 1;
  pointer-events: none;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--white-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.625rem;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--ink-light);
  line-height: 1.75;
}

.approach-section { background: var(--white-warm); }

.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.approach-visual { position: relative; }

.approach-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.approach-accent {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--mustard-pale);
  border-radius: 50%;
  bottom: -20px;
  right: -20px;
  z-index: -1;
}

.disclaimer-box {
  background: var(--mustard-pale);
  border: 1px solid var(--mustard);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.disclaimer-icon {
  font-size: 1.5rem;
  color: var(--mustard);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.disclaimer-text h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.disclaimer-text p {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.75;
}

/* ============================================
   PROGRAMS PAGE
   ============================================ */
.modules-intro { margin-bottom: 2.5rem; }

.module-note {
  background: var(--mustard-pale);
  border: 1px solid var(--mustard);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.65;
}

.module-note i { color: var(--mustard); flex-shrink: 0; margin-top: 0.1rem; }

.module-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.module-card {
  background: var(--white-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--mustard);
  border-radius: 4px 0 0 4px;
}

.module-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(4px);
}

.module-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.module-num-badge {
  background: var(--mustard);
  color: var(--white-warm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-xl);
}

.module-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--ink-faint);
  font-weight: 500;
}

.module-meta i { color: var(--terracotta); }

.module-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.module-desc {
  font-size: 0.975rem;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.module-topics h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 0.875rem;
}

.module-topics ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.module-topics li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.6;
}

.module-topics li i { color: var(--mustard); font-size: 0.8rem; margin-top: 0.2rem; flex-shrink: 0; }

.program-img-wide {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.program-wide-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.program-img-caption {
  padding: 1rem 1.5rem;
  background: var(--ink);
  color: var(--ink-faint);
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.5;
}

/* ============================================
   RESOURCES PAGE
   ============================================ */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.glossary-card {
  background: var(--white-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glossary-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.glossary-term {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--mustard);
  margin-bottom: 0.625rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.glossary-card p {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.7;
}

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

.refs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.ref-card {
  background: var(--white-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ref-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ref-icon {
  width: 44px;
  height: 44px;
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive);
  font-size: 1.1rem;
}

.ref-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.ref-card p {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.7;
}

.resources-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.res-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}

.res-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-card {
  background: var(--white-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.contact-form-note {
  font-size: 0.875rem;
  color: var(--ink-faint);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-mid);
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--cream);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--mustard);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.15);
}

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

.form-privacy { flex-direction: row; align-items: flex-start; gap: 0.75rem; }

.privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--ink-mid);
  line-height: 1.6;
}

.privacy-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  accent-color: var(--mustard);
  cursor: pointer;
}

.privacy-label a { color: var(--mustard); font-weight: 600; }

.form-error {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}

.contact-info-col { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-info-card, .contact-legal-card, .contact-disclaimer-card {
  background: var(--white-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.contact-info-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 36px;
  height: 36px;
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mustard);
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--ink-mid);
}

.contact-info-item a { color: var(--ink-mid); }
.contact-info-item a:hover { color: var(--mustard); }

.contact-legal-card h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin-bottom: 0.875rem;
}

.contact-legal-card p {
  font-size: 0.85rem;
  color: var(--ink-mid);
  line-height: 1.7;
}

.contact-disclaimer-card {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  background: var(--mustard-pale);
  border-color: var(--mustard);
}

.contact-disclaimer-card i { color: var(--mustard); flex-shrink: 0; margin-top: 0.1rem; }

.contact-disclaimer-card p {
  font-size: 0.85rem;
  color: var(--ink-mid);
  line-height: 1.65;
}

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

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ============================================
   THANKS PAGE
   ============================================ */
.thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 4rem 1.5rem;
}

.thanks-container {
  text-align: center;
  max-width: 580px;
}

.thanks-icon {
  font-size: 4rem;
  color: var(--olive);
  margin-bottom: 1.5rem;
}

.thanks-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.thanks-body {
  font-size: 1.05rem;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.thanks-note {
  font-size: 0.875rem;
  color: var(--ink-faint);
  line-height: 1.7;
  padding: 1rem 1.25rem;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.thanks-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-updated {
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-top: 0.5rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--mustard-pale);
}

.legal-section h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink-mid);
  margin-top: 1.25rem;
  margin-bottom: 0.625rem;
}

.legal-section p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.85;
  margin-bottom: 0.875rem;
}

.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: var(--mustard); }
.legal-section a:hover { color: var(--terracotta); }

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--ink);
  border-top: 2px solid var(--mustard);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  padding: 1.25rem;
}

.cookie-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 260px;
}

.cookie-text strong {
  display: block;
  color: var(--cream);
  font-size: 0.95rem;
  margin-bottom: 0.375rem;
}

.cookie-text p {
  color: var(--ink-faint);
  font-size: 0.83rem;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  font-family: var(--font-body);
}

.btn-cookie-accept { background: var(--mustard); color: var(--white-warm); }
.btn-cookie-accept:hover { background: var(--mustard-light); }
.btn-cookie-customize { background: rgba(255,255,255,0.1); color: var(--cream); border: 1px solid rgba(255,255,255,0.2); }
.btn-cookie-customize:hover { background: rgba(255,255,255,0.18); }
.btn-cookie-reject { background: transparent; color: var(--ink-faint); border: 1px solid rgba(255,255,255,0.15); }
.btn-cookie-reject:hover { color: var(--cream); border-color: rgba(255,255,255,0.35); }

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(42,32,24,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.cookie-modal-inner {
  background: var(--white-warm);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-xl);
}

.cookie-modal-inner h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.cookie-category {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.cookie-category:last-of-type { border-bottom: none; }

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.9rem;
  cursor: pointer;
  margin-bottom: 0.375rem;
}

.cookie-category label input { accent-color: var(--mustard); }

.cookie-category p {
  font-size: 0.82rem;
  color: var(--ink-faint);
  line-height: 1.6;
  padding-left: 1.5rem;
}

.badge {
  background: var(--mustard-pale);
  color: var(--mustard);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-xl);
  letter-spacing: 0.03em;
}

.cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 7rem;
    gap: 3rem;
  }

  .hero-visual { max-width: 480px; margin: 0 auto; }

  .feature-inner { grid-template-columns: 1fr; gap: 3rem; }
  .feature-bg-accent { display: none; }
  .feature-stat-card { position: static; max-width: 100%; margin-top: 1rem; }

  .how-works-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .topics-grid { grid-template-columns: repeat(2, 1fr); }

  .about-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-frame { max-width: 480px; }

  .approach-inner { grid-template-columns: 1fr; gap: 3rem; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .resources-img-row { grid-template-columns: 1fr; gap: 2.5rem; }

  .glossary-grid { grid-template-columns: repeat(2, 1fr); }

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

  .contact-layout { grid-template-columns: 1fr; }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.5rem;
    overflow-y: auto;
    z-index: 850;
    border-top: 1px solid var(--border);
  }

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

  .nav-link {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-link.nav-cta { margin-top: 0.5rem; text-align: center; justify-content: center; }

  .nav-toggle { display: flex; }

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

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

  .strip-inner { gap: 0.75rem; }
  .strip-divider { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }

  .img-break-section { height: 300px; }

  .floating-sidebar { display: none; }

  .module-card { padding: 1.75rem; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; justify-content: center; }

  .cta-action-col { flex-direction: column; width: 100%; }
  .cta-action-col .btn-primary, .cta-action-col .btn-ghost-light { width: 100%; justify-content: center; }

  .thanks-actions { flex-direction: column; }
  .thanks-actions .btn-primary, .thanks-actions .btn-ghost { width: 100%; justify-content: center; }

  .disclaimer-box { flex-direction: column; gap: 1rem; }

  .cookie-inner { flex-direction: column; gap: 1rem; }
  .cookie-actions { width: 100%; }
  .btn-cookie { flex: 1; text-align: center; }
}

@media (max-width: 480px) {
  :root { --section-pad: 3rem; }

  .hero-section { padding-top: 6rem; }

  .contact-form-card { padding: 1.5rem; }

  .module-card { padding: 1.5rem; }

  .step-card { padding: 1.75rem 1.5rem; }

  .feature-stat-card { right: 0; }
}