/* ================================
   SMILE BACK — Conversion Redesign
   Clarity · Phone-First · Trust
   ================================ */

:root {
  /* Colors - Quietly Premium */
  --color-primary: #14b8a6; /* Dental Mint (Teal 500) */
  --color-primary-dark: #0f766e; /* Teal 700 */
  --color-navy: #1e293b; /* Deep Slate (Slate 800) */
  --color-bg: #f9fafb; /* Enamel White (Slate 50) */
  --color-surface: #ffffff; /* Pure White */
  --color-surface-alt: #f0fdfa; /* Soft Mint (Teal 50) */
  --color-border: #e2e8f0; /* Slate 200 */
  --color-text: #334155; /* Slate 700 */
  --color-muted: #64748b; /* Slate 500 */
  --color-cta: #f47190; /* Friendlier Vibrant Pink */
  --color-cta-hover: #e85d7d; /* Hover Rose */
  --color-cta-hover: #e85d7d; /* Hover Rose */
  --color-success: #10b981; /* Emerald 500 */
  --color-accent: #f59e0b; /* Amber 500 */
  --color-accent-soft: #fef3c7; /* Amber 100 */

  /* Typography */
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Spacing - Generous */
  --spacing-section: 120px;
  --spacing-container: 24px;

  /* Border Radius */
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows - Soft & Diffused */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);

  /* Animation Variables */
  --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
  --duration-normal: 0.5s;
  --duration-slow: 0.8s;
}

/* Base Styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
  background: var(--color-bg);
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--color-navy);
}
h2 {
  font-size: 42px;
  margin-bottom: 20px;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-container);
}
.container-narrow {
  max-width: 680px;
  margin: 0 auto;
}
.text-center {
  text-align: center;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Sections */
.section {
  padding: var(--spacing-section) 0;
}
.section-alt {
  background: var(--color-surface);
}
.section-header {
  margin-bottom: 56px;
}
.section-header h2 {
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px;
  color: var(--color-muted);
  font-style: italic;
  color: var(--color-muted);
  font-style: italic;
  margin-top: 32px;
}

/* Accent Utilities */
.text-accent {
  color: var(--color-accent) !important;
}
.bg-accent {
  background-color: var(--color-accent) !important;
}
.bg-accent-soft {
  background-color: var(--color-accent-soft) !important;
}

.badge-accent {
  display: inline-block;
  background: var(--color-accent-soft);
  color: #b45309; /* Darker Amber for text contrast */
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-cta);
  color: #fff;
  padding: 14px 28px;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-cta-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-sm {
  font-size: 14px;
  padding: 10px 18px;
}
.btn-lg {
  font-size: 18px;
  padding: 16px 36px;
}
.btn-full {
  width: 100%;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
}
.nav-links a:hover {
  color: var(--color-navy);
}
.nav-highlight {
  color: var(--color-primary) !important;
  font-weight: 700 !important;
}
.hamburger {
  display: none;
  background: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--color-navy);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 2000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav-close {
  align-self: flex-end;
  font-size: 32px;
  background: none;
  color: var(--color-muted);
}
.mobile-nav-link {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-navy);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 16px;
}

