/*
Theme Name: Meisterwerk24
Theme URI: https://schaedlingsbekaempfung-rhein-ruhr.de
Author: Esync Agency
Description: Custom theme for Meisterwerk24 Schlüsseldienst — Oberhausen & Ruhrgebiet
Version: 1.0.0
Text Domain: meisterwerk24
License: proprietary
*/
/* ============================================================
   Meisterwerk24 — Variante B "Clean & Round"
   Petrol-dominant, white rounded cards, soft shadows, red CTA
   ============================================================ */

:root {
  /* palette */
  --petrol:        #176A88;
  --petrol-dark:   #0F4F66;
  --petrol-light:  #2B89A7;
  --petrol-glass:  rgba(255, 255, 255, 0.12);
  --bg-cream:      #F4F6F8;
  --bg-sky:        #E8F1F5;
  --white:         #FFFFFF;
  --ink:           #14202E;
  --ink-2:         #2A3949;
  --slate:         #5B6B7C;
  --muted:         #8898A8;
  --hair:          #E2E8EE;
  --divider:       #EEF2F6;

  --red:           #DC2626;
  --red-dark:      #B91C1C;
  --green:         #16A34A;
  --green-tint:    #DCFCE7;
  --gold:          #F59E0B;

  /* density */
  --d: 1;
  --section-y: calc(96px * var(--d));
  --gap-lg: calc(40px * var(--d));
  --gap-md: calc(24px * var(--d));

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --shadow-sm:  0 1px 2px rgba(20, 32, 46, 0.06);
  --shadow:     0 4px 16px rgba(20, 32, 46, 0.08);
  --shadow-lg:  0 12px 40px rgba(20, 32, 46, 0.10);
  --shadow-teal:0 12px 40px rgba(15, 79, 102, 0.18);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
  background: var(--bg-cream);
  color: var(--ink);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body { padding-bottom: 64px; }
::selection { background: var(--petrol); color: white; }

h1, h2, h3, h4 {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}
p { margin: 0 0 1em; color: var(--slate); }
p.lead { font-size: 18px; color: var(--slate); line-height: 1.55; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout ---------- */

.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 28px; }
.section { padding: var(--section-y) 0; }

/* ---------- Topbar ---------- */

.topbar {
  background: var(--petrol-dark);
  color: white;
  font-size: 13px;
  padding: 10px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar .left { display: inline-flex; align-items: center; gap: 14px; }
.partner-pill {
  background: white; color: var(--petrol-dark);
  padding: 4px 10px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 11px; letter-spacing: 0.04em;
}
.stars-pill { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }
.stars-pill .stars { color: #FACC15; font-size: 14px; letter-spacing: 1px; }
.topbar a { color: white; opacity: 0.9; }

/* ---------- Header ---------- */

header.site {
  background: white;
  padding: 14px 0;
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--hair);
  transition: box-shadow .2s;
}
header.site.scrolled { box-shadow: 0 4px 16px rgba(20,32,46,0.06); }
header.site .wrap { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; }

.brand-clean {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-clean .logomark {
  width: 38px; height: 38px;
  background: var(--petrol); color: white;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.brand-clean i { color: var(--petrol); font-style: normal; }

nav.main { display: flex; gap: 26px; justify-content: center; }
nav.main a {
  font-size: 15px; color: var(--ink-2); font-weight: 500;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
nav.main a:hover { color: var(--petrol); }
nav.main a.active { color: var(--petrol); border-color: var(--petrol); }

.header-cta { display: inline-flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  font-size: 15px; font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: transform .15s, background .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--red {
  background: var(--red); color: white;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.28);
}
.btn--red:hover { background: var(--red-dark); }
.btn--white { background: white; color: var(--ink); border: 1px solid var(--hair); }
.btn--white:hover { background: var(--bg-sky); }
.btn--petrol { background: var(--petrol); color: white; }
.btn--petrol:hover { background: var(--petrol-dark); }
.btn--ghost-white { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.4); }
.btn--ghost-white:hover { background: white; color: var(--ink); }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--xl { padding: 18px 32px; font-size: 17px; }
.btn .ico { width: 18px; height: 18px; stroke-width: 1.8; }

@media (max-width: 1100px) {
  nav.main { display: none; }
  header.site .wrap { grid-template-columns: auto auto; }
}
@media (max-width: 720px) {
  .header-cta .btn--white { display: none; }
}

/* ---------- Hero (petrol band) ---------- */

.hero-clean {
  background: linear-gradient(180deg, var(--petrol) 0%, var(--petrol-dark) 100%);
  color: white;
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}
.hero-clean::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 80% 20%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(500px 300px at 10% 100%, rgba(255,255,255,0.04), transparent 60%);
  pointer-events: none;
}
.hero-clean .wrap { position: relative; z-index: 1; }
.hero-clean .grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--gap-lg);
  align-items: end;
}
.hero-badges { display: inline-flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  backdrop-filter: blur(8px);
}
.hero-badge .abus-mini {
  background: var(--red); color: white;
  font-weight: 800; font-size: 10px;
  padding: 3px 6px; border-radius: 4px; letter-spacing: 0.06em;
}
.hero-clean h1 {
  color: white;
  font-size: clamp(40px, 5.6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 22px;
  max-width: 14ch;
}
.hero-clean .sub {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  max-width: 52ch;
  line-height: 1.5;
  margin-bottom: 28px;
}

.hero-pill-row { display: inline-flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.info-pill {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.info-pill .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.25); }
  50%     { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0.05); }
}
.info-pill b { font-weight: 700; }
.info-pill .amber { color: #FBBF24; font-size: 12px; }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.checkrow {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding-top: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.92);
}
.checkrow .item { display: inline-flex; align-items: center; gap: 8px; }
.checkrow .item .ck {
  width: 18px; height: 18px;
  background: #4ADE80; color: var(--petrol-dark);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 11px;
}

