@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: radial-gradient(120% 120% at 12% 10%, #f6f7fb 0%, #eef1f6 40%, #f5f0e8 100%);
  --card: #ffffff;
  --text: #0b1220;
  --muted: #5b6474;
  --accent: #0f766e;
  --accent-2: #0b4f6c;
  --accent-3: #7c3aed;
  --border: #e2e8f0;
  --shadow: 0 30px 80px rgba(2, 6, 23, 0.16);
  --glow: 0 0 0 1px rgba(15, 118, 110, 0.12), 0 22px 48px rgba(15, 118, 110, 0.22);
  --glass: rgba(255, 255, 255, 0.72);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Sora', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  letter-spacing: -0.01em;
}

body::before {
  content: '';
  position: fixed;
  inset: -20% -10%;
  background:
    radial-gradient(40% 40% at 80% 10%, rgba(15, 118, 110, 0.14), transparent 60%),
    radial-gradient(30% 30% at 10% 80%, rgba(11, 79, 108, 0.14), transparent 65%),
    radial-gradient(22% 22% at 90% 80%, rgba(124, 58, 237, 0.08), transparent 65%);
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3, h4, h5 {
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 18px 48px;
}

.card {
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero {
  padding: 34px 32px 38px;
  border-radius: 26px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  background:
    radial-gradient(100% 120% at 0% 0%, rgba(15, 118, 110, 0.18), transparent 60%),
    radial-gradient(60% 80% at 100% 0%, rgba(11, 79, 108, 0.12), transparent 55%),
    linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(11, 79, 108, 0.06)),
    #fff;
  box-shadow: 0 32px 80px rgba(2, 6, 23, 0.18);
  margin-bottom: 28px;
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(47, 125, 186, 0.3);
  background: #fff;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 22px;
}

.brand-secondary {
  height: 92px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(2, 6, 23, 0.16));
}

.brand-logo {
  height: 92px;
  width: auto;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  font-weight: 600;
  background: var(--glass);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.12);
}

.ghost-pill {
  background: rgba(255, 255, 255, 0.7);
}

.top-links {
  display: none;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
  flex-direction: column;
  margin-top: 6px;
}
.top-links.open {
  display: flex;
}

.hero-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  margin-top: 18px;
}

.hero-right {
  display: grid;
  gap: 10px;
  align-self: start;
}

.hero-text h1 {
  margin: 6px 0 12px;
  font-size: 40px;
  line-height: 1.2;
}

.tagline {
  margin: 8px 0 16px;
  color: var(--muted);
  font-weight: 500;
}
.hero-callout {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(11, 79, 108, 0.08));
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 16px;
  padding: 14px 16px;
  display: grid;
  gap: 6px;
  box-shadow: 0 16px 30px rgba(2, 6, 23, 0.08);
}
.hero-callout .accent {
  color: var(--accent-1);
  font-weight: 500;
}

.why-main-title {
  text-align: center;
  margin: 24px 0 28px;
  font-size: 30px;
  font-weight: 800;
}

.why-anchor {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12px;
  margin-bottom: 48px;
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: 0.2px;
}
.why-arrow {
  font-size: 40px;
  line-height: 1;
}
.why-label {
  font-size: 22px;
}

.hero-line {
  margin: 6px 0;
  font-size: 22px;
  font-weight: 700;
}

.hero-photos {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.hero-photos img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 20px rgba(15, 23, 42, 0.15);
}

.center-img {
  display: block;
  margin: 10px auto 8px;
  max-width: 380px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(15,23,42,0.1);
}

.why-body {
  display: grid;
  gap: 8px;
}
.why-body p {
  margin: 0 0 8px;
  line-height: 1.5;
}
.why-body h2,
.why-body h3,
.why-body h4 {
  text-align: center;
}
.why-body p strong {
  display: block;
  text-align: center;
}

.section-title {
  text-align: center;
  margin-bottom: 6px;
}

.why-section {
  margin-top: 8px;
  padding: 16px 18px;
  display: grid;
  gap: 14px;
}

.why-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.why-card {
  background: #f8fbff;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.why-card h3 {
  margin: 0;
  font-size: 18px;
}

.why-card p {
  margin: 0;
  line-height: 1.5;
}

.action-row {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 4px;
}
.action-card {
  background: #f9fbff;
  border: 1px solid rgba(47, 125, 186, 0.12);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 8px 18px rgba(15,23,42,0.05);
  display: grid;
  gap: 8px;
  align-content: start;
}
.action-card h4 {
  margin: 0;
  text-align: center;
}
.action-card p {
  margin: 0;
  line-height: 1.45;
}
.action-card.image-card {
  align-items: center;
}
.action-list {
  margin: 0;
  padding-left: 16px;
  display: grid;
  gap: 6px;
}
.action-list li {
  margin: 0;
}

