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

  :root {
    --black: #0A0A0F;
    --black-mid: #111118;
    --black-light: #1C1C26;
    --border: rgba(255,255,255,0.08);
    --indigo: #4F46E5;
    --indigo-light: #6366F1;
    --indigo-dim: rgba(79,70,229,0.12);
    --indigo-glow: rgba(79,70,229,0.3);
    --white: #FFFFFF;
    --gray-100: #F7F7F8;
    --gray-200: #E8E8ED;
    --gray-400: #A0A0B0;
    --gray-500: #6B6B80;
    --gray-800: #1E1E2E;
    --green: #22C55E;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(10,10,15,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }
  .logo-mark {
    width: 32px; height: 32px;
    background: var(--indigo);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900;
    font-size: 13px;
    color: white;
    letter-spacing: -0.5px;
  }
  .logo-text {
    color: white;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
  }
  .logo-sub {
    color: var(--gray-400);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
    line-height: 1;
    margin-top: 1px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }
  .nav-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: white; }

  .nav-cta {
    background: var(--indigo);
    color: white !important;
    padding: 9px 20px;
    border-radius: 8px;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--indigo-light) !important; color: white !important; }

  /* HERO */
  .hero {
    background: var(--black);
    padding: 140px 40px 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(79,70,229,0.18) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--indigo-dim);
    border: 1px solid rgba(99,102,241,0.3);
    border-radius: 100px;
    padding: 6px 14px;
    color: var(--indigo-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 32px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--indigo-light);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .hero-headline {
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    color: white;
    text-align: center;
    letter-spacing: -0.03em;
    max-width: 900px;
    margin-bottom: 24px;
  }
  .hero-headline em {
    font-style: normal;
    color: var(--indigo-light);
  }

  .hero-sub {
    color: var(--gray-400);
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
    max-width: 560px;
    margin-bottom: 40px;
    font-weight: 400;
  }

  .hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 72px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn-primary {
    background: var(--indigo);
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
  }
  .btn-primary:hover { background: var(--indigo-light); transform: translateY(-1px); }
  .btn-primary svg { transition: transform 0.2s; }
  .btn-primary:hover svg { transform: translateX(3px); }

  .btn-ghost {
    background: transparent;
    color: var(--gray-400);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
  }
  .btn-ghost:hover { color: white; border-color: rgba(255,255,255,0.2); }

  /* MIGRATION FLOW VISUAL — the signature element */
  .migration-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    row-gap: 16px;
  }

  .platform-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--black-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 20px;
    color: white;
    font-size: 14px;
    font-weight: 600;
  }
  .platform-pill .p-icon {
    width: 28px; height: 28px;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
  }

  .flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    position: relative;
  }
  .flow-arrow::before {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, rgba(79,70,229,0.3), var(--indigo), rgba(79,70,229,0.3));
    background-size: 200% 100%;
    animation: flow-line 1.5s linear infinite;
  }
  @keyframes flow-line {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
  }
  .flow-arrow svg {
    position: relative;
    z-index: 1;
    background: var(--black);
    color: var(--indigo-light);
  }

  .platform-pill.destination {
    border-color: rgba(79,70,229,0.4);
    background: rgba(79,70,229,0.1);
  }
  .platform-pill.destination .p-icon {
    background: var(--indigo);
  }

  .flow-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
    width: 100%;
    max-width: 600px;
  }
  .stat { text-align: center; }
  .stat-num {
    font-size: 28px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .stat-num span { color: var(--indigo-light); }
  .stat-label {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
    margin-top: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
  }

  /* TRUST BAR */
  .trust-bar {
    background: var(--gray-100);
    padding: 28px 40px;
    border-bottom: 1px solid var(--gray-200);
  }
  .trust-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .trust-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-right: 8px;
  }
  .trust-brand {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    padding: 6px 16px;
    border-radius: 6px;
  }
  .trust-sep { color: var(--gray-200); font-size: 20px; }

  /* SECTION BASE */
  section { padding: 96px 40px; }
  .section-inner { max-width: 1100px; margin: 0 auto; }

  .section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--indigo);
    margin-bottom: 16px;
  }
  .section-title {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 20px;
  }
  .section-title.light { color: white; }
  .section-body {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 520px;
  }
  .section-body.light { color: var(--gray-400); }

  /* MIGRATION SECTION */
  .migration-section {
    background: var(--black);
    padding: 96px 40px;
  }

  .migration-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 64px;
  }

  .migration-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .migration-card {
    background: var(--black-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.2s, transform 0.2s;
    cursor: pointer;
  }
  .migration-card:hover {
    border-color: rgba(79,70,229,0.4);
    transform: translateY(-2px);
  }
  .migration-card.featured {
    border-color: rgba(79,70,229,0.35);
    background: linear-gradient(135deg, rgba(79,70,229,0.08), var(--black-light));
    grid-column: span 2;
  }

  .card-route {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }
  .route-from, .route-to {
    font-size: 13px;
    font-weight: 700;
    color: white;
    background: rgba(255,255,255,0.06);
    padding: 5px 12px;
    border-radius: 6px;
  }
  .route-arrow {
    color: var(--indigo-light);
    font-size: 18px;
    font-weight: 300;
  }
  .popular-badge {
    margin-left: auto;
    background: var(--indigo-dim);
    color: var(--indigo-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid rgba(99,102,241,0.3);
  }

  .card-desc {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 3px 8px;
  }

  .migration-guarantee {
    background: rgba(79,70,229,0.08);
    border: 1px solid rgba(79,70,229,0.2);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--gray-400);
    font-size: 14px;
    line-height: 1.5;
  }
  .guarantee-icon {
    width: 36px; height: 36px;
    background: var(--indigo-dim);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  /* PROCESS */
  .process-section { background: var(--gray-100); }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 56px;
    background: var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
  }

  .process-step {
    background: white;
    padding: 32px;
    position: relative;
  }
  .process-step:first-child { border-radius: 16px 0 0 16px; }
  .process-step:last-child { border-radius: 0 16px 16px 0; }

  .step-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--indigo);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .step-num::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
  }

  .step-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .step-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
  }

  /* SUPPORTING SERVICES */
  .supporting-section {
    padding: 64px 40px;
    background: white;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
  }

  .supporting-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .supporting-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
  }

  .supporting-note {
    font-size: 14px;
    color: var(--gray-400);
    max-width: 400px;
  }

  .supporting-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .support-card {
    padding: 24px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: border-color 0.2s;
  }
  .support-card:hover { border-color: var(--indigo-light); }

  .support-icon {
    width: 36px; height: 36px;
    background: var(--gray-100);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
  }
  .support-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
  }
  .support-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
  }

  /* CASE STUDIES */
  .cases-section { background: var(--black); padding: 96px 40px; }

  .cases-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
  }

  .view-all-link {
    color: var(--indigo-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
  }
  .view-all-link:hover { gap: 10px; }

  .cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .case-card {
    background: var(--black-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: border-color 0.2s;
  }
  .case-card:hover { border-color: rgba(79,70,229,0.3); }

  .case-type {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--indigo-light);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .case-type::before {
    content: '';
    width: 16px; height: 2px;
    background: var(--indigo-light);
    border-radius: 1px;
  }

  .case-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.3;
  }

  .case-desc {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .case-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }

  .result-num {
    font-size: 22px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
  }
  .result-num.positive { color: var(--green); }
  .result-label {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
    margin-top: 2px;
  }

  /* CTA SECTION */
  .cta-section {
    background: var(--indigo);
    padding: 80px 40px;
    text-align: center;
  }

  .cta-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
  }

  .cta-headline {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .cta-sub {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-white {
    background: white;
    color: var(--indigo);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

  /* FOOTER */
  footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 56px 40px 32px;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer-brand p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 240px;
  }

  .footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 20px;
  }

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: white; }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-bottom p {
    color: var(--gray-500);
    font-size: 13px;
  }

  .footer-links {
    display: flex;
    gap: 24px;
  }
  .footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--gray-400); }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    section, .migration-section, .cases-section, .supporting-section { padding: 64px 20px; }
    .hero { padding: 120px 20px 80px; }
    .hero-headline { font-size: 38px; }
    .migration-header { grid-template-columns: 1fr; }
    .migration-paths { grid-template-columns: 1fr; }
    .migration-card.featured { grid-column: span 1; }
    .process-steps { grid-template-columns: 1fr; }
    .process-step { border-radius: 0; }
    .process-step:first-child { border-radius: 16px 16px 0 0; }
    .process-step:last-child { border-radius: 0 0 16px 16px; }
    .supporting-grid { grid-template-columns: 1fr 1fr; }
    .cases-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .migration-flow { gap: 8px; }
    .flow-arrow { width: 32px; }
  }

  /* PAIN POINTS SECTION */
  .pain-section { background: var(--white); padding: 80px 40px; border-bottom: 1px solid var(--gray-200); }
  .pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .pain-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 28px 0 36px; }
  .pain-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--gray-500); line-height: 1.5; }
  .pain-check { width: 22px; height: 22px; background: rgba(34,197,94,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; font-size: 11px; color: var(--green); font-weight: 700; }
  .pain-right { background: var(--gray-100); border-radius: 20px; padding: 36px; border: 1px solid var(--gray-200); }
  .pain-quote { font-size: 17px; color: var(--black); font-weight: 500; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
  .pain-quote-meta { font-size: 13px; color: var(--gray-500); font-weight: 600; }
  .pain-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
  .pain-stat-box { background: white; border-radius: 12px; padding: 20px; border: 1px solid var(--gray-200); text-align: center; }
  .pain-stat-num { font-size: 28px; font-weight: 800; color: var(--black); letter-spacing: -0.03em; }
  .pain-stat-num.red { color: #EF4444; }
  .pain-stat-label { font-size: 12px; color: var(--gray-500); margin-top: 4px; line-height: 1.4; }

  /* WHY DCX SECTION */
  .why-section { background: var(--black); padding: 80px 40px; }
  .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 48px; background: var(--border); border-radius: 16px; overflow: hidden; }
  .why-card { background: var(--black-light); padding: 32px; transition: background 0.2s; }
  .why-card:hover { background: rgba(79,70,229,0.08); }
  .why-icon { font-size: 28px; margin-bottom: 16px; }
  .why-title { font-size: 16px; font-weight: 700; color: white; margin-bottom: 8px; letter-spacing: -0.01em; }
  .why-desc { font-size: 14px; color: var(--gray-400); line-height: 1.6; }

  /* FOUNDER SECTION */
  .founder-section { background: var(--gray-100); padding: 80px 40px; border-top: 1px solid var(--gray-200); }
  .founder-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: center; }
  .founder-photo-wrap { position: relative; }
  .founder-photo { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: center top; border-radius: 20px; display: block; filter: grayscale(10%); }
  .founder-badge { position: absolute; bottom: -16px; left: 24px; background: var(--indigo); color: white; font-size: 12px; font-weight: 700; padding: 10px 18px; border-radius: 100px; white-space: nowrap; box-shadow: 0 4px 16px rgba(79,70,229,0.4); }
  .founder-content { }
  .founder-name { font-size: 36px; font-weight: 800; color: var(--black); letter-spacing: -0.03em; margin-bottom: 4px; }
  .founder-role { font-size: 14px; font-weight: 600; color: var(--indigo); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 24px; }
  .founder-bio { font-size: 16px; color: var(--gray-500); line-height: 1.8; margin-bottom: 32px; }
  .founder-creds { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
  .founder-cred { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-500); font-weight: 500; }
  .founder-cred::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 13px; }
  .founder-actions { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-sm-primary { display: inline-flex; align-items: center; gap: 6px; background: var(--indigo); color: white; padding: 10px 20px; border-radius: 8px; font-weight: 600; font-size: 14px; text-decoration: none; transition: all 0.2s; }
  .btn-sm-primary:hover { background: var(--indigo-light); }
  .btn-sm-ghost { display: inline-flex; align-items: center; gap: 6px; background: transparent; color: var(--gray-500); padding: 10px 20px; border-radius: 8px; font-weight: 500; font-size: 14px; text-decoration: none; border: 1.5px solid var(--gray-200); transition: all 0.2s; }
  .btn-sm-ghost:hover { color: var(--black); border-color: var(--gray-400); }

  /* AUDIT CTA SECTION */
  .audit-section { background: var(--indigo); padding: 72px 40px; }
  .audit-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .audit-left h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; color: white; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; }
  .audit-left p { color: rgba(255,255,255,0.75); font-size: 16px; line-height: 1.7; }
  .audit-card { background: white; border-radius: 16px; padding: 32px; }
  .audit-card-title { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 20px; letter-spacing: 0.05em; text-transform: uppercase; }
  .audit-items { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
  .audit-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-500); }
  .audit-item::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
  .audit-cta { display: block; width: 100%; padding: 14px; background: var(--indigo); color: white; border: none; border-radius: 10px; font-family: inherit; font-size: 15px; font-weight: 700; text-align: center; text-decoration: none; cursor: pointer; transition: all 0.2s; }
  .audit-cta:hover { background: var(--indigo-light); }
  .audit-note { font-size: 12px; color: var(--gray-400); text-align: center; margin-top: 10px; }

  @media (max-width: 768px) {
    .pain-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .founder-inner { grid-template-columns: 1fr; }
    .founder-photo-wrap { max-width: 280px; }
    .audit-inner { grid-template-columns: 1fr; }
  }

  /* ============================================ */
  /* TECH / MOTION LAYER                           */
  /* ============================================ */

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }

  /* Animated circuit-grid backdrop for dark sections */
  .grid-field {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
  }
  .grid-field canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .hero { z-index: 1; }
  .hero > *:not(.grid-field) { position: relative; z-index: 2; }

  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(99,102,241,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(99,102,241,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 35%, black 0%, transparent 75%);
    mask-image: radial-gradient(ellipse 60% 60% at 50% 35%, black 0%, transparent 75%);
    animation: grid-drift 22s linear infinite;
    pointer-events: none;
    z-index: 0;
  }
  @keyframes grid-drift {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 48px 48px, 48px 48px; }
  }

  .hero::before {
    animation: blob-pulse 6s ease-in-out infinite;
  }
  @keyframes blob-pulse {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.75; transform: translateX(-50%) scale(1.12); }
  }

  /* Scanning sweep across hero */
  .scan-line {
    position: absolute;
    left: 0; right: 0;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(99,102,241,0.06), transparent);
    pointer-events: none;
    z-index: 1;
    animation: scan-sweep 7s ease-in-out infinite;
  }
  @keyframes scan-sweep {
    0% { top: -120px; opacity: 0; }
    10% { opacity: 1; }
    85% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
  }

  /* Logo mark glow */
  .logo-mark {
    position: relative;
    animation: logo-glow 3s ease-in-out infinite;
  }
  @keyframes logo-glow {
    0%, 100% { box-shadow: 0 0 0 rgba(79,70,229,0); }
    50% { box-shadow: 0 0 16px rgba(79,70,229,0.55); }
  }

  /* Eyebrow border shimmer */
  .hero-eyebrow {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  .hero-eyebrow::after {
    content: '';
    position: absolute;
    top: 0; left: -150%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    animation: eyebrow-shine 3.5s ease-in-out infinite;
    z-index: -1;
  }
  @keyframes eyebrow-shine {
    0% { left: -60%; }
    50%, 100% { left: 140%; }
  }

  /* Headline reveal */
  .hero-headline {
    opacity: 0;
    animation: rise-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
  }
  .hero-sub {
    opacity: 0;
    animation: rise-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
  }
  .hero-actions {
    opacity: 0;
    animation: rise-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  }
  .hero-eyebrow {
    opacity: 0;
    animation: rise-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0s forwards;
  }
  .migration-flow {
    opacity: 0;
    animation: rise-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
  }
  .flow-stats {
    opacity: 0;
    animation: fade-in 1s ease 0.9s forwards;
  }
  @keyframes rise-in {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* Platform pill hover lift + glow */
  .platform-pill {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .platform-pill:hover {
    transform: translateY(-3px);
    border-color: rgba(99,102,241,0.5);
    box-shadow: 0 8px 20px rgba(79,70,229,0.18);
  }
  .platform-pill.destination {
    animation: dest-pulse 3s ease-in-out infinite;
  }
  @keyframes dest-pulse {
    0%, 100% { box-shadow: 0 0 0 rgba(79,70,229,0); }
    50% { box-shadow: 0 0 14px rgba(79,70,229,0.35); }
  }

  /* Button shine sweep */
  .btn-primary, .btn-white, .audit-cta, .nav-cta, .btn-sm-primary {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  .btn-primary::before, .btn-white::before, .audit-cta::before, .nav-cta::before, .btn-sm-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(115deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-15deg);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
  }
  .btn-primary:hover::before, .btn-white:hover::before, .audit-cta:hover::before, .nav-cta:hover::before, .btn-sm-primary:hover::before {
    left: 130%;
  }

  /* Scroll-reveal utility */
  [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  [data-reveal].in-view {
    opacity: 1;
    transform: translateY(0);
  }
  [data-reveal="stagger"] > * {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  [data-reveal="stagger"].in-view > * {
    opacity: 1;
    transform: translateY(0);
  }
  [data-reveal="stagger"].in-view > *:nth-child(1) { transition-delay: 0.03s; }
  [data-reveal="stagger"].in-view > *:nth-child(2) { transition-delay: 0.1s; }
  [data-reveal="stagger"].in-view > *:nth-child(3) { transition-delay: 0.17s; }
  [data-reveal="stagger"].in-view > *:nth-child(4) { transition-delay: 0.24s; }
  [data-reveal="stagger"].in-view > *:nth-child(5) { transition-delay: 0.31s; }
  [data-reveal="stagger"].in-view > *:nth-child(6) { transition-delay: 0.38s; }

  /* Card glow-follow (mouse-tracked) */
  .migration-card, .case-card, .why-card, .support-card {
    position: relative;
    overflow: hidden;
  }
  .migration-card::before, .case-card::before, .why-card::before {
    content: '';
    position: absolute;
    top: var(--my, 50%); left: var(--mx, 50%);
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(99,102,241,0.16), transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
  }
  .migration-card:hover::before, .case-card:hover::before, .why-card:hover::before {
    opacity: 1;
  }
  .migration-card:hover, .case-card:hover, .why-card:hover {
    transform: translateY(-4px);
  }
  .case-card, .why-card { transition: transform 0.3s ease, border-color 0.2s, background 0.2s; }

  .migration-card.featured:hover {
    transform: translateY(-4px);
  }

  /* Step number / process underline draw */
  .step-num::after {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
  }
  .process-step.in-view .step-num::after {
    transform: scaleX(1);
  }

  /* Founder photo subtle float */
  .founder-photo-wrap {
    animation: float-soft 6s ease-in-out infinite;
  }
  @keyframes float-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
  .founder-badge {
    animation: badge-pulse 3s ease-in-out infinite;
  }
  @keyframes badge-pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(79,70,229,0.4); }
    50% { box-shadow: 0 4px 24px rgba(79,70,229,0.7); }
  }

  /* Trust bar marquee feel on hover */
  .trust-brand {
    transition: color 0.3s ease, transform 0.3s ease;
  }
  .trust-brand:hover {
    color: var(--indigo);
    transform: translateY(-2px);
  }

  /* Audit card gentle glow */
  .audit-card {
    animation: card-rise 0.8s cubic-bezier(0.16,1,0.3,1);
  }
  @keyframes card-rise {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Nav background shift on scroll */
  nav {
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }
  nav.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  }

  /* Number ticker styling hook */
  .stat-num[data-count], .pain-stat-num[data-count], .result-num[data-count] {
    display: inline-block;
  }

/* WordPress theme additions */
.logo-custom .custom-logo-link { display: flex; align-items: center; text-decoration: none; }
.logo-custom .custom-logo { max-height: 40px; width: auto; }

nav.scrolled { background: rgba(10,10,15,0.98); box-shadow: 0 4px 24px rgba(0,0,0,0.3); }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

body { min-height: 100vh; display: flex; flex-direction: column; }
.site-main, main.site-main { flex: 1; }
footer { margin-top: auto; }

.img-placeholder {
  background: linear-gradient(135deg, var(--black-light), var(--black-mid));
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 24px;
  min-height: 200px;
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-mobile-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10,10,15,0.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; }
  .hero { padding: 120px 20px 80px; }
  .section, .pain-section, .migration-section, .why-section, .process-section, .supporting-section, .founder-section, .cases-section { padding-left: 20px; padding-right: 20px; }
}


/* From services.html */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --black: #0A0A0F; --black-light: #1C1C26; --border: rgba(255,255,255,0.08);
    --indigo: #4F46E5; --indigo-light: #6366F1; --indigo-dim: rgba(79,70,229,0.12);
    --white: #FFFFFF; --gray-100: #F7F7F8; --gray-200: #E8E8ED;
    --gray-400: #A0A0B0; --gray-500: #6B6B80; --green: #22C55E;
  }
  body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--black); line-height: 1.6; -webkit-font-smoothing: antialiased; }

  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(10,10,15,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
  .logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
  .logo-mark { width: 32px; height: 32px; background: var(--indigo); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 13px; color: white; }
  .logo-text { color: white; font-weight: 700; font-size: 15px; }
  .logo-sub { color: var(--gray-400); font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; display: block; line-height: 1; margin-top: 1px; }
  .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
  .nav-links a { color: var(--gray-400); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: white; }
  .nav-cta { background: var(--indigo); color: white !important; padding: 9px 20px; border-radius: 8px; font-weight: 600 !important; }

  .page-hero { background: var(--black); padding: 120px 40px 80px; text-align: center; }
  .eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--indigo); margin-bottom: 16px; }
  .page-title { font-size: clamp(36px, 5vw, 58px); font-weight: 800; color: white; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px; }
  .page-sub { color: var(--gray-400); font-size: 17px; max-width: 520px; margin: 0 auto; line-height: 1.7; }

  .section { padding: 80px 40px; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-title { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.15; color: var(--black); margin-bottom: 12px; }
  .section-title.light { color: white; }
  .section-sub { font-size: 16px; color: var(--gray-500); line-height: 1.7; max-width: 480px; margin-bottom: 48px; }
  .section-sub.light { color: var(--gray-400); }

  /* PRIMARY MIGRATION CARDS */
  .migration-cards { display: flex; flex-direction: column; gap: 2px; }
  .mig-card {
    display: grid; grid-template-columns: 320px 1fr; background: white;
    border: 1px solid var(--gray-200); border-radius: 16px; overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .mig-card:hover { border-color: var(--indigo-light); box-shadow: 0 8px 32px rgba(79,70,229,0.08); }
  .mig-left { background: var(--black); padding: 40px; display: flex; flex-direction: column; justify-content: space-between; }
  .mig-route { margin-bottom: 24px; }
  .mig-from { font-size: 13px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
  .mig-arrow { color: var(--indigo-light); font-size: 24px; margin: 8px 0; }
  .mig-to { font-size: 20px; font-weight: 800; color: white; letter-spacing: -0.01em; }
  .mig-price { font-size: 13px; color: var(--gray-500); margin-top: 24px; }
  .mig-price strong { color: var(--green); font-size: 22px; font-weight: 800; display: block; letter-spacing: -0.02em; }
  .mig-right { padding: 40px; }
  .mig-title { font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 12px; letter-spacing: -0.01em; }
  .mig-desc { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 24px; }
  .mig-includes { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 28px; }
  .mig-includes li { font-size: 13px; color: var(--gray-500); display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
  .mig-includes li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
  .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--indigo); color: white; padding: 12px 24px; border-radius: 8px; font-weight: 600; font-size: 14px; text-decoration: none; transition: all 0.2s; }
  .btn-primary:hover { background: var(--indigo-light); }
  .btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--indigo); border: 1.5px solid var(--indigo); padding: 12px 24px; border-radius: 8px; font-weight: 600; font-size: 14px; text-decoration: none; margin-left: 10px; transition: all 0.2s; }
  .btn-outline:hover { background: var(--indigo-dim); }

  /* SUPPORTING SERVICES */
  .support-section { background: var(--gray-100); padding: 80px 40px; }
  .support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .support-card { background: white; border: 1px solid var(--gray-200); border-radius: 16px; padding: 32px; transition: border-color 0.2s; }
  .support-card:hover { border-color: var(--indigo-light); }
  .support-icon { font-size: 28px; margin-bottom: 16px; }
  .support-name { font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 10px; letter-spacing: -0.01em; }
  .support-desc { font-size: 14px; color: var(--gray-500); line-height: 1.6; margin-bottom: 20px; }
  .support-tags { display: flex; gap: 6px; flex-wrap: wrap; }
  .tag { font-size: 11px; font-weight: 600; color: var(--gray-500); background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: 4px; padding: 3px 8px; }

  /* FAQ */
  .faq-section { padding: 80px 40px; background: white; }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .faq-item { border-bottom: 1px solid var(--gray-200); padding-bottom: 24px; }
  .faq-q { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 10px; letter-spacing: -0.01em; }
  .faq-a { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

  /* CTA */
  .cta-strip { background: var(--indigo); padding: 64px 40px; text-align: center; }
  .cta-strip h2 { font-size: 32px; font-weight: 800; color: white; letter-spacing: -0.02em; margin-bottom: 12px; }
  .cta-strip p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 28px; }
  .btn-white { background: white; color: var(--indigo); padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

  footer { background: var(--black); border-top: 1px solid var(--border); padding: 40px; text-align: center; }
  footer p { color: var(--gray-500); font-size: 13px; }
  footer a { color: var(--gray-400); text-decoration: none; margin: 0 12px; font-size: 13px; }
  footer a:hover { color: white; }

  @media (max-width: 768px) {
    nav { padding: 0 20px; } .nav-links { display: none; }
    .page-hero, .section, .support-section, .faq-section { padding: 100px 20px 60px; }
    .mig-card { grid-template-columns: 1fr; }
    .mig-includes { grid-template-columns: 1fr; }
    .support-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    footer { padding: 40px 20px; }
  }
/* From case-studies.html */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --black: #0A0A0F; --black-mid: #111118; --black-light: #1C1C26;
    --border: rgba(255,255,255,0.08); --indigo: #4F46E5; --indigo-light: #6366F1;
    --indigo-dim: rgba(79,70,229,0.12); --white: #FFFFFF; --gray-100: #F7F7F8;
    --gray-200: #E8E8ED; --gray-400: #A0A0B0; --gray-500: #6B6B80;
    --green: #22C55E;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--black); line-height: 1.6; -webkit-font-smoothing: antialiased; }

  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10,10,15,0.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 64px;
  }
  .logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
  .logo-mark { width: 32px; height: 32px; background: var(--indigo); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 13px; color: white; }
  .logo-text { color: white; font-weight: 700; font-size: 15px; }
  .logo-sub { color: var(--gray-400); font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; display: block; line-height: 1; margin-top: 1px; }
  .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
  .nav-links a { color: var(--gray-400); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: white; }
  .nav-cta { background: var(--indigo); color: white !important; padding: 9px 20px; border-radius: 8px; font-weight: 600 !important; }

  .page-hero { background: var(--black); padding: 120px 40px 80px; text-align: center; }
  .section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--indigo); margin-bottom: 16px; }
  .page-title { font-size: clamp(36px, 5vw, 60px); font-weight: 800; color: white; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px; }
  .page-sub { color: var(--gray-400); font-size: 17px; max-width: 500px; margin: 0 auto; line-height: 1.7; }

  .filters { background: var(--gray-100); border-bottom: 1px solid var(--gray-200); padding: 20px 40px; display: flex; gap: 8px; flex-wrap: wrap; }
  .filter-btn { background: white; border: 1px solid var(--gray-200); border-radius: 100px; padding: 7px 16px; font-size: 13px; font-weight: 600; color: var(--gray-500); cursor: pointer; transition: all 0.2s; }
  .filter-btn:hover, .filter-btn.active { background: var(--indigo); border-color: var(--indigo); color: white; }

  .cases-grid-section { padding: 72px 40px; }
  .section-inner { max-width: 1100px; margin: 0 auto; }

  .cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .case-card {
    border: 1px solid var(--gray-200); border-radius: 20px; overflow: hidden;
    transition: border-color 0.2s, transform 0.2s; background: white;
  }
  .case-card:hover { border-color: var(--indigo-light); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(79,70,229,0.08); }
  .case-card.featured { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }

  .case-visual {
    background: var(--black); padding: 48px 40px;
    display: flex; flex-direction: column; justify-content: space-between; min-height: 260px;
  }
  .case-card.featured .case-visual { min-height: auto; }

  .case-route { display: flex; align-items: center; gap: 10px; margin-bottom: 32px; }
  .route-chip { font-size: 12px; font-weight: 700; background: rgba(255,255,255,0.08); color: white; padding: 5px 12px; border-radius: 6px; }
  .route-sep { color: var(--indigo-light); font-size: 18px; }
  .case-big-stat { font-size: 56px; font-weight: 900; color: var(--green); letter-spacing: -0.04em; line-height: 1; }
  .case-big-label { font-size: 13px; color: var(--gray-400); margin-top: 6px; font-weight: 500; }

  .case-body { padding: 36px; }
  .case-type-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--indigo); margin-bottom: 12px; }
  .case-title { font-size: 22px; font-weight: 800; color: var(--black); letter-spacing: -0.02em; line-height: 1.3; margin-bottom: 12px; }
  .case-client { font-size: 12px; color: var(--gray-400); font-weight: 600; margin-bottom: 16px; letter-spacing: 0.05em; text-transform: uppercase; }
  .case-desc { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 24px; }
  .case-results-row { display: flex; gap: 24px; padding-top: 20px; border-top: 1px solid var(--gray-200); flex-wrap: wrap; }
  .result { }
  .result-num { font-size: 24px; font-weight: 800; color: var(--black); letter-spacing: -0.03em; }
  .result-num.up { color: var(--green); }
  .result-label { font-size: 11px; color: var(--gray-500); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
  .case-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
  .tag { font-size: 11px; font-weight: 600; color: var(--gray-500); background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: 4px; padding: 3px 8px; }

  .read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--indigo); font-size: 14px; font-weight: 600; text-decoration: none; margin-top: 20px; transition: gap 0.2s; }
  .read-more:hover { gap: 10px; }

  .cta-strip { background: var(--indigo); padding: 64px 40px; text-align: center; }
  .cta-strip h2 { font-size: 32px; font-weight: 800; color: white; letter-spacing: -0.02em; margin-bottom: 12px; }
  .cta-strip p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 28px; }
  .btn-white { background: white; color: var(--indigo); padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

  footer { background: var(--black); border-top: 1px solid var(--border); padding: 40px; text-align: center; }
  footer p { color: var(--gray-500); font-size: 13px; }
  footer a { color: var(--gray-400); text-decoration: none; margin: 0 12px; font-size: 13px; }
  footer a:hover { color: white; }

  @media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .page-hero, .cases-grid-section { padding: 100px 20px 60px; }
    .filters { padding: 16px 20px; }
    .cases-grid { grid-template-columns: 1fr; }
    .case-card.featured { grid-column: span 1; display: block; }
    footer { padding: 40px 20px; }
  }
