/* ==========================================================================
   IndiaWebHost — design system
   Single stylesheet, no build step, no external requests.
   ========================================================================== */

:root {
  /* Brand */
  --brand:        #1e3a8a;   /* deep indigo — trust, the primary */
  --brand-600:    #1d4ed8;
  --brand-500:    #2563eb;
  --brand-100:    #dbeafe;
  --brand-50:     #eff6ff;

  --accent:       #f97316;   /* saffron — CTAs, price highlights */
  --accent-600:   #ea580c;
  --accent-50:    #fff7ed;

  --green:        #059669;
  --green-50:     #ecfdf5;
  --red:          #dc2626;
  --amber:        #d97706;

  /* Neutrals */
  --ink:          #0f172a;
  --body:         #334155;
  --muted:        #64748b;
  --line:         #e2e8f0;
  --line-soft:    #f1f5f9;
  --surface:      #ffffff;
  --canvas:       #f8fafc;

  /* Type */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Shape */
  --r-sm: 6px;
  --r:    10px;
  --r-lg: 16px;
  --r-xl: 22px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .04);
  --shadow:    0 4px 12px rgba(15, 23, 42, .07), 0 2px 4px rgba(15, 23, 42, .04);
  --shadow-lg: 0 18px 40px rgba(15, 23, 42, .12), 0 4px 12px rgba(15, 23, 42, .06);
  --shadow-brand: 0 18px 40px rgba(30, 58, 138, .22);

  --wrap: 1180px;
  --nav-h: 72px;
}

/* --------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 4.6vw, 3.25rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.35rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1rem; }

a { color: var(--brand-600); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--brand); text-decoration: underline; }

img, svg { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
strong { color: var(--ink); font-weight: 650; }
small { font-size: .85rem; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

:focus-visible { outline: 3px solid var(--brand-500); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--brand); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 var(--r) 0;
}
.skip-link:focus { left: 0; }

/* Label text that screen readers must announce but sighted users don't need. */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--canvas { background: var(--canvas); }
.section--line { border-top: 1px solid var(--line); }

.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

.section-head { max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3.25rem); text-align: center; }
.section-head p { color: var(--muted); font-size: 1.075rem; margin-bottom: 0; }
.section-head h2 { margin-bottom: .6rem; }

.eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--brand-600); background: var(--brand-50);
  padding: .3rem .75rem; border-radius: 100px; margin-bottom: .9rem;
}

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: inherit; font-size: .95rem; font-weight: 650; line-height: 1;
  padding: .85rem 1.5rem; border-radius: var(--r); border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .12s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(249, 115, 22, .32); }
