/* ============================================================
   Local Tech Solutions — styles.css
   ============================================================
   Theme   : Light · White cards · Soft blue-grey background
   Palette : Navy (#0f2d52) + Orange (#f07030) + Inter font
   Base    : Dental Tech Solutions design system (dentechso.com)

   TABLE OF CONTENTS
   ─────────────────────────────────────────────────────────────
    1. Design Tokens
    2. Reset & Base
    3. Layout Utilities
    4. Typography — Eyebrow, Text Link
    5. Buttons
    6. Header & Navigation
    7. Universal Card System
    8. Hero — Homepage
    9. Services Grid
   10. Issues Section
   11. Feature Grid (3-col)
   12. Process Grid & Timeline
   13. Reviews
   14. CTA Panel
   15. Page Hero (inner pages)
   16. Two-Column Content Layout (service pages)
   17. Lists
   18. Badges
   19. Forms & Alerts
   20. Contact Layout & Toast
   21. Footer
   22. Legal / Prose
   23. About
   24. FAQ Grid
   25. Pricing
   26. 404
   27. Responsive ≤1100px (tablet)
   28. Responsive ≤900px  (nav collapse)
   29. Responsive ≤720px  (mobile)
   30. Responsive ≤480px  (small phones)
   ============================================================ */


/* ── 1. Design Tokens ─────────────────────────────────────── */
/*
   Edit these to retheme the entire site.
   --primary / --primary-dark : Navy  — headings, nav, borders
   --accent  / --accent-dark  : Orange — buttons, highlights
   --ink    : Near-black body text
   --muted  : Mid-grey supporting text
   --bg     : Page background
   --line   : Border colour
   --card-pad : Uniform card inner padding (used everywhere)
*/
:root {
  --primary:      #0f2d52;
  --primary-dark: #091d36;
  --accent:       #f07030;
  --accent-dark:  #d05e20;
  --ink:          #111c27;
  --muted:        #5a6f82;
  --bg:           #f4f8fc;
  --surface:      #ffffff;
  --surface-soft: #edf3f8;
  --line:         #d0dce8;
  --line-strong:  #b8ccdc;
  --shadow:       0 24px 48px rgba(9,29,54,0.09);
  --shadow-soft:  0 8px 24px rgba(9,29,54,0.06);
  --radius-lg:    28px;
  --radius-md:    20px;
  --radius-sm:    14px;
  --container:    1180px;
  --card-pad:     1.4rem;
}


/* ── 2. Reset & Base ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fbff 0%, var(--bg) 48%, #eef4fa 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img    { display: block; max-width: 100%; }
a      { color: inherit; text-decoration: none; }
p      { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3, h4 { margin: 0 0 1rem; color: var(--primary-dark); line-height: 1.08; letter-spacing: -0.03em; }
h1     { font-size: clamp(2.6rem, 5vw, 4.4rem); }
h2     { font-size: clamp(1.9rem, 3.4vw, 3rem); }
h3     { font-size: 1.18rem; }
strong { color: var(--primary-dark); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }


/* ── 3. Layout Utilities ──────────────────────────────────── */
.container    { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.narrow       { max-width: 860px; }
.section      { padding: 5.5rem 0; }
.section-soft { background: linear-gradient(180deg, rgba(237,243,248,0.7), rgba(255,255,255,0.85)); }
.lead         { font-size: 1.1rem; max-width: 64ch; color: var(--ink); opacity: 0.8; }
.section-heading              { max-width: 760px; margin-bottom: 2.5rem; }
.section-heading.narrow-heading { max-width: 680px; }
.center-heading { margin-inline: auto; text-align: center; }


/* ── 4. Typography — Eyebrow, Text Link ──────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.45rem 0.85rem; border-radius: 999px;
  background: rgba(240,112,48,0.10); color: var(--accent-dark);
  font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
/* Dark variant — for use inside navy CTA panels */
.eyebrow-dark         { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.88); }
.eyebrow-dark::before { background: var(--accent); }

.text-link       { color: var(--accent-dark); font-weight: 700; }
.text-link:hover { color: var(--accent); }


/* ── 5. Buttons ───────────────────────────────────────────── */
/*
   .btn-primary    : Orange gradient  — primary CTA
   .btn-secondary  : White + border   — secondary action
   .btn-ghost      : Transparent orange border — tertiary
   .btn-light      : White            — inside dark panels
   .btn-ghost-light: Transparent white border — inside dark panels
*/
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 50px; padding: 0.8rem 1.4rem; border-radius: var(--radius-sm);
  border: 1px solid transparent; font-weight: 700; font-size: 0.95rem; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover           { transform: translateY(-1px); }
