/* ==========================================================================
   IBS — shared stylesheet
   Extracted verbatim from the original single-page index.html <style> block
   (Phase 1 SEO restructure) with new components appended at the bottom for
   the multi-page site: breadcrumbs, expanded footer, FAQ, pricing explainer,
   sub-page hero, about/legal prose, and the reusable page-level CTA card.
   No visual changes were made to any existing rule during extraction.
   ========================================================================== */
:root{
    --bg:#FFFFFF;
    --bg-alt:#F6F8FC;
    --ink:#0B1220;
    --body:#48536A;
    --mist:#8592A9;
    --blue:#2A5BEB;
    --blue-dark:#1E44C4;
    --blue-soft:#EDF2FF;
    --emerald:#16A369;
    --emerald-soft:#E7F8F0;
    --rust:#E0402C;
    --rust-soft:#FDECEA;
    --border:#E6EAF2;
    --border-strong:#D6DDEA;
    --radius:16px;
    --shadow-sm: 0 1px 2px rgba(15,23,42,.04);
    --shadow-md: 0 12px 32px -14px rgba(15,23,42,.14);
    --shadow-lg: 0 30px 70px -28px rgba(15,23,42,.22);
    --font-display:'Space Grotesk', system-ui, sans-serif;
    --font-body:'Inter', system-ui, sans-serif;
    --font-mono:'JetBrains Mono', ui-monospace, monospace;
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--bg);
    color:var(--ink);
    font-family:var(--font-body);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  img{max-width:100%;display:block;}
  a{color:inherit;}
  h1,h2,h3,h4{font-family:var(--font-display); margin:0; letter-spacing:-0.015em; color:var(--ink);}
  p{margin:0; color:var(--body);}
  .wrap{max-width:1180px; margin:0 auto; padding:0 24px;}
  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-family:var(--font-mono); font-size:12px; letter-spacing:.1em; text-transform:uppercase;
    color:var(--blue); font-weight:600;
    background:var(--blue-soft); padding:6px 12px; border-radius:999px;
  }
  :focus-visible{outline:2px solid var(--blue); outline-offset:3px; border-radius:4px;}

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

  /* ---------- NAV ---------- */
  header.nav{position:sticky; top:0; z-index:50; background:rgba(255,255,255,.86); backdrop-filter:blur(12px); border-bottom:1px solid var(--border);}
  .nav-inner{display:flex; align-items:center; justify-content:space-between; padding:16px 24px; max-width:1180px; margin:0 auto;}
  .brand{display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-weight:700; font-size:19px; color:var(--ink); text-decoration:none;}
  .brand .mark{width:32px; height:32px; border-radius:9px; background:linear-gradient(155deg, #4B7BFF, var(--blue) 65%); display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; font-size:12px; font-family:var(--font-mono); box-shadow:0 6px 16px -4px rgba(42,91,235,.45); transition:transform .35s ease;}
  .brand:hover .mark{ transform:rotateY(16deg) rotateX(-6deg); }
  nav.links{display:none; gap:30px; align-items:center;}
  @media (min-width:860px){ nav.links{display:flex;} }
  nav.links a{font-size:14.5px; color:var(--body); text-decoration:none; font-weight:500; transition:color .15s ease;}
  nav.links a:hover{color:var(--ink);}
  nav.links a.active{color:var(--blue);}
  .btn{display:inline-flex; align-items:center; gap:8px; padding:12px 22px; border-radius:10px; font-size:14.5px; font-weight:600; text-decoration:none; border:1px solid transparent; cursor:pointer; transition:transform .15s ease, box-shadow .15s ease, background .15s ease;}
  .btn-blue{background:var(--blue); color:#fff; box-shadow:0 10px 24px -10px rgba(42,91,235,.55);}
  .btn-blue:hover{background:var(--blue-dark); transform:translateY(-1px); box-shadow:0 14px 30px -10px rgba(42,91,235,.6);}
  .btn-ghost{background:#fff; border-color:var(--border-strong); color:var(--ink);}
  .btn-ghost:hover{border-color:var(--blue); color:var(--blue); transform:translateY(-1px);}
  .btn-wa{background:#20BD5C; color:#fff; box-shadow:0 10px 24px -10px rgba(32,189,92,.5);}
  .btn-wa:hover{background:#1AA34F; transform:translateY(-1px);}
  .nav-cta{display:none;}
  @media (min-width:860px){ .nav-cta{display:inline-flex;} }
  .nav-cta-secondary{display:none;}
  @media (min-width:1120px){ .nav-cta-secondary{display:inline-flex;} }

  /* ---------- MOBILE MENU ---------- */
  .menu-toggle{display:flex; align-items:center; justify-content:center; width:42px; height:42px; border-radius:10px; border:1px solid var(--border-strong); background:#fff; cursor:pointer; flex:none;}
  @media (min-width:860px){ .menu-toggle{display:none;} }
  .menu-toggle span{display:block; width:18px; height:2px; background:var(--ink); position:relative; transition:background .2s ease;}
  .menu-toggle span::before, .menu-toggle span::after{content:""; position:absolute; left:0; width:18px; height:2px; background:var(--ink); transition:transform .25s ease, top .25s ease, opacity .2s ease;}
  .menu-toggle span::before{top:-6px;}
  .menu-toggle span::after{top:6px;}
  .menu-toggle.open span{background:transparent;}
  .menu-toggle.open span::before{top:0; transform:rotate(45deg);}
  .menu-toggle.open span::after{top:0; transform:rotate(-45deg);}
  .mobile-menu{display:none; flex-direction:column; gap:2px; max-height:0; overflow:hidden; background:#fff; border-bottom:1px solid var(--border); transition:max-height .3s ease;}
  @media (min-width:860px){ .mobile-menu{display:none !important;} }
  .mobile-menu.open{max-height:520px;}
  .mobile-menu a{display:block; padding:14px 24px; font-size:15px; color:var(--body); text-decoration:none; font-weight:500; border-top:1px solid var(--border);}
  .mobile-menu a:hover{color:var(--blue); background:var(--bg-alt);}
  .mobile-menu .btn{margin:14px 24px 18px;}

  /* ---------- HERO ---------- */
  .hero{position:relative; padding:64px 0 56px; overflow:hidden; perspective:1400px;}
  @media (min-width:640px){ .hero{padding:88px 0 76px;} }
  .hero::before{
    content:""; position:absolute; top:-180px; right:-160px; width:640px; height:640px; border-radius:50%;
    background:radial-gradient(circle, rgba(42,91,235,.10), transparent 70%);
    pointer-events:none;
  }
  .hero::after{
    content:""; position:absolute; bottom:-200px; left:-180px; width:520px; height:520px; border-radius:50%;
    background:radial-gradient(circle, rgba(22,163,105,.08), transparent 70%);
    pointer-events:none;
  }
  .hero-grid{display:grid; grid-template-columns:1fr; gap:44px; align-items:center; position:relative; z-index:2;}
  @media (min-width:960px){ .hero-grid{grid-template-columns:1.05fr .95fr; gap:56px;} }
  .hero h1{font-size:clamp(28px, 7vw, 54px); line-height:1.14; font-weight:700; margin-top:18px;}
  .hero h1 em{font-style:normal; color:var(--blue);}
  .hero-kicker{margin-top:16px; font-size:15px; font-weight:600; color:var(--blue-dark); max-width:560px;}
  @media (min-width:640px){ .hero-kicker{font-size:16px;} }
  .hero-sub{margin-top:14px; max-width:520px; font-size:16px; color:var(--body);}
  @media (min-width:640px){ .hero-sub{font-size:17px;} }
  .hero-cta{display:flex; flex-wrap:wrap; gap:14px; margin-top:32px;}
  .hero-cta .btn{flex:1 1 auto; justify-content:center;}
  @media (min-width:520px){ .hero-cta .btn{flex:0 1 auto;} }
  .hero-badges{display:flex; flex-wrap:wrap; gap:10px 24px; margin-top:36px;}
  .hero-badge{display:flex; align-items:center; gap:8px; font-size:13px; color:var(--body); font-weight:500;}
  .hero-badge svg{color:var(--emerald); flex:none;}

  /* --- 3D phone simulator --- */
  .simulator{position:relative; display:flex; flex-direction:column; align-items:center; gap:20px; perspective:1200px; max-width:100%;}
  .ring3d{position:absolute; top:50%; left:50%; width:240px; height:240px; transform:translate(-50%,-50%) rotateX(70deg); border:1px solid rgba(42,91,235,.18); border-radius:50%; animation:spin3d 18s linear infinite; z-index:0;}
  @media (min-width:480px){ .ring3d{width:290px; height:290px;} }
  .ring3d::before{content:""; position:absolute; inset:26px; border-radius:50%; border:1px solid rgba(22,163,105,.16);}
  @keyframes spin3d{ from{ transform:translate(-50%,-50%) rotateX(70deg) rotateZ(0deg);} to{ transform:translate(-50%,-50%) rotateX(70deg) rotateZ(360deg);} }
  .phone-stage{ position:relative; z-index:1; transform-style:preserve-3d; }
  .phone{width:180px; height:360px; border-radius:30px; background:linear-gradient(160deg, #1B2436, #0E1520); border:6px solid #060A12; box-shadow:0 45px 80px -28px rgba(15,23,42,.35), 0 4px 0 rgba(255,255,255,.05) inset; position:relative; overflow:hidden; transform-style:preserve-3d; transition:transform .15s ease-out, background .5s ease; will-change:transform;}
  @media (min-width:480px){ .phone{width:214px; height:428px; border-radius:34px;} }
  .phone .notch{position:absolute; top:0; left:50%; transform:translateX(-50%); width:70px; height:18px; background:#060A12; border-radius:0 0 12px 12px; z-index:3;}
  .phone-screen{position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:22px 14px; text-align:center; transition:background .5s ease, filter .5s ease;}
  @media (min-width:480px){ .phone-screen{padding:26px 16px;} }
  .phone.paid .phone-screen{ background:linear-gradient(165deg, #123522, #0E1520 74%); }
  .phone.overdue .phone-screen{ background:linear-gradient(165deg, #3A1712, #0E1520 74%); filter:saturate(1.1); }
  .phone-clock{font-family:var(--font-display); font-size:30px; font-weight:600; color:#fff;}
  @media (min-width:480px){ .phone-clock{font-size:36px;} }
  .phone-date{font-family:var(--font-mono); font-size:10px; color:#93A2BC; margin-top:4px;}
  .phone-msg{margin-top:20px; font-family:var(--font-body); font-size:11.5px; line-height:1.5; color:#C9D2E0;}
  @media (min-width:480px){ .phone-msg{margin-top:24px; font-size:12.5px;} }
  .phone-urdu{margin-top:8px; font-size:14px; color:#7FB4FF; font-weight:600; direction:rtl;}
  @media (min-width:480px){ .phone-urdu{font-size:15px;} }
  .lock-pill{margin-top:18px; display:inline-flex; align-items:center; gap:6px; font-family:var(--font-mono); font-size:10px; letter-spacing:.05em; padding:6px 12px; border-radius:999px; transition:background .4s ease, color .4s ease;}
  @media (min-width:480px){ .lock-pill{margin-top:20px; font-size:10.5px;} }
  .phone.paid .lock-pill{ background:rgba(22,163,105,.22); color:#5EE3A6; }
  .phone.overdue .lock-pill{ background:rgba(224,64,44,.22); color:#FF9E8C; }
  .lock-badge{position:absolute; top:18px; right:16px; width:32px; height:32px; border-radius:10px; display:flex; align-items:center; justify-content:center; background:rgba(224,64,44,.2); color:#FF9E8C; opacity:0; transform:scale(.6) rotate(-8deg); transition:opacity .35s ease, transform .35s ease;}
  .phone.overdue .lock-badge{ opacity:1; transform:scale(1) rotate(0deg); }
  .sim-toggle{display:flex; background:#fff; border:1px solid var(--border-strong); border-radius:999px; padding:4px; gap:4px; box-shadow:var(--shadow-sm);}
  .sim-toggle button{font-family:var(--font-mono); font-size:11px; letter-spacing:.03em; padding:8px 14px; border-radius:999px; border:none; background:transparent; color:var(--mist); cursor:pointer; transition:background .2s ease, color .2s ease;}
  @media (min-width:480px){ .sim-toggle button{font-size:11.5px; padding:8px 16px;} }
  .sim-toggle button.active-paid{background:var(--emerald); color:#fff;}
  .sim-toggle button.active-overdue{background:var(--rust); color:#fff;}
  .sim-caption{font-size:12px; color:var(--mist); text-align:center; max-width:230px;}

  /* ---------- SECTION SHELL ---------- */
  section{padding:56px 0;}
  @media (min-width:640px){ section{padding:88px 0;} }
  .alt{background:var(--bg-alt);}
  .section-head{max-width:640px; margin-bottom:36px;}
  @media (min-width:640px){ .section-head{margin-bottom:52px;} }
  .section-head h2{font-size:clamp(24px,5.5vw,36px); margin-top:14px;}
  .section-head p{margin-top:14px; color:var(--body); font-size:15px;}
  @media (min-width:640px){ .section-head p{font-size:16px;} }

  .card{background:#fff; border:1px solid var(--border); border-radius:var(--radius); box-shadow:var(--shadow-sm);}

  /* ---------- FEATURES ---------- */
  .feature-grid{display:grid; grid-template-columns:1fr; gap:14px; perspective:1200px;}
  @media (min-width:520px){ .feature-grid{grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:16px;} }
  .feature{padding:22px 20px; transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease; will-change:transform;}
  @media (min-width:640px){ .feature{padding:26px 24px;} }
  .feature:hover{border-color:#C9D6FA; box-shadow:var(--shadow-md);}
  .feature .fi{width:40px; height:40px; border-radius:10px; background:var(--blue-soft); display:flex; align-items:center; justify-content:center; color:var(--blue); margin-bottom:16px;}
  .feature h3{font-size:16px; font-weight:600;}
  .feature p{margin-top:8px; font-size:13.5px;}
  .feature .more{display:inline-flex; align-items:center; gap:4px; margin-top:12px; font-size:12.5px; font-weight:600; color:var(--blue); text-decoration:none;}
  .feature .more:hover{color:var(--blue-dark);}

  /* ---------- DASHBOARD SHOWCASE ---------- */
  .showcase{display:grid; grid-template-columns:1fr; gap:32px; align-items:center;}
  @media (min-width:980px){ .showcase{grid-template-columns:.85fr 1.15fr; gap:40px;} }
  .showcase-copy p{margin-top:14px; font-size:15px;}
  .showcase-list{list-style:none; margin:24px 0 0; padding:0; display:flex; flex-direction:column; gap:12px;}
  .showcase-list li{display:flex; gap:10px; align-items:flex-start; font-size:14px; color:var(--body);}
  .showcase-list li svg{flex:none; margin-top:3px; color:var(--emerald);}

  .browser-frame{border-radius:14px; overflow:hidden; border:1px solid var(--border); box-shadow:var(--shadow-lg); background:#fff; max-width:100%;}
  .browser-bar{display:flex; align-items:center; gap:10px; padding:11px 14px; background:#F1F4FA; border-bottom:1px solid var(--border);}
  .browser-dots{display:flex; gap:6px;}
  .browser-dots span{width:9px; height:9px; border-radius:50%; background:#D3DAE7;}
  .browser-url{flex:1; background:#fff; border:1px solid var(--border); border-radius:6px; padding:5px 12px; font-family:var(--font-mono); font-size:11px; color:var(--mist); overflow:hidden; text-overflow:ellipsis; white-space:nowrap;}
  .dash-mock{display:grid; grid-template-columns:1fr; min-height:auto; background:#fff;}
  @media (min-width:560px){ .dash-mock{grid-template-columns:150px 1fr;} }
  .dash-side{background:#0E1826; padding:14px 14px; display:none; flex-direction:column; gap:2px;}
  @media (min-width:560px){ .dash-side{display:flex;} }
  .dash-side .dlogo{display:flex; align-items:center; gap:8px; margin-bottom:18px;}
  .dash-side .dlogo .sq{width:26px; height:26px; border-radius:7px; background:linear-gradient(135deg, #4B7BFF, var(--emerald));}
  .dash-side .dlogo span{font-family:var(--font-mono); font-size:11px; color:#B9C4D8; font-weight:600;}
  .dash-side .grp{font-family:var(--font-mono); font-size:9px; letter-spacing:.1em; color:#5D6C82; text-transform:uppercase; margin:12px 0 6px;}
  .dash-side .item{font-size:11.5px; color:#9FB0C4; padding:7px 9px; border-radius:7px; display:flex; align-items:center; gap:8px;}
  .dash-side .item.active{background:rgba(75,123,255,.18); color:#8FB4FF; font-weight:600;}
  .dash-side .item .ic{width:6px; height:6px; border-radius:2px; background:currentColor; opacity:.7;}
  .dash-main{padding:18px 16px; background:var(--bg-alt);}
  @media (min-width:480px){ .dash-main{padding:22px 24px;} }
  .dash-main h4{font-size:15px;}
  .dash-main .sub{font-size:11px; color:var(--mist); margin-top:2px;}
  .dash-kpis{display:grid; grid-template-columns:repeat(2,1fr); gap:8px; margin-top:16px;}
  @media (min-width:420px){ .dash-kpis{grid-template-columns:repeat(4,1fr);} }
  .dash-kpis .k{background:#fff; border:1px solid var(--border); border-radius:10px; padding:9px 10px;}
  @media (min-width:480px){ .dash-kpis .k{padding:10px 12px;} }
  .dash-kpis .k .lbl{font-family:var(--font-mono); font-size:8px; text-transform:uppercase; letter-spacing:.04em; color:var(--mist); white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
  @media (min-width:480px){ .dash-kpis .k .lbl{font-size:8.5px; letter-spacing:.06em;} }
  .dash-kpis .k .v{font-family:var(--font-display); font-size:15px; font-weight:700; margin-top:3px;}
  @media (min-width:480px){ .dash-kpis .k .v{font-size:17px;} }
  .dash-chart{margin-top:14px; background:#fff; border:1px solid var(--border); border-radius:10px; padding:14px; height:100px; position:relative; overflow:hidden;}
  @media (min-width:480px){ .dash-chart{height:110px;} }
  .dash-chart .lbl{font-size:11px; font-weight:600;}
  .dash-chart svg{margin-top:6px;}

  /* ---------- HOW IT WORKS ---------- */
  .steps{display:grid; grid-template-columns:1fr; gap:0;}
  @media (min-width:860px){ .steps{grid-template-columns:repeat(3,1fr); gap:28px;} }
  .step{position:relative; padding:22px 4px; border-bottom:1px solid var(--border);}
  .step:last-child{border-bottom:none;}
  @media (min-width:860px){ .step{border-bottom:none; padding:0;} }
  .step-num{font-family:var(--font-mono); font-size:13px; color:var(--blue); font-weight:600; display:flex; align-items:center; gap:10px; margin-bottom:14px;}
  .step-num .ln{height:1px; flex:1; background:var(--border-strong);}
  .step h3{font-size:17px;}
  @media (min-width:480px){ .step h3{font-size:18px;} }
  .step p{margin-top:10px; font-size:14px;}

  /* ---------- NETWORK ---------- */
  .hier{display:grid; gap:16px; perspective:1200px;}
  @media (min-width:760px){ .hier{grid-template-columns:repeat(3,1fr);} }
  .hier-card{padding:24px; transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease; will-change:transform;}
  @media (min-width:480px){ .hier-card{padding:28px;} }
  .hier-card:hover{border-color:#BEE7D3; box-shadow:var(--shadow-md);}
  .hier-card .lvl{font-family:var(--font-mono); font-size:11px; color:var(--emerald); letter-spacing:.08em; text-transform:uppercase; font-weight:600;}
  .hier-card h3{margin-top:10px; font-size:18px;}
  .hier-card p{margin-top:10px; font-size:14px;}
  .hier-card .more{display:inline-flex; align-items:center; gap:4px; margin-top:14px; font-size:12.5px; font-weight:600; color:var(--blue); text-decoration:none;}

  /* ---------- PRICING ---------- */
  .price-grid{display:grid; gap:20px; grid-template-columns:1fr; perspective:1200px;}
  @media (min-width:860px){ .price-grid{grid-template-columns:repeat(3,1fr);} }
  .price-card{padding:28px 22px; display:flex; flex-direction:column; position:relative; transition:transform .22s ease, box-shadow .22s ease;}
  @media (min-width:480px){ .price-card{padding:32px 26px;} }
  .price-card.featured{border-color:#C9D6FA; box-shadow:var(--shadow-md); background:linear-gradient(180deg, var(--blue-soft), #fff 45%);}
  .price-card.featured::before{content:"MOST CHOSEN"; position:absolute; top:-11px; left:26px; background:var(--blue); color:#fff; font-family:var(--font-mono); font-size:10px; letter-spacing:.08em; padding:4px 10px; border-radius:999px;}
  .price-name{font-family:var(--font-mono); font-size:12px; color:var(--blue); letter-spacing:.08em; text-transform:uppercase; font-weight:600;}
  .price-amt{font-family:var(--font-display); font-size:30px; margin-top:10px; font-weight:700;}
  @media (min-width:480px){ .price-amt{font-size:32px;} }
  .price-amt span{font-family:var(--font-mono); font-size:13px; color:var(--mist); font-weight:400;}
  .price-desc{margin-top:8px; font-size:13.5px;}
  .price-list{list-style:none; margin:22px 0 0; padding:0; display:flex; flex-direction:column; gap:10px; flex:1;}
  .price-list li{font-size:13.5px; color:var(--body); display:flex; gap:10px; align-items:flex-start;}
  .price-list li svg{flex:none; margin-top:2px; color:var(--emerald);}
  .price-card .btn{margin-top:24px; justify-content:center;}
  .price-note{margin-top:20px; font-size:12.5px; color:var(--mist); text-align:center;}

  /* ---------- CONTACT ---------- */
  .contact-panel{padding:30px 22px; display:grid; gap:28px;}
  @media (min-width:480px){ .contact-panel{padding:38px;} }
  @media (min-width:860px){ .contact-panel{grid-template-columns:1.1fr .9fr; padding:56px; gap:34px;} }
  .contact-panel h2{font-size:clamp(22px,5vw,32px);}
  .contact-panel > div:first-child p{margin-top:14px; font-size:15px; max-width:420px;}
  .contact-methods{display:flex; flex-direction:column; gap:14px;}
  .contact-method{display:flex; align-items:center; gap:14px; border:1px solid var(--border-strong); border-radius:12px; padding:16px 18px; text-decoration:none; color:var(--ink); background:#fff; transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;}
  .contact-method:hover{border-color:var(--blue); box-shadow:var(--shadow-sm); transform:translateX(4px);}
  .contact-method .ci{width:38px; height:38px; border-radius:10px; background:var(--blue-soft); display:flex; align-items:center; justify-content:center; color:var(--blue); flex:none;}
  .contact-method .cl{font-family:var(--font-mono); font-size:11px; color:var(--mist); letter-spacing:.06em; text-transform:uppercase;}
  .contact-method .cv{font-size:15px; font-weight:600; margin-top:2px; word-break:break-word;}

  /* ---------- FOOTER ---------- */
  footer.site-footer{border-top:1px solid var(--border); background:var(--bg-alt); padding:48px 0 0;}
  .footer-grid{display:grid; grid-template-columns:1.4fr repeat(4,1fr); gap:32px 24px;}
  @media (max-width:860px){ .footer-grid{grid-template-columns:repeat(2,1fr);} }
  @media (max-width:480px){ .footer-grid{grid-template-columns:1fr;} }
  .footer-grid .fbrand{display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-weight:700; font-size:17px; text-decoration:none; color:var(--ink);}
  .footer-grid .fmark{width:28px; height:28px; border-radius:8px; background:linear-gradient(155deg, #4B7BFF, var(--blue)); flex:none;}
  .footer-grid .fdesc{margin-top:12px; font-size:13px; max-width:280px;}
  .footer-grid .floc{margin-top:14px; font-size:12.5px; color:var(--mist); display:flex; align-items:center; gap:6px;}
  .footer-col h5{font-family:var(--font-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--mist); font-weight:600; margin-bottom:14px;}
  .footer-col ul{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px;}
  .footer-col a{font-size:13.5px; color:var(--body); text-decoration:none;}
  .footer-col a:hover{color:var(--blue);}
  .footer-social{display:flex; gap:10px; margin-top:16px;}
  .footer-social a{width:34px; height:34px; border-radius:9px; border:1px solid var(--border-strong); background:#fff; display:flex; align-items:center; justify-content:center; color:var(--body); text-decoration:none; transition:border-color .15s ease, color .15s ease;}
  .footer-social a:hover{border-color:var(--blue); color:var(--blue);}
  .footer-bottom{margin-top:40px; padding:22px 0; border-top:1px solid var(--border); display:flex; flex-wrap:wrap; gap:12px 20px; align-items:center; justify-content:space-between;}
  .footer-bottom p{font-size:12.5px; color:var(--mist);}
  .foot-links{display:flex; gap:22px; flex-wrap:wrap;}
  .foot-links a{font-size:12.5px; color:var(--mist); text-decoration:none;}
  .foot-links a:hover{color:var(--ink);}

  .wa-float{position:fixed; bottom:18px; right:18px; z-index:60; width:52px; height:52px; border-radius:50%; background:#20BD5C; display:flex; align-items:center; justify-content:center; box-shadow:0 14px 30px -8px rgba(32,189,92,.55); text-decoration:none; color:#fff; transition:transform .2s ease;}
  @media (min-width:640px){ .wa-float{bottom:22px; right:22px; width:56px; height:56px;} }
  .wa-float:hover{transform:scale(1.08) translateY(-2px);}

  .reveal{opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease;}
  .reveal.in{opacity:1; transform:translateY(0);}
  /* No-JS fallback lives in each page's <head> as a <noscript><style> override
     (see /assets/js/site.js comment) — guarantees .reveal content is visible
     when JavaScript cannot run, without changing the JS-driven animation. */

  /* ---------- SIGNUP FORM ---------- */
  .perk-banner{display:flex; flex-wrap:wrap; gap:12px 20px; align-items:center; justify-content:center; background:var(--blue-soft); border:1px solid #C9D6FA; border-radius:var(--radius); padding:16px 20px; margin-bottom:28px;}
  @media (min-width:640px){ .perk-banner{gap:14px 28px; padding:20px 26px; margin-bottom:36px;} }
  .perk-item{display:flex; align-items:center; gap:10px; font-size:13px; font-weight:600; color:var(--blue-dark);}
  @media (min-width:640px){ .perk-item{font-size:14px;} }
  .perk-item svg{flex:none;}
  .form-card{padding:24px 20px; max-width:820px; margin:0 auto;}
  @media (min-width:640px){ .form-card{padding:36px;} }
  .form-grid{display:grid; grid-template-columns:1fr 1fr; gap:20px;}
  @media (max-width:640px){ .form-grid{grid-template-columns:1fr; gap:16px;} }
  .field{display:flex; flex-direction:column; gap:7px;}
  .field-full{grid-column:1 / -1;}
  .field label{font-family:var(--font-mono); font-size:11.5px; letter-spacing:.05em; text-transform:uppercase; color:var(--mist); font-weight:600;}
  .field label .req{color:var(--rust);}
  .field input[type="text"], .field input[type="email"], .field input[type="tel"], .field textarea{
    padding:12px 14px; border:1px solid var(--border-strong); border-radius:10px;
    font-family:var(--font-body); font-size:16px; color:var(--ink); background:#fff;
    transition:border-color .15s ease, box-shadow .15s ease; width:100%;
  }
  @media (min-width:640px){ .field input[type="text"], .field input[type="email"], .field input[type="tel"], .field textarea{ font-size:14.5px; } }
  .field textarea{resize:vertical; min-height:90px;}
  .field input:focus, .field textarea:focus{outline:none; border-color:var(--blue); box-shadow:0 0 0 3px rgba(42,91,235,.12);}
  .color-row{display:flex; align-items:center; gap:12px;}
  .color-row input[type="color"]{width:52px; height:44px; padding:2px; border:1px solid var(--border-strong); border-radius:10px; cursor:pointer; background:#fff;}
  .color-hex{font-family:var(--font-mono); font-size:13px; color:var(--mist);}
  .file-drop{border:1.5px dashed var(--border-strong); border-radius:12px; padding:20px; text-align:center; background:var(--bg-alt); position:relative;}
  @media (min-width:480px){ .file-drop{padding:22px;} }
  .file-drop input[type="file"]{position:absolute; inset:0; opacity:0; cursor:pointer; width:100%; height:100%;}
  .file-drop-label{font-size:13px; color:var(--body);}
  @media (min-width:480px){ .file-drop-label{font-size:13.5px;} }
  .file-drop-label strong{color:var(--blue);}
  .form-submit{margin-top:8px; width:100%; justify-content:center; padding:14px 22px; font-size:15px;}
  .form-legal{margin-top:14px; font-size:12px; color:var(--mist); text-align:center;}
  .hp-field{position:absolute; left:-9999px; width:1px; height:1px; opacity:0;}

  /* ==========================================================================
     NEW — Phase 1 multi-page components (added, nothing above this line was
     visually altered from the original single-page stylesheet)
     ========================================================================== */

  /* Breadcrumbs */
  .breadcrumb{padding:18px 0 0;}
  .breadcrumb ol{list-style:none; margin:0; padding:0; display:flex; flex-wrap:wrap; gap:6px; font-family:var(--font-mono); font-size:12px; color:var(--mist);}
  .breadcrumb a{color:var(--mist); text-decoration:none;}
  .breadcrumb a:hover{color:var(--blue);}
  .breadcrumb li[aria-current="page"]{color:var(--body);}
  .breadcrumb li:not(:last-child)::after{content:"/"; margin-left:6px; color:var(--border-strong);}
  .breadcrumb li{display:flex;}

  /* Sub-page hero (shorter than the homepage hero) */
  .page-hero{padding:28px 0 8px;}
  .page-hero .eyebrow{margin-bottom:2px;}
  .page-hero h1{font-size:clamp(28px,5.5vw,42px); margin-top:14px; line-height:1.15;}
  .page-hero .lede{margin-top:16px; font-size:16px; max-width:660px; color:var(--body);}
  @media (min-width:640px){ .page-hero .lede{font-size:17px;} }

  /* Prose (about / legal pages) */
  .prose{max-width:720px;}
  .prose h2{font-size:20px; margin-top:36px; margin-bottom:12px;}
  .prose h2:first-child{margin-top:0;}
  .prose p{margin-top:12px; font-size:15px;}
  .prose ul{margin:12px 0 0; padding-left:20px; display:flex; flex-direction:column; gap:8px;}
  .prose ul li{font-size:15px; color:var(--body);}
  .prose strong{color:var(--ink);}
  .legal-note{display:flex; gap:12px; background:var(--blue-soft); border:1px solid #C9D6FA; border-radius:12px; padding:16px 18px; margin-bottom:8px; font-size:13.5px; color:var(--ink);}
  .legal-updated{font-family:var(--font-mono); font-size:12px; color:var(--mist); margin-top:8px;}

  /* Team / trust grid on About */
  .people-grid{display:grid; grid-template-columns:1fr; gap:14px; margin-top:20px;}
  @media (min-width:560px){ .people-grid{grid-template-columns:1fr 1fr;} }
  .person-card{padding:20px;}
  .person-card .role{font-family:var(--font-mono); font-size:11px; letter-spacing:.06em; text-transform:uppercase; color:var(--blue); font-weight:600;}
  .person-card h3{margin-top:8px; font-size:17px;}
  .trust-card{margin-top:28px; padding:22px 24px; display:flex; gap:14px; align-items:flex-start;}
  .trust-card .ti{width:38px; height:38px; border-radius:10px; background:var(--emerald-soft); color:var(--emerald); display:flex; align-items:center; justify-content:center; flex:none;}
  .trust-card p{font-size:14.5px; color:var(--ink);}

  /* FAQ */
  .faq-list{display:flex; flex-direction:column; gap:12px; max-width:820px;}
  .faq-item{padding:0; overflow:hidden;}
  .faq-item summary{list-style:none; cursor:pointer; padding:18px 22px; font-family:var(--font-display); font-size:15.5px; font-weight:600; display:flex; align-items:center; justify-content:space-between; gap:16px;}
  .faq-item summary::-webkit-details-marker{display:none;}
  .faq-item summary .plus{flex:none; width:22px; height:22px; border-radius:6px; background:var(--blue-soft); color:var(--blue); display:flex; align-items:center; justify-content:center; font-size:15px; transition:transform .2s ease;}
  .faq-item[open] summary .plus{transform:rotate(45deg);}
  .faq-item .faq-a{padding:0 22px 20px; font-size:14.5px; color:var(--body); max-width:680px;}
  .faq-item .faq-a a{color:var(--blue); text-decoration:underline; text-decoration-color:var(--border-strong);}

  /* Pricing explainer (no invented numbers) */
  .pricing-explainer{padding:34px 26px; max-width:760px; margin:0 auto;}
  @media (min-width:640px){ .pricing-explainer{padding:42px;} }
  .pricing-explainer .price-name{margin-bottom:2px;}
  .pricing-explainer h2{font-size:24px; margin-top:10px;}
  .pricing-explainer > p{margin-top:12px; font-size:15px;}
  .key-steps{list-style:none; margin:26px 0 0; padding:0; display:flex; flex-direction:column; gap:16px;}
  .key-steps li{display:flex; gap:14px; align-items:flex-start;}
  .key-steps .num{font-family:var(--font-mono); font-size:12px; font-weight:700; color:#fff; background:var(--blue); width:26px; height:26px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex:none;}
  .key-steps .kt{font-size:14.5px; color:var(--ink); font-weight:600;}
  .key-steps .kd{font-size:13.5px; color:var(--body); margin-top:3px;}

  /* Page-level closing CTA card, reused across sub-pages */
  .page-cta{margin-top:8px; padding:30px 24px; text-align:center; background:linear-gradient(180deg, var(--blue-soft), #fff 55%);}
  @media (min-width:640px){ .page-cta{padding:40px 32px;} }
  .page-cta h2{font-size:clamp(20px,4vw,28px);}
  .page-cta p{margin-top:10px; font-size:14.5px; max-width:520px; margin-left:auto; margin-right:auto;}
  .page-cta .cta-row{display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-top:22px;}
  .page-cta .cross-links{margin-top:20px; display:flex; flex-wrap:wrap; gap:8px 18px; justify-content:center; font-size:13px;}
  .page-cta .cross-links a{color:var(--blue); text-decoration:none; font-weight:600;}
  .page-cta .cross-links a:hover{text-decoration:underline;}

  /* Simple content list used on Features/For index pages */
  .link-grid{display:grid; grid-template-columns:1fr; gap:14px; margin-top:8px;}
  @media (min-width:560px){ .link-grid{grid-template-columns:repeat(2,1fr);} }
  .link-card{display:block; padding:22px; text-decoration:none; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;}
  .link-card:hover{border-color:#C9D6FA; box-shadow:var(--shadow-md); transform:translateY(-2px);}
  .link-card .fi{width:40px; height:40px; border-radius:10px; background:var(--blue-soft); display:flex; align-items:center; justify-content:center; color:var(--blue); margin-bottom:14px;}
  .link-card h3{font-size:16px; color:var(--ink);}
  .link-card p{margin-top:8px; font-size:13.5px; color:var(--body);}
  .link-card .go{display:inline-flex; align-items:center; gap:4px; margin-top:12px; font-size:12.5px; font-weight:600; color:var(--blue);}

  /* Blog placeholder */
  .blog-empty{padding:40px 26px; text-align:center; max-width:640px; margin:0 auto;}
  @media (min-width:640px){ .blog-empty{padding:52px;} }
  .blog-empty .fi{width:48px; height:48px; border-radius:12px; background:var(--blue-soft); color:var(--blue); display:flex; align-items:center; justify-content:center; margin:0 auto 18px;}
  .blog-empty h2{font-size:22px;}
  .blog-empty p{margin-top:12px; font-size:14.5px;}
  .blog-topics{list-style:none; margin:22px 0 0; padding:0; display:flex; flex-wrap:wrap; gap:8px; justify-content:center;}
  .blog-topics li{font-family:var(--font-mono); font-size:12px; color:var(--blue-dark); background:var(--blue-soft); border:1px solid #C9D6FA; padding:6px 12px; border-radius:999px;}
