/* Smile Extension — modern medical-trustworthy 2026 */
:root {
  --teal-50: #f0faf9;
  --teal-100: #d5f0ed;
  --teal-200: #a8ddd7;
  --teal-400: #3db8ac;
  --teal-500: #1a9e92;
  --teal-600: #147f76;
  --teal-700: #116560;
  --teal-800: #0f524e;
  --orange-400: #ff9f43;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --brand-red: #E10600;
  --blue-50: #f2f7fb;
  --blue-100: #e0ecf5;
  --blue-600: #2a6f9e;
  --neutral-50: #fafbfc;
  --neutral-100: #f3f5f7;
  --neutral-200: #e5e9ee;
  --neutral-300: #c9d0d8;
  --neutral-500: #6b7580;
  --neutral-600: #4a5560;
  --neutral-700: #333c47;
  --neutral-800: #1e2630;
  --neutral-900: #121820;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(18, 24, 32, 0.04);
  --shadow-md: 0 4px 16px rgba(18, 24, 32, 0.06);
  --shadow-lg: 0 12px 40px rgba(18, 24, 32, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --font: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --max: 1080px;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--neutral-700);
  background: var(--neutral-50);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; display: block; }
a { color: var(--teal-600); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--teal-700); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--teal-400);
  outline-offset: 2px;
}

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

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 251, 252, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neutral-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--neutral-900);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.logo:hover { color: var(--neutral-900); }
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--teal-500), var(--teal-700));
  display: grid;
  place-items: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}
.nav-desktop a {
  color: var(--neutral-600);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
}
.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--teal-700);
  background: var(--teal-50);
}
.nav-cta {
  margin-left: 0.5rem !important;
  background: var(--orange-600) !important;
  color: white !important;
  padding: 0.5rem 1rem !important;
}
.nav-cta:hover { background: var(--orange-700) !important; color: white !important; }

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--neutral-200);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  color: var(--neutral-700);
}
.menu-toggle svg { width: 22px; height: 22px; }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0.5rem 1.25rem 1.25rem;
  border-top: 1px solid var(--neutral-200);
  background: var(--white);
  gap: 0.25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--neutral-700);
  font-weight: 500;
  padding: 0.85rem 1rem;
  border-radius: 10px;
}
.nav-mobile a:hover,
.nav-mobile a[aria-current="page"] {
  background: var(--teal-50);
  color: var(--teal-700);
}
.nav-mobile .nav-cta {
  text-align: center;
  margin-top: 0.5rem;
  background: var(--orange-600) !important;
  color: white !important;
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--orange-600);
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--orange-700); color: white; }
.btn-secondary {
  background: var(--white);
  color: var(--teal-700);
  border: 1.5px solid var(--neutral-200);
}
.btn-secondary:hover {
  border-color: var(--teal-300, var(--teal-200));
  background: var(--teal-50);
  color: var(--teal-700);
}
.btn-lg { padding: 1rem 1.75rem; font-size: 1.0625rem; }
.btn-block { width: 100%; }

/* ——— Hero ——— */
.hero {
  padding: 3rem 0 3.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 70% -10%, var(--teal-100), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, var(--blue-100), transparent 50%),
    var(--neutral-50);
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero { padding: 4.5rem 0 5rem; }
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 3.5rem; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-400);
}

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 550;
  font-size: clamp(2.15rem, 5vw, 3.15rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--neutral-600);
  max-width: 34em;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--neutral-600);
  background: var(--white);
  border: 1px solid var(--neutral-200);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}
.hero-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 550;
  color: var(--neutral-900);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.step-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.step-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.85rem;
  align-items: start;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--teal-50);
  color: var(--teal-700);
  font-weight: 700;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
}
.step-list strong {
  display: block;
  color: var(--neutral-800);
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.step-list span { font-size: 0.9375rem; color: var(--neutral-500); }

/* ——— Sections ——— */
.section { padding: 3.5rem 0; }
.section-alt { background: var(--white); border-top: 1px solid var(--neutral-200); border-bottom: 1px solid var(--neutral-200); }
.section-tight { padding: 2.5rem 0; }

.section-header {
  max-width: 38rem;
  margin-bottom: 2.25rem;
}
.section-header h2,
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 550;
  letter-spacing: -0.02em;
  color: var(--neutral-900);
  line-height: 1.25;
  margin-bottom: 0.65rem;
}
.section-header p { color: var(--neutral-500); font-size: 1.0625rem; }

