@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ==========================================================================
   InternetForCheap.com — Unified Design System v2
   Stripe + Linear + Apple aesthetic — ONE system across every section
   ========================================================================== */

:root {
  /* ── Color Tokens ─────────────────────────────────────────── */
  --bg-dark:        #070B14;
  --bg-surface:     #0D1424;
  --bg-card:        rgba(18, 26, 44, 0.72);
  --bg-card-hover:  rgba(28, 40, 66, 0.88);

  --border:         rgba(255, 255, 255, 0.08);
  --border-glow:    rgba(59, 130, 246, 0.35);
  --border-subtle:  rgba(255, 255, 255, 0.05);

  --text-primary:   #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted:     #64748B;
  --text-accent:    #60A5FA;

  --accent-blue:        #3B82F6;
  --accent-blue-hover:  #2563EB;
  --accent-cyan:        #06B6D4;
  --success:            #10B981;
  --error:              #F87171;

  /* ── Typography ───────────────────────────────────────────── */
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  /* Fluid scale — never fixed px in components */
  --text-display: clamp(2.1rem, 3.4vw, 3rem);
  --text-h2:      clamp(1.75rem, 2.8vw, 2.25rem);
  --text-h3:      clamp(1.125rem, 1.8vw, 1.375rem);
  --text-body:    clamp(0.9rem, 1vw, 1rem);
  --text-sm:      clamp(0.82rem, 0.9vw, 0.875rem);
  --text-xs:      0.75rem;

  /* ── Unified Card System ──────────────────────────────────── */
  --card-padding:  18px;
  --card-radius:   16px;
  --card-border:   1px solid var(--border);
  --card-shadow:   0 8px 24px rgba(0,0,0,0.4), 0 1px 0 rgba(255,255,255,0.06) inset;
  --card-shadow-hover: 0 12px 32px rgba(0,0,0,0.55), 0 0 20px rgba(59,130,246,0.14);

  /* ── Layout ───────────────────────────────────────────────── */
  --container: min(100% - 48px, 1240px);
  --nav-height: 64px;
  --section-gap: 64px; /* top+bottom per section */

  /* ── Radius ───────────────────────────────────────────────── */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  var(--card-radius);
  --radius-pill: 999px;

  /* ── Transitions ──────────────────────────────────────────── */
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:    140ms var(--ease);
  --t-base:    240ms var(--ease);
}

/* ============================================================
   SCROLLBAR — Premium minimal (Stripe/Linear/Vercel style)
   ============================================================ */
html {
  scrollbar-width: thin;
  scrollbar-color: #2563EB #090F1D;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #090F1D;
  border-radius: 999px;
}
::-webkit-scrollbar-thumb {
  background: #2563EB;
  border-radius: 999px;
  border: 2px solid #090F1D;
  background-clip: padding-box;
  box-shadow: 0 0 12px rgba(59,130,246,0.15);
  transition: background-color 200ms ease-out, box-shadow 200ms ease-out;
}
::-webkit-scrollbar-thumb:hover {
  background: #3B82F6;
  background-clip: padding-box;
  box-shadow: 0 0 14px rgba(59,130,246,0.22);
}
::-webkit-scrollbar-thumb:active {
  background: #1D4ED8;
  background-clip: padding-box;
}
::-webkit-scrollbar-corner {
  background: #090F1D;
}

@media (max-width: 1023px) {
  ::-webkit-scrollbar { width: 8px; height: 8px; }
}
@media (max-width: 767px) {
  ::-webkit-scrollbar { width: 6px; height: 6px; }
}

/* Touch devices: native scrolling, no forced custom bar */
@media (hover: none) and (pointer: coarse) {
  html { scrollbar-width: auto; }
  ::-webkit-scrollbar { width: auto; height: auto; }
  ::-webkit-scrollbar-thumb { box-shadow: none; }
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-primary);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 16px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* prevent any child from causing horizontal scroll */
}

body {
  margin: 0;
  min-height: 100dvh;
  font-size: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(59,130,246,0.16), transparent 70%),
    radial-gradient(ellipse 55% 40% at 80% 30%,  rgba(6,182,212,0.07),  transparent 60%),
    radial-gradient(circle at 20% 70%,            rgba(16,185,129,0.05), transparent 50%);
  background-attachment: fixed;
}

