/* Base ------------------------------------------------------------------ */
:root {
  --bg: #f4f5ff;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.7);
  --surface-alt: #eef1ff;
  --text: #0f172a;
  --muted: #606a80;
  --brand: #6a5bff;
  --brand-dark: #4f3dff;
  --accent: #ff7a59;
  --accent-soft: rgba(255, 122, 89, 0.12);
  --success: #15b79f;
  --danger: #ef3b67;
  --border: rgba(99, 112, 170, 0.16);
  --border-strong: rgba(15, 23, 42, 0.08);
  --shadow: 0 18px 60px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 12px 35px rgba(80, 70, 230, 0.18);
  --radius-lg: 24px;
  --radius-md: 16px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", Inter, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: -30vh -40vw 0;
  background:
    radial-gradient(38% 38% at 15% 18%, rgba(106, 91, 255, 0.2) 0%, transparent 70%),
    radial-gradient(28% 28% at 80% 0%, rgba(255, 122, 89, 0.18) 0%, transparent 65%);
  z-index: -2;
  pointer-events: none;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
h1, h2, h3, h4 {
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.03em;
}
a { color: inherit; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Header ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(14px);
  background: rgba(244, 245, 255, 0.8);
  border-bottom: 1px solid rgba(99, 112, 170, 0.12);
}
.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), #8c7bff);
  color: #fff;
  font-weight: 800;
}
.nav { margin-left: auto; }
.nav-toggle {
  display: none;
  background: rgba(255,255,255,0.6);
  color: var(--text);
  border: 1px solid rgba(99,112,170,0.2);
  border-radius: 12px;
  padding: 8px 12px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-menu a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.nav-menu a:hover { color: var(--brand); }
.header-contact {
  margin-left: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(106, 91, 255, 0.08);
  color: var(--brand-dark);
  font-weight: 600;
  text-decoration: none;
}
.header-contact:hover { background: rgba(106, 91, 255, 0.16); }

/* Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  height: 46px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), #8f5bff);
  color: #fff;
  box-shadow: var(--shadow-soft);
  border: none;
}
.btn-primary:hover {
  box-shadow: 0 22px 45px rgba(106, 91, 255, 0.35);
}
.btn-secondary {
  background: rgba(106, 91, 255, 0.08);
  color: var(--brand-dark);
  border: 1px solid rgba(106, 91, 255, 0.2);
}
.btn-secondary:hover { background: rgba(106, 91, 255, 0.16); }

/* Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  padding: 120px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(65% 95% at 0% 0%, rgba(106,91,255,0.12) 0%, transparent 60%),
    radial-gradient(60% 90% at 110% -10%, rgba(255,122,89,0.18) 0%, transparent 60%);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 56px;
}
.hero-copy h1 {
  margin: 12px 0 16px;
  font-size: clamp(2.8rem, 3.6vw, 3.6rem);
  line-height: 1.05;
}
.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 62ch;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(21, 183, 159, 0.12);
  color: var(--success);
  font-weight: 600;
  font-size: 0.9rem;
}
.hero-highlight {
  margin-top: 24px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(106, 91, 255, 0.12);
  border: 1px solid rgba(106, 91, 255, 0.2);
  box-shadow: 0 18px 45px rgba(106, 91, 255, 0.15);
}
.hero-highlight__title {
  display: inline-block;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 6px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 10px;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  padding: 0;
  margin: 18px 0 22px;
  list-style: none;
}
.hero-metrics li {
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(99,112,170,0.14);
  box-shadow: 0 14px 35px rgba(15,23,42,0.08);
  color: var(--muted);
  font-size: 0.95rem;
}
.hero-metrics strong {
  display: block;
  font-size: 1.6rem;
  color: var(--text);
}
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(21, 183, 159, 0.12);
  color: var(--success);
  font-weight: 600;
}
.hero-art {
  position: relative;
  min-height: 360px;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
}
.hero-blob--one {
  width: 320px; height: 320px;
  top: -30px; right: 40px;
  background: radial-gradient(circle, rgba(106,91,255,0.55) 0%, transparent 70%);
}
.hero-blob--two {
  width: 280px; height: 280px;
  bottom: -40px; left: 10px;
  background: radial-gradient(circle, rgba(255,122,89,0.45) 0%, transparent 70%);
}
.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 18px 20px;
  width: 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 20px 45px rgba(15,23,42,0.12);
}
.hero-card__label {
  font-size: 0.9rem;
  color: var(--muted);
}
.hero-card__value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-dark);
}
.hero-card__sub {
  font-size: 0.85rem;
  color: var(--muted);
}
.hero-card--primary { top: 30px; right: 40px; }
.hero-card--secondary { bottom: 45px; right: 80px; }
.hero-card--tertiary { top: 160px; left: 0; }

/* Sections -------------------------------------------------------------- */
.section { padding: 90px 0; }
.section.alt {
  background: linear-gradient(180deg, rgba(106, 91, 255, 0.06) 0%, transparent 90%);
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 { margin: 10px 0 12px; font-size: 2.5rem; }
.section-header p { margin: 0; color: var(--muted); }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(106, 91, 255, 0.12);
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.grid { display: grid; gap: 22px; }
.grid.cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards .card { min-height: 100%; }

.card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(106, 91, 255, 0.16), rgba(255, 122, 89, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.card:hover::before { opacity: 1; }
.card > * { position: relative; z-index: 1; }
.card h3 { margin: 0 0 10px; font-size: 1.25rem; }
.card p { color: var(--muted); margin: 0 0 12px; }
.card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  color: var(--muted);
}
.card ul li::before {
  content: "•";
  color: var(--brand);
  margin-right: 8px;
}

/* Timeline -------------------------------------------------------------- */
.timeline {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.timeline li {
  position: relative;
  padding: 18px 18px 18px 54px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(106,91,255,0.18);
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
  font-weight: 600;
  color: var(--muted);
}
.timeline li span {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #8c7bff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Badges --------------------------------------------------------------- */
.badges { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.badge { background: rgba(255,255,255,0.85); }
.badge h3 { margin: 0 0 8px; }

/* FAQ ------------------------------------------------------------------- */
.faq details {
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius-md);
  border: 1px solid rgba(106,91,255,0.16);
  padding: 18px 20px;
  box-shadow: 0 16px 36px rgba(15,23,42,0.08);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  outline: none;
}
.faq p { margin: 10px 0 0; color: var(--muted); }

/* Carrier Tabs ---------------------------------------------------------- */
.tabs {
  display: inline-flex;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(106,91,255,0.2);
  box-shadow: 0 10px 24px rgba(15,23,42,0.08);
}
.tab {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.tab[aria-selected="true"] {
  background: linear-gradient(135deg, var(--brand), #8c7bff);
  color: #fff;
}
.tab-panel { margin-top: 18px; }

/* Forms ----------------------------------------------------------------- */
.form {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(106,91,255,0.18);
  box-shadow: var(--shadow);
}
.form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; color: var(--text); }
.form-field input,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(99,112,170,0.2);
  background: rgba(255,255,255,0.9);
  color: var(--text);
  font-size: 0.96rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(106,91,255,0.14);
  outline: none;
}
.error {
  color: var(--danger);
  font-size: 0.8rem;
  min-height: 16px;
}
.form-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.form-note { margin: 0; color: var(--muted); }
.form-success {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(106, 91, 255, 0.12);
  border: 1px solid rgba(106, 91, 255, 0.3);
  color: var(--brand-dark);
  font-weight: 600;
}

/* CTA & Footer ---------------------------------------------------------- */
.cta {
  background:
    linear-gradient(135deg, rgba(106, 91, 255, 0.15), rgba(255, 122, 89, 0.1));
}
.site-footer {
  background: linear-gradient(135deg, rgba(106,91,255,0.12), rgba(255,122,89,0.08));
  border-top: 1px solid rgba(106,91,255,0.16);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 24px 0;
  align-items: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}
.footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}
.footer-nav a:hover { color: var(--brand-dark); }
.footer-meta {
  color: var(--muted);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Utilities -------------------------------------------------------------- */
.full-bleed { width: 100%; }

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; min-height: 300px; }
  .hero-card--primary { top: 10px; right: auto; left: 40px; }
  .hero-card--secondary { bottom: 30px; right: 60px; }
  .hero-card--tertiary { top: 180px; left: 60px; }
  .grid.cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .badges { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .header-contact { display: none; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute;
    top: 72px; right: 24px; left: 24px;
    background: rgba(244, 245, 255, 0.95);
    border-radius: var(--radius-md);
    border: 1px solid rgba(106,91,255,0.18);
    padding: 18px;
    flex-direction: column;
    gap: 12px;
    display: none;
    box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .hero-inner { gap: 42px; }
  .hero-copy h1 { font-size: clamp(2.1rem, 8vw, 2.6rem); }
  .hero-metrics { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
  .hero-card { position: relative; margin: 16px auto 0; left: 0 !important; right: auto !important; top: auto !important; bottom: auto !important; }
  .hero-art { display: flex; flex-direction: column; align-items: center; }
  .hero-blob { display: none; }
  .grid.cards { grid-template-columns: 1fr; }
  .badges { grid-template-columns: 1fr; }
  .timeline li { padding-left: 48px; }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .footer-meta { justify-content: center; }
}

