/* ============================================
   BRISTOL WEST — shared stylesheet
   Palette: Indigo #1E2A47 / Copper #B8763E / Cream #F7F3EC / Sage #4F6D5D
   Type: 'Fraunces' (display) + 'Inter' (body/UI)
   ============================================ */

:root {
  --indigo: #1e2a47;
  --indigo-dark: #131c33;
  --copper: #b8763e;
  --copper-light: #d99a5f;
  --cream: #f7f3ec;
  --cream-dark: #efe8db;
  --sage: #4f6d5d;
  --ink: #202533;
  --ink-soft: #5a5f6d;
  --line: #e2dccd;
  --white: #ffffff;
  --danger-bg: #fdf3e3;
  --danger-border: #d8a13b;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(30, 42, 71, 0.08);
  --shadow-md: 0 8px 24px rgba(30, 42, 71, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html { overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--indigo);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 600;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Top disclosure bar ---------- */
.disclosure-bar {
  background: var(--danger-bg);
  border-bottom: 1px solid var(--danger-border);
  font-size: 12.5px;
  color: #6b4a17;
  text-align: center;
  padding: 8px 16px;
  line-height: 1.5;
}
.disclosure-bar strong { color: #4a3110; }

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--indigo);
  min-width: 0;
  justify-self: start;
}
nav.main-nav { justify-self: center; }
.header-actions { justify-self: end; }
.brand-logo {
  height: 38px;
  width: auto;
  max-width: 100%;
  display: block;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
}
.brand-sub {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
nav.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--copper);
  border-bottom-color: var(--copper);
}
nav.main-nav span.nav-static {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.55;
  padding: 6px 0;
  cursor: default;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--indigo);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14.5px;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.header-cta:hover { background: var(--indigo-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  color: var(--indigo);
  cursor: pointer;
  flex-shrink: 0;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--indigo) 0%, var(--indigo-dark) 100%);
  color: var(--white);
  padding: 72px 24px 56px;
  text-align: center;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(28px, 4.4vw, 46px);
  max-width: 780px;
  margin: 0 auto 18px;
}
.hero .lede {
  color: #cbd3e5;
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 17px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-copper {
  background: var(--copper);
  color: var(--white);
}
.btn-copper:hover { background: #a3652f; box-shadow: var(--shadow-md); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-indigo {
  background: var(--indigo);
  color: var(--white);
}
.btn-indigo:hover { background: var(--indigo-dark); }
.btn-block { width: 100%; justify-content: center; }

.hero-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #e7ebf5;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  border-bottom: 1px solid var(--line);
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.trust-item {
  background: var(--white);
  padding: 20px 16px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.trust-item .check {
  color: var(--sage);
  font-size: 15px;
}

/* ---------- Section base ---------- */
.section { padding: 68px 24px; }
.section-alt { background: var(--cream); }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.section-header h2 { font-size: clamp(24px, 3vw, 32px); }
.section-header p { font-size: 16px; }
.eyebrow {
  display: inline-block;
  color: var(--copper);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ---------- Plan cards ---------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
}
.plan-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.plan-card.featured {
  background: var(--indigo);
  color: var(--white);
  border-color: var(--indigo);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.plan-card.featured h3,
.plan-card.featured .plan-note { color: var(--white); }
.plan-card.featured .plan-price { color: var(--copper-light); }
.plan-card.featured p { color: #cbd3e5; }
.plan-card.featured li { color: #e7ebf5; }
.badge-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--copper);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}
.plan-card h3 { font-size: 18px; margin-bottom: 4px; }
.plan-note { font-size: 13px; color: var(--ink-soft); margin-bottom: 14px; }
.plan-price {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 2px;
}
.plan-price span { font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.plan-card.featured .plan-price span { color: #b7c0d6; }
.plan-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 22px;
}
.plan-list li {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 6px 0 6px 22px;
  position: relative;
}
.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}
.plan-card.featured .plan-list li::before { color: var(--copper-light); }
.plans-disclaimer {
  max-width: 800px;
  margin: 28px auto 0;
  background: var(--danger-bg);
  border: 1px solid var(--danger-border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 12.5px;
  color: #6b4a17;
  text-align: center;
}

/* ---------- Why choose / feature cards ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  text-align: center;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--cream-dark);
  color: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
}
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; margin: 0; }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 20px;
}
.service-card .service-icon {
  color: var(--copper);
  font-size: 20px;
  margin-bottom: 10px;
}
.service-card h3 { font-size: 15.5px; margin-bottom: 6px; }
.service-card p { font-size: 13.5px; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(160deg, var(--indigo) 0%, var(--indigo-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 56px 24px;
}
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { color: #cbd3e5; margin-bottom: 26px; }
.cta-band .hours { color: #a9b3ca; font-size: 13.5px; margin-top: 14px; }

/* ---------- Callback form ---------- */
.form-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.form-card-head {
  background: var(--indigo);
  color: var(--white);
  padding: 20px 26px;
}
.form-card-head h3 { color: var(--white); font-size: 17px; margin-bottom: 4px; }
.form-card-head p { color: #cbd3e5; font-size: 13.5px; margin: 0; }
.form-card-body { padding: 26px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 6px;
}
.field input,
.field select {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--white);
}
.field input:focus,
.field select:focus {
  outline: 2px solid var(--copper-light);
  outline-offset: 1px;
  border-color: var(--copper);
}
.consent-text {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 4px 0 18px;
}
.g-recaptcha { transform-origin: left top; }
.recaptcha-notice {
  font-size: 12.5px;
  color: #b3261e;
  margin: 8px 0 0;
}

/* ---------- reCAPTCHA entry gate ---------- */
body.gate-active { overflow: hidden; height: 100vh; }
.recaptcha-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: linear-gradient(160deg, var(--indigo) 0%, var(--indigo-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.recaptcha-gate-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.recaptcha-gate-logo {
  height: 40px;
  width: auto;
  margin: 0 auto 22px;
  display: block;
}
.recaptcha-gate-card h2 { font-size: 21px; margin-bottom: 8px; }
.recaptcha-gate-card p { font-size: 14px; margin-bottom: 22px; }
.recaptcha-gate #gate-recaptcha {
  display: flex;
  justify-content: center;
  transform-origin: center top;
}
@media (max-width: 360px) {
  .recaptcha-gate #gate-recaptcha { transform: scale(0.87); }
}
.form-foot {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 12px;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--indigo);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-question .chev { transition: transform 0.2s ease; color: var(--copper); flex-shrink: 0; }
.faq-item.open .faq-question .chev { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 20px;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 20px 18px; }
.faq-answer p { font-size: 14.5px; margin: 0; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--indigo-dark);
  color: #b9c1d6;
  padding-top: 52px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-brand {
  color: var(--white);
  margin-bottom: 10px;
}
.footer-logo {
  display: inline-flex;
  background: var(--white);
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 14px;
}
.footer-logo img {
  height: 32px;
  width: auto;
  display: block;
}
.footer-brand-line {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.footer-brand-sub {
  font-size: 11px;
  color: #c9d0e4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.footer-grid p { font-size: 13.5px; color: #9aa4bd; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 13.5px; color: #b9c1d6; }
.footer-links a:hover { color: var(--copper-light); }
.footer-links span.footer-static { font-size: 13.5px; color: #b9c1d6; opacity: 0.55; cursor: default; }
.footer-contact-item {
  display: flex;
  gap: 8px;
  font-size: 13.5px;
  color: #b9c1d6;
  margin-bottom: 10px;
}
.footer-legal {
  padding: 24px 0;
  font-size: 12px;
  color: #8b95af;
  line-height: 1.7;
}
.footer-legal .box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 18px;
}
.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: #74809c;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ---------- Legal / content pages ---------- */
.legal-page { padding: 56px 24px 80px; }
.legal-page .container { max-width: 820px; }
.legal-page h1 { font-size: 32px; margin-bottom: 6px; }
.legal-updated { font-size: 13px; color: var(--ink-soft); margin-bottom: 34px; }
.legal-page h2 {
  font-size: 19px;
  margin-top: 34px;
  padding-top: 4px;
}
.legal-page p, .legal-page li { font-size: 15px; color: var(--ink-soft); }
.legal-page ul { padding-left: 22px; }

/* ---------- About page ---------- */
.about-hero {
  background: var(--cream);
  padding: 56px 24px;
  text-align: center;
}
.about-hero h1 { font-size: clamp(26px, 3.6vw, 38px); }
.about-hero p { max-width: 640px; margin: 0 auto; font-size: 16.5px; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.value-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
}
.value-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.value-card p { font-size: 14.5px; margin: 0; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info h2 { font-size: 22px; }
.contact-method {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-method .icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--cream-dark);
  color: var(--copper);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.contact-method h4 { margin: 0 0 3px; font-size: 15px; color: var(--indigo); }
.contact-method p { margin: 0; font-size: 14px; }

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--indigo);
  padding: 12px 18px;
  z-index: 200;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}
.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
}

/* ---------- Popup modal ---------- */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 74, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 20px;
}
.popup-overlay.visible { display: flex; }
.popup-card {
  position: relative;
  width: min(100%, 540px);
  background: linear-gradient(180deg, #1e2a47 0%, #14213d 100%);
  border-radius: 28px;
  padding: 18px 22px 20px;
  box-shadow: 0 22px 46px rgba(30, 42, 71, 0.28), inset 0 1px 0 rgba(255,255,255,0.12);
  text-align: center;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
}
.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  font-size: 22px;
  line-height: 1;
  color: rgba(255,255,255,0.96);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.popup-close:hover {
  transform: scale(1.05);
  background: rgba(255,255,255,0.16);
}
.popup-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 350px);
  background: rgba(255,255,255,0.98);
  color: var(--indigo);
  border-radius: 16px;
  padding: 12px 18px;
  margin: 0 auto 14px;
  text-align: left;
  box-shadow: 0 3px 12px rgba(30, 42, 71, 0.08);
}
.popup-brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, #1e2a47 0%, #b8763e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}
.popup-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.popup-brand-text strong {
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--indigo);
}
.popup-brand-text span {
  font-size: 0.7rem;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
  margin-top: 4px;
}
.popup-ring {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.04);
  margin: 6px auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: rgba(255,255,255,0.98);
  box-shadow: inset 0 0 0 8px rgba(255,255,255,0.025);
}
.popup-card h3 {
  margin: 0 0 4px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--white);
  font-family: "Arial", "Segoe UI", sans-serif;
  font-weight: 800;
}
.popup-card p {
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: 1.02rem;
  font-weight: 500;
}
.popup-benefits-wrap {
  background: rgba(247, 243, 236, 0.98);
  border-radius: 16px;
  padding: 14px 18px;
  margin: 18px auto 18px;
  max-width: 330px;
  box-shadow: inset 0 0 0 1px rgba(30, 42, 71, 0.04);
}
.popup-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.popup-benefits li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--indigo);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
}
.popup-benefits li:last-child { margin-bottom: 0; }
.popup-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--copper);
  font-weight: 800;
}
.popup-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border-radius: 16px;
  background: linear-gradient(180deg, #b8763e 0%, #9d5e2c 100%);
  color: var(--white);
  padding: 16px 18px;
  font-weight: 800;
  font-size: 1.08rem;
  box-shadow: 0 10px 20px rgba(73, 45, 20, 0.2), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.popup-call-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(73, 45, 20, 0.25), inset 0 1px 0 rgba(255,255,255,0.2);
}
.popup-call-btn .phone-icon {
  font-size: 1.38rem;
  line-height: 1;
}
.popup-hours {
  margin-top: 16px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-style: italic;
}

