/* ============================================
   JAREVRIX HUB — MAIN STYLESHEET
   Design: Mesh Gradient + Modern Split
   ============================================ */


:root {
  --color-bg: #f4f2f8;
  --color-surface: #ffffff;
  --color-surface-tinted: #faf9fd;
  --color-primary: #6c47d8;
  --color-primary-deep: #4a2fa8;
  --color-secondary: #2dd4bf;
  --color-accent: #f472b6;
  --color-accent-warm: #fb923c;
  --color-text: #1a1628;
  --color-text-muted: #5a5470;
  --color-text-light: #8b84a0;
  --color-border: rgba(108, 71, 216, 0.12);
  --color-border-light: rgba(108, 71, 216, 0.07);

  --gradient-primary: linear-gradient(135deg, #6c47d8 0%, #2dd4bf 100%);
  --gradient-warm: linear-gradient(135deg, #6c47d8 0%, #f472b6 60%, #fb923c 100%);
  --gradient-mesh-base: radial-gradient(ellipse at 20% 50%, rgba(108, 71, 216, 0.35) 0%, transparent 60%),
                        radial-gradient(ellipse at 80% 20%, rgba(45, 212, 191, 0.3) 0%, transparent 55%),
                        radial-gradient(ellipse at 60% 80%, rgba(244, 114, 182, 0.25) 0%, transparent 50%),
                        radial-gradient(ellipse at 10% 90%, rgba(251, 146, 60, 0.2) 0%, transparent 50%),
                        #0f0b1e;

  --shadow-sm: 0 1px 3px rgba(26, 22, 40, 0.08), 0 1px 2px rgba(26, 22, 40, 0.04);
  --shadow-md: 0 4px 12px rgba(26, 22, 40, 0.10), 0 2px 4px rgba(26, 22, 40, 0.06);
  --shadow-lg: 0 12px 32px rgba(26, 22, 40, 0.12), 0 4px 8px rgba(26, 22, 40, 0.08);
  --shadow-xl: 0 24px 56px rgba(26, 22, 40, 0.14), 0 8px 16px rgba(26, 22, 40, 0.08);
  --shadow-primary: 0 8px 24px rgba(108, 71, 216, 0.30), 0 2px 6px rgba(108, 71, 216, 0.15);
  --shadow-card-hover: 0 20px 48px rgba(26, 22, 40, 0.16), 0 6px 12px rgba(108, 71, 216, 0.10);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 7rem;

  --nav-height: 72px;
  --transition-fast: 0.18s ease;
  --transition-base: 0.28s ease;
  --transition-slow: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


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

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

body.canvas {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }


h1, h2, h3, h4, h5 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.section-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: var(--space-md);
}

.body-large {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

p { color: var(--color-text-muted); margin-bottom: var(--space-sm); }
p:last-child { margin-bottom: 0; }


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}


.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(108, 71, 216, 0.08);
  padding: 0.35em 0.9em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-header.centered {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header.centered .section-heading {
  margin-bottom: var(--space-sm);
}


.canvas-section {
  padding: var(--space-2xl) 0;
  position: relative;
}


.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.mesh-orb--1 { width: 600px; height: 600px; background: rgba(108, 71, 216, 0.4); top: -10%; left: -15%; }
.mesh-orb--2 { width: 500px; height: 500px; background: rgba(45, 212, 191, 0.35); top: 20%; right: -10%; }
.mesh-orb--3 { width: 450px; height: 450px; background: rgba(244, 114, 182, 0.3); bottom: 5%; left: 30%; }
.mesh-orb--4 { width: 350px; height: 350px; background: rgba(251, 146, 60, 0.25); top: 50%; left: 50%; }
.mesh-orb--5 { width: 500px; height: 500px; background: rgba(108, 71, 216, 0.25); top: 0; right: 0; }
.mesh-orb--6 { width: 400px; height: 400px; background: rgba(45, 212, 191, 0.2); bottom: 0; left: 10%; }
.mesh-orb--7 { width: 700px; height: 700px; background: rgba(108, 71, 216, 0.45); top: -20%; left: -20%; }
.mesh-orb--8 { width: 600px; height: 600px; background: rgba(244, 114, 182, 0.35); bottom: -20%; right: -10%; }
.mesh-orb--9 { width: 800px; height: 800px; background: rgba(108, 71, 216, 0.2); top: -30%; left: -20%; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
}

.nav-bar.nav-transparent {
  background: transparent;
}

.nav-bar.nav-scrolled,
.nav-bar.nav-bar--solid {
  background: rgba(244, 242, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--color-border), var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-left: auto;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.nav-link:hover, .nav-link.active { color: var(--color-primary); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }


.nav-transparent .nav-link { color: rgba(255,255,255,0.8); }
.nav-transparent .nav-link:hover, .nav-transparent .nav-link.active { color: #fff; }
.nav-transparent .nav-link::after { background: rgba(255,255,255,0.7); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(108, 71, 216, 0.38);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-transparent .nav-hamburger span { background: #fff; }

/* ============================================
   MOBILE DRAWER (Bottom Sheet)
   ============================================ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 20, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.drawer-overlay.active { opacity: 1; pointer-events: all; }

.drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: var(--color-surface);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: var(--space-sm) var(--space-lg) calc(var(--space-lg) + env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform var(--transition-slow);
  box-shadow: 0 -8px 40px rgba(26, 22, 40, 0.18);
}

.drawer.open { transform: translateY(0); }

.drawer-handle {
  width: 40px;
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  margin: 0 auto var(--space-md);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.drawer-link i { color: var(--color-primary); width: 20px; }
.drawer-link:hover, .drawer-link.active { background: rgba(108, 71, 216, 0.07); color: var(--color-primary); }

.drawer-cta { display: block; text-align: center; width: 100%; justify-content: center; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(108, 71, 216, 0.38);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.25);
  background: transparent;
  transition: all var(--transition-fast);
}

.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  background: transparent;
  transition: all var(--transition-fast);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}

/* ============================================
   HERO (STAGE)
   ============================================ */
.stage {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-mesh-base);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.stage-mesh { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.stage-curtain {
  position: absolute;
  inset: 0;
  background: rgba(15, 11, 30, 0.25);
  pointer-events: none;
}

.stage-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

.stage-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  animation: fadeSlideUp 0.7s ease both;
}

.stage-headline {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
  animation: fadeSlideUp 0.7s 0.1s ease both;
}

.headline-accent {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stage-subline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  animation: fadeSlideUp 0.7s 0.2s ease both;
}

.stage-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  animation: fadeSlideUp 0.7s 0.3s ease both;
}

.stage-visual {
  display: flex;
  justify-content: flex-end;
  animation: fadeSlideRight 0.9s 0.2s ease both;
}

.stage-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.1);
  max-width: 480px;
  width: 100%;
}

.stage-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.stage-card-badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(244, 242, 248, 0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.stage-card-badge i { color: var(--color-primary); }

.stage-scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  animation: float 3s ease-in-out infinite;
}

.stage-scroll-hint i { font-size: 0.7rem; }

/* ============================================
   INTRO SECTION
   ============================================ */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.intro-left .section-label { margin-bottom: var(--space-sm); }
.intro-left .section-heading { font-size: clamp(1.6rem, 3vw, 2.4rem); }

/* ============================================
   PILLARS GALLERY
   ============================================ */
.gallery { display: grid; gap: var(--space-md); }
.pillars-gallery { grid-template-columns: repeat(3, 1fr); }

.pillar-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.pillar-icon-wrap {
  padding: var(--space-md) var(--space-md) 0;
  font-size: 1.4rem;
  color: var(--color-primary);
}

.pillar-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin: var(--space-sm) 0 0;
}

.pillar-body {
  padding: var(--space-md);
  flex: 1;
}

.pillar-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--color-text);
}

/* ============================================
   APPROACH SECTION
   ============================================ */
.section-approach,
.section-approach-detail {
  position: relative;
  overflow: hidden;
}

.approach-mesh { position: absolute; inset: 0; overflow: hidden; pointer-events: none; opacity: 0.7; }

.approach-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.approach-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.approach-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: block;
}