.btn-primary         { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; box-shadow: 0 4px 18px rgba(240,112,48,0.28); }
.btn-primary:hover   { box-shadow: 0 8px 24px rgba(240,112,48,0.36); color: #fff; }
.btn-secondary       { background: rgba(255,255,255,0.9); color: var(--primary); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent-dark); }
.btn-ghost           { background: transparent; border-color: rgba(240,112,48,0.35); color: var(--accent-dark); }
.btn-ghost:hover     { background: rgba(240,112,48,0.06); }
.btn-light           { background: #fff; color: var(--primary-dark); }
.btn-ghost-light     { background: transparent; border-color: rgba(255,255,255,0.4); color: #fff; }


/* ── 6. Header & Navigation ───────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(248,251,255,0.88); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(208,220,232,0.8);
}
.navbar {
  min-height: 80px; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}

/* Brand */
.brand      { display: flex; align-items: center; gap: 0.85rem; font-weight: 800; flex-shrink: 0; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 13px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.82rem; letter-spacing: 0.02em; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 4px 14px rgba(240,112,48,0.28);
}
.brand-logo { height: 34px; width: auto; flex-shrink: 0; display: block; }
.brand-copy        { display: flex; flex-direction: column; gap: 1px; }
.brand-copy strong { color: var(--primary-dark); font-size: 0.95rem; line-height: 1.2; }
.brand-copy small  { color: var(--muted); font-size: 0.74rem; font-weight: 600; line-height: 1.2; }

/* Nav links */
.nav-links   { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  position: relative; padding: 0.5rem 0.85rem; border-radius: 999px;
  font-weight: 600; font-size: 0.92rem; color: var(--muted);
  transition: color .18s, background .18s;
}
.nav-links a:hover              { color: var(--primary); background: rgba(15,45,82,0.05); }
.nav-links a.active             { color: var(--primary); font-weight: 700; }
.nav-links a.active::after,
.nav-links a:hover::after       {
  content: ''; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0;
  height: 2px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 999px;
}

/* Header right side */
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.quick-contact  {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.6rem 0.95rem; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.7);
  color: var(--primary); font-weight: 700; font-size: 0.9rem; transition: border-color .18s;
}
.quick-contact:hover { border-color: var(--accent); color: var(--accent-dark); }
.quick-contact svg   { color: var(--accent); }

/* Header CTA button */
.header-cta { min-height: 42px; padding: 0.6rem 1.1rem; font-size: 0.88rem; }

/* Hamburger — hidden desktop, shown ≤900px */
.mobile-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255,255,255,0.7); padding: 0; cursor: pointer; }
.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after { content: ''; display: block; width: 20px; height: 2px; margin: 5px auto; border-radius: 999px; background: var(--primary-dark); }
.mobile-only { display: none; }


/* ── 7. Universal Card System ─────────────────────────────── */
/*
   ALL card types share flex-direction:column so content stacks
   and the last <p> fills available space (flex:1), pinning any
   link to the bottom. Adding a new card? Add class to BOTH lists.
*/
.feature-card,
.content-panel,
.info-card,
.process-card,
.service-card,
.proof-pill,
.mini-note-card,
.contact-panel,
.review-card { display: flex; flex-direction: column; }

/* Shared visual style — bg / border / radius / shadow */
.feature-card,
.content-panel,
.info-card,
.detail-card,
.contact-panel,
.process-card,
.service-card,
.review-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(208,220,232,0.8);
  border-radius: var(--radius-md);
  padding: var(--card-pad);
  box-shadow: var(--shadow-soft);
}

/* Last paragraph grows to fill space */
.feature-card > p,
.info-card > p,
.service-card > p,
.process-card > p       { flex: 1; margin-bottom: 0; }
.feature-card .text-link,
.service-card .text-link { margin-top: 1rem; flex-shrink: 0; align-self: flex-start; }

/* Proof pills */
.proof-pill { padding: 1rem; border-radius: 18px; background: rgba(255,255,255,0.85); border: 1px solid rgba(208,220,232,0.75); box-shadow: var(--shadow-soft); }
.proof-pill strong { display: block; margin-bottom: 0.25rem; font-size: 0.95rem; flex-shrink: 0; }
.proof-pill span   { color: var(--muted); font-size: 0.92rem; flex: 1; }

/* Mini note cards */
.mini-note-card { padding: 1.05rem 1.1rem; border-radius: 18px; background: rgba(255,255,255,0.88); border: 1px solid rgba(208,220,232,0.75); box-shadow: var(--shadow-soft); }
.mini-note-card strong { display: block; margin-bottom: 0.35rem; font-size: 0.98rem; flex-shrink: 0; }
.mini-note-card span   { color: var(--muted); font-size: 0.92rem; flex: 1; }

/* Detail card ("Typical work includes") */
.detail-card        { margin-top: 1.25rem; }
.detail-card strong { display: block; margin-bottom: 0.85rem; font-size: 1.02rem; }

/* Info card */
.info-card .eyebrow { margin-bottom: 0.75rem; }
.info-stack-inner   { padding: 0; border: 0; box-shadow: none; background: transparent; }

/* Process card number badge */
.process-card > span:first-child {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px; margin-bottom: 1rem; border-radius: 12px;
  color: #fff; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  flex-shrink: 0;
}