.btn-primary:hover { background: var(--accent-600); color: #fff; box-shadow: 0 8px 22px rgba(249, 115, 22, .4); }

.btn-brand { background: var(--brand); color: #fff; box-shadow: 0 4px 14px rgba(30, 58, 138, .28); }
.btn-brand:hover { background: var(--brand-600); color: #fff; box-shadow: 0 8px 22px rgba(30, 58, 138, .36); }

.btn-outline { background: transparent; color: var(--brand); border-color: var(--line); }
.btn-outline:hover { background: var(--brand-50); border-color: var(--brand-500); color: var(--brand); }

.btn-ghost-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost-light:hover { background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.6); }

.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; border-radius: var(--r); }
.btn-sm { padding: .6rem 1rem; font-size: .85rem; }
.btn-block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.btn-row--center { justify-content: center; }

/* --------------------------------------------------------------------------
   Header / nav
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav { display: flex; align-items: center; gap: 2rem; height: var(--nav-h); }

.logo { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.2rem; color: var(--ink); letter-spacing: -.03em; flex-shrink: 0; }
.logo:hover { text-decoration: none; color: var(--ink); }
.logo-mark { width: 34px; height: 34px; flex-shrink: 0; border-radius: 9px; }
.logo span.in { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; flex: 1; }
.nav-links a {
  display: block; padding: .55rem .8rem; border-radius: var(--r-sm);
  color: var(--body); font-weight: 550; font-size: .94rem;
}
.nav-links a:hover { background: var(--brand-50); color: var(--brand); text-decoration: none; }
.nav-links a.active { color: var(--brand); background: var(--brand-50); font-weight: 650; }

.nav-actions { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }

.nav-toggle {
  display: none; background: none; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  width: 42px; height: 42px; cursor: pointer; align-items: center; justify-content: center; padding: 0;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); position: relative; border-radius: 2px; transition: background .15s; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav { gap: 1rem; justify-content: space-between; }
  .nav-links {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: .5rem 20px 1rem; box-shadow: var(--shadow); display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .8rem .5rem; border-radius: var(--r-sm); }
  .nav-actions .btn-outline { display: none; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #16307a 0%, #1e3a8a 42%, #2547a3 100%);
  color: #fff; padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(4rem, 9vw, 7rem);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(720px circle at 88% 8%, rgba(249, 115, 22, .28), transparent 55%),
    radial-gradient(560px circle at 4% 92%, rgba(37, 99, 235, .45), transparent 58%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(255,255,255,.85); max-width: 560px; margin-bottom: 1.9rem; }

.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 3.5rem; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.24);
  color: #fff; font-size: .84rem; font-weight: 600;
  padding: .4rem .9rem; border-radius: 100px; margin-bottom: 1.4rem;
  backdrop-filter: blur(6px);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,.25); }

.hero-points { list-style: none; padding: 0; margin: 1.9rem 0 0; display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; }
.hero-points li { display: flex; align-items: center; gap: .45rem; font-size: .92rem; color: rgba(255,255,255,.88); }
.hero-points svg { flex-shrink: 0; }

/* Hero price card */
.price-card-hero {
  background: #fff; border-radius: var(--r-xl); padding: 2rem;
  box-shadow: 0 30px 60px rgba(8, 20, 60, .4); color: var(--body);
}
.price-card-hero .plan-name { font-size: .8rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--accent); margin-bottom: .3rem; }
.price-card-hero .amount { display: flex; align-items: baseline; gap: .2rem; margin-bottom: .2rem; }
.price-card-hero .amount .rs { font-size: 1.6rem; font-weight: 700; color: var(--ink); }
.price-card-hero .amount .num { font-size: 3.4rem; font-weight: 800; color: var(--ink); letter-spacing: -.04em; line-height: 1; }
.price-card-hero .amount .per { font-size: 1rem; color: var(--muted); font-weight: 550; }
.price-card-hero .renew-note {
  display: flex; align-items: center; gap: .45rem;
  background: var(--green-50); color: #047857; border: 1px solid #a7f3d0;
  font-size: .86rem; font-weight: 600; padding: .55rem .8rem; border-radius: var(--r-sm); margin: 1rem 0 1.4rem;
}
.price-card-hero ul { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.price-card-hero li { display: flex; align-items: flex-start; gap: .6rem; padding: .42rem 0; font-size: .93rem; }

/* --------------------------------------------------------------------------
   Trust bar
   -------------------------------------------------------------------------- */
.trust-bar { background: var(--canvas); border-bottom: 1px solid var(--line); padding: 1.75rem 0; }
.trust-items { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 1.5rem 2rem; }
.trust-item { display: flex; align-items: center; gap: .7rem; }
.trust-item .t-val { font-size: 1.35rem; font-weight: 800; color: var(--ink); line-height: 1.1; letter-spacing: -.02em; }
.trust-item .t-lbl { font-size: .82rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   Feature cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.75rem; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--brand-100); }
.card h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.card p { color: var(--muted); font-size: .93rem; margin-bottom: 0; }

