/* ============================================================
   Painter Recovery System — bright, bold, old-school
   Navy #112D5C · Orange #FF6B35 · Red #D62828 · Yellow #FFC233
   Space Grotesk · larger type
   ============================================================ */

:root {
  --navy: #112D5C;
  --navy-deep: #0B1F42;
  --orange: #FF6B35;
  --orange-dark: #E8531F;
  --red: #D62828;
  --yellow: #FFC233;
  --white: #FFFFFF;
  --gray-50: #F5F7FA;
  --gray-100: #EAEEF5;
  --ink: #1B2A41;
  --blue-soft: #E9EFFA;
  --green: #1E9E5A;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(11, 31, 66, .10);
  --max: 1160px;
  --font: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html {
  font-size: 18px;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.125rem;           /* 20px body — bigger than usual */
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 4.4vw, 2.9rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1em; }
a { color: var(--navy); text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.center { text-align: center; }
.hl { color: var(--orange); }

section { scroll-margin-top: 76px; }

.section { padding: 4.5rem 0; }
.section-cta { margin: 2.2rem 0 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .85rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.1;
  border: 2px solid transparent;
  cursor: pointer;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn-lg { padding: 1rem 1.7rem; font-size: 1.15rem; }
.btn-block { width: 100%; text-align: center; }
.btn-orange {
  background: var(--orange);
  color: var(--navy);
  box-shadow: 0 6px 0 var(--orange-dark);
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 8px 0 var(--orange-dark); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 0 var(--navy-deep);
}
.btn-navy:hover { transform: translateY(-2px); }
.btn-outline { background: var(--white); color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--blue-soft); }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--navy);
  white-space: nowrap;
}
.brand-mark { display: inline-flex; }
.nav-links {
  display: flex;
  gap: 1.4rem;
  margin-left: auto;
  font-weight: 600;
  white-space: nowrap;
}
.nav-links a { color: var(--ink); }
.nav-links a:hover { color: var(--red); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-cta .btn { white-space: nowrap; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 2px solid var(--navy);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: var(--navy);
  transition: transform .18s ease, opacity .18s ease;
}
.site-nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: .5rem 1.25rem 1.25rem;
}
.site-nav.nav-open .mobile-menu { display: block; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a {
  padding: .9rem .25rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu nav a:hover { color: var(--red); }
.mobile-menu .btn { margin-top: 1rem; min-height: 48px; }

/* ---------- Flag badge ---------- */
.flag-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 999px;
  padding: .35rem .95rem .35rem .45rem;
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
  box-shadow: var(--shadow);
  margin: 0 0 1.6rem;
}
.flag-badge svg { border-radius: 3px; }

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  padding: 2.6rem 0 0;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.hero-copy h1 { margin-top: 0; }
.lead { font-size: 1.28rem; color: var(--ink); max-width: 34em; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.6rem 0 1.3rem;
}
.trust-line {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  padding: 0;
  margin: 0;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.02rem;
}
.hero-calendar { position: sticky; top: 96px; }
.cal-card {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.5rem;
  text-align: center;
}
.cal-card h2 { font-size: 1.4rem; margin-bottom: .4em; }
.cal-preview {
  background: var(--gray-50);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.1rem 1rem 1rem;
  margin-bottom: 1rem;
}
.cal-preview-head { font-weight: 700; color: var(--navy); margin: 0 0 .6rem; font-size: 1rem; }
.cal-days, .cal-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .35rem;
  margin-bottom: .45rem;
}
.cal-days span {
  font-size: .8rem;
  font-weight: 700;
  color: #7a879e;
  text-align: center;
}
.cal-week span {
  text-align: center;
  padding: .45rem 0;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
}
.cal-week .sel {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 0 var(--orange-dark);
}
.cal-week .off { opacity: .35; }
.cal-preview-live { font-size: .9rem; color: #5a6780; margin: .65rem 0 0; }
.hero-photo {
  margin: 2.6rem 0 0;
  background: linear-gradient(135deg, var(--gray-100), var(--blue-soft));
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 21 / 9;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Section tiles around image ---------- */
.stretch-figure {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-100);
  margin: 2.4rem 0 0;
  aspect-ratio: 21 / 9;
}
.stretch-figure img { width: 100%; height: 100%; object-fit: cover; }

.leak-figure {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-100);
  margin: 2rem 0 0;
  aspect-ratio: 21 / 9;
}
.leak-figure img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Cards / 3 leaks ---------- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.4rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-top: 6px solid transparent;
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.card h3 { margin: .7em 0 .2em; }
.leak { border-top-color: var(--orange); }
.tag {
  display: inline-block;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  border-radius: 999px;
  padding: .28rem .8rem;
}
.tag-red { background: var(--red); }
.tag-yellow { background: var(--yellow); color: var(--navy); }
.tag-orange { background: var(--orange); color: var(--navy); }
.stat {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--red);
  margin: .2rem 0 .4rem;
}