.approach-float-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}

.approach-float-card i { color: var(--color-secondary); font-size: 1.1rem; }

.approach-text .section-heading { font-size: clamp(1.6rem, 3vw, 2.4rem); }

/* ============================================
   COMPARE TABLE
   ============================================ */
.section-compare { background: var(--color-surface-tinted); }

.compare-wrap { overflow-x: auto; }

.compare-table-container {
  min-width: 640px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
}

.compare-table thead tr {
  background: var(--color-surface-tinted);
}

.compare-table th {
  padding: 1.5rem 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.compare-table th.compare-feature-col {
  text-align: left;
  width: 35%;
}

.compare-table th.recommended {
  background: rgba(108, 71, 216, 0.06);
  position: relative;
}

.compare-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.tier-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}

.tier-sub {
  font-size: 0.75rem;
  color: var(--color-text-light);
  font-weight: 400;
}

.tier-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.25em 0.75em;
  border-radius: var(--radius-full);
  margin-bottom: 0.25rem;
}

.compare-table td {
  padding: 1rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: background var(--transition-fast);
}

.compare-table td.compare-feature-col,
.compare-table td.feature-name {
  text-align: left;
  font-weight: 500;
  color: var(--color-text);
}

.compare-table td.recommended {
  background: rgba(108, 71, 216, 0.04);
}

