@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@600;700;800&family=Inter:wght@400;500&display=swap');

@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; line-height: 1.6; -webkit-font-smoothing: antialiased; }
  img { max-width: 100%; height: auto; display: block; }
  a { text-decoration: none; color: inherit; }
  ul, ol { list-style: none; }
  button, input, textarea, select { font: inherit; border: none; background: none; }
  button { cursor: pointer; }
  h1,h2,h3,h4,h5,h6 { line-height: 1.2; }
}

@layer tokens {
  :root {
    --c-ink:       #0f0e17;
    --c-ink-soft:  #2a2840;
    --c-paper:     #faf9f6;
    --c-paper-alt: #f0ede6;

    --c-cobalt:    #1a3cff;
    --c-cobalt-dk: #0f27cc;
    --c-cobalt-lt: #e8edff;

    --c-coral:     #ff4d3d;
    --c-coral-dk:  #cc2d1e;
    --c-coral-lt:  #fff0ee;

    --c-lime:      #b8f23a;
    --c-lime-dk:   #8fc40a;
    --c-lime-lt:   #f4ffe0;

    --c-violet:    #6b2fff;
    --c-violet-dk: #4a1acc;
    --c-violet-lt: #ede8ff;

    --c-amber:     #ff9f1c;
    --c-amber-dk:  #cc7800;
    --c-amber-lt:  #fff5e0;

    --shadow-xs:  0 1px 2px rgba(15,14,23,.06), 0 1px 4px rgba(15,14,23,.04);
    --shadow-sm:  0 2px 4px rgba(15,14,23,.08), 0 4px 12px rgba(15,14,23,.06);
    --shadow-md:  0 4px 8px rgba(15,14,23,.10), 0 8px 24px rgba(15,14,23,.08);
    --shadow-lg:  0 8px 16px rgba(15,14,23,.12), 0 16px 40px rgba(15,14,23,.10);
    --shadow-xl:  0 12px 24px rgba(15,14,23,.14), 0 24px 64px rgba(15,14,23,.12);

    --shadow-cobalt: 0 4px 16px rgba(26,60,255,.25), 0 8px 32px rgba(26,60,255,.15);
    --shadow-coral:  0 4px 16px rgba(255,77,61,.25), 0 8px 32px rgba(255,77,61,.15);
    --shadow-lime:   0 4px 16px rgba(184,242,58,.30), 0 8px 32px rgba(184,242,58,.20);
    --shadow-violet: 0 4px 16px rgba(107,47,255,.25), 0 8px 32px rgba(107,47,255,.15);

    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --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;
    --space-32: 128px;

    --font-head: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;

    --text-xs:   0.75rem;
    --text-sm:   0.875rem;
    --text-base: 1rem;
    --text-lg:   1.125rem;
    --text-xl:   1.25rem;
    --text-2xl:  1.5rem;
    --text-3xl:  clamp(1.75rem, 4vw, 2.25rem);
    --text-4xl:  clamp(2rem, 5vw, 3rem);
    --text-5xl:  clamp(2.5rem, 6vw, 4rem);
    --text-6xl:  clamp(3rem, 8vw, 5.5rem);

    --nav-h: 72px;
    --container: 1200px;
    --gap-section: clamp(var(--space-16), 8vw, var(--space-32));
  }
}

@layer layout {
  body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--c-ink);
    background: var(--c-paper);
  }

  .container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(var(--space-4), 5vw, var(--space-12));
  }

  .section-gap {
    padding-block: var(--gap-section);
  }

  .page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  .main-content {
    flex: 1;
  }

  .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-6); }
  .grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-6); }

  @media (max-width: 900px) {
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
  }
}