.page-hero {
  padding: 2.75rem 0 2rem;
  background:
    radial-gradient(ellipse 70% 80% at 90% 0%, var(--teal-100), transparent 50%),
    var(--neutral-50);
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero .lead { margin-bottom: 0; }

/* ——— Cards / grids ——— */
.card-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.4rem;
}
.card p { font-size: 0.975rem; color: var(--neutral-500); }

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.icon-circle svg { width: 22px; height: 22px; }

/* ——— Pitch / note boxes ——— */
.note {
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius);
  padding: 1.15rem 1.35rem;
  font-size: 0.975rem;
  color: var(--teal-800);
}
.note strong { color: var(--teal-800); }
.note.warn {
  background: #fef8f0;
  border-color: #f0e0c8;
  color: #6b4e2a;
}
.note.warn strong { color: #5a3f1f; }

.prose { max-width: 42rem; }
.prose p + p { margin-top: 1rem; }
.prose ul, .prose ol {
  margin: 1rem 0 1rem 1.25rem;
  color: var(--neutral-600);
}
.prose li + li { margin-top: 0.4rem; }
.prose h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin: 2rem 0 0.65rem;
}

/* ——— Process steps (how-it-works) ——— */
.process {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step;
}
.process-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.15rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--neutral-200);
  position: relative;
}
.process-item:last-child { border-bottom: none; }
.process-item::before {
  counter-increment: step;
  content: counter(step);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--white);
  border: 1.5px solid var(--teal-200);
  color: var(--teal-700);
  font-weight: 700;
  font-size: 1.05rem;
  display: grid;
  place-items: center;
}
.process-item h2,
.process-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.35rem;
}
.process-item p { color: var(--neutral-500); font-size: 0.975rem; }

/* ——— Pricing ——— */
.price-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--neutral-200);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.price-table th,
.price-table td {
  text-align: left;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--neutral-200);
  vertical-align: top;
}
.price-table th {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--neutral-500);
  background: var(--neutral-100);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--teal-50); }
.price-table .pkg-name {
  font-weight: 600;
  color: var(--neutral-800);
}
.price-table .pkg-price {
  font-weight: 700;
  color: var(--teal-700);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.price-table .pkg-rush .pkg-name,
.price-table .pkg-rush .pkg-price { color: var(--blue-600); }

.price-cards {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .price-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .price-cards { grid-template-columns: repeat(3, 1fr); }
}
.price-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.price-card:hover {
  border-color: var(--teal-200);
  box-shadow: var(--shadow-md);
}
.price-card.featured {
  border-color: var(--teal-400);
  box-shadow: 0 0 0 1px var(--teal-400), var(--shadow-md);
}
.price-card .badge {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal-700);
  background: var(--teal-50);
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.25rem;
}
.price-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--neutral-800);
}
.price-card .amount {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 550;
  color: var(--neutral-900);
  letter-spacing: -0.02em;
}
.price-card .desc {
  font-size: 0.9rem;
  color: var(--neutral-500);
  flex: 1;
}
.price-card.rush {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--blue-50), var(--white));
  border-color: var(--blue-100);
}
@media (min-width: 960px) {
  .price-card.rush { grid-column: span 1; }
}

.addon-list {
  display: grid;
  gap: 0.75rem;
}
.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 10px;
}
.addon-row span:first-child { color: var(--neutral-700); font-weight: 500; }
.addon-row .amt {
  font-weight: 700;
  color: var(--teal-700);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* ——— Contact ——— */
.contact-layout {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 800px) {
  .contact-layout { grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
}
.contact-method strong {
  display: block;
  color: var(--neutral-800);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}
.contact-method a, .contact-method p {
  font-size: 0.95rem;
  color: var(--neutral-600);
}
.contact-method a { font-weight: 500; color: var(--teal-600); }
.contact-method a:hover { color: var(--teal-700); }

.form-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}
.form-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}
.form-card > p {
  color: var(--neutral-500);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.15rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: 0.4rem;
}
.form-group .hint {
  font-weight: 400;
  color: var(--neutral-500);
  font-size: 0.8rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--neutral-800);
  background: var(--neutral-50);
  border: 1.5px solid var(--neutral-200);
  border-radius: 10px;
  padding: 0.75rem 0.95rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--neutral-300);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-400);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(61, 184, 172, 0.2);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 520px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-note {
  font-size: 0.875rem;
  color: var(--neutral-500);
  margin: 0.75rem 0 1.25rem;
  padding: 0.85rem 1rem;
  background: var(--neutral-100);
  border-radius: 8px;
}