.icon-badge {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: var(--brand-50); color: var(--brand-600); margin-bottom: 1.1rem;
}
.icon-badge.accent { background: var(--accent-50); color: var(--accent-600); }
.icon-badge.green  { background: var(--green-50);  color: var(--green); }

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
@media (max-width: 940px) { .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

.plan {
  position: relative; background: var(--surface);
  border: 1.5px solid var(--line); border-radius: var(--r-lg);
  padding: 2rem 1.75rem; display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.plan--featured {
  border-color: var(--brand); box-shadow: var(--shadow-brand);
  transform: scale(1.025);
}
.plan--featured:hover { transform: scale(1.025) translateY(-4px); }
@media (max-width: 940px) { .plan--featured, .plan--featured:hover { transform: none; } }

.plan-flag {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  background: var(--brand); color: #fff; font-size: .72rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 100px;
  white-space: nowrap;
}

.plan-name { font-size: 1.15rem; font-weight: 750; color: var(--ink); margin-bottom: .2rem; }
.plan-for  { font-size: .87rem; color: var(--muted); margin-bottom: 1.4rem; min-height: 2.6em; }

.plan-price { display: flex; align-items: baseline; gap: .15rem; margin-bottom: .15rem; }
.plan-price .rs  { font-size: 1.35rem; font-weight: 700; color: var(--ink); }
.plan-price .num { font-size: 2.85rem; font-weight: 800; color: var(--ink); letter-spacing: -.04em; line-height: 1; }
.plan-price .per { font-size: .95rem; color: var(--muted); font-weight: 550; margin-left: .15rem; }

.plan-billed { font-size: .83rem; color: var(--muted); margin-bottom: .9rem; }

.plan-renew {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--green-50); color: #047857; border: 1px solid #a7f3d0;
  font-size: .8rem; font-weight: 650; padding: .4rem .7rem; border-radius: var(--r-sm); margin-bottom: 1.5rem;
}

.plan-cta { margin-bottom: 1.5rem; }

.plan-features { list-style: none; padding: 0; margin: 0; flex: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: .6rem; padding: .45rem 0; font-size: .9rem; border-top: 1px solid var(--line-soft); }
.plan-features li:first-child { border-top: 0; }
.plan-features li .tick { flex-shrink: 0; margin-top: .15rem; }
.plan-features li.muted { color: var(--muted); }

.tick { color: var(--green); flex-shrink: 0; }
.cross { color: #cbd5e1; flex-shrink: 0; }

.gst-note { text-align: center; color: var(--muted); font-size: .88rem; margin-top: 2rem; }

/* Billing toggle */
.billing-toggle {
  display: inline-flex; align-items: center; gap: .5rem; background: var(--canvas);
  border: 1px solid var(--line); border-radius: 100px; padding: .3rem; margin: 0 auto 2.5rem;
}
.billing-toggle button {
  font-family: inherit; font-size: .88rem; font-weight: 600; color: var(--muted);
  background: transparent; border: 0; padding: .55rem 1.15rem; border-radius: 100px; cursor: pointer;
  transition: all .18s ease; white-space: nowrap;
}
.billing-toggle button.active { background: var(--surface); color: var(--brand); box-shadow: var(--shadow-sm); }
.billing-toggle .save-tag { background: var(--green-50); color: #047857; font-size: .7rem; font-weight: 700; padding: .15rem .45rem; border-radius: 100px; margin-left: .35rem; }

/* --------------------------------------------------------------------------
   Comparison table
   -------------------------------------------------------------------------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); }
table.cmp { width: 100%; border-collapse: collapse; min-width: 680px; font-size: .92rem; }
table.cmp th, table.cmp td { padding: .95rem 1.15rem; text-align: left; border-bottom: 1px solid var(--line-soft); }
table.cmp thead th { background: var(--canvas); font-weight: 700; color: var(--ink); font-size: .84rem; letter-spacing: .03em; text-transform: uppercase; border-bottom: 1px solid var(--line); }
table.cmp tbody tr:last-child td { border-bottom: 0; }
table.cmp tbody tr:hover { background: var(--brand-50); }
table.cmp td.num, table.cmp th.num { text-align: center; }
table.cmp .row-label { font-weight: 600; color: var(--ink); }
table.cmp .hl { background: var(--brand-50); font-weight: 700; color: var(--brand); }
table.cmp .bad { color: var(--red); font-weight: 650; }
table.cmp .good { color: var(--green); font-weight: 650; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--r); background: var(--surface);
  margin-bottom: .75rem; overflow: hidden; transition: border-color .18s ease, box-shadow .18s ease;
}
.faq details[open] { border-color: var(--brand-100); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; padding: 1.1rem 1.35rem; font-weight: 650; color: var(--ink); font-size: .98rem;
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex-shrink: 0; width: 10px; height: 10px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(45deg) translateY(-2px); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.faq summary:hover { background: var(--canvas); }
.faq .faq-body { padding: 0 1.35rem 1.25rem; color: var(--body); font-size: .94rem; }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Domain search
   -------------------------------------------------------------------------- */
.domain-search {
  background: #fff; border-radius: var(--r-lg); padding: .5rem; display: flex; gap: .5rem;
  box-shadow: var(--shadow-lg); max-width: 620px;
}
.domain-search input {
  flex: 1; min-width: 0; border: 0; outline: 0; font-family: inherit; font-size: 1rem;
  padding: .9rem 1rem; border-radius: var(--r-sm); color: var(--ink); background: transparent;
}
.domain-search input::placeholder { color: #94a3b8; }
@media (max-width: 520px) {
  .domain-search { flex-direction: column; }
}

.tld-strip { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.25rem; }
.tld-chip {
  display: inline-flex; align-items: baseline; gap: .4rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  padding: .4rem .8rem; border-radius: 100px; font-size: .87rem; color: rgba(255,255,255,.92);
}
.tld-chip b { color: #fff; font-weight: 700; }

.tld-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 1rem; }
.tld-card { border: 1px solid var(--line); border-radius: var(--r); padding: 1.15rem; text-align: center; background: var(--surface); transition: all .18s ease; }
.tld-card:hover { border-color: var(--brand-500); box-shadow: var(--shadow); transform: translateY(-2px); }
.tld-card .tld { font-size: 1.3rem; font-weight: 800; color: var(--brand); letter-spacing: -.02em; }
.tld-card .p1  { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-top: .35rem; }
.tld-card .pr  { font-size: .8rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   Callouts / banners
   -------------------------------------------------------------------------- */
.callout {
  border-left: 4px solid var(--brand); background: var(--brand-50);
  padding: 1.15rem 1.4rem; border-radius: 0 var(--r) var(--r) 0; margin: 1.5rem 0;
}
.callout.warn  { border-color: var(--amber); background: #fffbeb; }
.callout.good  { border-color: var(--green); background: var(--green-50); }
.callout p:last-child { margin-bottom: 0; }
.callout strong { display: block; margin-bottom: .25rem; }

.cta-band {
  background: linear-gradient(135deg, #16307a, #2547a3);
  color: #fff; border-radius: var(--r-xl); padding: clamp(2.25rem, 5vw, 3.5rem);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px circle at 85% 15%, rgba(249,115,22,.3), transparent 55%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: .6rem; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 1.75rem; font-size: 1.05rem; }

/* --------------------------------------------------------------------------
   Page header (interior pages)
   -------------------------------------------------------------------------- */
.page-head {
  background: linear-gradient(160deg, #16307a 0%, #1e3a8a 100%);
  color: #fff; padding: clamp(2.75rem, 6vw, 4.5rem) 0; position: relative; overflow: hidden;
}
.page-head::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(620px circle at 90% 10%, rgba(249,115,22,.22), transparent 55%);
  pointer-events: none;
}
.page-head > * { position: relative; z-index: 1; }
.page-head h1 { color: #fff; margin-bottom: .5rem; }
.page-head p { color: rgba(255,255,255,.82); font-size: 1.1rem; max-width: 640px; margin-bottom: 0; }

.crumb { font-size: .85rem; color: rgba(255,255,255,.65); margin-bottom: .75rem; }
.crumb a { color: rgba(255,255,255,.85); }
.crumb a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   Prose (legal pages)
   -------------------------------------------------------------------------- */
.prose { max-width: 780px; margin-inline: auto; }
.prose h2 { font-size: 1.45rem; margin-top: 2.5rem; padding-bottom: .5rem; border-bottom: 1px solid var(--line); }
.prose h3 { font-size: 1.1rem; margin-top: 1.75rem; }
.prose ul, .prose ol { margin-bottom: 1.25rem; }
.prose li { margin-bottom: .4rem; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: .92rem; }
.prose th, .prose td { padding: .7rem .9rem; border: 1px solid var(--line); text-align: left; }
.prose th { background: var(--canvas); font-weight: 650; }
.prose .updated { color: var(--muted); font-size: .9rem; font-style: italic; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-size: .88rem; font-weight: 650; color: var(--ink); margin-bottom: .4rem; }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: .95rem; color: var(--ink);
  padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--surface); transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--brand-500); box-shadow: 0 0 0 3px var(--brand-100);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .hint { font-size: .82rem; color: var(--muted); margin-top: .3rem; }

.contact-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.35rem; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); }
.contact-card h3 { font-size: 1rem; margin-bottom: .2rem; }
.contact-card p { font-size: .92rem; color: var(--muted); margin-bottom: .3rem; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: #0d1730; color: #94a3b8; padding: clamp(3rem, 6vw, 4.5rem) 0 0; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 2.5rem; padding-bottom: 3rem; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 { color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .6rem; }
.site-footer a { color: #94a3b8; font-size: .92rem; }
.site-footer a:hover { color: #fff; text-decoration: none; }
.site-footer .logo { color: #fff; margin-bottom: .9rem; }
.site-footer .logo:hover { color: #fff; }
.footer-about { font-size: .92rem; line-height: 1.7; margin-bottom: 1.25rem; max-width: 320px; }

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, .18); padding: 1.5rem 0;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: .87rem;
}
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }

.pay-strip { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.pay-chip {
  background: rgba(255,255,255,.07); border: 1px solid rgba(148,163,184,.2);
  border-radius: var(--r-sm); padding: .35rem .65rem; font-size: .78rem; font-weight: 600; color: #cbd5e1;
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.text-muted { color: var(--muted); }
.nowrap { white-space: nowrap; }

.badge {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: .22rem .55rem; border-radius: var(--r-sm);
}
.badge-green { background: var(--green-50); color: #047857; }
.badge-accent { background: var(--accent-50); color: var(--accent-600); }
.badge-brand { background: var(--brand-50); color: var(--brand-600); }

html, body { min-height: 100%; }
body { display: flex; flex-direction: column; }
main { flex: 1; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .card:hover, .plan:hover, .btn:hover, .tld-card:hover { transform: none; }
}

@media print {
  .site-header, .site-footer, .cta-band, .btn { display: none !important; }
  body { color: #000; }
}