/* From contact.html */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --black: #0A0A0F; --black-light: #1C1C26; --border: rgba(255,255,255,0.08);
    --indigo: #4F46E5; --indigo-light: #6366F1; --indigo-dim: rgba(79,70,229,0.12);
    --white: #FFFFFF; --gray-100: #F7F7F8; --gray-200: #E8E8ED;
    --gray-400: #A0A0B0; --gray-500: #6B6B80; --green: #22C55E; --red: #EF4444;
  }
  body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--black); line-height: 1.6; -webkit-font-smoothing: antialiased; }

  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(10,10,15,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
  .logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
  .logo-mark { width: 32px; height: 32px; background: var(--indigo); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 13px; color: white; }
  .logo-text { color: white; font-weight: 700; font-size: 15px; }
  .logo-sub { color: var(--gray-400); font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; display: block; line-height: 1; margin-top: 1px; }
  .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
  .nav-links a { color: var(--gray-400); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
  .nav-links a:hover { color: white; }
  .nav-cta { background: var(--indigo); color: white !important; padding: 9px 20px; border-radius: 8px; font-weight: 600 !important; }

  .contact-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  /* LEFT PANEL */
  .contact-left {
    background: var(--black);
    padding: 120px 56px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--indigo); margin-bottom: 20px; }
  .contact-title { font-size: clamp(32px, 3.5vw, 48px); font-weight: 800; color: white; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px; }
  .contact-sub { color: var(--gray-400); font-size: 16px; line-height: 1.7; margin-bottom: 48px; }

  .what-happens { margin-bottom: 48px; }
  .what-title { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 20px; }
  .what-step { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
  .step-dot { width: 28px; height: 28px; background: var(--indigo-dim); border: 1px solid rgba(99,102,241,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--indigo-light); flex-shrink: 0; margin-top: 2px; }
  .step-text strong { display: block; font-size: 14px; font-weight: 600; color: white; margin-bottom: 2px; }
  .step-text span { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

  .trust-row { display: flex; gap: 24px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid var(--border); }
  .trust-item { font-size: 13px; color: var(--gray-500); display: flex; align-items: center; gap: 6px; }
  .trust-item::before { content: '✓'; color: var(--green); font-weight: 700; }

  /* RIGHT PANEL */
  .contact-right {
    background: var(--gray-100);
    padding: 120px 56px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .form-title { font-size: 22px; font-weight: 700; color: var(--black); margin-bottom: 6px; letter-spacing: -0.02em; }
  .form-sub { font-size: 14px; color: var(--gray-500); margin-bottom: 32px; }

  .form-group { margin-bottom: 20px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
  label { display: block; font-size: 13px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
  label span { color: var(--red); margin-left: 2px; }
  input, select, textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200);
    border-radius: 8px; font-family: inherit; font-size: 14px; color: var(--black);
    background: white; transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
  }
  input:focus, select:focus, textarea:focus { border-color: var(--indigo); box-shadow: 0 0 0 3px var(--indigo-dim); }
  input::placeholder, textarea::placeholder { color: var(--gray-400); }
  select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236B6B80' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
  textarea { resize: vertical; min-height: 100px; }

  .honeypot { display: none; }

  .btn-submit {
    width: 100%; padding: 14px; background: var(--indigo); color: white;
    border: none; border-radius: 10px; font-family: inherit; font-size: 15px;
    font-weight: 700; cursor: pointer; transition: all 0.2s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 8px;
  }
  .btn-submit:hover { background: var(--indigo-light); transform: translateY(-1px); }
  .btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

  .form-note { font-size: 12px; color: var(--gray-500); text-align: center; margin-top: 14px; }
  .form-note a { color: var(--indigo); text-decoration: none; }

  /* Success / Error states */
  .form-success {
    display: none; background: #F0FDF4; border: 1px solid #BBF7D0;
    border-radius: 12px; padding: 24px; text-align: center; margin-top: 20px;
  }
  .form-success.show { display: block; }
  .form-success h3 { font-size: 18px; font-weight: 700; color: #166534; margin-bottom: 8px; }
  .form-success p { font-size: 14px; color: #166534; opacity: 0.8; }

  .field-error { font-size: 12px; color: var(--red); margin-top: 4px; display: none; }
  .field-error.show { display: block; }
  input.invalid, select.invalid, textarea.invalid { border-color: var(--red); }

  footer { background: var(--black); border-top: 1px solid var(--border); padding: 32px 40px; text-align: center; }
  footer p { color: var(--gray-500); font-size: 13px; }
  footer a { color: var(--gray-400); text-decoration: none; margin: 0 12px; font-size: 13px; }

  @media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; }
    .contact-left { padding: 100px 24px 48px; }
    .contact-right { padding: 48px 24px 64px; }
    nav { padding: 0 20px; } .nav-links { display: none; }
    .form-row { grid-template-columns: 1fr; }
    footer { padding: 32px 20px; }
  }