@layer reset, tokens, layout, components, utilities;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body { min-height: 100vh; display: flex; flex-direction: column; }
  main { flex: 1; }
  img, video { max-width: 100%; display: block; }
  ul { list-style: none; }
  a { text-decoration: none; color: inherit; }
  button { cursor: pointer; border: none; background: none; font: inherit; }
  address { font-style: normal; }
  input, textarea, select { font: inherit; }
}

@layer tokens {
  :root {
    --c-bg: #0d0e1a;
    --c-surface: #13152a;
    --c-surface-2: #1a1d35;
    --c-surface-3: #21254a;
    --c-border: rgba(255,255,255,0.08);
    --c-border-strong: rgba(255,255,255,0.14);

    --c-primary: #6c63ff;
    --c-primary-light: #8b84ff;
    --c-primary-dark: #4f48d6;
    --c-primary-glow: rgba(108,99,255,0.35);

    --c-secondary: #00d4c8;
    --c-secondary-light: #33ddd8;
    --c-secondary-glow: rgba(0,212,200,0.3);

    --c-accent-coral: #ff6b6b;
    --c-accent-amber: #ffb347;
    --c-accent-violet: #a78bfa;
    --c-accent-teal: #2dd4bf;

    --c-text-primary: #eef0ff;
    --c-text-secondary: #a8aac8;
    --c-text-muted: #6b6d8a;
    --c-text-on-dark: rgba(255,255,255,0.92);

    --gradient-primary: linear-gradient(135deg, #6c63ff 0%, #00d4c8 100%);
    --gradient-hero: linear-gradient(135deg, #6c63ff 0%, #a78bfa 50%, #00d4c8 100%);
    --gradient-card: linear-gradient(145deg, rgba(108,99,255,0.15), rgba(0,212,200,0.08));

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.4);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.7), 0 8px 24px rgba(0,0,0,0.5);
    --shadow-primary: 0 4px 20px var(--c-primary-glow), 0 2px 8px rgba(0,0,0,0.4);
    --shadow-secondary: 0 4px 20px var(--c-secondary-glow), 0 2px 8px rgba(0,0,0,0.4);

    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;

    --font-heading: 'Unbounded', sans-serif;
    --font-body: 'Inter', sans-serif;

    --header-h: 70px;
    --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
    --transition-slow: 0.4s cubic-bezier(0.4,0,0.2,1);
  }
}

