/* TrackDrive Pro — shared stylesheet.
   Extracted from the original inline styles so every page caches one file. */
:root{
    --navy:#0F2D52;
    --navy-deep:#0A2140;
    --navy-soft:#2C4A70;
    --teal:#1A6B8A;
    --teal-bright:#24A5C5;
    --bg-tint:#E8F7FB;
    --grey-bg:#F5F9FB;
    --ink:#0F2D52;
    --muted:#5B7189;
    --line:#E1EAF0;
    --white:#FFFFFF;
    --radius-lg:20px;
    --radius-md:14px;
    --shadow-sm: 0 1px 2px rgba(15,45,82,0.06);
    --shadow-md: 0 8px 24px rgba(15,45,82,0.08);
    --shadow-lg: 0 20px 48px rgba(15,45,82,0.14);
    --font-display:'Space Grotesk', sans-serif;
    --font-body:'Inter', sans-serif;
    --font-mono:'IBM Plex Mono', monospace;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
  }
  body{
    font-family:var(--font-body);
    color:var(--ink);
    background:var(--white);
    line-height:1.55;
    -webkit-font-smoothing:antialiased;
  }
  img{max-width:100%; display:block;}
  a{color:inherit; text-decoration:none;}
  ul{list-style:none;}
  h1,h2,h3,h4{font-family:var(--font-display); color:var(--navy); line-height:1.15; letter-spacing:-0.01em;}
  .container{max-width:1240px; margin:0 auto; padding:0 24px;}
  .skip-link{position:absolute; left:-999px; top:0; background:var(--navy); color:#fff; padding:10px 16px; z-index:1000; border-radius:0 0 8px 0;}
  .skip-link:focus{left:0;}
  section{position:relative;}
  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-family:var(--font-mono); font-size:12px; font-weight:600;
    letter-spacing:0.06em; text-transform:uppercase;
    color:var(--teal); background:var(--bg-tint);
    padding:6px 14px; border-radius:999px;
  }
  .eyebrow::before{content:''; width:6px; height:6px; border-radius:50%; background:var(--teal-bright);}
  .btn{
    display:inline-flex; align-items:center; gap:8px;
    font-family:var(--font-body); font-weight:600; font-size:15px;
    padding:13px 24px; border-radius:999px; cursor:pointer;
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
    border:1px solid transparent; white-space:nowrap;
  }
  .btn-primary{background:var(--teal); color:#fff; box-shadow:0 6px 16px rgba(26,107,138,0.28);}
  .btn-primary:hover{background:var(--teal-bright); transform:translateY(-2px); box-shadow:0 10px 22px rgba(26,107,138,0.35);}
  .btn-ghost{background:transparent; color:var(--navy); border-color:var(--line);}
  .btn-ghost:hover{border-color:var(--teal); color:var(--teal); transform:translateY(-2px);}
  .btn-white{background:#fff; color:var(--navy);}
  .btn-white:hover{transform:translateY(-2px); box-shadow:0 10px 24px rgba(0,0,0,0.18);}
  .btn svg{transition:transform .18s ease;}
  .btn:hover svg{transform:translateX(3px);}
  :focus-visible{outline:2px solid var(--teal-bright); outline-offset:3px;}

  /* NAV */
  header.nav{
    position:sticky; top:0; z-index:100; padding:14px 20px 0;
    background:linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0) 100%);
    pointer-events:none;
  }
  header.nav > *{pointer-events:auto;}
  .nav-inner{
    display:flex; align-items:center; justify-content:space-between;
    padding:10px 10px 10px 20px; max-width:1120px; margin:0 auto;
    background:rgba(255,255,255,0.82); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
    border:1px solid var(--line); border-radius:999px; box-shadow:0 2px 10px rgba(15,45,82,0.05);
    transition:box-shadow .25s ease, border-color .25s ease, background .25s ease;
  }
  header.nav.scrolled .nav-inner{box-shadow:0 10px 30px rgba(15,45,82,0.12); border-color:#D9E7EE; background:rgba(255,255,255,0.95);}
  .logo{display:flex; align-items:center; gap:9px; font-family:var(--font-display); font-weight:700; font-size:17px; color:var(--navy);}
  .logo img{height:32px; width:auto;}
  .nav-links{display:flex; align-items:center; gap:26px;}
  .nav-links a{font-size:14.5px; font-weight:500; color:var(--navy-soft); transition:color .15s ease; position:relative;}
  .nav-links a:hover{color:var(--teal);}
  .nav-links a::after{content:''; position:absolute; left:0; bottom:-6px; width:0; height:2px; background:var(--teal-bright); transition:width .2s ease;}
  .nav-links a:hover::after{width:100%;}
  .nav-links .btn-primary{display:none;}
  .nav-right{display:flex; align-items:center; gap:16px;}
  .nav-right .btn-primary{padding:10px 20px; font-size:14px;}
  .nav-toggle{display:none; background:none; border:none; cursor:pointer; padding:6px;}
  .nav-toggle span{display:block; width:20px; height:2px; background:var(--navy); margin:4.5px 0; border-radius:2px;}

  /* HERO */
  .hero{padding:48px 0 60px; background:linear-gradient(180deg,#ffffff 0%, var(--grey-bg) 100%); overflow:hidden;}
  .hero-grid{display:grid; grid-template-columns:1.15fr 1fr; gap:56px; align-items:center;}
  .hero h1{font-size:clamp(34px,4.3vw,54px); margin:18px 0 20px;}
  .hero h1 .accent{color:var(--teal);}
  .hero p.lead{font-size:18px; color:var(--muted); max-width:540px; margin-bottom:30px;}
  .hero-ctas{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:26px;}
  .hero-rating{display:flex; align-items:center; gap:10px; font-size:14px; color:var(--muted);}
  .stars{color:#F5A623; letter-spacing:2px;}

  /* Dashboard visual */
  .dash{
    position:relative; background:#fff; border-radius:var(--radius-lg);
    border:1px solid var(--line); box-shadow:var(--shadow-lg);
    padding:26px; max-width:440px; margin-left:auto;
  }
  .dash-top{display:flex; justify-content:space-between; align-items:center; margin-bottom:18px;}
  .dash-title{font-family:var(--font-mono); font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:.05em;}
  .dash-live{display:flex; align-items:center; gap:6px; font-family:var(--font-mono); font-size:11px; color:var(--teal-bright); font-weight:600;}
  .pulse{width:7px; height:7px; border-radius:50%; background:var(--teal-bright); animation:pulse 1.8s infinite;}
  @keyframes pulse{0%,100%{opacity:1; transform:scale(1);} 50%{opacity:.4; transform:scale(1.4);}}
  .sparkline{width:100%; height:100px; margin-bottom:6px;}
  .dash-stats{display:grid; grid-template-columns:1fr 1fr 1fr; gap:10px; margin-top:18px;}
  .dash-stat{background:var(--grey-bg); border-radius:12px; padding:12px 10px;}
  .dash-stat .num{font-family:var(--font-mono); font-weight:600; font-size:17px; color:var(--navy);}
  .dash-stat .lbl{font-size:10.5px; color:var(--muted); margin-top:2px;}
  .float-chip{
    position:absolute; background:#fff; border:1px solid var(--line); box-shadow:var(--shadow-md);
    border-radius:12px; padding:10px 14px; font-size:12.5px; font-weight:600; color:var(--navy);
    display:flex; align-items:center; gap:8px;
  }
  .float-chip .dot{width:7px; height:7px; border-radius:50%; background:var(--teal-bright);}
  .chip-1{top:-18px; left:-30px; animation:float1 6s ease-in-out infinite;}
  .chip-2{bottom:-16px; right:-24px; animation:float2 7s ease-in-out infinite;}
  @keyframes float1{0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);}}
  @keyframes float2{0%,100%{transform:translateY(0);} 50%{transform:translateY(10px);}}

  /* Logo marquee */
  /* Video-call mockup (hero + meet section) */
  .vc-mock{background:#0B1E36; border-radius:22px; overflow:hidden; box-shadow:var(--shadow-lg); border:1px solid rgba(255,255,255,0.08); max-width:560px; margin-left:auto;}
  .vc-topbar{display:flex; align-items:center; gap:10px; padding:12px 16px; background:rgba(255,255,255,0.04);}
  .vc-avatar-dot{width:26px; height:26px; border-radius:50%; background:linear-gradient(135deg,#1A6B8A,#24A5C5); display:flex; align-items:center; justify-content:center; font-size:10.5px; font-weight:700; color:#fff; flex-shrink:0;}
  .vc-name{font-size:13px; font-weight:600; color:#fff;}
  .vc-name span{color:#9FB4C7; font-weight:500;}
  .vc-frame{position:relative; aspect-ratio:16/10.5; background:#14293f; overflow:hidden;}
  .vc-frame img{width:100%; height:100%; object-fit:cover; display:block;}
  .vc-play{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:50px; height:50px; border-radius:50%; background:rgba(255,255,255,0.92); display:flex; align-items:center; justify-content:center; box-shadow:0 6px 20px rgba(0,0,0,.35);}
  .vc-you{position:absolute; bottom:14px; right:14px; width:104px; border-radius:10px; overflow:hidden; border:2px solid rgba(255,255,255,0.85); box-shadow:0 8px 22px rgba(0,0,0,.4);}
  .vc-you img{width:100%; display:block; aspect-ratio:1/1; object-fit:cover;}
  .vc-you-label{position:absolute; bottom:4px; left:6px; font-size:10px; color:#fff; font-weight:600; text-shadow:0 1px 3px rgba(0,0,0,.7);}
  .vc-toolbar{display:flex; align-items:center; justify-content:space-between; padding:11px 16px; background:rgba(255,255,255,0.04);}
  .vc-meet{font-size:11px; color:#9FB4C7; display:flex; align-items:center; gap:6px;}
  .vc-controls{display:flex; gap:6px;}
  .vc-ctrl{width:26px; height:26px; border-radius:50%; background:rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center;}
  .vc-ctrl svg{width:12px; stroke:#C7D6E5;}
  .vc-ctrl.end{background:#D64545;}
  .vc-ctrl.end svg{stroke:#fff;}

  /* Dark sections (meet / support) */
  .dark-section{padding:100px 0; background:var(--navy);}
  .dark-section .eyebrow{background:rgba(36,165,197,0.15); color:var(--teal-bright);}
  .dark-section h2{color:#fff;}
  .dark-section p.lead, .dark-section .section-head p{color:#B9CBDD;}
  .meet-grid{display:grid; grid-template-columns:1fr 1.05fr; gap:56px; align-items:center;}
  .meet-grid h2{font-size:clamp(28px,3.4vw,42px); margin:16px 0 16px;}
  .meet-ctas{display:flex; align-items:center; gap:22px; margin-top:26px; flex-wrap:wrap;}
  .meet-ctas a.link{font-size:14.5px; font-weight:600; color:#fff; display:inline-flex; align-items:center; gap:6px;}
  .meet-ctas a.link svg{width:13px;}

  .tc-grid{display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:52px;}
  .tc-card{background:rgba(255,255,255,0.03); border-radius:20px; overflow:hidden; border:1px solid rgba(255,255,255,0.08);}
  .tc-card .tc-img{aspect-ratio:16/10; overflow:hidden; position:relative;}
  .tc-card .tc-img img{width:100%; height:100%; object-fit:cover; display:block;}
  .tc-card .tc-text{padding:22px 24px 26px;}
  .tc-card h4{color:#fff; font-size:17px; margin-bottom:8px;}
  .tc-card p{color:#9FB4C7; font-size:14px;}
  .tc-card a{color:var(--teal-bright); font-weight:600;}
  /* chat mockup for coaching card */
  .chat-mock{background:#0B1E36; padding:16px; height:100%; display:flex; flex-direction:column; gap:8px; justify-content:center;}
  .chat-bubble{background:rgba(255,255,255,0.06); border-radius:12px; padding:10px 14px; font-size:12.5px; color:#D9E6EF; max-width:80%;}
  .chat-bubble.me{align-self:flex-end; background:var(--teal); color:#fff;}

  .support-grid{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;}
  .support-cards{display:flex; flex-direction:column; gap:14px;}
  .support-card{background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); border-radius:16px; padding:18px 20px; display:flex; gap:14px; align-items:flex-start; transition:border-color .2s ease, background .2s ease;}
  .support-card:hover{background:rgba(255,255,255,0.07); border-color:rgba(36,165,197,0.35);}
  .support-card .sc-icon{width:34px; height:34px; border-radius:10px; background:rgba(36,165,197,0.15); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
  .support-card .sc-icon svg{width:17px; stroke:var(--teal-bright);}
  .support-card h4{color:#fff; font-size:14.5px; margin-bottom:3px;}
  .support-card p{color:#9FB4C7; font-size:13px;}

  /* Comparison table */
  .compare-section{padding:100px 0; background:#fff;}
  .compare-grid{display:grid; grid-template-columns:1.1fr 0.9fr; gap:24px; align-items:start;}
  .compare-card{border-radius:22px; padding:32px;}
  .compare-card.us{background:linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); box-shadow:var(--shadow-lg);}
  .compare-card.them{background:var(--grey-bg); border:1px solid var(--line);}
  .compare-card h3{font-size:20px; margin-bottom:6px;}
  .compare-card.us h3{color:#fff;}
  .compare-card .cc-sub{font-size:13px; margin-bottom:20px;}
  .compare-card.us .cc-sub{color:#9FB4C7;}
  .compare-card.them .cc-sub{color:var(--muted);}
  .compare-row{display:flex; gap:12px; padding:11px 0; border-bottom:1px solid rgba(255,255,255,0.08);}
  .compare-card.them .compare-row{border-bottom-color:var(--line);}
  .compare-row:last-child{border-bottom:none;}
  .compare-icon{width:20px; height:20px; border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center; margin-top:1px;}
  .compare-card.us .compare-icon{background:rgba(36,165,197,0.2);}
  .compare-icon svg{width:11px;}
  .compare-card.us .compare-icon svg{stroke:var(--teal-bright);}
  .compare-card.them .compare-icon{background:#F3E2E1;}
  .compare-card.them .compare-icon svg{stroke:#C0504D;}
  .crt-title{font-size:14px; font-weight:600;}
  .compare-card.us .crt-title{color:#fff;}
  .compare-card.them .crt-title{color:var(--navy);}
  .crt-sub{font-size:12px; margin-top:2px;}
  .compare-card.us .crt-sub{color:#9FB4C7;}
  .compare-card.them .crt-sub{color:var(--muted);}

  @media (max-width:980px){
    .meet-grid, .support-grid, .compare-grid{grid-template-columns:1fr;}
    .tc-grid{grid-template-columns:1fr;}
  }

  .logo-strip{padding:30px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:#fff; overflow:hidden;}
  .logo-strip .strip-head{max-width:1240px; margin:0 auto 18px; padding:0 24px;}
  .logo-strip .label{font-family:var(--font-mono); font-size:11px; color:var(--muted); text-transform:uppercase; letter-spacing:.06em; white-space:nowrap;}
  .marquee{width:100%; overflow:hidden; -webkit-mask-image:linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%); mask-image:linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);}
  .marquee-track{display:flex; align-items:center; gap:56px; width:max-content; animation:marquee 28s linear infinite;}
  .marquee:hover .marquee-track{animation-play-state:paused;}
  .marquee-track span{font-family:var(--font-display); font-weight:600; font-size:16px; color:var(--navy-soft); opacity:.55; white-space:nowrap;}
  @keyframes marquee{from{transform:translateX(0);} to{transform:translateX(-50%);}}

  /* SERVICES BENTO */
  .services{padding:100px 0; background:#fff;}
  .section-head{max-width:640px; margin-bottom:52px;}
  .section-head h2{font-size:clamp(28px,3.4vw,42px); margin-bottom:14px;}
  .section-head p{color:var(--muted); font-size:17px;}
  .bento{display:grid; grid-template-columns:repeat(12,1fr); gap:20px;}
  .card{
    background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
    padding:28px; box-shadow:var(--shadow-sm); transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    display:flex; flex-direction:column; opacity:0; transform:translateY(18px);
  }
  .card.in-view{opacity:1; transform:translateY(0); transition:opacity .6s ease, transform .6s ease;}
  .card:hover{transform:translateY(-5px); box-shadow:var(--shadow-lg); border-color:#CFE8F1;}
  .card .icon{
    width:44px; height:44px; border-radius:12px; background:var(--navy);
    display:flex; align-items:center; justify-content:center; margin-bottom:18px;
  }
  .card .icon svg{width:22px; height:22px; stroke:#fff;}
  .card h3{font-size:19px; margin-bottom:8px;}
  .card p.desc{color:var(--muted); font-size:14.5px; margin-bottom:18px; flex-grow:1;}
  .card .more{font-size:14px; font-weight:600; color:var(--teal); display:inline-flex; align-items:center; gap:6px;}
  .card .more svg{width:14px; transition:transform .18s ease;}
  .card:hover .more svg{transform:translateX(4px);}
  .card-metrics{display:flex; gap:10px; flex-wrap:wrap; margin-top:auto; padding-top:16px; border-top:1px dashed var(--line);}
  .metric{background:var(--grey-bg); border-radius:10px; padding:8px 12px; flex:1; min-width:120px;}
  .metric .m-num{font-family:var(--font-mono); font-weight:600; font-size:13.5px; color:var(--navy);}
  .metric .m-lbl{font-size:11px; color:var(--muted); margin-top:1px;}

  .c-span-7{grid-column:span 7;}
  .c-span-5{grid-column:span 5;}
  .c-span-4{grid-column:span 4;}
  .c-span-12{grid-column:span 12;}
  .card-large{background:linear-gradient(160deg,#fff 0%, var(--bg-tint) 130%);}
  .card-full{flex-direction:row; align-items:center; gap:32px;}
  .card-full .cf-text{flex:1;}
  .card-full .card-metrics{flex:1; margin-top:0; border-top:none; padding-top:0;}

  /* STATS BAND */
  .stats-band{background:var(--navy); padding:80px 0; color:#fff;}
  .stats-band .section-head h2, .stats-band .section-head p{color:#fff;}
  .stats-band .section-head p{color:#B9CBDD;}
  .stats-band .eyebrow{background:rgba(36,165,197,0.15); color:var(--teal-bright);}
  .stats-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:0;}
  .stat-item{padding:0 28px; border-left:1px solid rgba(255,255,255,0.12);}
  .stat-item:first-child{border-left:none; padding-left:0;}
  .stat-num{font-family:var(--font-mono); font-weight:600; font-size:clamp(30px,3.2vw,44px); color:var(--teal-bright); display:flex; align-items:baseline; gap:2px;}
  .stat-lbl{color:#C7D6E5; font-size:14.5px; margin-top:8px;}

  /* WHY US */
  .why{padding:100px 0; background:var(--grey-bg);}
  .why-grid{display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center;}
  .feature-row{display:flex; gap:16px; padding:18px 0; border-bottom:1px solid var(--line);}
  .feature-row:first-child{padding-top:0;}
  .feature-row:last-child{border-bottom:none;}
  .feature-check{width:26px; height:26px; border-radius:8px; background:var(--bg-tint); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px;}
  .feature-check svg{width:14px; stroke:var(--teal);}
  .feature-row h4{font-size:16.5px; margin-bottom:4px;}
  .feature-row p{color:var(--muted); font-size:14.5px;}
  .live-card{background:#fff; border-radius:var(--radius-lg); border:1px solid var(--line); box-shadow:var(--shadow-lg); padding:8px;}
  .live-card-head{padding:16px 18px; display:flex; justify-content:space-between; align-items:center;}
  .live-card-head span{font-family:var(--font-mono); font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:.05em;}
  .live-row{display:flex; align-items:center; gap:14px; padding:14px 18px; border-top:1px solid var(--line);}
  .live-row .li-icon{width:36px; height:36px; border-radius:10px; background:var(--bg-tint); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
  .live-row .li-icon svg{width:17px; stroke:var(--teal);}
  .live-row .li-text{font-size:14px; font-weight:600; color:var(--navy);}
  .live-row .li-sub{font-size:12.5px; color:var(--muted); margin-top:1px;}
  .li-trend{margin-left:auto; font-family:var(--font-mono); font-size:12px; font-weight:600; color:var(--teal-bright); text-align:right;}

  /* PROCESS */
  .process{padding:100px 0; background:#fff;}
  .process-strip{position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:32px; margin-top:20px;}
  .process-strip::before{content:''; position:absolute; top:23px; left:6%; right:6%; height:2px; background:linear-gradient(90deg, var(--navy), var(--teal-bright)); z-index:0;}
  .p-step{position:relative; z-index:1;}
  .p-num{width:46px; height:46px; border-radius:50%; background:var(--teal); color:#fff; font-family:var(--font-mono); font-weight:600; font-size:15px; display:flex; align-items:center; justify-content:center; margin-bottom:18px; box-shadow:0 6px 16px rgba(26,107,138,0.3);}
  .p-step h4{font-size:17px; margin-bottom:8px;}
  .p-step p{color:var(--muted); font-size:14px;}

  /* TESTIMONIALS */
  .testimonials{padding:100px 0; background:var(--grey-bg);}
  .t-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
  .t-card{background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:30px; box-shadow:var(--shadow-sm);}
  .t-quote-mark{font-family:var(--font-display); font-size:44px; color:var(--teal-bright); line-height:1; margin-bottom:6px;}
  .t-card p{font-size:15px; color:var(--navy-soft); margin-bottom:22px;}
  .t-person{display:flex; align-items:center; gap:12px;}
  .t-avatar{width:42px; height:42px; border-radius:50%; background:var(--navy); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--font-mono); font-weight:600; font-size:13px;}
  .t-name{font-weight:700; font-size:14.5px; color:var(--navy);}
  .t-role{font-size:12.5px; color:var(--muted);}

  /* FAQ */
  .faq{padding:100px 0; background:#fff;}
  .faq-list{max-width:820px;}
  .faq-item{border-bottom:1px solid var(--line); padding:22px 0;}
  .faq-item summary{
    font-family:var(--font-display); font-weight:600; font-size:17px; color:var(--navy);
    cursor:pointer; list-style:none; display:flex; justify-content:space-between; align-items:center; gap:20px;
  }
  .faq-item summary::-webkit-details-marker{display:none;}
  .faq-item summary::after{
    content:'+'; font-family:var(--font-body); font-weight:400; font-size:22px; color:var(--teal);
    flex-shrink:0; transition:transform .2s ease;
  }
  .faq-item[open] summary::after{transform:rotate(45deg);}
  .faq-item p{color:var(--muted); font-size:15px; margin-top:14px; max-width:700px;}

  /* CTA BAND */
  .cta-band{padding:90px 0; background:linear-gradient(120deg, var(--teal) 0%, var(--teal-bright) 100%); text-align:center;}
  .cta-band h2{color:#fff; font-size:clamp(28px,3.6vw,42px); margin-bottom:14px;}
  .cta-band p{color:rgba(255,255,255,0.9); font-size:17px; margin-bottom:30px;}

  /* FOOTER */
  footer{background:var(--navy-deep); color:#B9CBDD; padding:70px 0 30px;}
  .footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1.2fr 1fr; gap:40px; margin-bottom:50px;}
  .footer-logo{display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-weight:700; font-size:20px; color:#fff; margin-bottom:14px;}
  .footer-logo img{height:28px; width:auto;}
  .footer-grid p{font-size:14px; line-height:1.6; max-width:280px; color:#8FA6BD;}
  .footer-col h5{font-family:var(--font-mono); font-size:12px; text-transform:uppercase; letter-spacing:.06em; color:#5B7A99; margin-bottom:16px;}
  .footer-col a{display:block; font-size:14px; color:#B9CBDD; margin-bottom:9px; transition:color .15s ease;}
  .footer-col a:hover{color:var(--teal-bright);}
  .footer-bottom{border-top:1px solid rgba(255,255,255,0.08); padding-top:24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:13px; color:#5B7A99;}
  .social-row{display:flex; gap:12px;}
  .social-row a{width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,0.06); display:flex; align-items:center; justify-content:center;}
  .social-row a:hover{background:var(--teal);}
  .social-row svg{width:15px; stroke:#B9CBDD;}

  @media (max-width: 980px){
    .hero-grid{grid-template-columns:1fr; gap:44px;}
    .dash{margin:0 auto;}
    .float-chip{display:none;}
    .why-grid{grid-template-columns:1fr;}
    .stats-grid{grid-template-columns:repeat(2,1fr); gap:28px;}
    .stat-item{border-left:none; padding-left:0;}
    .t-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr 1fr;}
    .process-strip{grid-template-columns:1fr 1fr; gap:36px 24px;}
    .process-strip::before{display:none;}
  }
  @media (max-width: 760px){
    .nav-links{position:fixed; top:78px; left:20px; right:20px; background:#fff; flex-direction:column; align-items:flex-start; padding:22px; gap:16px; border:1px solid var(--line); border-radius:20px; box-shadow:var(--shadow-lg); transform:translateY(-20px); opacity:0; visibility:hidden; transition:transform .22s ease, opacity .22s ease, visibility .22s; z-index:90;}
    .nav-links.open{transform:translateY(0); opacity:1; visibility:visible;}
    .nav-toggle{display:block;}
    .nav-right .btn-primary{display:none;}
    .nav-links .btn-primary{display:inline-flex; margin-top:6px;}
    .c-span-7,.c-span-5,.c-span-4,.c-span-12{grid-column:span 12;}
    .card-full{flex-direction:column; align-items:flex-start;}
    .footer-grid{grid-template-columns:1fr;}
  }

/* ---- rules that previously lived only in services.html ---- */

  .nav-links a.active{color:var(--teal);}

  .nav-links a.active::after{width:100%;}


  /* PAGE HERO */
  .page-hero{padding:56px 0 64px; background:linear-gradient(180deg,#ffffff 0%, var(--grey-bg) 100%); text-align:center;}

  .page-hero h1{font-size:clamp(30px,4.4vw,50px); margin:16px auto 18px; max-width:780px;}

  .page-hero p.lead{color:var(--muted); font-size:17.5px; max-width:640px; margin:0 auto 30px;}

  .page-hero .hero-ctas{display:flex; gap:14px; justify-content:center; flex-wrap:wrap;}

  .breadcrumb{display:flex; align-items:center; justify-content:center; gap:8px; font-size:13.5px; color:var(--muted); margin-bottom:18px;}

  .breadcrumb a{color:var(--teal); font-weight:600;}

  .breadcrumb svg{width:12px; stroke:var(--muted);}


  /* Quick nav pills */
  .quicknav{padding:0 0 40px; background:var(--grey-bg);}

  .quicknav-inner{display:flex; flex-wrap:wrap; gap:10px; justify-content:center;}

  .qn-pill{
    font-size:13.5px; font-weight:600; color:var(--navy-soft);
    background:#fff; border:1px solid var(--line); padding:9px 16px;
    border-radius:999px; transition:border-color .15s ease, color .15s ease, transform .15s ease;
  }

  .qn-pill:hover{border-color:var(--teal-bright); color:var(--teal); transform:translateY(-1px);}


  /* SERVICE DETAIL SECTIONS */
  .service-detail{padding:76px 0; border-bottom:1px solid var(--line);}

  .service-detail:nth-child(even){background:var(--grey-bg);}

  .sd-grid{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;}

  .sd-grid.reverse .sd-text{order:2;}

  .sd-grid.reverse .sd-visual{order:1;}

  .sd-icon{width:52px; height:52px; border-radius:14px; background:var(--navy); display:flex; align-items:center; justify-content:center; margin-bottom:20px;}

  .sd-icon svg{width:26px; height:26px; stroke:#fff;}

  .sd-text h2{font-size:clamp(24px,2.8vw,34px); margin-bottom:14px;}

  .sd-text p.sd-desc{color:var(--muted); font-size:16px; margin-bottom:22px;}

  .sd-list{margin-bottom:26px;}

  .sd-list li{display:flex; gap:12px; padding:10px 0; font-size:15px; color:var(--navy-soft); align-items:flex-start;}

  .sd-check{width:20px; height:20px; border-radius:6px; background:var(--bg-tint); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px;}

  .sd-check svg{width:11px; stroke:var(--teal);}

  .sd-visual{
    background:linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius:var(--radius-lg); padding:34px; box-shadow:var(--shadow-lg); color:#fff;
  }

  .sd-visual .sv-label{font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.06em; color:var(--teal-bright); margin-bottom:16px;}

  .sd-visual .sv-row{display:flex; justify-content:space-between; align-items:center; padding:14px 0; border-bottom:1px solid rgba(255,255,255,0.1);}

  .sd-visual .sv-row:last-child{border-bottom:none;}

  .sd-visual .sv-name{font-size:14.5px; font-weight:600;}

  .sd-visual .sv-sub{font-size:12.5px; color:#9FB4C7; margin-top:2px;}

  .sd-visual .sv-badge{font-family:var(--font-mono); font-size:11px; font-weight:600; color:var(--teal-bright); background:rgba(36,165,197,0.15); padding:5px 10px; border-radius:999px; white-space:nowrap;}


  /* FAQ (reuse) */
  .faq{padding:100px 0; background:#fff;}

    .sd-grid{grid-template-columns:1fr; gap:32px;}

    .sd-grid.reverse .sd-text{order:1;}

    .sd-grid.reverse .sd-visual{order:2;}

/* ==========================================================================
   Phase 1 additions — interior pages, forms, pricing, industries.
   Uses the existing design tokens only, so nothing here invents new colours.
   ========================================================================== */

/* --- breadcrumbs --------------------------------------------------------- */
.breadcrumbs{font-size:13.5px; color:var(--muted); margin-bottom:22px; letter-spacing:.01em;}
.breadcrumbs a{color:var(--muted); text-decoration:none; border-bottom:1px solid transparent;}
.breadcrumbs a:hover{color:var(--teal); border-bottom-color:var(--teal);}
.breadcrumbs span{margin:0 8px; color:var(--line);}
.page-hero .breadcrumbs{display:flex; justify-content:center; align-items:center;}
.page-hero .lead{color:var(--muted); font-size:17.5px; max-width:660px; margin:0 auto 30px;}

/* --- larger buttons + CTA sub-line -------------------------------------- */
.btn-lg{padding:15px 30px; font-size:15.5px;}
.cta-alt{margin-top:22px; font-size:14.5px; color:rgba(255,255,255,0.88);}
.cta-alt a{color:#fff; text-decoration:underline; text-underline-offset:3px;}
.section-sub{color:var(--muted); font-size:17px;}

/* --- generic prose blocks (legal pages, about) -------------------------- */
.prose{max-width:760px; margin:0 auto;}
.prose h2{font-size:clamp(22px,2.6vw,30px); margin:44px 0 14px; color:var(--navy);}
.prose h3{font-size:19px; margin:30px 0 10px; color:var(--navy);}
.prose p{color:var(--muted); font-size:16.5px; line-height:1.75; margin-bottom:16px;}
.prose ul{margin:0 0 18px 22px;}
.prose li{color:var(--muted); font-size:16.5px; line-height:1.75; margin-bottom:9px;}
.prose strong{color:var(--navy);}
.prose a{color:var(--teal);}
.prose .updated{font-size:14px; color:var(--muted); font-style:italic; margin-bottom:30px;}

/* --- two-column feature rows ------------------------------------------- */
.split{display:grid; grid-template-columns:1.05fr .95fr; gap:60px; align-items:center;}
.split-media{background:linear-gradient(140deg,var(--navy) 0%,var(--teal) 100%); border-radius:var(--radius-lg); padding:34px; color:#fff; box-shadow:var(--shadow-lg);}
.split-media h4{color:#fff; font-size:17px; margin-bottom:18px; font-family:var(--font-display);}
.split-media .sm-row{display:flex; gap:12px; align-items:flex-start; padding:13px 0; border-top:1px solid rgba(255,255,255,0.14);}
.split-media .sm-row:first-of-type{border-top:none;}
.split-media .sm-k{font-family:var(--font-mono); font-size:12px; color:var(--teal-bright); min-width:52px; padding-top:2px;}
.split-media .sm-v{font-size:14.5px; color:rgba(255,255,255,0.92); line-height:1.6;}
@media (max-width:980px){.split{grid-template-columns:1fr; gap:36px;}}

/* --- industry / service card grid -------------------------------------- */
.tile-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
@media (max-width:980px){.tile-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:640px){.tile-grid{grid-template-columns:1fr;}}
.tile{background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); padding:26px; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;}
.tile:hover{transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:rgba(36,165,197,0.45);}
.tile-ico{width:44px; height:44px; border-radius:12px; background:var(--bg-tint); display:flex; align-items:center; justify-content:center; margin-bottom:16px;}
.tile-ico svg{width:22px; height:22px; stroke:var(--teal); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round;}
.tile h3{font-size:18px; margin-bottom:9px; color:var(--navy);}
.tile p{color:var(--muted); font-size:14.8px; line-height:1.65; margin-bottom:14px;}
.tile .tile-link{font-size:14px; font-weight:600; color:var(--teal); display:inline-flex; gap:6px; align-items:center;}
.tile ul{margin:0 0 14px 18px;}
.tile li{color:var(--muted); font-size:14.4px; line-height:1.6; margin-bottom:6px;}

/* --- pricing ------------------------------------------------------------ */
.price-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:stretch;}
@media (max-width:980px){.price-grid{grid-template-columns:1fr; max-width:520px; margin:0 auto;}}
.price-card{background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:32px 28px; display:flex; flex-direction:column; position:relative;}
.price-card.featured{border-color:var(--teal); box-shadow:0 18px 44px rgba(26,107,138,0.16); transform:translateY(-6px);}
@media (max-width:980px){.price-card.featured{transform:none;}}
.price-badge{position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--teal); color:#fff; font-size:11.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:6px 14px; border-radius:100px; white-space:nowrap;}
.price-card h3{font-size:19px; margin-bottom:6px; color:var(--navy);}
.price-card .p-for{font-size:14px; color:var(--muted); margin-bottom:20px; min-height:42px;}
.price-amt{font-family:var(--font-display); font-size:38px; font-weight:700; color:var(--navy); line-height:1;}
.price-unit{font-size:14.5px; color:var(--muted); margin-bottom:22px; margin-top:6px;}
.price-card ul{list-style:none; margin:0 0 26px; padding:0; flex-grow:1;}
.price-card li{display:flex; gap:10px; align-items:flex-start; font-size:14.6px; color:var(--muted); line-height:1.6; padding:8px 0; border-top:1px solid var(--line);}
.price-card li:first-child{border-top:none;}
.price-card li svg{width:17px; height:17px; flex-shrink:0; margin-top:2px; stroke:var(--teal); fill:none; stroke-width:2.4; stroke-linecap:round; stroke-linejoin:round;}
.price-note{text-align:center; color:var(--muted); font-size:15px; max-width:620px; margin:40px auto 0;}

/* --- contact form ------------------------------------------------------- */
.contact-wrap{display:grid; grid-template-columns:1.1fr .9fr; gap:54px; align-items:start;}
@media (max-width:980px){.contact-wrap{grid-template-columns:1fr; gap:38px;}}
.form-card{background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:32px; box-shadow:var(--shadow-md);}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
@media (max-width:640px){.form-row{grid-template-columns:1fr;}}
.field{margin-bottom:17px; display:flex; flex-direction:column;}
.field label{font-size:13.5px; font-weight:600; color:var(--navy); margin-bottom:7px;}
.field .req{color:var(--teal); margin-left:2px;}
.field input, .field select, .field textarea{
  font-family:var(--font-body); font-size:15px; color:var(--ink);
  padding:12px 14px; border:1.5px solid var(--line); border-radius:10px;
  background:#fff; transition:border-color .16s ease, box-shadow .16s ease; width:100%;
}
.field textarea{resize:vertical; min-height:118px; line-height:1.6;}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--teal); box-shadow:0 0 0 3px rgba(36,165,197,0.15);
}
.field input:invalid:not(:placeholder-shown){border-color:#D4574B;}
.field .hint{font-size:12.5px; color:var(--muted); margin-top:6px;}
.field-error{font-size:12.8px; color:#C4463A; margin-top:6px; display:none;}
.field.has-error .field-error{display:block;}
.field.has-error input, .field.has-error select, .field.has-error textarea{border-color:#D4574B;}
.hp-field{position:absolute; left:-9999px; opacity:0; height:0; overflow:hidden;}
.form-card .btn{width:100%; justify-content:center; margin-top:6px;}
.form-consent{font-size:12.8px; color:var(--muted); margin-top:16px; line-height:1.6; text-align:center;}
.form-consent a{color:var(--teal);}
.form-status{border-radius:10px; padding:14px 16px; font-size:14.5px; margin-bottom:18px; display:none;}
.form-status.ok{display:block; background:#E6F6EC; color:#1B6B3A; border:1px solid #B8E2C8;}
.form-status.err{display:block; background:#FDECEA; color:#A6342A; border:1px solid #F3C4BF;}

/* contact sidebar */
.contact-aside h3{font-size:20px; margin-bottom:14px; color:var(--navy);}
.contact-aside p{color:var(--muted); font-size:15.5px; line-height:1.7; margin-bottom:22px;}
.ci-row{display:flex; gap:14px; align-items:flex-start; padding:16px 0; border-top:1px solid var(--line);}
.ci-row:first-of-type{border-top:none;}
.ci-ico{width:38px; height:38px; border-radius:10px; background:var(--bg-tint); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.ci-ico svg{width:18px; height:18px; stroke:var(--teal); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round;}
.ci-k{font-size:12.5px; text-transform:uppercase; letter-spacing:.07em; color:var(--muted); font-weight:600; margin-bottom:3px;}
.ci-v{font-size:15.5px; color:var(--navy); font-weight:600;}
.ci-v a{color:var(--navy);}
.ci-v a:hover{color:var(--teal);}
.ci-sub{font-size:13.5px; color:var(--muted); margin-top:3px;}

/* --- comparison table (pricing / industries) --------------------------- */
.tbl-wrap{overflow-x:auto; border:1px solid var(--line); border-radius:var(--radius-md); background:#fff;}
table.cmp{width:100%; border-collapse:collapse; min-width:620px;}
table.cmp th, table.cmp td{padding:15px 18px; text-align:left; font-size:14.8px; border-bottom:1px solid var(--line);}
table.cmp thead th{background:var(--grey-bg); color:var(--navy); font-family:var(--font-display); font-size:14px; font-weight:600; letter-spacing:.01em;}
table.cmp td{color:var(--muted); line-height:1.6;}
table.cmp td:first-child{color:var(--navy); font-weight:600;}
table.cmp tbody tr:last-child td{border-bottom:none;}
table.cmp .yes{color:#1B6B3A; font-weight:600;}
table.cmp .no{color:#A6342A;}

/* --- 404 ---------------------------------------------------------------- */
.err-wrap{text-align:center; padding:110px 0 100px;}
.err-code{font-family:var(--font-mono); font-size:70px; font-weight:600; color:var(--teal-bright); line-height:1; margin-bottom:18px;}
.err-wrap h1{font-size:clamp(26px,3.4vw,38px); margin-bottom:14px;}
.err-wrap p{color:var(--muted); font-size:17px; max-width:520px; margin:0 auto 30px;}
.err-links{display:flex; gap:14px; justify-content:center; flex-wrap:wrap;}

/* --- process steps (how it works) -------------------------------------- */
.steps{counter-reset:step; max-width:820px; margin:0 auto;}
.step{display:grid; grid-template-columns:64px 1fr; gap:24px; padding:28px 0; border-top:1px solid var(--line);}
.step:first-child{border-top:none;}
.step-n{width:52px; height:52px; border-radius:14px; background:var(--bg-tint); color:var(--teal); font-family:var(--font-display); font-size:19px; font-weight:700; display:flex; align-items:center; justify-content:center;}
.step h3{font-size:19.5px; margin-bottom:9px; color:var(--navy);}
.step p{color:var(--muted); font-size:15.6px; line-height:1.72; margin-bottom:10px;}
.step .step-meta{font-family:var(--font-mono); font-size:12.5px; color:var(--teal); text-transform:uppercase; letter-spacing:.06em;}
@media (max-width:640px){.step{grid-template-columns:1fr; gap:14px;}}

/* --- misc --------------------------------------------------------------- */
.section-pad{padding:86px 0;}
.section-pad-sm{padding:62px 0;}
.bg-tint{background:var(--grey-bg);}
.text-center{text-align:center;}
.mx-auto{margin-left:auto; margin-right:auto;}
.nav-links a.active{color:var(--teal);}
.anchor-offset{scroll-margin-top:90px;}
