/* Vihaan Fleet — shared design system
   One stylesheet for every page (home + legal). Keeps the site consistent (DRY). */
:root{
  --brand:#0b3a5b; --brand-2:#1e73be; --accent:#f4a11e;
  --ink:#12212e; --muted:#5b6b78; --line:#e6ebf0; --bg:#ffffff; --soft:#f5f8fb;
  --maxw:1080px; --prose:760px; --radius:14px;
  --shadow:0 10px 30px rgba(11,58,91,.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;color:var(--ink);background:var(--bg);line-height:1.65;-webkit-font-smoothing:antialiased}
a{color:var(--brand-2);text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 20px}
.skip{position:absolute;left:-9999px}
.skip:focus{left:12px;top:12px;background:#fff;padding:8px 14px;border-radius:8px;z-index:100}

/* Header / nav */
header{position:sticky;top:0;background:rgba(255,255,255,.95);backdrop-filter:blur(6px);border-bottom:1px solid var(--line);z-index:20}
.nav{display:flex;align-items:center;justify-content:space-between;padding:14px 20px;max-width:var(--maxw);margin:0 auto}
.logo{display:flex;align-items:center;gap:10px;font-weight:800;color:var(--brand);font-size:20px}
.logo:hover{text-decoration:none}
.logo .dot{display:inline-flex;width:34px;height:34px;border-radius:9px;background:var(--brand);color:#fff;align-items:center;justify-content:center;font-size:18px}
.nav-links a{color:var(--ink);margin-left:22px;font-weight:600;font-size:15px}
.btn{display:inline-block;background:var(--accent);color:#12212e;font-weight:700;padding:12px 22px;border-radius:10px;border:0;cursor:pointer}
.btn:hover{text-decoration:none;filter:brightness(.96)}
.btn.ghost{background:transparent;border:1.5px solid var(--brand);color:var(--brand)}

/* Hero (home) */
.hero{background:linear-gradient(160deg,var(--brand) 0%,#124a72 100%);color:#fff;padding:72px 0 84px}
.hero h1{font-size:clamp(28px,5vw,46px);line-height:1.15;margin:0 0 16px;font-weight:800}
.hero p{font-size:18px;color:#d7e6f2;max-width:620px;margin:0 0 28px}
.hero .cta{display:flex;gap:14px;flex-wrap:wrap}
.hero .btn.ghost{border-color:#fff;color:#fff}

/* Interior page header */
.page-head{background:var(--soft);border-bottom:1px solid var(--line);padding:48px 0}
.page-head h1{margin:0 0 6px;color:var(--brand);font-size:clamp(26px,4vw,38px)}
.page-head .muted{color:var(--muted);margin:0}
.breadcrumb{font-size:14px;color:var(--muted);margin:0 0 10px}

/* Sections */
section{padding:64px 0}
.soft{background:var(--soft)}
h2{font-size:clamp(24px,3.5vw,32px);margin:0 0 10px;color:var(--brand)}
.lead{color:var(--muted);max-width:680px;margin:0 0 34px}

/* Cards / grid */
.grid{display:grid;gap:22px}
.g3{grid-template-columns:repeat(3,1fr)}
.card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:24px}
.card h3{margin:0 0 6px;font-size:19px}
.card .ic{font-size:26px;margin-bottom:10px}

/* Pricing */
.price{border-radius:16px;border:2px solid var(--brand);padding:28px;background:#fff;box-shadow:var(--shadow);display:flex;flex-direction:column;max-width:360px}
.price .amt{font-size:40px;font-weight:800;color:var(--brand);margin:8px 0}
.price .amt small{font-size:16px;color:var(--muted);font-weight:600}
.price ul{list-style:none;padding:0;margin:14px 0 22px;color:var(--muted)}
.price li{padding:7px 0;border-bottom:1px dashed var(--line)}

/* Steps */
.step{display:flex;gap:16px;align-items:flex-start;margin-bottom:18px;max-width:640px}
.step .n{flex:0 0 auto;width:38px;height:38px;border-radius:50%;background:var(--brand);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700}

/* Contact */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.contact-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:26px}
.contact-card strong{color:var(--brand)}

/* Legal / prose pages */
.prose{max-width:var(--prose);margin:0 auto;padding:48px 20px}
.prose h2{font-size:22px;margin:34px 0 10px;color:var(--brand)}
.prose h3{font-size:18px;margin:22px 0 8px;color:var(--ink)}
.prose p,.prose li{color:#20323f}
.prose ul{padding-left:22px}
.prose li{margin:6px 0}
.prose .updated{color:var(--muted);font-size:14px;margin-bottom:8px}
.prose .toc{background:var(--soft);border:1px solid var(--line);border-radius:12px;padding:16px 20px;margin:24px 0}
.prose .toc strong{display:block;margin-bottom:6px;color:var(--brand)}
.prose .toc a{display:inline-block;margin:2px 14px 2px 0;font-size:14px}
.prose .note{background:#fff8ec;border:1px solid #f4dfae;border-radius:10px;padding:14px 18px;font-size:14px;color:#6a5320}

/* Footer */
footer{background:var(--brand);color:#cfe0ee;padding:40px 0}
footer .cols{display:flex;justify-content:space-between;gap:24px;flex-wrap:wrap}
footer a{color:#fff}
footer .legal{font-size:13px;color:#9fbdd4;margin-top:12px;max-width:560px}
footer nav a{display:block;margin:4px 0}

@media(max-width:820px){
  .g3{grid-template-columns:1fr 1fr}
  .contact-grid{grid-template-columns:1fr}
  .nav-links{display:none}
}
@media(max-width:520px){.g3{grid-template-columns:1fr}}