/* ── 8. Hero — Homepage ───────────────────────────────────── */
.home-hero { padding: 4.5rem 0 2rem; }
.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(320px,0.85fr);
  gap: 2rem; align-items: stretch;
}
.home-hero-copy { display: flex; flex-direction: column; justify-content: center; }
.home-hero-copy h1   { margin-bottom: 1rem; }
.home-hero-copy .lead { margin-bottom: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.hero-proof-row { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 0.75rem; margin-top: 1.75rem; }

/* Right media column */
.home-hero-media-wrap { display: flex; flex-direction: column; gap: 0.85rem; }
.media-shell { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); margin: 0; background: linear-gradient(160deg, rgba(240,112,48,0.05), rgba(15,45,82,0.04)); }
.media-shell img     { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-hero-media     { flex: 1; min-height: 360px; }
.home-hero-note-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

/* Mobile-only elements — hidden on desktop, revealed at ≤720px */
.hero-mobile-image { display: none; }
.hero-call-mobile  { display: none; }


/* ── 9. Services Grid ─────────────────────────────────────── */
/* Desktop 4-col → Tablet 2×2 → Mobile 2×2 compact */
.services-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1.25rem; align-items: stretch; }
.service-card  { overflow: hidden; }
.service-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-2px); transition: all .2s; }
.card-thumb    { margin: 0 0 1rem; aspect-ratio: 16/10; overflow: hidden; border-radius: 12px; border: 1px solid var(--line); flex-shrink: 0; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.service-card:hover .card-thumb img { transform: scale(1.03); }
.service-card h3 { font-size: 1.06rem; margin-bottom: 0.5rem; }
.service-card p  { font-size: 0.93rem; color: var(--muted); }


/* ── 10. Issues Section ───────────────────────────────────── */
/* Left column: heading + image + note. Right: 2-col grid of issue cards. */
.issues-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.4fr); gap: 3rem; align-items: start; }
.issues-copy   { display: flex; flex-direction: column; gap: 1.5rem; }
.issues-grid   { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; align-items: stretch; }
.issues-grid .info-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.issues-grid .info-card p  { font-size: 0.93rem; margin-bottom: 0; flex: 1; }


/* ── 11. Feature Grid (3-col) ─────────────────────────────── */
/* "Why Choose Us". Tablet → 2-col. Mobile → 2-col. */
.feature-grid { display: grid; gap: 1.1rem; align-items: stretch; }
.three-col    { grid-template-columns: repeat(3,minmax(0,1fr)); }
.feature-card h3 { font-size: 1.04rem; margin-bottom: 0.5rem; }
.feature-card p  { font-size: 0.93rem; }


/* ── 12. Process Grid & Timeline ──────────────────────────── */
/* Desktop 3-col. Mobile becomes vertical timeline (§29). */
.process-grid   { display: grid; gap: 1.1rem; align-items: stretch; }
.process-grid-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
.process-card h3 { font-size: 1.04rem; margin-bottom: 0.5rem; }
.process-card p  { font-size: 0.93rem; }


/* ── 13. Reviews ──────────────────────────────────────────── */
.reviews-grid  { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.4rem; align-items: stretch; }
.review-card   { padding: 1.75rem; }
.review-stars  { color: #e8a020; font-size: 1.1rem; letter-spacing: 0.1em; margin-bottom: 1rem; flex-shrink: 0; }
.review-text   { margin: 0 0 1.25rem; font-size: 0.97rem; line-height: 1.7; color: var(--muted); font-style: italic; flex: 1; }
.review-author { display: flex; flex-direction: column; gap: 0.2rem; padding-top: 1rem; border-top: 1px solid var(--line); flex-shrink: 0; }
.review-author strong { font-size: 0.95rem; color: var(--primary-dark); }
.review-author span   { font-size: 0.85rem; color: var(--muted); }


/* ── 14. CTA Panel ────────────────────────────────────────── */
/* Full-width navy gradient. Split: text left, image right. */
.cta-panel { border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); box-shadow: var(--shadow); }
.cta-panel-split { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,0.7fr); gap: 0; align-items: stretch; }
.cta-panel-split > div { padding: clamp(2.5rem,5vw,4rem); display: flex; flex-direction: column; justify-content: center; }
.cta-panel h2   { color: #fff; font-size: clamp(1.7rem,3vw,2.5rem); margin-bottom: 0.75rem; }
.cta-panel p    { color: rgba(255,255,255,0.8); line-height: 1.75; margin-bottom: 0; }
.cta-actions    { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.cta-visual     { margin: 0; border-radius: 0; min-height: 320px; }
.cta-visual img { width: 100%; height: 100%; object-fit: cover; }
.media-on-dark  { border: none; }


/* ── 15. Page Hero (inner pages) ─────────────────────────── */
/* .page-hero-visual : has image on right (service detail pages)  */
/* .page-hero-simple : heading only, no image (about, faq, legal) */
.page-hero { padding: 4.5rem 0 0; }
.page-hero-visual .page-hero-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,0.8fr); gap: 2.5rem; align-items: center; padding-bottom: 3rem; }
.page-hero-grid .narrow h1 { font-size: clamp(2rem,4vw,3.4rem); }
.page-hero-media { margin: 0; aspect-ratio: 4/3; }
.media-large     { aspect-ratio: 4/3; margin: 0; }
.media-medium    { aspect-ratio: 16/10; margin: 0; }

