:root {
  --color-primary: #1e88e5;
  --color-primary-dark: #0d47a1;
  --color-primary-rgb: 30, 136, 229; /* for rgba(var(--color-primary-rgb),alpha) */
  --color-secondary: #ffb300;
  --color-bg: #f9fafb;
  --color-text: #1f2937;
  --container-width: 1200px;
  --radius: 8px;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-auth {
  display: flex;
  gap: 0.75rem;
}

/* Hide mobile auth buttons on desktop */
@media (min-width: 769px) {
  .nav-auth { display: none; }
}

.nav a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
  height: auto;
}

.nav a:hover {
  color: var(--color-primary);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 18px;
  justify-content: center;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

/* Burger → Cross animation */
.burger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition:
    background var(--transition),
    color var(--transition);
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  height: 50px;
}

.btn--primary:hover {
  background: var(--color-primary-dark);
}

.btn--secondary {
  background: var(--color-secondary);
  color: #000;
}

.btn--lg {
  font-size: 1.125rem;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 0 6rem;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* Benefits */
.benefits h2 {
  text-align: center;
  margin: 4rem 0 2rem;
  font-size: 2rem;
}

.benefits__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.benefit {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.benefit h3 {
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

/* Features */
.features {
  background: #fff;
  padding: 4rem 0;
  margin-top: 4rem;
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.feature {
  margin-bottom: 2rem;
  text-align: center;
}

.feature h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

/* CTA */
.cta {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
  margin-top: 3rem;
}

.cta__inner h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Contact */
.contact {
  padding: 4rem 0;
}

.contact h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.contact__form {
  max-width: 600px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__form input,
.contact__form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
}

.contact__form button {
  width: 100%;
  border: none;
  padding: 0.875rem 1.5rem;
}

.form-status {
  text-align: center;
  margin-top: 1rem;
}

.phone-group {
  display: flex;
  gap: 0;
}
.phone-group select {
  border-radius: var(--radius) 0 0 var(--radius);
  border-right: 0;
  padding: 0 1rem;
  background-color: #f3f4f6;
  border-color: #d1d5db;
  cursor: pointer;
  width: 120px;
}
.phone-group input {
  border-radius: 0 var(--radius) var(--radius) 0;
  flex: 1;
  width: 100%;
}

/* Footer */
.footer {
  background: #f9fafb;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}

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

.nav-phone {
  margin-left: 1rem;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
/* Pricing */
.pricing h2 {
  text-align: center;
  margin: 4rem 0 0;
  font-size: 2rem;
}

.pricing__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
}
@media (max-width: 1200px) {
  .pricing__grid { grid-template-columns: repeat(2, minmax(240px, 1fr)); }
}
@media (max-width: 640px) {
  .pricing__grid { grid-template-columns: 1fr; }
}

.plan {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.plan__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  flex-wrap: wrap;
}

.plan__price .plan__note {
  flex-basis: 80%;
  margin-top: 4px;
}

.plan__note {
  display: block;
  background: #f3f4f6;
  color: #000;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.75rem;
  margin-top: 4px;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
  flex-grow: 1;
  max-height: 250px;
  overflow-y: auto;
}

.plan .btn {
  margin-top: auto;
}

.plan ul li {
  margin-bottom: 0.75rem;
  padding-right: 1rem;
}

/* Custom Scrollbar for Pricing Plans */
.plan ul::-webkit-scrollbar {
  width: 8px;
}

.plan ul::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.plan ul::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.plan ul::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

.plan--pro {
  border: 2px solid var(--color-primary);
  box-shadow: 0 0 0 1px var(--accent);
}

/* Responsive */
html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
}

/* Audience */
.audience h2 {
  text-align: center;
  margin: 4rem 0 2rem;
  font-size: 2rem;
}

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

.audience-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.audience-item h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

/* Spacing between major sections */
.benefits,
.features,
.audience,
.pricing {
  padding: 3rem 0;
}

.cta {
  margin-top: 3rem;
}

/* Analytics */
.analytics h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.analytics__subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  color: #4b5563;
}

.analytics__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.tab {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f3f4f6;
  cursor: pointer;
  font-size: 0.875rem;
  transition:
    background var(--transition),
    color var(--transition);
}

.tab.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.analytics__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.analytics__text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.checklist {
  list-style: none;
}

.checklist li::before {
  content: '✔';
  color: var(--color-primary);
  margin-right: 0.5rem;
}

.analytics__image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.analytics__panel {
  display: none;
  opacity: 0;
  transition: opacity var(--transition);
}

.analytics__panel.active {
  display: block;
  opacity: 1;
}

/* Feature Slider (hero) */
.feature-slider {
  position: relative;
  display: block;
  width: 100vw;
  height: 240px;
  margin: 1.5rem calc(50% - 50vw);
  overflow-x: scroll; /* ensure horizontal scroll exists */
  overflow-y: hidden;
  cursor: grab;
  user-select: none;
  touch-action: none; /* allow JS to manage drag in Chrome */
  scrollbar-width: none; /* Firefox hide */
}
.feature-slider::-webkit-scrollbar { display: none; } /* WebKit hide */

.slides {
  display: inline-flex; /* allow natural scrollWidth calc */
  gap: 16px;
  height: 100%;
}

.slide {
  flex: 0 0 calc(240px * 1.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.slide-caption {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  padding: 8px 0;
  font-weight: 500;
  background: #ffffff00;
  border-radius: var(--radius) var(--radius) 0 0;
}

.slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  -webkit-user-drag: none;
  user-select: none;
}

.feature-slider.grabbing,
.feature-slider:active {
  cursor: grabbing;
}

.slide.active {
  border-radius: var(--radius);
}

.slider-control {
  display: none;
}

/* Modules */
.modules__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.modules__panel {
  display: none;
  opacity: 0;
  transition: opacity var(--transition);
  margin-top: 2rem;
}
.modules__panel.active {
  display: block;
  opacity: 1;
}

.modules__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.modules__image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* FABs */
.fab-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}
.fab {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: inherit;
  border: none;
  outline: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  position: relative;
}
.fab i {
  font-size: 24px;
  line-height: 1;
}
.fab--phone {
  background: var(--color-primary);
}
.fab--tg {
  background: #229ed9;
}
.fab--wa {
  background: #25d366;
}
.fab:hover {
  transform: scale(1.05);
}
.fab-main {
  animation: none;
}
.fab-main::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: pulse-ring 2.5s cubic-bezier(0.66, 0, 0, 1) infinite;
  box-shadow: 0 0 0 0 rgba(var(--color-primary-rgb), 0.5);
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(var(--color-primary-rgb), 0.6);
  }
  80% {
    transform: scale(1.6);
    box-shadow: 0 0 0 10px rgba(var(--color-primary-rgb), 0);
  }
  100% {
    transform: scale(1.6);
    box-shadow: 0 0 0 0 rgba(var(--color-primary-rgb), 0);
  }
}

.fab-item {
  animation: none;
}

.header__inner nav {
  margin-left: auto;
  display: flex;
  gap: 1.5rem;
}
.header-cta {
  margin-left: 1.5rem;
}
@media (max-width: 768px) {
  .feature-slider {
    height: 200px;
    margin: 1rem calc(50% - 50vw);
  }
  
  .slide {
    flex: 0 0 calc(180px);
  }
  
  .slide img {
    height: 160px;
  }
}

/* Expandable FAB */
.fab-main {
  background: var(--color-primary);
}
.fab-list {
  position: absolute;
  bottom: 72px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}
.fab-item {
  transform: scale(0);
  opacity: 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  pointer-events: auto;
}
#fabMenu.show .fab-item,
#fabMenu.active .fab-item {
  transform: scale(1);
  opacity: 1;
}

