/* ==========================================================================
   ShieldPoint Pest Control — shared stylesheet
   Clinical-clean white + emerald trust brand. No external requests.
   ========================================================================== */

/* -------------------------- Design tokens -------------------------- */
:root {
  /* Emerald family */
  --emerald-900: #063d2a;
  --emerald-800: #0b5c3f;
  --emerald-700: #0e7a50;
  --emerald-600: #119463;
  --emerald-500: #16ab74;
  --emerald-100: #e0f5ea;
  --emerald-50:  #f3fbf7;

  /* Ink / neutrals */
  --ink-900: #10201a;
  --ink-700: #364a41;
  --ink-500: #5c6f66;
  --gray-200: #e4ece7;
  --gray-100: #f0f5f2;
  --white: #ffffff;

  /* Accent (used sparingly for guarantee/gold touches) */
  --gold-600: #a9791f;
  --gold-100: #faf1de;

  /* Feedback */
  --danger-700: #9b2226;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 2.5rem;
  --space-8: 3rem;
  --space-9: 4rem;
  --space-10: 5rem;
  --space-11: 6.5rem;

  /* Type scale */
  --fs-sm: 0.9375rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 3rem;

  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(6, 61, 42, 0.08), 0 1px 2px rgba(6, 61, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(6, 61, 42, 0.10), 0 2px 8px rgba(6, 61, 42, 0.06);
  --shadow-lg: 0 20px 48px rgba(6, 61, 42, 0.14), 0 6px 16px rgba(6, 61, 42, 0.08);

  --max-width: 1200px;
}

/* -------------------------- Reset -------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { text-decoration: none; color: inherit; }
table { border-collapse: collapse; width: 100%; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--emerald-900);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
}

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-lg); }
h4 { font-size: var(--fs-md); }

@media (max-width: 640px) {
  h1 { font-size: var(--fs-2xl); }
  h2 { font-size: var(--fs-xl); }
}

p { color: var(--ink-700); }

.lede {
  font-size: var(--fs-md);
  color: var(--ink-700);
}

/* Visible focus states everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--emerald-600);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--emerald-800);
  color: var(--white);
  padding: var(--space-3) var(--space-5);
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 700;
}
.skip-link:focus {
  left: 0;
}

/* -------------------------- Layout helpers -------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

section {
  padding-block: var(--space-10);
}

@media (max-width: 640px) {
  section { padding-block: var(--space-8); }
}

.section-tight { padding-block: var(--space-8); }

.section-alt {
  background: var(--emerald-50);
}

.section-dark {
  background: linear-gradient(160deg, var(--emerald-900), var(--emerald-800) 60%, var(--emerald-700));
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.86); }

.section-head {
  max-width: 720px;
  margin-bottom: var(--space-8);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: var(--space-3);
}
.section-dark .eyebrow { color: var(--emerald-100); }

.eyebrow .eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-600);
  flex-shrink: 0;
}

.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* -------------------------- Buttons -------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: var(--fs-sm);
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--emerald-600);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--emerald-700);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-outline {
  background: var(--white);
  border-color: var(--emerald-600);
  color: var(--emerald-700);
}
.btn-outline:hover {
  background: var(--emerald-50);
}

.btn-block { width: 100%; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

/* -------------------------- Topbar -------------------------- */
.topbar {
  background: var(--emerald-900);
  color: rgba(255,255,255,0.92);
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-2);
  flex-wrap: wrap;
}
.topbar-info {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.topbar-info a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar-info a:hover { color: var(--emerald-100); text-decoration: underline; }
.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--emerald-100);
}