.page-hero-simple    { padding: 4rem 0 2.5rem; background: linear-gradient(180deg, rgba(237,243,248,0.7), rgba(255,255,255,0)); }
.page-hero-simple h1 { font-size: clamp(2rem,4.5vw,3.6rem); }
.page-hero-simple p  { font-size: 1.05rem; max-width: 68ch; }


/* ── 16. Two-Column Content Layout (service pages) ────────── */
.two-column-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,0.85fr); gap: 3rem; align-items: start; }
.side-stack        { display: flex; flex-direction: column; gap: 1.25rem; }


/* ── 17. Lists ────────────────────────────────────────────── */
.clean-list { list-style: none; padding: 0; margin: 0.75rem 0 0; }
.clean-list li {
  position: relative; padding: 0.45rem 0 0.45rem 1.4rem;
  border-bottom: 1px solid rgba(208,220,232,0.5); color: var(--muted); font-size: 0.94rem;
}
.clean-list li:last-child { border-bottom: none; }
.clean-list li::before    { content: ''; position: absolute; left: 0; top: 0.95rem; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }


/* ── 18. Badges ───────────────────────────────────────────── */
.badge        { display: inline-flex; align-items: center; padding: 0.35rem 0.85rem; border-radius: 999px; background: rgba(15,45,82,0.08); color: var(--primary); font-size: 0.8rem; font-weight: 700; }
.badge-accent { background: rgba(240,112,48,0.10); color: var(--accent-dark); }


/* ── 19. Forms & Alerts ───────────────────────────────────── */
.input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
label { display: block; margin-bottom: 0.4rem; font-weight: 600; font-size: 0.9rem; color: var(--primary-dark); }
input, select, textarea {
  width: 100%; min-height: 50px; border-radius: var(--radius-sm); border: 1px solid var(--line);
  background: rgba(255,255,255,0.9); color: var(--ink); padding: 0 1rem;
  font-family: inherit; font-size: 0.95rem; outline: none; appearance: none;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(240,112,48,0.12); }
textarea                  { min-height: 148px; padding: 0.85rem 1rem; resize: vertical; }
input::placeholder, textarea::placeholder { color: #a0adb8; }
select                    { cursor: pointer; }
.form-helper-text         { font-size: 0.85rem; color: var(--muted); margin-top: 0.4rem; }
.btn-submit               { width: 100%; justify-content: center; margin-top: 0.5rem; }
.alert                    { padding: 0.85rem 1rem; border-radius: var(--radius-sm); margin-bottom: 1.25rem; font-size: 0.93rem; }
.alert-error              { background: rgba(220,38,38,0.07); border: 1px solid rgba(220,38,38,0.2); color: #991b1b; }


/* ── 20. Contact Layout & Toast ───────────────────────────── */
.contact-layout { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr); gap: 2.5rem; align-items: start; }
.form-panel     { background: rgba(255,255,255,0.92); border: 1px solid rgba(208,220,232,0.8); border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-soft); }
.form-panel h2  { font-size: clamp(1.5rem,2.5vw,2rem); margin-bottom: 1.5rem; }
.info-stack     { display: flex; flex-direction: column; gap: 1rem; }
.contact-map-frame        { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 16/9; margin-top: 0.75rem; }
.contact-map-frame iframe { width: 100%; height: 100%; border: none; display: block; }
.contact-map-note         { font-size: 0.85rem; color: var(--muted); margin-top: 0.5rem; margin-bottom: 0; }
.contact-map-note a       { color: var(--accent-dark); font-weight: 600; }
.contact-success-state    { padding: 1rem 0; }
.contact-success-state h2 { font-size: 1.6rem; }
.toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
  background: var(--primary-dark); color: #fff; border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; box-shadow: var(--shadow);
  display: flex; align-items: flex-start; gap: 0.75rem; max-width: 360px;
  opacity: 0; transform: translateY(8px); transition: opacity .25s, transform .25s; pointer-events: none;
}
.toast.is-visible  { opacity: 1; transform: translateY(0); pointer-events: auto; }
.toast-body strong { display: block; font-size: 0.9rem; margin-bottom: 0.2rem; }
.toast-body span   { font-size: 0.85rem; color: rgba(255,255,255,0.78); line-height: 1.5; }
.toast-close       { background: none; border: none; color: rgba(255,255,255,0.6); font-size: 1.25rem; cursor: pointer; padding: 0; line-height: 1; flex-shrink: 0; }


