  :root {
    /* Brand palette derived from logo gradient */
    --brand-900: #2B0E4A;
    --brand-800: #3C1366;
    --brand-700: #4E1B82;
    --brand-600: #6B2599;
    --brand-500: #8E2DB0;
    --brand-400: #B23BB6;
    --brand-300: #D154A8;
    --brand-100: #F3E6F5;
    --brand-50:  #FAF3FB;

    --teal-200: #5DCAA5;
    --teal-600: #0F6E56;
    --teal-50:  #E6F5EF;

    --amber-50: #FBEFD8;
    --amber-500: #EF9F27;
    --amber-700: #8C5208;

    --ink-900: #15101E;
    --ink-700: #3A3148;
    --ink-500: #6B6376;
    --ink-400: #8E879A;
    --ink-300: #C9C4D2;
    --ink-100: #ECE9F1;
    --ink-50:  #F7F5FA;
    --white: #ffffff;

    --gradient-brand: linear-gradient(135deg, #4E1B82 0%, #8E2DB0 45%, #D154A8 100%);
    --gradient-soft: linear-gradient(180deg, #FAF3FB 0%, #ffffff 60%);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 2px rgba(43,14,74,0.06), 0 1px 3px rgba(43,14,74,0.04);
    --shadow-md: 0 6px 18px rgba(43,14,74,0.08), 0 2px 6px rgba(43,14,74,0.05);
    --shadow-lg: 0 30px 60px -20px rgba(43,14,74,0.25), 0 10px 30px -10px rgba(43,14,74,0.15);
    --shadow-glow: 0 20px 70px -10px rgba(142,45,176,0.4);

    --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-serif: 'Roboto', Georgia, serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { font-size: 16px; scroll-behavior: smooth; }
  body {
    font-family: var(--font-sans);
    color: var(--ink-900);
    background: var(--white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img { display: block; max-width: 100%; }
  a { text-decoration: none; color: inherit; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  .container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
  .section { padding: 110px 0; }
  .text-center { text-align: center; }

  /* ── Type ── */
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand-600);
  }
  .eyebrow::before {
    content: '';
    width: 18px; height: 1px;
    background: var(--brand-400);
  }
  .display {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(44px, 6.5vw, 78px);
    line-height: 1.02;
    letter-spacing: -.022em;
  }
  .display em { font-style: italic; color: var(--brand-500); }
  h2.h2 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1.08;
    letter-spacing: -.02em;
  }
  h2.h2 em { font-style: italic; color: var(--brand-500); }
  .h3 { font-size: 22px; font-weight: 600; line-height: 1.3; letter-spacing: -.01em; }
  .lead {
    font-size: clamp(17px, 1.4vw, 20px);
    font-weight: 400;
    color: var(--ink-500);
    line-height: 1.6;
    max-width: 56ch;
  }
  .small { font-size: 13px; color: var(--ink-500); }

  /* ── Buttons ── */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 15px; font-weight: 600;
    border-radius: 999px;
    padding: 14px 24px;
    transition: all .22s cubic-bezier(.4,0,.2,1);
    border: 1.5px solid transparent;
    white-space: nowrap;
    line-height: 1;
  }
  .btn-primary {
    background: var(--ink-900);
    color: var(--white);
  }
  .btn-primary:hover {
    background: var(--brand-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }
  .btn-brand {
    background: var(--gradient-brand);
    color: var(--white);
    box-shadow: 0 8px 24px -8px rgba(142,45,176,0.5);
  }
  .btn-brand:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 32px -8px rgba(142,45,176,0.6);
  }
  .btn-outline {
    background: transparent;
    color: var(--ink-900);
    border-color: var(--ink-300);
  }
  .btn-outline:hover { border-color: var(--ink-900); }
  .btn-ghost {
    background: transparent;
    color: var(--ink-700);
  }
  .btn-ghost:hover { color: var(--brand-600); }
  .btn-sm { padding: 10px 18px; font-size: 13px; }
  .btn-lg { padding: 16px 30px; font-size: 16px; }
  .arrow { transition: transform .22s; }
  .btn:hover .arrow { transform: translateX(3px); }

  /* ── Pill / Badge ── */
  .pill {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--brand-50);
    color: var(--brand-700);
    border: 1px solid var(--brand-100);
  }
  .pill-dark {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.18);
  }
  .pill-amber { background: var(--amber-50); color: var(--amber-700); border-color: rgba(239,159,39,0.2); }
  .pill-teal { background: var(--teal-50); color: var(--teal-600); border-color: rgba(15,110,86,0.15); }
  .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: currentColor;
  }
  .dot-live { background: #16a34a; box-shadow: 0 0 0 4px rgba(22,163,74,0.15); }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(22,163,74,0); }
  }
  .dot-live { animation: pulse 1.8s infinite; }

  /* ══════════════════ NAVBAR ══════════════════ */
  .navbar {
    position: fixed; top: 16px; left: 0; right: 0; z-index: 100;
    margin: 0 auto;
    max-width: 1180px;
    padding: 0 16px;
  }
  .navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(43,14,74,0.04);
    border-radius: 999px;
    padding: 10px 12px 10px 22px;
    box-shadow: 0 4px 20px -8px rgba(43,14,74,0.08);
  }
  .navbar-logo img { height: 28px; width: auto; }
  .navbar-links {
    display: flex; align-items: center; gap: 4px;
    flex: 1;
    justify-content: center;
  }
  .navbar-links a {
    font-size: 14px; color: var(--ink-700); font-weight: 500;
    padding: 8px 14px; border-radius: 999px;
    transition: all .18s;
  }
  .navbar-links a:hover { background: var(--ink-50); color: var(--ink-900); }
  .navbar-cta { display: flex; gap: 8px; align-items: center; }

  /* ══════════════════ HERO ══════════════════ */
  .hero {
    position: relative;
    padding: 140px 0 60px;
    overflow: hidden;
    background: var(--gradient-soft);
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: -200px -100px auto auto;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(209,84,168,0.18), transparent 60%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 100px auto auto -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(78,27,130,0.13), transparent 60%);
    pointer-events: none;
  }
  .hero-inner { position: relative; z-index: 1; }
  .hero-top {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 60px;
  }
  .hero-award {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFE4B0 100%);
    border: 1px solid rgba(214,158,46,0.3);
    padding: 10px 22px 10px 12px;
    border-radius: 999px;
    margin-bottom: 28px;
    font-size: 13px;
    color: #6B4F0A;
    box-shadow: 0 8px 24px -8px rgba(214,158,46,0.35), 0 0 0 4px rgba(255,236,179,0.4);
    position: relative;
    animation: awardGlow 3s ease-in-out infinite;
  }
  @keyframes awardGlow {
    0%, 100% { box-shadow: 0 8px 24px -8px rgba(214,158,46,0.35), 0 0 0 4px rgba(255,236,179,0.4); }
    50% { box-shadow: 0 12px 32px -8px rgba(214,158,46,0.5), 0 0 0 6px rgba(255,236,179,0.5); }
  }
  .hero-award .medal {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F4B73E 0%, #D69E2E 100%);
    color: var(--white);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(214,158,46,0.4), inset 0 1px 0 rgba(255,255,255,0.4);
    flex-shrink: 0;
  }
  .hero-award .award-label { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #8C6919; display: block; margin-bottom: 1px; }
  .hero-award .award-name { font-weight: 700; color: #4A3608; font-size: 14px; }
  .hero-award .award-name em { font-style: normal; color: #6B4F0A; font-weight: 600; }
  .hero-expo-visit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FF0000;
    padding: 13px 22px 13px 18px;
    border-radius: 999px;
    margin-bottom: 28px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 24px -8px rgba(0,0,0,0.3);
    transition: all .22s cubic-bezier(.4,0,.2,1);
  }
  .hero-expo-visit:hover {
    background: #d70303;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -8px rgba(0,0,0,0.4);
  }
  .hero-expo-visit .expo-pin { display: inline-flex; align-items: center; flex-shrink: 0; opacity: .9; }
  .hero-expo-visit .expo-visit-label { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,0.75); display: block; margin-bottom: 2px; }
  .hero-expo-visit .expo-visit-stand { font-weight: 700; color: #fff; font-size: 15px; }
  .hero-eyebrow-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(43,14,74,0.08);
    padding: 6px 6px 6px 16px;
    border-radius: 999px;
    margin-bottom: 32px;
    font-size: 13px;
    color: var(--ink-700);
  }
  .hero-eyebrow-row strong { color: var(--brand-600); font-weight: 600; }
  .hero-eyebrow-row .award-pill {
    background: var(--amber-50);
    color: var(--amber-700);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .hero-title { margin-bottom: 28px; }
  .hero-lead { font-size: 19px; margin: 0 auto 36px; }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
  .hero-trust {
    margin-top: 28px;
    display: flex; align-items: center; gap: 16px;
    justify-content: center;
    color: var(--ink-500);
    font-size: 13px;
    flex-wrap: wrap;
  }
  .hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
  .hero-trust .check { color: var(--teal-600); font-weight: 700; }

  /* Hero gallery (slider) */
  .hero-slider {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 40px 80px -24px rgba(43,14,74,0.35), 0 0 0 1px rgba(43,14,74,0.08);
    background: var(--white);
    transform: perspective(2200px) rotateX(1.5deg);
    transform-origin: 50% 100%;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 1.2s ease, transform 6s ease;
    pointer-events: none;
  }
  .hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 1;
  }
  .hero-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }
  .hero-slider::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    z-index: 5;
  }
  .hero-dots {
    position: absolute;
    bottom: 16px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 8px;
    z-index: 6;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    padding: 8px 12px;
    border-radius: 999px;
    box-shadow: 0 6px 20px -6px rgba(0,0,0,0.2);
  }
  .hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(43,14,74,0.18);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .3s;
  }
  .hero-dot.is-active {
    background: var(--brand-500);
    width: 24px;
    border-radius: 999px;
  }
  .hero-slide-label {
    position: absolute;
    top: 16px; left: 16px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-700);
    text-transform: uppercase;
    letter-spacing: .06em;
    z-index: 6;
    box-shadow: 0 4px 14px -4px rgba(0,0,0,0.15);
  }

  /* Hero mockup */
  .hero-mockup-wrap {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
  }
  .hero-mockup {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(43,14,74,0.06);
    background: var(--white);
    transform: perspective(2000px) rotateX(2deg);
    transform-origin: 50% 100%;
    transition: transform .6s cubic-bezier(.2,.8,.2,1);
  }
  .hero-mockup:hover { transform: perspective(2000px) rotateX(0deg); }
  .hero-mockup img { width: 100%; display: block; }
  .hero-mockup::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    z-index: 2;
  }
  .floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 14px 18px;
    display: flex; align-items: center; gap: 12px;
    border: 1px solid var(--ink-100);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
  }
  .floating-card .fc-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .floating-card .fc-title { font-size: 13px; font-weight: 600; }
  .floating-card .fc-sub { font-size: 11px; color: var(--ink-500); }
  .floating-card.fc-left {
    top: -20px; left: -10px;
    animation-delay: -2s;
    z-index: 20;
  }
  .floating-card.fc-right {
    bottom: -10px; right: -10px;
    z-index: 20;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  /* ══════════════════ MARQUEE (importadores) ══════════════════ */
  .marquee-section {
    padding: 48px 0 24px;
    background: var(--white);
    border-bottom: 1px solid var(--ink-100);
  }
  .marquee-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-500);
    margin-bottom: 28px;
  }
  .marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  }
  .marquee-track {
    display: flex; gap: 48px;
    align-items: center;
    width: max-content;
    animation: scroll 30s linear infinite;
  }
  .marquee-item {
    display: flex;
    align-items: center;
    height: 36px;
    flex-shrink: 0;
    filter: grayscale(1) opacity(0.55);
    transition: filter .25s;
  }
  .marquee-item:hover { filter: grayscale(0) opacity(1); }
  .marquee-item img { height: 100%; width: auto; object-fit: contain; display: block; }
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ══════════════════ STATS ══════════════════ */
  .stats-section {
    padding: 88px 0;
    background: var(--ink-50);
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--ink-100);
  }
  .stat-card {
    padding: 36px 28px;
    border-right: 1px solid var(--ink-100);
    position: relative;
  }
  .stat-card:last-child { border-right: none; }
  .stat-card .num {
    font-family: var(--font-serif);
    font-size: clamp(40px, 4.5vw, 60px);
    color: var(--brand-700);
    line-height: 1;
    letter-spacing: -.02em;
    margin-bottom: 10px;
  }
  .stat-card .label {
    font-size: 14px;
    color: var(--ink-700);
    font-weight: 500;
    line-height: 1.4;
  }
  .stat-card .desc {
    font-size: 12px;
    color: var(--ink-500);
    margin-top: 6px;
  }

  /* ══════════════════ PROBLEM/SOLUTION ══════════════════ */
  .ps-section { background: var(--white); }
  .section-head {
    max-width: 760px;
    margin: 0 auto 72px;
    text-align: center;
  }
  .section-head .eyebrow { margin-bottom: 20px; }
  .section-head h2 { margin-bottom: 18px; }
  .section-head .lead { margin: 0 auto; }

  .vs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
  }
  .vs-col {
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--ink-100);
  }
  .vs-col--bad { background: var(--ink-50); }
  .vs-col--good {
    background: var(--brand-50);
    border-color: rgba(142,45,176,0.18);
    position: relative;
    overflow: hidden;
  }
  .vs-col--good::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 60%; height: 100%;
    background: radial-gradient(circle, rgba(209,84,168,0.12), transparent 70%);
    pointer-events: none;
  }
  .vs-col-head {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .vs-col--bad .vs-col-head { border-bottom-color: var(--ink-100); }
  .vs-col-head h3 {
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
  }
  .vs-col--bad h3 { color: var(--ink-700); }
  .vs-col--good h3 { color: var(--brand-700); }
  .vs-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px 0;
  }
  .vs-icon {
    width: 24px; height: 24px;
    border-radius: 50%;
    flex-shrink: 0; margin-top: 2px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    color: var(--white);
    font-weight: 700;
  }
  .vs-icon--bad { background: #C84B6E; }
  .vs-icon--good { background: var(--brand-500); }
  .vs-item .t { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
  .vs-item .d { font-size: 14px; color: var(--ink-500); line-height: 1.55; }

  /* ══════════════════ FEATURES TABBED ══════════════════ */
  .features-section {
    background: var(--ink-900);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .features-section::before {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(142,45,176,0.3), transparent 60%);
    pointer-events: none;
  }
  .features-section::after {
    content: '';
    position: absolute;
    bottom: -20%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(78,27,130,0.25), transparent 60%);
    pointer-events: none;
  }
  .features-section .container { position: relative; z-index: 1; }
  .features-section .eyebrow { color: var(--brand-300); }
  .features-section .eyebrow::before { background: var(--brand-300); }
  .features-section h2 { color: var(--white); }
  .features-section .lead { color: rgba(255,255,255,0.65); }

  .feat-tabs {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 6px;
    border-radius: 999px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .feat-tab {
    color: rgba(255,255,255,0.6);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    transition: all .22s;
  }
  .feat-tab:hover { color: var(--white); }
  .feat-tab.active {
    background: var(--white);
    color: var(--ink-900);
    font-weight: 600;
  }
  .feat-panel {
    display: none;
    animation: fadeIn .4s ease;
  }
  .feat-panel.active { display: grid; }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .feat-panel-grid {
    grid-template-columns: 5fr 6fr;
    gap: 60px;
    align-items: center;
  }
  .feat-panel-text h3 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -.02em;
  }
  .feat-panel-text h3 em { font-style: italic; color: var(--brand-300); }
  .feat-panel-text p {
    color: rgba(255,255,255,0.7);
    font-size: 17px;
    margin-bottom: 24px;
    line-height: 1.6;
  }
  .feat-list {
    display: flex; flex-direction: column; gap: 12px;
  }
  .feat-list li {
    list-style: none;
    display: flex; gap: 12px; align-items: flex-start;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.5;
  }
  .feat-list li::before {
    content: '';
    flex-shrink: 0;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--brand-500);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 2px;
  }
  .feat-panel-visual {
    position: relative;
  }
  .feat-screen {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
    max-height: 349px;
  }
  .feat-screen img { display: block; width: 100%; }

  /* ══════════════════ VIRTUALCAVI ══════════════════ */
  .vc-section {
    padding: 110px 0;
    background: var(--white);
  }
  .vc-card {
    background: linear-gradient(135deg, #1AA085 0%, #34A853 100%);
    border-radius: var(--radius-xl);
    padding: 72px;
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .vc-card::before {
    content: '';
    position: absolute;
    inset: -50% auto auto -20%;
    width: 80%; height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.18), transparent 60%);
    pointer-events: none;
  }
  .vc-card::after {
    content: '';
    position: absolute;
    inset: auto -10% -30% auto;
    width: 60%; height: 80%;
    background: radial-gradient(ellipse, rgba(0,0,0,0.18), transparent 65%);
    pointer-events: none;
  }
  .vc-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .vc-logo { height: 90px; width: auto; margin-bottom: 20px; }
  .vc-title {
    font-family: var(--font-serif);
    font-size: clamp(26px, 4.5vw, 40px);
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 18px 0 24px;
  }
  .vc-title em { font-style: italic; opacity: 0.85; }
  .vc-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 480px;
  }
  .vc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .vc-features li {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .vc-feat-check {
    color: #6ee7b7;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
  }
  .vc-feat-ai {
    color: #c4b5fd;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
  }
  .vc-metrics {
    display: flex; gap: 36px;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }
  .vc-metric .n {
    font-family: var(--font-serif);
    font-size: 40px;
    line-height: 1;
    margin-bottom: 4px;
  }
  .vc-metric .l { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: .04em; text-transform: uppercase; }

  /* VC demo widget */
  .vc-demo {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 24px;
  }
  .vc-demo-head {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
  }
  .vc-demo-head .live { display: inline-flex; align-items: center; gap: 6px; }
  .vc-demo-head .live::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: #5DCAA5;
    box-shadow: 0 0 0 4px rgba(93,202,165,0.2);
  }
  .vc-upload-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
  .vc-upload {
    background: rgba(255,255,255,0.06);
    border: 1px dashed rgba(255,255,255,0.25);
    border-radius: var(--radius-md);
    padding: 22px 12px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    transition: all .2s;
    cursor: pointer;
  }
  .vc-upload:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
  .vc-upload .ico {
    width: 32px; height: 32px;
    margin: 0 auto 8px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
  }
  .vc-upload .lbl { font-weight: 600; color: rgba(255,255,255,0.9); display: block; margin-bottom: 2px; }
  .vc-select-row {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 14px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .vc-select-row span:first-child { color: rgba(255,255,255,0.55); font-size: 11px; }
  .vc-cta-btn {
    width: 100%;
    background: var(--white);
    color: var(--brand-700);
    font-weight: 700;
    font-size: 14px;
    padding: 14px;
    border-radius: var(--radius-md);
    text-align: center;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: transform .2s;
  }
  .vc-cta-btn:hover { transform: translateY(-1px); }
  .vc-footnote {
    font-size: 11px; color: rgba(255,255,255,0.45);
    text-align: center; margin-top: 10px;
  }
  .vc-stack {
    position: relative;
    aspect-ratio: 4 / 2.5;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.18);
  }
  .vc-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 1.2s ease, transform 6s ease;
    pointer-events: none;
  }
  .vc-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 1;
  }
  .vc-slide img,
  .vc-slide video {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }
  .vc-dots {
    position: absolute;
    bottom: 14px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 8px;
    z-index: 6;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    padding: 8px 12px;
    border-radius: 999px;
    box-shadow: 0 6px 20px -6px rgba(0,0,0,0.25);
  }
  .vc-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(26,160,133,0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .3s;
  }
  .vc-dot.is-active {
    background: #1AA085;
    width: 24px;
    border-radius: 999px;
  }
  .vc-slide-label {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: #0F6E56;
    text-transform: uppercase;
    letter-spacing: .06em;
    z-index: 6;
    box-shadow: 0 4px 14px -4px rgba(0,0,0,0.15);
  }
  @media (max-width: 980px) {
    .vc-stack { aspect-ratio: 4 / 3; }
  }

  /* ══════════════════ HOW IT WORKS ══════════════════ */
  .how-section { background: var(--ink-50); padding: 110px 0; }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .step-card {
    background: var(--white);
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: all .25s;
  }
  .step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-300);
  }
  .step-num {
    font-family: var(--font-serif);
    font-size: 48px;
    color: var(--brand-500);
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -.02em;
  }
  .step-num::before { content: '0'; opacity: 0.4; }
  .step-card .t { font-size: 18px; font-weight: 600; margin-bottom: 8px; letter-spacing: -.01em; }
  .step-card .d { font-size: 14px; color: var(--ink-500); line-height: 1.55; }

  .how-bottom {
    margin-top: 56px;
    background: var(--ink-900);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 40px;
    align-items: center;
  }
  .how-bottom h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -.02em;
  }
  .how-bottom p { color: rgba(255,255,255,0.65); font-size: 15px; }
  .importer-logos { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
  .importer-logo {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s;
  }
  .importer-logo:hover { transform: translateY(-2px); }
  .importer-logo img { height: 22px; width: auto; object-fit: contain; display: block; }
  .chip.more {
    background: transparent;
    color: rgba(255,255,255,0.55);
    border: 1px dashed rgba(255,255,255,0.3);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
  }

  /* ══════════════════ PRICING ══════════════════ */
  .pricing-section { background: var(--white); padding: 110px 0; }
  .billing-toggle {
    display: inline-flex;
    background: var(--ink-50);
    border: 1px solid var(--ink-100);
    padding: 4px;
    border-radius: 999px;
    margin-bottom: 48px;
  }
  .billing-toggle button {
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-500);
    transition: all .22s;
  }
  .billing-toggle button.active {
    background: var(--white);
    color: var(--ink-900);
    box-shadow: var(--shadow-sm);
  }
  .billing-toggle .save-pill {
    background: var(--brand-50);
    color: var(--brand-700);
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    font-weight: 700;
  }
  .plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
  }
  .plan {
    background: var(--white);
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex; flex-direction: column;
    position: relative;
    transition: all .25s;
  }
  .plan:hover { border-color: var(--ink-300); }
  .plan--featured {
    background: var(--ink-900);
    color: var(--white);
    border-color: var(--ink-900);
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
  }
  .plan--featured:hover { border-color: var(--ink-900); }
  .plan-badge {
    position: absolute;
    top: 16px; right: 20px;
    background: var(--brand-500);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
  }
  .plan-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-600);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
  }
  .plan--featured .plan-name { color: var(--brand-300); }
  .plan-price {
    display: flex; align-items: baseline; gap: 6px;
    margin-bottom: 6px;
  }
  .plan-price .amount {
    font-family: var(--font-serif);
    font-size: 56px;
    line-height: 1;
    letter-spacing: -.02em;
  }
  .plan-price .unit { font-size: 15px; color: var(--ink-500); }
  .plan--featured .plan-price .unit { color: rgba(255,255,255,0.8); }
  .plan-yearly {
    font-size: 12px;
    color: var(--ink-500);
    margin-bottom: 4px;
  }
  .plan--featured .plan-yearly { color: rgba(255,255,255,0.7); }
  .plan-impl {
    font-size: 12px;
    color: var(--ink-400);
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--ink-100);
  }
  .plan--featured .plan-impl { color: rgba(255,255,255,0.7); border-bottom-color: rgba(255,255,255,0.1); }
  .plan-features {
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 28px;
    flex: 1;
  }
  .plan-features li {
    list-style: none;
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 14px;
    color: var(--ink-700);
    line-height: 1.5;
  }
  .plan-features li::before {
    content: '';
    flex-shrink: 0;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--brand-100);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%236B2599' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 3px;
  }
  .plan--featured .plan-features li { color: rgba(255,255,255,0.85); }
  .plan--featured .plan-features li::before {
    background-color: var(--brand-500);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  }
  .plan-cta { margin-top: auto; }
  .plan-cta .btn { width: 100%; justify-content: center; }
  .plan--featured .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
  }
  .plan--featured .btn-outline:hover { background: var(--white); color: var(--ink-900); }

  .pricing-addon {
    margin-top: 32px;
    background: var(--brand-50);
    border: 1px solid var(--brand-100);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .pricing-addon-left { display: flex; align-items: center; gap: 20px; }
  .pricing-addon-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--brand-100);
    display: flex; align-items: center; justify-content: center;
    padding: 10px;
    flex-shrink: 0;
  }
  .pricing-addon-icon img { width: 100%; height: 100%; object-fit: contain; }
  .pricing-addon-title { font-size: 18px; font-weight: 600; letter-spacing: -.01em; }
  .pricing-addon-sub { font-size: 13px; color: var(--ink-500); margin-top: 2px; }
  .pricing-addon-right { text-align: right; }
  .pricing-addon-right .price {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--brand-700);
    line-height: 1;
  }
  .pricing-addon-right .price span { font-size: 14px; color: var(--ink-500); }

  .pricing-footnote {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--ink-500);
  }

  /* ══════════════════ TESTIMONIAL / QUOTE ══════════════════ */
  .quote-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
  }
  .quote-section::before {
    content: '"';
    position: absolute;
    font-family: var(--font-serif);
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 240px;
    color: var(--brand-100);
    line-height: 1;
    pointer-events: none;
  }
  .quote-content {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .quote-text {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.25;
    letter-spacing: -.015em;
    color: var(--ink-900);
    margin-bottom: 36px;
  }
  .quote-text em { font-style: italic; color: var(--brand-500); }
  .quote-attr {
    font-size: 14px;
    color: var(--ink-500);
    letter-spacing: .04em;
    text-transform: uppercase;
    font-weight: 600;
  }

  /* ══════════════════ FAQ ══════════════════ */
  .faq-section { background: var(--ink-50); padding: 110px 0; }
  .faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex; flex-direction: column; gap: 12px;
  }
  .faq-item {
    background: var(--white);
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all .22s;
  }
  .faq-item:hover { border-color: var(--brand-300); }
  .faq-item[open] {
    border-color: var(--brand-400);
    box-shadow: var(--shadow-sm);
  }
  .faq-summary {
    padding: 22px 28px;
    list-style: none;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink-900);
    user-select: none;
  }
  .faq-summary::-webkit-details-marker { display: none; }
  .faq-summary::after {
    content: '+';
    font-size: 28px;
    font-weight: 300;
    color: var(--brand-500);
    transition: transform .22s;
    line-height: 1;
  }
  .faq-item[open] .faq-summary::after {
    transform: rotate(45deg);
  }
  .faq-body {
    padding: 0 28px 24px;
    color: var(--ink-500);
    font-size: 15px;
    line-height: 1.6;
  }

  /* ══════════════════ CTA FINAL ══════════════════ */
  .cta-section {
    background: var(--gradient-brand);
    padding: 110px 0;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before, .cta-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }
  .cta-section::before {
    inset: -200px auto auto -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 60%);
  }
  .cta-section::after {
    inset: auto -100px -200px auto;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(43,14,74,0.4), transparent 60%);
  }
  .cta-content { position: relative; z-index: 1; }
  .cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -.02em;
  }
  .cta-section .lead {
    color: rgba(255,255,255,0.85);
    margin: 0 auto 36px;
  }
  .cta-section .btn-primary {
    background: var(--white);
    color: var(--brand-700);
  }
  .cta-section .btn-primary:hover {
    background: var(--ink-900);
    color: var(--white);
  }
  .cta-section .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
  }
  .cta-section .btn-outline:hover { background: rgba(255,255,255,0.1); }
  .cta-trust {
    display: flex; gap: 24px;
    justify-content: center; flex-wrap: wrap;
    margin-top: 32px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
  }
  .cta-trust span { display: inline-flex; align-items: center; gap: 6px; }

  /* ══════════════════ CONTACT FORM ══════════════════ */
  .contact-section {
    background: var(--ink-50);
    padding: 110px 0;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 56px;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  .contact-side {
    background: var(--gradient-brand);
    color: var(--white);
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
  }
  .contact-side::before {
    content: '';
    position: absolute;
    inset: -50% -30% auto auto;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 60%);
    pointer-events: none;
  }
  .contact-side .eyebrow { color: rgba(255,255,255,0.85); }
  .contact-side .eyebrow::before { background: rgba(255,255,255,0.6); }
  .contact-side h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(28px, 2.6vw, 38px);
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 16px 0 16px;
    position: relative;
    z-index: 1;
  }
  .contact-side p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
  }
  .contact-channels {
    display: flex; flex-direction: column; gap: 14px;
    position: relative;
    z-index: 1;
  }
  .contact-channel {
    display: flex; align-items: center; gap: 14px;
    color: rgba(255,255,255,0.95);
    font-size: 14px;
  }
  .contact-channel .ico {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
  }
  .contact-channel .lbl { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: .08em; }
  .contact-channel .val { font-weight: 600; }

  .contact-form-wrap {
    padding: 56px 48px;
  }
  .contact-form-wrap h3 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 26px;
    margin-bottom: 8px;
    letter-spacing: -.02em;
  }
  .contact-form-wrap .form-sub {
    color: var(--ink-500);
    font-size: 14px;
    margin-bottom: 28px;
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .form-field {
    display: flex; flex-direction: column;
  }
  .form-field--full { grid-column: 1 / -1; }
  .form-field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-700);
    margin-bottom: 6px;
    letter-spacing: .02em;
  }
  .form-field label .req { color: var(--brand-500); }
  .form-field input,
  .form-field textarea {
    font-family: inherit;
    font-size: 14px;
    color: var(--ink-900);
    background: var(--white);
    border: 1.5px solid var(--ink-100);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    transition: all .18s;
    width: 100%;
    resize: vertical;
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: var(--ink-400); }
  .form-field input:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--brand-500);
    box-shadow: 0 0 0 4px rgba(142,45,176,0.12);
  }
  .form-field input.error,
  .form-field textarea.error {
    border-color: #C84B6E;
    box-shadow: 0 0 0 4px rgba(200,75,110,0.12);
  }
  .form-field .hint {
    font-size: 11px;
    color: var(--ink-400);
    margin-top: 4px;
  }
  .form-field div.error[data-type="validator-error"] {
    display: block;
    font-size: 11px;
    color: #C84B6E;
    margin-top: 4px;
  }
  .form-alert {
    display: none;
    grid-column: 1 / -1;
    align-items: flex-start;
    gap: 10px;
    background: #FFF1F4;
    border: 1.5px solid #C84B6E;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 13px;
    color: #9B2444;
    line-height: 1.5;
  }
  .form-alert.visible {
    display: flex;
  }
  .form-alert::before {
    content: '!';
    width: 20px; height: 20px;
    border-radius: 50%;
    background: #C84B6E;
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .form-actions {
    grid-column: 1 / -1;
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 8px;
    gap: 16px;
    flex-wrap: wrap;
  }
  .form-actions .privacy {
    font-size: 12px;
    color: var(--ink-500);
  }
  .form-actions .privacy a { color: var(--brand-600); text-decoration: underline; }
  .form-success {
    display: none;
    background: var(--teal-50);
    border: 1px solid rgba(15,110,86,0.2);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    color: var(--teal-600);
    font-size: 14px;
    margin-top: 16px;
  }
  .form-success.visible { display: flex; align-items: center; gap: 10px; }
  .form-success::before {
    content: '✓';
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--teal-600);
    color: var(--white);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700;
    flex-shrink: 0;
  }
  @media (max-width: 880px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .contact-side, .contact-form-wrap { padding: 40px 28px; }
  }

  /* ══════════════════ FOOTER ══════════════════ */
  .footer {
    background: var(--ink-900);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 56px;
  }
  .footer-logo {
    display: inline-block;
    margin-bottom: 20px;
  }
  .footer-logo img { height: 38px; }
  .footer-desc { font-size: 14px; line-height: 1.6; margin-bottom: 20px; max-width: 360px; }
  .footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
  .footer-contact a { color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 8px; }
  .footer-contact a:hover { color: var(--white); }
  .footer-col-title {
    font-size: 12px; font-weight: 700;
    color: var(--white); margin-bottom: 18px;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: color .15s;
  }
  .footer-links a:hover { color: var(--white); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap; gap: 12px;
  }
  .footer-social { display: flex; gap: 14px; }
  .footer-social a {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all .2s;
  }
  .footer-social a:hover {
    background: var(--brand-500);
    color: var(--white);
  }

  /* ══════════════════ RESPONSIVE ══════════════════ */
  @media (max-width: 980px) {
    .navbar-links { display: none; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-card { border-right: none; border-bottom: 1px solid var(--ink-100); }
    .stat-card:nth-child(odd) { border-right: 1px solid var(--ink-100); }
    .vs-grid, .vc-grid, .how-bottom { grid-template-columns: 1fr; }
    .feat-panel-grid { grid-template-columns: 1fr !important; gap: 32px; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .plans-grid { grid-template-columns: 1fr; }
    .plan--featured { transform: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .vc-card { padding: 40px 28px; }
    .floating-card { display: none; }
  }
  @media (max-width: 580px) {
    .section { padding: 72px 0; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-card { border-right: none !important; }
    .steps-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .container { padding: 0 20px; }
    .vs-col, .quote-section, .pricing-addon { padding: 28px; }
    .pricing-addon { flex-direction: column; align-items: flex-start; text-align: left; }
    .pricing-addon-right { text-align: left; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { justify-content: center; }
  }

  /* Reveal on scroll */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
