:root {
  --red: #d71920;
  --red-dark: #b01218;
  --dark: #0c0e12;
  --muted: #5f6673;
  --light: #f4f6f8;
  --white: #fff;
  --line: #e2e5ea;
  --water: #1a4d6e;
  --water-light: #e8f2f8;
  --shadow: 0 24px 80px rgba(12, 14, 18, 0.12);
  --radius: 20px;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --container: min(1140px, calc(100% - 40px));
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

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

/* ── Topbar ── */
.topbar {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.topbar a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

.topbar a:hover { border-color: #fff; }

.topbar-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 999px;
  margin-right: 8px;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px max(20px, 4vw);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}

.brand-logo {
  height: 58px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  font-size: 13px;
  color: var(--muted);
  border-left: 1px solid var(--line);
  padding-left: 14px;
  font-family: var(--font-body);
  font-weight: 700;
}

.site-header nav {
  display: flex;
  gap: 28px;
  font-weight: 700;
  font-size: 14px;
}

.site-header nav a {
  text-decoration: none;
  color: #333;
  position: relative;
  padding: 4px 0;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}

.site-header nav a:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle span {
  position: relative;
  margin: 0 auto;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(12,14,18,0.96);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-nav .btn { margin-top: 12px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 15px 26px;
  font-weight: 800;
  font-family: var(--font-body);
  font-size: 15px;
  box-shadow: 0 12px 28px rgba(215,25,32,0.28);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(215,25,32,0.35);
  background: var(--red-dark);
}

.btn-small { padding: 11px 20px; font-size: 14px; }

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--dark);
  color: #fff;
  box-shadow: none;
}

.btn-full { width: 100%; font-size: 17px; padding: 17px 26px; }

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: auto;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, #fff 0%, #fff 52%, #f8f9fb 52%);
  z-index: 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 6vw, 72px) max(20px, 4vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}

.eyebrow {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  margin: 0 0 14px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--dark);
}

.hero h1 em {
  font-style: normal;
  color: var(--water);
}

.lead {
  font-size: clamp(16px, 1.6vw, 18px);
  color: #4a515c;
  max-width: 520px;
  margin: 0 0 24px;
  line-height: 1.65;
  font-weight: 400;
}

.offer-card {
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: 22px 26px;
  max-width: 420px;
  margin: 0 0 28px;
  background: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}

.offer-card span {
  display: block;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: 0.08em;
  font-size: 12px;
}

.offer-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.05;
  margin: 6px 0;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.offer-card small { color: var(--muted); font-weight: 600; font-size: 13px; display: block; margin-bottom: 16px; }

.offer-breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.offer-breakdown div {
  text-align: center;
  background: var(--light);
  border-radius: 12px;
  padding: 10px 8px;
}

.offer-breakdown span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.offer-breakdown strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-top: 2px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-list li {
  background: var(--water-light);
  border: 1px solid rgba(26,77,110,0.12);
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 700;
  font-size: 13px;
  color: var(--water);
}

.hero-media {
  position: relative;
  z-index: 1;
  min-height: 420px;
  overflow: hidden;
  background: #eef1f4;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 30%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.25) 22%, transparent 45%);
  pointer-events: none;
}

/* ── Stats strip ── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--dark);
  color: #fff;
}

.stat {
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 96px;
}

.stat:last-child { border-right: none; }

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 6px;
  word-break: break-word;
}

.stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.68);
  font-weight: 500;
  line-height: 1.4;
}

/* ── Sections ── */
section { padding: clamp(56px, 8vw, 80px) max(20px, 4vw); }

.section-title { max-width: 680px; margin-bottom: 36px; }

.section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 800;
  color: var(--dark);
}

/* ── Cards ── */
.cards { display: grid; gap: 20px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 8px 32px rgba(12,14,18,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(12,14,18,0.1);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 16px 0 8px;
  font-weight: 700;
  line-height: 1.3;
}

.card p { color: var(--muted); margin: 0; font-size: 15px; line-height: 1.6; }

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: 18px;
}

.problem-solution { background: var(--light); }

.problem-solution .section-inner {
  max-width: var(--container);
  margin: 0 auto;
}

/* ── Quality ── */
.quality { background: #fff; }

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.quality-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  font-weight: 800;
}

.quality-copy p { color: var(--muted); font-size: 16px; margin: 0 0 20px; }
.quality-copy a { color: var(--red); font-weight: 700; }

.quality-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.quality-list li {
  padding-left: 28px;
  position: relative;
  font-weight: 700;
  font-size: 15px;
  color: #2a2f36;
}

.quality-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

.quality-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pricing-note {
  background: rgba(215,25,32,0.12);
  border: 1px solid rgba(215,25,32,0.25);
  border-radius: 14px;
  padding: 16px 20px;
  margin: 20px 0;
}

.pricing-note strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
  margin-bottom: 4px;
}