h1,h2,h3,h4 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0;
}

h1 { font-size: var(--text-display); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: var(--text-h2);      font-weight: 800; }
h3 { font-size: var(--text-h3);      font-weight: 700; }

p {
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0 0 0.85rem;
}
p:last-child { margin-bottom: 0; }

a {
  color: var(--text-accent);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover { color: var(--text-primary); }

.gradient-accent {
  background: linear-gradient(135deg, #60A5FA 0%, #38BDF8 50%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.5);
  border-radius: var(--radius-sm);
}

/* ============================================================
   UNIFIED CONTAINER — one rule, used everywhere
   ============================================================ */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(12px, 3vw, 40px);
}

/* Wide-screen caps: content stays centered, never stretches */
@media (min-width: 1920px) { .container { max-width: 1360px; } }
@media (min-width: 2560px) { .container { max-width: 1400px; } }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  width: 100%;
  background: rgba(7,11,20,0.8);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  gap: 8px;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(0.9rem, 2.5vw, 1.125rem);
  color: var(--text-primary);
  letter-spacing: -0.02em;
  min-width: 0; /* allow flex shrink */
  overflow: hidden;
}

.brand > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.brand-icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg,rgba(59,130,246,0.18),rgba(6,182,212,0.18));
  border: 1px solid var(--border-glow);
  display: flex; align-items: center; justify-content: center;
  color: #60A5FA;
  flex-shrink: 0;
}
.brand-icon-wrapper svg { width: 18px; height: 18px; }

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 clamp(10px, 2vw, 18px);
  background: linear-gradient(135deg,#10B981 0%,#059669 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 1.8vw, 0.875rem);
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 3px 12px rgba(16,185,129,0.32);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.btn-header-cta:hover {
  color: #fff;
  background: linear-gradient(135deg,#059669 0%,#047857 100%);
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(16,185,129,0.48);
}

/* ============================================================
   HERO — 50/50 Grid Architecture
   ============================================================ */
.hero-section {
  position: relative;
  padding-top: calc(var(--nav-height) + 20px);
  padding-bottom: 40px;
  min-height: auto;
  display: flex;
  align-items: center;
}

.hero-radial-bg {
  position: absolute;
  top: -5%;
  right: 3%;
  width: min(480px, 50vw);
  height: min(480px, 50vw);
  background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, rgba(6,182,212,0.06) 45%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.hero-layout-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  width: 100%;
}

/* Left column */
.hero-left-col {
  max-width: 560px;
  display: flex;
  flex-direction: column;
}

/* ── Eyebrow badge ─── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 13px;
  border-radius: var(--radius-pill);
  background: rgba(37,99,235,0.10);
  border: 1px solid rgba(59,130,246,0.25);
  font-size: 12px;
  font-weight: 600;
  color: #60A5FA;
  letter-spacing: 0.04em;
  white-space: nowrap;
  width: fit-content;
  margin-bottom: 14px;
}

.hero-eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3B82F6;
  box-shadow: 0 0 7px #3B82F6;
  flex-shrink: 0;
}

.hero-left-col h1 {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  max-width: 100%;
}

.hero-subtitle {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: min(460px, 100%);
  margin-bottom: 20px;
}

/* Trust bullets */
.hero-trust-bullets {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 22px;
}

.trust-bullet-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-heading);
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: 600;
  color: var(--text-primary);
}

.bullet-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.35);
  color: #34D399;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}

/* Provider logos */
.hero-social-proof {
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.social-proof-label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-mini-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 100%;
  overflow: hidden;
}

.hero-mini-logos img {
  max-height: 20px;
  width: auto;
  opacity: 0.7;
  filter: brightness(0) invert(0.9);
  transition: opacity var(--t-fast), filter var(--t-fast);
}
.hero-mini-logos img:hover {
  opacity: 1;
  filter: brightness(1) invert(0);
}

/* Right column */
.hero-right-col {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  min-width: 0;
}

/* Form widget */
.hero-command-card {
  width: min(430px, 100%);
  background: rgba(13,20,36,0.95);
  border: 1px solid rgba(96,165,250,0.35);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 24px rgba(59,130,246,0.17);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: relative;
}