/* Hero */
.hero {
  padding: 120px 0 100px;
  overflow: hidden;
}
.hero-content {
  max-width: 600px;
  margin: 0 auto 64px;
  text-align: center;
}
.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 40px;
  letter-spacing: -0.03em;
}
.hero-sub {
  font-size: 20px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 56px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Value Block - Centered & Refined */
.hero-value-block {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  margin-bottom: 48px;
  /* Mint Aura: Soft teal shadow */
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(0, 0, 0, 0.02),
    0 0 40px rgba(20, 184, 166, 0.15);
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pricing-header {
  margin-bottom: 16px;
  color: var(--color-muted);
}
.pricing-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-amount-muted {
  font-family: var(--font-display);
  font-size: 20px;
  text-decoration: line-through;
  text-decoration-color: rgba(27, 42, 74, 0.2);
  color: #94a3b8;
  font-weight: 600;
}
.pricing-period {
  font-size: 14px;
  text-decoration: none;
  font-weight: 400;
}

.pricing-divider {
  height: 1px;
  background: var(--color-border);
  width: 60px;
  margin: 0 auto 24px;
}

.pricing-main {
  margin-bottom: 24px;
}
.pricing-label-main {
  display: block;
  font-size: 32px; /* Increased from 22px */
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.pricing-amount-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  line-height: 1;
  margin-bottom: 12px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  transition:
    color 0.6s var(--ease-out),
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.pricing-amount.is-final {
  color: inherit;
  transform: scale(1.05);
}
.pricing-period-main {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-muted);
}
.pricing-savings {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-success);
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
}

/* Included List */
.hero-included-list {
  padding-top: 24px;
  border-top: 1px solid var(--color-surface-alt);
  text-align: left;
}
.list-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  width: 100%;
}
.list-header::before,
.list-header::after {
  content: '';
  height: 1px;
  background: var(--color-border);
  flex: 1;
}
.hero-included-list ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 12px;
}
.hero-included-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.4;
}
.hero-included-list .icon-check {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Tooltip Styles */
.tooltip-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  cursor: help;
}
.icon-info {
  width: 16px;
  height: 16px;
  color: var(--color-muted);
  transition: color 0.2s;
}
.tooltip-container:hover .icon-info {
  color: var(--color-primary);
}
.tooltip-content {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--color-navy);
  color: #fff;
  padding: 12px;
  border-radius: var(--radius-md);
  width: 220px;
  text-align: center;
  font-size: 13px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s var(--ease);
  box-shadow: var(--shadow-lg);
  pointer-events: none;
  z-index: 10;
}
.tooltip-content::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: var(--color-navy) transparent transparent transparent;
}
.tooltip-container:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-8px);
}
.tooltip-content strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}
.tooltip-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  margin: 0;
}

/* Hero Form */
.hero-form-wrapper {
  max-width: 440px;
  margin: 0 auto;
  scroll-margin-top: 120px;
}
.form-card {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.form-header {
  text-align: center;
  margin-bottom: 24px;
}
.form-header h3 {
  font-size: 26px;
  margin-bottom: 8px;
}
.form-header p {
  font-size: 14px;
  color: var(--color-muted);
}
.input-group {
  margin-bottom: 16px;
}
.input-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 16px;
  transition: border-color 0.2s;
}
.input-group input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(91, 181, 162, 0.1);
}
.form-micro {
  margin-top: 16px;
  font-size: 12px;
  color: var(--color-muted);
  text-align: center;
}
.hero-disclosure {
  margin-top: 24px;
  font-size: 13px;
  color: var(--color-muted);
  text-align: center;
  opacity: 0.8;
}

/* Scroll Indicator */
.scroll-indicator {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
.scroll-indicator a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary); /* Dental Mint */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.1); /* Soft Mint bg */
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease);
  animation: bounceVertical 2s infinite ease-in-out;
}
.scroll-indicator a:hover {
  background: rgba(20, 184, 166, 0.2);
  transform: translateY(2px);
}
.icon-scroll-arrow {
  width: 40px;
  height: 40px;
}

/* How it Works */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.how-step {
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.how-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.how-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.how-step p {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .how-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .how-step {
    padding: 24px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .step-num {
    margin: 0;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .how-step-content {
    flex: 1;
  }
  .how-step h3 {
    margin-bottom: 4px;
  }
}

/* Pricing */
.section-lead {
  font-size: 18px;
  color: var(--color-muted);
  margin-top: 16px;
  margin-bottom: 40px;
}
.pricing-main-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.pricing-options {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
  margin-bottom: 32px;
  text-align: left;
}
.pricing-option {
  flex: 1;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
}
.pricing-option--highlight {
  border-color: var(--color-accent);
  background: var(--color-accent-soft);
  position: relative;
}
.pricing-divider {
  width: 1px;
  background: var(--color-border);
}
.pricing-period {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 8px;
}
.pricing-cost {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-navy);
}
.pricing-cost span {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
}
.badge-save {
  background: var(--color-success);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 6px;
  text-transform: uppercase;
}

.pricing-benefits {
  margin-top: 24px;
  margin-bottom: 32px;
  text-align: left;
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
}
.pricing-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--color-text);
}
.pricing-benefits .icon-check {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-navy);
  text-align: left;
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.faq-content p {
  color: var(--color-muted);
  padding-bottom: 24px;
  padding-right: 24px;
  font-size: 15px;
}
.icon-plus {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
  color: var(--color-muted);
  transition: transform 0.3s var(--ease);
}
.faq-item.active .icon-plus {
  transform: rotate(45deg);
  color: var(--color-primary);
}
.faq-item.active .faq-content {
  max-height: 200px;
}