/* ── 21. Footer ───────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--line); background: linear-gradient(180deg, rgba(244,248,252,0.95), #eef4fa); }
.footer-top  { display: grid; grid-template-columns: 1.4fr 0.8fr 0.9fr 0.9fr; gap: 2rem; padding: 4rem 0 2.5rem; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.footer-brand .brand-mark {
  width: 38px;
  height: 38px;
  font-size: 0.75rem;
  border-radius: 10px;
  flex-shrink: 0;
}

.footer-brand .brand-logo,
.footer-brand img {
  height: 34px;
  width: auto;
  max-width: 100%;
  display: block;
  flex-shrink: 0;
}

.footer-brand .brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.footer-brand strong   { display: block; color: var(--primary-dark); font-size: 0.92rem; line-height: 1.2; margin-bottom: 0.15rem; }
.footer-brand small    { display: block; color: var(--muted); font-size: 0.74rem; font-weight: 600; }
.footer-copy           { font-size: 0.88rem; line-height: 1.7; color: var(--muted); margin-bottom: 0.85rem; }
.footer-area           { font-size: 0.84rem; color: var(--muted); margin-bottom: 0.5rem; }
.footer-badges         { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.footer-dental-note    { font-size: 0.84rem; color: var(--muted); margin-bottom: 0; }
.footer-dental-note a  { color: var(--accent-dark); font-weight: 600; }
.site-footer h3   { margin: 0 0 1rem; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 800; color: var(--primary-dark); }
.footer-links     { list-style: none; padding: 0; margin: 0; }
.footer-links li  { margin-bottom: 0.65rem; }
.footer-links a   { color: var(--muted); font-size: 0.91rem; transition: color .18s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom    { border-top: 1px solid var(--line); padding: 1.25rem 0 1.75rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom span { color: var(--muted); font-size: 0.86rem; }
.footer-legal       { display: flex; flex-wrap: wrap; gap: 1.5rem; }


/* ── 22. Legal / Prose ────────────────────────────────────── */
.prose h2             { font-size: 1.35rem; margin-top: 2rem; margin-bottom: 0.6rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--line); }
.prose h2:first-child { margin-top: 0; }
.prose p              { font-size: 0.97rem; line-height: 1.8; }
.prose a              { color: var(--accent-dark); font-weight: 600; }


/* ── 23. About ────────────────────────────────────────────── */
.about-split     { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 3rem; align-items: center; }
.principles-grid { display: grid; grid-template-columns: 1fr; gap: 0.85rem; }


/* ── 24. FAQ Grid ─────────────────────────────────────────── */
.faq-grid-2            { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.1rem; align-items: stretch; }
.faq-grid-2 .info-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.faq-grid-2 .info-card p  { font-size: 0.93rem; margin-bottom: 0; flex: 1; }
.faq-grid-2 .info-card a  { color: var(--accent-dark); font-weight: 600; }


/* ── 25. Pricing ──────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.4rem; align-items: stretch; }
.pricing-card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.92); border: 1px solid rgba(208,220,232,0.8);
  border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-soft);
}
/* Featured card highlighted with orange border */
.pricing-card-featured  { border-color: var(--accent); border-width: 2px; box-shadow: 0 12px 36px rgba(240,112,48,0.14); }
.pricing-card-head      { margin-bottom: 1.25rem; }
.pricing-label          { display: inline-block; padding: 0.3rem 0.8rem; border-radius: 999px; background: rgba(15,45,82,0.08); color: var(--primary); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.75rem; }
.pricing-label-accent   { background: rgba(240,112,48,0.12); color: var(--accent-dark); }
.pricing-card h3        { font-size: 1.3rem; margin-bottom: 0.4rem; }
.pricing-desc           { font-size: 0.92rem; color: var(--muted); line-height: 1.6; margin-bottom: 0; }
.pricing-price          { display: flex; align-items: baseline; gap: 0.4rem; margin: 1.25rem 0; padding: 1rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-amount           { font-size: 2.6rem; font-weight: 900; color: var(--primary-dark); letter-spacing: -0.04em; line-height: 1; }
.price-unit             { color: var(--muted); font-size: 0.95rem; font-weight: 600; }
.pricing-features       { flex: 1; margin: 1rem 0; }
.pricing-features li    { font-size: 0.92rem; margin-bottom: 0.6rem; }
.pricing-features li:last-child { margin-bottom: 0; }
.pricing-note           { margin-bottom: 1.25rem; padding: 0.85rem 1rem; border-radius: var(--radius-sm); background: rgba(237,243,248,0.8); border: 1px solid rgba(208,220,232,0.6); }
.pricing-note p         { font-size: 0.87rem; color: var(--muted); margin-bottom: 0; }
.pricing-note-accent    { background: rgba(240,112,48,0.07); border-color: rgba(240,112,48,0.2); }
.pricing-note-accent p  { color: var(--accent-dark); }
.pricing-cta            { width: 100%; justify-content: center; margin-top: auto; }
/* Included/Excluded two-panel row */
.two-column-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 1rem; }
.content-panel     { padding: var(--card-pad); }
.content-panel h3  { font-size: 1.1rem; margin-bottom: 0.85rem; }
.tonal-panel       { background: linear-gradient(180deg, rgba(237,243,248,0.9), rgba(255,255,255,0.92)); }


/* ── 26. 404 ──────────────────────────────────────────────── */
.not-found    { padding: 6rem 0; text-align: center; }
.not-found h1 { font-size: clamp(2rem,5vw,3.5rem); }


/* ════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════════════════════════
   Rules here ONLY. Never add responsive overrides above.
   Order: largest → smallest (27 → 30).
   ============================================================ */