.hero-command-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,0.75), transparent);
}

.form-header-title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.live-badge {
  font-size: 0.65rem;
  padding: 3px 8px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  color: #34D399;
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-icon {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  pointer-events: none;
  z-index: 2;
  flex-shrink: 0;
}

.input-with-icon .form-control {
  padding-left: 38px;
}

.form-control {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  background: rgba(7,11,20,0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-control::placeholder { color: var(--text-muted); }
.form-control:focus {
  outline: none;
  border-color: #60A5FA;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.22);
}

.btn-cta-hero {
  width: 100%;
  height: 44px;
  background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 5px 18px rgba(37,99,235,0.44);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  margin-top: 12px;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.btn-cta-hero svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-cta-hero:hover {
  background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
  transform: translateY(-1px);
  box-shadow: 0 9px 26px rgba(37,99,235,0.58);
}

.hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.71875rem;
  color: var(--text-secondary);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  white-space: nowrap;
}
.trust-item svg { color: #34D399; width: 13px; height: 13px; }

.field-error {
  color: var(--error);
  font-size: var(--text-xs);
  margin-top: 3px;
  min-height: 1em;
}

.hp-field {
  display: none !important;
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* ── Hero responsive ─────────────────────────────────────── */
@media (max-width: 1023px) {
  .hero-layout-grid {
    gap: clamp(20px, 3vw, 36px);
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: calc(var(--nav-height) + 16px);
    padding-bottom: 32px;
    min-height: auto;
    align-items: flex-start;
  }
  .hero-layout-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-left-col {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .hero-left-col h1,
  .hero-subtitle { text-align: center; }
  .hero-eyebrow { align-self: center; }
  .hero-trust-bullets { align-items: flex-start; margin-inline: auto; }
  .hero-right-col {
    justify-content: center;
    width: 100%;
  }
  .hero-command-card { width: 100%; }
  .hero-social-proof { text-align: center; }
  .hero-mini-logos { justify-content: center; }
}

/* ============================================================
   SHARED SECTION WRAPPER
   ============================================================ */
.section {
  padding: var(--section-gap) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 28px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-accent);
  margin-bottom: 8px;
}

.section-header h2 { margin-bottom: 10px; }

.section-header p {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--text-secondary);
  margin: 0;
}

/* ============================================================
   DISCLOSURE
   ============================================================ */
.disclosure-section {
  padding: 20px 0 40px;
}

.disclosure-card-sleek {
  background: rgba(13,20,36,0.6);
  border: var(--card-border);
  border-left: 3px solid var(--accent-blue);
  border-radius: var(--card-radius);
  padding: var(--card-padding) 24px;
  backdrop-filter: blur(12px);
  box-shadow: var(--card-shadow);
}

.disclosure-header-compact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.disclosure-icon-badge {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.2);
  color: #60A5FA;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.disclosure-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
}

.disclosure-subtitle {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.disclosure-text-content {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0 0 7px;
}
.disclosure-text-content:last-child { margin-bottom: 0; }

/* ============================================================
   HOW IT WORKS — 3-step timeline
   ============================================================ */
.timeline-connected {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}

.timeline-track-line {
  position: absolute;
  top: 41px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(59,130,246,0.4) 0%,
    rgba(6,182,212,0.4) 50%,
    rgba(16,185,129,0.4) 100%);
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: var(--card-border);
  border-radius: var(--card-radius);
  padding: 24px var(--card-padding) 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: var(--card-shadow);
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.step-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-glow);
  box-shadow: var(--card-shadow-hover);
}

.step-badge {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E293B, #0F172A);
  border: 2px solid var(--accent-blue);
  color: var(--text-accent);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 14px rgba(59,130,246,0.28);
}

.step-card h3 { font-size: var(--text-h3); margin-bottom: 8px; }
.step-card p  { font-size: var(--text-sm); color: var(--text-secondary); margin: 0; line-height: 1.6; }

@media (max-width: 767px) {
  .timeline-connected { grid-template-columns: 1fr; gap: 16px; }
  .timeline-track-line { display: none; }
}

/* ============================================================
   WHY USE US — 3×2 card grid
   ============================================================ */
.trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-feature-card {
  background: var(--bg-card);
  border: var(--card-border);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  backdrop-filter: blur(12px);
  box-shadow: var(--card-shadow);
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.trust-feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-glow);
  box-shadow: var(--card-shadow-hover);
}

.feature-icon-box {
  width: 42px; height: 42px;
  border-radius: var(--radius-md);
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.22);
  color: #60A5FA;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.feature-icon-box svg { width: 22px; height: 22px; }

.trust-feature-card h3 { font-size: var(--text-h3); margin-bottom: 8px; }
.trust-feature-card p  { font-size: var(--text-sm); color: var(--text-secondary); margin: 0; line-height: 1.6; }

@media (max-width: 900px)  { .trust-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .trust-cards-grid { grid-template-columns: 1fr; gap: 14px; } }

/* ============================================================
   PROVIDERS — 5 columns desktop, responsive down
   ============================================================ */
.providers-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.provider-glass-card {
  background: var(--bg-card);
  border: var(--card-border);
  border-radius: var(--card-radius);
  height: 76px;
  display: flex; align-items: center; justify-content: center;
  padding: 12px 16px;
  backdrop-filter: blur(10px);
  box-shadow: var(--card-shadow);
  transition: transform var(--t-base), border-color var(--t-base), background var(--t-base);
}
.provider-glass-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
}