/* -------------------------- Header / Nav -------------------------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  gap: var(--space-5);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--emerald-900);
}
.brand-mark { flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text .brand-sub {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald-600);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-links {
  display: flex;
  gap: var(--space-5);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding-block: var(--space-2);
  color: var(--ink-700);
}
.nav-links a:hover { color: var(--emerald-700); }
.nav-links a[aria-current="page"] {
  color: var(--emerald-800);
}
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--emerald-600);
}

.nav-cta { display: flex; align-items: center; gap: var(--space-4); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--emerald-50);
  border: 1px solid var(--gray-200);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--emerald-900);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .hamburger { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-5);
    gap: var(--space-5);
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .nav-links {
    flex-direction: column;
    gap: var(--space-1);
  }
  .nav-links a { display: block; padding: var(--space-3) var(--space-2); }
  .nav-cta { flex-direction: column; align-items: stretch; }
  .nav-cta .btn { width: 100%; }
}

/* -------------------------- Hero -------------------------- */
.hero {
  position: relative;
  background: linear-gradient(150deg, var(--emerald-900) 0%, var(--emerald-800) 45%, var(--emerald-700) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-8);
  align-items: center;
  padding-block: var(--space-11);
}

@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    padding-block: var(--space-9);
    text-align: center;
  }
  .hero-art { order: -1; max-width: 320px; margin-inline: auto; }
  .hero .cta-row { justify-content: center; }
  .hero-trustline { justify-content: center; }
}

.hero h1 { color: var(--white); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.hero p.lede {
  color: rgba(255,255,255,0.88);
  margin-block: var(--space-5) var(--space-6);
  max-width: 52ch;
}

.hero-trustline {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
  margin-top: var(--space-7);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.hero-trustline li { display: flex; align-items: center; gap: var(--space-2); }

.hero-art {
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.25));
}

.hero-bg-shield {
  position: absolute;
  right: -140px;
  top: -120px;
  opacity: 0.10;
  width: 620px;
  height: 620px;
  pointer-events: none;
}

/* -------------------------- Trust badge / stats bar -------------------------- */
.badge-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.badge-bar .grid {
  padding-block: var(--space-6);
  text-align: center;
}
.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.badge-item .badge-icon { color: var(--emerald-600); }
.badge-item strong {
  font-size: 0.95rem;
  color: var(--emerald-900);
  font-weight: 700;
}
.badge-item span {
  font-size: 0.8rem;
  color: var(--ink-500);
}

.stats-bar {
  background: var(--emerald-900);
  color: var(--white);
}
.stats-bar .grid {
  text-align: center;
}
.stat-num {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--white);
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