.compare-table tr:hover td { background: rgba(108, 71, 216, 0.03); }
.compare-table tr:hover td.recommended { background: rgba(108, 71, 216, 0.07); }

.compare-check { color: var(--color-primary); font-size: 1rem; }
.compare-minus { color: var(--color-border); font-size: 0.9rem; }

.compare-cta-row td { border-bottom: none; padding-top: 1.5rem; padding-bottom: 1.5rem; }

.btn-compare {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
  transition: all var(--transition-fast);
}

.btn-compare:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-compare--accent {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-primary);
}

.btn-compare--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(108, 71, 216, 0.38);
  background: var(--gradient-primary);
  color: #fff;
}

/* ============================================
   CTA BAND
   ============================================ */
.section-cta-band {
  background: var(--gradient-mesh-base);
  position: relative;
  overflow: hidden;
  padding: var(--space-2xl) 0;
}

.cta-band-mesh { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.cta-band-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cta-band-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-band-text p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }

.cta-band-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================
   INNER HERO (SUB-PAGES)
   ============================================ */
.inner-hero {
  position: relative;
  background: var(--gradient-mesh-base);
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
  overflow: hidden;
}

.inner-hero--short {
  padding-bottom: var(--space-xl);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.inner-hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: var(--space-sm);
  animation: fadeSlideUp 0.7s ease both;
}

.inner-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  animation: fadeSlideUp 0.7s 0.1s ease both;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-origin-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-img-stack { position: relative; }

.about-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-surface);
}

.about-img-secondary {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.values-gallery { grid-template-columns: repeat(4, 1fr); }

.value-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.value-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.value-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.approach-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.approach-detail-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.approach-num {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(108, 71, 216, 0.1);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}

.approach-detail-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--color-text);
}

/* ============================================
   HOW IT WORKS PAGE
   ============================================ */
.how-overview-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.how-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}

.step-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-md);
  align-items: start;
  transition-delay: var(--delay, 0s);
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-primary);
  flex-shrink: 0;
}

.step-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, rgba(108, 71, 216, 0.4), rgba(108, 71, 216, 0.05));
  margin-top: 0.5rem;
}

.step-content {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
  margin-bottom: var(--space-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.step-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--color-text);
}


.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.faq-q {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.faq-q i { color: var(--color-primary); margin-top: 2px; flex-shrink: 0; }

.faq-a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.section-contact-main { background: var(--color-surface-tinted); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-light);
}

.contact-info-title {
  font-size: 1.4rem;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border-light);
}

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

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(108, 71, 216, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: 0.9rem;
}

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

.contact-info-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.contact-info-item a {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.contact-info-item a:hover { color: var(--color-primary-deep); }

.contact-form-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-light);
}