/* ── 27. ≤1100px — Tablet ─────────────────────────────────── */
@media (max-width: 1100px) {
  .home-hero-grid    { grid-template-columns: 1fr; }
  .home-hero-media-wrap { display: none; }
  .services-grid     { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .three-col         { grid-template-columns: 1fr 1fr; }
  .process-grid-3    { grid-template-columns: 1fr 1fr; }
  .reviews-grid      { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .cta-panel-split   { grid-template-columns: 1fr; }
  .cta-visual        { display: none; }
  .page-hero-visual .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-media   { min-height: 200px; max-height: 240px; }
  .two-column-layout { grid-template-columns: 1fr; }
  .issues-layout     { grid-template-columns: 1fr; }
  .contact-layout    { grid-template-columns: 1fr; }
  .about-split       { grid-template-columns: 1fr; }
  .footer-top        { grid-template-columns: 1fr 1fr; padding: 3rem 0 2rem; gap: 1.5rem; }
  .faq-grid-2        { grid-template-columns: 1fr; }
  .pricing-grid      { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .two-column-panels { grid-template-columns: 1fr; }
}


/* ── 28. ≤900px — Nav collapse ───────────────────────────── */
@media (max-width: 900px) {
  .mobile-only   { display: flex !important; }
  .mobile-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute; left: 1rem; right: 1rem; top: calc(100% + 0.75rem);
    flex-direction: column; align-items: stretch;
    background: rgba(248,251,255,0.98); backdrop-filter: blur(20px);
    border: 1px solid var(--line); border-radius: var(--radius-md);
    box-shadow: var(--shadow); padding: 1rem; gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a    { padding: 0.7rem 0.85rem; font-size: 0.95rem; border-radius: var(--radius-sm); }
  .nav-links a:hover::after,
  .nav-links a.active::after { display: none; }
  .header-actions { display: none; }
}


/* ── 29. ≤720px — Mobile ──────────────────────────────────── */
@media (max-width: 720px) {
  :root { --container: calc(100vw - 1.25rem); }

  /* Spacing */
  .section          { padding: 3.25rem 0; }
  .section-soft     { padding: 3.25rem 0; }
  .home-hero        { padding: 2.5rem 0 1.75rem; }
  .page-hero        { padding: 2.75rem 0 2rem; }
  .page-hero-simple { padding: 2.5rem 0 1.5rem; }

  /* Typography */
  .section-heading h2 { font-size: clamp(1.5rem,6.5vw,2rem); }
  .eyebrow            { font-size: 0.7rem; letter-spacing: 0.06em; }

  /* Hero */
  .home-hero-grid       { grid-template-columns: 1fr; }
  .home-hero-media-wrap { display: none; }
  .home-hero-copy h1    { font-size: 2.2rem; line-height: 1.1; letter-spacing: -0.035em; }
  .home-hero-copy .lead { font-size: 1rem; line-height: 1.55; }
  .hero-mobile-image    {
    display: block; aspect-ratio: 16/9; max-height: 240px;
    border-radius: 18px; overflow: hidden;
    border: 1px solid var(--line); margin-bottom: 1.25rem;
  }
  .hero-mobile-image img { width: 100%; height: 100%; object-fit: cover; }
  .hero-actions         { gap: 0.6rem; margin-top: 1rem; }
  .hero-actions .btn    { min-height: 48px; padding: 0.8rem 1rem; flex: 1 1 calc(50% - 0.3rem); }
  .hero-call-mobile     {
    display: flex; width: 100%; margin-top: 0.6rem;
    min-height: 46px; font-size: 0.9rem; justify-content: center;
    border-radius: var(--radius-sm);
  }
  .hero-proof-row { display: none; }

  /* Services — 2×2 grid */
  .services-grid   { grid-template-columns: repeat(2, minmax(0,1fr)) !important; gap: 0.85rem; }
  .service-card    { flex-direction: column; padding: 0; overflow: hidden; }
  .card-thumb      { aspect-ratio: 16/10; width: 100%; margin: 0 0 0.75rem; border-radius: 0; border: none; border-bottom: 1px solid var(--line); }
  .service-card h3 { font-size: 0.9rem; padding: 0 0.75rem; margin-bottom: 0.3rem; }
  .service-card p  {
    font-size: 0.82rem; padding: 0 0.75rem; line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  }
  .service-card .text-link { padding: 0 0.75rem 0.75rem; font-size: 0.82rem; margin-top: 0.35rem; }

  /* Issues — 2 col */
  .issues-layout             { display: block; }
  .issues-copy               { margin-bottom: 1.25rem; }
  .issues-grid               { grid-template-columns: repeat(2, minmax(0,1fr)) !important; gap: 0.75rem; }
  .issues-grid .info-card    { padding: 0.85rem; }
  .issues-grid .info-card h3 { font-size: 0.88rem; }
  .issues-grid .info-card p  { font-size: 0.82rem; }

  /* Features — 2 col */
  .three-col    { grid-template-columns: repeat(2, minmax(0,1fr)) !important; gap: 0.75rem; }
  .feature-card { padding: 1rem; }
  .feature-card h3 { font-size: 0.92rem; }
  .feature-card p  { font-size: 0.84rem; }

  /* Process — single col; timeline via .process-grid-v2 below */
  .process-grid-3 { grid-template-columns: 1fr !important; gap: 0; }

  /* Process Timeline — vertical with connecting line */
  .process-grid-v2         { position: relative; gap: 0; }
  .process-grid-v2::before {
    content: ''; position: absolute;
    left: 21px; top: 48px; bottom: 8px; width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--line));
    border-radius: 2px;
  }
  .process-grid-v2 .process-card {
    display: grid; grid-template-columns: 44px 1fr; grid-template-rows: auto auto;
    column-gap: 1rem; align-items: start;
    background: transparent !important; border: none !important;
    box-shadow: none !important; padding: 0 0 1.5rem !important; position: relative;
  }
  .process-grid-v2 .process-card:last-child  { padding-bottom: 0 !important; }
  .process-grid-v2 .process-card > span:first-child {
    grid-column: 1; grid-row: 1; margin-bottom: 0;
    position: relative; z-index: 1;
    box-shadow: 0 4px 14px rgba(15,45,82,0.22);
  }
  .process-grid-v2 .process-card > h3 {
    grid-column: 2; grid-row: 1;
    font-size: 1.06rem; margin-bottom: 0.4rem; align-self: center;
  }
  .process-grid-v2 .process-card > p  {
    grid-column: 2; grid-row: 2;
    margin-bottom: 0; font-size: 0.93rem; padding: 0.7rem 0.9rem;
    background: rgba(255,255,255,0.92) !important;
    border: 1px solid rgba(208,220,232,0.75) !important;
    border-radius: 16px; box-shadow: var(--shadow-soft) !important; flex: none;
  }

  /* Reviews */
  .reviews-grid { max-width: none; grid-template-columns: 1fr; gap: 0.85rem; }
  .review-card  { padding: 1.1rem; }
  .review-text  { font-size: 0.9rem; }

  /* CTA */
  .cta-panel > div { padding: 1.5rem; }
  .cta-panel h2    { font-size: clamp(1.5rem,6vw,1.9rem); }

  /* Cards */
  .feature-card, .info-card, .process-card, .detail-card { padding: 1.1rem; }
  .media-large, .media-medium { min-height: auto !important; max-height: 260px; aspect-ratio: 16/9 !important; overflow: hidden; }
  .media-large img, .media-medium img { width: 100%; height: 100%; object-fit: cover; }

  /* Page hero */
  .page-hero-visual .page-hero-grid { grid-template-columns: 1fr; padding-bottom: 2rem; }
  .page-hero-media    { min-height: 220px; max-height: 250px; }
  .page-hero-simple h1 { font-size: 2rem; }

  /* Layouts */
  .two-column-layout  { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-split        { grid-template-columns: 1fr; gap: 1.5rem; }
  .side-stack         { gap: 0.85rem; }

  /* FAQ */
  .faq-grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)) !important; gap: 0.75rem; }

  /* Forms */
  .input-grid  { grid-template-columns: 1fr; gap: 0.75rem; }
  .form-panel  { padding: 1.25rem; }
  .form-panel h2 { font-size: 1.4rem; margin-bottom: 1rem; }

  /* Footer */
  .footer-top    { grid-template-columns: 1fr 1fr; padding: 2rem 0 1.5rem; gap: 1rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.6rem; }

  /* Pricing */
  .pricing-grid { max-width: none !important; grid-template-columns: 1fr !important; }
  .pricing-card { padding: 1.35rem; }
  .price-amount { font-size: 2.1rem; }
}


