/* ==========================================================
   California Medical Marijuana Card - Modern 2026 Stylesheet
   Colors: Light Green + #CEB9F3 (Lavender)
   ========================================================== */

:root {
  /* Brand palette */
  --color-green-50:  #F2FBF5;
  --color-green-100: #E0F5E6;
  --color-green-200: #BDEACA;
  --color-green-300: #88D4AB;
  --color-green-400: #5BC48E;
  --color-green-500: #34A766;
  --color-green-600: #1F8049;
  --color-green-700: #155B33;

  --color-lavender-50:  #F7F1FE;
  --color-lavender-100: #ECE0FB;
  --color-lavender-200: #DCC9F6;
  --color-lavender-300: #CEB9F3;   /* primary accent */
  --color-lavender-400: #B89AEB;
  --color-lavender-500: #9C73E1;

  --color-ink-900: #0E1F17;
  --color-ink-700: #2A3B33;
  --color-ink-500: #51635A;
  --color-ink-300: #95A39B;

  --color-cream:  #FBFCF8;
  --color-paper:  #FFFFFF;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #E0F5E6 0%, #F2FBF5 35%, #ECE0FB 70%, #CEB9F3 100%);
  --grad-soft: linear-gradient(135deg, #F2FBF5 0%, #F7F1FE 100%);
  --grad-button: linear-gradient(135deg, #34A766 0%, #1F8049 100%);
  --grad-card:   linear-gradient(160deg, #FFFFFF 0%, #F7F1FE 100%);
  --grad-mesh: radial-gradient(at 12% 18%, #CEB9F3 0px, transparent 45%),
               radial-gradient(at 85% 12%, #BDEACA 0px, transparent 45%),
               radial-gradient(at 75% 88%, #DCC9F6 0px, transparent 45%),
               radial-gradient(at 8% 82%, #E0F5E6 0px, transparent 45%);

  /* Type */
  --font-display: 'Fraunces', 'DM Serif Display', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Rhythm */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 14px rgba(20, 40, 30, 0.06);
  --shadow-md: 0 12px 30px rgba(20, 40, 30, 0.08);
  --shadow-lg: 0 24px 60px rgba(40, 60, 50, 0.12);
  --shadow-purple: 0 18px 40px rgba(156, 115, 225, 0.25);

  --container: 1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-ink-700);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-green-600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--color-green-700); }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-ink-900);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.25rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

/* Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-tight { padding: 60px 0; }
.text-center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green-600);
  background: var(--color-green-100);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.eyebrow.lavender { color: var(--color-lavender-500); background: var(--color-lavender-100); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-button);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 128, 73, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(31, 128, 73, 0.34); color: #fff; }
.btn-secondary {
  background: var(--color-lavender-300);
  color: var(--color-ink-900);
  box-shadow: var(--shadow-purple);
}
.btn-secondary:hover { background: var(--color-lavender-400); color: #fff; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--color-green-700);
  border: 1.5px solid var(--color-green-300);
}
.btn-outline:hover { background: var(--color-green-100); }
.btn-lg { padding: 18px 36px; font-size: 17px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 252, 248, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(189, 234, 202, 0.4);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--color-ink-900); font-size: 17px; letter-spacing: -0.01em; }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--grad-button);
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  box-shadow: var(--shadow-sm);
}
.brand-text { line-height: 1.1; font-family: var(--font-body); }
.brand-text small { display: block; font-size: 11px; color: var(--color-ink-500); font-weight: 500; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--color-ink-700);
  position: relative;
}
.nav a:hover { color: var(--color-green-700); }
.nav a.active { color: var(--color-green-700); }
.nav .btn { padding: 12px 22px; font-size: 15px; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-ink-900);
  margin: 5px auto;
  border-radius: 2px;
  transition: .3s;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 18px 0 0;
  font-size: 14px;
  color: var(--color-ink-500);
}
.breadcrumbs ol {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.breadcrumbs li { margin: 0; display: flex; align-items: center; }
.breadcrumbs li + li::before {
  content: "›";
  margin: 0 8px;
  color: var(--color-ink-300);
}
.breadcrumbs a { color: var(--color-green-600); }
.breadcrumbs li[aria-current="page"] { color: var(--color-ink-700); font-weight: 500; }

/* Hero */
.hero {
  position: relative;
  padding: 70px 0 100px;
  background: var(--grad-hero);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-mesh);
  opacity: 0.55;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--color-green-600);
}
.hero p.lead {
  font-size: 18px;
  color: var(--color-ink-700);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 26px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat .stat-num { font-family: var(--font-display); font-size: 28px; color: var(--color-ink-900); line-height: 1; }
.hero-stat span { font-size: 13px; color: var(--color-ink-500); margin-top: 4px; }

.hero-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card h3 { font-family: var(--font-body); font-weight: 700; font-size: 18px; margin-bottom: 18px; color: var(--color-ink-900); }
.hero-card ul { list-style: none; padding: 0; }
.hero-card li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px dashed rgba(20, 60, 40, 0.1); font-size: 15px; }
.hero-card li:last-child { border-bottom: none; }
.hero-card .check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--color-green-200);
  color: var(--color-green-700);
  flex-shrink: 0;
  display: grid; place-items: center;
  font-size: 13px;
  font-weight: 700;
}