/* ---------- Navy sections ---------- */
.navy-section {
  background: var(--navy);
  color: #dfe8f7;
}
.navy-section h2 { color: var(--white); }
.navy-section h3 { color: var(--white); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.4rem;
}
.step {
  background: var(--navy-deep);
  border: 1px solid #24406f;
  border-radius: var(--radius);
  padding: 1.5rem;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: .8rem;
}
.step p { color: #c3d1e8; margin-bottom: 0; }

/* ---------- Workflow mock ---------- */
.workflow {
  margin: 2.6rem auto 0;
  max-width: 780px;
  background: var(--navy-deep);
  border: 1px solid #24406f;
  border-radius: var(--radius);
  overflow: hidden;
}
.workflow-head {
  background: var(--orange);
  color: var(--navy);
  font-weight: 700;
  padding: .7rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.wf-feed {
  list-style: none;
  margin: 0;
  padding: 1.1rem 1.4rem;
  display: grid;
  gap: .95rem;
}
.wf-feed li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: .65rem;
  align-items: start;
  color: #c3d1e8;
}
.wf-entry { display: grid; gap: .1rem; }
.wf-entry strong { color: var(--white); font-weight: 600; }
.wf-dot {
  width: .8rem;
  height: .8rem;
  border-radius: 50%;
  background: var(--gray-100);
  justify-self: center;
  margin-top: .35rem;
}
.dot-orange { background: var(--orange); }
.dot-green { background: var(--green); }
.dot-blue { background: #5c8bf0; }
.dot-yellow { background: var(--yellow); }

/* ---------- How it works ---------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2.2rem;
}
.how-box {
  background: var(--gray-50);
  border-top: 6px solid var(--yellow);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  font-weight: 600;
  color: var(--navy);
}
.box-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: .4rem;
}
.how-box p { margin: 0; }

/* ---------- ROI calc ---------- */
.calc { background: var(--gray-50); }
.calc-card {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.4rem 2rem 2rem;
  max-width: 800px;
}
.calc-main { margin-top: 2rem; }
.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.2rem;
}
.calc-value { font-size: 2.2rem; color: var(--orange); }
input[type="range"] {
  width: 100%;
  margin: 1.1rem 0 .6rem;
  accent-color: var(--orange);
  height: 8px;
  cursor: pointer;
}
.calc-presets { display: flex; gap: .7rem; margin-bottom: 1.2rem; }
.chip {
  border: 2px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  padding: .4rem .95rem;
  border-radius: 999px;
  cursor: pointer;
}
.chip[aria-pressed="true"] { background: var(--navy); color: var(--white); }
.chip:hover { background: var(--blue-soft); }
.calc-result {
  font-size: 1.6rem;
  color: var(--navy);
  margin: 0 0 .3rem;
}
.calc-result strong { color: var(--red); }
.calc-note { color: #5a6780; margin: 0; }

/* ---------- Get vs don't ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}
.panel {
  border-radius: var(--radius);
  padding: 1.8rem 1.8rem 1.4rem;
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 8px solid var(--gray-100);
}
.panel h3 { margin-bottom: .8em; }
.panel ul { margin: 0; padding: 0; list-style: none; display: grid; gap: .7rem; }
.panel li { padding-left: 1.9rem; position: relative; font-weight: 600; }
.panel li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
}
.panel-yes { border-top-color: var(--green); }
.panel-yes li::before { content: "✔"; color: var(--green); }
.panel-no { border-top-color: var(--red); }
.panel-no li::before { content: "✘"; color: var(--red); }

/* ---------- Comparison table ---------- */
.table-section { background: var(--white); }
.table-wrap {
  overflow-x: auto;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  margin-top: 2.2rem;
  box-shadow: var(--shadow);
}
.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.compare th, .compare td {
  text-align: left;
  padding: 1rem 1.1rem;
  vertical-align: top;
  border-bottom: 1px solid var(--gray-100);
}
.compare thead th {
  background: var(--navy);
  color: var(--white);
  font-size: 1.05rem;
}
.compare thead .col-us { background: var(--orange); color: var(--navy); }
.compare tbody th { font-weight: 700; color: var(--navy); background: var(--gray-50); }
.compare .col-us {
  position: sticky;
  left: 0;
  z-index: 1;
}
.compare tbody .col-us {
  background: #FFE6DA;
  font-weight: 700;
  color: var(--navy-deep);
}
.compare tbody tr:last-child th,
.compare tbody tr:last-child td { border-bottom: 0; }

/* ---------- Results ---------- */
.results { background: var(--gray-50); }
.result-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: center;
  margin-top: 2.2rem;
}
.result-copy { padding: 1rem 0; }
.result-copy .stat { font-size: 2.2rem; }
.result-shot {
  background: var(--navy-deep);
  border: 1px solid #24406f;
  border-radius: var(--radius);
  overflow: hidden;
}
.shot-head {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  padding: .7rem 1rem;
  font-size: .98rem;
}
.shot-list {
  list-style: none;
  margin: 0;
  padding: 1rem;
  display: grid;
  gap: .7rem;
  color: #c3d1e8;
}
.shot-list li { border-bottom: 1px solid #24406f; padding-bottom: .7rem; }
.shot-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.shot-list strong { color: var(--yellow); }

/* ---------- Pricing ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 2.2rem;
  align-items: stretch;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.plan {
  position: relative;
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow);
}
.plan-featured {
  border-color: var(--navy);
  border-top: 8px solid var(--orange);
}
.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--navy);
  font-weight: 700;
  font-size: .85rem;
  padding: .3rem .95rem;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-price { font-size: 1.15rem; color: var(--ink); }
.plan-price strong { font-size: 1.9rem; color: var(--navy); }
.plan-note { margin: 1.4rem 0 0; }
.plan-note.strong { font-weight: 700; color: var(--red); }

/* ---------- Guarantee ---------- */
.guarantee-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 3rem 2.4rem;
  text-align: center;
  border: 6px solid var(--yellow);
  box-shadow: var(--shadow);
}
.guarantee-box h2 { color: var(--white); font-size: 2.2rem; }
.guarantee-box p { font-size: 1.3rem; max-width: 42em; margin: 0 auto; }
.guarantee-box strong { color: var(--yellow); }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 2rem auto 0;
  display: grid;
  gap: .8rem;
}
.faq-list details {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 0 1.2rem;
  box-shadow: var(--shadow);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.15rem;
  padding: 1.1rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-list summary::after { content: "+"; font-size: 1.5rem; color: var(--orange); }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { color: var(--ink); padding-bottom: 1.1rem; margin: 0; }

/* ---------- About ---------- */
.about { background: var(--gray-50); }
.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 1.6rem;
  align-items: start;
}
.about-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--gray-100), var(--blue-soft));
  border: 2px solid var(--navy);
  aspect-ratio: 6 / 9;
}
.about-photo::before {
  content: "Founder photo goes here — real, not stock";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
}
.about-photo img { position: relative; width: 100%; height: 100%; object-fit: cover; }
.about-copy { font-size: 1.16rem; }
.about-sign { font-weight: 700; color: var(--navy); }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--navy); color: #dfe8f7; }
.final-copy, .lead-form { min-width: 0; }
.final-cta h2, .final-cta h3 { color: var(--white); }
.final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.6rem;
  align-items: center;
}
.final-copy p { color: #c3d1e8; font-size: 1.2rem; }
.final-trust { font-weight: 700; color: var(--yellow); }
.lead-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.8rem 1.6rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: .35rem;
}
.lead-form h3 { color: var(--navy); margin-top: 0; }
.lead-form label {
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  margin-top: .5rem;
}
.lead-form input {
  font-family: var(--font);
  font-size: 1.05rem;
  padding: .7rem .85rem;
  border: 2px solid var(--gray-100);
  border-radius: 10px;
  color: var(--ink);
  background: var(--gray-50);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.lead-form input:focus {
  outline: 3px solid rgba(255, 107, 53, .5);
  border-color: var(--orange);
  background: var(--white);
}
.lead-form .btn { margin-top: 1.2rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: #aebcd8;
  padding: 2.6rem 0;
  font-size: 1rem;
}
.footer-inner { text-align: center; }
.footer-brand { font-weight: 700; color: var(--white); font-size: 1.2rem; }
.footer-privacy { max-width: 480px; margin: 1rem auto 0; text-align: left; }
.footer-privacy summary {
  cursor: pointer;
  font-weight: 600;
  color: #c3d1e8;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.footer-privacy summary::-webkit-details-marker { display: none; }
.footer-privacy summary::after { content: "+"; color: var(--yellow); font-weight: 700; }
.footer-privacy[open] summary::after { content: "–"; }
.footer-privacy p { font-size: .95rem; margin: .5rem 0 0; }
.footer-copy { margin: 1.4rem 0 0; font-size: .9rem; }

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 66, .75);
}
.modal-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius);
  max-width: 720px;
  width: 100%;
  padding: 1.6rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
  border-top: 6px solid var(--orange);
}
.modal-card h3 { margin-top: 0; }
.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  background: var(--gray-50);
  border: 0;
  border-radius: 8px;
  width: 2.2rem;
  height: 2.2rem;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--navy);
  font-weight: 700;
}
.video-placeholder {
  aspect-ratio: 16 / 9;
  background: var(--navy-deep);
  color: #c3d1e8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin: 1rem 0 1.4rem;
  border: 2px dashed #34507f;
  font-weight: 600;
}

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--navy);
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
  border-top: 3px solid var(--yellow);
  display: none;
}