@layer layout {
  body {
    font-family: var(--font-body);
    background: var(--c-bg);
    color: var(--c-text-primary);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

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

  @media (min-width: 768px) {
    .container { padding: 0 var(--space-8); }
  }

  .section-pad { padding: var(--space-16) 0; }
  @media (min-width: 768px) { .section-pad { padding: var(--space-24) 0; } }

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

  .mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
  }

  .hero-mesh .orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, #6c63ff 0%, transparent 70%); top: -200px; left: -100px; }
  .hero-mesh .orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, #00d4c8 0%, transparent 70%); top: 100px; right: -150px; }
  .hero-mesh .orb-3 { width: 400px; height: 400px; background: radial-gradient(circle, #a78bfa 0%, transparent 70%); bottom: -100px; left: 30%; }
  .hero-mesh .orb-4 { width: 300px; height: 300px; background: radial-gradient(circle, #ff6b6b 0%, transparent 70%); top: 50%; right: 20%; opacity: 0.3; }

  .serve-mesh .orb-5 { width: 700px; height: 700px; background: radial-gradient(circle, #6c63ff 0%, transparent 65%); top: -200px; right: -200px; }
  .serve-mesh .orb-6 { width: 500px; height: 500px; background: radial-gradient(circle, #00d4c8 0%, transparent 65%); bottom: -100px; left: -100px; }

  .faq-mesh .orb-7 { width: 600px; height: 600px; background: radial-gradient(circle, #a78bfa 0%, transparent 65%); top: -100px; left: -200px; }
  .faq-mesh .orb-8 { width: 500px; height: 500px; background: radial-gradient(circle, #00d4c8 0%, transparent 65%); bottom: -100px; right: -100px; }

  .page-hero-mesh .orb-ph1 { width: 600px; height: 600px; background: radial-gradient(circle, #6c63ff 0%, transparent 65%); top: -150px; left: -150px; }
  .page-hero-mesh .orb-ph2 { width: 450px; height: 450px; background: radial-gradient(circle, #00d4c8 0%, transparent 65%); top: 0; right: -100px; }
  .page-hero-mesh .orb-ph3 { width: 300px; height: 300px; background: radial-gradient(circle, #ff6b6b 0%, transparent 65%); bottom: -50px; left: 40%; opacity: 0.4; }

  .why-mesh .orb-w1 { width: 700px; height: 700px; background: radial-gradient(circle, #6c63ff 0%, transparent 65%); top: -200px; right: -200px; }
  .why-mesh .orb-w2 { width: 500px; height: 500px; background: radial-gradient(circle, #00d4c8 0%, transparent 65%); bottom: -100px; left: -100px; }

  .tech-mesh .orb-t1 { width: 600px; height: 600px; background: radial-gradient(circle, #6c63ff 0%, transparent 65%); top: -100px; left: -100px; }
  .tech-mesh .orb-t2 { width: 500px; height: 500px; background: radial-gradient(circle, #a78bfa 0%, transparent 65%); bottom: -100px; right: -100px; }

  .lp-hero-mesh .orb-lp1 { width: 700px; height: 700px; background: radial-gradient(circle, #6c63ff 0%, transparent 65%); top: -200px; left: -200px; }
  .lp-hero-mesh .orb-lp2 { width: 500px; height: 500px; background: radial-gradient(circle, #00d4c8 0%, transparent 65%); top: 0; right: -100px; }
  .lp-hero-mesh .orb-lp3 { width: 400px; height: 400px; background: radial-gradient(circle, #ff6b6b 0%, transparent 65%); bottom: 0; left: 30%; opacity: 0.35; }
  .lp-hero-mesh .orb-lp4 { width: 300px; height: 300px; background: radial-gradient(circle, #a78bfa 0%, transparent 65%); top: 30%; right: 10%; }

  .lp-inc-mesh .orb-li1 { width: 600px; height: 600px; background: radial-gradient(circle, #6c63ff 0%, transparent 65%); top: -100px; right: -150px; }
  .lp-inc-mesh .orb-li2 { width: 400px; height: 400px; background: radial-gradient(circle, #00d4c8 0%, transparent 65%); bottom: -100px; left: -100px; }

  .contact-hero-mesh .orb-c1 { width: 600px; height: 600px; background: radial-gradient(circle, #6c63ff 0%, transparent 65%); top: -150px; left: -100px; }
  .contact-hero-mesh .orb-c2 { width: 450px; height: 450px; background: radial-gradient(circle, #00d4c8 0%, transparent 65%); top: 0; right: -100px; }
  .contact-hero-mesh .orb-c3 { width: 300px; height: 300px; background: radial-gradient(circle, #a78bfa 0%, transparent 65%); bottom: -50px; left: 40%; opacity: 0.4; }

  .cta-mesh .orb-cta1 { width: 600px; height: 600px; background: radial-gradient(circle, #6c63ff 0%, transparent 65%); top: -200px; left: -200px; }
  .cta-mesh .orb-cta2 { width: 500px; height: 500px; background: radial-gradient(circle, #00d4c8 0%, transparent 65%); bottom: -150px; right: -150px; }

  .footer-mesh .orb-f1 { width: 600px; height: 600px; background: radial-gradient(circle, #6c63ff 0%, transparent 65%); top: -200px; left: -200px; opacity: 0.3; }
  .footer-mesh .orb-f2 { width: 500px; height: 500px; background: radial-gradient(circle, #00d4c8 0%, transparent 65%); bottom: -150px; right: -150px; opacity: 0.25; }

  .thanks-mesh .orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, #6c63ff 0%, transparent 65%); top: -200px; left: -100px; }
  .thanks-mesh .orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, #00d4c8 0%, transparent 65%); top: 0; right: -100px; }
  .thanks-mesh .orb-3 { width: 350px; height: 350px; background: radial-gradient(circle, #a78bfa 0%, transparent 65%); bottom: 0; left: 40%; opacity: 0.4; }

  .programs .orb-prog1 { width: 400px; height: 400px; background: radial-gradient(circle, #6c63ff 0%, transparent 65%); top: -100px; left: -100px; }
  .programs .orb-prog2 { width: 350px; height: 350px; background: radial-gradient(circle, #00d4c8 0%, transparent 65%); bottom: -100px; right: -100px; }
}

@layer components {

  
  .site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    background: rgba(13,14,26,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--c-border);
    z-index: 900;
    transition: background var(--transition), box-shadow var(--transition);
  }
  .site-header.scrolled {
    background: rgba(13,14,26,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  }
  .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-5);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
  }
  @media (min-width: 768px) { .header-inner { padding: 0 var(--space-8); } }
  .header-logo img { transition: opacity var(--transition); }
  .header-logo:hover img { opacity: 0.8; }

  
  .hamburger {
    width: 44px; height: 44px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 5px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
    flex-shrink: 0;
  }
  .hamburger:hover { background: var(--c-surface-2); }
  .hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--c-text-primary);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  
  .drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-slow);
  }
  .drawer-overlay.active { opacity: 1; pointer-events: all; }

  .side-drawer {
    position: fixed;
    top: 0; left: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--c-surface);
    border-right: 1px solid var(--c-border);
    z-index: 1100;
    transform: translateX(-100%);
    transition: transform var(--transition-slow);
    display: flex; flex-direction: column;
    overflow-y: auto;
  }
  .side-drawer.open { transform: translateX(0); }

  .drawer-header {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: var(--space-5) var(--space-6);
    border-bottom: 1px solid var(--c-border);
    min-height: var(--header-h);
  }
  .drawer-close {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--c-text-secondary);
    font-size: 18px;
    transition: background var(--transition), color var(--transition);
  }
  .drawer-close:hover { background: var(--c-surface-2); color: var(--c-text-primary); }

  .drawer-nav {
    flex: 1;
    padding: var(--space-6);
    display: flex; flex-direction: column; gap: var(--space-2);
  }
  .drawer-nav a {
    display: block;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-sm);
    color: var(--c-text-secondary);
    font-size: 15px;
    font-weight: 500;
    transition: background var(--transition), color var(--transition), transform var(--transition);
  }
  .drawer-nav a:hover, .drawer-nav a.active {
    background: var(--c-surface-2);
    color: var(--c-text-primary);
    transform: translateX(4px);
  }
  .drawer-nav a.active { color: var(--c-primary-light); }

  .drawer-footer {
    padding: var(--space-5) var(--space-6);
    border-top: 1px solid var(--c-border);
    display: flex; flex-direction: column; gap: var(--space-2);
  }
  .drawer-footer p { font-size: 13px; color: var(--c-text-muted); }
  .drawer-footer a { font-size: 14px; color: var(--c-secondary); font-weight: 500; }

  
  .btn {
    display: inline-flex; align-items: center; gap: var(--space-2);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    min-height: 44px;
  }
  .btn::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255,255,255,0);
    transition: background var(--transition);
    border-radius: inherit;
  }
  .btn:hover::after { background: rgba(255,255,255,0.08); }
  .btn:active { transform: scale(0.97); }

  .btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-primary);
  }
  .btn-primary:hover {
    box-shadow: 0 6px 28px var(--c-primary-glow), 0 2px 8px rgba(0,0,0,0.4);
    transform: translateY(-2px);
  }
  .btn-primary:active { transform: translateY(0) scale(0.97); }

  .btn-ghost {
    background: rgba(255,255,255,0.06);
    color: var(--c-text-primary);
    border: 1px solid var(--c-border-strong);
  }
  .btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
  }

  .btn-white {
    background: #fff;
    color: var(--c-primary-dark);
    font-weight: 700;
  }
  .btn-white:hover {
    background: #f0f0ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }

  .btn-white-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
  }
  .btn-white-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-2px);
  }

  .btn-sm { padding: 9px 18px; font-size: 14px; min-height: 38px; }
  .btn-lg { padding: 16px 32px; font-size: 16px; }
  .btn-full { width: 100%; justify-content: center; }

  
  .section-label {
    display: inline-flex; align-items: center; gap: var(--space-2);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-secondary);
    margin-bottom: var(--space-4);
  }
  .section-label.light { color: rgba(255,255,255,0.6); }

  .section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--c-text-primary);
    margin-bottom: var(--space-8);
  }
  .section-title.light { color: #fff; }

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

  
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    padding-top: var(--header-h);
    overflow: hidden;
    background: var(--c-bg);
  }
  .hero-content {
    position: relative; z-index: 1;
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(108,99,255,0.15);
    border: 1px solid rgba(108,99,255,0.3);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--c-primary-light);
    margin-bottom: var(--space-6);
  }
  .hero-badge i { color: var(--c-accent-coral); }

  .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(44px, 7vw, 88px);
    font-weight: 700;
    line-height: 1.05;
    color: var(--c-text-primary);
    margin-bottom: var(--space-6);
    max-width: 700px;
  }
  .hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--c-text-secondary);
    max-width: 520px;
    margin-bottom: var(--space-8);
    line-height: 1.6;
  }
  .hero-actions {
    display: flex; flex-wrap: wrap; gap: var(--space-4);
    margin-bottom: var(--space-12);
  }
  .hero-image-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-4);
    max-width: 800px;
  }
  @media (max-width: 640px) {
    .hero-image-row { grid-template-columns: 1fr 1fr; }
    .hero-img-card:last-child { display: none; }
  }
  .hero-img-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--c-border);
    aspect-ratio: 4/3;
  }
  .hero-img-tall { aspect-ratio: 3/4; }
  .hero-img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .hero-img-card:hover img { transform: scale(1.05); }

  .hero-scroll-hint {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
    color: var(--c-text-muted);
    font-size: 12px;
    letter-spacing: 0.1em;
    animation: bounce 2s ease infinite;
    z-index: 1;
  }
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }

  
  .img-overlay {
    position: absolute; inset: 0;
    background: rgba(108,99,255,0.0);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 20px;
    opacity: 0;
    transition: all var(--transition);
  }
  a:hover .img-overlay { opacity: 1; background: rgba(108,99,255,0.4); }

  
  .info-blocks { position: relative; }
  .info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  @media (min-width: 600px) { .info-grid { grid-template-columns: 1fr 1fr; } }
  @media (min-width: 1024px) { .info-grid { grid-template-columns: repeat(4, 1fr); } }

  .info-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    box-shadow: var(--shadow-md);
  }
  .info-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition);
  }
  .info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl), 0 0 0 1px var(--c-primary-glow);
    border-color: rgba(108,99,255,0.2);
  }
  .info-card:hover::before { opacity: 1; }

  .info-icon-wrap {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: var(--space-5);
  }
  .accent-violet { background: rgba(167,139,250,0.15); color: var(--c-accent-violet); }
  .accent-teal { background: rgba(45,212,191,0.15); color: var(--c-accent-teal); }
  .accent-coral { background: rgba(255,107,107,0.15); color: var(--c-accent-coral); }
  .accent-amber { background: rgba(255,179,71,0.15); color: var(--c-accent-amber); }

  .info-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--c-text-primary);
    margin-bottom: var(--space-3);
  }
  .info-card p {
    font-size: 14px;
    color: var(--c-text-secondary);
    line-height: 1.65;
    margin-bottom: var(--space-5);
  }
  .info-link {
    display: inline-flex; align-items: center; gap: var(--space-2);
    font-size: 13px; font-weight: 600;
    color: var(--c-primary-light);
    transition: gap var(--transition), color var(--transition);
  }
  .info-link:hover { gap: var(--space-3); color: var(--c-secondary); }

  
  .who-serve {
    position: relative;
    background: var(--c-surface);
    overflow: hidden;
  }
  .serve-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
  }
  @media (min-width: 900px) { .serve-layout { grid-template-columns: 1fr 1fr; } }

  .serve-desc {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: var(--space-8);
    max-width: 440px;
  }
  .serve-cards {
    display: flex; flex-direction: column; gap: var(--space-4);
    position: relative; z-index: 1;
  }
  .serve-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    display: flex; gap: var(--space-4);
    align-items: flex-start;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
  }
  .serve-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.18);
    transform: translateX(4px);
  }
  .serve-card-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(108,99,255,0.2);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--c-primary-light);
    font-size: 18px;
  }
  .serve-card h4 {
    font-family: var(--font-heading);
    font-size: 14px; font-weight: 600;
    color: #fff;
    margin-bottom: var(--space-2);
  }
  .serve-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }

  .serve-img-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/9;
    margin-top: var(--space-2);
  }
  .serve-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .serve-img-wrap:hover img { transform: scale(1.04); }

  
  .approach-strip { position: relative; }
  .approach-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
  }
  @media (min-width: 900px) { .approach-inner { grid-template-columns: 1fr 1fr; } }

  .approach-text .section-label { display: block; }
  .approach-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--space-5);
  }
  .approach-text p {
    color: var(--c-text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: var(--space-8);
    max-width: 460px;
  }
  .approach-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl), 0 0 0 1px var(--c-border);
    aspect-ratio: 4/3;
  }
  .approach-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .approach-image:hover img { transform: scale(1.04); }

  
  .programs { position: relative; }
  .programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  @media (min-width: 768px) {
    .programs-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
    }
    .program-featured { grid-column: 1 / -1; }
  }
  @media (min-width: 1024px) {
    .programs-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
    .program-featured { grid-column: 1 / 2; grid-row: 1; }
  }

  .program-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-md);
  }
  .program-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
  }
  .program-featured {
    background: linear-gradient(135deg, #1a1550 0%, #0d2a3a 100%);
    border-color: rgba(108,99,255,0.25);
    min-height: 320px;
    display: flex; flex-direction: column; justify-content: flex-end;
  }
  .program-mesh { position: absolute; inset: 0; overflow: hidden; }
  .program-content { position: relative; z-index: 1; }

  .program-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(108,99,255,0.3);
    border: 1px solid rgba(108,99,255,0.4);
    border-radius: var(--radius-full);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--c-primary-light);
    margin-bottom: var(--space-4);
  }
  .program-featured h3 {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-4);
    line-height: 1.2;
  }
  .program-featured p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.6; margin-bottom: var(--space-6); }

  .program-icon {
    width: 52px; height: 52px;
    background: var(--gradient-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: var(--c-primary-light);
    margin-bottom: var(--space-5);
  }
  .program-card h3 {
    font-family: var(--font-heading);
    font-size: 15px; font-weight: 600;
    color: var(--c-text-primary);
    margin-bottom: var(--space-3);
  }
  .program-card p { font-size: 14px; color: var(--c-text-secondary); line-height: 1.6; margin-bottom: var(--space-5); }
  .program-link {
    display: inline-flex; align-items: center; gap: var(--space-2);
    font-size: 13px; font-weight: 600;
    color: var(--c-primary-light);
    transition: gap var(--transition), color var(--transition);
  }
  .program-link:hover { gap: var(--space-3); color: var(--c-secondary); }

  
  .gallery-strip { position: relative; }
  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: var(--space-4);
  }
  @media (min-width: 768px) {
    .gallery-grid { grid-template-columns: 2fr 1fr 1fr; }
    .gallery-wide { grid-column: 1; grid-row: 1 / 3; }
  }
  .gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    display: block;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
  }
  .gallery-item.gallery-wide { aspect-ratio: auto; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .gallery-item:hover img { transform: scale(1.05); }
  .gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(108,99,255,0);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 24px;
    opacity: 0;
    transition: all var(--transition);
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; background: rgba(108,99,255,0.45); }

  
  .faq-section {
    position: relative;
    background: var(--c-surface);
    overflow: hidden;
  }
  .faq-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: start;
  }
  @media (min-width: 900px) { .faq-layout { grid-template-columns: 1fr 1.6fr; } }

  .faq-header { position: relative; z-index: 1; }
  .faq-header p { color: rgba(255,255,255,0.65); margin-bottom: var(--space-8); font-size: 15px; }

  .faq-list {
    display: flex; flex-direction: column; gap: var(--space-3);
    position: relative; z-index: 1;
  }
  .faq-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
  }
  .faq-item:hover { border-color: rgba(108,99,255,0.25); }
  .faq-item.open {
    border-color: rgba(108,99,255,0.3);
    box-shadow: 0 4px 20px rgba(108,99,255,0.1);
  }
  .faq-question {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-6);
    color: var(--c-text-primary);
    font-size: 15px; font-weight: 500;
    text-align: left;
    transition: color var(--transition);
  }
  .faq-question:hover { color: var(--c-primary-light); }
  .faq-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: rgba(108,99,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    color: var(--c-primary-light);
    transition: transform var(--transition), background var(--transition);
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--c-primary); color: #fff; }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .faq-answer p {
    padding: 0 var(--space-6) var(--space-5);
    font-size: 14px;
    color: var(--c-text-secondary);
    line-height: 1.7;
  }
  .faq-item.open .faq-answer { max-height: 300px; }

  
  .cta-band { position: relative; }
  .cta-inner {
    position: relative;
    background: linear-gradient(135deg, #1a1550 0%, #0d2a3a 100%);
    border: 1px solid rgba(108,99,255,0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-16) var(--space-8);
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
  }
  .cta-inner h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-4);
    line-height: 1.2;
  }
  .cta-inner p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    margin-bottom: var(--space-8);
  }

  
  .page-hero {
    position: relative;
    background: var(--c-bg);
    padding-top: calc(var(--header-h) + var(--space-16));
    padding-bottom: var(--space-16);
    overflow: hidden;
  }
  .page-hero-content { position: relative; z-index: 1; max-width: 680px; }
  .page-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: var(--space-5);
  }
  .page-sub {
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
    max-width: 520px;
  }

  
  .why-pillars { position: relative; }
  .pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  @media (min-width: 600px) { .pillars-grid { grid-template-columns: 1fr 1fr; } }
  @media (min-width: 1024px) { .pillars-grid { grid-template-columns: repeat(4, 1fr); } }

  .pillar-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-md);
  }
  .pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(108,99,255,0.15);
  }
  .pillar-num {
    font-family: var(--font-heading);
    font-size: 48px; font-weight: 700;
    color: rgba(108,99,255,0.15);
    line-height: 1;
    margin-bottom: var(--space-3);
    letter-spacing: -0.02em;
  }
  .pillar-icon {
    width: 48px; height: 48px;
    background: rgba(108,99,255,0.12);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--c-primary-light);
    margin-bottom: var(--space-4);
  }
  .pillar-card h3 {
    font-family: var(--font-heading);
    font-size: 15px; font-weight: 600;
    color: var(--c-text-primary);
    margin-bottom: var(--space-3);
  }
  .pillar-card p { font-size: 14px; color: var(--c-text-secondary); line-height: 1.65; }

  .why-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
  }
  @media (min-width: 900px) { .why-split { grid-template-columns: 1fr 1fr; } }

  .why-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
  }
  .why-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .why-img-wrap:hover img { transform: scale(1.04); }

  .why-text { position: relative; z-index: 1; }
  .why-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-5);
  }
  .why-text p { font-size: 15px; color: var(--c-text-secondary); line-height: 1.7; margin-bottom: var(--space-5); }

  .approach-detail { position: relative; }
  .approach-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  @media (min-width: 768px) { .approach-cards { grid-template-columns: repeat(3, 1fr); } }

  .approach-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-md);
  }
  .approach-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(108,99,255,0.12);
  }
  .approach-card-top {
    display: flex; align-items: center; gap: var(--space-3);
    margin-bottom: var(--space-4);
  }
  .approach-card-top i {
    width: 40px; height: 40px;
    background: rgba(108,99,255,0.12);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--c-primary-light);
    flex-shrink: 0;
  }
  .approach-card h4 {
    font-family: var(--font-heading);
    font-size: 14px; font-weight: 600;
    color: var(--c-text-primary);
  }
  .approach-card p { font-size: 14px; color: var(--c-text-secondary); line-height: 1.65; }

  
  .process-steps { position: relative; }
  .steps-timeline {
    position: relative;
    display: flex; flex-direction: column; gap: var(--space-6);
    max-width: 800px; margin: 0 auto;
  }
  .steps-timeline::before {
    content: '';
    position: absolute;
    left: 40px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--c-primary), var(--c-secondary));
    opacity: 0.3;
  }
  @media (min-width: 768px) {
    .steps-timeline::before { left: 50%; transform: translateX(-50%); }
  }

  .step-item {
    display: flex; gap: var(--space-5);
    align-items: flex-start;
    padding-left: var(--space-16);
    position: relative;
  }
  @media (min-width: 768px) {
    .step-item { padding-left: 0; padding-right: 55%; }
    .step-right { padding-left: 55%; padding-right: 0; }
  }

  .step-num {
    position: absolute;
    left: 20px; top: 0;
    width: 40px; height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-size: 13px; font-weight: 700;
    color: #fff;
    box-shadow: var(--shadow-primary);
    flex-shrink: 0;
    z-index: 1;
  }
  @media (min-width: 768px) {
    .step-num { left: calc(50% - 20px); }
    .step-right .step-num { left: calc(50% - 20px); }
  }

  .step-content {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
    flex: 1;
  }
  .step-content:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(108,99,255,0.12);
  }
  .step-content h3 {
    font-family: var(--font-heading);
    font-size: 15px; font-weight: 600;
    color: var(--c-text-primary);
    margin-bottom: var(--space-3);
  }
  .step-content p { font-size: 14px; color: var(--c-text-secondary); line-height: 1.65; }

  
  .techniques {
    position: relative;
    background: var(--c-surface);
    overflow: hidden;
  }
  .techniques-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    position: relative; z-index: 1;
  }
  @media (min-width: 600px) { .techniques-grid { grid-template-columns: 1fr 1fr; } }
  @media (min-width: 900px) { .techniques-grid { grid-template-columns: repeat(3, 1fr); } }

  .technique-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
  }
  .technique-card:hover {
    background: rgba(108,99,255,0.1);
    border-color: rgba(108,99,255,0.25);
    transform: translateY(-4px);
  }
  .technique-card i {
    font-size: 28px;
    color: var(--c-primary-light);
    margin-bottom: var(--space-4);
    display: block;
  }
  .technique-card h4 {
    font-family: var(--font-heading);
    font-size: 14px; font-weight: 600;
    color: #fff;
    margin-bottom: var(--space-3);
  }
  .technique-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

  
  .process-image-section { position: relative; }
  .process-img-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
  }
  @media (min-width: 900px) { .process-img-layout { grid-template-columns: 1fr 1fr; } }
  .process-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
  }
  .process-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .process-img-main:hover img { transform: scale(1.04); }
  .process-img-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-5);
  }
  .process-img-text p { font-size: 15px; color: var(--c-text-secondary); line-height: 1.7; margin-bottom: var(--space-5); }

  
  .lp-hero { min-height: 80vh; display: flex; align-items: center; }
  .lp-hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
    position: relative; z-index: 1;
  }
  @media (min-width: 900px) { .lp-hero-layout { grid-template-columns: 1fr 1fr; } }
  .lp-meta {
    display: flex; flex-wrap: wrap; gap: var(--space-4);
    margin-bottom: var(--space-8);
  }
  .lp-meta span {
    display: inline-flex; align-items: center; gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-full);
    font-size: 13px; color: rgba(255,255,255,0.8);
  }
  .lp-meta i { color: var(--c-secondary); }
  .lp-hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
  }
  .lp-hero-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .lp-hero-img:hover img { transform: scale(1.04); }

  .lp-overview { position: relative; }
  .weeks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  @media (min-width: 600px) { .weeks-grid { grid-template-columns: 1fr 1fr; } }
  @media (min-width: 1024px) { .weeks-grid { grid-template-columns: repeat(4, 1fr); } }

  .week-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: var(--space-7);
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
  }
  .week-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
  }
  .week-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
  .week-card:hover::after { transform: scaleX(1); }

  .week-num {
    font-family: var(--font-heading);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--c-secondary);
    margin-bottom: var(--space-3);
  }
  .week-card h4 {
    font-family: var(--font-heading);
    font-size: 15px; font-weight: 600;
    color: var(--c-text-primary);
    margin-bottom: var(--space-3);
  }
  .week-card p { font-size: 14px; color: var(--c-text-secondary); line-height: 1.65; }

  .lp-includes {
    position: relative;
    background: var(--c-surface);
    overflow: hidden;
  }
  .lp-inc-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
    position: relative; z-index: 1;
  }
  @media (min-width: 900px) { .lp-inc-layout { grid-template-columns: 1fr 1fr; } }

  .includes-list {
    display: flex; flex-direction: column; gap: var(--space-4);
    margin-top: var(--space-6);
  }
  .includes-list li {
    display: flex; align-items: center; gap: var(--space-3);
    color: rgba(255,255,255,0.85);
    font-size: 15px;
  }
  .includes-list i {
    width: 24px; height: 24px;
    background: rgba(0,212,200,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    color: var(--c-secondary);
    flex-shrink: 0;
  }
  .lp-inc-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
  }
  .lp-inc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .lp-inc-img:hover img { transform: scale(1.04); }

  .lp-for { position: relative; }
  .for-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  @media (min-width: 600px) { .for-grid { grid-template-columns: 1fr 1fr; } }

  .for-item {
    display: flex; gap: var(--space-4);
    align-items: flex-start;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    transition: transform var(--transition), border-color var(--transition);
  }
  .for-item:hover {
    transform: translateX(4px);
    border-color: rgba(108,99,255,0.2);
  }
  .for-item i {
    font-size: 20px;
    color: var(--c-secondary);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .for-item p { font-size: 14px; color: var(--c-text-secondary); line-height: 1.65; }

  
  .contact-section { position: relative; }
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  @media (min-width: 900px) { .contact-layout { grid-template-columns: 1.2fr 1fr; } }

  .contact-form-wrap h2 {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: var(--space-3);
  }
  .contact-form-wrap > p { color: var(--c-text-secondary); margin-bottom: var(--space-8); }

  .form-group { margin-bottom: var(--space-5); }
  .form-group label {
    display: block;
    font-size: 13px; font-weight: 600;
    color: var(--c-text-secondary);
    margin-bottom: var(--space-2);
    letter-spacing: 0.03em;
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--c-surface);
    border: 1px solid var(--c-border-strong);
    border-radius: var(--radius-md);
    color: var(--c-text-primary);
    font-size: 15px;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    outline: none;
  }
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--c-primary);
    background: var(--c-surface-2);
    box-shadow: 0 0 0 3px var(--c-primary-glow);
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: var(--c-text-muted); }
  .form-group textarea { resize: vertical; min-height: 130px; }

  .form-check { display: flex; align-items: flex-start; gap: var(--space-3); }
  .checkbox-label {
    display: flex; align-items: flex-start; gap: var(--space-3);
    cursor: pointer; font-size: 13px; color: var(--c-text-secondary);
  }
  .checkbox-label input[type="checkbox"] {
    width: 18px; height: 18px; min-width: 18px;
    accent-color: var(--c-primary);
    margin-top: 1px;
    cursor: pointer;
  }
  .checkbox-label a { color: var(--c-primary-light); text-decoration: underline; }
  .form-error {
    color: var(--c-accent-coral);
    font-size: 13px;
    padding: var(--space-3) var(--space-4);
    background: rgba(255,107,107,0.1);
    border: 1px solid rgba(255,107,107,0.2);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-4);
  }

  .contact-info-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    margin-bottom: var(--space-5);
    box-shadow: var(--shadow-md);
  }
  .contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 16px; font-weight: 600;
    margin-bottom: var(--space-6);
  }
  .contact-info-item {
    display: flex; gap: var(--space-4);
    align-items: flex-start;
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--c-border);
  }
  .contact-info-item:last-child { border-bottom: none; }
  .ci-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: rgba(108,99,255,0.12);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--c-primary-light);
  }
  .contact-info-item span {
    display: block; font-size: 11px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--c-text-muted); margin-bottom: 4px;
  }
  .contact-info-item a, .contact-info-item address, .contact-info-item p {
    font-size: 14px; color: var(--c-text-secondary);
    transition: color var(--transition);
    line-height: 1.5;
  }
  .contact-info-item a:hover { color: var(--c-primary-light); }
  .map-wrap { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }

  
  .thanks-main {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    display: flex; align-items: center;
    padding-top: var(--header-h);
    overflow: hidden;
  }
  .thanks-card {
    position: relative; z-index: 1;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: var(--space-16) var(--space-12);
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
  }
  @media (max-width: 600px) { .thanks-card { padding: var(--space-10) var(--space-6); } }
  .thanks-icon {
    width: 80px; height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: #fff;
    margin: 0 auto var(--space-6);
    box-shadow: var(--shadow-primary);
  }
  .thanks-card h1 {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    margin-bottom: var(--space-4);
  }
  .thanks-card p { font-size: 15px; color: var(--c-text-secondary); line-height: 1.7; margin-bottom: var(--space-4); }
  .thanks-actions {
    display: flex; flex-wrap: wrap; gap: var(--space-3);
    justify-content: center; margin-top: var(--space-8);
  }

  
  .legal-hero {
    padding-top: calc(var(--header-h) + var(--space-12));
    padding-bottom: var(--space-10);
    border-bottom: 1px solid var(--c-border);
  }
  .legal-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: var(--space-3);
  }
  .legal-hero p { color: var(--c-text-muted); font-size: 14px; }

  .legal-content { position: relative; }
  .legal-body { max-width: 780px; }
  .legal-body h2 {
    font-family: var(--font-heading);
    font-size: 20px; font-weight: 600;
    color: var(--c-text-primary);
    margin-top: var(--space-10);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--c-border);
  }
  .legal-body h3 {
    font-family: var(--font-heading);
    font-size: 16px; font-weight: 600;
    color: var(--c-text-primary);
    margin-top: var(--space-6);
    margin-bottom: var(--space-3);
  }
  .legal-body h4 {
    font-size: 14px; font-weight: 600;
    color: var(--c-text-secondary);
    margin-top: var(--space-4);
    margin-bottom: var(--space-2);
  }
  .legal-body p { font-size: 15px; color: var(--c-text-secondary); line-height: 1.75; margin-bottom: var(--space-4); }
  .legal-body ul { padding-left: var(--space-6); margin-bottom: var(--space-4); }
  .legal-body ul li {
    font-size: 15px; color: var(--c-text-secondary);
    line-height: 1.75; margin-bottom: var(--space-2);
    list-style: disc;
  }
  .legal-body a { color: var(--c-primary-light); text-decoration: underline; }
  .legal-body strong { color: var(--c-text-primary); }

  
  .site-footer {
    position: relative;
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
    overflow: hidden;
    padding-top: var(--space-16);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    margin-bottom: var(--space-10);
    position: relative; z-index: 1;
  }
  @media (min-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
  @media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

  .footer-brand .footer-logo { margin-bottom: var(--space-4); }
  .footer-brand p { font-size: 14px; color: var(--c-text-muted); line-height: 1.65; margin-bottom: var(--space-4); }
  .footer-brand address {
    font-size: 13px; color: var(--c-text-muted);
    line-height: 1.6;
    display: flex; gap: var(--space-2); align-items: flex-start;
  }
  .footer-brand address i { color: var(--c-primary-light); margin-top: 3px; flex-shrink: 0; }

  .footer-col h5 {
    font-family: var(--font-heading);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--c-text-muted);
    margin-bottom: var(--space-5);
  }
  .footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
  .footer-col ul li a, .footer-col ul li span {
    font-size: 14px; color: var(--c-text-secondary);
    display: flex; align-items: center; gap: var(--space-2);
    transition: color var(--transition), transform var(--transition);
  }
  .footer-col ul li a:hover { color: var(--c-primary-light); transform: translateX(3px); }
  .footer-col ul li i { color: var(--c-primary-light); font-size: 13px; }

  .footer-bottom {
    border-top: 1px solid var(--c-border);
    padding: var(--space-5) 0;
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: space-between;
    gap: var(--space-3);
    position: relative; z-index: 1;
  }
  .footer-bottom p { font-size: 13px; color: var(--c-text-muted); }

  
  .cookie-banner {
    position: fixed;
    bottom: var(--space-5); left: var(--space-5); right: var(--space-5);
    max-width: 640px;
    background: var(--c-surface-2);
    border: 1px solid var(--c-border-strong);
    border-radius: var(--radius-lg);
    padding: var(--space-5) var(--space-6);
    box-shadow: var(--shadow-xl);
    z-index: 9000;
    display: none;
    backdrop-filter: blur(20px);
  }
  @media (min-width: 768px) { .cookie-banner { left: var(--space-8); right: auto; } }
  .cookie-banner.show { display: block; }
  .cookie-content p { font-size: 13px; color: var(--c-text-secondary); margin-bottom: var(--space-4); line-height: 1.6; }
  .cookie-content p a { color: var(--c-primary-light); text-decoration: underline; }
  .cookie-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }

  .cookie-modal {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 9500;
    display: none;
    align-items: center; justify-content: center;
    padding: var(--space-5);
  }
  .cookie-modal.show { display: flex; }
  .cookie-modal-inner {
    background: var(--c-surface-2);
    border: 1px solid var(--c-border-strong);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    max-width: 480px; width: 100%;
    box-shadow: var(--shadow-xl);
  }
  .cookie-modal-inner h3 {
    font-family: var(--font-heading);
    font-size: 18px; font-weight: 600;
    margin-bottom: var(--space-6);
  }
  .cookie-category {
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--c-border);
  }
  .cookie-category:last-of-type { border-bottom: none; }
  .cookie-category label {
    display: flex; align-items: center; gap: var(--space-3);
    font-size: 14px; font-weight: 600;
    color: var(--c-text-primary);
    margin-bottom: var(--space-2);
    cursor: pointer;
  }
  .cookie-category label input { accent-color: var(--c-primary); width: 16px; height: 16px; }
  .cookie-category label span { font-size: 11px; color: var(--c-secondary); font-weight: 500; }
  .cookie-category p { font-size: 13px; color: var(--c-text-muted); line-height: 1.55; }
  .cookie-modal-actions { display: flex; gap: var(--space-3); margin-top: var(--space-6); flex-wrap: wrap; }

  
  .header-cta { display: none; }
  @media (min-width: 480px) { .header-cta { display: inline-flex; } }
}

@layer utilities {
  .visually-hidden {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }
  .text-center { text-align: center; }
  .mt-auto { margin-top: auto; }
}