/* Page hero (interior) */
.page-hero {
  position: relative;
  padding: 50px 0 70px;
  background: var(--grad-soft);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-mesh);
  opacity: 0.35;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { margin: 18px 0 16px; max-width: 820px; }
.page-hero .lead { font-size: 18px; color: var(--color-ink-700); max-width: 720px; }

/* Cards & grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: var(--color-paper);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(189, 234, 202, 0.4);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .icon-bubble {
  width: 56px; height: 56px;
  background: var(--grad-soft);
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  font-size: 26px;
  margin-bottom: 18px;
  color: var(--color-green-600);
}
.card-purple { border-color: rgba(206, 185, 243, 0.5); }
.card-purple .icon-bubble { background: var(--color-lavender-100); color: var(--color-lavender-500); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step {
  position: relative;
  padding: 36px 28px;
  background: var(--color-paper);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(189, 234, 202, 0.4);
  box-shadow: var(--shadow-sm);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-button);
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-purple);
}
.step h3 { font-size: 1.25rem; }

/* Benefits */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit {
  padding: 28px;
  background: var(--color-paper);
  border-radius: var(--radius-md);
  border: 1px solid rgba(206, 185, 243, 0.3);
  transition: all .3s ease;
}
.benefit:hover { border-color: var(--color-lavender-300); box-shadow: var(--shadow-purple); transform: translateY(-3px); }
.benefit .benefit-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ECE0FB 0%, #BDEACA 100%);
  display: grid; place-items: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.benefit h3 { font-family: var(--font-body); font-weight: 700; font-size: 17px; margin-bottom: 8px; color: var(--color-ink-900); }
.benefit p { font-size: 14px; color: var(--color-ink-500); margin: 0; }

/* Conditions */
.conditions-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 30px; }
.condition {
  background: var(--color-paper);
  border-radius: var(--radius-md);
  padding: 22px 12px;
  text-align: center;
  border: 1px solid rgba(189, 234, 202, 0.4);
  transition: all .3s ease;
}
.condition:hover { background: var(--grad-soft); transform: translateY(-3px); }
.condition .cond-icon {
  width: 56px; height: 56px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, #ECE0FB 0%, #BDEACA 100%);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--color-green-700);
}
.condition .cond-icon svg { width: 28px; height: 28px; }
.cond-with-desc { padding: 22px 14px 18px !important; }
.cond-with-desc small { display: block; font-size: 11.5px; color: var(--color-ink-500); margin-top: 6px; line-height: 1.45; font-weight: 400; }
.cond-with-desc span { font-size: 14px; font-weight: 600; color: var(--color-ink-900); display: block; }
.condition { transition: all .3s ease; }
.condition:hover .cond-icon { background: linear-gradient(135deg, #BDEACA 0%, #CEB9F3 100%); transform: scale(1.05); transition: all .3s ease; }
.condition span { font-size: 14px; font-weight: 600; color: var(--color-ink-700); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  background: var(--color-paper);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  border: 1px solid rgba(189, 234, 202, 0.4);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all .3s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured {
  background: var(--grad-card);
  border: 2px solid var(--color-lavender-300);
  box-shadow: var(--shadow-purple);
}
.price-card.featured::after {
  content: "Most Popular";
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--color-lavender-300);
  color: var(--color-ink-900);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-card h3 { font-family: var(--font-body); font-weight: 700; font-size: 18px; color: var(--color-green-700); }
.price-card .plan-sub { font-size: 14px; color: var(--color-ink-500); margin-bottom: 18px; }
.price-card .price {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 400;
  color: var(--color-ink-900);
  line-height: 1;
  margin-bottom: 22px;
}
.price-card .price span { font-size: 18px; color: var(--color-ink-500); }
.price-card ul { list-style: none; padding: 0; margin-bottom: 28px; }
.price-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(20, 60, 40, 0.06);
  display: flex;
  gap: 10px;
  font-size: 14.5px;
}
.price-card ul li::before {
  content: "✓";
  color: var(--color-green-500);
  font-weight: 700;
}

/* Stats band */
.stats-band {
  background: var(--grad-hero);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-mesh);
  opacity: 0.4;
}
.stats-band .container { position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--color-ink-900);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 15px; color: var(--color-ink-700); }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: var(--color-paper);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(189, 234, 202, 0.4);
  box-shadow: var(--shadow-sm);
}
.stars { color: #F5A623; font-size: 16px; margin-bottom: 10px; letter-spacing: 2px; }
.review p { font-size: 15px; color: var(--color-ink-700); margin-bottom: 14px; line-height: 1.6; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad-soft);
  display: grid; place-items: center;
  font-family: var(--font-display);
  color: var(--color-green-700);
  font-size: 18px;
}
.reviewer-name { font-weight: 600; font-size: 14px; color: var(--color-ink-900); }
.reviewer-meta { font-size: 12px; color: var(--color-ink-500); }