.why-hero {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.why-hero-text {
  flex: 1 1 50%;
}
.why-hero img {
  flex: 1 1 40%;
  max-width: 380px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(15,23,42,0.1);
}

.steps-vertical {
  margin-top: 12px;
  display: grid;
  gap: 12px;
  padding: 14px;
}
.steps-below {
  margin-top: 0;
}

.step-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

.step-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step-label {
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 4px;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  color: var(--text);
  display: grid;
  gap: 8px;
}

.bullets li {
  position: relative;
  padding-left: 16px;
}

.bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 700;
  box-shadow: var(--glow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(15, 118, 110, 0.22);
}

.button:active {
  transform: translateY(0);
}

.card,
.search,
.hero {
  backdrop-filter: saturate(120%) blur(0.5px);
}

.button-small {
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  gap: 4px;
}

.ghost {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.9);
}

.search {
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  box-shadow: 0 26px 46px rgba(15, 23, 42, 0.14);
  display: grid;
  gap: 10px;
}

.search.compact {
  gap: 6px;
  max-width: 520px;
  padding: 12px 16px;
  align-items: flex-start;
  min-height: 0;
  max-height: 320px;
  overflow: hidden;
}

.start-title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-2);
}

.start-subtitle {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.1;
}

.search.compact .button {
  width: 100%;
  margin-top: 2px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 16px;
}

.search.compact .trust-cards {
  margin-top: 3px;
  gap: 3px;
}

.search.compact .trust-card {
  padding: 4px 8px;
  min-height: 36px;
}

.search.compact .trust-title {
  font-size: 13px;
  margin: 0;
}

.search.compact .trust-text {
  font-size: 12px;
  margin: 0;
  line-height: 1.2;
}

.search.compact p {
  margin: 0;
}

.label {
  font-weight: 600;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.search input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 16px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.search input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(47, 125, 186, 0.15);
}

.search button {
  padding: 14px 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.15s ease;
  box-shadow: 0 10px 25px rgba(47, 125, 186, 0.25);
}

.search button:hover {
  transform: translateY(-1px);
}

.search button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(47, 125, 186, 0.2);
}

.hint {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.trust-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.trust-card {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f8fbff;
}

.trust-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
  margin-top: 6px;
}

.trust-title {
  margin: 0;
  font-weight: 700;
}

.trust-text {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero-top {
    flex-wrap: wrap;
    gap: 10px;
  }
  .pill {
    width: 100%;
    text-align: center;
  }
  .hero-body {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) {
  .top-links {
    flex-direction: row;
    width: auto;
    margin-top: 0;
    align-items: center;
  }
  .top-links.open {
    display: flex;
  }
  .pill {
    width: auto;
    text-align: left;
  }
}

.layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 16px;
  align-items: start;
}

#map {
  min-height: 520px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.map-col {
  padding: 14px;
}

.results-card {
  padding: 18px 16px 10px;
  border-left: 1px solid var(--border);
}

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.results-card h2 {
  margin: 0;
}

.status {
  color: var(--muted);
  font-size: 14px;
  max-width: 240px;
  text-align: right;
}

.results {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 480px;
  overflow-y: auto;
  display: grid;
  gap: 8px;
}

.result {
  padding: 12px 12px 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  background: #fff;
}

.result:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(47, 125, 186, 0.12);
}

.result-title {
  margin: 0 0 4px;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(47, 125, 186, 0.12);
  color: var(--accent-2);
  font-weight: 700;
  font-size: 12px;
}

.result-meta {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.result-meta a,
.leaflet-popup-content a {
  color: #0b63c5;
  text-decoration: underline;
}

.hidden {
  display: none;
}

.question-card {
  margin: 8px 0 18px;
  padding: 20px;
}

.question-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.chip {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(47, 125, 186, 0.12);
  color: var(--accent-2);
  font-weight: 700;
  font-size: 13px;
}

.question-desc {
  margin: 6px 0 14px;
  color: var(--muted);
}

.question-form {
  display: grid;
  gap: 12px;
}

.question-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.question-content {
  display: grid;
  gap: 10px;
}

.input-text {
  width: 100%;
  padding: 14px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 16px;
  resize: vertical;
  background: rgba(255, 255, 255, 0.92);
}

.input-text:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.18);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.option-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
  background: #fff;
}

.option-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 20px rgba(15, 118, 110, 0.12);
  transform: translateY(-1px);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.state-chip {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 26px rgba(2, 6, 23, 0.08);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.blog-posts {
  display: grid;
  gap: 12px;
}

.tab-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tab-button {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 118, 110, 0.25);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  cursor: pointer;
}

.tab-button.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-color: transparent;
}

.faq-group summary {
  cursor: pointer;
}

.option-card.active {
  border-color: var(--accent-2);
  box-shadow: 0 8px 16px rgba(29, 78, 216, 0.15);
}