.hero-figure-clean {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-sky);
  box-shadow: var(--shadow-teal);
}
.hero-figure-clean image-slot { width: 100%; height: 100%; }
.hero-figure-clean .review-overlay {
  position: absolute; bottom: 18px; right: 18px;
  background: white; color: var(--ink);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
  z-index: 2;
}
.hero-figure-clean .review-overlay .stars { color: #F59E0B; font-size: 14px; letter-spacing: 1px; }
.hero-figure-clean .review-overlay .num { font-weight: 800; font-size: 14px; line-height: 1; }
.hero-figure-clean .review-overlay .lbl { font-size: 11px; color: var(--muted); line-height: 1; margin-top: 4px; }

@media (max-width: 900px) {
  .hero-clean .grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-clean { padding-top: 36px; }
  .hero-figure-clean { aspect-ratio: 4/3; }
}

/* ---------- Stat band ---------- */

.stat-band {
  background: var(--petrol-dark);
  color: white;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-band .wrap {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  align-items: center;
}
.stat-band .col { display: flex; flex-direction: column; gap: 4px; padding: 0 8px; border-right: 1px solid rgba(255,255,255,0.12); }
.stat-band .col:last-child { border-right: none; }
.stat-band .v { font-size: clamp(28px, 3vw, 40px); font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
.stat-band .l { font-size: 13px; color: rgba(255,255,255,0.7); }

@media (max-width: 720px) {
  .stat-band .wrap { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .stat-band .col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 20px; }
  .stat-band .col:nth-child(3), .stat-band .col:nth-child(4) { border-bottom: none; padding-bottom: 0; }
}

/* ---------- Cards (white rounded on light bg) ---------- */

.cards { background: var(--bg-cream); }
.cards-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.card {
  background: white;
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card .iconbox {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg-sky); color: var(--petrol);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card .iconbox svg { width: 22px; height: 22px; }
.card .kicker-pill {
  display: inline-block;
  background: var(--bg-sky); color: var(--petrol);
  font-size: 12px; font-weight: 700;
  padding: 5px 10px; border-radius: var(--radius-pill);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 14px;
}
.card h3 { font-size: 26px; margin-bottom: 14px; line-height: 1.15; }
.card p { font-size: 15px; line-height: 1.55; margin-bottom: 22px; }
.card ul { list-style: none; padding: 0; margin: 0 0 28px; }
.card ul li {
  padding: 10px 0;
  border-top: 1px solid var(--divider);
  display: flex; gap: 12px; align-items: start;
  font-size: 14px; color: var(--ink-2);
}
.card ul li:last-child { border-bottom: 1px solid var(--divider); }
.card ul li .ck {
  flex-shrink: 0; width: 18px; height: 18px;
  background: var(--green); color: white;
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; margin-top: 1px;
}
.card .cta-btn { width: 100%; justify-content: center; }

@media (max-width: 720px) {
  .cards-grid { grid-template-columns: 1fr; }
  .card { padding: 28px; }
  .card h3 { font-size: 22px; }
}

/* ---------- Section heading ---------- */

.sec-head { text-align: center; max-width: 720px; margin: 0 auto var(--gap-lg); }
.sec-head .kicker-pill {
  display: inline-block;
  background: var(--bg-sky); color: var(--petrol);
  font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: var(--radius-pill);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 16px;
}
.sec-head h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; letter-spacing: -0.02em; }
.sec-head p { color: var(--slate); font-size: 17px; }

.sec-head-left { text-align: left; max-width: 720px; margin: 0 0 var(--gap-lg); }
.sec-head-left .kicker-pill {
  display: inline-block;
  background: var(--bg-sky); color: var(--petrol);
  font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: var(--radius-pill);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 16px;
}
.sec-head-left h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; }
.sec-head-left p { color: var(--slate); font-size: 17px; }

/* ---------- Services grid (clean) ---------- */

.services-clean { background: var(--bg-cream); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.svc-card {
  background: white;
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: all .2s;
}
.svc-card:hover { border-color: var(--petrol); box-shadow: var(--shadow); transform: translateY(-2px); }
.svc-card .ico-circle {
  width: 56px; height: 56px;
  background: var(--bg-sky); color: var(--petrol);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.svc-card .ico-circle svg { width: 26px; height: 26px; stroke-width: 1.8; }
.svc-card h3 { font-size: 22px; margin-bottom: 10px; }
.svc-card p { font-size: 14.5px; color: var(--slate); margin-bottom: 22px; flex-grow: 1; }
.svc-card .price-tag {
  display: inline-flex; align-items: baseline; gap: 4px;
  background: var(--green-tint); color: var(--green);
  padding: 6px 12px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 700;
  width: max-content;
}

@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Price box (clean) ---------- */

.price-band { background: var(--bg-sky); }
.price-clean-wrap {
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow);
  border: 1px solid var(--hair);
  max-width: 980px; margin: 0 auto;
}
.price-clean-table {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--hair);
}
.price-clean-table .cell {
  padding: 18px 22px;
  background: white;
  border-bottom: 1px solid var(--divider);
  display: flex; flex-direction: column; justify-content: center;
}
.price-clean-table .cell.h {
  background: var(--bg-sky); color: var(--petrol-dark);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 22px;
}
.price-clean-table .lbl { font-size: 15px; font-weight: 600; color: var(--ink); }
.price-clean-table .lbl small { display: block; font-size: 12px; font-weight: 400; color: var(--muted); margin-top: 2px; }
.price-clean-table .val { font-size: 22px; font-weight: 700; color: var(--ink); }
.price-clean-table .val.accent { color: var(--petrol); }
.price-clean-table .val.inc {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--green); font-weight: 600;
}
.price-clean-table .row { display: contents; }
.price-clean-table .row:last-child .cell { border-bottom: none; }

.price-guarantee {
  margin-top: 28px;
  background: var(--bg-sky);
  border-radius: var(--radius);
  padding: 22px;
  display: flex; align-items: center; gap: 18px;
}
.price-guarantee .ico {
  width: 48px; height: 48px;
  background: var(--petrol); color: white;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.price-guarantee .ico svg { width: 22px; height: 22px; }
.price-guarantee .txt strong { color: var(--ink); display: block; margin-bottom: 2px; font-size: 15px; }
.price-guarantee .txt span { font-size: 14px; color: var(--slate); }

@media (max-width: 720px) {
  .price-clean-wrap { padding: 28px 20px; }
  .price-clean-table { grid-template-columns: 1.5fr 1fr 0.8fr; }
  .price-clean-table .cell { padding: 14px 12px; }
  .price-clean-table .cell.h { padding: 10px 12px; font-size: 10px; }
  .price-clean-table .lbl { font-size: 13px; }
  .price-clean-table .lbl small { font-size: 11px; }
  .price-clean-table .val { font-size: 17px; }
  .price-guarantee { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ---------- Reviews (clean) ---------- */

.reviews-clean { background: var(--bg-cream); }
.review-clean-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.review-clean-card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--hair);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.review-clean-card .stars { color: var(--gold); font-size: 15px; letter-spacing: 1px; margin-bottom: 12px; }
.review-clean-card p { font-size: 15.5px; color: var(--ink-2); line-height: 1.55; margin-bottom: 24px; }
.review-clean-card .by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-clean-card .by .av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-sky); color: var(--petrol);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.review-clean-card .name { font-weight: 700; font-size: 14px; }
.review-clean-card .where { font-size: 12px; color: var(--muted); }
.review-clean-card .gbadge {
  margin-left: auto; font-size: 11px; color: var(--muted);
  display: inline-flex; align-items: center; gap: 4px;
}

.review-summary-clean {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--hair);
  padding: 28px 32px;
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}
.review-summary-clean .big-num { font-size: 56px; font-weight: 700; line-height: 1; color: var(--ink); }
.review-summary-clean .stars { color: var(--gold); font-size: 22px; letter-spacing: 2px; }
.review-summary-clean .meta { color: var(--slate); font-size: 14px; }
.review-summary-clean .g-badge {
  margin-left: auto;
  background: white; border: 1px solid var(--hair);
  border-radius: var(--radius-pill); padding: 10px 16px;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 8px;
}

@media (max-width: 900px) { .review-clean-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .review-clean-grid { grid-template-columns: 1fr; } }

/* ---------- Process steps ---------- */

.process-clean { background: white; }
.steps-clean { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-clean {
  background: var(--bg-cream); border-radius: var(--radius-lg);
  padding: 28px; position: relative;
  border: 1px solid var(--hair);
}
.step-clean .num {
  width: 36px; height: 36px;
  background: var(--petrol); color: white;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
  margin-bottom: 18px;
}
.step-clean h3 { font-size: 18px; margin-bottom: 10px; }
.step-clean p { font-size: 14px; margin: 0; line-height: 1.5; }
@media (max-width: 900px) { .steps-clean { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .steps-clean { grid-template-columns: 1fr; } }

/* ---------- Areas ---------- */

.areas-clean { background: var(--bg-cream); }
.areas-clean-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.area-pill-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.area-pill {
  background: white; border: 1px solid var(--hair); border-radius: var(--radius);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
  transition: all .15s;
  cursor: pointer;
}
.area-pill:hover { border-color: var(--petrol); box-shadow: var(--shadow-sm); }
.area-pill.primary { background: var(--petrol); color: white; border-color: var(--petrol); }
.area-pill.primary .km { color: rgba(255,255,255,0.7); }
.area-pill .ico {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-sky); color: var(--petrol);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.area-pill.primary .ico { background: rgba(255,255,255,0.18); color: white; }
.area-pill .nm { font-weight: 600; font-size: 15px; flex: 1; }
.area-pill .km { font-size: 12px; color: var(--muted); }

.area-mapcard {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--hair);
  padding: 24px;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.area-mapcard .mapbg {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(23,106,136,0.05) 0 1px, transparent 1px 36px),
    repeating-linear-gradient(90deg, rgba(23,106,136,0.05) 0 1px, transparent 1px 36px),
    radial-gradient(circle at 40% 50%, rgba(23,106,136,0.10), transparent 60%),
    var(--bg-sky);
}
.area-mapcard .pin {
  position: absolute; transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  z-index: 1;
}
.area-mapcard .pin .dotc {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--petrol); box-shadow: 0 0 0 4px rgba(23,106,136,0.2);
}
.area-mapcard .pin.primary .dotc {
  width: 16px; height: 16px;
  background: var(--red); box-shadow: 0 0 0 6px rgba(220,38,38,0.18);
}
.area-mapcard .pin .lbl {
  background: white; color: var(--ink);
  font-size: 10px; font-weight: 600;
  padding: 3px 8px; border-radius: var(--radius-pill);
  border: 1px solid var(--hair);
  white-space: nowrap;
}

@media (max-width: 820px) { .areas-clean-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .area-pill-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ (clean) ---------- */

.faq-clean { background: white; }
.faq-clean-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
details.faq-clean {
  background: var(--bg-cream);
  border-radius: var(--radius);
  border: 1px solid var(--hair);
  transition: all .15s;
}
details.faq-clean[open] { background: white; box-shadow: var(--shadow-sm); border-color: var(--petrol); }
details.faq-clean summary {
  cursor: pointer; list-style: none;
  padding: 22px 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 600; font-size: 17px;
  color: var(--ink);
}
details.faq-clean summary::-webkit-details-marker { display: none; }
details.faq-clean .plus {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--bg-sky); color: var(--petrol);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s, background .2s;
  font-size: 18px;
}
details.faq-clean[open] .plus { background: var(--petrol); color: white; transform: rotate(45deg); }
details.faq-clean .answer-body {
  padding: 0 26px 22px;
  color: var(--slate); font-size: 15px; line-height: 1.6;
}
@media (max-width: 600px) {
  details.faq-clean summary { font-size: 15px; padding: 18px 20px; }
  details.faq-clean .answer-body { padding: 0 20px 18px; }
}

/* ---------- Final CTA ---------- */

.cta-clean {
  background: linear-gradient(180deg, var(--petrol) 0%, var(--petrol-dark) 100%);
  color: white;
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-clean::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 70% 20%, rgba(255,255,255,0.08), transparent 60%);
}
.cta-clean .wrap { position: relative; z-index: 1; }
.cta-clean .box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px;
  align-items: center;
}
.cta-clean h2 { color: white; font-size: clamp(36px, 4.4vw, 56px); margin-bottom: 14px; line-height: 1.05; }
.cta-clean p { color: rgba(255,255,255,0.8); font-size: 17px; margin: 0; }
.cta-clean .phone-card {
  background: white; color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.cta-clean .phone-card .label {
  font-size: 12px; font-weight: 700; color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px;
}
.cta-clean .phone-card .num {
  font-size: clamp(28px, 3.4vw, 38px); font-weight: 700; line-height: 1;
  color: var(--ink); margin-bottom: 16px; display: block;
  letter-spacing: -0.01em;
}
.cta-clean .phone-card .btns { display: flex; gap: 8px; }
.cta-clean .phone-card .btns .btn { flex: 1; justify-content: center; }

@media (max-width: 820px) {
  .cta-clean .box { grid-template-columns: 1fr; padding: 32px 24px; }
}

/* ---------- Footer ---------- */

footer.site-clean { background: var(--ink); color: rgba(255,255,255,0.7); padding: 72px 0 24px; }
footer.site-clean .grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 48px;
}
footer.site-clean h4 {
  color: white; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 18px;
}
footer.site-clean ul { list-style: none; padding: 0; margin: 0; }
footer.site-clean ul li { margin-bottom: 10px; font-size: 14.5px; }
footer.site-clean ul a:hover { color: var(--petrol-light); }
footer.site-clean .brand-clean { color: white; }
footer.site-clean .brand-clean i { color: var(--petrol-light); }
footer.site-clean .legal {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; font-size: 13px; flex-wrap: wrap;
}
@media (max-width: 820px) { footer.site-clean .grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 500px) { footer.site-clean .grid { grid-template-columns: 1fr; } }