/* -------------------------- Cards -------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  height: 100%;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--emerald-100);
  color: var(--emerald-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card h3 { margin-bottom: 0; }
.service-card p { font-size: 0.95rem; }
.service-card .card-link {
  margin-top: auto;
  font-weight: 700;
  color: var(--emerald-700);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.service-card .card-link:hover { color: var(--emerald-900); text-decoration: underline; }

.service-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  padding-block: var(--space-7);
  border-bottom: 1px solid var(--gray-200);
}
.service-block:last-child { border-bottom: none; }
.service-block .service-icon { width: 64px; height: 64px; }
@media (max-width: 560px) {
  .service-block { grid-template-columns: 1fr; }
}

/* Testimonials */
.testimonial-card {
  background: var(--emerald-50);
  border: 1px solid var(--emerald-100);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.stars { color: var(--gold-600); display: flex; gap: 2px; }
.testimonial-card blockquote {
  font-size: var(--fs-md);
  color: var(--ink-900);
  font-style: italic;
}
.testimonial-attrib {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  color: var(--emerald-800);
  font-size: 0.9rem;
}
.testimonial-attrib span.role {
  display: block;
  font-weight: 500;
  color: var(--ink-500);
}

/* Team */
.team-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.avatar {
  width: 108px;
  height: 108px;
  border-radius: 50%;
}
.team-card h3 { margin-bottom: 0; }
.team-card .role {
  color: var(--emerald-700);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Values */
.value-card {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--emerald-100);
  color: var(--emerald-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Certifications */
.cert-badge {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}
.cert-badge .cert-icon { color: var(--emerald-700); flex-shrink: 0; }
.cert-badge h3 { font-size: var(--fs-md); margin-bottom: 2px; }
.cert-badge p { font-size: 0.88rem; margin: 0; }

/* Guarantee banner */
.guarantee {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  background: var(--white);
  border: 2px solid var(--emerald-100);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.guarantee-icon { flex-shrink: 0; color: var(--gold-600); }
@media (max-width: 640px) {
  .guarantee { flex-direction: column; text-align: center; }
}

/* -------------------------- Why choose us / list rows -------------------------- */
.why-list { display: flex; flex-direction: column; gap: var(--space-5); }
.why-item { display: flex; gap: var(--space-4); align-items: flex-start; }
.why-item .icon-check {
  flex-shrink: 0;
  color: var(--emerald-700);
  background: var(--emerald-100);
  border-radius: 50%;
  padding: 6px;
}

/* -------------------------- Service area grid -------------------------- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
@media (max-width: 900px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }

.area-chip {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  font-weight: 700;
  color: var(--emerald-900);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.area-chip:hover {
  border-color: var(--emerald-500);
  box-shadow: var(--shadow-sm);
}
.area-chip svg { color: var(--emerald-600); flex-shrink: 0; }

.area-detail h3 { margin-bottom: var(--space-2); }
.area-detail { padding: var(--space-5) 0; }

/* -------------------------- CTA banner -------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--emerald-700), var(--emerald-900));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.88); margin-block: var(--space-3) var(--space-6); }
.cta-banner .cta-row { justify-content: center; }

/* -------------------------- Footer -------------------------- */
.site-footer {
  background: var(--emerald-900);
  color: rgba(255,255,255,0.85);
}
.footer-top {
  padding-block: var(--space-9);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: var(--space-7);
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}
.site-footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-4);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--white);
  font-weight: 800;
  margin-bottom: var(--space-4);
}
.footer-col p, .footer-col address { font-size: 0.9rem; color: rgba(255,255,255,0.78); font-style: normal; }
.footer-links { display: flex; flex-direction: column; gap: var(--space-2); font-size: 0.9rem; }
.footer-links a:hover { color: var(--white); text-decoration: underline; }
.footer-nap { display: flex; flex-direction: column; gap: var(--space-2); font-size: 0.9rem; }
.footer-nap a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-block: var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.footer-social { display: flex; gap: var(--space-3); }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--emerald-600); }

/* -------------------------- Section divider (shield motif) -------------------------- */
.divider {
  display: flex;
  justify-content: center;
  padding-block: var(--space-2);
  color: var(--emerald-200, var(--emerald-100));
}

/* -------------------------- Forms (contact page) -------------------------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  box-shadow: var(--shadow-md);
}
.form-row { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-5); }
.form-row label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--emerald-900);
}
.form-row .req { color: var(--danger-700); }
.form-row input,
.form-row select,
.form-row textarea {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  background: var(--white);
  font-size: var(--fs-base);
  color: var(--ink-900);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--emerald-600);
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
@media (max-width: 560px) {
  .form-grid-2 { grid-template-columns: 1fr; }
}
.form-hint { font-size: 0.8rem; color: var(--ink-500); margin-top: var(--space-1); }

.contact-info-card {
  background: var(--emerald-50);
  border: 1px solid var(--emerald-100);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
}
.contact-info-list { display: flex; flex-direction: column; gap: var(--space-5); }
.contact-info-item { display: flex; gap: var(--space-4); align-items: flex-start; }
.contact-info-item .icon-wrap {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--emerald-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.contact-info-item h3 { font-size: var(--fs-base); margin-bottom: 2px; }
.contact-info-item p, .contact-info-item address { font-size: 0.92rem; margin: 0; font-style: normal; }

.hours-table {
  width: 100%;
  font-size: 0.92rem;
  margin-top: var(--space-4);
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--emerald-100);
}
.hours-table th { color: var(--emerald-900); font-weight: 700; width: 55%; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }
.emergency-note {
  margin-top: var(--space-5);
  padding: var(--space-4);
  background: var(--gold-100);
  border: 1px solid #eadfb9;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: #5c4308;
}

/* -------------------------- Misc utility -------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.page-hero {
  background: linear-gradient(150deg, var(--emerald-900), var(--emerald-700));
  color: var(--white);
  padding-block: var(--space-9);
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); margin-bottom: var(--space-3); }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 62ch; }
.page-hero .breadcrumb {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-4);
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.9); }
.page-hero .breadcrumb a:hover { text-decoration: underline; }

/* ==========================================================================
   Addendum — Booking, Client Portal, Estimate Builder
   Appended per SPEC-ADDONS.md. New rules only; nothing above is modified.
   ========================================================================== */