.address-block {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--neutral-100);
  border-radius: var(--radius);
  font-size: 0.95rem;
}
.address-block .label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8a5a20;
  margin-bottom: 0.5rem;
}
.address-block address {
  font-style: normal;
  color: var(--neutral-700);
  line-height: 1.55;
}

/* ——— CTA band ——— */
.cta-band {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-600) 60%, #1a7a8a);
  color: white;
  padding: 3rem 0;
  text-align: center;
}
.cta-band h2 {
  color: white;
  margin-bottom: 0.65rem;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 28rem;
  margin: 0 auto 1.5rem;
}
.cta-band .btn-primary {
  background: var(--orange-500);
  color: white;
}
.cta-band .btn-primary:hover {
  background: var(--orange-400);
  color: white;
}
.cta-band .btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.45);
}
.cta-band .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
  color: white;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ——— Footer ——— */
.site-footer {
  margin-top: auto;
  background: var(--neutral-900);
  color: var(--neutral-300);
  padding: 3rem 0 1.75rem;
  font-size: 0.9375rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand .logo { color: white; margin-bottom: 0.85rem; }
.footer-brand p { max-width: 22rem; line-height: 1.6; color: var(--neutral-500); }
.footer-col h4 {
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
}
.footer-col ul { list-style: none; }
.footer-col li + li { margin-top: 0.45rem; }
.footer-col a { color: var(--neutral-300); }
.footer-col a:hover { color: white; }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--neutral-500);
}
.footer-bottom a { color: var(--neutral-400, var(--neutral-500)); }
.footer-bottom a:hover { color: white; }

/* ——— Utilities ——— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.stack-sm > * + * { margin-top: 0.75rem; }
.stack > * + * { margin-top: 1.25rem; }

/* ——— Logo lockup: Smile X Technologies process mark (locked 2026-09-17) ——— */
.logo-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  text-decoration: none;
  color: var(--neutral-900);
  min-width: 0;
  line-height: 1.15;
}
.logo-lockup:hover { color: var(--neutral-900); }
.logo-img {
  height: 52px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  border-radius: 0;
  display: block;
}
/* .logo-cobrand retired — cobrand text removed from markup */
@media (max-width: 380px) {
  .logo-img { height: 44px; max-width: 220px; }
}
.footer-brand .logo-lockup { margin-bottom: 0.85rem; }
/* Soft light pad so black lockup type stays readable on dark footer (not full JPG white canvas) */
.footer-brand .logo-img {
  background: #fff;
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
}
.footer-meta {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: var(--neutral-500);
}

/* ——— FAQ ——— */
.faq-list {
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--surface, #fff);
  border: 1px solid var(--neutral-200, #e5e7eb);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
}
.faq-item h3 {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--teal-900, #0f3d3e);
  margin: 0 0 0.45rem;
  line-height: 1.35;
}
.faq-item p {
  margin: 0;
  color: var(--neutral-600, #4b5563);
  font-size: 0.975rem;
  line-height: 1.55;
}
.faq-item a { color: var(--teal-700, #0d7377); }

/* Footer NAP */
.footer-nap {
  margin-top: 0.85rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--neutral-400, #9ca3af);
}
.footer-nap strong {
  display: block;
  color: #f3f5f7;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.footer-nap a { color: var(--neutral-300); }
.footer-nap a:hover { color: white; }

/* ——— Oral care store ——— */
.store-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .store-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .store-grid { grid-template-columns: repeat(3, 1fr); }
}
.store-card {
  background: var(--surface, #fff);
  border: 1px solid var(--neutral-200, #e5e7eb);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.store-card:hover {
  border-color: var(--teal-600, #0d7377);
  box-shadow: 0 8px 24px rgba(15, 61, 62, 0.08);
}
.store-card-img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #e8f4f4 0%, #d4e8e8 50%, #c5ddd8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-800, #0f3d3e);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 550;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 1rem;
}
.store-card-img-accent {
  background: linear-gradient(145deg, #fff4e8 0%, #ffe4c8 50%, #ffd4a8 100%);
  color: var(--orange-800, #9a3412);
}
.store-card-body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}
.store-brand {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-700, #0d7377);
}
.store-card-body h2 {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
  color: var(--neutral-900, #111);
}
.store-desc {
  margin: 0;
  font-size: 0.925rem;
  color: var(--neutral-600, #4b5563);
  line-height: 1.5;
  flex: 1;
}
.store-price {
  margin: 0.35rem 0 0.5rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 550;
  color: var(--teal-900, #0f3d3e);
}
.store-card .btn { margin-top: auto; }