/* ---------- Mobile sticky bar ---------- */

.mobile-bar-clean {
  position: fixed; bottom: 0; left: 0; right: 0;
  display: none;
  grid-template-columns: 1fr 1fr 1fr; gap: 8px;
  padding: 10px;
  background: white;
  border-top: 1px solid var(--hair);
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(20,32,46,0.08);
}
.mobile-bar-clean a {
  padding: 12px 8px;
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600;
  background: var(--bg-cream); color: var(--ink-2);
}
.mobile-bar-clean a svg { width: 20px; height: 20px; stroke-width: 2; }
.mobile-bar-clean a.primary { background: var(--red); color: white; }
.mobile-bar-clean a.whatsapp { background: #25D366; color: white; }

@media (max-width: 720px) {
  .mobile-bar-clean { display: grid; }
  body { padding-bottom: 84px; }
}

/* ---------- Tweaks panel ---------- */

.tweaks-panel {
  position: fixed; right: 20px; bottom: 20px;
  background: white; color: var(--ink);
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--hair);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  min-width: 240px;
  display: none;
}
.tweaks-panel.open { display: block; }
.tweaks-panel .head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
}
.tweaks-panel .head button { background: none; border: none; cursor: pointer; font-size: 18px; line-height: 1; padding: 0; color: var(--ink); }
.tweaks-panel label { display: block; font-size: 12px; color: var(--slate); margin-bottom: 8px; font-weight: 600; }
.tweaks-panel .seg { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.tweaks-panel .seg button {
  background: var(--bg-cream); color: var(--ink-2);
  border: 1px solid var(--hair); padding: 10px;
  border-radius: 10px; cursor: pointer; font-family: inherit; font-size: 13px; font-weight: 600;
}
.tweaks-panel .seg button.active { background: var(--petrol); border-color: var(--petrol); color: white; }
@media (max-width: 720px) {
  .tweaks-panel { right: 12px; left: 12px; bottom: 98px; }
}

/* ---------- Variant switcher ---------- */

.variant-switch {
  position: fixed; left: 20px; bottom: 20px;
  background: white;
  border: 1px solid var(--hair);
  border-radius: var(--radius-pill);
  padding: 4px;
  display: inline-flex; gap: 2px;
  box-shadow: var(--shadow);
  z-index: 60;
  font-size: 12px; font-weight: 600;
}
.variant-switch a {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  color: var(--ink-2);
}
.variant-switch a.active { background: var(--petrol); color: white; }
@media (max-width: 720px) {
  .variant-switch { left: 12px; bottom: 96px; right: auto; }
  .variant-switch a { padding: 6px 10px; font-size: 11px; }
}

/* ---------- Page Hero (inner pages) ---------- */

.page-hero {
  background: linear-gradient(180deg, var(--petrol) 0%, var(--petrol-dark) 100%);
  color: white;
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 80% 20%, rgba(255,255,255,0.06), transparent 60%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero-inner { max-width: 780px; }
.page-hero .breadcrumb-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 500;
  margin-bottom: 16px;
  transition: color .15s;
}
.page-hero .breadcrumb-link:hover { color: white; }
.page-hero h1 {
  color: white;
  font-size: clamp(32px, 4.8vw, 52px);
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-hero .sub {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  max-width: 60ch;
  line-height: 1.5;
  margin-bottom: 28px;
}
.page-hero .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Page Content ---------- */

.page-content { background: white; padding: var(--section-y) 0; }
.content-body { max-width: 820px; margin: 0 auto; }
.content-body h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  margin: 48px 0 18px;
  color: var(--ink);
}
.content-body h2:first-child { margin-top: 0; }
.content-body h3 {
  font-size: 22px;
  margin: 36px 0 14px;
  color: var(--ink);
}
.content-body p { font-size: 16px; line-height: 1.65; color: var(--slate); margin-bottom: 18px; }
.content-body ul, .content-body ol { padding-left: 24px; margin-bottom: 24px; }
.content-body li { font-size: 15px; color: var(--slate); margin-bottom: 8px; line-height: 1.55; }
.content-body strong { color: var(--ink); }
.content-body a { color: var(--petrol); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.content-body a:hover { color: var(--petrol-dark); }
.content-body blockquote {
  border-left: 4px solid var(--petrol);
  padding: 18px 24px;
  margin: 28px 0;
  background: var(--bg-sky);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 16px;
  color: var(--ink-2);
}
.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--hair);
}
.content-body th {
  background: var(--bg-sky); color: var(--petrol-dark);
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 14px 18px; text-align: left;
}
.content-body td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--divider);
  font-size: 15px;
  color: var(--ink-2);
}
.content-body tr:last-child td { border-bottom: none; }