/* -------------------------- Nav: highlighted Book Now -------------------------- */
.btn-book {
  background: var(--gold-600);
  color: var(--white);
  border-color: var(--gold-600);
}
.btn-book:hover {
  background: #8a6019;
  border-color: #8a6019;
  box-shadow: var(--shadow-md);
  color: var(--white);
}
.nav-cta { flex-wrap: wrap; row-gap: var(--space-2); }

@media (max-width: 1150px) and (min-width: 881px) {
  .nav-links { gap: var(--space-4); font-size: 0.86rem; }
  .nav-cta { gap: var(--space-2); }
  .nav-cta .btn { padding: 0.75rem 1.1rem; font-size: 0.82rem; }
}

/* -------------------------- Demo label -------------------------- */
.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* -------------------------- Progress steps -------------------------- */
.progress-steps {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-7);
  padding: 0;
  list-style: none;
}
.progress-steps li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-500);
}
.progress-steps .step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--ink-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.progress-steps li.is-active .step-num,
.progress-steps li.is-done .step-num {
  background: var(--emerald-600);
  color: var(--white);
}
.progress-steps li.is-active { color: var(--emerald-800); }
.progress-steps .step-sep {
  width: 20px;
  height: 2px;
  background: var(--gray-200);
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .progress-steps .step-label { display: none; }
}

/* -------------------------- Plan choice / tiers (booking) -------------------------- */
.plan-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
@media (max-width: 640px) { .plan-choice-grid { grid-template-columns: 1fr; } }

.plan-choice-card {
  text-align: left;
  width: 100%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font: inherit;
}
.plan-choice-card:hover { border-color: var(--emerald-500); }
.plan-choice-card[aria-pressed="true"] {
  border-color: var(--emerald-600);
  box-shadow: var(--shadow-md);
  background: var(--emerald-50);
}
.plan-choice-card h3 { margin-bottom: 0; }
.plan-choice-card .plan-price { font-weight: 800; color: var(--emerald-700); font-size: 0.95rem; }

.plan-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-5);
}
@media (max-width: 900px) { .plan-tier-grid { grid-template-columns: 1fr; } }

.plan-tier-card {
  position: relative;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  background: var(--white);
  text-align: left;
  width: 100%;
  cursor: pointer;
  font: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.plan-tier-card:hover { border-color: var(--emerald-500); }
.plan-tier-card[aria-pressed="true"] { border-color: var(--emerald-600); box-shadow: var(--shadow-md); }
.plan-tier-card.is-featured { border-color: var(--gold-600); }
.plan-tier-badge {
  position: absolute;
  top: -12px;
  left: var(--space-5);
  background: var(--gold-600);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.plan-tier-card .price { font-size: var(--fs-xl); font-weight: 800; color: var(--emerald-800); margin: var(--space-2) 0; }
.plan-tier-card .price span { font-size: 0.8rem; font-weight: 600; color: var(--ink-500); }
.plan-tier-list { list-style: none; padding: 0; margin: var(--space-4) 0 0; display: flex; flex-direction: column; gap: var(--space-2); font-size: 0.88rem; }
.plan-tier-list li { display: flex; gap: var(--space-2); align-items: flex-start; color: var(--ink-700); }
.plan-tier-list svg { color: var(--emerald-600); flex-shrink: 0; margin-top: 3px; }

.cadence-note {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  background: var(--emerald-50);
  border: 1px solid var(--emerald-100);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  margin-top: var(--space-5);
  font-size: 0.9rem;
}
.cadence-note svg { color: var(--emerald-700); flex-shrink: 0; margin-top: 2px; }

/* -------------------------- Calendar -------------------------- */
.calendar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}
.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
  gap: var(--space-3);
  flex-wrap: wrap;
}
.calendar-head h3 { margin: 0; }
.calendar-weekdays, .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--space-2);
}
.calendar-weekdays div {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-500);
  text-transform: uppercase;
  padding-block: var(--space-2);
}
.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--ink-900);
  font-weight: 700;
  font-size: 0.88rem;
}
.calendar-day.is-empty { border: none; background: transparent; }
.calendar-day.is-available:hover { border-color: var(--emerald-500); background: var(--emerald-50); }
.calendar-day.is-unavailable {
  color: var(--ink-500);
  background: var(--gray-100);
  border-color: var(--gray-100);
  cursor: not-allowed;
  opacity: 0.65;
  text-decoration: line-through;
}
.calendar-day.is-selected {
  background: var(--emerald-600);
  border-color: var(--emerald-600);
  color: var(--white);
}
.calendar-legend {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
  margin-top: var(--space-5);
  font-size: 0.8rem;
  color: var(--ink-500);
}
.calendar-legend span { display: inline-flex; align-items: center; gap: 6px; }
.legend-dot { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.legend-dot.available { background: var(--emerald-50); border: 1.5px solid var(--emerald-500); }
.legend-dot.unavailable { background: var(--gray-100); border: 1.5px solid var(--gray-200); }

/* -------------------------- Time slots -------------------------- */
.time-slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: var(--space-3); margin-top: var(--space-5); }
.time-slot {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--emerald-900);
  text-align: center;
}
.time-slot:hover { border-color: var(--emerald-500); background: var(--emerald-50); }
.time-slot[aria-pressed="true"] { background: var(--emerald-600); border-color: var(--emerald-600); color: var(--white); }

