:root {
  /* Prime Dental Plans — navy and gold */
  --brand-900: #061D3A;
  --brand-700: #0A2E5C;
  --brand-600: #0D3D7A;
  --brand-100: #E8F0FB;
  --accent:    #F5C518;
  --accent-dark: #D4A800;
  --ink-900:   #0f172a;
  --ink-700:   #334155;
  --ink-600:   #475569;
  --card-radius:   18px;
  --shadow-soft:   0 10px 30px rgba(10,46,92,.10);
  --shadow-hover:  0 16px 45px rgba(10,46,92,.18);
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink-900);
}

/* ── Navbar ── */
.navbar {
  border-bottom: 1px solid rgba(10,46,92,.10);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
}
.navbar-brand { font-weight: 900; letter-spacing: -.02em; }
.nav-link      { color: var(--ink-700); font-weight: 700; }
.nav-link:hover { color: var(--brand-700); }

/* ── Buttons ── */
.btn-brand {
  background:    var(--brand-700);
  border-color:  var(--brand-700);
  color:         #fff;
  font-weight:   900;
  border-radius: 12px;
  padding:       .72rem 1rem;
}
.btn-brand:hover {
  background:   var(--brand-900);
  border-color: var(--brand-900);
  color:        #fff;
}

.btn-accent {
  background:    var(--accent);
  border-color:  var(--accent);
  color:         var(--brand-900);
  font-weight:   900;
  border-radius: 12px;
  padding:       .72rem 1rem;
}
.btn-accent:hover {
  background:   var(--accent-dark);
  border-color: var(--accent-dark);
  color:        var(--brand-900);
}

.btn-ghost {
  border:        1px solid rgba(10,46,92,.20);
  background:    #fff;
  color:         var(--brand-700);
  font-weight:   900;
  border-radius: 12px;
  padding:       .72rem 1rem;
}
.btn-ghost:hover {
  background: var(--brand-100);
  color:      var(--brand-700);
}

/* ── Hero ── */
.hero {
  position:   relative;
  overflow:   hidden;
  background: linear-gradient(135deg, #061D3A 0%, #0A2E5C 60%, #0D3D7A 100%);
}
.hero::before {
  content:    "";
  position:   absolute;
  top:        -60px;
  right:      -80px;
  width:      420px;
  height:     420px;
  background: radial-gradient(circle, rgba(245,197,24,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content:    "";
  position:   absolute;
  bottom:     -40px;
  left:       -60px;
  width:      300px;
  height:     300px;
  background: radial-gradient(circle, rgba(245,197,24,.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding:  4.25rem 0 2.25rem;
}

/* White text scoped only to the left hero column */
.hero-text {
  color: #fff;
}
.hero-text h1 {
  color: #fff;
}
.hero-text .lead {
  color: rgba(255,255,255,.80);
}
.hero-text .mini-note {
  color: rgba(255,255,255,.60);
}
.hero-text .eyebrow {
  background:   rgba(245,197,24,.15);
  border-color: rgba(245,197,24,.40);
  color:        var(--accent);
}
.hero-text .btn-ghost {
  border-color: rgba(255,255,255,.40);
  background:   rgba(255,255,255,.10);
  color:        #fff;
}
.hero-text .btn-ghost:hover {
  background: rgba(255,255,255,.20);
  color:      #fff;
}
.trust-row {
  display:     flex;
  flex-wrap:   wrap;
  gap:         1rem;
  margin-top:  1.15rem;
  font-size:   .95rem;
}
.trust-pill {
  display:       flex;
  align-items:   center;
  gap:           .5rem;
  padding:       .45rem .65rem;
  border:        1px solid rgba(255,255,255,.20);
  border-radius: 999px;
  background:    rgba(255,255,255,.08);
  color:         rgba(255,255,255,.85);
}

/* ── Eyebrow pill (non-hero) ── */
.eyebrow {
  display:       inline-flex;
  gap:           .5rem;
  align-items:   center;
  font-weight:   900;
  font-size:     .9rem;
  color:         var(--brand-700);
  background:    var(--brand-100);
  border:        1px solid rgba(10,46,92,.12);
  padding:       .35rem .6rem;
  border-radius: 999px;
}

h1 {
  font-size:      clamp(2.1rem, 4vw, 3.25rem);
  line-height:    1.06;
  letter-spacing: -.03em;
  font-weight:    950;
  margin-top:     1rem;
}

.lead     { color: var(--ink-600); max-width: 46rem; margin-top: 1rem; font-size: 1.1rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }

/* ── Sections ── */
.section       { padding: 3.75rem 0; }
.section-title { font-weight: 950; letter-spacing: -.02em; margin-bottom: .5rem; }
.section-sub   { color: var(--ink-600); margin-bottom: 1.75rem; }

/* ── Cards ── */
.soft-card {
  border:        1px solid rgba(10,46,92,.10);
  border-radius: var(--card-radius);
  box-shadow:    var(--shadow-soft);
  background:    #fff;
  transition:    transform .18s ease, box-shadow .18s ease;
}
.soft-card:hover {
  transform:  translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ── Pricing card highlight ── */
.plan-highlight {
  background:   linear-gradient(135deg, #061D3A, #0A2E5C) !important;
  border-color: var(--accent) !important;
  color:        #fff;
}
.plan-highlight .fw-bold,
.plan-highlight .price,
.plan-highlight .text-muted {
  color: #fff !important;
}

/* ── Badges ── */
.badge-soft {
  background:  var(--brand-100);
  color:       var(--brand-700);
  border:      1px solid rgba(10,46,92,.16);
  font-weight: 900;
}
.badge-gold {
  background:  rgba(245,197,24,.15);
  color:       #7A5800;
  border:      1px solid rgba(245,197,24,.40);
  font-weight: 900;
}

/* ── Pricing ── */
.price       { font-weight: 950; letter-spacing: -.03em; font-size: 2.15rem; }
.price small { font-weight: 900; font-size: 1rem; color: var(--ink-600); }
.mini-note   { color: var(--ink-600); font-size: .92rem; }

/* Gold divider accent */
.gold-bar {
  display:       block;
  width:         48px;
  height:        4px;
  background:    var(--accent);
  border-radius: 2px;
  margin:        .75rem 0 1.25rem;
}

/* ── Footer ── */
footer {
  background: var(--brand-900);
  color:      rgba(255,255,255,.80);
}
footer a, .footer-link {
  color:           rgba(255,255,255,.80);
  text-decoration: none;
}
footer a:hover, .footer-link:hover {
  color:           var(--accent);
  text-decoration: none;
}
footer hr {
  border-color: rgba(255,255,255,.10) !important;
}
footer .fw-bold {
  color: #fff;
}
.footer-logo {
  filter: brightness(0) invert(1);
}

/* ── Accessibility ── */
@media (prefers-reduced-motion: reduce) {
  .soft-card           { transition: none; }
  .soft-card:hover     { transform: none; }
}