  :root{
    --ink:#0A0F14;
    --muted:#5C6B77;
    --muted-2:#8C98A3;
    --primary:#005289;
    --primary-700:#003A61;
    --primary-100:#E9F1F6;
    --teal:#53C1AE;
    --teal-600:#399783;
    --teal-100:#EAF8F5;
    --paper:#FFFFFF;
    --paper-soft:#F6F9FA;
    --line:#E3E9ED;
    --line-strong:#CBD6DC;
    --radius-s:10px;
    --radius-m:16px;
    --radius-l:26px;
    --shadow-card: 0 1px 2px rgba(10,15,20,0.04), 0 12px 30px -12px rgba(10,15,20,0.14);
    --shadow-float: 0 20px 60px -18px rgba(0,82,137,0.35);
    --maxw:1180px;
    --ease: cubic-bezier(.2,.7,.2,1);
  }

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

  /* ---------- Entrance animations ----------
     No-JS or JS-disabled: everything is visible by default (opacity:1, no transform).
     Once /html.js/ is set (see head script), .reveal elements hide until scrolled
     into view, then IntersectionObserver adds .in to fade them up. */
  .reveal{ opacity:1; }
  html.js .reveal{ opacity:0; transform:translateY(22px); transition:opacity .65s var(--ease), transform .65s var(--ease); }
  html.js .reveal.in{ opacity:1; transform:translateY(0); }

  @keyframes fadeInUp{ from{ opacity:0; transform:translateY(22px); } to{ opacity:1; transform:translateY(0); } }
  .hero-eyebrow{ animation:fadeInUp .7s var(--ease) both; }
  .hero h1{ animation:fadeInUp .75s var(--ease) .08s both; }
  .hero-sub{ animation:fadeInUp .75s var(--ease) .16s both; }
  .hero-ctas{ animation:fadeInUp .75s var(--ease) .24s both; }
  .hero-proof{ animation:fadeInUp .75s var(--ease) .3s both; }
  .hero-showcase{ animation:fadeInUp .85s var(--ease) .2s both; }

  body{
    margin:0;
    background:var(--paper);
    color:var(--ink);
    font-family:'Sora', system-ui, sans-serif;
    -webkit-font-smoothing:antialiased;
    line-height:1.5;
  }

  img{ max-width:100%; display:block; }
  a{ color:inherit; text-decoration:none; }
  button{ font-family:inherit; cursor:pointer; }
  ul{ margin:0; padding:0; list-style:none; }

  .mono{ font-family:'IBM Plex Mono', ui-monospace, monospace; }

  .container{
    max-width:var(--maxw);
    margin:0 auto;
    padding:0 32px;
  }
  @media (max-width:640px){
    .container{ padding:0 20px; }
  }

  .eyebrow{
    font-family:'IBM Plex Mono', monospace;
    font-size:12.5px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--teal-600);
    font-weight:500;
    display:inline-flex;
    align-items:center;
    gap:10px;
  }
  .eyebrow::before{
    content:"";
    width:16px; height:1.5px;
    background:var(--teal-600);
    display:inline-block;
  }

  h1,h2,h3{
    font-weight:700;
    letter-spacing:-0.02em;
    margin:0;
    color:var(--ink);
  }

  .visually-hidden{
    position:absolute; width:1px; height:1px; overflow:hidden;
    clip:rect(0,0,0,0); white-space:nowrap;
  }

  :focus-visible{
    outline:2.5px solid var(--primary);
    outline-offset:3px;
    border-radius:4px;
  }

  /* ---------- Ledger texture ---------- */
  .ledger-bg{
    background-image: repeating-linear-gradient(
      to bottom,
      rgba(0,82,137,0.055) 0px,
      rgba(0,82,137,0.055) 1px,
      transparent 1px,
      transparent 30px
    );
  }
  .ledger-bg-dark{
    background-image: repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.07) 0px,
      rgba(255,255,255,0.07) 1px,
      transparent 1px,
      transparent 30px
    );
  }

  /* ---------- Buttons ---------- */
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:14px 26px;
    border-radius:999px;
    font-weight:600;
    font-size:15px;
    border:1.5px solid transparent;
    transition:transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
    white-space:nowrap;
  }
  .btn-primary{
    background:var(--primary);
    color:#fff;
    box-shadow:0 10px 24px -10px rgba(0,82,137,0.55);
  }
  .btn-primary:hover{ background:var(--primary-700); transform:translateY(-2px); }
  .btn-ghost{
    background:transparent;
    color:var(--ink);
    border-color:var(--line-strong);
  }
  .btn-ghost:hover{ border-color:var(--primary); color:var(--primary); transform:translateY(-2px); }
  .btn-sm{ padding:10px 18px; font-size:13.5px; }

  /* ---------- Header ---------- */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(255,255,255,0.86);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 20px 10px 20px;
  }
  .brand{ display:flex; align-items:center; gap:10px; }
  .brand img{ height:30px; width:auto; }
  .nav-links{
    display:flex; align-items:center; gap:34px;
  }
  .nav-links a{
    font-size:14.5px; font-weight:500; color:var(--muted);
    transition:color .15s var(--ease);
  }
  .nav-links a:hover{ color:var(--ink); }
  .nav-cta{ display:flex; align-items:center; gap:14px; }
  .mobile-cta{ display:none; }
  .nav-login{ font-size:14.5px; font-weight:600; color:var(--ink); }

  .menu-toggle{
    display:none;
    background:none; border:none; padding:8px;
  }
  .menu-toggle svg{ width:24px; height:24px; }

  @media (max-width: 900px){
    .nav-links{ display:none; }
    .nav-cta{ display:none; }
    .menu-toggle{ display:block; }
    .mobile-cta{ display:inline-flex; margin-top:8px; }
  }

  /* ---------- Hero ---------- */
  .hero{
    position:relative;
    padding:88px 0 130px;
    overflow:hidden;
    background:linear-gradient(160deg, var(--primary) 0%, var(--primary-700) 100%);
  }
  .hero-center{
    text-align:center;
    max-width:980px;
    margin:0 auto;
  }
  .hero .eyebrow{ color:var(--teal); justify-content:center; }
  .hero .eyebrow::before{ background:var(--teal); }
  .hero h1{
    font-size:clamp(30px, 3.6vw, 50px);
    line-height:1.1;
    color:#fff;
    white-space:nowrap;
  }
  .hero h1 .accent{ color:var(--teal); }
  .hero-sub{
    margin:22px auto 0;
    font-size:18px;
    color:rgba(255,255,255,0.78);
    max-width:662px;
    line-height:1.6;
  }
  .hero-eyebrow{ margin-bottom:22px; }
  .hero-ctas{
    margin-top:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
  }
  .hero .btn-primary{ background:var(--teal); color:var(--ink); box-shadow:0 10px 24px -10px rgba(0,0,0,0.4); }
  .hero .btn-primary:hover{ background:#67d0bd; }
  .hero .btn-ghost{ border-color:rgba(255,255,255,0.38); color:#fff; }
  .hero .btn-ghost:hover{ border-color:#fff; color:#fff; }
  .hero-proof{
    margin-top:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    font-size:13px;
    color:rgba(255,255,255,0.6);
  }
  .hero-proof .dot{ width:5px; height:5px; border-radius:50%; background:rgba(255,255,255,0.3); }
  .hero-proof strong{ color:#fff; font-weight:600; }

  /* --- hero showcase: dashboard screenshot centered, floating context cards around it --- */
  .hero-showcase{
    position:relative;
    max-width:920px;
    margin:76px auto 0;
  }
  .app-window{
    position:relative;
    box-shadow:0 40px 80px -30px rgba(0,20,40,0.5);
    border-radius:var(--radius-l);
  }
  /* window-clip holds only the parts that must respect the window's rounded
     corners (the chrome bar + screenshot). Pop-cards and the invoice card sit
     outside it so they're free to spill past the window's edges. */
  .window-clip{
    position:relative;
    background:var(--paper);
    border:1px solid var(--line);
    border-radius:var(--radius-l);
    overflow:hidden;
  }
  .chrome-bar{
    display:flex; align-items:center; gap:7px;
    padding:13px 16px;
    border-bottom:1px solid var(--line);
    background:var(--paper-soft);
  }
  .chrome-dot{ width:9px; height:9px; border-radius:50%; flex-shrink:0; }
  .chrome-url{
    margin-left:8px; font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--muted-2);
    background:#fff; border:1px solid var(--line); border-radius:6px; padding:4px 12px;
    flex:1; max-width:260px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
  }
  .dashboard-shot{ width:100%; display:block; }
  .kpi-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-bottom:18px; }
  .kpi-card{
    background:var(--paper-soft);
    border:1px solid var(--line);
    border-radius:12px;
    padding:11px 12px;
  }
  .kpi-card .l{ font-size:10.5px; color:var(--muted-2); text-transform:uppercase; letter-spacing:0.06em; }
  .kpi-card .v{ font-size:17px; font-weight:700; margin-top:4px; font-family:'IBM Plex Mono',monospace; }
  .kpi-card.teal .v{ color:var(--teal-600); }

  .mini-chart{
    display:flex; align-items:flex-end; gap:7px;
    height:64px; margin-bottom:18px;
    padding:10px 12px 0;
    background:var(--paper-soft);
    border:1px solid var(--line);
    border-radius:12px;
  }
  .mini-chart i{
    flex:1;
    background:linear-gradient(180deg, var(--teal) 0%, var(--primary) 130%);
    border-radius:4px 4px 0 0;
    opacity:0.85;
  }

  .mini-table{ border:1px solid var(--line); border-radius:12px; overflow:hidden; }
  .mini-row{
    display:flex; align-items:center; justify-content:space-between;
    padding:9px 12px;
    font-size:12px;
    border-bottom:1px solid var(--line);
    background:var(--paper);
  }
  .mini-row:last-child{ border-bottom:none; }
  .mini-row .who{ font-weight:600; }
  .mini-row .amt{ font-family:'IBM Plex Mono',monospace; color:var(--muted); }
  .pill{
    font-size:10px; font-weight:600; padding:3px 9px; border-radius:999px;
    font-family:'IBM Plex Mono',monospace; letter-spacing:0.02em;
  }
  .pill-paid{ background:var(--teal-100); color:var(--teal-600); }
  .pill-pending{ background:var(--primary-100); color:var(--primary); }
  .pill-overdue{ background:#FBEAEA; color:#B5443A; }

  .float-invoice{
    position:absolute;
    right:-46px; bottom:-52px;
    width:255px;
    background:var(--paper);
    border:1px solid var(--line);
    border-radius:16px;
    box-shadow:var(--shadow-float);
    padding:18px 18px 20px;
    transform:rotate(-6deg);
    z-index:5;
  }
  .float-invoice .fi-top{
    display:flex; justify-content:space-between; align-items:flex-start;
    margin-bottom:14px;
  }
  .float-invoice .fi-brand{ font-weight:700; font-size:13px; }
  .float-invoice .fi-brand span{ color:var(--teal-600); }
  .float-invoice .fi-num{ font-family:'IBM Plex Mono',monospace; font-size:9.5px; color:var(--muted-2); }
  .float-invoice .fi-to{ font-size:10.5px; color:var(--muted-2); margin-bottom:2px; }
  .float-invoice .fi-name{ font-size:12.5px; font-weight:600; margin-bottom:12px; }
  .float-invoice .fi-line{
    display:flex; justify-content:space-between;
    font-size:10.5px; color:var(--muted); padding:5px 0;
    border-top:1px dashed var(--line);
  }
  .float-invoice .fi-total{
    display:flex; justify-content:space-between; align-items:center;
    margin-top:10px; padding-top:10px; border-top:1px solid var(--line);
    font-weight:700; font-size:13px;
  }
  .fi-stamp{
    position:absolute; right:14px; top:52px;
    width:58px; height:58px; border-radius:50%;
    border:2.5px solid var(--teal);
    color:var(--teal-600);
    display:flex; align-items:center; justify-content:center;
    font-family:'IBM Plex Mono',monospace; font-weight:600; font-size:10px;
    letter-spacing:0.06em;
    transform:rotate(14deg);
    background:rgba(83,193,174,0.06);
  }

  /* --- pop-out card fragments, spilling past the window's edges ---
     pop-layer's box is pinned to sit exactly over the screenshot (below the
     chrome bar) using its own aspect-ratio, so the percentage positions below
     line up with the screenshot's content at any width. It doesn't clip
     (unlike window-clip), so cards are free to overflow past the window. */
  .pop-layer{
    position:absolute;
    left:0; right:0; top:53px;
    aspect-ratio:1624 / 817;
    pointer-events:none;
    z-index:3;
  }
  .pop-card{
    position:absolute;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 24px 46px -16px rgba(0,20,40,0.4);
    pointer-events:auto;
    transition:transform .2s var(--ease), box-shadow .2s var(--ease);
  }
  .pop-card img{ width:100%; display:block; }
  .pop-card:hover{ transform:translateY(-3px); box-shadow:0 30px 54px -16px rgba(0,20,40,0.48); }

  .pop-receivables{ left:-8%; top:1.6%; width:24.6%; }
  .pop-networth{ right:-8%; top:1.6%; width:24.6%; }
  .pop-ageing{ left:-14%; top:40%; width:34%; transform:rotate(-2deg); }
  .pop-ageing:hover{ transform:rotate(-2deg) translateY(-3px); }

  @media (max-width:900px){
    .pop-card{ display:none; }
    .hero-showcase{ margin-top:56px; }
  }
  @media (max-width:760px){
    .hero h1{ white-space:normal; font-size:clamp(28px, 6.4vw, 40px); }
  }
  @media (max-width:520px){
    .float-invoice{ width:200px; right:0; bottom:-24px; }
    .kpi-row{ grid-template-columns:1fr 1fr; }
    .chrome-url{ max-width:150px; }
  }

  /* ---------- Section shared ---------- */
  section{ padding:96px 0; }
  .section-head{
    max-width:640px;
    margin-bottom:52px;
  }
  .section-head h2{
    font-size:clamp(28px,3.4vw,39px);
    margin-top:16px;
  }
  .section-head p{
    margin-top:16px;
    color:var(--muted);
    font-size:16.5px;
    line-height:1.65;
  }
  .section-soft{ background:var(--paper-soft); }
  .divider{ height:1px; background:var(--line); border:none; margin:0; }

  /* ---------- Feature tabs ---------- */
  .tabs-bar{
    display:flex; gap:8px; margin-bottom:44px; flex-wrap:wrap;
    border-bottom:1px solid var(--line);
  }
  .tab-btn{
    background:none; border:none;
    padding:14px 6px; margin-right:28px;
    font-size:15.5px; font-weight:600; color:var(--muted-2);
    border-bottom:2.5px solid transparent;
    margin-bottom:-1px;
    transition:color .15s var(--ease), border-color .15s var(--ease);
  }
  .tab-btn .n{ font-family:'IBM Plex Mono',monospace; font-size:11.5px; color:var(--muted-2); margin-right:8px; }
  .tab-btn.active{ color:var(--ink); border-color:var(--teal); }
  .tab-btn.active .n{ color:var(--teal-600); }
  .tab-btn:hover{ color:var(--ink); }

  .tab-panel{ display:none; }
  .tab-panel.active{
    display:grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap:60px;
    align-items:start;
  }
  .tab-visual{ position:sticky; top:96px; }
  .tab-copy .tab-kicker{
    font-size:14px; font-weight:600; color:var(--teal-600); margin-bottom:10px;
  }
  .tab-copy h3{ font-size:26px; margin-bottom:26px; }
  .feature-list{ display:flex; flex-direction:column; gap:20px; }
  .feature-item{ display:flex; gap:14px; align-items:flex-start; }
  .feature-icon{
    width:38px; height:38px; border-radius:10px;
    background:var(--primary-100);
    color:var(--primary);
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
  }
  .feature-icon svg{ width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
  .feature-item h5{ font-size:15px; margin:0 0 3px; font-weight:600; }
  .feature-item p{ font-size:13.8px; color:var(--muted); margin:0; line-height:1.5; }

  /* tab visual panels */
  .tab-visual{
    background:var(--paper);
    border:1px solid var(--line);
    border-radius:var(--radius-m);
    box-shadow:var(--shadow-card);
    padding:22px;
  }
  .tv-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:14px; }
  .tv-head span{ font-size:11px; font-family:'IBM Plex Mono',monospace; color:var(--muted-2); }
  .tv-table .mini-row{ font-size:12.5px; padding:11px 14px; }
  .tv-table{ border:1px solid var(--line); border-radius:12px; overflow:hidden; }

  @media (max-width:900px){
    .tab-panel.active{ grid-template-columns:1fr; }
    .tab-btn{ margin-right:18px; font-size:14px; }
    .tab-visual{ position:static; }
  }

  /* ---------- Spotlight ---------- */
  .spotlight{
    display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center;
  }
  .spotlight-visual{
    background:var(--primary-700);
    border-radius:var(--radius-l);
    padding:30px;
    position:relative;
    overflow:hidden;
  }
  
   .spotlight-visual img{
    border-radius: 10px;
  }

  .spotlight-visual::before{
    content:"";
    position:absolute; inset:0;
    background-image: repeating-linear-gradient(to bottom, rgba(255,255,255,0.06) 0px, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 26px);
    pointer-events:none;
  }

  .sp-card{
    position:relative; z-index:1;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.14);
    border-radius:14px;
    padding:18px;
    margin-bottom:12px;
  }
  .sp-card:last-child{ margin-bottom:0; }
  .sp-card .l{ font-size:11px; color:rgba(255,255,255,0.55); font-family:'IBM Plex Mono',monospace; text-transform:uppercase; letter-spacing:0.06em; }
  .sp-card .v{ font-size:26px; font-weight:700; color:#fff; margin-top:6px; font-family:'IBM Plex Mono',monospace; }
  .sp-chart{ display:flex; gap:6px; align-items:flex-end; height:70px; margin-top:14px; }
  .sp-chart i{ flex:1; background:var(--teal); border-radius:3px 3px 0 0; opacity:0.9; }
  .sp-row-two{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }

  @media (max-width:900px){
    .spotlight{ grid-template-columns:1fr; }
    .spotlight-visual{ order:-1; }
  }

  /* ---------- Stats ---------- */
  .stats-strip{
    display:grid; grid-template-columns:repeat(3,1fr);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }
  .stat{
    padding:40px 32px;
    border-right:1px solid var(--line);
  }
  .stat:last-child{ border-right:none; }
  .stat .v{ font-size:40px; font-weight:700; font-family:'IBM Plex Mono',monospace; color:var(--primary); }
  .stat .l{ margin-top:8px; font-size:14.5px; color:var(--muted); }
  @media (max-width:760px){
    .stats-strip{ grid-template-columns:1fr; }
    .stat{ border-right:none; border-bottom:1px solid var(--line); }
    .stat:last-child{ border-bottom:none; }
  }

  /* ---------- packages ---------- */
  .packages-toggle{ display:flex; align-items:center; justify-content:center; gap:14px; margin-bottom:14px; flex-wrap:wrap; }
  .toggle-label{ font-size:14.5px; font-weight:600; color:var(--muted-2); transition:color .15s var(--ease); }
  .toggle-label.active{ color:var(--ink); }
  .toggle-switch{ position:relative; width:50px; height:27px; background:var(--primary-100); border-radius:999px; border:1px solid var(--line-strong); cursor:pointer; flex-shrink:0; padding:0; }
  .toggle-switch .knob{ position:absolute; top:2px; left:2px; width:21px; height:21px; border-radius:50%; background:var(--primary); transition:transform .25s var(--ease); }
  .toggle-switch.on .knob{ transform:translateX(23px); background:var(--teal-600); }
  .save-badge{ font-family:'IBM Plex Mono',monospace; font-size:11px; background:var(--teal-100); color:var(--teal-600); padding:3px 10px; border-radius:999px; }

  .currency-picker{ position:relative; display:inline-flex; align-items:center; margin-left:6px; }
  .currency-picker .cp-icon{
    position:absolute; left:12px; width:14px; height:14px; color:var(--muted-2); pointer-events:none;
  }
  .currency-picker .cp-chevron{
    position:absolute; right:11px; width:12px; height:12px; color:var(--muted-2); pointer-events:none;
  }
  .currency-select{
    appearance:none; -webkit-appearance:none; -moz-appearance:none;
    font-family:'IBM Plex Mono',monospace; font-size:12.5px; font-weight:600; color:var(--ink);
    background:var(--paper); border:1px solid var(--line-strong); border-radius:999px;
    padding:8px 30px 8px 32px; cursor:pointer; min-width:212px;
    transition:border-color .15s var(--ease);
  }
  .currency-select:hover{ border-color:var(--primary); }
  .currency-note{
    text-align:center; font-size:12px; color:var(--muted-2); margin:0 0 44px;
  }

  .packages-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:stretch; }
  .price-card{
    background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-m);
    padding:34px 28px; display:flex; flex-direction:column;
    box-shadow:var(--shadow-card); position:relative;
  }
  .price-card.featured{ border-color:var(--teal); box-shadow:0 24px 54px -22px rgba(83,193,174,0.4); }
  .price-badge{
    position:absolute; top:-13px; left:28px; background:var(--teal); color:#fff;
    font-size:11px; font-weight:700; padding:5px 12px; border-radius:999px;
    font-family:'IBM Plex Mono',monospace; letter-spacing:0.03em;
  }
  .price-name{ font-size:15px; font-weight:700; margin-bottom:6px; }
  .price-desc{ font-size:13.5px; color:var(--muted); margin-bottom:22px; min-height:38px; line-height:1.5; }
  .price-amount{ display:flex; align-items:baseline; gap:6px; }
  .price-amount .num{ font-family:'IBM Plex Mono',monospace; font-size:32px; font-weight:700; }
  .price-amount .per{ font-size:12.5px; color:var(--muted-2); }
  .price-note{ font-size:12px; color:var(--muted-2); margin:6px 0 24px; }
  .price-cta{ width:100%; margin-bottom:28px; }
  .price-features{ display:flex; flex-direction:column; gap:13px; margin:0; padding:0; list-style:none; }
  .price-features li{ display:flex; gap:10px; font-size:13.8px; color:var(--ink); align-items:flex-start; line-height:1.4; }
  .price-features svg{ width:16px; height:16px; flex-shrink:0; margin-top:2px; color:var(--teal-600); }

  @media (max-width:900px){
    .packages-grid{ grid-template-columns:1fr; max-width:420px; margin:0 auto; }
    .price-card.featured{ order:-1; }
  }

  /* ---------- Testimonials (card carousel, loops last → first) ---------- */
  .testi-slider{ position:relative; max-width:1180px; margin:0 auto; }
  .testi-viewport{ position:relative; }
  .testi-track{ overflow:hidden; border-radius:var(--radius-m); }
  .testi-slides{ display:flex; gap:24px; align-items:stretch; transition:transform .5s var(--ease); }
  .testi-card{
    background:var(--paper);
    border:1px solid var(--line);
    border-radius:var(--radius-m);
    padding:30px;
    display:flex; flex-direction:column;
    min-width:0;
    box-sizing:border-box;
  }
  .testi-quote-mark{
    font-family:'IBM Plex Mono',monospace;
    font-size:32px; color:var(--teal); line-height:1; margin-bottom:10px; display:block;
  }
  .testi-card p{ font-size:15px; line-height:1.6; color:var(--ink); flex:1; }
  .testi-person{ display:flex; align-items:center; gap:12px; margin-top:22px; }
  .testi-person img{ width:44px; height:44px; border-radius:50%; object-fit:cover; flex-shrink:0; }
  .testi-person .n{ font-size:14px; font-weight:700; }
  .testi-person .r{ font-size:12.5px; color:var(--muted-2); }

  /* Arrows sit at the left/right edges of the card row, vertically centered */
  .testi-arrow{
    width:40px; height:40px; border-radius:50%;
    border:1px solid var(--line-strong); background:var(--paper);
    display:flex; align-items:center; justify-content:center;
    transition:border-color .15s var(--ease), transform .15s var(--ease), box-shadow .15s var(--ease);
    flex-shrink:0;
    position:absolute; top:50%; z-index:3;
    box-shadow:var(--shadow-card);
  }
  .testi-arrow-left{ left:0; transform:translate(-50%,-50%); }
  .testi-arrow-right{ right:0; transform:translate(50%,-50%); }
  .testi-arrow-left:hover{ transform:translate(-50%,-50%) translateY(-2px); }
  .testi-arrow-right:hover{ transform:translate(50%,-50%) translateY(-2px); }
  .testi-arrow:hover{ border-color:var(--primary); color:var(--primary); }
  .testi-arrow svg{ width:16px; height:16px; }

  .testi-controls{ display:flex; align-items:center; justify-content:center; margin-top:28px; }
  .testi-dots{ display:flex; gap:8px; }
  .testi-dot{
    width:8px; height:8px; border-radius:50%; background:var(--line-strong); border:none; padding:0;
    transition:background .2s var(--ease), transform .2s var(--ease); cursor:pointer;
  }
  .testi-dot.active{ background:var(--primary); transform:scale(1.35); }

  @media (max-width:900px){
    .testi-card p{ font-size:15.5px; }
    .testi-arrow-left{ left:-6px; }
    .testi-arrow-right{ right:-6px; }
  }
  @media (max-width:640px){
    .testi-card{ padding:26px; }
    /* Cards stack single-column here, so centering on the whole column
       looks wrong — anchor the arrows down near the dots instead. */
    .testi-arrow{ top:auto; bottom:-58px; }
    .testi-arrow-left{ left:6px; transform:none; }
    .testi-arrow-right{ right:6px; transform:none; }
    .testi-controls{ margin-top:44px; }
  }

  /* ---------- Customer logo marquee ---------- */
  .logos-caption{
    text-align:center; font-size:12px; color:var(--muted-2);
    font-family:'IBM Plex Mono',monospace; letter-spacing:0.08em; text-transform:uppercase;
    margin:56px 0 22px;
  }
  .logos-wrap{
    overflow:hidden;
    -webkit-mask-image:linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    mask-image:linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  }
  .logos-track{
    display:flex; align-items:center; gap:56px; width:max-content;
    animation:marquee 32s linear infinite;
  }
  .logos-wrap:hover .logos-track{ animation-play-state:paused; }
  .logos-track img.logo-item{
    height:50px; width:auto; flex-shrink:0;
    filter:grayscale(100%); opacity:0.55;
    transition:filter .2s var(--ease), opacity .2s var(--ease);
  }
  .logos-track img.logo-item:hover{ filter:grayscale(0%); opacity:1; }
  @keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
  @media (prefers-reduced-motion: reduce){ .logos-track{ animation:none; } }

  /* ---------- CTA banner ---------- */
  .cta-banner{
    background:var(--primary);
    border-radius:var(--radius-l);
    padding:64px 56px;
    display:flex; align-items:center; justify-content:space-between;
    gap:32px;
    position:relative;
    overflow:hidden;
  }
  .cta-banner::before{
    content:"";
    position:absolute; inset:0;
    background-image: repeating-linear-gradient(to bottom, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 26px);
  }
  .cta-banner > *{ position:relative; z-index:1; }
  .cta-banner h2{ color:#fff; font-size:clamp(26px,3vw,36px); max-width:460px; }
  .cta-banner p{ color:rgba(255,255,255,0.75); margin-top:12px; font-size:15.5px; }
  .cta-banner .btn-primary{ background:var(--teal); color:var(--ink); box-shadow:0 10px 24px -10px rgba(0,0,0,0.35); }
  .cta-banner .btn-primary:hover{ background:#67d0bd; }
  .cta-banner .btn-ghost{ border-color:rgba(255,255,255,0.35); color:#fff; }
  .cta-banner .btn-ghost:hover{ border-color:#fff; color:#fff; }

  @media (max-width:760px){
    .cta-banner{ flex-direction:column; align-items:flex-start; padding:44px 28px; }
  }

  /* ---------- Contact ---------- */
  .contact-wrap{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:64px; align-items:start; }
  .contact-detail{ display:flex; gap:14px; align-items:flex-start; margin-top:22px; }
  .contact-detail .ci-icon{
    width:38px; height:38px; border-radius:10px; background:var(--primary-100); color:var(--primary);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .contact-detail svg{ width:18px; height:18px; }
  .contact-detail .ci-label{ font-size:11px; color:var(--muted-2); text-transform:uppercase; letter-spacing:0.06em; font-family:'IBM Plex Mono',monospace; }
  .contact-detail .ci-value{ font-size:15px; font-weight:600; margin-top:2px; }

  .contact-form{ background:var(--paper-soft); border:1px solid var(--line); border-radius:var(--radius-m); padding:32px; }
  .form-row{ display:flex; flex-direction:column; gap:7px; margin-bottom:18px; }
  .form-row label{ font-size:13px; font-weight:600; color:var(--ink); }
  .form-row input, .form-row textarea{
    font-family:'Sora',sans-serif; font-size:14.5px; padding:12px 14px;
    border:1px solid var(--line-strong); border-radius:10px; background:#fff; color:var(--ink);
    resize:vertical;
  }
  .form-row input::placeholder, .form-row textarea::placeholder{ color:var(--muted-2); }
  .form-row input:focus, .form-row textarea:focus{ outline:2.5px solid var(--primary); outline-offset:1px; border-color:var(--primary); }
  .form-success{
    display:none; align-items:center; gap:10px; background:var(--teal-100); color:var(--teal-600);
    padding:14px 16px; border-radius:12px; font-size:13.8px; font-weight:600; margin-top:4px;
  }
  .form-success.show{ display:flex; }
  .form-success svg{ width:18px; height:18px; flex-shrink:0; }

  @media (max-width:900px){
    .contact-wrap{ grid-template-columns:1fr; gap:40px; }
  }

  /* ---------- Footer ---------- */
  footer{ padding:72px 0 32px; background:var(--primary); color:#fff; }
  .footer-top{
    display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px;
    padding-bottom:52px;
  }
  footer .divider{ background:rgba(255,255,255,0.18); }
  .footer-brand .brand{ margin-bottom:14px; }
  .footer-brand p{ color:rgba(255,255,255,0.72); font-size:14px; max-width:260px; line-height:1.6; }
  .footer-col h6{ font-size:12.5px; text-transform:uppercase; letter-spacing:0.08em; color:rgba(255,255,255,0.55); margin-bottom:16px; font-family:'IBM Plex Mono',monospace; font-weight:500; }
  .footer-col ul{ display:flex; flex-direction:column; gap:11px; }
  .footer-col a{ font-size:14.5px; color:rgba(255,255,255,0.8); transition:color .15s var(--ease); }
  .footer-col a:hover{ color:var(--teal); }
  .footer-bottom{
    display:flex; justify-content:space-between; align-items:center;
    padding-top:26px; font-size:13px; color:rgba(255,255,255,0.6);
    flex-wrap:wrap; gap:12px;
  }
  .footer-social{ display:flex; gap:10px; margin-top:18px; }
  .footer-social a{
    width:35px; height:35px; border:1px solid rgba(255,255,255,0.3); border-radius:8px;
    display:flex; align-items:center; justify-content:center; color:#fff;
    transition:border-color .15s var(--ease), color .15s var(--ease);
  }
  .footer-social a:hover{ border-color:var(--teal); color:var(--teal); }
  .footer-social img{ width:30px; height:30px; }

  .powered-by{
    display:flex; align-items:center; gap:9px;
    color:rgba(255,255,255,0.6); font-size:13px;
    transition:opacity .15s var(--ease);
  }
  .powered-by:hover{ opacity:0.8; }
  .powered-by img{ height:20px; width:auto; display:block; }

  @media (max-width:760px){
    .footer-top{ grid-template-columns:1fr 1fr; }
  }
  @media (max-width:480px){
    .footer-top{ grid-template-columns:1fr; }
  }

  /* ---------- WhatsApp modal (used for packages plan enquiries) ---------- */
  .wa-modal-overlay{
    display:none;
    position:fixed; inset:0; z-index:200;
    background:rgba(10,15,20,0.55);
    align-items:center; justify-content:center;
    padding:20px;
  }
  .wa-modal-overlay.show{ display:flex; }
  .wa-modal{
    position:relative;
    background:var(--paper);
    border-radius:20px;
    padding:36px 32px 32px;
    max-width:420px; width:100%;
    text-align:center;
    box-shadow:0 40px 90px -20px rgba(0,0,0,0.45);
    animation:fadeInUp .25s var(--ease) both;
    max-height:90vh;
    overflow-y:auto;
  }
  .wa-modal-close{
    position:absolute; top:14px; right:14px;
    width:32px; height:32px; border-radius:50%;
    border:1px solid var(--line); background:var(--paper);
    display:flex; align-items:center; justify-content:center;
    color:var(--muted-2); cursor:pointer;
    transition:border-color .15s var(--ease), color .15s var(--ease);
  }
  .wa-modal-close:hover{ border-color:var(--primary); color:var(--primary); }
  .wa-modal-close svg{ width:15px; height:15px; }
  .wa-modal-icon{
    width:56px; height:56px; border-radius:50%;
    background:var(--teal-100); color:var(--teal-600);
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 18px;
  }
  .wa-modal h3{ font-size:20px; margin-bottom:8px; }
  .wa-modal-plan{
    font-family:'IBM Plex Mono',monospace; font-weight:600;
    color:var(--primary); font-size:15px; margin-bottom:14px;
  }
  .wa-modal-sub{ font-size:13.5px; color:var(--muted); line-height:1.55; margin-bottom:24px; }
  .wa-modal-form{ text-align:left; }
  .wa-modal-form .form-row{ margin-bottom:16px; }
  .wa-modal-form .form-row:last-of-type{ margin-bottom:22px; }