.booking-summary {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: center;
  background: var(--emerald-50);
  border: 1px solid var(--emerald-100);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-6);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--emerald-900);
}
.booking-summary .tag {
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: 0.78rem;
}

/* -------------------------- Confirmation screen -------------------------- */
.confirm-card {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(12px);
  animation: confirmIn 0.5s ease forwards;
}
@keyframes confirmIn { to { opacity: 1; transform: translateY(0); } }
.confirm-check {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--emerald-100);
  color: var(--emerald-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--space-5);
}
.confirm-ref {
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: var(--fs-md);
  font-weight: 700;
  background: var(--emerald-50);
  color: var(--emerald-800);
  border: 1px dashed var(--emerald-500);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  margin-block: var(--space-4);
}
.confirm-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  text-align: left;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  margin-block: var(--space-6);
  font-size: 0.9rem;
}
.confirm-detail-grid dt { font-weight: 700; color: var(--emerald-900); }
.confirm-detail-grid dd { margin: 0 0 var(--space-3); color: var(--ink-700); }
@media (max-width: 560px) { .confirm-detail-grid { grid-template-columns: 1fr; } }

.step-list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.step-list li { display: flex; gap: var(--space-4); align-items: flex-start; }
.step-list .step-circle {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--emerald-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

/* -------------------------- FAQ -------------------------- */
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--emerald-900);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--emerald-600);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin-top: var(--space-3); font-size: 0.92rem; }

/* -------------------------- Client Portal: login -------------------------- */
.login-wrap { max-width: 440px; margin-inline: auto; }
.login-wrap.is-hidden,
.booking-flow-step.is-hidden,
.estimate-flow-step.is-hidden,
.portal-dashboard.is-hidden { display: none !important; }

.login-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
}
.login-card h2 { text-align: center; }
.login-card > p.lede { text-align: center; }
.login-divider {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-block: var(--space-5);
  font-size: 0.78rem;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.login-divider::before, .login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

/* -------------------------- Portal dashboard -------------------------- */
.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-7);
}
.dashboard-welcome h2 { margin-bottom: var(--space-1); }
.dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-6);
  align-items: start;
}
@media (max-width: 900px) { .dashboard-grid { grid-template-columns: 1fr; } }
.dashboard-stack { display: flex; flex-direction: column; gap: var(--space-6); }
.dashboard-card h2 { font-size: var(--fs-lg); margin-bottom: var(--space-4); }