/* ── 30. ≤480px — Small phones ───────────────────────────── */
@media (max-width: 480px) {
  .footer-top        { grid-template-columns: 1fr; }
  .faq-grid-2        { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 100%; }
}

/* ── Blog ─────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1.4rem;
  align-items: stretch;
}
.blog-card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(208,220,232,0.8);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}
.blog-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--accent); }
.blog-card-link  { display: flex; flex-direction: column; flex: 1; color: inherit; }
.blog-card-thumb { margin: 0; aspect-ratio: 16/9; overflow: hidden; flex-shrink: 0; }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.03); }
.blog-card-body  { display: flex; flex-direction: column; flex: 1; padding: 1.4rem; }
.blog-tag {
  display: inline-flex; padding: 0.3rem 0.7rem; border-radius: 999px;
  background: rgba(240,112,48,0.10); color: var(--accent-dark);
  font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em;
  margin-bottom: 0.75rem; align-self: flex-start;
}
.blog-card-body h2 { font-size: 1.15rem; margin-bottom: 0.6rem; line-height: 1.3; }
.blog-card-body p  { font-size: 0.93rem; flex: 1; margin-bottom: 1rem; }
.blog-read-more    { font-size: 0.9rem; font-weight: 700; color: var(--accent-dark); margin-top: auto; }
.blog-card:hover .blog-read-more { color: var(--accent); }

/* Blog post layout */
.blog-content {
  display: grid;
  grid-template-columns: minmax(0,1fr) 280px;
  gap: 3rem;
  align-items: start;
}
.blog-hero-img {
  min-height: 360px;
  margin-bottom: 2.5rem;
  grid-column: 1 / -1;
}
.blog-body { min-width: 0; }
.blog-body h2 { font-size: clamp(1.35rem,2.2vw,1.75rem); margin-top: 2.2rem; margin-bottom: 0.75rem; }
.blog-body p  { font-size: 1.02rem; line-height: 1.75; max-width: 72ch; }
.blog-body .clean-list li { font-size: 1rem; line-height: 1.65; }
.blog-cta-inline {
  display: flex; gap: 0.85rem; flex-wrap: wrap;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(208,220,232,0.6);
}
.blog-meta {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 1rem; font-size: 0.9rem; color: var(--muted);
}
.blog-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 1rem; }
.blog-sidebar .info-card a { color: var(--accent-dark); font-weight: 600; }
.blog-sidebar .info-card a:hover { color: var(--accent); }