.policy-note {
  font-size: 0.75rem;
  color: #4b5563;
  text-align: center;
  margin-top: 0.5rem;
}
.policy-note a {
  color: var(--color-primary);
  text-decoration: underline;
}

.pricing__header {
  position: relative;
  margin-bottom: 2rem;
}

.pricing__header h2 {
  text-align: center;
}

.pricing__header .billing-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.billing-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.billing-toggle__label {
  margin-right: 0.5rem;
  font-weight: 500;
}

.billing-toggle input {
  display: none;
}

.billing-toggle .slider {
  position: relative;
  width: 48px;
  height: 26px;
  background: #d1d5db;
  border-radius: 34px;
  transition: background var(--transition);
}

.billing-toggle .slider::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
}

.billing-toggle input:checked + .slider {
  background: var(--color-primary);
}

.billing-toggle input:checked + .slider::before {
  transform: translateX(22px);
}

/* === Theme Toggle === */
.footer {
  position: relative;
}
.theme-toggle {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  user-select: none;
  line-height: 1;
}

/* Natural colors for sun/moon icons */
.theme-toggle i {
  pointer-events: none;
  transition: color var(--transition);
}

:root[data-theme='dark'] .theme-toggle i {
  /* sun icon on dark background */
  color: #facc15; /* vibrant yellow */
}