.option-title {
  margin: 0 0 6px;
  font-weight: 700;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
}

.pill-option {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 10px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.pill-option.active {
  border-color: var(--accent-2);
  background: rgba(29, 78, 216, 0.08);
  color: var(--accent-2);
  font-weight: 700;
}

.checklist {
  display: grid;
  gap: 12px;
}

.checklist-group {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}

.checklist-group h4 {
  margin: 0 0 4px;
}

.checklist-group p {
  margin: 0 0 8px;
  color: var(--muted);
}

.checklist-options {
  display: grid;
  gap: 6px;
}

.checklist-options label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 14px;
}

.checklist-options small {
  color: var(--muted);
}

.summary-card {
  padding: 18px;
  margin-top: 16px;
}

.summary-content {
  display: grid;
  gap: 10px;
  margin: 10px 0;
}

.summary-list {
  list-style: disc outside;
  padding-left: 12px;
  margin: 0;
  display: block;
}
.summary-list li {
  margin: 0 0 4px;
  padding: 0;
  list-style: disc outside;
}
.summary-list.bullets {
  margin-left: 0;
  padding-left: 12px;
}
.summary-list.bullets li {
  padding-left: 0;
}
.summary-list.bullets li::before {
  content: none;
}

.summary-nearby ul {
  margin: 4px 0 0;
  padding-left: 16px;
}

.button.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.info-grid {
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.info-card {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 12px 20px rgba(15, 23, 42, 0.05);
}

.info-card h3 {
  margin: 6px 0 8px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.cta-provider {
  padding: 20px;
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 16px;
  align-items: center;
}

.provider-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.contact-card {
  padding: 18px;
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  align-items: center;
}

.contact-details p {
  margin: 4px 0;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 4px;
  font-size: 13px;
}

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

@media (max-width: 980px) {
  .hero-body {
    grid-template-columns: 1fr;
  }

  .layout {
    grid-template-columns: 1fr;
  }

  .results {
    max-height: none;
  }

  .map-col {
    padding: 12px;
  }

  .status {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .input-row {
    grid-template-columns: 1fr;
  }

  .search button {
    width: 100%;
  }

  #map {
    min-height: 360px;
  }

  .cta-provider {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 22px 18px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  h1 {
    font-size: 26px;
    line-height: 1.2;
  }
  h2 {
    font-size: 20px;
    line-height: 1.25;
  }
  .page-shell,
  .hero,
  .card,
  .layout,
  .search,
  .question-card,
  .results-card {
    padding: 14px;
  }
  .hero-body {
    gap: 14px;
  }
  .hero-text p,
  .tagline,
  .result,
  .question-desc {
    font-size: 14px;
  }
  .button {
    width: 100%;
    justify-content: center;
  }
  .map-col {
    padding: 8px;
  }
  #map {
    min-height: 320px;
  }
  .result-title {
    font-size: 16px;
  }
  .result-meta {
    font-size: 13px;
    gap: 4px;
  }

  /* Top pills on mobile */
  .top-links {
    justify-content: flex-start;
    gap: 6px;
  }
  .pill {
    font-size: 12px;
    padding: 8px 10px;
    line-height: 1.2;
    white-space: normal;
    max-width: 100%;
  }
  .brand-logo {
    height: 72px;
  }
  .brand {
    font-size: 18px;
  }
}

.site-footer {
  margin-top: 32px;
  padding: 20px 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}

.footer-inner {
  display: grid;
  gap: 10px;
}

.footer-brand {
  font-weight: 700;
  font-size: 18px;
}

.footer-meta {
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 600;
}

.footer-links a {
  color: var(--accent-2);
}

.billing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.plan-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.plan-title {
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.plan-price {
  font-size: 22px;
  font-weight: 800;
  margin: 8px 0 6px;
}

.plan-note {
  color: var(--muted);
  font-size: 13px;
}

.plan-badge {
  font-size: 12px;
  color: #0f172a;
  background: rgba(29, 78, 216, 0.12);
  padding: 4px 8px;
  border-radius: 999px;
  display: inline-block;
  margin-top: 8px;
}

.billing-cta {
  margin-top: 16px;
  display: inline-flex;
}

.plan-card-stack {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  margin: 10px 0 12px;
}

.plan-card-heading {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.plan-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(47, 125, 186, 0.15);
  border-radius: 10px;
  background: rgba(47, 125, 186, 0.06);
  font-weight: 600;
}

.plan-name {
  font-size: 14px;
}

.plan-price-inline {
  font-size: 14px;
  color: var(--text);
}

.plan-flag {
  grid-column: 2 / 4;
  font-size: 12px;
  color: var(--muted);
  margin-left: 24px;
}

.plan-note {
  font-size: 12px;
  color: var(--muted);
  margin: 4px 0 0;
}

.star {
  color: #f59e0b;
  font-weight: 800;
  letter-spacing: 1px;
}