.content-body .price-highlight {
  background: var(--bg-sky);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 28px 0;
  text-align: center;
}
.content-body .price-highlight .amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--petrol);
  line-height: 1;
}
.content-body .price-highlight .detail {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}

.content-body .trust-box {
  background: var(--green-tint);
  border-radius: var(--radius);
  padding: 24px;
  margin: 28px 0;
}
.content-body .trust-box h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--green);
}
.content-body .trust-box ul { list-style: none; padding: 0; margin: 0; }
.content-body .trust-box li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
}
.content-body .trust-box li::before {
  content: "✓";
  width: 20px; height: 20px;
  background: var(--green); color: white;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  flex-shrink: 0;
}

.content-body .warning-box {
  background: #FEF3C7;
  border: 1px solid #F59E0B;
  border-radius: var(--radius);
  padding: 24px;
  margin: 28px 0;
}
.content-body .warning-box h4 {
  font-size: 18px;
  color: #92400E;
  margin-bottom: 8px;
}
.content-body .warning-box p { color: #78350F; }

.content-body .inline-faq {
  background: var(--bg-cream);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 36px 0;
}
.content-body .inline-faq h3 {
  margin-top: 0;
  font-size: 24px;
}

@media (max-width: 720px) {
  .page-hero { padding: 32px 0 40px; }
  .page-hero h1 { font-size: clamp(28px, 8vw, 38px); }
  .page-hero .sub { font-size: 16px; }
  .content-body { padding: 0 4px; }
}

/* ---------- Mobile general ---------- */

@media (max-width: 720px) {
  :root { --section-y: 56px; --gap-lg: 28px; }
  .wrap, .wrap-narrow { padding-left: 20px; padding-right: 20px; }
  .topbar { font-size: 11px; padding: 8px 0; }
  .topbar .stars-pill .meta { display: none; }
  .partner-pill { font-size: 10px; padding: 3px 8px; }
  .header-cta .btn--white { display: none; }
  .header-cta .btn--red { padding: 10px 16px; font-size: 13px; }
  .brand-clean { font-size: 19px; }
  .brand-clean .logomark { width: 32px; height: 32px; }
  .hero-clean h1 { font-size: clamp(34px, 9vw, 48px); }
  .hero-clean .sub { font-size: 16px; }
  .hero-pill-row .info-pill { font-size: 12px; padding: 10px 14px; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
  .checkrow { gap: 14px 18px; font-size: 13px; }
  .stat-band .v { font-size: 26px; }
  .stat-band .l { font-size: 11px; }
  .sec-head h2, .sec-head-left h2 { font-size: clamp(28px, 7vw, 36px); }
  .review-summary-clean { padding: 20px; }
  .review-summary-clean .big-num { font-size: 42px; }
  .review-summary-clean .g-badge { margin-left: 0; }
  .cta-clean { padding: 56px 0; }
  .cta-clean .box { padding: 28px 20px; }
  .price-clean-wrap { padding: 24px 16px; }
}