:root[data-theme='light'] .theme-toggle i {
  /* moon icon on light background */
  color: #4b5563; /* muted dark gray */
}

/* === Dark theme variables === */
:root[data-theme='dark'] {
  /* Night palette */
  --panel-bg: #10111a;
  --card-bg: #1a1c29;
  --accent: #03dac6;
  --text-main: #ffffff;
  --text-secondary: #bbbbbb;
  --border-color: #373b4a;
  --success: #03dac6;
  --error: #cf6679;

  /* Map palette to existing variables */
  --color-primary: var(--accent);
  --color-primary-dark: var(--accent);
  --color-primary-rgb: 3, 218, 198;
  --color-secondary: var(--error);
  --color-bg: var(--panel-bg);
  --color-text: var(--text-main);
}

/* === Dark theme element overrides === */
:root[data-theme='dark'] body {
  background: var(--panel-bg);
  color: var(--text-main);
}
:root[data-theme='dark'] .header,
:root[data-theme='dark'] .benefit,
:root[data-theme='dark'] .feature,
:root[data-theme='dark'] .features,
:root[data-theme='dark'] .plan,
:root[data-theme='dark'] .cta,
:root[data-theme='dark'] .analytics__panel,
:root[data-theme='dark'] .modules__panel {
  background: var(--card-bg);
  color: var(--text-main);
  border-color: var(--border-color);
}
:root[data-theme='dark'] .nav a {
  color: var(--text-main);
}
:root[data-theme='dark'] .nav a:hover {
  color: var(--accent);
}
:root[data-theme='dark'] .btn--primary {
  background: var(--accent);
  color: #000;
}
:root[data-theme='dark'] .btn--primary:hover {
  background: var(--success);
}
:root[data-theme='dark'] input,
:root[data-theme='dark'] textarea,
:root[data-theme='dark'] select {
  background: var(--card-bg);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}
:root[data-theme='dark'] .footer {
  background: var(--card-bg);
  color: var(--text-secondary);
}

:root[data-theme='dark'] .hero {
  background: linear-gradient(135deg, var(--panel-bg) 0%, var(--card-bg) 100%);
}

:root[data-theme='dark'] .tab {
  background: var(--panel-bg);
  color: var(--text-main);
  border-color: var(--border-color);
}
:root[data-theme='dark'] .tab.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

:root[data-theme='dark'] .analytics__panel,
:root[data-theme='dark'] .modules__panel {
  background: inherit;
}

:root[data-theme='dark'] .audience-item {
  background: var(--card-bg);
  color: var(--text-main);
  border-color: var(--border-color);
}

:root[data-theme='dark'] .plan__note {
  background: var(--panel-bg);
  color: var(--text-main);
}

/* Dark theme interactive elements */
:root[data-theme='dark'] ::selection {
  background: var(--accent);
  color: #000;
}

:root[data-theme='dark'] input:focus,
:root[data-theme='dark'] textarea:focus,
:root[data-theme='dark'] select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

:root[data-theme='dark'] body::-webkit-scrollbar-track {
  background: var(--card-bg);
}

:root[data-theme='dark'] body::-webkit-scrollbar-thumb {
  background-color: var(--accent);
}

:root[data-theme='dark'] body::-webkit-scrollbar-thumb:hover {
  background-color: #019a8f; /* Darker accent */
}