/* Final CTA */
.section-final-cta {
  padding: 64px 0;
  background: var(--color-navy);
  color: #fff;
}
.section-final-cta h2 {
  color: #fff;
  margin-bottom: 32px;
  font-size: 32px;
}
.btn-final {
    font-size: 24px;
    padding: 20px 48px;
}

/* Footer */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--color-border);
  font-size: 14px;
  color: var(--color-muted);
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  font-weight: 500;
}
.footer-disclosure {
  max-width: 600px;
  margin: 0 auto 16px;
  opacity: 0.7;
  font-size: 13px;
  line-height: 1.5;
}

/* Scroll Anim */
[data-section-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.section-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- ANIMATIONS --- */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseSubtle {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(15px, 20px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes bounceVertical {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* Curaground Blobs */
.hero-bg-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.08;
  animation: float 25s infinite ease-in-out;
}
.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--color-primary);
  top: -150px;
  left: -100px;
  opacity: 0.05;
  animation-duration: 30s;
}
.hero-blob-2 {
  width: 600px;
  height: 600px;
  background: #a5f3fc; /* Cyan 200 */
  bottom: -200px;
  right: -200px;
  opacity: 0.08;
  animation-duration: 35s;
  animation-delay: -5s;
}

/* Base Animation Classes */
.animate-in {
  opacity: 0;
  animation: fadeInUp var(--duration-slow) var(--ease-out) forwards;
}

.delay-100 {
  animation-delay: 0.15s;
}
.delay-200 {
  animation-delay: 0.3s;
}
.delay-300 {
  animation-delay: 0.45s;
}

/* Price Emphasis */
.pricing-amount-wrapper {
  /* Subtle emphasis */
  animation: pulseSubtle 3s infinite ease-in-out;
  will-change: transform;
  animation-delay: 2s; /* Delayed to start after counter finishes */
}

/* Button Micro-interaction */
.btn-primary {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(91, 181, 162, 0.3);
  background-color: #4ea896; /* slightly lighter/darker depending on theme */
  filter: brightness(1.05);
}

/* Scroll Reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.5s var(--ease-out);
}
.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Trust & Credibility --- */
.social-proof-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.social-proof-tag {
  background: rgba(20, 184, 166, 0.08);
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(20, 184, 166, 0.1);
}
.avatar-stack {
  display: flex;
  align-items: center;
}
.avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
}
.avatar:first-child {
  margin-left: 0;
}

.privacy-note {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-bottom: 0;
}

.footer-mission {
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: 16px;
  font-size: 15px;
  opacity: 0.9;
}

/* Spacing Enhancements */
#faq {
  padding: 160px 0;
}
.footer {
  margin-top: 80px;
}
.hero-form-wrapper {
  margin-top: 64px;
}

.text-highlight {
  color: var(--color-cta);
  position: relative;
  display: inline-block;
  font-weight: 800;
}