.contact-form-title {
  font-size: 1.4rem;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-sm);
}

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

.req { color: var(--color-primary); }

.form-group input,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-surface-tinted);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(108, 71, 216, 0.12);
  background: var(--color-surface);
}

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

.form-privacy {
  margin-top: 0.5rem;
}

.privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.privacy-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.privacy-label a { color: var(--color-primary); text-decoration: underline; }

.form-error {
  color: #dc2626;
  font-size: 0.85rem;
  min-height: 1.2em;
  margin-bottom: 0.5rem;
}

.btn-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }

.team-intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.team-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

/* ============================================
   THANKS PAGE
   ============================================ */
.thanks-main {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-xl);
  background: var(--gradient-mesh-base);
}

.thanks-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 520px;
}

.envelope-wrap {
  margin-bottom: var(--space-lg);
}

.envelope {
  width: 100px;
  height: 72px;
  position: relative;
  margin: 0 auto;
  animation: envelopeAppear 0.5s ease both;
}

.envelope-body {
  width: 100%;
  height: 100%;
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.envelope-flap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: rgba(108, 71, 216, 0.12);
  transform-origin: top center;
  animation: flapOpen 0.6s 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
  border-bottom: 2px solid rgba(108, 71, 216, 0.1);
}

.envelope-letter {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 56px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  animation: letterRise 0.5s 0.9s ease both;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px;
}

.letter-lines span {
  display: block;
  height: 2px;
  background: rgba(108, 71, 216, 0.25);
  border-radius: 2px;
  width: 40px;
}

.thanks-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: var(--space-sm);
  animation: fadeSlideUp 0.6s 1.2s ease both;
}

.thanks-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
  animation: fadeSlideUp 0.6s 1.35s ease both;
}

.thanks-note {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
  animation: fadeSlideUp 0.6s 1.5s ease both;
}

.thanks-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeSlideUp 0.6s 1.65s ease both;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-main { padding-top: var(--nav-height); }

.legal-hero {
  background: var(--color-surface-tinted);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-xl) 0;
}

.legal-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.legal-meta {
  color: var(--color-text-light);
  font-size: 0.875rem;
  margin: 0;
}

.legal-body {
  max-width: 760px;
  padding: var(--space-2xl) 0;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.legal-body h2 {
  font-size: 1.3rem;
  color: var(--color-text);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-body h3 {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}

.legal-body p { margin-bottom: var(--space-sm); }

.legal-body strong { color: var(--color-text); }

.legal-body em {
  font-style: normal;
  font-family: monospace;
  font-size: 0.85em;
  background: rgba(108, 71, 216, 0.07);
  padding: 0.15em 0.4em;
  border-radius: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  position: relative;
  overflow: hidden;
  background: #0f0b1e;
  color: rgba(255,255,255,0.7);
  padding: var(--space-2xl) 0 0;
}

.footer-mesh { position: absolute; inset: 0; overflow: hidden; pointer-events: none; opacity: 0.4; }

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img { margin-bottom: var(--space-sm); filter: brightness(0) invert(1); opacity: 0.9; }

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.footer-address {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  line-height: 1.5;
}

.footer-address i { margin-top: 3px; color: var(--color-primary); }

.footer-nav-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--space-sm);
}

.footer-nav-list { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-nav-list a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}

.footer-nav-list a:hover { color: #fff; }

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
  transition: color var(--transition-fast);
}