/* FAQ */
.faqs { max-width: 880px; margin: 0 auto; }
.faq {
  background: var(--color-paper);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-bottom: 14px;
  border: 1px solid rgba(189, 234, 202, 0.4);
  transition: all .3s ease;
}
.faq[open] { border-color: var(--color-lavender-300); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  color: var(--color-ink-900);
  margin: 0;
  line-height: 1.4;
}
.faq .toggle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--color-green-100);
  color: var(--color-green-700);
  display: grid; place-items: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform .3s ease, background .3s ease;
}
.faq[open] .toggle { background: var(--color-lavender-200); transform: rotate(45deg); }
.faq-body { padding-top: 14px; color: var(--color-ink-700); font-size: 15.5px; line-height: 1.7; }
.faq-body p { margin-bottom: 12px; }
.faq-body p:last-child { margin-bottom: 0; }

/* CTA band */
.cta-band {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #155B33 0%, #1F8049 50%, #9C73E1 100%);
  border-radius: var(--radius-xl);
  margin: 60px 24px;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(at 20% 30%, rgba(206, 185, 243, 0.35), transparent 50%),
              radial-gradient(at 80% 70%, rgba(189, 234, 202, 0.3), transparent 50%);
}
.cta-band .container { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin-bottom: 28px; }
.cta-band .btn-primary { background: #fff; color: var(--color-green-700); box-shadow: 0 12px 30px rgba(0,0,0,0.25); }
.cta-band .btn-primary:hover { background: var(--color-lavender-100); color: var(--color-green-700); }

/* Cities */
.cities-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.city {
  padding: 14px 12px;
  background: var(--color-paper);
  border: 1px solid rgba(189, 234, 202, 0.4);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink-700);
  transition: all .25s ease;
}
.city:hover { background: var(--grad-soft); border-color: var(--color-lavender-300); color: var(--color-green-700); }

/* Forms */
.form-card {
  background: var(--color-paper);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(206, 185, 243, 0.4);
}
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--color-ink-900); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(20, 60, 40, 0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--color-paper);
  color: var(--color-ink-900);
  transition: border-color .2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-green-400);
  box-shadow: 0 0 0 3px rgba(91, 196, 142, 0.15);
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--color-ink-700); margin-bottom: 14px; }

/* Content blocks for interior pages */
.prose { max-width: 860px; }
.prose h2 { margin-top: 38px; }
.prose h3 { margin-top: 26px; font-size: 1.3rem; }
.prose p, .prose li { font-size: 16.5px; color: var(--color-ink-700); }
.prose ul, .prose ol { margin-bottom: 18px; }
.callout {
  background: var(--grad-soft);
  border-left: 4px solid var(--color-lavender-300);
  padding: 22px 28px;
  border-radius: var(--radius-md);
  margin: 26px 0;
}
/* callout-emphasis removed - no bold */

