:root {
    --brand-light: #2A9CD7;
    --brand: #2A5BA9;
    --brand-dark: #1E3F7A;
    --ink: #0B1B33;
    --ink-soft: #4A5872;
    --line: #E5ECF5;
    --bg: #FFFFFF;
    --bg-soft: #F5F8FC;
    --grad: linear-gradient(135deg, #2A9CD7 0%, #2957A6 100%);
    --grad-dark: linear-gradient(135deg, #2957A6 0%, #1E3F7A 100%);
    --shadow: 0 4px 24px -8px rgba(42, 91, 169, .18);
    --shadow-lg: 0 24px 60px -20px rgba(42, 91, 169, .35);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  html[data-lang="cn"] body { font-family: 'Noto Sans SC', 'Inter', system-ui, sans-serif; }
  img, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

  /* Language visibility */
  [data-en], [data-cn] { display: none; }
  html[data-lang="en"] [data-en] { display: inline; }
  html[data-lang="cn"] [data-cn] { display: inline; }
  /* Block elements need different display */
  h1[data-en], h2[data-en], h3[data-en], p[data-en], div[data-en], li[data-en],
  h1[data-cn], h2[data-cn], h3[data-cn], p[data-cn], div[data-cn], li[data-cn] { display: none; }
  html[data-lang="en"] h1[data-en], html[data-lang="en"] h2[data-en], html[data-lang="en"] h3[data-en],
  html[data-lang="en"] p[data-en], html[data-lang="en"] div[data-en], html[data-lang="en"] li[data-en] { display: block; }
  html[data-lang="cn"] h1[data-cn], html[data-lang="cn"] h2[data-cn], html[data-lang="cn"] h3[data-cn],
  html[data-lang="cn"] p[data-cn], html[data-lang="cn"] div[data-cn], html[data-lang="cn"] li[data-cn] { display: block; }

  /* Nav */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
  .brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 17px; letter-spacing: -.01em; }
  .brand img { height: 34px; width: 34px; }
  .nav-links { display: flex; align-items: center; gap: 32px; }
  .nav-links a { font-size: 14.5px; font-weight: 500; color: var(--ink-soft); transition: color .2s; }
  .nav-links a:hover { color: var(--brand); }
  .nav-actions { display: flex; align-items: center; gap: 14px; }
  .lang-toggle { display: inline-flex; padding: 4px; background: var(--bg-soft); border-radius: 999px; border: 1px solid var(--line); position: relative; z-index: 2; }
  .lang-toggle button { padding: 5px 11px; font-size: 12.5px; font-weight: 600; border-radius: 999px; color: var(--ink-soft); transition: all .2s; cursor: pointer; position: relative; z-index: 2; }
  .lang-toggle button.active { background: var(--bg); color: var(--brand); box-shadow: 0 1px 3px rgba(0,0,0,.08); }
  .nav-actions { position: relative; z-index: 2; }

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px; border-radius: 999px;
    font-weight: 600; font-size: 14.5px;
    transition: transform .2s, box-shadow .2s, background .2s;
    white-space: nowrap;
  }
  .btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow); }
  .btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
  .btn-secondary { background: var(--bg); color: var(--ink); border: 1px solid var(--line); }
  .btn-secondary:hover { border-color: var(--brand-light); color: var(--brand); }
  .btn-ghost { color: var(--brand); font-weight: 600; padding: 12px 0; }
  .btn-wa { background: #25D366; color: #fff; }
  .btn-wa:hover { background: #1eb955; }
  .btn-lg { padding: 15px 28px; font-size: 15.5px; }
  .mobile-nav-btn { display: none; }

  /* Hero */
  .hero {
    position: relative; overflow: hidden;
    padding: 88px 0 120px;
    background:
      radial-gradient(900px 500px at 85% -10%, rgba(42,156,215,.16), transparent 60%),
      radial-gradient(700px 500px at -10% 30%, rgba(41,87,166,.10), transparent 60%),
      #fff;
  }
  .hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; }
  .badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px; border-radius: 999px;
    background: rgba(42,156,215,.10);
    color: var(--brand);
    font-size: 13px; font-weight: 600;
    border: 1px solid rgba(42,156,215,.20);
  }
  .badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-light); box-shadow: 0 0 0 4px rgba(42,156,215,.18); }
  .h1 {
    font-size: clamp(38px, 5.4vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.03em;
    margin: 22px 0 22px;
    color: var(--ink);
  }
  .h1 .grad {
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .lede { font-size: 18px; color: var(--ink-soft); max-width: 560px; }
  .hero-cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

  /* Hero visual — AI agent dashboard */
  .hero-visual {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin-left: auto;
    padding: 24px 20px;
  }
  /* .hero-visual::before removed — replaced by .agent-graph .mesh */
  .dash {
    position: relative; z-index: 1;
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(11,27,51,.04);
    border: 1px solid var(--line);
    overflow: hidden;
  }

  /* Hero visual — minimal abstract logo composition */
  .agent-graph {
    position: relative; z-index: 1;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 480px;
    margin: 0 auto;
  }
  /* Background mesh — multi-layer gradient orbs */
  .agent-graph .mesh {
    position: absolute; inset: -10%;
    z-index: 0;
    pointer-events: none;
  }
  .agent-graph .mesh::before,
  .agent-graph .mesh::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .7;
  }
  .agent-graph .mesh::before {
    top: 8%; left: 8%;
    width: 55%; height: 55%;
    background: radial-gradient(closest-side, #2A9CD7, transparent);
    animation: drift 14s ease-in-out infinite;
  }
  .agent-graph .mesh::after {
    bottom: 6%; right: 4%;
    width: 60%; height: 60%;
    background: radial-gradient(closest-side, #2957A6, transparent);
    animation: drift 18s ease-in-out infinite reverse;
    opacity: .55;
  }
  @keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(4%, -6%) scale(1.06); }
    66% { transform: translate(-3%, 4%) scale(.96); }
  }

  /* Product mockup — AI Customer Intelligence panel */
  .agent-graph .app-window {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow:
      0 30px 70px -20px rgba(41,87,166,.35),
      0 4px 12px -4px rgba(11,27,51,.08);
    overflow: hidden;
    z-index: 3;
    font-family: 'Inter', system-ui, sans-serif;
  }
  .aw-bar {
    background: #F7F9FC;
    border-bottom: 1px solid var(--line);
    padding: 8px 12px;
    display: flex; align-items: center; gap: 10px;
  }
  .aw-dots { display: inline-flex; gap: 5px; }
  .aw-dots span { width: 8px; height: 8px; border-radius: 50%; }
  .aw-dots span:nth-child(1) { background: #FF6058; }
  .aw-dots span:nth-child(2) { background: #FFBD2E; }
  .aw-dots span:nth-child(3) { background: #2ACA40; }
  .aw-url {
    flex: 1; background: #fff; border: 1px solid var(--line);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 10.5px; color: var(--ink-soft);
    display: flex; align-items: center; gap: 5px;
  }
  .aw-url::before {
    content: ""; width: 7px; height: 7px; border-radius: 50%;
    background: #22C55E; flex-shrink: 0;
  }

  .aw-body { padding: 16px 18px 14px; }

  .aw-customer { display: flex; align-items: center; gap: 12px; }
  .aw-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--grad);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
    flex-shrink: 0;
  }
  .aw-name { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.2; }
  .aw-co { font-size: 11.5px; color: var(--ink-soft); margin-top: 2px; }

  .aw-tags { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }
  .aw-tag {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 9px; border-radius: 999px;
    font-size: 10.5px; font-weight: 700;
    line-height: 1.4;
  }
  .aw-tag.hot { background: #FEF3C7; color: #92400E; }
  .aw-tag.score { background: rgba(42,156,215,.12); color: var(--brand); }
  .aw-tag.score::before { content: "★ "; }

  .aw-summary {
    margin-top: 14px;
    background: linear-gradient(135deg, rgba(42,156,215,.08), rgba(41,87,166,.05));
    border: 1px solid rgba(42,156,215,.20);
    border-radius: 10px;
    padding: 11px 13px;
  }
  .aw-summary-lbl {
    font-size: 10px; font-weight: 800;
    color: var(--brand);
    letter-spacing: .08em;
    text-transform: uppercase;
    display: flex; align-items: center; gap: 5px;
    margin-bottom: 6px;
  }
  .aw-summary-lbl::before {
    content: ""; width: 5px; height: 5px; border-radius: 50%;
    background: var(--brand);
    animation: pulseDot 2s ease-in-out infinite;
  }
  .aw-summary-text {
    font-size: 11.5px;
    line-height: 1.5;
    color: var(--ink);
  }

  .aw-action {
    margin-top: 12px;
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px;
    background: #F7F9FC;
    border-radius: 10px;
  }
  .aw-action-icon {
    width: 26px; height: 26px; border-radius: 8px;
    background: var(--grad); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .aw-action-text {
    font-size: 11.5px; flex: 1;
  }
  .aw-action-text strong { font-weight: 700; color: var(--ink); }
  .aw-action-text small { display: block; color: var(--ink-soft); font-size: 10.5px; margin-top: 1px; }
  .aw-action-btn {
    background: var(--brand); color: #fff;
    font-size: 10.5px; font-weight: 700;
    padding: 5px 11px; border-radius: 6px;
  }

  /* Feature pills — clean minimal labels */
  .agent-graph .bubble-pill {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 14px 36px -10px rgba(41,87,166,.25);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--brand-dark);
    white-space: nowrap;
    animation: bubFloat 7s ease-in-out infinite;
  }
  .agent-graph .bubble-pill::before {
    content: "";
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--grad);
    box-shadow: 0 0 0 3px rgba(42,156,215,.18);
    flex-shrink: 0;
  }
  .agent-graph .bubble-pill.b1 { top: 0%;     left: -10%;  animation-delay: 0s; }
  .agent-graph .bubble-pill.b2 { top: 6%;     right: -10%; animation-delay: -1.8s; }
  .agent-graph .bubble-pill.b3 { bottom: 6%;  left: -10%;  animation-delay: -3.6s; }
  .agent-graph .bubble-pill.b4 { bottom: 0%;  right: -10%; animation-delay: -5.4s; }
  @keyframes bubFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  /* (Center logo removed — replaced by code-window mockup) */

  /* Small dot grid in corner for depth */
  .agent-graph .dots {
    position: absolute;
    z-index: 1;
    width: 70px; height: 70px;
    background-image: radial-gradient(rgba(42,91,169,.25) 1.2px, transparent 1.2px);
    background-size: 12px 12px;
    opacity: .55;
  }
  .agent-graph .dots.d1 { top: 4%; right: 6%; }
  .agent-graph .dots.d2 { bottom: 6%; left: 4%; transform: rotate(0deg); }

  @media (max-width: 560px) {
    .agent-graph { max-width: 360px; }
  }
  .dash-head {
    padding: 16px 20px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--line);
  }
  .dash-title { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14.5px; }
  .dash-title img { width: 22px; height: 22px; }
  .dash-live {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 700;
    color: #16A34A;
    background: rgba(34,197,94,.10);
    padding: 4px 10px; border-radius: 999px;
    letter-spacing: .04em;
  }
  .dash-live::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 0 3px rgba(34,197,94,.25);
    animation: pulseDot 2s ease-in-out infinite;
  }
  @keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,.25); } 50% { box-shadow: 0 0 0 6px rgba(34,197,94,.10); } }

  .dash-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    padding: 18px 16px 14px;
    gap: 10px;
  }
  .dash-tile {
    background: var(--bg-soft);
    border-radius: 12px;
    padding: 12px 12px 11px;
    border: 1px solid rgba(11,27,51,.04);
  }
  .dash-tile-lbl { font-size: 10.5px; color: var(--ink-soft); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
  .dash-tile-val { font-size: 20px; font-weight: 800; letter-spacing: -.02em; margin-top: 3px; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .dash-tile-sub { font-size: 10.5px; font-weight: 600; color: #16A34A; margin-top: 2px; display: flex; align-items: center; gap: 3px; }

  .dash-chart {
    padding: 4px 18px 14px;
  }
  .dash-chart svg { width: 100%; height: 72px; }

  .dash-feed {
    border-top: 1px solid var(--line);
    padding: 12px 18px 16px;
  }
  .feed-lbl { font-size: 10.5px; color: var(--ink-soft); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
  .feed-item {
    display: flex; align-items: center; gap: 10px;
    padding: 6px 0;
    font-size: 12.5px;
    opacity: 0;
    animation: feedIn .5s ease forwards;
  }
  .feed-item.f1 { animation-delay: .4s; }
  .feed-item.f2 { animation-delay: 1.1s; }
  .feed-item.f3 { animation-delay: 1.8s; }
  @keyframes feedIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: none; }
  }
  .feed-dot {
    width: 26px; height: 26px; border-radius: 8px;
    background: rgba(42,156,215,.12);
    color: var(--brand);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .feed-text { flex: 1; color: var(--ink); font-weight: 500; }
  .feed-text b { font-weight: 700; }
  .feed-time { font-size: 10.5px; color: var(--ink-soft); white-space: nowrap; }

  /* Floating accent badge */
  .accent-badge {
    position: absolute;
    z-index: 2;
    background: #fff;
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    display: flex; align-items: center; gap: 9px;
    font-size: 12.5px; font-weight: 600;
    animation: floatY 4.5s ease-in-out infinite;
  }
  .accent-badge.ab1 { top: 6px; left: -16px; }
  .accent-badge.ab2 { bottom: 30px; right: -16px; animation-delay: -2.2s; }
  .accent-badge .ab-icon {
    width: 26px; height: 26px; border-radius: 8px;
    background: var(--grad);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  @keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

  /* Stats */
  .stats {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-soft);
  }
  .stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    padding: 36px 0;
  }
  .stat { text-align: center; padding: 0 16px; position: relative; }
  .stat + .stat::before {
    content: ""; position: absolute; left: 0; top: 12%; bottom: 12%; width: 1px; background: var(--line);
  }
  .stat-num { font-size: 28px; font-weight: 800; letter-spacing: -.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .stat-lbl { font-size: 13.5px; color: var(--ink-soft); font-weight: 500; margin-top: 4px; }

  /* Sections */
  section { padding: 110px 0; }
  .sec-tag {
    display: inline-block;
    color: var(--brand);
    font-size: 13px; font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .sec-title {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.1;
    max-width: 720px;
  }
  .sec-head { margin-bottom: 56px; }
  .sec-head.center { text-align: center; }
  .sec-head.center .sec-title { margin: 0 auto; }

  /* Problem */
  .problem { background: var(--bg-soft); }
  .pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .pain-card {
    background: #fff; border-radius: 20px; padding: 32px;
    border: 1px solid var(--line);
    transition: transform .25s, box-shadow .25s;
  }
  .pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .pain-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: linear-gradient(135deg, #FEE2E2, #FECACA);
    color: #B91C1C;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
  }
  .float-card svg { flex-shrink: 0; }
  .pain-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.01em; }
  .pain-card p { font-size: 14.5px; color: var(--ink-soft); }

  /* Services */
  .svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .svc-card {
    position: relative;
    border-radius: 24px;
    padding: 36px;
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
  }
  .svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(42,156,215,.4); }
  .svc-num {
    font-size: 13px; font-weight: 700;
    color: var(--brand);
    letter-spacing: .12em;
    margin-bottom: 18px;
  }
  .svc-icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: var(--grad);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    color: #fff;
    box-shadow: 0 8px 24px -8px rgba(42,91,166,.5);
  }
  .svc-card h3 { font-size: 22px; font-weight: 700; letter-spacing: -.015em; margin-bottom: 12px; }
  .svc-card p { color: var(--ink-soft); font-size: 15px; }

  /* Featured product — Lexara */
  .product {
    --amber: var(--brand);
    --amber-soft: rgba(42,156,215,.12);
  }
  .product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .product-tag {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--amber);
    font-size: 13px; font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .product-tag::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 0 4px rgba(42,156,215,.18);
  }
  .product-title {
    font-size: clamp(28px, 3.6vw, 40px);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.12;
    margin-bottom: 16px;
  }
  .product-title .lexara { color: var(--amber); }
  .product-lede { font-size: 16.5px; color: var(--ink-soft); margin-bottom: 24px; }
  .product-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    margin-bottom: 30px;
  }
  .product-feat { display: flex; gap: 10px; align-items: flex-start; }
  .product-feat .pf-check {
    flex-shrink: 0;
    width: 22px; height: 22px; border-radius: 7px;
    background: var(--amber-soft);
    color: var(--amber);
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
  }
  .product-feat span { font-size: 14px; font-weight: 600; color: var(--ink); }
  .product-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 24px; border-radius: 999px;
    background: var(--grad);
    color: #fff;
    font-weight: 600; font-size: 15px;
    box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s;
  }
  .product-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }

  /* Lexara mockup — contract analysis report */
  .lexara-mock {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 30px 70px -24px rgba(41,87,166,.32), 0 0 0 1px rgba(11,27,51,.03);
    overflow: hidden;
    max-width: 440px;
    margin: 0 auto;
  }
  .lexara-mock .lm-head {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    padding: 14px 18px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .lexara-mock .lm-brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 15px; color: var(--brand); letter-spacing: -.01em; }
  .lexara-mock .lm-brand .lm-logo {
    width: 24px; height: 24px; border-radius: 7px;
    background: var(--grad);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 13px; font-weight: 800;
  }
  .lexara-mock .lm-score {
    font-size: 11px; font-weight: 700;
    color: var(--brand);
    background: rgba(42,156,215,.12);
    padding: 4px 10px; border-radius: 999px;
  }
  .lexara-mock .lm-body { padding: 16px 18px 18px; }
  .lexara-mock .lm-file {
    font-size: 12px; color: var(--ink-soft); font-weight: 600;
    display: flex; align-items: center; gap: 7px;
    margin-bottom: 14px;
  }
  .lexara-mock .lm-file svg { color: var(--amber); }

  .lm-clause {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 10px;
    display: flex; gap: 11px;
    opacity: 0;
    animation: clauseIn .5s ease forwards;
  }
  .lm-clause.c1 { animation-delay: .2s; }
  .lm-clause.c2 { animation-delay: .8s; }
  .lm-clause.c3 { animation-delay: 1.4s; }
  @keyframes clauseIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
  .lm-dot {
    flex-shrink: 0;
    width: 10px; height: 10px; border-radius: 50%;
    margin-top: 3px;
  }
  .lm-dot.red { background: #DC2626; box-shadow: 0 0 0 4px rgba(220,38,38,.14); }
  .lm-dot.amber { background: #D97706; box-shadow: 0 0 0 4px rgba(217,119,6,.14); }
  .lm-dot.green { background: #16A34A; box-shadow: 0 0 0 4px rgba(22,163,74,.14); }
  .lm-clause-body { flex: 1; }
  .lm-clause-h {
    font-size: 12.5px; font-weight: 700; color: var(--ink);
    display: flex; align-items: center; justify-content: space-between;
    gap: 8px;
  }
  .lm-risk {
    font-size: 9.5px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .05em;
    padding: 2px 7px; border-radius: 5px;
    white-space: nowrap;
  }
  .lm-risk.red { background: #FEE2E2; color: #B91C1C; }
  .lm-risk.amber { background: #FEF3C7; color: #92400E; }
  .lm-risk.green { background: #DCFCE7; color: #15803D; }
  .lm-clause-p { font-size: 11.5px; color: var(--ink-soft); margin-top: 3px; line-height: 1.5; }

  @media (max-width: 900px) {
    .product-grid { grid-template-columns: 1fr; gap: 40px; }
    .lexara-mock { order: -1; }
  }
  @media (max-width: 480px) {
    .product-features { grid-template-columns: 1fr; }
  }

  /* How it works */
  .how { background: var(--bg-soft); }
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
  .step {
    background: #fff; border-radius: 20px; padding: 32px;
    border: 1px solid var(--line);
    position: relative;
  }
  .step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    background: var(--grad); color: #fff;
    border-radius: 12px;
    font-weight: 800; font-size: 18px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px -6px rgba(42,91,166,.45);
  }
  .step h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.01em; }
  .step p { color: var(--ink-soft); font-size: 14.5px; }

  /* Why us */
  .why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why-card {
    background: #fff; border: 1px solid var(--line);
    border-radius: 20px; padding: 28px 30px;
    display: flex; gap: 18px;
    transition: transform .2s, border-color .2s;
  }
  .why-card:hover { transform: translateY(-2px); border-color: rgba(42,156,215,.4); }
  .why-check {
    flex-shrink: 0;
    width: 38px; height: 38px; border-radius: 12px;
    background: rgba(42,156,215,.12);
    color: var(--brand);
    display: flex; align-items: center; justify-content: center;
  }
  .why-card h3 { font-size: 17.5px; font-weight: 700; margin-bottom: 6px; }
  .why-card p { color: var(--ink-soft); font-size: 14.5px; }

  /* About */
  .about { background: var(--bg-soft); }
  .about-inner { max-width: 820px; margin: 0 auto; text-align: center; }
  .about-inner p { font-size: 17px; color: var(--ink-soft); margin-top: 20px; }

  /* CTA */
  .cta {
    background: var(--grad-dark);
    color: #fff;
    position: relative; overflow: hidden;
  }
  .cta::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(600px 400px at 10% 0%, rgba(42,156,215,.35), transparent 60%),
      radial-gradient(500px 400px at 100% 100%, rgba(255,255,255,.08), transparent 60%);
    pointer-events: none;
  }
  .cta .wrap { position: relative; text-align: center; }
  .cta .sec-tag { color: #8BD0F1; }
  .cta .sec-title { color: #fff; margin: 0 auto; }
  .cta p.sub { color: rgba(255,255,255,.78); font-size: 17px; max-width: 620px; margin: 18px auto 0; }
  .cta-buttons { display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
  .cta .btn-primary { background: #fff; color: var(--brand-dark); }
  .cta .btn-primary:hover { background: #f0f6ff; }
  .reassure { margin-top: 22px; font-size: 13.5px; color: rgba(255,255,255,.65); }

  /* Consultation form */
  .form-card {
    margin: 36px auto 0;
    max-width: 720px;
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 30px 80px -30px rgba(0,0,0,.45);
    text-align: left;
    color: var(--ink);
  }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-field { display: flex; flex-direction: column; margin-bottom: 16px; }
  .form-field label { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
  .form-field input,
  .form-field select,
  .form-field textarea {
    font: inherit;
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    font-size: 15px;
    transition: border-color .15s, box-shadow .15s;
    font-family: inherit;
  }
  .form-field textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--brand-light);
    box-shadow: 0 0 0 3px rgba(42,156,215,.15);
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: #9AA5B8; }
  .form-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A5872' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
  }
  .form-captcha { margin: 0 0 18px; min-height: 78px; display: flex; }
  .form-submit { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
  .form-submit .btn { flex: 1; min-width: 180px; justify-content: center; }
  .form-submit .btn-spinner { display: inline-flex; animation: spin 1s linear infinite; }
  .form-submit .btn-spinner[hidden] { display: none; }
  .form-submit .btn-label[hidden] { display: none; }
  @keyframes spin { to { transform: rotate(360deg); } }
  .form-submit button[disabled] { opacity: .7; cursor: not-allowed; }
  .hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
  .form-msg {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14.5px;
    line-height: 1.5;
  }
  .form-msg-success { background: rgba(34,197,94,.10); border: 1px solid rgba(34,197,94,.30); color: #14532D; }
  .form-msg-error { background: rgba(220,38,38,.10); border: 1px solid rgba(220,38,38,.30); color: #7F1D1D; }
  @media (max-width: 640px) {
    .form-card { padding: 24px 20px; border-radius: 18px; }
    .form-grid { grid-template-columns: 1fr; gap: 0; }
  }

  /* Footer */
  footer { background: #0B1B33; color: rgba(255,255,255,.75); padding: 60px 0 30px; }
  .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
  .foot-brand { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 700; font-size: 17px; margin-bottom: 14px; }
  .foot-brand img { height: 32px; width: 32px; }
  .foot p { font-size: 14px; }
  footer h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .08em; }
  footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  footer ul a { font-size: 14px; transition: color .2s; }
  footer ul a:hover { color: var(--brand-light); }
  .foot-bottom {
    border-top: 1px solid rgba(255,255,255,.10);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; color: rgba(255,255,255,.5);
    flex-wrap: wrap; gap: 12px;
  }

  /* Floating action buttons (FAB stack) */
  .fab-stack {
    position: fixed; bottom: 24px; right: 24px;
    z-index: 60;
    display: flex; flex-direction: column; gap: 12px;
  }
  .fab {
    width: 56px; height: 56px; border-radius: 50%;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: transform .2s;
  }
  .fab:hover { transform: scale(1.08); }
  .fab.wa-fab { background: #25D366; box-shadow: 0 12px 30px -6px rgba(37, 211, 102, .55); }
  .fab.email-fab { background: var(--grad); box-shadow: 0 12px 30px -6px rgba(41, 87, 166, .55); }

  /* Reveal animation disabled — content always visible */
  .reveal { opacity: 1; }

  /* Mobile */
  @media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 360px; margin: 0 auto; }
    .svc-grid, .pain-grid, .steps, .why-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
    .stat + .stat::before { display: none; }
    .stat:nth-child(3), .stat:nth-child(4) { padding-top: 0; }
    .foot-grid { grid-template-columns: 1fr; gap: 28px; }
    section { padding: 80px 0; }
    .hero { padding: 56px 0 80px; }
    .nav-links { display: none; }
    .mobile-nav-btn { display: inline-flex; }
  }
  @media (max-width: 560px) {
    .float-card.fc3, .float-card.fc4 { display: none; }
    .hero-cta .btn { flex: 1; justify-content: center; }
    .foot-bottom { flex-direction: column; text-align: center; }
  }

  /* ============ Privacy page-specific styles ============ */

  /* Hero */
  .page-hero {
    padding: 72px 0 40px;
    background:
      radial-gradient(700px 400px at 80% -10%, rgba(42,156,215,.12), transparent 60%),
      #fff;
    border-bottom: 1px solid var(--line);
  }
  .crumb { font-size: 13px; color: var(--ink-soft); font-weight: 500; margin-bottom: 14px; }
  .crumb a { color: var(--ink-soft); }
  .crumb a:hover { color: var(--brand); }
  .page-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.1;
    color: var(--ink);
  }
  .page-title .grad {
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .page-meta { margin-top: 16px; font-size: 14px; color: var(--ink-soft); }
  /* Content */
  .content { padding: 60px 0 100px; }
  .content h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.015em;
    margin: 44px 0 16px;
    color: var(--ink);
    scroll-margin-top: 90px;
  }
  .content h2:first-of-type { margin-top: 0; }
  .content h2 .num {
    display: inline-block;
    color: var(--brand);
    font-weight: 800;
    margin-right: 10px;
  }
  .content p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 14px; }
  .content ul { color: var(--ink-soft); font-size: 15.5px; padding-left: 22px; margin-bottom: 14px; }
  .content li { margin-bottom: 6px; }
  .content strong { color: var(--ink); font-weight: 600; }
  .content a { font-weight: 500; }
  .notice {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-left: 3px solid var(--brand);
    border-radius: 10px;
    padding: 16px 20px;
    margin: 24px 0;
    font-size: 14.5px;
    color: var(--ink-soft);
  }
  .contact-card {
    margin-top: 40px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px 28px;
  }
  .contact-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; color: var(--ink); }
  .contact-card p { margin-bottom: 4px; font-size: 14.5px; }
  .foot-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
  @media (max-width: 640px) {
    .page-hero { padding: 48px 0 28px; }
    .content { padding: 40px 0 70px; }
  }

  /* Privacy page content prose links */
  .content a { color: var(--brand); }
  .content a:hover { text-decoration: underline; }
  .privacy-page a:hover.brand { text-decoration: none; }