.appointment-item {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--gray-200);
}
.appointment-item:last-child { border-bottom: none; padding-bottom: 0; }
.appointment-date {
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  background: var(--emerald-50);
  border-radius: var(--radius-sm);
  padding: var(--space-2);
}
.appointment-date .mon { display: block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; color: var(--emerald-700); }
.appointment-date .day { display: block; font-size: 1.2rem; font-weight: 800; color: var(--emerald-900); }
.appointment-item h3 { font-size: 0.98rem; margin-bottom: 2px; }
.appointment-item p { font-size: 0.85rem; margin: 0; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.status-pill.is-paid { background: var(--emerald-100); color: var(--emerald-800); }
.status-pill.is-due { background: var(--gold-100); color: #6b4c10; }
.status-pill.is-complete { background: var(--emerald-100); color: var(--emerald-800); }
.status-pill.is-scheduled { background: var(--gray-100); color: var(--ink-700); }

.table-wrap { overflow-x: auto; }
.data-table { width: 100%; font-size: 0.86rem; border-collapse: collapse; }
.data-table th, .data-table td { text-align: left; padding: 0.7rem var(--space-2); border-bottom: 1px solid var(--gray-200); white-space: nowrap; }
.data-table th { color: var(--emerald-900); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.03em; }
.data-table tr:last-child td { border-bottom: none; }

.invoice-card { border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: var(--space-5); margin-bottom: var(--space-4); }
.invoice-card:last-child { margin-bottom: 0; }
.invoice-head { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--space-3); margin-bottom: var(--space-3); flex-wrap: wrap; }
.invoice-head strong { color: var(--emerald-900); display: block; }
.invoice-head .invoice-meta { font-size: 0.8rem; color: var(--ink-500); }
.invoice-lines { list-style: none; padding: 0; margin: var(--space-3) 0; font-size: 0.86rem; }
.invoice-lines li { display: flex; justify-content: space-between; padding: 0.35rem 0; border-bottom: 1px dashed var(--gray-200); color: var(--ink-700); }
.invoice-lines li:last-child { border-bottom: none; }
.invoice-total { display: flex; justify-content: space-between; font-weight: 800; color: var(--emerald-900); padding-top: var(--space-2); border-top: 2px solid var(--gray-200); margin-top: var(--space-2); }
.invoice-actions { margin-top: var(--space-4); display: flex; gap: var(--space-3); flex-wrap: wrap; }

.countdown-card {
  text-align: center;
  background: linear-gradient(150deg, var(--emerald-900), var(--emerald-700));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.countdown-card h2, .countdown-card h3 { color: var(--white); }
.countdown-nums { display: flex; justify-content: center; gap: var(--space-4); margin-block: var(--space-4); }
.countdown-unit { display: flex; flex-direction: column; align-items: center; }
.countdown-unit .num { font-size: var(--fs-2xl); font-weight: 800; }
.countdown-unit .lbl { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.75); }
.countdown-card p { color: rgba(255,255,255,0.85); font-size: 0.86rem; margin: 0; }

.treatment-log-item { display: flex; gap: var(--space-4); padding: var(--space-4) 0; border-bottom: 1px solid var(--gray-200); }
.treatment-log-item:last-child { border-bottom: none; padding-bottom: 0; }
.treatment-log-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--emerald-100); color: var(--emerald-700); display: flex; align-items: center; justify-content: center; }
.treatment-log-item h3 { font-size: 0.95rem; margin-bottom: 2px; }
.treatment-log-item p { font-size: 0.85rem; margin: 0; }
.treatment-log-item .log-date { font-size: 0.75rem; color: var(--emerald-700); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }

.account-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-3); font-size: 0.88rem; }
.account-list .row { display: flex; justify-content: space-between; gap: var(--space-3); padding-bottom: var(--space-3); border-bottom: 1px solid var(--gray-200); }
.account-list .row:last-child { border-bottom: none; padding-bottom: 0; }
.account-list .label { color: var(--ink-500); font-weight: 600; }
.account-list .value { color: var(--emerald-900); font-weight: 700; text-align: right; }