:root[data-theme='dark'] .plan ul::-webkit-scrollbar-track {
  background: var(--card-bg);
}

:root[data-theme='dark'] .plan ul::-webkit-scrollbar-thumb {
  background-color: var(--accent);
}

:root[data-theme='dark'] .plan ul::-webkit-scrollbar-thumb:hover {
  background-color: #019a8f; /* Darker accent */
}

/* === Global Scrollbar === */
html,
body {
  overflow-x: hidden; /* prevent horizontal bar */
  scrollbar-width: thin; /* Firefox */
}

/* WebKit vertical scrollbar */
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  background: transparent;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
  border-radius: 10px;
}
body::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-primary-dark);
}
/* Hide horizontal scrollbar */
body::-webkit-scrollbar:horizontal {
  display: none;
  height: 0;
}

/* Mobile layout tweaks for Functional Modules */
@media (max-width: 768px) {
  .modules__grid {
    display: flex; /* stack elements vertically */
    flex-direction: column;
  }
  .modules__image {
    order: -1; /* show image first */
  }
  .header-cta {
    display: none;
  }
  /* Functional modules block */
  .modules__grid {
    display: flex; /* stack elements vertically */
    flex-direction: column;
  }
  .modules__image {
    order: -1; /* show image first */
  }
  
  /* Analytics section - image first on mobile */
  .analytics__grid {
    display: flex;
    flex-direction: column;
  }
  .analytics__image {
    order: -1; /* show image first */
    margin-bottom: 1rem;
  }
  
  .nav-phone {
    display: none;
  }
  /* Navigation */
  .nav {
    position: fixed;
    top: 64px;
    right: -100%;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e5e7eb;
    width: 200px;
    padding: 1rem;
    box-shadow: -2px 2px 6px rgba(0, 0, 0, 0.05);
    transition: right var(--transition);
    height: calc(100vh - 64px);
  }
  .nav.open {
    right: 0;
  }

  .nav a { color: #111827; }
  .nav a:hover { color: var(--color-primary); }
  .nav-auth { width: 100%; gap: 0.5rem; flex-direction: column; margin-top: 0.5rem; }
  .nav-auth .btn { width: 100%; text-align: center; padding: 0.6rem 0.9rem; }
  .burger {
    display: flex;
  }

  /* Section spacing tweaks */
  .benefits h2 {
    margin-top: 0;
  }
  .benefits,
  .audience,
  .pricing {
    margin: 0 1rem;
  }
  .features {
    margin: 0;
  }
  .features h2 {
    margin-bottom: 1rem;
  }

  /* Hide phone & CTA in header */
  .nav-phone,
  .header-cta {
    display: none;
  }
  .audience h2 {
    margin-top: 0;
  }
  /* Audience grid one column on mobile */
  .audience__grid {
    grid-template-columns: 1fr;
  }
  .pricing h2 {
    margin: 0;
  }
  /* Stack toggle below title in pricing section */
  .pricing__header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .pricing__header .billing-toggle {
    position: static;
    margin-top: 0.75rem;
    transform: none;
  }
  .contact {
    margin: 0 1rem;
  }
  /* Ensure footer text doesn't overlap theme toggle */
  .footer__inner {
    padding-left: 3rem; /* space for icon */
    padding-right: 4rem; /* avoid overlap with chat FAB */
    box-sizing: border-box;
  }
}

:root[data-theme='dark'] .analytics__subtitle {
  color: var(--text-main);
}

/* === New Billing Switch === */
.billing-switch {
  display: inline-flex;
  background: #e5e7eb;
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.billing-option {
  border: none;
  background: transparent;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  color: #4b5563;
  transition: background var(--transition), color var(--transition);
}
.billing-option.active {
  background: var(--color-primary);
  color: #fff;
}
/* Dark theme overrides */
:root[data-theme='dark'] .billing-switch {
  background: #3f3f46; /* neutral dark */
}
:root[data-theme='dark'] .billing-option {
  color: #d1d5db;
}
:root[data-theme='dark'] .billing-option.active {
  background: var(--color-primary);
  color: #000;
}

/* Center switch under heading */
.pricing__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 768px) {
  .pricing__header {
    gap: 0.75rem;
  }
}