.provider-glass-card img {
  max-width: 100%;
  max-height: 28px;
  width: auto; height: auto;
  object-fit: contain;
  filter: brightness(0) invert(0.88) opacity(0.82);
  transition: filter var(--t-base), transform var(--t-base);
}
.provider-glass-card:hover img {
  filter: brightness(1) invert(0) opacity(1);
  transform: scale(1.04);
}

@media (max-width: 1180px) { .providers-container { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 840px)  { .providers-container { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px)  { .providers-container { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ============================================================
   COMMITMENT / INFO — 3-col cards
   ============================================================ */
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  background: var(--bg-card);
  border: var(--card-border);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  backdrop-filter: blur(12px);
  box-shadow: var(--card-shadow);
}

.info-card h3 { font-size: var(--text-h3); margin-bottom: 12px; }
.info-card p  { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.65; margin-bottom: 10px; }

@media (max-width: 900px) { .grid-3col { grid-template-columns: 1fr; gap: 14px; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrapper {
  max-width: 720px;
  margin-inline: auto;
}

.faq-card-container {
  background: var(--bg-card);
  border: var(--card-border);
  border-radius: var(--card-radius);
  padding: 6px 20px;
  backdrop-filter: blur(12px);
  box-shadow: var(--card-shadow);
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-item:last-child { border-bottom: none; }

.faq-trigger {
  width: 100%;
  min-height: 48px; /* accessibility: 44px min touch target */
  padding: 14px 0;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: color var(--t-fast);
}
.faq-trigger:hover { color: var(--text-accent); }

.faq-icon {
  width: 18px; height: 18px;
  color: var(--text-accent);
  flex-shrink: 0;
  margin-left: 14px;
  transition: transform var(--t-base);
}
.faq-trigger[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-base);
}
.faq-panel.is-open { grid-template-rows: 1fr; }

.faq-content { overflow: hidden; }
.faq-content p {
  padding-bottom: 16px;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   CONTACT — 3 equal cards
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card-glass {
  background: var(--bg-card);
  border: var(--card-border);
  border-radius: var(--card-radius);
  padding: var(--card-padding) 16px;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: var(--card-shadow);
  transition: transform var(--t-base), border-color var(--t-base);
}
.contact-card-glass:hover {
  transform: translateY(-2px);
  border-color: var(--border-glow);
}

.contact-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.22);
  color: #60A5FA;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.contact-icon svg { width: 20px; height: 20px; }

.contact-card-glass h3 { font-size: var(--text-h3); margin-bottom: 6px; }
.contact-card-glass p  { font-size: var(--text-sm); color: var(--text-secondary); margin: 0; }
.contact-card-glass a  { color: #60A5FA; font-weight: 600; }

@media (max-width: 640px) {
  .contact-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ============================================================
   POLICY BAR
   ============================================================ */
.policy-notice-bar {
  background: var(--bg-card);
  border: var(--card-border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: 0;
}
.policy-notice-bar p { margin: 0; }
.policy-notice-bar a { color: #60A5FA; font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-stripe {
  background: #04070D;
  border-top: 1px solid var(--border);
  padding: 44px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-brand-col p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 280px;
  margin-top: 12px;
  line-height: 1.6;
}

.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 3px 10px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.22);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  color: #34D399;
  font-weight: 600;
  margin-top: 14px;
}

.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 6px #10B981;
  flex-shrink: 0;
}

.footer-links-col h4 {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.footer-links-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links-col a {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: color var(--t-fast);
}
.footer-links-col a:hover { color: var(--text-primary); }

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  font-size: var(--text-xs);
  color: var(--text-muted);
  gap: 12px;
  flex-wrap: wrap;
}

.back-to-top {
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--t-fast);
  white-space: nowrap;
}
.back-to-top:hover { color: var(--text-primary); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom-bar { flex-direction: column; text-align: center; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal,
.reveal-scale {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--t-base), transform var(--t-base);
  will-change: opacity, transform;
}
.reveal.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   FLOATING CALL BUTTON — Premium Enterprise (Stripe / Linear)
   ============================================================ */

.fcb {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: 24px;
  z-index: 9000;

  display: inline-flex;
  align-items: center;
  gap: 12px;

  height: 52px;
  padding: 0 18px 0 14px;
  border-radius: 999px;

  /* Subtle vertical gradient — not a neon glow */
  background: linear-gradient(180deg, #3B82F6, #2563EB);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.18);

  color: #fff;
  text-decoration: none;
  cursor: pointer;

  /* Hidden by default — JS adds .fcb--visible */
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  pointer-events: none;

  /* GPU-only transitions */
  transition:
    opacity 260ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 200ms ease,
    filter 200ms ease,
    width 280ms cubic-bezier(0.16, 1, 0.3, 1);

  will-change: opacity, transform;
  -webkit-tap-highlight-color: transparent;
}

/* Visible */
.fcb--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Hidden (footer) */
.fcb--hidden {
  opacity: 0 !important;
  transform: translateY(10px) scale(0.95) !important;
  pointer-events: none !important;
}

/* Hover — lift + brighten, no glow */
.fcb:hover {
  transform: translateY(-2px) scale(1);
  filter: brightness(1.05);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.26);
  color: #fff;
}

/* Active — micro-compress */
.fcb:active {
  transform: translateY(0) scale(0.98);
  filter: brightness(0.97);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.14);
  transition-duration: 60ms;
}

/* Focus — keyboard ring */
.fcb:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(96, 165, 250, 0.5),
    0 10px 30px rgba(37, 99, 235, 0.18);
}

/* ── Icon — frosted circle ─────────────────────────── */
.fcb__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.fcb__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

/* ── Text ──────────────────────────────────────────── */
.fcb__text {
  display: flex;
  align-items: center;
  min-width: 0;
}

.fcb__label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1;
}

/* ── Green availability dot ────────────────────────── */
.fcb__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.5);
  flex-shrink: 0;
}

/* ── Mobile: 52×52 circle FAB ──────────────────────── */
@media (max-width: 767px) {
  .fcb {
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
    overflow: hidden;
    transition:
      opacity 260ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 200ms ease,
      filter 200ms ease,
      width 280ms cubic-bezier(0.16, 1, 0.3, 1),
      border-radius 280ms cubic-bezier(0.16, 1, 0.3, 1),
      padding 280ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Hide text + dot in collapsed state */
  .fcb__text,
  .fcb__dot {
    opacity: 0;
    width: 0;
    overflow: hidden;
    transition:
      opacity 200ms ease,
      width 280ms cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
  }

  /* Expanded pill */
  .fcb--expanded {
    width: auto;
    padding: 0 18px 0 14px;
    border-radius: 999px;
    gap: 12px;
  }

  .fcb--expanded .fcb__text,
  .fcb--expanded .fcb__dot {
    opacity: 1;
    width: auto;
    pointer-events: auto;
  }
}

/* ── 4K — stay near content, not viewport edge ───── */
@media (min-width: 1920px) {
  .fcb {
    right: max(24px, calc((100vw - 1400px) / 2 - 16px));
  }
}