/* -------------------------- Payment modal -------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 61, 42, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
  z-index: 300;
}
.modal-overlay.is-open { display: flex; }
.modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  max-width: 440px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-700);
}
.modal-close:hover { background: var(--gray-200); }
.secure-note { display: flex; align-items: center; gap: var(--space-2); font-size: 0.8rem; color: var(--ink-500); margin-top: var(--space-4); justify-content: center; }
.secure-note svg { color: var(--emerald-600); flex-shrink: 0; }

.card-visual {
  background: linear-gradient(135deg, var(--emerald-800), var(--emerald-600));
  border-radius: var(--radius-md);
  padding: var(--space-5);
  color: var(--white);
  margin-bottom: var(--space-5);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.card-visual .num { font-size: 1.15rem; letter-spacing: 0.12em; margin-bottom: var(--space-4); min-height: 1.4em; }
.card-visual .meta { display: flex; justify-content: space-between; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(255,255,255,0.8); }
.card-visual .meta span { display: block; font-family: var(--font-body); font-size: 0.9rem; color: var(--white); letter-spacing: 0; margin-top: 2px; }

.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
@media (max-width: 480px) { .form-grid-3 { grid-template-columns: 1fr; } }
.form-row.has-error input,
.form-row.has-error select { border-color: var(--danger-700); }
.field-error { color: var(--danger-700); font-size: 0.78rem; margin-top: var(--space-1); display: none; }
.form-row.has-error .field-error { display: block; }

.spinner-wrap { text-align: center; padding: var(--space-8) 0; }
.spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid var(--emerald-100);
  border-top-color: var(--emerald-600);
  margin: 0 auto var(--space-5);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.pay-success { text-align: center; padding: var(--space-4) 0; }
.pay-success .confirm-check { margin-bottom: var(--space-4); }

/* -------------------------- Estimate builder -------------------------- */
.estimate-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-7); align-items: start; }
@media (max-width: 900px) { .estimate-layout { grid-template-columns: 1fr; } }

.estimate-field { margin-bottom: var(--space-7); }
.estimate-field:last-child { margin-bottom: 0; }
.estimate-field > label,
.estimate-field > span.field-label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--emerald-900);
  margin-bottom: var(--space-3);
}

.stepper-row { display: flex; align-items: center; gap: var(--space-4); }
.range-slider {
  width: 100%;
  accent-color: var(--emerald-600);
  height: 6px;
  margin-block: var(--space-3);
}
.range-value-row { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--ink-500); }
.range-value-row strong { color: var(--emerald-800); font-size: 1rem; }

.chip-grid { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--ink-700);
}
.chip:hover { border-color: var(--emerald-500); }
.chip[aria-pressed="true"] { background: var(--emerald-600); border-color: var(--emerald-600); color: var(--white); }
.chip[aria-pressed="true"] svg { color: var(--white); }

.price-display {
  background: linear-gradient(150deg, var(--emerald-900), var(--emerald-700));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
}
.price-display h2, .price-display h3 { color: var(--white); margin-bottom: var(--space-2); }
.price-range { font-size: var(--fs-2xl); font-weight: 800; }
.price-display p { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-top: var(--space-2); }

.breakdown-list { list-style: none; padding: 0; margin: var(--space-5) 0 0; font-size: 0.88rem; }
.breakdown-list li { display: flex; justify-content: space-between; gap: var(--space-3); padding: 0.55rem 0; border-bottom: 1px solid var(--gray-200); }
.breakdown-list li:last-child { border-bottom: none; }
.breakdown-list .label { color: var(--ink-700); }
.breakdown-list .amount { font-weight: 700; color: var(--emerald-900); white-space: nowrap; }

.disclaimer-box {
  background: var(--gold-100);
  border: 1px solid #eadfb9;
  border-radius: var(--radius-sm);
  padding: var(--space-4);
  font-size: 0.85rem;
  color: #5c4308;
  margin-top: var(--space-5);
}

.sticky-side { position: sticky; top: calc(var(--space-6) + 88px); }
@media (max-width: 900px) { .sticky-side { position: static; } }

.deposit-card {
  border: 2px solid var(--emerald-600);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  background: var(--emerald-50);
}