.pricing-note span { color: #cbd0d9; font-size: 14px; font-weight: 600; }

/* ── How it works ── */
.how-it-works { background: var(--white); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.step-num {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 20px;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--line);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 8px;
  font-weight: 800;
}

.step p { color: var(--muted); font-size: 15px; margin: 0; }

/* ── Quote section ── */
.quote-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,25,32,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.quote-copy { position: relative; z-index: 1; }

.quote-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.quote-copy p { color: #b0b8c4; font-size: 17px; }

.contact-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  gap: 6px;
  margin-top: 28px;
}

.contact-box a {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.contact-box span { color: #8891a0; font-size: 15px; }

.form-alert {
  background: #fff3f3;
  border: 1px solid #f5c6c6;
  color: #8b1a1a;
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
}

.quote-form {
  background: #fff;
  color: var(--dark);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

input, select, textarea {
  width: 100%;
  border: 1.5px solid #d5d8de;
  border-radius: 12px;
  padding: 13px 15px;
  font: inherit;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215,25,32,0.12);
}

input.invalid, textarea.invalid, select.invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215,25,32,0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #454b55;
  font-weight: 600;
}

.consent input { width: auto; margin-top: 3px; accent-color: var(--red); }

.honeypot { position: absolute; left: -9999px; opacity: 0; }

.form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
}

.form-note a { color: var(--red); }

/* ── Services ── */
.services { background: var(--light); }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }

.chips span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.chips span:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--light);
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-grid figure:hover img { transform: scale(1.04); }

.gallery-grid figcaption {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
}

/* ── Areas ── */
.areas { text-align: center; background: var(--water-light); }

.areas .section-title { margin-left: auto; margin-right: auto; }

.area-list {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 700;
  color: var(--water);
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
}

/* ── Reviews ── */
.reviews { background: var(--light); }

.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 32px rgba(12,14,18,0.05);
}

.stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review p {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.55;
  color: #2a2f36;
}

.review cite {
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

/* ── FAQ ── */
.faq details {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0;
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq details[open] { box-shadow: 0 8px 24px rgba(12,14,18,0.06); }

.faq summary {
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  padding: 18px 22px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--red);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq details[open] summary::after { content: "−"; }

.faq p {
  color: var(--muted);
  margin: 0;
  padding: 0 22px 18px;
  font-size: 15px;
}

/* ── Final CTA ── */
.final-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--dark) 0%, #1a2332 100%);
  color: #fff;
  padding: 72px 6vw;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.final-cta p { color: #b0b8c4; font-size: 17px; margin: 0 0 28px; }

.final-cta .btn-outline:hover { background: #fff; color: var(--dark); }

/* ── Footer ── */
footer {
  background: #07080a;
  color: #fff;
  padding: 40px 6vw;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}

footer strong {
  font-family: var(--font-display);
  font-size: 18px;
}

footer p { color: #8891a0; font-size: 14px; margin: 6px 0 0; }
footer a { color: #fff; text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ── Sticky CTA ── */
.sticky-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  padding: 15px 24px;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulse-ring 2.5s ease infinite;
}

.sticky-call:hover { transform: scale(1.05); }

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 12px 32px rgba(0,0,0,0.28); }
  50% { box-shadow: 0 12px 32px rgba(215,25,32,0.45); }
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .site-header nav, .site-header .btn-small { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .mobile-nav { display: flex; }
  .brand-logo { height: 48px; max-width: 230px; }

  .hero { grid-template-columns: 1fr; }
  .hero::before { background: #fff; }
  .hero-copy {
    padding: 28px 20px 36px;
    order: 2;
    max-width: none;
  }
  .hero-media {
    order: 1;
    min-height: 0;
    max-height: 300px;
  }
  .hero-media img { min-height: 260px; max-height: 300px; object-position: center 35%; }
  .hero-media::after {
    background: linear-gradient(180deg, transparent 55%, rgba(255,255,255,0.95) 100%);
  }
  .hero h1 { font-size: clamp(28px, 7vw, 36px); }

  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat { padding: 18px 14px; min-height: 88px; }
  .stat strong { font-size: clamp(18px, 4.5vw, 24px); }

  .cards.three, .steps, .quote-section, .gallery-grid, .quality-grid { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .step { padding: 0 0 28px; }
  .gallery-grid img { height: 220px; }
  .form-row { grid-template-columns: 1fr; }

  footer { flex-direction: column; }
  .site-header { padding: 12px 16px; }
  .offer-card { max-width: none; }
  .offer-breakdown strong { font-size: 17px; }
}

@media (max-width: 600px) {
  .topbar { font-size: 12px; line-height: 1.5; padding: 10px 14px; }
  .topbar-badge { margin-right: 6px; font-size: 10px; padding: 2px 8px; }

  .hero-media { max-height: 240px; }
  .hero-media img { min-height: 220px; max-height: 240px; }
  .hero h1 { font-size: 26px; line-height: 1.2; }
  .lead { font-size: 15px; margin-bottom: 20px; }
  .eyebrow { font-size: 10px; margin-bottom: 10px; }

  .offer-card { padding: 18px; margin-bottom: 20px; }
  .offer-card strong { font-size: 30px; }
  .offer-breakdown { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .offer-breakdown strong { font-size: 15px; }
  .offer-breakdown span { font-size: 10px; }

  .trust-list li { font-size: 12px; padding: 8px 12px; }
  .section-title h2 { font-size: 22px; }
  .problem-solution { padding-top: 44px; padding-bottom: 44px; }
  .card { padding: 22px; }
}

@media (max-width: 520px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .brand-logo { height: 42px; max-width: 200px; }
  .quote-form { padding: 20px; }
  .contact-box a { font-size: 20px; }
  .sticky-call { left: 16px; right: 16px; text-align: center; font-size: 14px; padding: 14px 20px; }
  .gallery-grid img { height: 190px; }
  .stat strong { font-size: 17px; }
  .stat span { font-size: 11px; }
}