/* Blog responsive */
@media (max-width: 1100px) {
  .blog-content { grid-template-columns: 1fr; }
  .blog-sidebar  { position: static; }
  .blog-hero-img { grid-column: 1; }
}
@media (max-width: 720px) {
  .blog-grid     { grid-template-columns: 1fr; }
  .blog-hero-img { min-height: 220px; max-height: 260px; }
  .blog-body p   { font-size: 0.97rem; }
}

/* ── Tools ────────────────────────────────────────────────── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.1rem;
  align-items: stretch;
}
.tool-card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(208,220,232,0.8);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform .18s, border-color .18s, box-shadow .18s;
  color: inherit;
}
.tool-card:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: var(--shadow); }
.tool-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.tool-card h3 { font-size: 1.04rem; margin-bottom: 0.4rem; }
.tool-card p  { font-size: 0.91rem; color: var(--muted); flex: 1; margin-bottom: 0.75rem; }
.tool-card .text-link { font-size: 0.88rem; margin-top: auto; }

/* Tool page panel */
.tool-panel {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(208,220,232,0.8);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}
.tool-output-row {
  display: flex; gap: 0.75rem; align-items: stretch;
}
.tool-output-row input { flex: 1; }
.tool-options { margin-top: 1.25rem; }
.tool-option-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.tool-option-row input[type=range] { width: 60%; }
.tool-checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.tool-check { display: flex; align-items: center; gap: 0.5rem; font-size: 0.92rem; color: var(--muted); cursor: pointer; }
.tool-check input { width: auto; min-height: auto; height: 16px; width: 16px; cursor: pointer; }
.wc-stat {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1rem; background: rgba(255,255,255,0.7); border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.wc-num   { font-size: 1.5rem; font-weight: 900; color: var(--primary-dark); line-height: 1; }
.wc-label { font-size: 0.78rem; color: var(--muted); margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* QR type buttons */
.qr-type-btn {
  padding: 0.4rem 0.9rem; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.8);
  color: var(--muted); font-size: 0.85rem; font-weight: 600; cursor: pointer;
  transition: all .18s;
}
.qr-type-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.qr-type-btn:hover:not(.active) { border-color: var(--accent); color: var(--accent-dark); }

/* Tools responsive */
@media (max-width: 1100px) {
  .tools-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 720px) {
  .tools-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0.75rem; }
  .tool-card  { padding: 1.1rem; }
  .tool-icon  { font-size: 1.5rem; margin-bottom: 0.5rem; }
  .tool-card h3 { font-size: 0.92rem; }
  .tool-card p  { font-size: 0.84rem; }
  .tool-checkboxes { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .tools-grid { grid-template-columns: 1fr; }
}

/* Submit button spinner */
.btn-submit.is-loading { pointer-events: none; opacity: 0.85; }
.btn-submit.is-loading .btn-submit-text { margin-right: 0.6rem; }
.btn-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
.btn-submit.is-loading .btn-spinner {
  display: inline-block;
  animation: btn-spin 0.7s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }

/* Media large mobile fix */

/* ── Pricing mobile ── */
@media (max-width: 720px) {
  .pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: none !important;
  }
  .pricing-order-1 { order: 1; }
  .pricing-order-2 { order: 2; }
  .pricing-order-3 { order: 3; }

  .pricing-card { padding: 1.1rem; }
  .pricing-card-featured { padding: 1.25rem; }

  /* Compact: price and head side by side */
  .pricing-card-head { margin-bottom: 0.75rem; }
  .pricing-card h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
  .pricing-desc { font-size: 0.85rem; }

  .pricing-price {
    margin: 0.75rem 0;
    padding: 0.75rem 0;
  }
  .price-amount { font-size: 2rem; }
  .price-unit   { font-size: 0.88rem; }

  .pricing-features li { font-size: 0.87rem; margin-bottom: 0.45rem; }
  .pricing-note { margin-bottom: 0.85rem; padding: 0.65rem 0.85rem; }
  .pricing-note p { font-size: 0.82rem; }
  .pricing-cta { min-height: 44px; font-size: 0.9rem; }
}
