:root{
    --white:#FFFFFF;
    --paper:#f8fbff;
    --paper-2:#f2f7fc;
    --ink:#102a43;
    --ink-2:#17304a;
    --charcoal:#2b425c;
    --muted:#526d82;
    --muted-2:#6b8299;
    --emerald:#1a63a5;
    --emerald-deep:#0f3f6b;
    --emerald-2:#1f74ba;
    --green:#2f82c9;
    --green-bright:#52a3e2;
    --green-soft:#e8f3fd;
    --green-soft-2:#d3e6f7;
    --mint:#9fd0f5;
    --line:#d9e4ee;
    --line-2:#bfd0df;
    --shadow-sm:0 2px 10px rgba(18,52,84,.06);
    --shadow:0 18px 44px rgba(16,42,67,.12);
    --shadow-lg:0 30px 70px rgba(10,30,52,.20);
    --radius:16px;
    --radius-lg:22px;
    --display:'Fraunces', Georgia, 'Times New Roman', serif;
    --body:'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
    --mono:'IBM Plex Mono', ui-monospace, monospace;
    --maxw:1200px;
  }
  *,*::before,*::after{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
  body{
    margin:0; background:var(--white); color:var(--ink);
    font-family:var(--body); font-size:16.5px; line-height:1.7;
    -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
  }
  img,svg{ display:block; max-width:100%; }
  a{ color:inherit; text-decoration:none; }
  ul{ margin:0; padding:0; list-style:none; }
  button{ font-family:inherit; }
  h1,h2,h3,h4{ font-family:var(--display); color:var(--ink); margin:0; line-height:1.08; letter-spacing:-0.015em; font-weight:500; font-optical-sizing:auto; }
  .wrap{ max-width:var(--maxw); margin:0 auto; padding:0 34px; }
  .eyebrow{
    font-family:var(--mono); font-size:12px; font-weight:500; letter-spacing:.16em; text-transform:uppercase;
    color:var(--emerald-2); display:inline-flex; align-items:center; gap:9px; margin:0 0 18px;
  }
  .eyebrow::before{ content:""; width:22px; height:1.5px; background:var(--green); display:inline-block; }
  .eyebrow.center{ justify-content:center; }
  .eyebrow.on-dark{ color:var(--mint); }
  .eyebrow.on-dark::before{ background:var(--mint); }

  .section-head{ max-width:660px; margin:0 0 54px; }
  .section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
  .section-head h2{ font-size:clamp(30px,4.2vw,50px); }
  .section-head p{ margin:18px 0 0; color:var(--muted); font-size:18px; }

  .em{ color:var(--emerald); font-style:italic; }
  .u-accent{ color:var(--green); }

  /* Buttons */
  .btn{
    font-family:var(--body); font-weight:600; font-size:15px; letter-spacing:.01em;
    border-radius:11px; padding:14px 26px; border:1.5px solid transparent;
    cursor:pointer; display:inline-flex; align-items:center; gap:9px;
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
    white-space:nowrap;
  }
  .btn svg{ width:17px; height:17px; }
  .btn:active{ transform:translateY(1px); }
  .btn-primary{ background:var(--emerald); color:#fff; box-shadow:0 12px 26px rgba(26,99,165,.26); }
  .btn-primary:hover{ background:var(--emerald-deep); box-shadow:0 16px 32px rgba(26,99,165,.32); transform:translateY(-2px); }
  .btn-ghost{ background:transparent; border-color:var(--line-2); color:var(--ink); }
  .btn-ghost:hover{ border-color:var(--emerald); color:var(--emerald); background:var(--green-soft); }
  .btn-light{ background:#fff; color:var(--emerald); }
  .btn-light:hover{ transform:translateY(-2px); box-shadow:0 16px 30px rgba(0,0,0,.18); }
  .btn-outline-light{ background:transparent; border-color:rgba(255,255,255,.42); color:#fff; }
  .btn-outline-light:hover{ background:rgba(255,255,255,.10); border-color:#fff; }
  .btn-block{ width:100%; justify-content:center; }
  .btn[disabled]{ opacity:.6; cursor:not-allowed; }

  /* Utility / announcement bar */
  .util{ background:var(--emerald-deep); color:rgba(255,255,255,.86); font-size:13px; }
  .util .wrap{ display:flex; align-items:center; justify-content:space-between; height:40px; gap:16px; }
  .util .util-left{ display:flex; align-items:center; gap:9px; font-family:var(--mono); font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--mint); }
  .util .util-left .pulse{ width:7px; height:7px; border-radius:50%; background:var(--green-bright); box-shadow:0 0 0 0 rgba(82,163,226,.7); animation:pulse 2.4s infinite; }
  @keyframes pulse{ 0%{ box-shadow:0 0 0 0 rgba(82,163,226,.55);} 70%{ box-shadow:0 0 0 7px rgba(82,163,226,0);} 100%{ box-shadow:0 0 0 0 rgba(82,163,226,0);} }
  .util .util-right{ display:flex; align-items:center; gap:22px; }
  .util .util-right a{ color:rgba(255,255,255,.82); transition:color .18s ease; }
  .util .util-right a:hover{ color:#fff; }
  .util-hide{ display:none !important; }

  /* NAV */
  .nav{ position:sticky; top:0; z-index:60; background:rgba(255,255,255,.82); backdrop-filter:blur(14px); border-bottom:1px solid transparent; transition:border-color .2s ease, box-shadow .2s ease, background .2s ease; }
  .nav.scrolled{ border-bottom-color:var(--line); box-shadow:0 6px 24px rgba(16,42,67,.05); }
  .nav .wrap{ display:flex; align-items:center; justify-content:space-between; height:78px; }
  .brand{ display:flex; align-items:center; gap:12px; }
  .brand-mark{ width:40px; height:40px; border-radius:11px; background:var(--emerald); display:flex; align-items:center; justify-content:center; flex:none; box-shadow:0 6px 16px rgba(26,99,165,.24); }
  .brand-mark svg{ width:40px; height:40px; }
  .brand-name{ display:flex; flex-direction:column; line-height:1; }
  .brand-name b{ font-family:var(--display); font-weight:600; font-size:21px; color:var(--ink); letter-spacing:-0.01em; }
  .brand-name span{ font-family:var(--mono); font-size:9.5px; letter-spacing:.22em; text-transform:uppercase; color:var(--muted-2); margin-top:4px; }
  .nav-links{ display:flex; align-items:center; gap:22px; }
  .nav-links a{ font-size:14.5px; font-weight:500; color:var(--charcoal); position:relative; padding:4px 0; transition:color .18s ease; }
  .nav-links a::after{ content:""; position:absolute; left:0; right:0; bottom:-3px; height:2px; background:var(--green); transform:scaleX(0); transform-origin:left; transition:transform .22s ease; border-radius:2px; }
  .nav-links a:hover{ color:var(--emerald); }
  .nav-links a:hover::after{ transform:scaleX(1); }
  .nav-cta{ display:flex; align-items:center; gap:14px; }
  .nav-burger{ display:none; background:none; border:none; cursor:pointer; padding:8px; border-radius:9px; }
  .nav-burger span{ display:block; width:24px; height:2px; background:var(--ink); margin:5px 0; border-radius:2px; transition:.25s; }

  /* HERO */
  .hero{ position:relative; overflow:hidden; padding:74px 0 96px; }
  .hero::before{
    content:""; position:absolute; inset:0; z-index:0;
    background:
      radial-gradient(920px 520px at 78% -8%, rgba(47,130,201,.16), transparent 60%),
      radial-gradient(700px 460px at 6% 0%, rgba(26,99,165,.08), transparent 55%);
  }
  .hero::after{
    content:""; position:absolute; inset:0; z-index:0; opacity:.5;
    background-image:radial-gradient(circle, #CFE3D8 1.3px, transparent 1.3px);
    background-size:30px 30px;
    -webkit-mask-image:linear-gradient(to bottom, black 0%, transparent 78%);
    mask-image:linear-gradient(to bottom, black 0%, transparent 78%);
  }
  .hero .wrap{ position:relative; z-index:1; display:grid; grid-template-columns:1.06fr .94fr; gap:60px; align-items:center; }
  .hero-copy h1{ font-size:clamp(38px,5.4vw,66px); font-weight:500; margin:6px 0 24px; letter-spacing:-0.025em; }
  .hero-copy h1 b{ font-weight:600; color:var(--emerald); }
  .hero-lede{ font-size:19px; color:var(--muted); max-width:520px; margin:0 0 34px; }
  .hero-actions{ display:flex; gap:15px; flex-wrap:wrap; align-items:center; }
  .hero-meta{ display:flex; align-items:center; gap:22px; margin-top:34px; flex-wrap:wrap; }
  .hero-meta .mitem{ display:flex; align-items:center; gap:10px; font-size:13.5px; color:var(--charcoal); font-weight:500; }
  .hero-meta .mitem svg{ width:18px; height:18px; color:var(--emerald); flex:none; }
  .hero-meta .divider{ width:1px; height:18px; background:var(--line-2); }

  /* Hero visual */
  .hero-visual{ position:relative; }
  .hv-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); box-shadow:var(--shadow); padding:24px 24px 26px; position:relative; z-index:2; }
  .hv-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:20px; }
  .hv-head .t{ display:flex; flex-direction:column; gap:3px; }
  .hv-head .t b{ font-family:var(--display); font-weight:600; font-size:17px; color:var(--ink); }
  .hv-head .t span{ font-size:12px; color:var(--muted-2); }
  .hv-chip{ font-family:var(--mono); font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--emerald-2); background:var(--green-soft); border:1px solid var(--green-soft-2); border-radius:999px; padding:5px 11px; display:inline-flex; align-items:center; gap:6px; }
  .hv-chip .d{ width:6px; height:6px; border-radius:50%; background:var(--green-bright); }
  .hv-chart{ display:flex; align-items:flex-end; gap:12px; height:150px; padding:6px 4px 0; border-bottom:1px solid var(--line); margin-bottom:18px; }
  .hv-bar{ flex:1; border-radius:7px 7px 3px 3px; background:linear-gradient(180deg, var(--green-bright), var(--emerald)); position:relative; transform:scaleY(0); transform-origin:bottom; animation:grow .9s cubic-bezier(.2,.7,.2,1) forwards; }
  .hv-bar.soft{ background:linear-gradient(180deg, #BFE7D3, #9FD9BF); }
  @keyframes grow{ to{ transform:scaleY(1);} }
  .hv-kpis{ display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
  .hv-kpi{ text-align:left; }
  .hv-kpi b{ font-family:var(--display); font-size:22px; font-weight:600; color:var(--emerald); display:block; line-height:1; }
  .hv-kpi span{ font-size:11px; color:var(--muted-2); display:block; margin-top:6px; letter-spacing:.01em; }
  .hv-float{ position:absolute; background:#fff; border:1px solid var(--line); border-radius:14px; box-shadow:var(--shadow); padding:12px 15px; display:flex; align-items:center; gap:11px; z-index:3; }
  .hv-float .ic{ width:34px; height:34px; border-radius:9px; display:flex; align-items:center; justify-content:center; flex:none; color:#fff; }
  .hv-float .ic svg{ width:17px; height:17px; }
  .hv-float b{ font-size:13px; font-weight:600; color:var(--ink); display:block; line-height:1.2; }
  .hv-float span{ font-size:11px; color:var(--muted-2); }
  .hv-float.f1{ top:-24px; right:-14px; animation:float1 6s ease-in-out infinite; }
  .hv-float.f2{ bottom:-22px; left:-20px; animation:float2 7s ease-in-out infinite; }
  @keyframes float1{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-9px);} }
  @keyframes float2{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(8px);} }

  /* LOGO / trust strip */
  .trust{ padding:6px 0 64px; position:relative; z-index:1; }
  .trust .wrap{ text-align:center; }
  .trust .label{ font-family:var(--mono); font-size:11.5px; text-transform:uppercase; letter-spacing:.16em; color:var(--muted-2); margin-bottom:22px; }
  .trust-row{ display:flex; align-items:center; justify-content:center; gap:12px; flex-wrap:wrap; }
  .trust-pill{ font-size:14px; font-weight:600; color:var(--charcoal); background:var(--paper); border:1px solid var(--line); padding:9px 18px; border-radius:999px; transition:all .18s ease; }
  .trust-pill:hover{ border-color:var(--green); color:var(--emerald); }

  /* STATS band */
  .stats{ background:var(--emerald-deep); position:relative; overflow:hidden; }
  .stats::before{ content:""; position:absolute; width:600px; height:600px; border-radius:50%; background:radial-gradient(circle, rgba(82,163,226,.16), transparent 70%); top:-320px; left:-120px; }
  .stats .wrap{ position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:22px; padding:52px 34px; }
  .stat{ text-align:center; }
  .stat b{ display:block; font-family:var(--display); font-size:clamp(30px,3.6vw,44px); color:#fff; font-weight:600; letter-spacing:-0.02em; }
  .stat span{ display:block; font-size:12.5px; color:rgba(255,255,255,.62); margin-top:8px; font-family:var(--mono); text-transform:uppercase; letter-spacing:.08em; }
  .stat + .stat{ border-left:1px solid rgba(255,255,255,.12); }

  /* ABOUT */
  .about{ padding:110px 0; }
  .about .about-grid{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
  /* "Why Annex" block merged into the About section */
  .why-block{ margin-top:90px; padding-top:70px; border-top:1px solid var(--line); }
  .about-copy p.big{ font-size:20px; color:var(--charcoal); margin:0 0 18px; line-height:1.6; }
  .about-copy p.big b{ color:var(--ink); font-weight:600; }
  .about-copy p.sub{ color:var(--muted); margin:0 0 26px; }
  .outcomes{ display:flex; flex-direction:column; gap:2px; }
  .outcome{ display:flex; align-items:center; gap:18px; padding:18px 4px; border-bottom:1px solid var(--line); }
  .outcome:last-child{ border-bottom:none; }
  .outcome .num{ font-family:var(--mono); font-size:12px; color:var(--green); width:26px; flex:none; }
  .outcome .oc-ic{ width:40px; height:40px; border-radius:11px; background:var(--green-soft); color:var(--emerald); display:flex; align-items:center; justify-content:center; flex:none; }
  .outcome .oc-ic svg{ width:19px; height:19px; }
  .outcome b{ font-family:var(--display); font-size:19px; font-weight:600; color:var(--ink); display:block; }
  .outcome span{ font-size:13.5px; color:var(--muted); }

  /* POSITIONING */
  .position{ padding:96px 0; background:var(--ink); position:relative; overflow:hidden; }
  .position::before{ content:""; position:absolute; inset:0; opacity:.5; background-image:radial-gradient(circle, rgba(159,208,245,.10) 1.2px, transparent 1.2px); background-size:28px 28px; -webkit-mask-image:radial-gradient(circle at 70% 30%, black, transparent 70%); mask-image:radial-gradient(circle at 70% 30%, black, transparent 70%); }
  .position .wrap{ position:relative; max-width:1000px; text-align:center; }
  .position h2{ color:#fff; font-size:clamp(28px,4vw,46px); font-weight:400; line-height:1.24; }
  .position h2 .strike{ color:rgba(255,255,255,.42); position:relative; }
  .position h2 .strike::after{ content:""; position:absolute; left:-2%; right:-2%; top:54%; height:2px; background:var(--green); transform:scaleX(1); transform-origin:left; transition:transform .6s ease .2s; }
  html.js .position .wrap.reveal:not(.in) h2 .strike::after{ transform:scaleX(0); }
  .position h2 b{ color:var(--mint); font-weight:600; font-style:italic; }
  .pos-chips{ display:flex; flex-wrap:wrap; gap:11px; justify-content:center; margin-top:40px; }
  .pos-chips span{ font-size:13.5px; font-weight:500; color:rgba(255,255,255,.86); border:1px solid rgba(255,255,255,.18); background:rgba(255,255,255,.04); padding:9px 17px; border-radius:999px; transition:all .2s ease; }
  .pos-chips span:hover{ border-color:var(--mint); color:#fff; background:rgba(159,208,245,.08); }

  /* SERVICES */
  .services{ padding:110px 0; background:var(--paper); }
  .svc-tabs{ display:flex; gap:12px; margin-bottom:14px; flex-wrap:wrap; }
  .svc-tab{ flex:1; min-width:230px; text-align:left; background:#fff; border:1.5px solid var(--line); border-radius:16px; padding:20px 22px; cursor:pointer; transition:all .2s ease; display:flex; gap:15px; align-items:flex-start; }
  .svc-tab .st-ic{ width:44px; height:44px; border-radius:12px; background:var(--green-soft); color:var(--emerald); display:flex; align-items:center; justify-content:center; flex:none; transition:all .2s ease; }
  .svc-tab .st-ic svg{ width:22px; height:22px; }
  .svc-tab .st-t{ display:flex; flex-direction:column; gap:3px; }
  .svc-tab .st-t .lab{ font-family:var(--mono); font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--muted-2); }
  .svc-tab .st-t b{ font-family:var(--display); font-size:18px; font-weight:600; color:var(--ink); line-height:1.15; }
  .svc-tab:hover{ border-color:var(--green-soft-2); transform:translateY(-2px); }
  .svc-tab.active{ border-color:var(--emerald); box-shadow:0 14px 30px rgba(26,99,165,.12); }
  .svc-tab.active .st-ic{ background:var(--emerald); color:#fff; }
  .svc-tab.active{ background:var(--emerald); }
  .svc-tab.active .st-t .lab{ color:var(--mint); }
  .svc-tab.active .st-t b{ color:#fff; }

  .svc-panel{ display:none; background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-sm); }
  .svc-panel.active{ display:grid; grid-template-columns:1.15fr 1fr; animation:fadeUp .4s ease both; }
  @keyframes fadeUp{ from{ opacity:0; transform:translateY(12px);} to{ opacity:1; transform:translateY(0);} }
  .svc-left{ padding:44px 44px 40px; }
  .svc-left .lab{ font-family:var(--mono); font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--green); margin-bottom:14px; }
  .svc-left h3{ font-size:28px; font-weight:600; margin-bottom:14px; }
  .svc-left .intro{ font-size:16.5px; color:var(--muted); margin:0 0 26px; }
  .svc-why{ background:var(--green-soft); border-left:3px solid var(--green); border-radius:0 12px 12px 0; padding:16px 20px; margin-bottom:28px; }
  .svc-why b{ font-family:var(--mono); font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--emerald-2); display:block; margin-bottom:6px; }
  .svc-why p{ margin:0; font-size:15px; color:var(--charcoal); }
  .svc-benefits{ display:grid; grid-template-columns:1fr 1fr; gap:14px 22px; }
  .svc-benefits li{ display:flex; gap:11px; font-size:14.5px; color:var(--ink); align-items:flex-start; }
  .svc-benefits li svg{ width:18px; height:18px; color:var(--green); flex:none; margin-top:2px; }
  .svc-right{ background:linear-gradient(160deg, #F3F9F5, #E9F3ED); padding:44px 40px; border-left:1px solid var(--line); }
  .svc-right .rlab{ font-family:var(--mono); font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--muted-2); margin-bottom:20px; }
  .scope-tags{ display:flex; flex-wrap:wrap; gap:9px; margin-bottom:30px; }
  .scope-tags span{ font-size:13.5px; font-weight:500; color:var(--charcoal); background:#fff; border:1px solid var(--line-2); padding:8px 14px; border-radius:9px; transition:all .18s ease; }
  .scope-tags span:hover{ border-color:var(--green); color:var(--emerald); transform:translateY(-1px); }
  .svc-right .btn{ margin-top:4px; }

  /* PROCESS — engagement model */
  .process{ padding:110px 0 0; background:var(--ink); position:relative; overflow:hidden; }
  .process::before{ content:""; position:absolute; inset:0; opacity:.7; background-image:radial-gradient(circle, rgba(159,208,245,.09) 1.2px, transparent 1.2px); background-size:30px 30px; -webkit-mask-image:radial-gradient(circle at 50% 42%, black, transparent 70%); mask-image:radial-gradient(circle at 50% 42%, black, transparent 70%); }
  .process > .wrap{ position:relative; z-index:1; }
  .process .section-head h2{ color:#fff; }
  .process .section-head p{ color:rgba(255,255,255,.6); }

  .orbit{ display:grid; grid-template-columns:1fr 1.35fr 1fr; grid-template-rows:auto auto; gap:36px 40px; align-items:center; margin-top:4px; }
  .orbit .diagram{ grid-column:2; grid-row:1 / span 2; align-self:center; justify-self:center; width:100%; max-width:470px; }
  .orbit .diagram svg{ width:100%; height:auto; overflow:visible; }
  .orbit .card-1{ grid-column:1; grid-row:1; }
  .orbit .card-2{ grid-column:3; grid-row:1; }
  .orbit .card-3{ grid-column:3; grid-row:2; }
  .orbit .card-4{ grid-column:1; grid-row:2; }

  .o-card{ background:rgba(255,255,255,.035); border:1px solid rgba(255,255,255,.09); border-left:2px solid var(--green); border-radius:14px; padding:22px 24px; transition:border-color .2s ease, background .2s ease, transform .2s ease; }
  .o-card:hover{ background:rgba(82,163,226,.07); border-color:rgba(82,163,226,.5); border-left-color:var(--green-bright); transform:translateY(-3px); }
  .o-card .o-num{ display:none; }
  .o-card h4{ color:#fff; font-size:19px; font-weight:600; margin-bottom:9px; }
  .o-card p{ margin:0; font-size:14px; color:rgba(255,255,255,.62); line-height:1.6; }

  html.js .diagram.reveal .ring-draw{ stroke-dasharray:962; stroke-dashoffset:962; }
  html.js .diagram.reveal.in .ring-draw{ stroke-dashoffset:0; transition:stroke-dashoffset 1.7s ease .15s; }

  .process-footer{ position:relative; z-index:1; margin-top:66px; border-top:1px solid rgba(255,255,255,.09); }
  .process-footer .wrap{ display:flex; align-items:center; gap:15px; padding:22px 34px; }
  .process-footer .pf-mark{ width:26px; height:26px; flex:none; display:block; }
  .process-footer .pf-tag{ font-family:var(--mono); font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.48); }
  .process-footer .pf-tag b{ color:var(--mint); font-weight:500; }

  /* FLOWS / PLATFORM */
  .flows{ padding:110px 0; background:var(--white); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
  .flows .section-head{ margin-bottom:34px; }
  .flow-line{ display:flex; align-items:stretch; justify-content:center; gap:12px; max-width:920px; margin:0 auto; }
  .flow-node{ flex:1 1 0; min-width:0; display:flex; align-items:center; justify-content:center; text-align:center; background:linear-gradient(150deg,var(--emerald-2),var(--emerald)); color:#fff; font-family:var(--display); font-weight:600; font-size:17px; line-height:1.2; padding:24px 16px; border-radius:14px; box-shadow:0 14px 30px rgba(26,99,165,.16); }
  .flow-arrow{ flex:none; display:flex; align-items:center; color:var(--emerald); }
  .flow-arrow svg{ width:34px; height:24px; display:block; }
  .flow-cap{ text-align:center; font-family:var(--mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--muted-2); margin:16px auto 42px; }
  .flow-tabs{ display:flex; gap:11px; flex-wrap:wrap; margin-bottom:32px; }
  .flow-tab{ font-family:var(--body); font-weight:600; font-size:14.5px; color:var(--muted); background:var(--paper); border:1.5px solid var(--line); border-radius:12px; padding:12px 20px; cursor:pointer; display:flex; align-items:center; gap:9px; transition:all .18s ease; }
  .flow-tab .fdot{ width:8px; height:8px; border-radius:50%; background:var(--line-2); transition:background .18s ease; }
  .flow-tab.active{ background:var(--emerald); border-color:var(--emerald); color:#fff; box-shadow:0 12px 26px rgba(26,99,165,.18); }
  .flow-tab.active .fdot{ background:var(--green-bright); }
  .flow-tab:hover:not(.active){ border-color:var(--green); color:var(--emerald); }
  .flow-panel{ display:none; }
  .flow-panel.active{ display:block; animation:fadeUp .4s ease both; }
  .flow-intro{ display:flex; justify-content:space-between; align-items:flex-end; gap:20px; margin-bottom:24px; flex-wrap:wrap; }
  .flow-intro p{ margin:0; color:var(--muted); font-size:16px; max-width:540px; }
  .flow-badge{ font-family:var(--mono); font-size:12px; text-transform:uppercase; letter-spacing:.07em; color:var(--emerald-2); white-space:nowrap; }
  .module-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(224px,1fr)); gap:16px; }
  .module-card{ background:var(--paper); border:1px solid var(--line); border-radius:14px; padding:22px; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease; }
  .module-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:var(--green-soft-2); background:var(--white); }
  .module-card .m-top{ display:flex; align-items:center; gap:12px; margin-bottom:12px; }
  .module-card .m-icon{ width:38px; height:38px; border-radius:10px; flex:none; display:flex; align-items:center; justify-content:center; color:#fff; }
  .module-card .m-icon svg{ width:19px; height:19px; }
  .module-card h4{ font-size:16.5px; font-weight:600; margin:0; }
  .module-card .purpose{ color:var(--ink); font-size:13.8px; margin:0 0 12px; line-height:1.55; }
  .module-card .automate{ font-size:12.8px; color:var(--muted); margin:0; padding-top:11px; border-top:1px dashed var(--line-2); line-height:1.5; }
  .module-card .automate b{ color:var(--emerald-2); font-weight:600; }

  /* PRODUCT DEMO — AI ATTENDANCE REEL */
  .reel{ padding:110px 0; background:var(--ink); position:relative; overflow:hidden; }
  .reel::before{ content:""; position:absolute; inset:0; opacity:.6; background-image:radial-gradient(circle, rgba(159,208,245,.08) 1.2px, transparent 1.2px); background-size:30px 30px; -webkit-mask-image:radial-gradient(circle at 50% 24%, black, transparent 72%); mask-image:radial-gradient(circle at 50% 24%, black, transparent 72%); }
  .reel > .wrap{ position:relative; z-index:1; }
  .reel .section-head h2{ color:#fff; } .reel .section-head p{ color:rgba(255,255,255,.6); }
  .reel-player{ max-width:940px; margin:0 auto; }
  .reel-frame{ position:relative; aspect-ratio:16/9.3; background:linear-gradient(160deg,#0f2b44,#0a1c2e); border:1px solid rgba(255,255,255,.12); border-radius:22px; overflow:hidden; box-shadow:var(--shadow-lg); }
  .reel-scene{ position:absolute; inset:0; padding:clamp(18px,3.2%,40px); display:flex; align-items:center; justify-content:center; gap:clamp(18px,4.4%,50px); opacity:0; visibility:hidden; transition:opacity .5s ease; }
  .reel-scene.active{ opacity:1; visibility:visible; }
  .reel-kicker{ font-family:var(--mono); font-size:clamp(10px,1.1vw,12px); letter-spacing:.14em; text-transform:uppercase; color:var(--mint); margin-bottom:12px; }
  .reel-side{ flex:0 1 340px; }
  .reel-side h3{ color:#fff; font-size:clamp(18px,2.5vw,27px); font-weight:600; margin-bottom:18px; line-height:1.16; }
  .reel-points{ display:flex; flex-direction:column; gap:11px; }
  .reel-points li{ display:flex; gap:10px; align-items:flex-start; color:rgba(255,255,255,.82); font-size:clamp(12.5px,1.4vw,14.5px); line-height:1.4; }
  .reel-points li::before{ content:"\2713"; color:var(--green-bright); font-weight:700; flex:none; }

  .reel-phone{ width:clamp(168px,24vw,230px); flex:none; background:#0b2136; border:1px solid rgba(255,255,255,.14); border-radius:26px; padding:9px; box-shadow:0 22px 50px rgba(0,0,0,.45); }
  .rp-note{ background:var(--emerald); color:#fff; font-size:11px; font-weight:600; padding:9px 12px; border-radius:17px 17px 6px 6px; display:flex; align-items:center; gap:7px; }
  .rp-note::before{ content:""; width:7px; height:7px; border-radius:50%; background:var(--green-bright); }
  .rp-chat{ padding:13px 6px 9px; display:flex; flex-direction:column; gap:9px; min-height:196px; }
  .rp-bubble{ font-size:12px; padding:9px 12px; border-radius:13px; max-width:90%; }
  .rp-bubble.in{ background:rgba(255,255,255,.10); color:rgba(255,255,255,.9); align-self:flex-start; border-bottom-left-radius:4px; }
  .rp-selfie{ align-self:flex-end; width:84px; height:84px; border-radius:13px; background:linear-gradient(160deg,#2f82c9,#1a63a5); display:flex; align-items:center; justify-content:center; }
  .rp-selfie svg{ width:44px; height:44px; color:rgba(255,255,255,.92); }
  .rp-bubble.ok{ align-self:flex-end; background:var(--green); color:#072135; font-weight:700; display:flex; flex-direction:column; gap:2px; border-bottom-right-radius:4px; }
  .rp-bubble.ok span{ font-weight:500; font-size:10px; opacity:.75; }

  .reel-face{ position:relative; width:clamp(178px,26vw,248px); aspect-ratio:1; flex:none; }
  .reel-face > svg{ width:100%; height:100%; }
  .reel-face .scan{ position:absolute; left:12%; right:12%; height:2px; background:linear-gradient(90deg,transparent,var(--green-bright),transparent); box-shadow:0 0 14px var(--green-bright); top:16%; opacity:0; }
  .reel-scene.active[data-scene="2"] .scan{ animation:reelScan 2.6s ease-in-out infinite; }
  @keyframes reelScan{ 0%{ top:16%; opacity:0 } 12%{ opacity:1 } 88%{ opacity:1 } 100%{ top:82%; opacity:0 } }
  .reel-checks{ display:flex; flex-direction:column; gap:10px; }
  .reel-checks li{ display:flex; align-items:center; justify-content:space-between; gap:14px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.10); border-radius:11px; padding:11px 14px; }
  .reel-checks li span{ color:rgba(255,255,255,.85); font-size:clamp(12px,1.4vw,14px); }
  .reel-checks li b{ color:var(--green-bright); font-family:var(--mono); font-size:12px; letter-spacing:.04em; display:inline-flex; align-items:center; gap:6px; white-space:nowrap; }
  .reel-checks li b::after{ content:"\2713"; }
  .reel-note-sm{ margin:16px 0 0; color:rgba(255,255,255,.5); font-size:12.5px; line-height:1.5; }

  .reel-dash{ width:100%; max-width:760px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.11); border-radius:16px; overflow:hidden; }
  .rd-head{ display:flex; align-items:center; gap:9px; padding:13px 18px; border-bottom:1px solid rgba(255,255,255,.09); font-size:13px; font-weight:600; color:#fff; }
  .rd-head::before{ content:""; width:8px; height:8px; border-radius:50%; background:var(--green-bright); flex:none; }
  .rd-head .day{ margin-left:auto; font-weight:400; font-family:var(--mono); font-size:11px; color:rgba(255,255,255,.5); }
  .rd-body{ display:grid; grid-template-columns:1.25fr 1fr; gap:clamp(14px,3%,28px); padding:clamp(14px,2.6%,24px); }
  .rd-list{ display:flex; flex-direction:column; }
  .rd-row{ display:flex; align-items:center; gap:11px; padding:clamp(7px,1.4%,10px) 0; border-bottom:1px dashed rgba(255,255,255,.09); }
  .rd-row:last-child{ border-bottom:none; }
  .rd-row .av{ width:30px; height:30px; border-radius:50%; background:linear-gradient(150deg,#2f82c9,#1a63a5); color:#fff; font-size:11px; font-weight:600; display:flex; align-items:center; justify-content:center; flex:none; }
  .rd-row .nm{ display:flex; flex-direction:column; }
  .rd-row .nm b{ color:#fff; font-size:13px; font-weight:500; line-height:1.2; }
  .rd-row .nm span{ color:rgba(255,255,255,.45); font-size:10.5px; }
  .rd-row .tm{ margin-left:auto; font-family:var(--mono); font-size:11px; color:var(--mint); display:flex; align-items:center; gap:6px; }
  .rd-row .tm::after{ content:"\2713"; color:var(--green-bright); }
  .rd-side{ display:flex; flex-direction:column; align-items:center; gap:16px; }
  .rd-donut{ position:relative; width:clamp(96px,14vw,124px); aspect-ratio:1; }
  .rd-donut svg{ width:100%; height:100%; transform:rotate(-90deg); }
  .rd-donut .dv{ stroke-dasharray:264; stroke-dashoffset:264; }
  .reel-scene.active[data-scene="3"] .rd-donut .dv{ animation:reelDonut 1.3s ease .4s forwards; }
  @keyframes reelDonut{ to{ stroke-dashoffset:21; } }
  .rd-donut .lbl{ position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; }
  .rd-donut .lbl b{ color:#fff; font-family:var(--display); font-size:22px; font-weight:600; line-height:1; }
  .rd-donut .lbl span{ color:rgba(255,255,255,.5); font-size:10px; margin-top:2px; }
  .rd-tiles{ display:flex; gap:8px; width:100%; }
  .rd-tile{ flex:1; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.09); border-radius:10px; padding:10px 6px; text-align:center; }
  .rd-tile b{ display:block; color:#fff; font-family:var(--display); font-size:17px; font-weight:600; }
  .rd-tile span{ font-size:9px; color:rgba(255,255,255,.5); text-transform:uppercase; letter-spacing:.05em; }

  .reel-assistant{ width:100%; max-width:480px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.11); border-radius:16px; padding:clamp(16px,3%,24px); display:flex; flex-direction:column; gap:11px; }
  .ra-head{ font-family:var(--mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--mint); }
  .ra-bubble{ padding:12px 15px; border-radius:15px; font-size:13.5px; }
  .ra-bubble.user{ align-self:flex-end; background:var(--emerald); color:#fff; border-bottom-right-radius:5px; max-width:82%; }
  .ra-bubble.bot{ align-self:flex-start; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.09); color:rgba(255,255,255,.9); border-bottom-left-radius:5px; width:100%; }
  .ra-list{ display:flex; flex-direction:column; gap:9px; margin-top:12px; }
  .ra-emp{ display:flex; align-items:center; gap:10px; }
  .ra-emp .av{ width:26px; height:26px; border-radius:50%; background:linear-gradient(150deg,#2f82c9,#1a63a5); color:#fff; font-size:10px; font-weight:600; display:flex; align-items:center; justify-content:center; flex:none; }
  .ra-emp b{ color:#fff; font-size:12.5px; font-weight:500; } .ra-emp span:not(.av){ color:rgba(255,255,255,.45); font-size:10.5px; margin-left:auto; }

  @keyframes reelPop{ from{ opacity:0; transform:translateY(10px); } to{ opacity:1; transform:none; } }
  .reel-scene [data-anim]{ opacity:0; }
  .reel-scene.active [data-anim]{ animation:reelPop .5s ease both; }
  .reel-scene.active [data-anim="1"]{ animation-delay:.15s; }
  .reel-scene.active [data-anim="2"]{ animation-delay:.42s; }
  .reel-scene.active [data-anim="3"]{ animation-delay:.69s; }
  .reel-scene.active [data-anim="4"]{ animation-delay:.96s; }
  .reel-scene.active [data-anim="5"]{ animation-delay:1.23s; }
  .reel-scene.active [data-anim="6"]{ animation-delay:1.5s; }

  .reel-ui{ display:flex; align-items:center; justify-content:space-between; gap:16px; margin-top:22px; }
  .reel-now{ display:flex; align-items:center; gap:10px; color:rgba(255,255,255,.7); font-size:13.5px; min-width:0; }
  .reel-now b{ color:#fff; font-weight:600; white-space:nowrap; } .reel-now .tm{ font-family:var(--mono); font-size:11.5px; color:var(--mint); }
  .reel-play{ width:38px; height:38px; border-radius:10px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); color:#fff; cursor:pointer; display:flex; align-items:center; justify-content:center; flex:none; transition:background .18s ease; }
  .reel-play:hover{ background:rgba(255,255,255,.13); }
  .reel-play svg{ width:15px; height:15px; }
  .reel-dots{ display:flex; gap:9px; align-items:center; }
  .reel-dot{ width:30px; height:4px; border-radius:3px; background:rgba(255,255,255,.18); border:none; padding:0; cursor:pointer; transition:background .2s ease, width .2s ease; }
  .reel-dot:hover{ background:rgba(255,255,255,.34); }
  .reel-dot.active{ background:var(--green-bright); width:44px; }

  /* WHY */
  .why{ padding:110px 0; background:var(--paper); }
  .why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
  .why-item{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:30px 28px; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
  .why-item:hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:var(--green-soft-2); }
  .why-item .wic{ width:48px; height:48px; border-radius:13px; background:var(--green-soft); color:var(--emerald); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
  .why-item .wic svg{ width:23px; height:23px; }
  .why-item h4{ font-size:19px; font-weight:600; margin-bottom:10px; }
  .why-item p{ margin:0; font-size:14.8px; color:var(--muted); }

  /* INDUSTRIES */
  .industries{ padding:110px 0; }
  .ind-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
  .ind-card{ border:1px solid var(--line); border-radius:var(--radius); padding:26px 22px; background:#fff; transition:all .2s ease; position:relative; overflow:hidden; }
  .ind-card::after{ content:""; position:absolute; left:0; top:0; bottom:0; width:3px; background:var(--green); transform:scaleY(0); transform-origin:top; transition:transform .22s ease; }
  .ind-card:hover{ border-color:var(--green-soft-2); box-shadow:var(--shadow-sm); transform:translateY(-3px); }
  .ind-card:hover::after{ transform:scaleY(1); }
  .ind-card .iic{ width:38px; height:38px; color:var(--emerald); margin-bottom:16px; }
  .ind-card .iic svg{ width:26px; height:26px; }
  .ind-card h4{ font-size:16.5px; font-weight:600; margin-bottom:6px; }
  .ind-card p{ margin:0; font-size:13.4px; color:var(--muted); }

  /* CASE STUDIES */
  .cases{ padding:110px 0; background:var(--paper); }
  .case-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
  .case{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; display:flex; flex-direction:column; transition:transform .2s ease, box-shadow .2s ease; }
  .case:hover{ transform:translateY(-5px); box-shadow:var(--shadow); }
  .case-top{ background:linear-gradient(150deg, var(--emerald), var(--emerald-deep)); padding:26px 26px 22px; color:#fff; position:relative; overflow:hidden; }
  .case-top::before{ content:""; position:absolute; width:180px; height:180px; border-radius:50%; background:radial-gradient(circle, rgba(159,208,245,.22), transparent 70%); top:-90px; right:-60px; }
  .case-tag{ font-family:var(--mono); font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--mint); position:relative; }
  .case-metric{ font-family:var(--display); font-size:42px; font-weight:600; margin:14px 0 2px; position:relative; letter-spacing:-0.02em; }
  .case-metric span{ font-size:18px; }
  .case-metric-label{ font-size:13px; color:rgba(255,255,255,.78); position:relative; }
  .case-body{ padding:24px 26px 26px; flex:1; display:flex; flex-direction:column; }
  .case-body h4{ font-size:18px; font-weight:600; margin-bottom:16px; }
  .case-flow{ flex:1; }
  .case-flow .cf{ display:flex; gap:12px; padding:9px 0; }
  .case-flow .cf .k{ font-family:var(--mono); font-size:10px; letter-spacing:.06em; text-transform:uppercase; color:var(--green); width:76px; flex:none; padding-top:2px; }
  .case-flow .cf .v{ font-size:13.6px; color:var(--charcoal); }
  .case-flow .cf + .cf{ border-top:1px dashed var(--line); }
  .case-results{ margin-top:16px; padding-top:16px; border-top:1px solid var(--line); display:flex; gap:8px; flex-wrap:wrap; }
  .case-results span{ font-size:11.5px; font-weight:600; color:var(--emerald); background:var(--green-soft); border-radius:7px; padding:5px 10px; }

  /* TESTIMONIALS */
  .testi{ padding:110px 0; }
  .testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
  .quote{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:32px 30px; display:flex; flex-direction:column; }
  .quote .qm{ font-family:var(--display); font-size:56px; line-height:.6; color:var(--green-soft-2); height:28px; }
  .quote p{ font-size:16px; color:var(--charcoal); margin:0 0 24px; flex:1; }
  .quote .who{ display:flex; align-items:center; gap:13px; }
  .quote .av{ width:44px; height:44px; border-radius:50%; background:var(--emerald); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--display); font-weight:600; font-size:17px; flex:none; }
  .quote .who b{ display:block; font-size:14.5px; color:var(--ink); font-weight:600; }
  .quote .who span{ font-size:12.5px; color:var(--muted-2); }

  /* INSIGHTS */
  .insights{ padding:110px 0; background:var(--paper); }
  .ins-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
  .article{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; display:flex; flex-direction:column; cursor:pointer; transition:transform .2s ease, box-shadow .2s ease; }
  .article:hover{ transform:translateY(-5px); box-shadow:var(--shadow); }
  .article .thumb{ height:150px; position:relative; overflow:hidden; }
  .article .thumb svg{ position:absolute; inset:0; width:100%; height:100%; }
  .article .a-body{ padding:24px 26px 28px; flex:1; display:flex; flex-direction:column; }
  .article .a-cat{ font-family:var(--mono); font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--green); margin-bottom:12px; }
  .article h4{ font-size:19px; font-weight:600; margin-bottom:10px; line-height:1.25; }
  .article p{ margin:0 0 18px; font-size:14px; color:var(--muted); flex:1; }
  .article .a-read{ font-size:13.5px; font-weight:600; color:var(--emerald); display:inline-flex; align-items:center; gap:7px; }
  .article .a-read svg{ width:15px; height:15px; transition:transform .18s ease; }
  .article:hover .a-read svg{ transform:translateX(4px); }

  /* AI FUTURE */
  .future{ padding:110px 0; }
  .future .wrap{ display:grid; grid-template-columns:.95fr 1.05fr; gap:60px; align-items:center; }
  .future-copy p{ font-size:17px; color:var(--muted); margin:0 0 28px; }
  .future-list{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
  .future-list .fl{ display:flex; align-items:center; gap:12px; font-size:14.5px; font-weight:500; color:var(--charcoal); }
  .future-list .fl .fic{ width:34px; height:34px; border-radius:9px; background:var(--green-soft); color:var(--emerald); display:flex; align-items:center; justify-content:center; flex:none; }
  .future-list .fl .fic svg{ width:17px; height:17px; }
  .future-visual{ background:var(--ink); border-radius:var(--radius-lg); padding:34px; position:relative; overflow:hidden; }
  .future-visual::before{ content:""; position:absolute; width:400px; height:400px; border-radius:50%; background:radial-gradient(circle, rgba(82,163,226,.18), transparent 70%); bottom:-200px; right:-140px; }
  .chatmock{ position:relative; z-index:1; display:flex; flex-direction:column; gap:12px; }
  .bubble{ max-width:82%; padding:13px 16px; border-radius:16px; font-size:13.6px; line-height:1.5; }
  .bubble.user{ align-self:flex-end; background:var(--emerald); color:#fff; border-bottom-right-radius:5px; }
  .bubble.bot{ align-self:flex-start; background:rgba(255,255,255,.08); color:rgba(255,255,255,.92); border-bottom-left-radius:5px; border:1px solid rgba(255,255,255,.10); }
  .bubble .bt{ font-family:var(--mono); font-size:9.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--mint); display:block; margin-bottom:6px; }
  .typing{ display:inline-flex; gap:4px; align-items:center; }
  .typing i{ width:6px; height:6px; border-radius:50%; background:var(--mint); animation:blink 1.4s infinite both; }
  .typing i:nth-child(2){ animation-delay:.2s; } .typing i:nth-child(3){ animation-delay:.4s; }
  @keyframes blink{ 0%,80%,100%{ opacity:.25; } 40%{ opacity:1; } }

  /* PRICING / PACKAGES */
  .pricing{ padding:110px 0; background:var(--paper); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
  .tiers{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:stretch; }
  .tier{ position:relative; border-radius:20px; padding:34px 30px; display:flex; flex-direction:column; background:var(--white); border:1px solid var(--line); transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
  .tier:not(.featured):hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:var(--green-soft-2); }
  .tier.featured{ background:var(--ink); border-color:var(--ink); box-shadow:var(--shadow-lg); margin-top:-12px; }
  .tier .badge{ position:absolute; top:-13px; left:30px; background:var(--green); color:#072135; font-size:11.5px; font-weight:700; padding:6px 14px; border-radius:999px; letter-spacing:.02em; }
  .tier .tname{ font-family:var(--mono); font-size:12.5px; font-weight:500; color:var(--emerald-2); text-transform:uppercase; letter-spacing:.09em; }
  .tier.featured .tname{ color:var(--mint); }
  .tier .tsub{ font-family:var(--display); font-size:23px; font-weight:600; color:var(--ink); margin:9px 0 24px; line-height:1.15; }
  .tier.featured .tsub{ color:#fff; }
  .tier ul{ list-style:none; margin:0 0 28px; padding:0; flex:1; }
  .tier li{ padding:11px 0; border-top:1px dashed var(--line); font-size:14.3px; color:var(--charcoal); display:flex; gap:11px; align-items:flex-start; }
  .tier li:first-child{ border-top:none; }
  .tier li svg{ width:17px; height:17px; color:var(--green); flex:none; margin-top:2px; }
  .tier.featured li{ color:rgba(255,255,255,.82); border-top-color:rgba(255,255,255,.13); }
  .tier.featured li svg{ color:var(--mint); }
  .pricing-note{ text-align:center; font-size:13.5px; color:var(--muted-2); margin:30px auto 0; max-width:580px; }

  /* CTA BAND */
  .cta{ padding:96px 0; }
  .cta .wrap{ background:linear-gradient(150deg, var(--emerald), var(--emerald-deep)); border-radius:26px; padding:64px 56px; position:relative; overflow:hidden; text-align:center; }
  .cta .wrap::before{ content:""; position:absolute; width:560px; height:560px; border-radius:50%; background:radial-gradient(circle, rgba(159,208,245,.22), transparent 70%); top:-280px; right:-160px; }
  .cta .wrap::after{ content:""; position:absolute; inset:0; opacity:.4; background-image:radial-gradient(circle, rgba(255,255,255,.10) 1.2px, transparent 1.2px); background-size:26px 26px; -webkit-mask-image:linear-gradient(to top, black, transparent 80%); mask-image:linear-gradient(to top, black, transparent 80%); }
  .cta h2{ color:#fff; font-size:clamp(28px,3.6vw,44px); font-weight:500; margin-bottom:16px; position:relative; }
  .cta p{ color:rgba(255,255,255,.82); font-size:18px; margin:0 auto 34px; max-width:560px; position:relative; }
  .cta .actions{ display:flex; gap:15px; justify-content:center; flex-wrap:wrap; position:relative; }

  /* CONTACT */
  .contact{ padding:110px 0 90px; background:var(--paper); }
  .contact .wrap{ display:grid; grid-template-columns:.85fr 1.15fr; gap:56px; align-items:start; }
  .contact-info h2{ font-size:clamp(28px,3.4vw,42px); margin-bottom:16px; }
  .contact-info > p{ color:var(--muted); font-size:17px; margin:0 0 30px; }
  .ci-item{ display:flex; gap:15px; padding:16px 0; border-bottom:1px solid var(--line); }
  .ci-item .cic{ width:44px; height:44px; border-radius:12px; background:#fff; border:1px solid var(--line); color:var(--emerald); display:flex; align-items:center; justify-content:center; flex:none; }
  .ci-item .cic svg{ width:20px; height:20px; }
  .ci-item .cit b{ display:block; font-size:11px; font-family:var(--mono); letter-spacing:.1em; text-transform:uppercase; color:var(--muted-2); margin-bottom:3px; }
  .ci-item .cit a, .ci-item .cit span{ font-size:15.5px; color:var(--ink); font-weight:500; }
  .ci-item .cit a:hover{ color:var(--emerald); }
  .ci-socials{ display:flex; gap:12px; margin-top:26px; }
  .ci-socials a{ width:44px; height:44px; border-radius:12px; background:#fff; border:1px solid var(--line); color:var(--charcoal); display:flex; align-items:center; justify-content:center; transition:all .18s ease; }
  .ci-socials a:hover{ background:var(--emerald); color:#fff; border-color:var(--emerald); transform:translateY(-2px); }
  .ci-socials a svg{ width:20px; height:20px; }

  .form-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:38px 38px 34px; box-shadow:var(--shadow-sm); }
  .form-card h3{ font-size:23px; font-weight:600; margin-bottom:6px; }
  .form-card .fsub{ color:var(--muted); font-size:14.5px; margin:0 0 26px; }
  .form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  .field{ display:flex; flex-direction:column; }
  .field.full{ grid-column:1 / -1; }
  .field label{ font-size:12.5px; font-weight:600; color:var(--charcoal); margin-bottom:7px; }
  .field label .opt{ font-weight:400; color:var(--muted-2); }
  .field input, .field select, .field textarea{
    width:100%; border:1.5px solid var(--line-2); border-radius:11px; padding:12px 14px;
    font-family:var(--body); font-size:14.5px; color:var(--ink); background:var(--paper);
    transition:border-color .16s ease, background .16s ease, box-shadow .16s ease; resize:vertical;
  }
  .field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--emerald); background:#fff; box-shadow:0 0 0 4px rgba(47,130,201,.12); }
  .field.error input, .field.error select, .field.error textarea{ border-color:#D0453F; background:#FDF3F2; }
  .field .err{ display:none; color:#C23A34; font-size:12px; margin-top:5px; }
  .field.error .err{ display:block; }
  .form-actions{ margin-top:24px; }
  .form-note{ font-size:12px; color:var(--muted-2); margin-top:14px; text-align:center; }
  .form-note.is-error{ color:#c0392b; font-weight:600; }
  /* Honeypot: hidden from real users, present for bots. */
  .hp-field{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
  .form-success{ display:none; text-align:center; padding:26px 10px 12px; }
  .form-success.show{ display:block; }
  .form-success .sic{ width:62px; height:62px; border-radius:50%; background:var(--green-soft); color:var(--emerald); display:flex; align-items:center; justify-content:center; margin:0 auto 20px; }
  .form-success .sic svg{ width:30px; height:30px; }
  .form-success h3{ margin-bottom:10px; }
  .form-success p{ color:var(--muted); font-size:14.5px; margin:0 0 24px; }
  .demo-form.hide{ display:none; }

  /* FOOTER */
  footer{ background:var(--ink); color:rgba(255,255,255,.66); padding:70px 0 30px; }
  .foot-top{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:40px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,.10); }
  .foot-brand .brand-name b{ color:#fff; }
  .foot-brand p{ font-size:14px; margin:18px 0 0; max-width:300px; color:rgba(255,255,255,.55); line-height:1.65; }
  .foot-col h5{ font-size:11px; text-transform:uppercase; letter-spacing:.12em; color:rgba(255,255,255,.42); margin:0 0 16px; font-family:var(--mono); font-weight:500; }
  .foot-col a, .foot-col button{ display:block; font-size:14px; color:rgba(255,255,255,.72); margin-bottom:11px; background:none; border:none; padding:0; cursor:pointer; text-align:left; font-family:var(--body); transition:color .16s ease; }
  .foot-col a:hover, .foot-col button:hover{ color:var(--mint); }
  .foot-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:26px; font-size:12.5px; color:rgba(255,255,255,.4); flex-wrap:wrap; gap:12px; }
  .foot-bottom .disclaimer{ max-width:560px; }
  .foot-bottom a{ color:rgba(255,255,255,.55); } .foot-bottom a:hover{ color:var(--mint); }

  /* Reveal animation */
  html.js .reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
  html.js .reveal.in{ opacity:1; transform:none; }
  html.js .reveal.d1{ transition-delay:.08s; }
  html.js .reveal.d2{ transition-delay:.16s; }
  html.js .reveal.d3{ transition-delay:.24s; }

  /* Responsive */
  @media (max-width:1024px){
    .hero .wrap{ grid-template-columns:1fr; gap:48px; }
    .hero-visual{ max-width:460px; }
    .about .about-grid, .future .wrap, .contact .wrap{ grid-template-columns:1fr; gap:44px; }
    .svc-panel.active{ grid-template-columns:1fr; }
    .svc-right{ border-left:none; border-top:1px solid var(--line); }
    .ind-grid{ grid-template-columns:repeat(3,1fr); }
    .why-grid, .case-grid, .testi-grid, .ins-grid{ grid-template-columns:1fr 1fr; }
    .nav-links{ display:none; }
    .nav-burger{ display:block; }
  }
  @media (max-width:900px){
    .orbit{ display:block; max-width:540px; margin:0 auto; position:relative; }
    .orbit::before{ content:""; position:absolute; left:18px; top:26px; bottom:28px; width:0; border-left:1px dashed rgba(82,163,226,.35); }
    .orbit .diagram{ display:none; }
    .orbit .o-card{ display:flex; gap:15px; align-items:flex-start; margin-bottom:14px; border-left-width:1px; }
    .orbit .o-card .o-body{ flex:1; }
    .orbit .o-card .o-num{ display:flex; align-items:center; justify-content:center; width:37px; height:37px; border-radius:50%; background:#0c2337; border:1.4px solid var(--green); color:var(--green-bright); font-family:var(--mono); font-size:12.5px; flex:none; position:relative; z-index:1; }
    .process-footer{ margin-top:34px; }
    .tiers{ grid-template-columns:1fr; max-width:460px; margin:0 auto; }
    .tier.featured{ margin-top:0; }
  }
  @media (max-width:720px){
    .wrap{ padding:0 22px; }
    .util .util-right{ gap:14px; }
    .util .util-right a:not(.keep){ display:none; }
    .hero{ padding:44px 0 64px; }
    .stats .wrap{ grid-template-columns:1fr 1fr; gap:30px 20px; padding:44px 22px; }
    .stat + .stat{ border-left:none; }
    .stat:nth-child(3), .stat:nth-child(4){ border-top:1px solid rgba(255,255,255,.12); padding-top:26px; }
    .about, .position, .services, .process, .why, .industries, .cases, .testi, .insights, .future, .contact{ padding:70px 0; }
    .cta{ padding:64px 0; }
    .cta .wrap{ padding:48px 26px; }
    .ind-grid{ grid-template-columns:1fr 1fr; }
    .why-grid, .case-grid, .testi-grid, .ins-grid, .future-list, .form-grid{ grid-template-columns:1fr; }
    .svc-benefits{ grid-template-columns:1fr; }
    .svc-left, .svc-right{ padding:32px 26px; }
    .flow-line{ flex-direction:column; align-items:stretch; gap:10px; max-width:340px; }
    .flow-node{ flex:none; width:100%; padding:18px; }
    .flow-arrow{ justify-content:center; transform:rotate(90deg); }
    .reel-frame{ aspect-ratio:auto; }
    .reel-scene{ position:relative; display:none; flex-direction:column; justify-content:center; text-align:center; gap:16px; padding:32px 22px; }
    .reel-scene.active{ display:flex; }
    .reel-side{ flex:none; max-width:360px; }
    .reel-points, .reel-checks{ text-align:left; }
    .reel-phone{ width:clamp(160px,54vw,210px); }
    .rp-chat{ min-height:0; }
    .rd-body{ grid-template-columns:1fr; gap:16px; }
    .rd-side{ flex-direction:row; justify-content:center; align-items:center; gap:16px; }
    .rd-tiles{ width:auto; flex:1; max-width:240px; }
    .foot-top{ grid-template-columns:1fr 1fr; gap:32px; }
    .foot-brand{ grid-column:1 / -1; }
    .hero-meta .divider{ display:none; }
    .section-head h2{ font-size:30px; }
  }
  @media (max-width:420px){
    .foot-top{ grid-template-columns:1fr; }
    .hero-actions .btn{ width:100%; justify-content:center; }
  }
  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; animation-delay:0ms !important; transition-duration:.001ms !important; transition-delay:0ms !important; }
    html.js .reveal{ opacity:1; transform:none; }
    .hv-bar{ transform:scaleY(1); }
    .ring-draw{ stroke-dashoffset:0 !important; }
  }

/* ===== COMBINED: topbar, nav toggle, AI hero, agent card, views ===== */
.topbar{ background:var(--ink); color:rgba(255,255,255,.82); font-size:13px; }
.topbar .wrap{ display:flex; align-items:center; justify-content:space-between; height:40px; gap:16px; }
.topbar .tb-right{ display:flex; gap:22px; }
.topbar a{ color:rgba(255,255,255,.82); text-decoration:none; } .topbar a:hover{ color:#fff; }
.nav .nav-wrap{ display:flex; align-items:center; gap:22px; height:78px; justify-content:flex-start; }
.brand{ display:flex; align-items:center; flex:none; text-decoration:none; }
.brand img{ height:44px; width:auto; display:block; }
.mode-tabs{ display:flex; gap:4px; background:var(--paper-2); border:1px solid var(--line); border-radius:12px; padding:4px; flex:none; }
.mode-tab{ display:flex; align-items:center; gap:8px; font-family:var(--body); font-size:13.5px; font-weight:600; color:var(--muted); background:transparent; border:none; border-radius:9px; padding:9px 15px; cursor:pointer; transition:all .18s ease; white-space:nowrap; }
.mode-tab .num{ font-family:var(--mono); font-size:10.5px; color:var(--muted-2); background:var(--white); border:1px solid var(--line); border-radius:5px; padding:1px 5px; }
.mode-tab.active{ background:var(--white); color:var(--ink); box-shadow:0 4px 12px rgba(16,42,67,.10); }
.mode-tab.active .num{ background:var(--emerald); color:#fff; border-color:var(--emerald); }
.lbl-short{ display:none; }
.nav-links{ display:none; align-items:center; gap:20px; margin-left:auto; }
.nav-links.active{ display:flex; }
.nav-links a{ font-size:14px; font-weight:500; color:var(--charcoal); text-decoration:none; }
.nav-links a:hover{ color:var(--emerald); }
.book-btn{ flex:none; }
.ai-hero{ padding:64px 0 84px; }
.ai-hero .hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; }
.ai-hero h1{ font-size:clamp(36px,5vw,58px); font-weight:600; letter-spacing:-0.025em; line-height:1.05; margin:8px 0 22px; }
.ai-hero h1 .acc{ color:var(--emerald); }
.ai-hero .hero-lede{ font-size:18px; color:var(--muted); max-width:500px; margin:0 0 30px; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.btn-outline{ background:transparent; border:1.5px solid var(--line-2); color:var(--ink); }
.btn-outline:hover{ border-color:var(--emerald); color:var(--emerald); background:var(--paper); }
.hero-chips{ display:flex; gap:12px 24px; flex-wrap:wrap; align-items:center; margin:20px 0 26px; }
.hero-chips span{ display:inline-flex; align-items:center; font-size:14px; font-weight:600; color:var(--charcoal); background:none; border:0; border-radius:0; padding:0; }
.hero-chips span::before{ content:"\2713"; margin-right:8px; color:var(--emerald-2); font-weight:800; }
.agent-card{ background:transparent; border:none; border-radius:20px; padding:0; box-shadow:none; }
  .ai-hero .agent-card .reel-player{ width:100%; margin:0; }
  .ai-hero .agent-card .reel-frame{ min-height:380px; aspect-ratio:auto; height:auto; border:none; box-shadow:none; }
  .ai-hero .agent-card .reel-ui{ display:none; }
  .ai-hero .agent-card .reel-frame .reel-scene{ align-items:flex-start; }
  .ai-hero .agent-card .reel-frame .reel-scene{ padding:18px; }
  .ai-hero .reel-side{ flex:0 1 240px; }
  .ai-hero .reel-phone{ width:clamp(140px,20vw,190px); }
  .ai-hero .reel-face{ width:clamp(150px,20vw,200px); }
  .ai-hero .reel-kicker{ font-size:12px; letter-spacing:.14em; }
  .ai-hero .reel-side h3{ font-size:clamp(18px,2.4vw,24px); }
  .ai-hero .reel-points li{ font-size:13px; }
  .ai-hero .reel-checks li{ font-size:13px; }
  .ai-hero .rd-head{ font-size:12.5px; }
  .ai-hero .rd-donut{ width:clamp(88px,16vw,108px); }
  .ai-hero .rd-tiles{ gap:6px; }
  .ai-hero .rd-tile{ padding:10px 8px; }
.ac-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; }
.ac-head b{ font-family:var(--display); font-size:18px; font-weight:600; color:var(--ink); }
.ac-online{ font-size:12px; font-weight:600; color:var(--emerald); background:var(--green-soft); border-radius:999px; padding:5px 12px; display:inline-flex; align-items:center; gap:6px; }
.ac-online::before{ content:""; width:7px; height:7px; border-radius:50%; background:var(--green); }
.ac-row{ display:flex; align-items:center; gap:13px; background:var(--white); border:1px solid var(--line); border-radius:13px; padding:14px 16px; margin-bottom:12px; }
.ac-mark{ width:38px; height:38px; border-radius:10px; background:var(--emerald); color:#fff; font-weight:700; font-size:13.5px; display:flex; align-items:center; justify-content:center; flex:none; }
.ac-t{ display:flex; flex-direction:column; } .ac-t b{ font-size:14.5px; color:var(--ink); font-weight:600; } .ac-t span{ font-size:12.5px; color:var(--muted); }
.ac-tag{ margin-left:auto; font-family:var(--mono); font-size:9.5px; letter-spacing:.05em; color:var(--emerald); background:var(--green-soft); border-radius:6px; padding:4px 8px; }
.ac-note{ font-size:13px; color:var(--charcoal); border-left:3px solid var(--emerald); background:var(--green-soft); border-radius:0 10px 10px 0; padding:12px 15px; margin-top:6px; line-height:1.5; }
.ac-note button{ background:none; border:none; color:var(--emerald); font-weight:700; cursor:pointer; font-family:var(--body); font-size:13px; padding:0; }
.tier .tdesc{ font-size:13.5px; color:var(--muted); margin:0 0 18px; line-height:1.5; }
.tier.featured .tdesc{ color:rgba(255,255,255,.7); }
.brand{ gap:11px; }
.brand-emblem{ height:44px; width:44px; flex:none; display:block; }
.brand-word{ display:flex; flex-direction:column; line-height:1; }
.brand-word b{ font-family:var(--display); font-weight:700; font-size:21px; color:var(--ink); letter-spacing:.02em; }
.brand-word small{ font-family:var(--mono); font-size:8px; letter-spacing:.16em; text-transform:uppercase; color:var(--muted-2); margin-top:4px; }
.svc-switch{ background:none; border:none; font-family:var(--body); font-size:13.5px; font-weight:600; color:var(--muted); cursor:pointer; padding:9px 15px; border-radius:10px; transition:all .18s ease; flex:none; white-space:nowrap; }
.svc-switch:hover{ color:var(--ink); }
.svc-switch.active{ background:var(--paper-2); color:var(--ink); box-shadow:inset 0 0 0 1px var(--line); }
.ac-note a{ color:var(--emerald); font-weight:700; text-decoration:none; }
.ac-note a:hover{ text-decoration:underline; }
.foot-logo{ width:40px; height:40px; border-radius:9px; background:#fff; padding:4px; flex:none; display:inline-flex; align-items:center; justify-content:center; }
.foot-logo img{ width:100%; height:100%; display:block; }
.view-panel{ display:none; } .view-panel.active{ display:block; }
@media(max-width:980px){ .nav-links{ display:none !important; } .ai-hero .hero-grid{ grid-template-columns:1fr; gap:40px; } }
@media(max-width:760px){ .book-btn{ display:none; } .topbar .tb-right a:last-child{ display:none; } .topbar span:first-child{ font-size:11px; } .mode-tab{ font-size:12.5px; padding:8px 11px; } .mode-tab .num{ display:none; } .lbl-full{ display:none; } .lbl-short{ display:inline; } .svc-switch{ font-size:12.5px; padding:8px 11px; } .brand-emblem{ height:36px; width:36px; } .brand-word{ display:none; } .nav .nav-wrap{ gap:9px; } }

/* Information architecture from the approved site outline */
  .faq{ padding:96px 0; background:var(--paper); }
  .faq-grid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
  .faq-item{ background:#fff; border:1px solid var(--line); border-radius:14px; padding:22px 24px; }
  .faq-item h3{ font-size:20px; margin:0 0 10px; }
  .faq-item p{ margin:0; color:var(--muted); font-size:15px; }
  /* Two-level header, matching the supplied reference. */
  .topbar{ display:none; }
  .nav{ position:relative; background:#fff; border-top:1px solid #12314c; border-bottom:0; box-shadow:none; }
  .nav .nav-wrap{ height:102px; padding:0 20px; }
  .nav-links,.book-btn{ display:none !important; }
  .brand-emblem{ width:56px; height:56px; }
  .brand-word b{ font-size:27px; }
  .brand-word small{ font-size:9px; }
  .site-tabs{ background:#fff; border-top:8px solid #102a43; border-bottom:1px solid #d9e4ee; }
  .site-tabs .wrap{ max-width:none; min-height:110px; display:flex; align-items:center; gap:18px; padding:0 32px; overflow-x:auto; scrollbar-width:thin; }
  .tab-switcher{ position:relative; display:flex; flex:none; gap:7px; padding:7px; border:1px solid #d4e2ef; border-radius:20px; background:#f2f7fc; overflow:hidden; }
  .tab-indicator{ position:absolute; bottom:5px; left:0; height:4px; width:0; background:var(--emerald); border-radius:999px; transition:left .25s ease, width .25s ease, opacity .25s ease; opacity:0; pointer-events:none; }
  .site-tab{ position:relative; display:flex; align-items:center; gap:11px; min-height:56px; padding:0 19px; border-radius:13px; color:#526d82; font-size:16px; font-weight:700; white-space:nowrap; transition:transform .22s ease, color .22s ease, box-shadow .22s ease, background .22s ease; }
  .site-tab:hover{ transform:translateY(-1px); color:#17304a; box-shadow:0 10px 25px rgba(16,42,67,.10); }
  .site-tab.active{ color:#0f3f6b; background:rgba(255,255,255,.98); box-shadow:0 16px 32px rgba(16,42,67,.12); }
  .site-tab .tab-no{ color:#1f74ba; font-family:var(--mono); font-size:13px; }
  .outside-tabs{ display:flex; align-items:center; gap:20px; flex:none; }
  .outside-tabs a.active{ font-weight:800; }
  .outside-tabs a{ position:relative; color:#2b425c; font-size:14px; font-weight:700; white-space:nowrap; transition:color .22s ease; }
  .outside-tabs a::after{ content:""; position:absolute; left:0; right:0; bottom:-3px; height:2px; background:var(--emerald); transform:scaleX(0); transform-origin:left; transition:transform .25s ease, opacity .25s ease; opacity:0; }
  .outside-tabs a:hover{ color:var(--emerald); }
  .outside-tabs a:hover::after, .outside-tabs a.active::after{ transform:scaleX(1); opacity:1; }
  .outside-tabs a.active{ color:var(--emerald); }
  .site-tabs .consult-tab{ margin-left:auto; flex:none; background:#1f74ba; color:#fff; border-radius:14px; padding:14px 20px; font-size:15px; font-weight:700; line-height:1.25; white-space:nowrap; box-shadow:0 8px 18px rgba(26,99,165,.18); transition:transform .22s ease, box-shadow .22s ease; }
  .site-tabs .consult-tab:hover{ transform:translateY(-1px); box-shadow:0 12px 24px rgba(26,99,165,.28); background:#0f3f6b; }
  .site-tabs .consult-tab:hover{ background:#0f3f6b; }
  @media(max-width:760px){ .nav .nav-wrap{ height:78px; } .brand-emblem{ width:44px; height:44px; } .brand-word b{ font-size:22px; } .site-tabs .wrap{ min-height:86px; padding-left:16px; padding-right:16px; gap:16px; } .site-tab{ min-height:48px; padding:0 13px; font-size:14px; } .outside-tabs{ gap:18px; } .site-tabs .consult-tab{ padding:13px 18px; font-size:15px; } }
  /* Primary navigation: Agentic AI & Workflows is the featured tab. */
  .nav .nav-wrap{ gap:16px; }
  .nav-links{ flex:1; justify-content:flex-start; gap:12px; }
  .nav-links a{ font-size:12.5px; white-space:nowrap; }
  .book-btn{ margin-left:auto; }
  .nav-links .nav-primary-tab{
    background:var(--emerald); color:#fff; border-radius:13px; padding:13px 19px;
    box-shadow:0 8px 18px rgba(26,99,165,.22); white-space:nowrap;
  }
  .nav-links .nav-primary-tab::after{ display:none; }
  .nav-links .nav-primary-tab:hover{ color:#fff; background:var(--emerald-deep); }
  /* Final header layout: logo and all navigation share one row. */
  .site-tabs{ display:none; }
  .nav{ position:sticky; top:0; z-index:60; background:#fff; border-top:0; border-bottom:1px solid var(--line); box-shadow:0 4px 18px rgba(16,42,67,.05); }
  .nav .nav-wrap{ height:82px; padding:0 28px; gap:14px; }
  .nav-links{ display:flex !important; flex:1; align-items:center; justify-content:flex-start; gap:14px; }
  .book-btn{ display:inline-flex !important; margin-left:auto; padding:12px 18px; font-size:14px; }
  .brand-emblem{ width:44px; height:44px; }
  .brand-word b{ font-size:23px; }
  .brand-word small{ font-size:8px; }
  @media(max-width:1180px){ .nav-links{ overflow-x:auto; } .nav-links a{ font-size:12px; } }
  @media(max-width:760px){ .nav-links{ display:none !important; } .brand-word{ display:none; } }
  @media(min-width:981px) and (max-width:1180px){ .nav-links{ gap:11px; } .nav-links a{ font-size:12px; } .nav .wrap{ padding:0 22px; } }
  @media(min-width:981px) and (max-width:1060px){ .nav-links{ display:none !important; } }

/* ============================================================
   MENU BAR — polish & animations
   ============================================================ */
/* Nav slides down on first load */
@keyframes annexNavDrop{ from{ opacity:0; transform:translateY(-100%); } to{ opacity:1; transform:none; } }
html.js .nav{ animation:annexNavDrop .6s cubic-bezier(.2,.7,.2,1) both; }

/* Reading-progress bar along the bottom edge of the nav */
.scroll-progress{ position:absolute; left:0; bottom:-1px; height:3px; width:0; max-width:100%;
  background:linear-gradient(90deg, var(--emerald-2), var(--green-bright));
  border-radius:0 3px 3px 0; box-shadow:0 0 12px rgba(82,163,226,.6);
  transition:width .12s linear; z-index:3; pointer-events:none; }

/* Smoother scrolled shadow */
.nav.scrolled{ box-shadow:0 8px 30px rgba(16,42,67,.10); }

/* Brand hover */
.brand{ transition:transform .3s cubic-bezier(.2,.7,.2,1); }
.brand:hover{ transform:translateY(-1px); }
.brand-emblem{ transition:transform .45s cubic-bezier(.34,1.56,.64,1); }
.brand:hover .brand-emblem{ transform:scale(1.06) rotate(-3deg); }

/* Text links: pill hover + centered underline + active-section state */
.nav-links a:not(.nav-primary-tab){ position:relative; padding:8px 11px; border-radius:10px;
  transition:color .2s ease, background .2s ease; }
.nav-links a:not(.nav-primary-tab)::after{ content:""; position:absolute; left:11px; right:11px; bottom:4px;
  height:2px; border-radius:2px; background:var(--emerald-2);
  transform:scaleX(0); transform-origin:center; opacity:0;
  transition:transform .28s cubic-bezier(.2,.7,.2,1), opacity .28s ease; }
.nav-links a:not(.nav-primary-tab):hover{ color:var(--emerald); background:var(--green-soft); }
.nav-links a:not(.nav-primary-tab):hover::after,
.nav-links a:not(.nav-primary-tab).active::after{ transform:scaleX(1); opacity:1; }
.nav-links a:not(.nav-primary-tab).active{ color:var(--emerald); }

/* Shared sheen sweep */
@keyframes annexSheen{ to{ left:130%; } }

/* Featured pill (Agentic AI): gradient + lift + glow + sheen */
.nav-links .nav-primary-tab{ position:relative; overflow:hidden;
  background:linear-gradient(120deg, var(--emerald-2), var(--emerald));
  transition:transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease, background .25s ease; }
.nav-links .nav-primary-tab:hover{ transform:translateY(-2px);
  background:linear-gradient(120deg, var(--emerald), var(--emerald-deep));
  box-shadow:0 12px 26px rgba(26,99,165,.34); }
.nav-links .nav-primary-tab::before{ content:""; position:absolute; top:0; left:-120%;
  width:60%; height:100%; transform:skewX(-20deg);
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.38), transparent); }
.nav-links .nav-primary-tab:hover::before{ animation:annexSheen .85s ease; }

/* Book button: lift + sheen + arrow nudge */
.book-btn{ position:relative; overflow:hidden; }
.book-btn::before{ content:""; position:absolute; top:0; left:-120%;
  width:55%; height:100%; transform:skewX(-20deg);
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.42), transparent); }
.book-btn:hover::before{ animation:annexSheen .85s ease; }
.book-btn svg{ transition:transform .25s ease; }
.book-btn:hover svg{ transform:translateX(4px); }

/* Hamburger button (mobile) */
.nav-burger-btn{ display:none; margin-left:10px; background:none; border:1px solid var(--line);
  border-radius:11px; width:46px; height:46px; cursor:pointer; padding:0; flex:none;
  align-items:center; justify-content:center; flex-direction:column; gap:5px;
  transition:background .2s ease, border-color .2s ease; }
.nav-burger-btn:hover{ background:var(--green-soft); border-color:var(--green-soft-2); }
.nav-burger-btn span{ display:block; width:22px; height:2px; border-radius:2px; background:var(--ink);
  transition:transform .3s cubic-bezier(.2,.7,.2,1), opacity .2s ease; }
.nav-burger-btn.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-burger-btn.is-open span:nth-child(2){ opacity:0; }
.nav-burger-btn.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* Mobile dropdown menu */
@media(max-width:1060px){
  .nav-burger-btn{ display:inline-flex !important; }
  .nav-links{ position:absolute; top:100%; left:0; right:0;
    flex-direction:column !important; align-items:stretch !important; justify-content:flex-start !important;
    gap:6px !important; background:#fff; padding:16px 22px 24px;
    border-bottom:1px solid var(--line); box-shadow:var(--shadow);
    opacity:0; transform:translateY(-14px); pointer-events:none;
    transition:opacity .3s ease, transform .3s cubic-bezier(.2,.7,.2,1); }
  .nav-links.open{ display:flex !important; opacity:1; transform:none; pointer-events:auto; }
  .nav-links a{ width:100%; font-size:15.5px !important; }
  .nav-links a:not(.nav-primary-tab){ padding:13px 15px; }
  .nav-links .nav-primary-tab{ text-align:center; justify-content:center; padding:14px 19px; }
  .nav-links.open a{ animation:annexMenuItem .45s both; }
  .nav-links.open a:nth-child(1){ animation-delay:.04s; }
  .nav-links.open a:nth-child(2){ animation-delay:.09s; }
  .nav-links.open a:nth-child(3){ animation-delay:.14s; }
  .nav-links.open a:nth-child(4){ animation-delay:.19s; }
  .nav-links.open a:nth-child(5){ animation-delay:.24s; }
  .nav-links.open a:nth-child(6){ animation-delay:.29s; }
}
@keyframes annexMenuItem{ from{ opacity:0; transform:translateX(-10px); } to{ opacity:1; transform:none; } }

/* Respect reduced-motion preferences */
@media(prefers-reduced-motion: reduce){
  html.js .nav{ animation:none; }
  .nav-links .nav-primary-tab:hover::before,
  .book-btn:hover::before,
  .nav-links.open a{ animation:none; }
}
  @media(max-width:720px){ .faq-grid{ grid-template-columns:1fr; } }

/* ============================================================
   "How AI Attendance works on WhatsApp" — step grid
   ============================================================ */
.wa-how{ padding:100px 0; background:var(--paper); }
.wa-how .wrap{ max-width:1340px; }
.wa-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:18px; margin-top:48px; }
@media(max-width:1180px){ .wa-grid{ grid-template-columns:repeat(3,1fr); } }
@media(max-width:820px){ .wa-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:520px){ .wa-grid{ grid-template-columns:1fr; } }
.wa-card{ background:#fff; border:1px solid var(--line); border-radius:18px; padding:18px; display:flex; flex-direction:column; box-shadow:var(--shadow-sm); }
.wa-cap{ display:flex; gap:11px; margin-bottom:14px; }
.wa-num{ flex:none; width:28px; height:28px; border-radius:50%; background:#12a150; color:#fff; font-weight:700; font-size:13px; display:flex; align-items:center; justify-content:center; }
.wa-cap h3{ font-size:15.5px; font-weight:700; color:var(--ink); margin:2px 0 4px; line-height:1.2; }
.wa-cap p{ font-size:12.5px; color:var(--muted); line-height:1.4; margin:0; }

/* Phone frame */
.wa-phone{ position:relative; min-height:262px; border-radius:16px; overflow:hidden; border:1px solid #d7dee3; background:#e5ddd5; display:flex; flex-direction:column; box-shadow:0 6px 18px rgba(16,42,67,.10); margin-top:auto; }
.wa-phone.plain{ background:#eef2f5; }

/* Header bar */
.wa-bar{ display:flex; align-items:center; gap:8px; background:#0b8073; color:#fff; padding:9px 11px; }
.wa-bar.list{ justify-content:space-between; }
.wa-bar.list b{ font-size:15px; }
.wa-hicons{ display:flex; gap:10px; opacity:.9; font-style:normal; }
.wa-hicons i{ font-style:normal; }
.wa-back{ font-size:17px; opacity:.9; }
.wa-ava{ width:30px; height:30px; border-radius:50%; background:#25d366; color:#0b3b2e; font-size:11px; font-weight:700; display:flex; align-items:center; justify-content:center; flex:none; }
.wa-ava.sm{ width:28px; height:28px; }
.wa-ava.c2{ background:#b0bec5; color:#31424b; } .wa-ava.c3{ background:#90a4ae; color:#22323a; } .wa-ava.c4{ background:#78909c; color:#fff; }
.wa-who{ display:flex; flex-direction:column; line-height:1.15; }
.wa-who b{ font-size:12.5px; font-weight:600; } .wa-who span{ font-size:10px; opacity:.85; }

/* Chat list (step 1) */
.wa-tabs{ display:flex; background:#0b8073; color:rgba(255,255,255,.8); font-size:11px; font-weight:600; }
.wa-tabs span{ flex:1; text-align:center; padding:7px 0; }
.wa-tabs .on{ color:#fff; box-shadow:inset 0 -3px 0 #fff; }
.wa-list{ background:#fff; flex:1; }
.wa-li{ display:flex; align-items:center; gap:9px; padding:9px 11px; border-bottom:1px solid #f0f2f4; }
.wa-li.on{ background:#f6fbf9; }
.wa-lim{ display:flex; flex-direction:column; flex:1; min-width:0; }
.wa-lim b{ font-size:12px; color:#111b21; display:flex; align-items:center; gap:4px; font-weight:600; }
.wa-lim span{ font-size:10.5px; color:#667781; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.wa-li em{ font-size:9.5px; color:#667781; font-style:normal; align-self:flex-start; margin-top:2px; }
.wa-vf{ color:#12a150; font-style:normal; font-size:10px; }
.wa-fab{ position:absolute; right:12px; bottom:12px; width:34px; height:34px; border-radius:12px; background:#25d366; color:#fff; display:flex; align-items:center; justify-content:center; font-size:15px; box-shadow:0 4px 10px rgba(0,0,0,.2); }

/* Chat body + bubbles */
.wa-chat{ flex:1; padding:12px 10px; display:flex; flex-direction:column; gap:9px; background-image:radial-gradient(rgba(0,0,0,.03) 1px,transparent 1px); background-size:14px 14px; }
.wa-in, .wa-out{ position:relative; max-width:86%; font-size:11.5px; line-height:1.4; color:#111b21; padding:7px 9px; border-radius:9px; box-shadow:0 1px 1px rgba(0,0,0,.08); }
.wa-in{ background:#fff; align-self:flex-start; border-top-left-radius:2px; }
.wa-out{ background:#dcf8c6; align-self:flex-end; border-top-right-radius:2px; }
.wa-in time, .wa-out time{ display:block; text-align:right; font-size:8.5px; color:#667781; margin-top:3px; }
.tick{ color:#34b7f1; font-style:normal; }
.wa-out.photo{ padding:4px; }
.wa-face{ display:flex; align-items:center; justify-content:center; width:104px; height:104px; border-radius:7px; background:linear-gradient(160deg,#3a6ea5,#274b73); }
.wa-face svg{ width:44px; height:44px; }
.wa-out.photo time{ padding:2px 4px 0; }
.wa-out.menu ul{ margin:6px 0 0; padding:0; list-style:none; display:flex; flex-direction:column; gap:4px; }
.wa-out.menu li{ font-size:11px; }

/* Status cards (verifying / success / failed) */
.wa-card-mid{ align-self:center; background:#fff; border-radius:10px; padding:16px; text-align:center; display:flex; flex-direction:column; align-items:center; gap:8px; box-shadow:0 1px 2px rgba(0,0,0,.12); width:82%; }
.wa-card-mid time{ font-size:8.5px; color:#667781; }
.wa-shield{ width:44px; height:44px; border-radius:50%; background:#12a150; display:flex; align-items:center; justify-content:center; }
.wa-shield svg{ width:26px; height:26px; }
.wa-card-mid b{ font-size:12.5px; color:#111b21; }
.wa-result{ background:#fff; border-radius:10px; padding:15px; box-shadow:0 1px 2px rgba(0,0,0,.12); display:flex; flex-direction:column; align-items:center; gap:9px; text-align:center; }
.wa-result.ok{ background:#e7f8ee; }
.wa-result.fail{ background:#fdeaea; }
.wa-badge{ width:42px; height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex:none; }
.wa-badge.ok{ background:#12a150; } .wa-badge.fail{ background:#e5484d; }
.wa-badge svg{ width:24px; height:24px; }
.wa-badge.sm{ width:22px; height:22px; } .wa-badge.sm svg{ width:13px; height:13px; }
.wa-result b{ font-size:13px; color:#111b21; } .wa-result.fail b{ color:#c0392b; }
.wa-result ul, .wa-stored ul{ list-style:none; margin:0; padding:0; width:100%; display:flex; flex-direction:column; gap:4px; }
.wa-result li, .wa-stored li{ display:flex; justify-content:space-between; font-size:11px; }
.wa-result li span, .wa-stored li span{ color:#667781; }
.wa-result li b, .wa-stored li b{ color:#111b21; font-weight:600; }
.pres{ color:#12a150 !important; }
.wa-result p{ font-size:11px; color:#111b21; margin:0; }
.wa-result.fail p{ color:#8a5a52; }
.wa-result time{ font-size:8.5px; color:#667781; }

/* Stored / database (step 7) */
.wa-db{ display:flex; align-items:center; justify-content:center; gap:8px; padding:18px 0 8px; }
.wa-dbcyl{ width:52px; height:44px; border-radius:8px; background:linear-gradient(#2a2f3a,#1a1e27); box-shadow:inset 0 6px 0 rgba(255,255,255,.06); }
.wa-dblock{ width:30px; height:30px; border-radius:8px; background:#12a150; display:flex; align-items:center; justify-content:center; }
.wa-dblock svg{ width:17px; height:17px; }
.wa-stored{ background:#fff; margin:0 12px 12px; border-radius:10px; padding:13px; box-shadow:0 1px 2px rgba(0,0,0,.12); }
.wa-stored-h{ display:flex; align-items:center; gap:7px; font-size:12px; font-weight:700; color:#111b21; margin-bottom:9px; }

/* Dashboard / trends / reports (steps 8-10) */
.wa-dash{ background:#fff; flex:1; padding:12px; display:flex; flex-direction:column; gap:10px; }
.wa-dash-h{ display:flex; justify-content:space-between; align-items:center; font-size:13px; font-weight:700; color:#111b21; }
.wa-dash-h span{ font-size:10px; color:#667781; font-weight:500; border:1px solid var(--line); border-radius:6px; padding:2px 7px; }
.wa-kpis{ display:grid; grid-template-columns:repeat(4,1fr); gap:6px; }
.wa-kpis > div{ background:#f4f7f9; border-radius:8px; padding:8px 4px; text-align:center; }
.wa-kpis b{ display:block; font-size:15px; color:#111b21; } .wa-kpis span{ font-size:8.5px; color:#667781; }
.wa-kpis .pres b{ color:#12a150; } .wa-kpis .abs b{ color:#e5484d; } .wa-kpis .late b{ color:#f5a623; }
.wa-spark{ background:#f4f7f9; border-radius:8px; padding:6px; } .wa-spark svg{ width:100%; height:44px; display:block; }
.wa-recent > div{ display:flex; align-items:center; gap:7px; font-size:11px; color:#111b21; padding:5px 0; border-top:1px solid #f0f2f4; }
.wa-recent em{ margin-left:auto; font-style:normal; font-size:9.5px; }
.wa-ava.xs{ width:20px; height:20px; font-size:8px; }
.wa-segs{ display:flex; gap:5px; } .wa-segs span{ flex:1; text-align:center; font-size:10px; padding:5px 0; border-radius:6px; background:#f4f7f9; color:#667781; } .wa-segs .on{ background:#12a150; color:#fff; }
.wa-bars{ display:flex; align-items:flex-end; gap:5px; height:80px; padding:4px 2px; background:#f4f7f9; border-radius:8px; } .wa-bars i{ flex:1; background:#12a150; border-radius:3px 3px 0 0; }
.wa-legend{ display:flex; flex-direction:column; gap:4px; font-size:10px; color:#4a5a66; } .wa-legend span{ display:flex; align-items:center; gap:6px; } .wa-legend i{ width:9px; height:9px; border-radius:50%; } .wa-legend .d1{ background:#12a150; } .wa-legend .d2{ background:#e5484d; } .wa-legend .d3{ background:#f5a623; }
.wa-rep-kpis{ display:grid; grid-template-columns:1fr 1fr; gap:7px; } .wa-rep-kpis > div{ background:#f4f7f9; border-radius:8px; padding:9px; } .wa-rep-kpis span{ font-size:9px; color:#667781; display:block; } .wa-rep-kpis b{ font-size:16px; color:#111b21; }
.wa-dept{ display:flex; flex-direction:column; gap:7px; } .wa-dept > div{ display:flex; align-items:center; gap:7px; font-size:10.5px; color:#4a5a66; } .wa-dept > div > span{ width:62px; } .wa-dept i{ flex:1; height:6px; border-radius:4px; background:#eceff1; overflow:hidden; } .wa-dept em{ display:block; height:100%; background:#12a150; } .wa-dept > div > b{ width:32px; text-align:right; color:#111b21; }
.wa-exports{ display:flex; gap:7px; margin-top:auto; } .wa-exports span{ flex:1; text-align:center; font-size:10px; border:1px solid var(--line); border-radius:7px; padding:7px 2px; color:#12a150; font-weight:600; }

/* Input bar */
.wa-input{ display:flex; align-items:center; gap:8px; padding:7px 9px; background:#eef2f5; }
.wa-input span{ flex:1; background:#fff; border-radius:14px; padding:6px 11px; font-size:11px; color:#8696a0; }
.wa-input i{ width:28px; height:28px; border-radius:50%; background:#0b8073; color:#fff; display:flex; align-items:center; justify-content:center; font-style:normal; font-size:13px; flex:none; }

/* ============================================================
   Hero reel — Scene 1 restyled as a WhatsApp chat (dark theme)
   ============================================================ */
.reel-phone{ background:#0b141a; padding:0; overflow:hidden; border-radius:22px; }
.rp-head{ display:flex; align-items:center; gap:8px; background:#075e54; color:#fff; padding:9px 11px; }
.rp-head .rp-ava{ width:26px; height:26px; border-radius:50%; background:#25d366; color:#0b3b2e; font-size:9.5px; font-weight:700; display:flex; align-items:center; justify-content:center; flex:none; }
.rp-head .rp-id{ display:flex; flex-direction:column; line-height:1.15; }
.rp-head .rp-id b{ font-size:11.5px; font-weight:600; }
.rp-head .rp-id span{ font-size:9px; opacity:.85; }
.rp-chat{ background:#0b141a; background-image:radial-gradient(rgba(255,255,255,.03) 1px,transparent 1px); background-size:14px 14px; padding:12px 9px 11px; min-height:196px; }
.rp-bubble{ position:relative; font-size:11.5px; box-shadow:0 1px 1px rgba(0,0,0,.25); }
.rp-bubble.in{ background:#202c33; color:#e9edef; border-radius:9px; border-top-left-radius:2px; }
.rp-bubble.in time{ display:block; text-align:right; font-size:8.5px; color:rgba(233,237,239,.5); margin-top:3px; }
.rp-selfie{ position:relative; }
.rp-selfie time{ position:absolute; right:5px; bottom:5px; font-size:8px; color:#e9ffe9; background:rgba(0,0,0,.42); padding:1px 5px; border-radius:6px; }
.rp-selfie time i{ color:#53bdeb; font-style:normal; }
.rp-bubble.ok{ background:#005c4b; color:#e9edef; border-radius:9px; border-top-right-radius:2px; font-weight:600; }
.rp-bubble.ok span{ color:rgba(233,237,239,.6); font-weight:500; }
/* ============================================================
   Alternating section backgrounds (from Case Studies down)
   ============================================================ */
.cases{ background:#ffffff; }
.services{ background:#e9f1fb; }
.pricing{ background:#ffffff; }
.about{ background:#e9f1fb; }
.faq{ background:#ffffff; }


/* ============================================================
   Hero reel toggle — switch between assistant reels
   ============================================================ */
.reel-switch{ display:flex; flex-wrap:wrap; gap:7px; margin-bottom:14px; }
.reel-switch button{ font-family:var(--body); font-size:12.5px; font-weight:600; color:var(--muted);
  background:var(--paper-2); border:1px solid var(--line); border-radius:999px; padding:7px 14px; cursor:pointer;
  transition:transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease; }
.reel-switch button:hover{ color:var(--emerald); border-color:var(--green-soft-2); transform:translateY(-1px); }
.reel-switch button.active{ background:var(--emerald); border-color:var(--emerald); color:#fff; box-shadow:0 8px 18px rgba(26,99,165,.22); }
.reel-stack > .reel-player{ display:none; }
.reel-stack > .reel-player.active{ display:block; }
@media(max-width:760px){ .reel-switch button{ font-size:11.5px; padding:6px 11px; } }

/* New assistant reels: the value column should not auto-append a check */
.reel-player[data-reel="inspection"] .rd-row .tm::after,
.reel-player[data-reel="quotation"] .rd-row .tm::after,
.reel-player[data-reel="invoicing"] .rd-row .tm::after{ content:none; }
/* These reels have no side panel — let the list span the full width */
.reel-player[data-reel="inspection"] .rd-body,
.reel-player[data-reel="quotation"] .rd-body,
.reel-player[data-reel="invoicing"] .rd-body{ grid-template-columns:1fr; }