@media (max-width: 520px) {
  .popup-card {
    width: min(100%, 460px);
    padding-left: 14px;
    padding-right: 14px;
  }
  .popup-brand {
    width: min(100%, 290px);
  }
  .popup-benefits-wrap {
    max-width: 280px;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; }
  .plan-card.featured { transform: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  nav.main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    display: none;
    gap: 4px;
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a { width: 100%; padding: 10px 0; border-bottom: none; }
  nav.main-nav span.nav-static { width: 100%; padding: 10px 0; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .value-grid { grid-template-columns: 1fr; }
  body { padding-bottom: 58px; }
  .mobile-call-bar { display: block; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-strip .container { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header-inner { padding: 12px 16px; gap: 10px; }
  .disclosure-bar { padding: 8px 12px; font-size: 12px; }
  .brand-logo { height: 30px; }
  .hero { padding: 48px 16px 40px; }
  .hero .lede { font-size: 15.5px; }
  .section { padding: 48px 16px; }
  .about-hero, .cta-band { padding: 40px 16px; }
  .plan-card { padding: 22px 18px 20px; }
  .plan-price { font-size: 28px; }
  .feature-card { padding: 24px 18px; }
  .form-card-body { padding: 20px; }
  .form-card-head { padding: 16px 20px; }
  .g-recaptcha { transform: scale(0.87); transform-origin: left top; }
  .trust-item { padding: 16px 12px; font-size: 13px; }
  .btn { padding: 12px 20px; font-size: 14px; }
  .legal-page h1 { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