/* ---------- Focus & a11y ---------- */
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

/* ---------- City directory ---------- */
.city-table-wrap { margin-top: 1.8rem; overflow-x: auto; }
.city-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(17, 45, 92, .08);
}
.city-table th,
.city-table td { text-align: left; padding: .9rem 1.1rem; border-bottom: 1px solid var(--gray-50); }
.city-table th { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--navy); }
.city-table td:last-child { text-align: right; }
.city-table tr:last-child td { border-bottom: 0; }
.city-name { font-weight: 600; }
.city-badge {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  border-radius: 999px;
  padding: .25rem .7rem;
  white-space: nowrap;
}
.city-badge-open { background: #E4F6E9; color: #1E7A45; }
.city-badge-taken { background: #FCE8E6; color: var(--red); }
.city-claim { font-weight: 700; color: var(--orange); }
.city-claim:hover { color: var(--red); }
.city-row-note { color: #8A93A6; font-size: .85rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-calendar { position: static; max-width: 560px; }
  .cards-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .result-card { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 420px; }
  .final-grid { grid-template-columns: 1fr; }
  .lead-form { padding: 1.25rem; }
}

@media (max-width: 640px) {
  html { font-size: 17px; }
  .section { padding: 3.2rem 0; }
  .plans { grid-template-columns: 1fr; }
  .city-table th,
  .city-table td { padding: .7rem .8rem; }
  .how-grid { grid-template-columns: 1fr; }
  .nav-inner { gap: .7rem; }
  .brand { font-size: 1rem; }
  .nav-cta .btn:not(.nav-toggle) { display: none; }
  .nav-toggle { width: 44px; height: 44px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; font-size: .95rem; padding: .85rem 1.1rem; white-space: nowrap; }
  .section-cta { display: flex; justify-content: center; }
  .section-cta .btn { width: 100%; max-width: 420px; }
  .plan .btn { width: 100%; }
  .chip { min-height: 44px; }
  .hero-photo, .stretch-figure, .leak-figure { aspect-ratio: 3 / 2; }
  .mobile-cta { display: block; }
  body { padding-bottom: 76px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