.footer-contact-link:hover { color: #fff; }
.footer-contact-link i { color: var(--color-primary); }

.footer-bottom {
  position: relative;
  z-index: 2;
  padding: var(--space-md) 0;
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.footer-disclaimer {
  max-width: 480px;
  text-align: right;
}

/* ============================================
   COOKIE CONSENT (Bottom-Right Card)
   ============================================ */
.cookie-consent-card {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  width: 320px;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(26, 22, 40, 0.2), 0 4px 12px rgba(108, 71, 216, 0.12), 0 0 0 1px var(--color-border);
  padding: var(--space-md);
  transform: translateY(calc(100% + 40px));
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  overflow: hidden;
}

.cookie-consent-card.visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent-card.expanded { height: auto; }

.cookie-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(108, 71, 216, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.cookie-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.cookie-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: var(--space-sm);
}

.cookie-desc a { color: var(--color-primary); text-decoration: underline; }

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookie-btn-accept {
  padding: 0.7rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  text-align: center;
  cursor: pointer;
  border: none;
}

.cookie-btn-accept:hover { transform: translateY(-2px); }

.cookie-btn-customize {
  padding: 0.65rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-border);
  transition: all var(--transition-fast);
  text-align: center;
  cursor: pointer;
}

.cookie-btn-customize:hover { border-color: var(--color-primary); background: rgba(108, 71, 216, 0.05); }

.cookie-btn-reject {
  padding: 0.55rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  background: transparent;
  color: var(--color-text-light);
  border: none;
  transition: color var(--transition-fast);
  text-align: center;
  cursor: pointer;
}

.cookie-btn-reject:hover { color: var(--color-text); }

.cookie-toggles {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border-light);
}

.cookie-toggles.visible { display: flex; }

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.cookie-toggle-info strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
}

.cookie-toggle-info span {
  font-size: 0.72rem;
  color: var(--color-text-light);
}

.cookie-toggle {
  position: relative;
  width: 38px;
  height: 22px;
  flex-shrink: 0;
}

.cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--color-primary); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(16px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.5; cursor: not-allowed; }

.cookie-btn-save {
  padding: 0.7rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
  transition: transform var(--transition-fast);
  text-align: center;
  cursor: pointer;
  border: none;
  width: 100%;
}

.cookie-btn-save:hover { transform: translateY(-2px); }

/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes envelopeAppear {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes flapOpen {
  from { transform: rotateX(0deg); }
  to { transform: rotateX(-160deg); }
}

@keyframes letterRise {
  from { transform: translateX(-50%) translateY(20px); opacity: 0; }
  to { transform: translateX(-50%) translateY(-18px); opacity: 1; }
}


.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--delay, 0s);
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0);
}


.spotlight {
  position: relative;
}

.spotlight::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--gradient-warm);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.spotlight:hover::before { opacity: 0.6; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .footer-disclaimer { text-align: left; }
  .values-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --space-2xl: 4rem;
    --space-xl: 2.5rem;
  }

  .nav-links, .btn-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { gap: var(--space-sm); }

  .stage-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
  }

  .stage-visual { justify-content: center; }
  .stage-img { height: 340px; }
  .stage-subline { margin: 0 auto var(--space-lg); }
  .stage-actions { justify-content: center; }
  .stage-headline { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .stage-scroll-hint { display: none; }

  .intro-split,
  .approach-split,
  .about-origin-split,
  .how-overview-split,
  .team-intro-split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .approach-visual { order: -1; }
  .about-img-accent { display: none; }
  .approach-float-card { right: 0; bottom: -1rem; }

  .pillars-gallery { grid-template-columns: 1fr; }
  .values-gallery { grid-template-columns: 1fr 1fr; }
  .approach-detail-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }

  .compare-table th, .compare-table td {
    padding: 0.85rem 0.75rem;
    font-size: 0.82rem;
  }

  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  .footer-disclaimer { text-align: left; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form-card, .contact-info-card { padding: var(--space-md); }

  .cookie-consent-card { left: 16px; right: 16px; width: auto; bottom: 16px; }

  .step-item { grid-template-columns: 50px 1fr; }
  .step-content { padding: var(--space-sm) var(--space-md); }
}

@media (max-width: 480px) {
  .stage-headline { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .stage-actions { flex-direction: column; align-items: center; }
  .stage-actions .btn-ghost { width: 100%; text-align: center; justify-content: center; }
  .btn-primary { width: 100%; justify-content: center; }
  .thanks-actions { flex-direction: column; align-items: center; }
  .thanks-actions .btn-outline { width: 100%; text-align: center; justify-content: center; }
  .values-gallery { grid-template-columns: 1fr; }
  .approach-detail-grid { grid-template-columns: 1fr; }
}

/* ============================================
   UTILITY
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}