.table-wrap { overflow-x: auto; margin: 22px 0; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
table.modern {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-paper);
  font-size: 15px;
}
table.modern th {
  background: var(--grad-soft);
  text-align: left;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-ink-900);
  font-size: 14px;
  letter-spacing: 0.02em;
}
table.modern td {
  padding: 14px 20px;
  border-top: 1px solid rgba(20, 60, 40, 0.06);
  color: var(--color-ink-700);
}
table.modern tr:hover td { background: var(--color-green-50); }

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #0E1F17 0%, #1A3A2E 100%);
  color: rgba(255, 255, 255, 0.78);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -100px; left: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(206, 185, 243, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.site-footer::after {
  content: "";
  position: absolute;
  bottom: -160px; right: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(91, 196, 142, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
  position: relative;
}
.footer-grid h4 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: rgba(255, 255, 255, 0.72); font-size: 14.5px; }
.footer-grid a:hover { color: var(--color-lavender-300); }
.footer-brand { max-width: 360px; }
.footer-brand p { font-size: 14.5px; line-height: 1.7; margin: 14px 0; color: rgba(255,255,255,0.7); }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-text small { color: rgba(255, 255, 255, 0.55); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-contact a { color: var(--color-lavender-300); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.7); }
.footer-bottom a:hover { color: var(--color-lavender-300); }
.disclaimer {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin-top: 28px;
  position: relative;
}

/* Trust badges */
.trust-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; margin-top: 38px; padding: 24px; background: rgba(255,255,255,0.6); border-radius: var(--radius-lg); backdrop-filter: blur(10px); }
.trust-badge { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--color-ink-700); font-weight: 500; }
.trust-badge .badge-icon { font-size: 20px; color: var(--color-green-600); }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3, .steps, .pricing-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid, .grid-4, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .conditions-grid { grid-template-columns: repeat(4, 1fr); }
  .cities-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 700px) {
  .section { padding: 60px 0; }
  .nav { display: none; position: absolute; top: 78px; left: 0; right: 0; background: var(--color-cream); flex-direction: column; padding: 24px; gap: 14px; border-bottom: 1px solid rgba(189, 234, 202, 0.4); }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
  .grid-3, .grid-2, .steps, .pricing-grid, .reviews-grid, .benefits-grid, .grid-4, .stats-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-band { margin: 40px 16px; padding: 60px 24px; }
  .hero { padding: 50px 0 70px; }
  .hero-card { padding: 26px; }
}

/* Animations */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float { animation: floatY 6s ease-in-out infinite; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* Utility */
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 50px; }
.section-head p { font-size: 17px; color: var(--color-ink-500); }

/* SVG icon styling inside decorative containers (replaces glyph text) */
.benefit .benefit-icon svg { color: var(--color-green-700); }
.card .icon-bubble svg { color: var(--color-green-700); }
.card-purple .icon-bubble svg { color: var(--color-lavender-500); }
.stars { display: inline-flex; gap: 2px; }
.stars svg { color: #F5A623; }
.hero-card .check { display: inline-flex; align-items: center; justify-content: center; }
.hero-card .check svg { width: 14px; height: 14px; }


/* === LOGO IMAGE STYLING (replaces old text brand) === */
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-logo {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  max-width: 420px;
}
@media (max-width: 1024px) {
  .brand-logo { height: 64px; max-width: 360px; }
}
@media (max-width: 700px) {
  .brand-logo { height: 52px; max-width: 270px; }
}
/* Hide any legacy brand-mark / brand-text remnants */
.brand .brand-mark, .brand .brand-text { display: none !important; }

/* Footer brand - logo on dark bg, wrap with white pill for contrast */
.brand-footer {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.96);
  padding: 10px 14px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.brand-logo-footer {
  height: 38px;
  max-width: 240px;
}


/* Header logo enlarged - bump container height */
.site-header .inner { padding-top: 16px; padding-bottom: 16px; min-height: 110px; }
@media (max-width: 1024px) {
  .site-header .inner { padding-top: 14px; padding-bottom: 14px; min-height: 96px; }
}
@media (max-width: 700px) {
  .site-header .inner { padding-top: 10px; padding-bottom: 10px; min-height: 76px; }
}
/* Footer logo bigger too */
.brand-logo-footer { height: 68px !important; max-width: 380px !important; }
@media (max-width: 700px) {
  .brand-logo-footer { height: 52px !important; max-width: 290px !important; }
}
/* Footer brand pill subtle background since logo now transparent */
.brand-footer { background: rgba(255,255,255,0.97) !important; padding: 12px 18px !important; }
/* === Header logo enlarged === */