@keyframes pulseBrand {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .animate-in,
  .hero-blob,
  .pricing-amount-wrapper,
  .reveal-on-scroll {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}
/* Responsive */
@media (max-width: 768px) {
  :root {
    --spacing-section: 64px;
  }
  .header-cta,
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero-sub {
    font-size: 18px;
  }
  .hero h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 32px;
  }
  /* Pricing Action Button */
.pricing-action .btn {
    font-size: 20px; /* Increased from default lg 18px */
    padding: 18px 40px;
}
  .hero-sub {
    font-size: 18px;
  }
  .hero-value-block {
    padding: 24px 20px;
  }
  .pricing-amount {
    font-size: 48px;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .input-group-row {
    flex-direction: column;
  }
  .input-group-row button {
    width: 100%;
  }
}

/* Success Message Animation */
.form-success-container {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
  animation: scaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.success-icon {
  width: 48px;
  height: 48px;
  background: #dcfce7; /* Green-100 */
  color: #166534; /* Green-700 */
  border-radius: 50%;
  padding: 10px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #19497e;
  margin-bottom: 0.5rem;
}

.success-message {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hidden {
  display: none !important;
}

.visible-flex {
  display: flex !important;
  flex-direction: column;
}

/* Provider Page Specific Styles */
.provider-hero {
  padding: 100px 0 80px;
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.provider-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-visual-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--color-border);
}

.hero-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-new {
  display: inline-block;
  background: var(--color-surface-alt);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.feature-grid-alt {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card-alt {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all 0.3s var(--ease);
}

.feature-card-alt:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.feature-icon-circle {
  width: 48px;
  height: 48px;
  background: var(--color-surface-alt);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon-circle svg {
  width: 24px;
  height: 24px;
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  align-items: center;
}

.split-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.comparison-box {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--color-border);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comp-head {
  padding: 16px 24px;
  background: var(--color-navy);
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.comp-head-alt {
  background: var(--color-primary);
}

.comp-cell {
  padding: 20px 24px;
  font-size: 15px;
}

.comp-cell-label {
  font-weight: 700;
  color: var(--color-navy);
  background: var(--color-bg);
  grid-column: span 2;
  font-size: 13px;
  text-transform: uppercase;
  padding: 8px 24px;
}

.commitment-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.commitment-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.commitment-dot {
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 992px) {
  .provider-hero-inner, .split-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 600px) {
  .feature-grid-alt {
    grid-template-columns: 1fr;
  }
}

/* Redesigned Commitment Section */
.commitment-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.commitment-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.commitment-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--color-navy);
}

.commitment-card p {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.5;
  margin: 0;
}

/* Process Timeline (How Partnership Works) */
.process-timeline {
  display: flex;
  justify-content: space-between;
  text-align: center;
  position: relative;
  max-width: 1000px;
  margin: 64px auto 0;
  gap: 32px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 32px; /* Center with icon */
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  flex: 1;
}

.process-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 4px solid #fff; /* Gap for line */
}

.process-icon svg {
  width: 32px;
  height: 32px;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 16px;
  padding: 0 16px;
}

/* Commitment Grid (Clean 3-Card Layout) */
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.commitment-card {
  /* Resets from previous style if needed, or ensures clean slate */
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  text-align: center;
}

.commitment-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.commitment-icon {
  margin-bottom: 24px;
  color: var(--color-accent);
}

.commitment-icon svg {
  width: 48px;
  height: 48px;
}

@media (max-width: 768px) {
  .process-timeline {
    flex-direction: column;
    gap: 48px;
  }
  .process-timeline::before {
    display: none;
  }
}

/* FIX: Override previous flex row style */
.commitment-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  background: #fff;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  height: 100%;
}

.commitment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.commitment-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-surface-alt); /* Soft Mint */
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
}

.commitment-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 2px;
}

.commitment-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-navy);
}

/* FIX: Timeline Visuals */
.process-timeline {
  margin-top: 80px;
}

.process-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border: 2px solid var(--color-accent); /* Amber Border */
  color: var(--color-accent);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2); /* Amber Glow */
  z-index: 2;
  position: relative;
}

.process-icon svg {
  width: 36px;
  height: 36px;
}

/* Thicker, dotted connecting line */
.process-timeline::before {
  top: 40px; /* Center with 80px icon */
  height: 0;
  border-top: 2px dashed var(--color-border);
  background: none;
}

/* Comparison Redesign (Side-by-Side Cards) */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 64px auto 0;
}

.cmp-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--color-border);
  transition: transform 0.3s var(--ease);
}

.cmp-header h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.cmp-header p {
  font-size: 16px;
  margin-bottom: 32px;
  color: var(--color-muted);
}

.cmp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.cmp-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.cmp-list li:last-child {
  margin-bottom: 0;
}

/* Bad Card (Insurance) */
.cmp-card-bad {
  background: #f8fafc; /* Very light cool gray */
  border-color: #e2e8f0;
}

.cmp-card-bad h3 {
  color: var(--color-muted);
}

.cmp-card-bad .icon-x {
  color: #ef4444; /* Red */
  font-weight: 700;
  font-size: 18px;
}

/* Good Card (Cura) */
.cmp-card-good {
  background: #fff;
  border: 2px solid var(--color-primary); /* Highlight border */
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  transform: scale(1.02); /* Slight lift to emphasize */
}

.cmp-card-good h3 {
  color: var(--color-primary);
}

.cmp-card-good .icon-check {
  color: #10b981; /* Green */
  font-weight: 700;
  font-size: 18px;
  background: #d1fae5;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cmp-card-good {
    transform: none; /* Remove scale on mobile for better stacking */
    order: -1; /* Show good card first on mobile? Or standard flow? Standard is fine. */
  }
}

/* FIX: Provider Hero Typography */
.provider-hero h1 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800; /* Extra bold */
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--color-navy);
}

@media (max-width: 768px) {
  .provider-hero h1 {
    font-size: 48px;
  }
}
