:root{
    --navy:#14213D; --navy-2:#1d2f52; --orange:#FCA311; --orange-deep:#e8940a;
    --ink:#1c2433; --muted:#5c6572; --line:#e4e8ef; --soft:#f6f8fb; --sand:#fbf4e7;
    --card:#fff; --card-2:#fff;
    --radius:16px; --maxw:1120px;
  }
  *{ box-sizing:border-box; margin:0; padding:0; }
  html{ scroll-behavior:smooth; }
  body{ font-family:"Inter",-apple-system,Segoe UI,Roboto,Arial,sans-serif; color:var(--ink); background:#fff; line-height:1.6; -webkit-font-smoothing:antialiased; }
  h1,h2,h3,.brand{ font-family:"Sora","Inter",sans-serif; letter-spacing:-.01em; }
  a{ color:inherit; text-decoration:none; }
  img{ max-width:100%; display:block; }
  .wrap{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }
  .btn{ display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:15px; padding:13px 22px; white-space:nowrap; border-radius:11px; cursor:pointer; border:0; transition:transform .08s ease, box-shadow .2s ease, background .2s ease; }
  .nav-cta{ padding:11px 18px; font-size:14.5px; }
  .btn-primary{ background:var(--orange); color:var(--navy); box-shadow:0 6px 18px rgba(252,163,17,.28); }
  .btn-primary:hover{ background:var(--orange-deep); }
  .btn-ghost{ background:transparent; color:var(--navy); border:1.5px solid var(--line); }
  .btn-ghost:hover{ border-color:var(--navy); }
  .btn-light{ background:rgba(255,255,255,.12); color:#fff; border:1.5px solid rgba(255,255,255,.28); }
  .btn-light:hover{ background:rgba(255,255,255,.2); }
  .btn-wa{ background:#25D366; color:#0b3d24; border:0; }
  .btn-wa:hover{ background:#1fbb59; }
  .eyebrow{ font-size:12.5px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--orange-deep); }

  /* NAV */
  header.nav{ position:sticky; top:0; z-index:50; background:rgba(255,255,255,.86); backdrop-filter:blur(10px); border-bottom:1px solid var(--line); }
  .nav-inner{ display:flex; align-items:center; gap:18px; height:66px; }
  .logo{ display:flex; align-items:center; gap:10px; font-weight:800; }
  .logo .mark{ width:34px; height:34px; border-radius:8px; background:var(--navy); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:17px; }
  .logo .mark span{ color:var(--orange); }
  .logo img.mark{ object-fit:cover; }
  .logo .txt{ font-size:17px; color:var(--navy); }
  .logo .txt em{ color:var(--orange); font-style:normal; }
  .nav-links{ display:flex; gap:18px; margin-left:auto; }
  .nav-links a{ font-size:14px; font-weight:600; color:var(--muted); white-space:nowrap; }
  .nav-links a:hover{ color:var(--navy); }
  .nav-right{ display:flex; align-items:center; gap:10px; margin-left:16px; flex:0 0 auto; }
  /* language switcher */
  .lang{ display:inline-flex; border:1px solid var(--line); border-radius:9px; overflow:hidden; }
  .lang button, .lang a{ display:inline-block; border:0; background:#fff; color:var(--muted); font-family:inherit; font-weight:700; font-size:12.5px; line-height:1; padding:8px 10px; cursor:pointer; text-decoration:none; transition:background .15s,color .15s; }
  .lang button + button, .lang a + a{ border-left:1px solid var(--line); }
  .lang button.on, .lang a.on{ background:var(--navy); color:#fff; }
  .lang button:hover:not(.on), .lang a:hover:not(.on){ background:var(--soft); color:var(--navy); }
  /* mobile / tablet nav */
  .navtoggle{ display:none; width:42px; height:38px; border:1.5px solid var(--line); background:#fff; border-radius:10px; cursor:pointer; flex-direction:column; align-items:center; justify-content:center; gap:4px; padding:0; }
  .navtoggle span{ display:block; width:18px; height:2px; background:var(--navy); border-radius:2px; transition:transform .2s ease, opacity .15s ease; }
  .navtoggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
  .navtoggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
  .navtoggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }
  .mobnav{ display:none; background:#fff; border-top:1px solid var(--line); box-shadow:0 14px 28px rgba(20,33,61,.10); }
  .mobnav.on{ display:block; }
  .mobnav a{ display:block; padding:14px 24px; font-size:16px; font-weight:600; color:var(--navy); border-bottom:1px solid var(--line); }
  .mobnav a.cta{ color:var(--orange-deep); border-bottom:0; }
  .mobnav a:active{ background:var(--soft); }
  @media(max-width:1240px){ .nav-links{ display:none; } .nav-right{ margin-left:auto; } .navtoggle{ display:flex; } }
  @media(max-width:560px){ .nav-cta{ display:none; } }

  /* sticky action bar on phones */
  .stickycta{ display:none; position:fixed; left:0; right:0; bottom:0; z-index:60; gap:10px; padding:10px 14px calc(10px + env(safe-area-inset-bottom)); background:rgba(20,33,61,.96); backdrop-filter:blur(8px); border-top:1px solid rgba(255,255,255,.14); }
  .stickycta .btn{ flex:1; justify-content:center; padding:12px 12px; font-size:14.5px; }
  @media(max-width:700px){ .stickycta{ display:flex; } body{ padding-bottom:76px; } }

  /* proof band */
  .proof{ background:var(--navy); color:#fff; padding:32px 0; }
  .proof .grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
  .proof .it{ display:flex; gap:11px; align-items:flex-start; }
  .proof .ic{ flex:0 0 auto; width:28px; height:28px; border-radius:8px; background:rgba(252,163,17,.16); display:flex; align-items:center; justify-content:center; font-size:14px; }
  .proof h3{ font-size:14.5px; margin-bottom:2px; color:#fff; }
  .proof p{ font-size:13px; color:#a9b6cc; line-height:1.45; }
  @media(max-width:860px){ .proof .grid{ grid-template-columns:1fr 1fr; gap:18px; } }
  @media(max-width:520px){ .proof .grid{ grid-template-columns:1fr; } }

  /* HERO */
  .hero{ background:radial-gradient(1200px 500px at 80% -10%, #24345c 0%, var(--navy) 55%); color:#fff; padding:78px 0 84px; position:relative; overflow:hidden; }
  .hero-grid{ display:grid; grid-template-columns:1.02fr 1.05fr; gap:44px; align-items:center; }
  .hero h1{ font-size:46px; line-height:1.08; font-weight:800; margin:14px 0 18px; }
  .hero h1 em{ color:var(--orange); font-style:normal; }
  .hero p.lead{ font-size:18px; color:#c7cfdd; max-width:520px; margin-bottom:26px; }
  .hero .cta-row{ display:flex; gap:12px; flex-wrap:wrap; }
  .hero .eyebrow{ color:var(--orange); }
  .hero-badges{ margin-top:22px; display:flex; gap:18px; flex-wrap:wrap; }
  .hero-badges .b{ font-size:12.5px; color:#c7cfdd; display:flex; align-items:center; gap:7px; }
  .hero-badges .b b{ color:#fff; }
  .hero-badges .b .ic{ display:flex; color:var(--orange); }
  .hero-badges .b .ic svg{ width:15px; height:15px; }

  /* Browser frame + CRM console mock */
  .frame{ background:#fff; border-radius:13px; box-shadow:0 26px 60px rgba(0,0,0,.38); overflow:hidden; transform:translateZ(0); }
  .frame .bar{ background:#eef1f6; border-bottom:1px solid #e2e6ee; padding:9px 12px; display:flex; align-items:center; gap:6px; }
  .frame .dot{ width:10px; height:10px; border-radius:50%; background:#d7dde6; } .frame .dot:nth-child(1){background:#f1948a} .frame .dot:nth-child(2){background:#f7ca6b} .frame .dot:nth-child(3){background:#7fce9a}
  .frame .addr{ margin-left:10px; font-size:11px; color:#6b7480; background:#fff; border:1px solid #e2e6ee; border-radius:6px; padding:3px 12px; }
  /* CRM console */
  .crm{ display:grid; grid-template-columns:148px 1fr; height:428px; background:#14213D; color:#1c2433; border-radius:0 0 12px 12px; overflow:hidden; }
  .crm .side{ background:#14213D; color:#c7cfdd; padding:12px 10px; }
  .crm .side .b{ display:flex; align-items:center; gap:7px; font-weight:800; color:#fff; font-size:12.5px; margin-bottom:10px; }
  .crm .side .b i{ width:18px; height:18px; border-radius:5px; background:var(--orange); display:inline-block; }
  .crm .side a{ display:flex; align-items:center; gap:7px; font-size:11.2px; color:#aeb9cf; padding:5px 8px; border-radius:6px; margin-bottom:1px; white-space:nowrap; }
  .crm .side a .ic{ width:13px; height:13px; flex:0 0 13px; display:flex; align-items:center; justify-content:center; opacity:.85; }
  .crm .side a .ic svg{ width:13px; height:13px; }
  .crm .side a.on{ background:rgba(255,255,255,.10); color:#fff; }
  .crm .main{ padding:14px 15px; overflow:hidden; background:#fff; }
  .crm .top{ display:flex; align-items:center; margin-bottom:12px; }
  .crm .top h4{ font-size:14px; color:#14213D; }
  .crm .top .pill{ margin-left:auto; font-size:10.5px; font-weight:700; color:#c8821a; background:#fdf3e0; border:1px solid #f0e3c9; border-radius:20px; padding:3px 9px; }
  .crm .tiles{ display:grid; grid-template-columns:repeat(3,1fr); gap:9px; margin-bottom:12px; }
  .crm .tile{ border:1px solid #e4e8ef; border-radius:9px; padding:9px 10px; }
  .crm .tile .n{ font-family:"Sora"; font-weight:800; font-size:17px; color:#14213D; }
  .crm .tile .l{ font-size:10px; color:#6b7480; }
  .crm .tile .n small{ font-size:10.5px; color:#7fce9a; font-weight:700; }
  .crm table{ width:100%; border-collapse:collapse; font-size:11.5px; }
  .crm th{ text-align:left; color:#6b7480; font-weight:600; font-size:10px; text-transform:uppercase; letter-spacing:.04em; padding:0 6px 6px; }
  .crm td{ padding:7px 6px; border-top:1px solid #e4e8ef; color:#1c2433; }
  .crm .who{ display:flex; align-items:center; gap:7px; }
  .crm .av{ width:20px; height:20px; border-radius:50%; background:#14213D; color:#fff; font-size:9px; font-weight:800; display:flex; align-items:center; justify-content:center; }
  .crm .tag{ font-size:9.5px; font-weight:700; border-radius:20px; padding:2px 7px; }
  .crm .tag.new{ background:#e9f7ee; color:#2f9e5b; } .crm .tag.view{ background:#fff3df; color:#c8821a; } .crm .tag.neg{ background:#eef1fb; color:#3d63c8; }

  /* CRM dashboard mock */
  .crm .ceo{ border:1px solid #e4e8ef; border-radius:9px; padding:9px 11px; margin-bottom:9px; }
  .crm .ceo .lbl{ font-size:9.5px; font-weight:700; color:#14213D; margin-bottom:6px; }
  .crm .ceo .row{ display:grid; grid-template-columns:repeat(6,1fr); gap:6px; }
  .crm .ceo .s b{ display:block; font-family:"Sora"; font-weight:800; font-size:15px; color:#14213D; line-height:1.1; }
  .crm .ceo .s span{ display:block; font-size:8.2px; color:#6b7480; line-height:1.25; margin-top:2px; }
  .crm .panelbox{ border:1px solid #e4e8ef; border-radius:9px; padding:9px 11px; margin-bottom:9px; }
  .crm .panelbox .ph{ display:flex; align-items:center; gap:6px; font-size:11px; color:#14213D; }
  .crm .panelbox .ph .cnt{ background:#eef1f6; color:#6b7480; border-radius:20px; font-size:8.5px; font-weight:700; padding:1px 6px; }
  .crm .panelbox .psub{ font-size:8.8px; color:#6b7480; margin:2px 0 7px; }
  .crm .todo{ display:flex; align-items:center; gap:7px; padding:5px 0; border-top:1px solid #eef1f6; font-size:10px; }
  .crm .todo .tag{ font-size:8px; font-weight:800; letter-spacing:.04em; text-transform:uppercase; color:#2f9e5b; background:#e9f7ee; border-radius:20px; padding:2px 6px; }
  .crm .todo .tag.view{ color:#c8821a; background:#fdf3e0; }
  .crm .todo .tag.doc{ color:#4a5b86; background:#eef1f8; }
  .crm .todo .who{ font-weight:700; color:#1c2433; }
  .crm .todo .sub{ color:#6b7480; }
  .crm .want{ display:flex; justify-content:space-between; font-size:10px; color:#1c2433; margin-top:6px; }
  .crm .want .q{ color:#6b7480; }
  .crm .dbar{ display:block; height:4px; padding:0; border:0; background:#eef1f6; border-radius:3px; margin-top:3px; overflow:hidden; }
  .crm .dbar i{ display:block; height:4px; background:#FCA311; border-radius:3px; }

  /* SECTIONS */
  section{ padding:84px 0; }
  .sec-head{ max-width:720px; margin:0 auto 44px; text-align:center; }
  .sec-head h2{ font-size:32px; font-weight:800; color:var(--navy); margin:10px 0 14px; line-height:1.18; }
  .sec-head h2:after{ content:""; display:block; width:44px; height:2px; border-radius:2px; background:var(--orange); margin:16px auto 0; opacity:.85; }
  .sec-head.left h2:after{ margin-left:0; }
  .sec-head p{ font-size:16.5px; color:var(--muted); }

  .strip{ background:var(--soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:26px 0; color:var(--muted); }
  .strip .wrap{ display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap; text-align:center; }
  .strip b{ color:var(--navy); }

  .prob{ display:grid; grid-template-columns:1fr 1fr 1fr; gap:18px; }
  .prob .card{ background:var(--soft); border:1px solid var(--line); border-radius:var(--radius); padding:24px; }
  .prob .card h3{ font-size:16.5px; color:var(--navy); margin-bottom:7px; }
  .prob .card p{ font-size:14px; color:var(--muted); }

  /* SERVICES (grouped, detailed) */
  .svc{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
  .svcbox{ border:1px solid var(--line); border-radius:var(--radius); background:#fff; padding:24px; transition:box-shadow .2s ease; }
  .svcbox:hover{ box-shadow:0 12px 30px rgba(20,33,61,.07); }
  .svcbox .hd{ display:flex; align-items:center; gap:11px; margin-bottom:14px; }
  .svcbox .ic{ width:40px; height:40px; flex:0 0 auto; border-radius:11px; background:var(--sand); border:1px solid rgba(252,163,17,.22); display:flex; align-items:center; justify-content:center; font-size:19px; }
  .svcbox h3{ font-size:17.5px; color:var(--navy); }
  .svcbox ul{ list-style:none; }
  .svcbox li{ position:relative; padding:6px 0 6px 22px; font-size:14.2px; color:var(--muted); border-top:1px solid var(--line); }
  .svcbox li:first-child{ border-top:0; }
  .svcbox li:before{ content:"›"; position:absolute; left:4px; top:6px; color:var(--orange-deep); font-weight:800; }
  .svcbox li b{ color:var(--ink); font-weight:600; }

  /* MODULES */
  .mods{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
  .mod{ border:1px solid var(--line); border-radius:12px; background:#fff; padding:17px 17px 16px; }
  .mod .ic{ width:30px; height:30px; border-radius:8px; background:var(--sand); display:flex; align-items:center; justify-content:center; font-size:15px; margin-bottom:10px; }
  .mod h3{ font-size:14.5px; color:var(--navy); margin-bottom:4px; }
  .mod p{ font-size:12.8px; color:var(--muted); line-height:1.45; }
  @media(max-width:1040px){ .mods{ grid-template-columns:repeat(3,1fr); } }
  @media(max-width:760px){ .mods{ grid-template-columns:repeat(2,1fr); } }
  @media(max-width:460px){ .mods{ grid-template-columns:1fr; } }

  /* PRODUCT TOUR */
  .tour{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
  .shot{ border:1px solid var(--line); border-radius:14px; overflow:hidden; background:#fff; box-shadow:0 10px 30px rgba(20,33,61,.06); }
  .shot .scr{ height:184px; background:var(--soft); position:relative; overflow:hidden; }
  .shot .cap{ padding:15px 16px; }
  .shot .cap h3{ font-size:16px; color:var(--navy); margin-bottom:5px; }
  .shot .cap p{ font-size:13px; color:var(--muted); }
  .mini{ position:absolute; inset:0; padding:12px; }
  .mini .rowh{ height:9px; width:44%; background:var(--navy); border-radius:5px; opacity:.85; margin-bottom:10px; }
  .mini .grid3{ display:grid; grid-template-columns:1fr 1fr 1fr; gap:7px; }
  .mini .pcard{ border:1px solid var(--line); border-radius:8px; overflow:hidden; background:#fff; }
  .mini .pcard .im{ height:40px; background:linear-gradient(120deg,#c9d3e6,#e6ecf5); }
  .mini .pcard .l{ height:6px; background:#eef1f6; margin:6px 7px; border-radius:4px; } .mini .pcard .l.s{ width:60%; }
  .mini .badge{ position:absolute; top:9px; right:9px; font-size:9px; font-weight:800; color:var(--navy); background:var(--orange); border-radius:20px; padding:2px 8px; }
  .cal{ display:grid; grid-template-columns:repeat(7,1fr); gap:5px; }
  .cal .d{ aspect-ratio:1; border:1px solid var(--line); border-radius:6px; background:#fff; }
  .cal .d.ev{ background:var(--sand); border-color:#f0e3c9; }
  .cal .d.ev.acc{ background:var(--orange); border-color:var(--orange); }
  .mapmini{ position:absolute; inset:0; background:linear-gradient(160deg,#1a2b4d,#0f1c34); }
  .mapmini .pin{ position:absolute; width:14px; height:14px; border-radius:50% 50% 50% 0; transform:rotate(-45deg); background:var(--orange); border:2px solid #fff; box-shadow:0 2px 6px rgba(0,0,0,.4); }
  .mapmini .road{ position:absolute; height:2px; background:rgba(255,255,255,.10); }

  /* PHASES — phase 1 stands alone, 2 and 3 stack on top */
  .stack{ max-width:900px; margin:0 auto; }
  .pblock{ border-radius:16px; padding:26px 28px; position:relative; }
  .pblock.base{ background:var(--navy); color:#fff; box-shadow:0 18px 44px rgba(20,33,61,.20); }
  .pblock.add{ background:#fff; border:1px solid var(--line); }
  .pblock .ptag{ display:inline-block; font-size:11px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; border-radius:20px; padding:4px 11px; margin-bottom:10px; }
  .pblock.base .ptag{ background:var(--orange); color:var(--navy); }
  .pblock.add .ptag{ background:var(--sand); color:var(--orange-deep); border:1px solid #f0e3c9; }
  .pblock .phd{ display:flex; align-items:flex-start; gap:18px; flex-wrap:wrap; }
  .pblock .phd .t{ flex:1 1 320px; }
  .pblock h3{ font-size:21px; margin-bottom:6px; }
  .pblock.base h3{ color:#fff; } .pblock.add h3{ color:var(--navy); }
  .pblock .pd{ font-size:14.5px; }
  .pblock.base .pd{ color:#c7cfdd; } .pblock.add .pd{ color:var(--muted); }
  .pblock .amt{ font-family:"Sora"; font-weight:800; font-size:23px; white-space:nowrap; }
  .pblock.base .amt{ color:var(--orange); } .pblock.add .amt{ color:var(--navy); }
  .pblock .amt small{ display:block; font-family:"Inter"; font-size:12.5px; font-weight:600; }
  .pblock.base .amt small{ color:#9fb0cc; } .pblock.add .amt small{ color:var(--muted); }
  .pblock ul{ list-style:none; margin-top:16px; display:grid; grid-template-columns:1fr 1fr; gap:2px 22px; }
  .pblock li{ position:relative; padding:5px 0 5px 20px; font-size:14px; }
  .pblock.base li{ color:#c7cfdd; } .pblock.add li{ color:var(--muted); }
  .pblock li:before{ content:"✓"; position:absolute; left:0; top:5px; color:var(--orange); font-weight:800; font-size:12px; }
  .pnote{ margin-top:16px; padding-top:14px; font-size:13.5px; }
  .pblock.base .pnote{ border-top:1px solid rgba(255,255,255,.14); color:#9fb0cc; }
  .pblock.add .pnote{ border-top:1px solid var(--line); color:var(--muted); }
  .plus{ display:flex; align-items:center; gap:12px; padding:14px 0; justify-content:center; }
  .plus .sign{ width:30px; height:30px; border-radius:50%; background:rgba(252,163,17,.16); border:1px solid rgba(252,163,17,.35); color:var(--orange); font-family:"Sora"; font-weight:800; font-size:16px; display:flex; align-items:center; justify-content:center; }
  .plus .lbl{ font-size:13px; font-weight:600; color:var(--muted); }

  .how{ background:var(--navy); color:#fff; border-radius:20px; padding:52px 44px; }
  .how .sec-head h2{ color:#fff; } .how .sec-head p{ color:#c7cfdd; }
  .steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:8px; }
  .step .n{ width:36px; height:36px; border-radius:10px; background:rgba(252,163,17,.14); border:1px solid rgba(252,163,17,.3); color:var(--orange); font-family:"Sora"; font-weight:800; display:flex; align-items:center; justify-content:center; margin-bottom:12px; }
  .step h3{ font-size:17px; margin-bottom:6px; }
  .step p{ font-size:14px; color:#c7cfdd; }

  .why{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px 40px; max-width:900px; margin:0 auto; }
  .why .row{ display:flex; gap:14px; }
  .why .chk{ flex:0 0 auto; width:26px; height:26px; border-radius:50%; background:var(--sand); color:var(--orange-deep); display:flex; align-items:center; justify-content:center; font-weight:800; }
  .why h3{ font-size:16.5px; color:var(--navy); margin-bottom:4px; }
  .why p{ font-size:14px; color:var(--muted); }

  /* PRICING */
  .pgrid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; max-width:900px; margin:0 auto 18px; }
  .pbox{ border:1px solid var(--line); border-radius:18px; background:linear-gradient(180deg,#fff,var(--soft)); padding:26px 26px 22px; }
  .pbox h3{ font-size:19px; color:var(--navy); margin:8px 0 4px; }
  .pbox > p{ font-size:14px; color:var(--muted); margin-bottom:14px; }
  .prow{ display:flex; align-items:baseline; gap:12px; padding:11px 0; border-top:1px solid var(--line); }
  .prow .nm{ flex:1; font-size:14.5px; color:var(--ink); }
  .prow .nm b{ font-weight:600; }
  .prow .nm span{ display:block; font-weight:400; font-size:13px; color:var(--muted); }
  .prow .pv{ font-family:"Sora"; font-weight:800; font-size:16.5px; color:var(--navy); white-space:nowrap; }
  .prow .pv.pv-wrap{ white-space:normal; text-align:right; max-width:170px; font-size:14px; line-height:1.35; }
  @media(max-width:620px){ .prow .pv.pv-wrap{ max-width:88px; font-size:12.5px; } }
  .prow.total .pv{ color:var(--orange); }
  .prow.total{ border-top:2px solid var(--navy); }
  .aowrap{ max-width:900px; margin:0 auto; border:1px solid var(--line); border-radius:18px; background:#fff; padding:26px; }
  .aowrap h3{ font-size:19px; color:var(--navy); margin-bottom:4px; }
  .aowrap > p{ font-size:14px; color:var(--muted); margin-bottom:8px; }
  .pfine{ max-width:900px; margin:16px auto 0; font-size:13px; color:var(--muted); text-align:center; }
  .pcta{ text-align:center; margin-top:24px; }

  /* REQUESTS / ADD-ONS */
  .req{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
  .req .card{ border:1px solid var(--line); border-radius:var(--radius); padding:24px; background:#fff; }
  .req .ic{ width:42px; height:42px; border-radius:11px; background:var(--sand); border:1px solid rgba(252,163,17,.22); display:flex; align-items:center; justify-content:center; margin-bottom:12px; font-size:20px; }
  .req h3{ font-size:17px; color:var(--navy); margin-bottom:7px; }
  .req p{ font-size:14px; color:var(--muted); }

  .demo{ background:radial-gradient(900px 400px at 20% 0%, #24345c 0%, var(--navy) 60%); color:#fff; border-radius:20px; padding:52px 44px; }
  .demo-grid{ display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start; }
  .demo h2{ font-size:30px; color:#fff; margin-bottom:10px; }
  .demo p{ color:#c7cfdd; font-size:16px; margin-bottom:18px; }
  .demo .alt{ margin-top:16px; display:flex; gap:12px; flex-wrap:wrap; }
  form.df label{ display:block; font-size:13px; font-weight:600; color:#c7cfdd; margin:0 0 5px; }
  form.df .field{ margin-bottom:12px; }
  form.df input, form.df textarea{ width:100%; padding:12px 13px; border-radius:10px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.07); color:#fff; font-family:inherit; font-size:14.5px; }
  form.df input::placeholder, form.df textarea::placeholder{ color:#8ea0bf; }
  form.df input:focus, form.df textarea:focus{ outline:none; border-color:var(--orange); background:rgba(255,255,255,.10); }
  form.df .g2{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
  form.df button{ width:100%; margin-top:4px; }
  .df .consent{ font-size:11.5px; color:#9fb0cc; margin-top:10px; line-height:1.5; }
  .df .consent a{ color:#c7cfdd; text-decoration:underline; }
  .df-ok{ display:none; background:rgba(127,206,154,.12); border:1px solid rgba(127,206,154,.4); color:#d6f3e1; border-radius:12px; padding:22px; font-size:15px; }
  .df-ok.on{ display:block; }

  .faq{ max-width:800px; margin:0 auto; }
  .faq details{ border:1px solid var(--line); border-radius:12px; padding:4px 18px; margin-bottom:10px; background:#fff; }
  .faq summary{ list-style:none; cursor:pointer; padding:15px 0; font-weight:700; color:var(--navy); font-size:15.5px; display:flex; justify-content:space-between; align-items:center; gap:14px; }
  .faq summary::-webkit-details-marker{ display:none; }
  .faq summary:after{ content:"+"; color:var(--orange-deep); font-weight:800; font-size:20px; }
  .faq details[open] summary:after{ content:"–"; }
  .faq p{ font-size:14.5px; color:var(--muted); padding:0 0 16px; }

  footer{ background:var(--navy); color:#c7cfdd; padding:44px 0 32px; font-size:13.5px; }
  footer .cols{ display:flex; justify-content:space-between; gap:24px; flex-wrap:wrap; margin-bottom:22px; }
  footer .logo .txt{ color:#fff; }
  footer a{ color:#c7cfdd; } footer a:hover{ color:#fff; }
  footer .btn-light{ color:#fff; }
  footer .mlsbtn{ white-space:normal; text-align:left; max-width:320px; font-size:13.5px; line-height:1.35; padding:11px 16px; }
  footer .fnote{ border-top:1px solid rgba(255,255,255,.12); padding-top:16px; color:#8ea0bf; font-size:12px; }

  @media(max-width:860px){
    .hero-grid,.demo-grid{ grid-template-columns:1fr; }
    .hero h1{ font-size:34px; } .hero{ padding:48px 0 56px; }
    .prob,.steps,.why,.tour,.svc,.req,.pgrid{ grid-template-columns:1fr; }
    .pblock ul{ grid-template-columns:1fr; }
    .how,.demo{ padding:34px 22px; } section{ padding:52px 0; }
    .pblock{ padding:22px; }
    .frame{ transform:none; }
    .crm{ height:auto; }
  }

  /* console mock op telefoon: modules bovenaan, paneel eronder */
  @media(max-width:700px){
    .crm{ grid-template-columns:1fr; }
    .crm .side{ display:flex; flex-wrap:wrap; gap:5px; padding:12px; }
    .crm .side .b{ flex:0 0 100%; margin-bottom:4px; }
    .crm .side a{ background:rgba(255,255,255,.07); padding:4px 8px; margin:0; font-size:10.5px; }
    .crm .main{ padding:14px; }
    .crm .ceo .row{ grid-template-columns:repeat(3,1fr); gap:10px 8px; }
    .crm .ceo .s span{ font-size:9.5px; }
    .crm .want, .crm .todo{ font-size:11px; }
  }

  /* DEMOSTAPPEN + VOORDELEN (homepage) */
  .dsteps{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
  .dstep{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:24px; }
  .dstep .n{ width:34px; height:34px; border-radius:10px; background:var(--orange); color:var(--navy); font-family:"Sora","Inter",sans-serif; font-weight:800; font-size:16px; display:flex; align-items:center; justify-content:center; margin-bottom:13px; }
  .dstep h3{ font-size:17px; color:var(--navy); margin-bottom:6px; }
  .dstep p{ font-size:14.5px; color:var(--muted); }
  .dsfree{ text-align:center; margin-top:24px; font-size:14.5px; color:var(--muted); }
  .dscta{ display:flex; justify-content:center; margin-top:18px; }
  .dmre{ list-style:none; margin:18px 0 4px; padding:0; }
  .dmre li{ display:flex; align-items:center; gap:10px; padding:7px 0; color:#c7cfdd; font-size:14.5px; }
  .dmre .c{ flex:0 0 auto; width:22px; height:22px; border-radius:50%; background:rgba(252,163,17,.16); color:var(--orange); display:flex; align-items:center; justify-content:center; }
  .dmre .c svg{ width:13px; height:13px; }
  .bene{ display:grid; grid-template-columns:1fr 1fr; gap:20px 40px; max-width:940px; margin:0 auto; }
  .bene-it{ display:flex; gap:14px; }
  .bene-it .ic{ flex:0 0 auto; width:40px; height:40px; border-radius:11px; background:var(--sand); border:1px solid #f0e3c9; color:var(--orange-deep); display:flex; align-items:center; justify-content:center; }
  .bene-it .ic svg{ width:20px; height:20px; }
  .bene-it h3{ font-size:16.5px; color:var(--navy); margin-bottom:4px; }
  .bene-it p{ font-size:14.5px; color:var(--muted); }
  @media(max-width:860px){ .dsteps{ grid-template-columns:1fr; } .bene{ grid-template-columns:1fr; gap:18px; } }

  /* A LOOK INSIDE — carousel met echte schermafdrukken */
  .li-stage{ max-width:1024px; margin:0 auto; }
  .li-stage .frame{ border:1px solid var(--line); box-shadow:0 24px 60px rgba(20,33,61,.14), 0 4px 12px rgba(20,33,61,.06); }
  .li-shots{ position:relative; aspect-ratio:2048/1183; background:#f3f5f9; }
  .li-shot{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:top center; display:none; }
  .li-shot.on{ display:block; }
  .li-caps{ margin-top:20px; text-align:center; min-height:74px; }
  .li-cap{ display:none; }
  .li-cap.on{ display:block; }
  .li-cap h3{ font-size:20px; color:var(--navy); }
  .li-cap p{ color:var(--muted); font-size:15px; margin-top:4px; max-width:56ch; margin-left:auto; margin-right:auto; }
  .li-nav{ display:flex; align-items:center; justify-content:center; gap:16px; margin-top:16px; }
  .li-arrow{ width:44px; height:44px; flex:0 0 auto; border-radius:50%; border:1.5px solid var(--line); background:#fff; color:var(--navy); cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .15s, border-color .15s, color .15s; }
  .li-arrow svg{ width:20px; height:20px; }
  .li-arrow:hover{ background:var(--navy); border-color:var(--navy); color:#fff; }
  .li-dots{ display:flex; gap:9px; }
  .li-dot{ width:9px; height:9px; padding:0; border:0; border-radius:50%; background:#c7cede; cursor:pointer; transition:background .2s, transform .2s; }
  .li-dot.on{ background:var(--orange); transform:scale(1.25); }
  .li-count{ color:var(--muted); font-size:13px; min-width:44px; text-align:center; font-variant-numeric:tabular-nums; }
  .li-flow{ margin-top:72px; padding-top:56px; border-top:1px solid var(--line); }
  .li-flow .sec-head{ margin-bottom:34px; }
  .li-steps{ display:flex; align-items:stretch; justify-content:center; gap:10px; }
  .li-step{ flex:1 1 0; background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:18px; box-shadow:0 12px 34px rgba(20,33,61,.08); display:flex; flex-direction:column; }
  .li-step .n{ width:32px; height:32px; flex:0 0 auto; border-radius:50%; background:var(--navy); color:#fff; font-family:"Sora","Inter",sans-serif; font-weight:800; font-size:15px; display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
  .li-step .imgwrap{ border:1px solid var(--line); border-radius:10px; overflow:hidden; background:#f3f5f9; }
  .li-step img{ display:block; width:100%; height:230px; object-fit:cover; object-position:top center; }
  .li-step h4{ font-family:"Sora","Inter",sans-serif; color:var(--navy); font-size:17px; margin:15px 0 5px; }
  .li-step p{ color:var(--muted); font-size:14px; }
  .li-sep{ display:flex; align-items:center; color:var(--orange); flex:0 0 auto; }
  .li-sep svg{ width:26px; height:26px; }
  @media(max-width:860px){
    .li-steps{ flex-direction:column; align-items:stretch; }
    .li-sep{ transform:rotate(90deg); justify-content:center; padding:2px 0; }
    .li-step img{ height:auto; }
    .li-caps{ min-height:96px; }
    .li-nav{ gap:12px; }
  }
  @media(max-width:640px){
    /* op een telefoon is een volledige desktopschermafdruk onleesbaar klein:
       toon een uitsnede linksboven zodat menu en kop nog te herkennen zijn */
    .li-shots{ aspect-ratio:4/3; }
    .li-shot{ object-position:top left; }
  }
  @media(max-width:520px){ .li-dots{ display:none; } }

  /* 404 */
  .nf{ padding:90px 0 96px; }
  .nfbox{ max-width:720px; margin:0 auto; text-align:center; }
  .nf h1{ font-size:38px; color:var(--navy); margin:10px 0 12px; }
  .nf p{ color:var(--muted); font-size:16px; max-width:560px; margin:0 auto; }
  .nflinks{ display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:30px; text-align:left; }
  .nflinks a{ border:1px solid var(--line); border-radius:12px; padding:14px 16px; background:#fff; transition:border-color .15s, transform .08s; }
  .nflinks a:hover{ border-color:var(--navy); transform:translateY(-1px); }
  .nflinks b{ display:block; color:var(--navy); font-size:15px; }
  .nflinks span{ display:block; color:var(--muted); font-size:13px; margin-top:2px; }
  .nf .cta-row{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
  @media(max-width:560px){ .nflinks{ grid-template-columns:1fr; } .nf h1{ font-size:30px; } }

  /* MODULE BLOCKS (functies) */
  .modblocks{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
  .modblock{ border:1px solid var(--line); border-radius:var(--radius); background:#fff; padding:24px; }
  .modblock .mb-head{ display:flex; align-items:flex-start; gap:12px; margin-bottom:10px; }
  .modblock .ic{ width:40px; height:40px; flex:0 0 auto; border-radius:11px; background:var(--sand); border:1px solid #f0e3c9; display:flex; align-items:center; justify-content:center; font-size:19px; }
  .modblock .num{ font-family:"Sora"; font-weight:800; font-size:11px; letter-spacing:.1em; color:var(--orange-deep); }
  .modblock h3{ font-size:18px; color:var(--navy); }
  .modblock .mb-lead{ font-size:14px; color:var(--muted); margin-bottom:12px; }
  .modblock ul{ list-style:none; }
  .modblock li{ position:relative; padding:6px 0 6px 22px; font-size:14px; color:var(--muted); border-top:1px solid var(--line); }
  .modblock li:before{ content:"\203A"; position:absolute; left:5px; top:6px; color:var(--orange-deep); font-weight:800; }
  @media(max-width:860px){ .modblocks{ grid-template-columns:1fr; } }

  /* EXPLORE cards on the home page */
  .req a.card{ display:block; transition:box-shadow .2s ease, transform .08s ease; }
  .req a.card:hover{ box-shadow:0 12px 30px rgba(20,33,61,.09); transform:translateY(-2px); }
  .req .more{ display:inline-block; margin-top:12px; font-size:13.5px; font-weight:700; color:var(--orange-deep); }
  .nav-links a.on{ color:var(--navy); }
  .nav-links a.on:after{ content:""; display:block; height:2px; border-radius:2px; background:var(--orange); margin-top:5px; }

  /* CTA band on subpages */
  .ctaband{ background:var(--navy); color:#fff; text-align:center; padding:64px 0; }
  .ctaband h2{ font-size:28px; color:#fff; margin-bottom:12px; }
  .ctaband p{ font-size:16px; color:#c7cfdd; max-width:640px; margin:0 auto 24px; }
  .ctaband .row{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

  /* werkwijze steps */
  .wsteps{ display:grid; grid-template-columns:1fr 1fr; gap:18px; max-width:940px; margin:0 auto; }
  .wstep{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:24px; }
  .wstep .n{ width:34px; height:34px; border-radius:10px; background:var(--sand); border:1px solid #f0e3c9; color:var(--orange-deep); font-family:"Sora"; font-weight:800; display:flex; align-items:center; justify-content:center; margin-bottom:12px; }
  .wstep h3{ font-size:17px; color:var(--navy); margin-bottom:6px; }
  .wstep p{ font-size:14px; color:var(--muted); }
  @media(max-width:860px){ .wsteps{ grid-template-columns:1fr; } }

  /* vision */
  .vtext{ max-width:720px; margin:0 auto; }
  .vtext p{ font-size:16.5px; color:var(--muted); margin-bottom:16px; }

  /* about */
  .abgrid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; max-width:1000px; margin:36px auto 0; }
  .abcard{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:24px; }
  .abcard h3{ font-size:17px; color:var(--navy); margin-bottom:8px; }
  .abcard p{ font-size:14px; color:var(--muted); }
  @media(max-width:860px){ .abgrid{ grid-template-columns:1fr; } }

  /* lijniconen */
  .proof .ic svg, .req .ic svg, .mod .ic svg, .modblock .ic svg{ width:18px; height:18px; }
  .proof .ic svg{ color:var(--orange); }
  .req .ic svg, .mod .ic svg, .modblock .ic svg{ color:var(--orange-deep); }

  /* actie: opzet fase 2 & 3 nu gratis */
  .promo{ background:var(--navy); border-bottom:3px solid var(--orange); padding:22px 0; }
  .promo .wrap{ display:flex; align-items:center; justify-content:center; gap:10px 20px; flex-wrap:wrap; text-align:center; }
  .promo .ph{ font-family:"Sora"; font-weight:800; font-size:19px; color:#fff; }
  .promo .ph em{ color:var(--orange); font-style:normal; }
  .promo .ps{ font-size:14px; color:#a9bbd8; max-width:620px; }
  @media(max-width:700px){ .promo{ padding:18px 0; } .promo .ph{ font-size:16.5px; } .promo .ps{ font-size:13.5px; } }
  .was{ text-decoration:line-through; opacity:.5; font-weight:700; margin-right:9px; }
  .pblock .amt.amt-promo{ white-space:normal; text-align:right; }
  .amt .nowfree{ display:inline-block; font-family:"Inter"; font-size:10.5px; font-weight:800; letter-spacing:.07em; text-transform:uppercase; border-radius:20px; padding:4px 10px; margin-left:9px; vertical-align:middle; background:var(--orange); color:var(--navy); }
  .prow .pv .was{ font-size:15px; margin-right:6px; }
  .prow .pv .free{ color:var(--orange-deep); }

  /* actiestrip: knop, en op mobiel boven de hero (desktopvolgorde ongemoeid) */
  .herowrap{ display:flex; flex-direction:column; }
  .promo .promo-btn{ padding:10px 18px; font-size:14px; }
  @media(max-width:860px){ .promo{ order:-1; } }
  /* privacyverklaring */
  .pvblock{ border-top:1px solid var(--line); padding:22px 0; }
  .pvblock:first-child{ border-top:0; padding-top:0; }
  .pvblock h2{ font-size:19px; color:var(--navy); margin-bottom:8px; }
  .pvblock p{ font-size:15px; color:var(--muted); max-width:760px; }
