/* DentalPlanRx — v2 stylesheet
   April 2026
   Inter font. TMR-style layout. Dental blue palette.
   Dark-left-clear-right hero. */

:root {
  --blue-900: #0c2340;
  --blue-800: #0e3460;
  --blue-700: #0369a1;
  --blue-600: #0284c7;
  --blue-500: #0891b2;
  --blue-400: #22d3ee;
  --blue-100: #e0f2fe;
  --blue-50:  #f0f9ff;
  --coral:    #f97316;
  --ink:      #0f172a;
  --slate-700:#334155;
  --slate-500:#64748b;
  --slate-400:#94a3b8;
  --slate-300:#cbd5e1;
  --slate-200:#e2e8f0;
  --slate-100:#f1f5f9;
  --white:    #ffffff;
  --cream:    #fafaf9;
  --max-w:    1200px;
  --radius:   14px;
  --body:     'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}
img, video { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
button { font-family:inherit; cursor:pointer; border:none; }

/* Announcement bar */
.bar {
  background: var(--blue-900);
  color: var(--white);
  font-size: 13px;
  text-align: center;
  padding: 11px 16px;
  letter-spacing: -0.005em;
  font-weight: 400;
}
.bar strong { color: var(--white); font-weight: 600; }
.bar a { color: var(--blue-100); text-decoration: underline; text-underline-offset: 2px; }
.bar .asterisk { color: var(--coral); font-weight: 600; margin-left: 2px; }

/* Nav - TMR-style taller header */
nav.top {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--slate-100);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px 24px;
  min-height: 84px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.brand .logo-box {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border: 1px solid var(--slate-100);
}
.brand .logo-box img { width: 44px; height: 44px; display: block; }
.brand .dental { color: var(--ink); font-weight: 700; }
.brand .plan { color: var(--ink); font-weight: 700; }
.brand .rx { color: #10b981; font-weight: 700; }
.nav-links { display:flex; gap: 28px; align-items:center; }
.nav-links a { font-size: 14px; color: var(--slate-700); font-weight: 500; letter-spacing: -0.005em; transition: color 0.2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--blue-500); }
.nav-cta {
  background: var(--coral); color: var(--white) !important;
  padding: 12px 22px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  transition: all 0.2s ease;
  letter-spacing: -0.005em;
}
.nav-cta:hover { background: var(--coral-d); transform: translateY(-1px); }

/* === HERO — dark left, clear video right === */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 520px;
  background: var(--blue-900);
}
.hero-left {
  background: var(--blue-900);
  padding: 64px 64px 64px 80px;
  display: flex; flex-direction: column; justify-content: center;
  color: var(--white);
}
.hero-right {
  background: var(--blue-800);
  position: relative;
  overflow: hidden;
}
.hero-right video, .hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 13px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  max-width: 270px;
}
.hero-badge .b-title { font-weight: 700; color: var(--ink); margin-bottom: 2px; letter-spacing: -0.01em; font-size: 14px; }
.hero-badge .b-sub { color: var(--slate-500); font-size: 12px; }
.video-toggle {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  background: rgba(12,35,64,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: background 0.2s ease;
}
.video-toggle:hover { background: rgba(12,35,64,0.9); }

.eyebrow {
  font-size: 12px;
  color: var(--blue-400);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow-light {
  font-size: 12px;
  color: var(--blue-500);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
h1.hero-h {
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: var(--white);
}
h1.hero-h em { font-style: normal; color: var(--blue-400); }
.hero-sub {
  font-size: 17px;
  color: var(--blue-100);
  margin-bottom: 32px;
  line-height: 1.55;
  max-width: 520px;
  letter-spacing: -0.005em;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-waitlist {
  background: var(--coral); color: var(--white);
  padding: 18px 36px; border-radius: 12px;
  font-size: 17px; font-weight: 600;
  transition: all 0.2s ease;
  display: inline-block;
  letter-spacing: -0.01em;
  box-shadow: 0 6px 20px rgba(249,115,22,0.35);
}
.btn-hero-waitlist:hover { background: var(--coral-d); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(249,115,22,0.45); }
.btn-primary {
  background: var(--coral); color: var(--white);
  padding: 14px 26px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  transition: all 0.2s ease;
  display: inline-block;
  letter-spacing: -0.005em;
}
.btn-primary:hover { background: #ea580c; transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--white);
  padding: 14px 26px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: all 0.2s ease;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-primary-dark {
  background: var(--blue-900); color: var(--white);
  padding: 14px 26px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  transition: all 0.2s ease;
  display: inline-block;
}
.btn-primary-dark:hover { background: var(--blue-800); transform: translateY(-1px); }
.btn-secondary-dark {
  background: transparent; color: var(--blue-900);
  padding: 14px 26px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  border: 1.5px solid var(--slate-300);
  transition: all 0.2s ease;
  display: inline-block;
}
.btn-secondary-dark:hover { border-color: var(--blue-500); color: var(--blue-500); }

/* === PRICING CARDS === */
.pricing-cards-wrap {
  background: var(--cream);
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
}
.pricing-cards-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px 48px;
}
.pricing-cards-head {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 720px;
}
}
.pricing-cards-head h2 {
  font-size: clamp(28px, 3.8vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 14px;
}
.pricing-cards-head p {
  font-size: 17px;
  color: var(--slate-500);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
}
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pcard {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pcard:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(12,35,64,0.08); border-color: var(--blue-500); }
.pcard.featured { border-color: var(--blue-500); background: var(--blue-50); }
.pcard-tag {
  display: inline-block;
  background: var(--blue-500); color: var(--white);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 999px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.pcard-tag.coral { background: var(--coral); }
.pcard h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}
.pcard-sub {
  font-size: 13px;
  color: var(--slate-500);
  margin-bottom: 20px;
  line-height: 1.5;
  min-height: 38px;
}
.pcard-price {
  font-size: 42px;
  font-weight: 700;
  color: var(--blue-900);
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 4px;
}
.pcard-price .unit {
  font-size: 16px;
  color: var(--slate-500);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.pcard-fine {
  font-size: 12px;
  color: var(--slate-500);
  margin-top: 6px;
  line-height: 1.45;
  min-height: 30px;
}
.pcard-fine strong { color: var(--ink); font-weight: 600; }
.pcard-features {
  list-style: none;
  margin: 18px 0 24px;
  padding: 18px 0 0;
  border-top: 1px solid var(--slate-100);
  flex: 1;
}
.pcard-features li {
  font-size: 13px;
  color: var(--slate-700);
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.45;
}
.pcard-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 14px; height: 14px;
  background: var(--blue-500);
  border-radius: 999px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M7 13l-3-3 1.5-1.5L7 10l6-6 1.5 1.5z'/%3E%3C/svg%3E") no-repeat center / 100%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M7 13l-3-3 1.5-1.5L7 10l6-6 1.5 1.5z'/%3E%3C/svg%3E") no-repeat center / 100%;
}
.pcard-cta {
  display: block;
  background: var(--blue-900); color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  text-align: center;
  transition: background 0.2s ease;
  letter-spacing: -0.005em;
  margin-top: auto;
}
.pcard-cta:hover { background: var(--blue-800); }
.pcard-cta.coral { background: var(--coral); }
.pcard-cta.coral:hover { background: #ea580c; }
.pcard-more {
  display: block;
  font-size: 12px;
  color: var(--blue-500);
  text-align: center;
  margin-top: 10px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  min-height: 16px;
}
.pcard-more:hover { color: var(--blue-700); }
.pcard-more-spacer {
  display: block;
  min-height: 16px;
  margin-top: 10px;
}

.pricing-footnote {
  max-width: 960px;
  margin: 32px auto 0;
  font-size: 11.5px;
  color: var(--slate-500);
  line-height: 1.65;
  text-align: left;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--slate-200);
}
.pricing-footnote .ast { color: var(--coral); font-weight: 700; }

/* Sections */
section { padding: 72px 24px; }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-eyebrow {
  font-size: 12px;
  color: var(--blue-500);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
h2 {
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 760px;
}
h2.center { margin-left: auto; margin-right: auto; text-align: center; }
h3 { font-weight: 600; letter-spacing: -0.015em; }
.lead {
  font-size: 18px; color: var(--slate-500);
  max-width: 620px; line-height: 1.55;
  font-weight: 400;
}
.lead.center { margin: 0 auto; text-align: center; }

/* Problem */
.problem { background: var(--white); }
.problem-grid { max-width: 900px; margin: 0 auto; }
.problem-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.problem-stat { border-left: 3px solid var(--blue-500); padding-left: 16px; }
.problem-stat .n {
  font-weight: 700;
  font-size: 32px;
  color: var(--blue-900);
  letter-spacing: -0.03em;
  line-height: 1;
}
.problem-stat .l { font-size: 13px; color: var(--slate-500); margin-top: 8px; line-height: 1.45; }
.problem-cite { font-size: 12px; color: var(--slate-500); margin-top: 24px; font-style: italic; }

/* How it works — TMR-style circular numbered badges */
.how-section {
  padding: 64px 24px 72px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.how-card {
  text-align: center;
  padding: 0 12px;
}
.how-badge {
  width: 44px; height: 44px;
  background: var(--blue-500);
  color: var(--white);
  border-radius: 999px;
  font-weight: 700;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  letter-spacing: -0.01em;
}
.how-card h3 { font-size: 17px; margin-bottom: 10px; color: var(--ink); letter-spacing: -0.01em; font-weight: 600; }
.how-card p { font-size: 14px; color: var(--slate-500); line-height: 1.6; }

/* Benefits — 4 cards like TWR */
.benefits { background: var(--cream); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.benefit {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--slate-200);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.benefit:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(12,35,64,0.08); }
.benefit-img {
  aspect-ratio: 4/3;
  background: var(--blue-50);
  overflow: hidden;
}
.benefit-img img { width: 100%; height: 100%; object-fit: cover; }
.benefit-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.benefit h3 { font-size: 17px; margin-bottom: 8px; color: var(--ink); letter-spacing: -0.01em; }
.benefit p { font-size: 14px; color: var(--slate-500); line-height: 1.55; flex: 1; }
.benefit .tag {
  display: inline-block; margin-top: 14px;
  font-size: 12px; color: var(--blue-500); font-weight: 600;
  letter-spacing: 0.01em;
}
.benefit .tag a { color: var(--blue-500); text-decoration: none; }

/* Promises */
.promises { background: var(--white); }
.promises-list { max-width: 900px; margin: 48px auto 0; }
.promise {
  display: grid; grid-template-columns: 48px 1fr; gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--slate-100);
  align-items: start;
}
.promise:last-child { border-bottom: none; }
.promise-n {
  font-size: 18px; font-weight: 700;
  color: var(--blue-500);
  letter-spacing: -0.01em;
}
.promise h3 { font-size: 18px; margin-bottom: 6px; color: var(--ink); font-weight: 600; letter-spacing: -0.01em; }
.promise p { font-size: 15px; color: var(--slate-500); line-height: 1.55; }

/* Configurator (below the fold, anchored from pricing cards) */
.configurator-section { background: var(--blue-50); border-top: 1px solid var(--slate-100); border-bottom: 1px solid var(--slate-100); }
.configurator {
  max-width: 560px;
  margin: 40px auto 0;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.config-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; gap: 16px;
}
.config-row label { font-size: 14px; font-weight: 500; color: var(--ink); }
.config-row label small { display: block; font-size: 12px; color: var(--slate-500); font-weight: 400; margin-top: 3px; }
.counter {
  display: flex; align-items: center; gap: 14px;
  background: var(--white);
  border: 1px solid var(--slate-300);
  border-radius: 999px;
  padding: 5px;
}
.counter button {
  width: 30px; height: 30px;
  border-radius: 999px;
  background: var(--blue-900); color: var(--white);
  font-size: 16px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.counter button:hover:not(:disabled) { background: var(--blue-800); }
.counter button:disabled { background: var(--slate-300); cursor: not-allowed; }
.counter-val { min-width: 24px; text-align: center; font-weight: 600; font-size: 15px; }
.toggle { display: flex; background: var(--slate-100); border-radius: 999px; padding: 4px; }
.toggle button {
  padding: 7px 14px;
  border-radius: 999px;
  background: transparent;
  font-size: 13px; font-weight: 500;
  color: var(--slate-500);
  transition: all 0.2s ease;
}
.toggle button.active {
  background: var(--white); color: var(--blue-900);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.price-display { text-align: center; padding: 24px 0 20px; border-top: 1px solid var(--slate-100); margin-top: 8px; }
.price-plan { font-size: 11px; color: var(--slate-500); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.price-main { font-weight: 700; font-size: 56px; color: var(--blue-900); letter-spacing: -0.035em; line-height: 1; }
.price-cycle { font-size: 14px; color: var(--slate-500); margin-top: 6px; }
.price-save {
  display: inline-block;
  margin-top: 12px;
  background: var(--blue-100); color: var(--blue-900);
  padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 500;
}
.price-cta {
  display: block; width: 100%;
  background: var(--blue-900); color: var(--white);
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 15px; font-weight: 500;
  margin-top: 20px;
  transition: background 0.2s ease;
  text-align: center;
}
.price-cta:hover { background: var(--blue-800); }

/* FAQ */
.faq { background: var(--cream); }
.faq-list { max-width: 800px; margin: 48px auto 0; }
details { border-top: 1px solid var(--slate-200); padding: 22px 0; }
details:last-child { border-bottom: 1px solid var(--slate-200); }
summary {
  cursor: pointer;
  font-size: 17px; font-weight: 500;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  list-style: none;
  padding-right: 16px;
  letter-spacing: -0.005em;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 22px; color: var(--blue-500); font-weight: 300; }
details[open] summary::after { content: '−'; }
details p { margin-top: 14px; color: var(--slate-500); font-size: 15px; line-height: 1.6; }

/* Waitlist section */
.waitlist { background: var(--blue-900); color: var(--white); text-align: center; }
.waitlist h2 { color: var(--white); margin: 0 auto 20px; }
.waitlist .lead { color: var(--blue-100); margin: 0 auto 36px; }
.wait-form { max-width: 520px; margin: 0 auto; }
.wait-form-row { display: flex; gap: 8px; margin-bottom: 12px; }
.wait-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  color: var(--ink);
}
.wait-form button {
  background: var(--coral); color: var(--white);
  padding: 14px 26px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.wait-form button:hover { opacity: 0.9; }
.wait-note { font-size: 12px; color: var(--blue-100); margin-top: 20px; opacity: 0.75; }
.form-message { margin-top: 20px; padding: 13px 18px; border-radius: 10px; font-size: 14px; display: none; }
.form-message.success { background: var(--blue-100); color: var(--blue-900); display: block; }
.form-message.error { background: #fee2e2; color: #991b1b; display: block; }

/* Topic page hero (single column centered, not dark) */
.topic-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px 48px;
  text-align: center;
}
.topic-hero h1 {
  font-weight: 700;
  font-size: clamp(32px, 4.8vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}
.topic-hero h1 em { font-style: normal; color: var(--blue-500); }
.topic-hero .lead {
  font-size: 18px;
  color: var(--slate-500);
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.55;
}
.topic-hero-img {
  max-width: 960px;
  margin: 40px auto 0;
  padding: 0 24px;
}
.topic-hero-img img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 16/7;
  object-fit: cover;
}

.topic-detail {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.topic-detail h2 {
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 36px);
  margin-top: 48px;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}
.topic-detail h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.topic-detail p {
  font-size: 17px;
  color: var(--slate-700);
  margin-bottom: 18px;
  line-height: 1.7;
}
.topic-detail ul, .topic-detail ol { margin-left: 24px; margin-bottom: 24px; }
.topic-detail li { font-size: 17px; color: var(--slate-700); margin-bottom: 10px; line-height: 1.6; }
.topic-detail strong { color: var(--ink); font-weight: 600; }
.topic-detail blockquote {
  border-left: 4px solid var(--blue-500);
  padding-left: 24px;
  margin: 28px 0;
  font-style: italic;
  font-size: 18px;
  color: var(--slate-700);
}

/* Shop */
.shop-notice {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 14px;
  max-width: 720px;
  margin: 0 auto 32px;
  padding: 16px 26px;
  text-align: center;
  font-size: 14px;
  color: var(--blue-900);
  line-height: 1.5;
}
.shop-notice strong { font-weight: 600; }
.shop-notice a { color: var(--blue-900); text-decoration: underline; text-underline-offset: 3px; }

.member-banner {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue-100); color: var(--blue-900);
  padding: 8px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
  margin-bottom: 12px;
}
.member-banner a { color: var(--blue-900); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.filters {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 24px 32px;
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.filter-pill {
  background: var(--white); border: 1px solid var(--slate-300);
  padding: 7px 16px; border-radius: 999px;
  font-size: 13px; color: var(--slate-700); font-weight: 500;
  transition: all 0.2s ease; cursor: pointer;
}
.filter-pill:hover { border-color: var(--blue-500); color: var(--blue-500); }
.filter-pill.active { background: var(--blue-900); color: var(--white); border-color: var(--blue-900); }

.shop-grid {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 24px 80px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.product {
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex; flex-direction: column;
}
.product:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(12,35,64,0.08); }
.product-img {
  aspect-ratio: 1; background: var(--white); position: relative;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.product-img img { max-width: 90%; max-height: 90%; width: auto; height: auto; object-fit: contain; }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--coral); color: var(--white);
  padding: 3px 10px; border-radius: 999px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  z-index: 2;
}
.product-badge.bestseller { background: var(--blue-900); }
.product-badge.premium { background: #6366f1; }
.product-supplier {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,0.95); color: var(--slate-700);
  padding: 3px 8px; border-radius: 999px;
  font-size: 10px; font-weight: 600;
  z-index: 2;
}
.product-info { padding: 18px; display: flex; flex-direction: column; flex: 1; border-top: 1px solid var(--slate-100); }
.product-category { font-size: 10px; color: var(--slate-500); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; margin-bottom: 6px; }
.product-name { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 6px; line-height: 1.3; letter-spacing: -0.005em; }
.product-desc { font-size: 13px; color: var(--slate-500); line-height: 1.5; margin-bottom: 14px; flex: 1; }
.price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.price-retail { font-size: 13px; color: var(--slate-500); text-decoration: line-through; }
.price-member { font-size: 22px; font-weight: 700; color: var(--blue-900); letter-spacing: -0.02em; }
.price-save { font-size: 11px; color: var(--coral); font-weight: 600; }
.price-label { font-size: 10px; color: var(--slate-500); margin-top: 2px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }

/* Shop info strip */
.info-strip { background: var(--white); border-top: 1px solid var(--slate-100); border-bottom: 1px solid var(--slate-100); padding: 48px 24px; }
.info-strip-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.info-item .ico { font-size: 26px; margin-bottom: 8px; }
.info-item h4 { font-size: 14px; color: var(--ink); font-weight: 600; margin-bottom: 6px; }
.info-item p { font-size: 13px; color: var(--slate-500); line-height: 1.5; }

/* Stat strip */
.stat-strip-wrap { background: var(--white); border-bottom: 1px solid var(--slate-100); }
.stat-strip { max-width: var(--max-w); margin: 0 auto; display: flex; gap: 48px; justify-content: space-around; flex-wrap: wrap; padding: 28px 24px; }
.stat { text-align: center; flex: 1; min-width: 160px; }
.stat-num { font-weight: 700; font-size: 34px; color: var(--blue-900); letter-spacing: -0.03em; line-height: 1; }
.stat-label { font-size: 13px; color: var(--slate-500); margin-top: 6px; line-height: 1.4; }

/* Blog */
.blog-list {
  max-width: 1100px; margin: 0 auto;
  padding: 0 24px 80px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.blog-card {
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(12,35,64,0.08); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat { font-size: 10px; color: var(--blue-500); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.blog-card h3 { font-size: 19px; font-weight: 600; line-height: 1.3; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.015em; }
.blog-card p { font-size: 14px; color: var(--slate-500); line-height: 1.55; flex: 1; margin-bottom: 14px; }
.blog-card-read { font-size: 13px; color: var(--blue-500); font-weight: 600; }

.post-hero { max-width: 820px; margin: 0 auto; padding: 56px 24px 24px; text-align: center; }
.post-meta { font-size: 12px; color: var(--slate-500); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.post-meta .dot { margin: 0 8px; color: var(--slate-300); }
.post-hero h1 { font-weight: 700; font-size: clamp(30px, 4.2vw, 44px); line-height: 1.15; letter-spacing: -0.025em; color: var(--ink); margin-bottom: 20px; }
.post-hero .lead { font-size: 18px; color: var(--slate-500); max-width: 720px; margin: 0 auto; line-height: 1.55; }
.post-hero-img { max-width: 960px; margin: 36px auto 0; padding: 0 24px; }
.post-hero-img img { width: 100%; border-radius: 20px; aspect-ratio: 16/7; object-fit: cover; }
.post-body { max-width: 720px; margin: 48px auto 0; padding: 0 24px; }
.post-body p { font-size: 17px; color: var(--ink); line-height: 1.75; margin-bottom: 22px; }
.post-body h2 { font-weight: 700; font-size: 28px; line-height: 1.2; letter-spacing: -0.02em; color: var(--ink); margin-top: 44px; margin-bottom: 16px; max-width: none; }
.post-body h3 { font-weight: 600; font-size: 20px; margin-top: 32px; margin-bottom: 12px; color: var(--ink); letter-spacing: -0.015em; }
.post-body ul, .post-body ol { margin-left: 24px; margin-bottom: 24px; }
.post-body li { font-size: 17px; color: var(--ink); margin-bottom: 10px; line-height: 1.65; }
.post-body strong { color: var(--ink); font-weight: 600; }
.post-body blockquote { border-left: 4px solid var(--blue-500); padding-left: 24px; margin: 28px 0; font-style: italic; font-size: 18px; color: var(--slate-700); }
.post-body a { color: var(--blue-500); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.post-body a:hover { color: var(--blue-700); }
.post-related { max-width: 720px; margin: 48px auto 0; padding: 32px 24px; border-top: 1px solid var(--slate-100); }
.post-related h4 { font-size: 12px; color: var(--blue-500); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; }
.post-related a { display: block; font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.015em; }
.post-related a:hover { color: var(--blue-500); }

/* Legal page */
.legal-page { max-width: 720px; margin: 0 auto; padding: 56px 24px 80px; }
.legal-page h1 { font-weight: 700; font-size: 36px; color: var(--ink); margin-bottom: 12px; letter-spacing: -0.025em; }
.legal-page .updated { font-size: 13px; color: var(--slate-500); margin-bottom: 40px; }
.legal-page h2 { font-weight: 700; font-size: 22px; margin-top: 36px; margin-bottom: 12px; color: var(--ink); letter-spacing: -0.015em; }
.legal-page p { font-size: 16px; color: var(--slate-700); margin-bottom: 16px; line-height: 1.7; }
.legal-page ul, .legal-page ol { margin-left: 24px; margin-bottom: 16px; }
.legal-page li { font-size: 16px; color: var(--slate-700); margin-bottom: 8px; line-height: 1.6; }

/* Footer */
footer { background: var(--ink); color: var(--slate-300); padding: 56px 24px 32px; font-size: 13px; }
.foot-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.foot-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.foot-brand img { height: 30px; width: 30px; }
.foot-brand .dental { color: var(--white); font-weight: 700; }
.foot-brand .plan { color: var(--white); font-weight: 700; }
.foot-brand .rx { color: #10b981; font-weight: 700; }
.foot-tag { color: var(--slate-500); margin-bottom: 20px; max-width: 320px; line-height: 1.6; }
.foot-col h5 { color: var(--white); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
.foot-col a { display: block; margin-bottom: 10px; color: var(--slate-300); transition: color 0.2s ease; }
.foot-col a:hover { color: var(--white); }
.foot-legal { max-width: var(--max-w); margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--slate-500); font-size: 12px; }
.foot-legal p { max-width: 720px; line-height: 1.6; }

/* Responsive */
@media (max-width: 1000px) {
  .pricing-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-list { grid-template-columns: repeat(2, 1fr); }
  .info-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-left { padding: 64px 48px; }
}
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 56px 32px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-right { min-height: 380px; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
  .nav-links a:not(.nav-cta) { display: none; }
}
@media (max-width: 600px) {
  .pricing-cards-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-list { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .stat-strip { gap: 24px; }
  .problem-stats { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr; gap: 32px; }
  .wait-form-row { flex-direction: column; }
  .wait-form button { width: 100%; }
  .info-strip-inner { grid-template-columns: 1fr; }
  section { padding: 56px 20px; }
  .pricing-cards-inner { padding: 56px 20px 32px; }
  .hero-left { padding: 48px 24px; }
}
@media (max-width: 420px) {
  .shop-grid { grid-template-columns: 1fr; }
}