@layer components {

  /* ─── NAV ─── */
  .site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--nav-h);
    background: rgba(250,249,246,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15,14,23,.08);
    box-shadow: var(--shadow-xs);
    transition: background .3s, box-shadow .3s;
  }
  .site-nav.scrolled {
    background: rgba(250,249,246,.98);
    box-shadow: var(--shadow-sm);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: var(--text-xl);
    color: var(--c-ink);
    transition: opacity .2s;
    flex-shrink: 0;
  }
  .nav-logo:hover { opacity: .8; }
  .nav-logo img { height: 36px; width: auto; }

  .nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-2);
  }
  .nav-links a {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--c-ink-soft);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-sm);
    transition: color .2s, background .2s;
    white-space: nowrap;
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--c-cobalt);
    background: var(--c-cobalt-lt);
  }
  .nav-links a.nav-cta {
    background: var(--c-cobalt);
    color: #fff;
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-cobalt);
  }
  .nav-links a.nav-cta:hover {
    background: var(--c-cobalt-dk);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26,60,255,.35);
  }

  .lang-switcher {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    margin-left: var(--space-4);
    background: var(--c-paper-alt);
    border-radius: var(--radius-full);
    padding: 3px 6px;
    border: 1px solid rgba(15,14,23,.1);
  }
  .lang-btn {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--c-ink-soft);
    padding: 3px 8px;
    border-radius: var(--radius-full);
    transition: background .2s, color .2s;
  }
  .lang-btn.active {
    background: var(--c-cobalt);
    color: #fff;
  }
  .lang-btn:hover:not(.active) {
    background: var(--c-cobalt-lt);
    color: var(--c-cobalt);
  }
  .lang-divider { color: rgba(15,14,23,.2); font-size: var(--text-xs); }

  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    border-radius: var(--radius-sm);
    transition: background .2s;
    min-width: 44px; min-height: 44px;
    align-items: center; justify-content: center;
  }
  .nav-hamburger:hover { background: var(--c-paper-alt); }
  .nav-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--c-ink);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: rgba(250,249,246,.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    padding: var(--space-8) var(--space-6);
    flex-direction: column;
    gap: var(--space-4);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
  }
  .mobile-menu.open {
    display: flex;
    transform: translateX(0);
  }
  .mobile-menu a {
    font-family: var(--font-head);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--c-ink);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--c-paper-alt);
    transition: color .2s, padding-left .2s;
  }
  .mobile-menu a:hover { color: var(--c-cobalt); padding-left: var(--space-3); }
  .mobile-lang {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-4);
  }
  .mobile-lang a {
    font-size: var(--text-base) !important;
    font-weight: 600 !important;
    border-bottom: none !important;
    padding: var(--space-3) var(--space-6) !important;
    border-radius: var(--radius-full) !important;
    background: var(--c-paper-alt);
  }
  .mobile-lang a.active {
    background: var(--c-cobalt);
    color: #fff !important;
  }

  @media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
  }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--c-ink);
    overflow: hidden;
    padding-top: var(--nav-h);
  }
  .hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .hero-shape {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: .12;
  }
  .hero-shape-1 {
    width: clamp(300px,40vw,600px);
    height: clamp(300px,40vw,600px);
    background: var(--c-cobalt);
    top: -10%; right: -5%;
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    animation: float1 12s ease-in-out infinite;
  }
  .hero-shape-2 {
    width: clamp(200px,25vw,380px);
    height: clamp(200px,25vw,380px);
    background: var(--c-coral);
    bottom: 10%; left: -5%;
    border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
    animation: float2 15s ease-in-out infinite;
  }
  .hero-shape-3 {
    width: clamp(150px,18vw,280px);
    height: clamp(150px,18vw,280px);
    background: var(--c-lime);
    top: 40%; right: 20%;
    border-radius: 50%;
    animation: float3 10s ease-in-out infinite;
  }
  .hero-shape-4 {
    width: clamp(100px,12vw,200px);
    height: clamp(100px,12vw,200px);
    background: var(--c-violet);
    top: 20%; left: 25%;
    border-radius: var(--radius-lg);
    transform: rotate(30deg);
    animation: float4 18s ease-in-out infinite;
  }
  @keyframes float1 { 0%,100%{transform:translate(0,0) rotate(0deg)} 50%{transform:translate(-20px,30px) rotate(5deg)} }
  @keyframes float2 { 0%,100%{transform:translate(0,0) rotate(0deg)} 50%{transform:translate(25px,-20px) rotate(-8deg)} }
  @keyframes float3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-15px,25px)} }
  @keyframes float4 { 0%,100%{transform:rotate(30deg) translate(0,0)} 50%{transform:rotate(45deg) translate(10px,-15px)} }

  .hero-content {
    position: relative;
    z-index: 2;
    padding-block: var(--space-20);
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(26,60,255,.2);
    border: 1px solid rgba(26,60,255,.3);
    color: var(--c-lime);
    font-size: var(--text-sm);
    font-weight: 500;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
    letter-spacing: .05em;
    text-transform: uppercase;
  }
  .hero-eyebrow i { font-size: var(--text-xs); }
  .hero-h1 {
    font-family: var(--font-head);
    font-size: var(--text-6xl);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin-bottom: var(--space-6);
    max-width: 14ch;
  }
  .hero-h1 .accent-coral { color: var(--c-coral); }
  .hero-h1 .accent-lime  { color: var(--c-lime); }
  .hero-sub {
    font-size: var(--text-xl);
    color: rgba(255,255,255,.7);
    max-width: 52ch;
    line-height: 1.7;
    margin-bottom: var(--space-10);
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    align-items: center;
  }
  .hero-image-wrap {
    position: relative;
    z-index: 2;
  }
  .hero-image-wrap img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,.08);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
  }
  .hero-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--c-lime);
    color: var(--c-ink);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: var(--text-sm);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lime);
    display: flex;
    align-items: center;
    gap: var(--space-2);
  }
  .hero-badge-2 {
    position: absolute;
    top: -16px;
    right: -16px;
    background: var(--c-coral);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: var(--text-sm);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-coral);
    display: flex;
    align-items: center;
    gap: var(--space-2);
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
  }
  @media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-image-wrap { display: none; }
  }

  /* ─── BUTTONS ─── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: var(--text-base);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    transition: transform .2s, box-shadow .2s, background .2s, color .2s;
    min-height: 48px;
    white-space: nowrap;
  }
  .btn:hover { transform: translateY(-2px); }
  .btn-primary {
    background: var(--c-cobalt);
    color: #fff;
    box-shadow: var(--shadow-cobalt);
  }
  .btn-primary:hover {
    background: var(--c-cobalt-dk);
    box-shadow: 0 8px 28px rgba(26,60,255,.4);
  }
  .btn-coral {
    background: var(--c-coral);
    color: #fff;
    box-shadow: var(--shadow-coral);
  }
  .btn-coral:hover {
    background: var(--c-coral-dk);
    box-shadow: 0 8px 28px rgba(255,77,61,.4);
  }
  .btn-lime {
    background: var(--c-lime);
    color: var(--c-ink);
    box-shadow: var(--shadow-lime);
  }
  .btn-lime:hover {
    background: var(--c-lime-dk);
    box-shadow: 0 8px 28px rgba(184,242,58,.5);
  }
  .btn-violet {
    background: var(--c-violet);
    color: #fff;
    box-shadow: var(--shadow-violet);
  }
  .btn-violet:hover {
    background: var(--c-violet-dk);
    box-shadow: 0 8px 28px rgba(107,47,255,.4);
  }
  .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.4);
  }
  .btn-outline:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.7);
  }
  .btn-outline-dark {
    background: transparent;
    color: var(--c-ink);
    border: 2px solid rgba(15,14,23,.2);
  }
  .btn-outline-dark:hover {
    background: var(--c-ink);
    color: #fff;
    border-color: var(--c-ink);
  }
  .btn-sm {
    font-size: var(--text-sm);
    padding: var(--space-2) var(--space-5);
    min-height: 38px;
  }

  /* ─── SECTION LABELS ─── */
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
  }
  .section-label::before {
    content: '';
    display: block;
    width: 20px; height: 2px;
    background: currentColor;
    border-radius: 2px;
  }

  /* ─── SECTION HEADINGS ─── */
  .section-head {
    margin-bottom: var(--space-12);
  }
  .section-head h2 {
    font-family: var(--font-head);
    font-size: var(--text-4xl);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--space-4);
  }
  .section-head p {
    font-size: var(--text-lg);
    line-height: 1.7;
    max-width: 60ch;
    opacity: .8;
  }
  .section-head.centered { text-align: center; }
  .section-head.centered p { margin-inline: auto; }

  /* ─── SERVICES / FEATURES SECTION ─── */
  .section-cobalt {
    background: var(--c-cobalt);
    color: #fff;
  }
  .section-coral {
    background: var(--c-coral);
    color: #fff;
  }
  .section-lime {
    background: var(--c-lime);
    color: var(--c-ink);
  }
  .section-violet {
    background: var(--c-violet);
    color: #fff;
  }
  .section-ink {
    background: var(--c-ink);
    color: #fff;
  }
  .section-paper {
    background: var(--c-paper);
    color: var(--c-ink);
  }
  .section-paper-alt {
    background: var(--c-paper-alt);
    color: var(--c-ink);
  }
  .section-amber {
    background: var(--c-amber);
    color: var(--c-ink);
  }

  /* ─── FEATURE CARDS ─── */
  .feature-card {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    transition: transform .25s, box-shadow .25s, background .25s;
    position: relative;
    overflow: hidden;
  }
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--c-lime);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
  }
  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.2);
    background: rgba(255,255,255,.15);
  }
  .feature-card:hover::before { transform: scaleX(1); }
  .feature-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    margin-bottom: var(--space-5);
    background: rgba(255,255,255,.15);
    transition: transform .25s;
  }
  .feature-card:hover .feature-icon { transform: scale(1.1) rotate(-3deg); }
  .feature-card h3 {
    font-family: var(--font-head);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
  }
  .feature-card p {
    font-size: var(--text-base);
    line-height: 1.65;
    opacity: .85;
  }

  /* ─── DARK FEATURE CARDS (on paper bg) ─── */
  .feature-card-dark {
    background: #fff;
    border: 1px solid rgba(15,14,23,.08);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    transition: transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
  }
  .feature-card-dark::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-cobalt), var(--c-violet));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
  }
  .feature-card-dark:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  .feature-card-dark:hover::after { transform: scaleX(1); }
  .feature-card-dark .feature-icon {
    background: var(--c-cobalt-lt);
    color: var(--c-cobalt);
  }
  .feature-card-dark h3 {
    font-family: var(--font-head);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--c-ink);
    margin-bottom: var(--space-3);
  }
  .feature-card-dark p {
    color: var(--c-ink-soft);
    font-size: var(--text-base);
    line-height: 1.65;
  }

  /* ─── COMPARISON ─── */
  .comparison-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
  }
  .comparison-col {
    padding: var(--space-10) var(--space-8);
  }
  .comparison-col.old {
    background: var(--c-paper-alt);
    color: var(--c-ink);
  }
  .comparison-col.new {
    background: var(--c-cobalt);
    color: #fff;
  }
  .comparison-col h3 {
    font-family: var(--font-head);
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: var(--space-8);
    display: flex;
    align-items: center;
    gap: var(--space-3);
  }
  .comparison-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
    font-size: var(--text-base);
    line-height: 1.6;
  }
  .comparison-item i {
    flex-shrink: 0;
    margin-top: 3px;
    font-size: var(--text-lg);
  }
  .comparison-col.old .comparison-item i { color: var(--c-coral); }
  .comparison-col.new .comparison-item i { color: var(--c-lime); }
  @media (max-width: 700px) {
    .comparison-wrap { grid-template-columns: 1fr; }
  }

  /* ─── PROCESS STEPS ─── */
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: var(--space-6);
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 36px; left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--c-cobalt), var(--c-violet));
    z-index: 0;
  }
  .step-card {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-6);
  }
  .step-number {
    width: 72px; height: 72px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: var(--text-2xl);
    font-weight: 800;
    margin: 0 auto var(--space-5);
    box-shadow: var(--shadow-md);
    transition: transform .25s, box-shadow .25s;
  }
  .step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
  }
  .step-card h3 {
    font-family: var(--font-head);
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--c-ink);
  }
  .step-card p {
    font-size: var(--text-sm);
    color: var(--c-ink-soft);
    line-height: 1.6;
  }
  @media (max-width: 900px) {
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
  }
  @media (max-width: 500px) {
    .process-steps { grid-template-columns: 1fr; }
  }

  /* ─── GALLERY ─── */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-4);
  }
  .gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
  }
  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
  }
  .gallery-item:first-child img { aspect-ratio: 16/7; }
  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,14,23,.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .35s;
    display: flex;
    align-items: flex-end;
    padding: var(--space-6);
  }
  .gallery-overlay span {
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: var(--text-lg);
    transform: translateY(8px);
    transition: transform .35s;
  }
  .gallery-item:hover img { transform: scale(1.06); }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-item:hover .gallery-overlay span { transform: translateY(0); }
  @media (max-width: 700px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item:first-child { grid-column: span 2; }
  }
  @media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:first-child { grid-column: span 1; }
  }

  /* ─── CTA SPLIT ─── */
  .cta-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
  }
  .cta-split-text h2 {
    font-family: var(--font-head);
    font-size: var(--text-4xl);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--space-4);
  }
  .cta-split-text p {
    font-size: var(--text-lg);
    line-height: 1.7;
    opacity: .85;
  }
  .cta-split-action {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    align-items: flex-start;
  }
  .cta-split-action p {
    font-size: var(--text-sm);
    opacity: .75;
    line-height: 1.6;
  }
  @media (max-width: 700px) {
    .cta-split { grid-template-columns: 1fr; gap: var(--space-8); }
  }

  /* ─── BENTO GRID ─── */
  .bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(80px, auto);
    gap: var(--space-4);
  }
  .bento-cell {
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    overflow: hidden;
    position: relative;
    transition: transform .25s, box-shadow .25s;
  }
  .bento-cell:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
  }
  .bento-wide  { grid-column: span 8; }
  .bento-mid   { grid-column: span 6; }
  .bento-third { grid-column: span 4; }
  .bento-full  { grid-column: span 12; }
  .bento-cell h3 {
    font-family: var(--font-head);
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: var(--space-3);
  }
  .bento-cell p {
    font-size: var(--text-base);
    line-height: 1.65;
    opacity: .85;
  }
  .bento-icon {
    font-size: 3rem;
    margin-bottom: var(--space-4);
    display: block;
    opacity: .9;
  }
  @media (max-width: 900px) {
    .bento-wide, .bento-mid, .bento-third, .bento-full { grid-column: span 12; }
  }

  /* ─── TEAM CARDS ─── */
  .team-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform .3s, box-shadow .3s;
  }
  .team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
  }
  .team-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform .5s;
  }
  .team-card:hover .team-card-img { transform: scale(1.04); }
  .team-card-img-wrap { overflow: hidden; }
  .team-card-body {
    padding: var(--space-6) var(--space-8);
  }
  .team-card-role {
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--c-cobalt);
    margin-bottom: var(--space-2);
  }
  .team-card-name {
    font-family: var(--font-head);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--c-ink);
    margin-bottom: var(--space-3);
  }
  .team-card-bio {
    font-size: var(--text-sm);
    color: var(--c-ink-soft);
    line-height: 1.65;
  }

  /* ─── ACCORDION ─── */
  .accordion-item {
    border-bottom: 1px solid rgba(15,14,23,.1);
  }
  .accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) 0;
    font-family: var(--font-head);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--c-ink);
    cursor: pointer;
    text-align: left;
    transition: color .2s;
    min-height: 44px;
    background: none;
    border: none;
  }
  .accordion-toggle:hover { color: var(--c-cobalt); }
  .accordion-toggle i {
    transition: transform .3s;
    flex-shrink: 0;
    margin-left: var(--space-4);
    color: var(--c-cobalt);
  }
  .accordion-toggle.open i { transform: rotate(180deg); }
  .accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4,0,.2,1);
  }
  .accordion-body.open { max-height: 600px; }
  .accordion-body-inner {
    padding-bottom: var(--space-5);
    font-size: var(--text-base);
    color: var(--c-ink-soft);
    line-height: 1.7;
  }

  /* ─── CONTACT FORM ─── */
  .contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
    align-items: start;
  }
  .contact-info h2 {
    font-family: var(--font-head);
    font-size: var(--text-4xl);
    font-weight: 800;
    margin-bottom: var(--space-5);
    line-height: 1.15;
  }
  .contact-info p {
    font-size: var(--text-lg);
    color: var(--c-ink-soft);
    line-height: 1.7;
    margin-bottom: var(--space-8);
  }
  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
  }
  .contact-detail-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    flex-shrink: 0;
  }
  .contact-detail-icon.cobalt { background: var(--c-cobalt-lt); color: var(--c-cobalt); }
  .contact-detail-icon.coral  { background: var(--c-coral-lt);  color: var(--c-coral); }
  .contact-detail-icon.lime   { background: var(--c-lime-lt);   color: var(--c-lime-dk); }
  .contact-detail-text strong {
    display: block;
    font-weight: 600;
    color: var(--c-ink);
    margin-bottom: 2px;
  }
  .contact-detail-text span {
    font-size: var(--text-sm);
    color: var(--c-ink-soft);
  }

  .form-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-lg);
  }
  .form-group {
    margin-bottom: var(--space-5);
  }
  .form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--c-ink);
    margin-bottom: var(--space-2);
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 2px solid rgba(15,14,23,.1);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    color: var(--c-ink);
    background: var(--c-paper);
    transition: border-color .2s, box-shadow .2s;
    min-height: 44px;
  }
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--c-cobalt);
    box-shadow: 0 0 0 3px rgba(26,60,255,.1);
  }
  .form-group textarea { min-height: 120px; resize: vertical; }
  .form-check {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    cursor: pointer;
  }
  .form-check input[type="checkbox"] {
    width: 20px; height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--c-cobalt);
    cursor: pointer;
  }
  .form-check span {
    font-size: var(--text-sm);
    color: var(--c-ink-soft);
    line-height: 1.6;
  }
  .form-check a { color: var(--c-cobalt); text-decoration: underline; }
  @media (max-width: 800px) {
    .contact-wrap { grid-template-columns: 1fr; }
  }

  /* ─── MAP ─── */
  .map-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: var(--space-12);
  }
  .map-wrap iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
  }

  /* ─── FOOTER ─── */
  .site-footer {
    background: var(--c-ink);
    color: rgba(255,255,255,.85);
  }
  .footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: var(--space-10);
    padding-block: var(--space-16);
  }
  .footer-brand p {
    font-size: var(--text-sm);
    line-height: 1.75;
    color: rgba(255,255,255,.65);
    margin-block: var(--space-5);
    max-width: 32ch;
  }
  .footer-col h4 {
    font-family: var(--font-head);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: var(--space-5);
  }
  .footer-col a {
    display: block;
    font-size: var(--text-sm);
    color: rgba(255,255,255,.7);
    margin-bottom: var(--space-3);
    transition: color .2s, padding-left .2s;
  }
  .footer-col a:hover { color: var(--c-lime); padding-left: 4px; }
  .footer-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: rgba(255,255,255,.7);
    margin-bottom: var(--space-3);
  }
  .footer-contact-item i { color: var(--c-lime); width: 16px; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-block: var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-4);
    font-size: var(--text-xs);
    color: rgba(255,255,255,.4);
  }
  .footer-bottom a { color: rgba(255,255,255,.5); transition: color .2s; }
  .footer-bottom a:hover { color: var(--c-lime); }
  .footer-logo { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: .8; }
  @media (max-width: 900px) {
    .footer-main { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  }
  @media (max-width: 500px) {
    .footer-main { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }

  /* ─── PAGE HERO (inner pages) ─── */
  .page-hero {
    background: var(--c-ink);
    color: #fff;
    padding-block: clamp(var(--space-16), 10vw, var(--space-32));
    padding-top: calc(var(--nav-h) + clamp(var(--space-16), 10vw, var(--space-32)));
    position: relative;
    overflow: hidden;
  }
  .page-hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .page-hero-shape {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: .1;
  }
  .page-hero-shape-1 {
    width: 400px; height: 400px;
    background: var(--c-cobalt);
    top: -100px; right: -100px;
    animation: float1 14s ease-in-out infinite;
  }
  .page-hero-shape-2 {
    width: 250px; height: 250px;
    background: var(--c-coral);
    bottom: -80px; left: 10%;
    animation: float2 11s ease-in-out infinite;
  }
  .page-hero h1 {
    font-family: var(--font-head);
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-5);
  }
  .page-hero p {
    font-size: var(--text-xl);
    color: rgba(255,255,255,.7);
    max-width: 55ch;
    line-height: 1.7;
  }
  .page-hero .section-label { color: var(--c-lime); }

  /* ─── THANKS PAGE ─── */
  .thanks-wrap {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-16) var(--space-6);
  }
  .thanks-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: var(--space-16) var(--space-12);
    box-shadow: var(--shadow-xl);
    max-width: 560px;
    width: 100%;
  }
  .thanks-icon {
    width: 80px; height: 80px;
    border-radius: var(--radius-full);
    background: var(--c-lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto var(--space-6);
    box-shadow: var(--shadow-lime);
  }
  .thanks-card h1 {
    font-family: var(--font-head);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--c-ink);
    margin-bottom: var(--space-4);
  }
  .thanks-card p {
    color: var(--c-ink-soft);
    font-size: var(--text-lg);
    line-height: 1.7;
    margin-bottom: var(--space-8);
  }

  /* ─── LEGAL PAGES ─── */
  .legal-content {
    max-width: 760px;
    margin-inline: auto;
    padding-block: var(--space-16);
  }
  .legal-content h1 {
    font-family: var(--font-head);
    font-size: var(--text-4xl);
    font-weight: 800;
    margin-bottom: var(--space-3);
    color: var(--c-ink);
  }
  .legal-date {
    font-size: var(--text-sm);
    color: var(--c-ink-soft);
    margin-bottom: var(--space-10);
    padding-bottom: var(--space-6);
    border-bottom: 2px solid var(--c-paper-alt);
  }
  .legal-content h2 {
    font-family: var(--font-head);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--c-ink);
    margin-top: var(--space-10);
    margin-bottom: var(--space-4);
  }
  .legal-content h3 {
    font-family: var(--font-head);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--c-ink);
    margin-top: var(--space-6);
    margin-bottom: var(--space-3);
  }
  .legal-content p {
    color: var(--c-ink-soft);
    line-height: 1.8;
    margin-bottom: var(--space-4);
  }
  .legal-content ul {
    list-style: disc;
    padding-left: var(--space-6);
    margin-bottom: var(--space-4);
  }
  .legal-content ul li {
    color: var(--c-ink-soft);
    line-height: 1.7;
    margin-bottom: var(--space-2);
  }
  .legal-content a { color: var(--c-cobalt); text-decoration: underline; }

  /* ─── BREADCRUMB ─── */
  .breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: rgba(255,255,255,.5);
    margin-bottom: var(--space-6);
  }
  .breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
  .breadcrumb a:hover { color: var(--c-lime); }
  .breadcrumb i { font-size: var(--text-xs); }

  /* ─── PILL TAGS ─── */
  .tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-xs);
    font-weight: 500;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: var(--c-cobalt-lt);
    color: var(--c-cobalt);
  }
  .tag-lime { background: var(--c-lime-lt); color: var(--c-lime-dk); }
  .tag-coral { background: var(--c-coral-lt); color: var(--c-coral-dk); }
  .tag-violet { background: var(--c-violet-lt); color: var(--c-violet-dk); }

  /* ─── HIGHLIGHT BOX ─── */
  .highlight-box {
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    border-left: 4px solid currentColor;
  }
  .highlight-box.cobalt { background: var(--c-cobalt-lt); color: var(--c-cobalt); }
  .highlight-box.coral  { background: var(--c-coral-lt);  color: var(--c-coral); }
  .highlight-box.lime   { background: var(--c-lime-lt);   color: var(--c-lime-dk); }
  .highlight-box.violet { background: var(--c-violet-lt); color: var(--c-violet); }
  .highlight-box p { color: var(--c-ink-soft); margin: 0; }
  .highlight-box strong { color: var(--c-ink); }

  /* ─── CHECKLIST ─── */
  .checklist {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }
  .checklist-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-base);
    line-height: 1.6;
  }
  .checklist-item i {
    flex-shrink: 0;
    margin-top: 3px;
    font-size: var(--text-lg);
  }

  /* ─── COOKIE BANNER ─── */
  #cookie-banner {
    position: fixed;
    bottom: var(--space-5);
    left: var(--space-5);
    right: var(--space-5);
    max-width: 580px;
    background: var(--c-ink);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: var(--space-6) var(--space-8);
    box-shadow: var(--shadow-xl);
    z-index: 999;
    border: 1px solid rgba(255,255,255,.08);
    display: none;
    animation: slideUp .4s cubic-bezier(.4,0,.2,1);
  }
  #cookie-banner.show { display: block; }
  @keyframes slideUp { from{transform:translateY(20px);opacity:0} to{transform:translateY(0);opacity:1} }
  .cookie-title {
    font-family: var(--font-head);
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-2);
    display: flex;
    align-items: center;
    gap: var(--space-2);
  }
  .cookie-title i { color: var(--c-amber); }
  .cookie-text {
    font-size: var(--text-sm);
    color: rgba(255,255,255,.7);
    line-height: 1.6;
    margin-bottom: var(--space-5);
  }
  .cookie-text a { color: var(--c-lime); text-decoration: underline; }
  .cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
  }
  .cookie-btn {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: var(--text-sm);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    transition: transform .2s, box-shadow .2s, background .2s;
    min-height: 38px;
    cursor: pointer;
    border: none;
  }
  .cookie-btn:hover { transform: translateY(-1px); }
  .cookie-btn-accept { background: var(--c-lime); color: var(--c-ink); }
  .cookie-btn-reject { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.15); }
  .cookie-btn-reject:hover { background: rgba(255,255,255,.15); }
  .cookie-btn-customize { background: transparent; color: rgba(255,255,255,.6); font-size: var(--text-xs); text-decoration: underline; padding: 0; min-height: auto; }
  .cookie-btn-customize:hover { color: #fff; transform: none; }

  .cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(15,14,23,.7);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-5);
  }
  .cookie-modal.show { display: flex; }
  .cookie-modal-card {
    background: var(--c-paper);
    border-radius: var(--radius-xl);
    padding: var(--space-8) var(--space-10);
    max-width: 520px;
    width: 100%;
    box-shadow: var(--shadow-xl);
  }
  .cookie-modal-card h3 {
    font-family: var(--font-head);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--c-ink);
    margin-bottom: var(--space-6);
  }
  .cookie-category {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--c-paper-alt);
  }
  .cookie-category-info strong {
    display: block;
    font-weight: 600;
    color: var(--c-ink);
    margin-bottom: 3px;
  }
  .cookie-category-info span {
    font-size: var(--text-sm);
    color: var(--c-ink-soft);
  }
  .cookie-toggle {
    position: relative;
    width: 44px; height: 24px;
    flex-shrink: 0;
  }
  .cookie-toggle input { opacity: 0; width: 0; height: 0; }
  .cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(15,14,23,.15);
    border-radius: 24px;
    cursor: pointer;
    transition: background .2s;
  }
  .cookie-toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px; height: 18px;
    left: 3px; top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform .2s;
    box-shadow: var(--shadow-xs);
  }
  .cookie-toggle input:checked + .cookie-toggle-slider { background: var(--c-cobalt); }
  .cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
  .cookie-toggle input:disabled + .cookie-toggle-slider { background: var(--c-cobalt); opacity: .6; cursor: not-allowed; }
  .cookie-modal-actions {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-6);
    flex-wrap: wrap;
  }

  /* ─── SCROLL ANIMATIONS ─── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
  }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
  }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }
  .delay-1 { transition-delay: .1s; }
  .delay-2 { transition-delay: .2s; }
  .delay-3 { transition-delay: .3s; }
  .delay-4 { transition-delay: .4s; }
  .delay-5 { transition-delay: .5s; }

  /* ─── DIVIDER ─── */
  .section-divider {
    height: var(--space-4);
    background: var(--c-paper);
  }

  /* ─── INLINE ICON ─── */
  .icon-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: var(--radius-sm);
    background: var(--c-cobalt-lt);
    color: var(--c-cobalt);
    font-size: var(--text-sm);
    flex-shrink: 0;
  }

  /* ─── PRICING / INFO CARD ─── */
  .info-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15,14,23,.06);
    transition: transform .25s, box-shadow .25s;
  }
  .info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  .info-card h3 {
    font-family: var(--font-head);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--c-ink);
    margin-bottom: var(--space-4);
  }
  .info-card p {
    color: var(--c-ink-soft);
    font-size: var(--text-base);
    line-height: 1.65;
  }

  /* ─── VIOLET SECTION CARDS ─── */
  .violet-card {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: background .25s, transform .25s;
  }
  .violet-card:hover {
    background: rgba(255,255,255,.18);
    transform: translateY(-3px);
  }
  .violet-card h4 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
    color: #fff;
  }
  .violet-card p {
    font-size: var(--text-sm);
    color: rgba(255,255,255,.8);
    line-height: 1.6;
  }

  /* ─── CORAL SECTION ─── */
  .coral-list-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5) 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }
  .coral-list-item:last-child { border-bottom: none; }
  .coral-list-item .num {
    font-family: var(--font-head);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: rgba(255,255,255,.2);
    line-height: 1;
    min-width: 48px;
  }
  .coral-list-item h4 {
    font-family: var(--font-head);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
  }
  .coral-list-item p {
    font-size: var(--text-sm);
    opacity: .85;
    line-height: 1.6;
  }

  /* ─── LIME SECTION ─── */
  .lime-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5);
    background: rgba(15,14,23,.06);
    border-radius: var(--radius-lg);
    transition: background .2s, transform .2s;
  }
  .lime-feature:hover {
    background: rgba(15,14,23,.1);
    transform: translateX(4px);
  }
  .lime-feature i {
    font-size: var(--text-2xl);
    color: var(--c-cobalt);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .lime-feature h4 {
    font-family: var(--font-head);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--c-ink);
    margin-bottom: var(--space-1);
  }
  .lime-feature p {
    font-size: var(--text-sm);
    color: var(--c-ink-soft);
    line-height: 1.6;
  }
}

@layer utilities {
  .text-center { text-align: center; }
  .text-right  { text-align: right; }
  .mt-auto { margin-top: auto; }
  .mb-0 { margin-bottom: 0; }
  .pt-nav { padding-top: var(--nav-h); }
  .fw-800 { font-weight: 800; }
  .fw-700 { font-weight: 700; }
  .font-head { font-family: var(--font-head); }
  .opacity-70 { opacity: .7; }
  .d-flex { display: flex; }
  .align-center { align-items: center; }
  .gap-3 { gap: var(--space-3); }
  .gap-4 { gap: var(--space-4); }
  .gap-6 { gap: var(--space-6); }
  .flex-wrap { flex-wrap: wrap; }
  .w-full { width: 100%; }
  .hidden { display: none; }
  .sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
  }
}