/* =====================================================================
   Sponge on Wheels — design system
   Palette lifted from the logo: bubblegum pink, bubble blue, sunshine
   yellow, ink outlines, white foam. Everything rounded, soft and bouncy.
   ===================================================================== */
:root {
  --pink: #ff4fa3;
  --pink-600: #e8338f;
  --pink-700: #c41f74;
  --pink-300: #ff9ccd;
  --pink-200: #ffc6e0;
  --pink-100: #ffe3f1;
  --pink-50: #fff4f9;
  --blue: #47b8ff;
  --blue-600: #1e9bea;
  --blue-200: #bde7ff;
  --blue-100: #e2f4ff;
  --blue-50: #f1f9ff;
  --yellow: #ffd23f;
  --yellow-600: #f2b705;
  --yellow-100: #fff6cc;
  --green: #4cb86e;
  --green-700: #2f8f4e;
  --green-100: #e3f6e9;
  --ink: #2b1f33;
  --ink-2: #4f4358;
  --muted: #7a6f84;
  --line: #f4d8e8;
  --white: #ffffff;
  --radius: 28px;
  --radius-sm: 16px;
  --shadow: 0 14px 34px -14px rgba(232, 51, 143, .28);
  --shadow-lg: 0 30px 60px -24px rgba(232, 51, 143, .35);
  --font-display: 'Fredoka', 'Nunito', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--pink-700); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; margin: 0 0 .5em; color: var(--ink); letter-spacing: .1px; }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
.lead { font-size: 1.15rem; color: var(--ink-2); }
.muted { color: var(--muted); }
.container { width: min(1180px, 100% - 40px); margin-inline: auto; }
.narrow { width: min(820px, 100% - 40px); margin-inline: auto; }
section { position: relative; padding: 76px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 999px;
  background: var(--pink-100); color: var(--pink-700);
  font-weight: 800; font-size: .85rem; letter-spacing: .4px; text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow.blue { background: var(--blue-100); color: var(--blue-600); }
.eyebrow.green { background: var(--green-100); color: var(--green-700); }
.eyebrow.yellow { background: var(--yellow-100); color: #8a6400; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Bubbly display text with the logo's ink outline */
.bubbly {
  font-family: var(--font-display); font-weight: 700;
  color: var(--pink);
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
  text-shadow: 3px 4px 0 rgba(43, 31, 51, .18);
}
.bubbly .yellow { color: var(--yellow); }

/* ------------------------------------------------------------------ */
/* Buttons                                                             */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  color: var(--white); background: var(--pink);
  box-shadow: 0 10px 24px -10px rgba(232, 51, 143, .6);
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s, background .18s;
  text-decoration: none !important; white-space: nowrap;
}
.btn:hover { transform: translateY(-3px) scale(1.03); background: var(--pink-600); box-shadow: 0 16px 30px -10px rgba(232, 51, 143, .65); }
.btn:active { transform: translateY(0) scale(.98); }
.btn.yellow { background: var(--yellow); color: var(--ink); box-shadow: 0 10px 24px -10px rgba(242, 183, 5, .6); }
.btn.yellow:hover { background: #ffdc5e; }
.btn.blue { background: var(--blue); box-shadow: 0 10px 24px -10px rgba(30, 155, 234, .6); }
.btn.blue:hover { background: var(--blue-600); }
.btn.green { background: var(--green); box-shadow: 0 10px 24px -10px rgba(47, 143, 78, .6); }
.btn.green:hover { background: var(--green-700); }
.btn.ghost { background: var(--white); color: var(--pink-700); border: 2px solid var(--pink-200); box-shadow: none; }
.btn.ghost:hover { background: var(--pink-50); border-color: var(--pink); }
.btn.white { background: var(--white); color: var(--pink-700); box-shadow: 0 10px 24px -12px rgba(0,0,0,.25); }
.btn.white:hover { background: var(--pink-50); }
.btn.outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.55); box-shadow: none; }
.btn.outline-white:hover { background: rgba(255,255,255,.12); }
.btn.sm { padding: 10px 18px; font-size: .95rem; }
.btn.block { width: 100%; }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ------------------------------------------------------------------ */
/* Header                                                              */
/* ------------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none !important; }
.brand img { height: 58px; width: auto; }
.brand .wordmark { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; line-height: 1; color: var(--pink-700); }
.brand .wordmark small { display: block; font-family: var(--font-body); font-weight: 800; font-size: .68rem; letter-spacing: 1.6px; color: var(--blue-600); text-transform: uppercase; margin-top: 4px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: 10px 14px; border-radius: 999px; font-weight: 800; color: var(--ink-2); text-decoration: none !important; transition: background .15s, color .15s; }
.nav a:hover, .nav a[aria-current="page"] { background: var(--pink-100); color: var(--pink-700); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 14px; border: 2px solid var(--pink-200); background: var(--white); cursor: pointer; align-items: center; justify-content: center; flex-direction: column; }
.nav-toggle span { display: block; width: 22px; height: 3px; border-radius: 3px; background: var(--pink-700); margin: 2.5px 0; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (max-width: 960px) {
  .nav { position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; padding: 12px 20px 20px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px -20px rgba(0,0,0,.25); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .2s, opacity .2s; }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 14px 16px; font-size: 1.05rem; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn { display: none; }
  .brand .wordmark { display: none; }
}
@media (max-width: 480px) { .brand img { height: 50px; } .eyebrow { font-size: .74rem; padding: 5px 12px; } }

/* ------------------------------------------------------------------ */
/* Hero                                                                */
/* ------------------------------------------------------------------ */
.hero {
  padding: 40px 0 0; overflow: hidden;
  background: linear-gradient(160deg, var(--pink-50) 0%, #fff 45%, var(--blue-50) 100%);
}
.hero .grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; min-height: 560px; }
.hero h1 { margin-bottom: 18px; }
.hero h1 .bubbly { display: inline-block; font-size: 1.05em; }
.hero .lead { font-size: 1.22rem; max-width: 560px; }
.hero .badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: var(--white); border: 2px solid var(--pink-100); font-weight: 800; font-size: .9rem; color: var(--ink-2); box-shadow: 0 6px 16px -10px rgba(232,51,143,.4); }
.badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); }
.badge .dot.blue { background: var(--blue); }
.badge .dot.pink { background: var(--pink); }
.badge .dot.yellow { background: var(--yellow); }
.hero .stage-wrap { position: relative; }
@media (max-width: 960px) {
  .hero .grid { grid-template-columns: 1fr; min-height: 0; gap: 10px; }
  .hero { padding-top: 24px; }
  .hero .stage-wrap { order: -1; }
}

/* Drifting clouds behind the hero */
.clouds { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cloud { position: absolute; width: 180px; height: 60px; background: var(--white); border-radius: 60px; opacity: .85; filter: drop-shadow(0 10px 20px rgba(71,184,255,.12)); animation: drift linear infinite; }
.cloud::before, .cloud::after { content: ''; position: absolute; background: var(--white); border-radius: 50%; }
.cloud::before { width: 80px; height: 80px; left: 28px; top: -38px; }
.cloud::after { width: 60px; height: 60px; right: 30px; top: -24px; }
@keyframes drift { from { transform: translateX(-260px); } to { transform: translateX(calc(100vw + 260px)); } }

/* Sparkles */
.sparkle { position: absolute; width: 22px; height: 22px; pointer-events: none; animation: twinkle 2.6s ease-in-out infinite; }
.sparkle svg { width: 100%; height: 100%; }
@keyframes twinkle { 0%, 100% { transform: scale(.4) rotate(0deg); opacity: .25; } 50% { transform: scale(1) rotate(20deg); opacity: 1; } }

/* Foam divider under a section */
.foam { position: relative; height: 70px; margin-top: 30px; }
.foam svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ------------------------------------------------------------------ */
/* Spongie stage (animated character)                                  */
/* ------------------------------------------------------------------ */
.spongie-stage {
  position: relative; width: 100%; aspect-ratio: 640 / 480; max-width: 640px; margin-inline: auto;
  cursor: pointer; user-select: none; -webkit-user-select: none; overflow: hidden;
}
.spongie-stage svg.spongie { width: 100%; height: 100%; overflow: hidden; }
.spongie-stage .rider { will-change: transform; }
.speech {
  position: absolute; left: 58%; top: 4%; transform: translate(-50%, 10px) scale(.6); transform-origin: 50% 100%;
  background: var(--white); border: 3px solid var(--ink); border-radius: 22px; padding: 10px 18px;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1rem, 2.6vw, 1.5rem); color: var(--pink-700);
  box-shadow: 4px 5px 0 var(--ink); white-space: nowrap; opacity: 0; pointer-events: none;
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), opacity .2s, background .2s, color .2s;
}
.speech::after { content: ''; position: absolute; left: 50%; bottom: -14px; width: 20px; height: 20px; background: var(--white); border-right: 3px solid var(--ink); border-bottom: 3px solid var(--ink); transform: translateX(-50%) rotate(45deg); transition: background .2s; }
.speech.show { opacity: 1; transform: translate(-50%, 0) scale(1); pointer-events: auto; }
.speech.cta { background: var(--yellow); color: var(--ink); animation: cta-pulse 1s ease-in-out infinite; cursor: pointer; }
.speech.cta::after { background: var(--yellow); }
@keyframes cta-pulse { 0%, 100% { transform: translate(-50%, 0) scale(1); } 50% { transform: translate(-50%, -4px) scale(1.06); } }
.stage-hint { text-align: center; font-size: .85rem; color: var(--muted); margin-top: 6px; }
.trail-bubble { position: absolute; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #fff 0 18%, rgba(189,231,255,.9) 20%, rgba(71,184,255,.55) 100%); border: 1.5px solid rgba(30,155,234,.5); pointer-events: none; animation: trail-rise 1.6s ease-out forwards; }
@keyframes trail-rise { 0% { transform: translateY(0) scale(.5); opacity: 0; } 20% { opacity: 1; } 100% { transform: translateY(-90px) scale(1.1); opacity: 0; } }

/* ------------------------------------------------------------------ */
/* Bubble canvas (site-wide)                                           */
/* ------------------------------------------------------------------ */
#bubble-canvas { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
main, .site-footer, .trust { position: relative; z-index: 1; }

/* ------------------------------------------------------------------ */
/* Trust strip                                                         */
/* ------------------------------------------------------------------ */
.trust { padding: 22px 0; background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 34px; }
.trust li { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: var(--ink-2); }
.trust li .ico { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--pink-100); font-size: 1.1rem; }

/* ------------------------------------------------------------------ */
/* Cards & grids                                                       */
/* ------------------------------------------------------------------ */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
@media (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 960px) { .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
.card {
  background: var(--white); border: 2px solid var(--pink-100); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-6px); border-color: var(--pink-200); box-shadow: var(--shadow-lg); }
.card .icon { width: 62px; height: 62px; border-radius: 20px; display: grid; place-items: center; font-size: 1.9rem; background: var(--pink-100); margin-bottom: 16px; }
.card .icon.blue { background: var(--blue-100); }
.card .icon.yellow { background: var(--yellow-100); }
.card .icon.green { background: var(--green-100); }
.card h3 { margin-bottom: 6px; }
.card ul { margin: 12px 0 0; padding: 0; list-style: none; }
.card ul li { padding-left: 26px; position: relative; color: var(--ink-2); margin: 6px 0; }
.card ul li::before { content: ''; position: absolute; left: 0; top: 7px; width: 14px; height: 14px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #fff 0 25%, var(--blue-200) 28%, var(--blue) 100%); }
.card .from { margin-top: 14px; font-weight: 800; color: var(--pink-700); }
.tint-pink { background: var(--pink-50); }
.tint-blue { background: var(--blue-50); }
.tint-green { background: linear-gradient(180deg, #f3fbf5 0%, var(--green-100) 100%); }

/* ------------------------------------------------------------------ */
/* Eco section                                                         */
/* ------------------------------------------------------------------ */
.eco-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 40px; }
@media (max-width: 900px) { .eco-hero { grid-template-columns: 1fr; } }
.eco-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 20px; }
@media (max-width: 560px) { .eco-stats { grid-template-columns: 1fr; } }
.eco-stat { background: var(--white); border-radius: 20px; padding: 16px 18px; border: 2px solid var(--green-100); }
.eco-stat .n { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--green-700); line-height: 1; }
.eco-stat .l { font-size: .9rem; color: var(--ink-2); font-weight: 700; margin-top: 4px; }
.leaf-list { list-style: none; margin: 0; padding: 0; }
.leaf-list li { display: flex; gap: 12px; margin: 12px 0; }
.leaf-list li::before { content: '🌿'; flex: none; }

/* ------------------------------------------------------------------ */
/* Steps                                                               */
/* ------------------------------------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; background: var(--white); border-radius: var(--radius); padding: 34px 26px 26px; border: 2px solid var(--blue-100); box-shadow: var(--shadow); }
.step .num { position: absolute; top: -22px; left: 24px; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--yellow); color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; border: 3px solid var(--white); box-shadow: 0 8px 18px -8px rgba(0,0,0,.3); }

/* ------------------------------------------------------------------ */
/* Areas                                                               */
/* ------------------------------------------------------------------ */
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .areas-grid { grid-template-columns: 1fr; } }
.radius-map { position: relative; width: min(440px, 100%); aspect-ratio: 1; margin-inline: auto; }
.radius-map svg { width: 100%; height: 100%; }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.chip { padding: 8px 14px; border-radius: 999px; background: var(--white); border: 2px solid var(--blue-100); font-weight: 800; font-size: .92rem; color: var(--ink-2); }
.chip.pc { background: var(--blue-100); color: var(--blue-600); border-color: var(--blue-200); }
.postcode-check { display: flex; gap: 10px; margin-top: 14px; max-width: 460px; }
.postcode-check input { flex: 1; min-width: 0; }
.pc-result { margin-top: 12px; padding: 12px 16px; border-radius: 14px; font-weight: 800; display: none; }
.pc-result.yes { display: block; background: var(--green-100); color: var(--green-700); }
.pc-result.maybe { display: block; background: var(--yellow-100); color: #8a6400; }
.pc-result.no { display: block; background: var(--pink-100); color: var(--pink-700); }

/* ------------------------------------------------------------------ */
/* Forms                                                               */
/* ------------------------------------------------------------------ */
label { font-weight: 800; color: var(--ink); display: block; margin-bottom: 6px; }
input[type=text], input[type=email], input[type=tel], input[type=number], select, textarea {
  width: 100%; font: inherit; color: var(--ink); background: var(--white);
  border: 2px solid var(--pink-200); border-radius: 16px; padding: 12px 16px; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 4px var(--pink-100); }
select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c41f74' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 42px; }
textarea { min-height: 130px; resize: vertical; }
.field { margin-bottom: 18px; }
.field .hint { font-size: .85rem; color: var(--muted); margin-top: 4px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.check { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 14px; border: 2px solid var(--pink-100); background: var(--white); cursor: pointer; font-weight: 700; color: var(--ink-2); transition: border-color .15s, background .15s; user-select: none; margin: 0; }
.check:hover { border-color: var(--pink-300); }
.check input { accent-color: var(--pink); width: 18px; height: 18px; margin: 0; flex: none; }
.check.on { border-color: var(--pink); background: var(--pink-50); color: var(--pink-700); }
.check-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; }
.opt-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 10px; }
.opt-card { text-align: left; padding: 12px 14px; border-radius: 16px; border: 2px solid var(--pink-100); background: var(--white); cursor: pointer; transition: border-color .15s, background .15s, transform .15s; }
.opt-card:hover { border-color: var(--pink-300); transform: translateY(-2px); }
.opt-card.on { border-color: var(--pink); background: var(--pink-50); box-shadow: 0 0 0 4px var(--pink-100); }
.opt-card .t { font-weight: 800; color: var(--ink); display: block; }
.opt-card .h { font-size: .82rem; color: var(--muted); }
.fieldset { border: 2px solid var(--blue-100); border-radius: 20px; padding: 18px; margin-bottom: 18px; background: rgba(255,255,255,.7); }
.fieldset > label { margin-bottom: 12px; }

/* ------------------------------------------------------------------ */
/* Estimator                                                           */
/* ------------------------------------------------------------------ */
.estimator { background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 60%, var(--pink-50) 100%); }
.service-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-bottom: 26px; }
@media (max-width: 760px) { .service-tabs { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .service-tabs { grid-template-columns: 1fr; } }
.service-tab { position: relative; text-align: left; padding: 14px 16px; border-radius: 18px; border: 2px solid var(--pink-100); background: var(--white); cursor: pointer; transition: border-color .15s, transform .15s, box-shadow .15s; min-height: 72px; }
.service-tab:hover { border-color: var(--pink-300); transform: translateY(-2px); }
.service-tab[aria-selected="true"] { border-color: var(--pink); background: var(--pink-50); box-shadow: 0 0 0 4px var(--pink-100); }
.service-tab .t { display: block; font-weight: 800; color: var(--ink); padding-right: 26px; }
.service-tab .h { display: block; font-size: .82rem; color: var(--muted); margin-top: 2px; }
.service-tab .tick { position: absolute; top: 12px; right: 12px; width: 22px; height: 22px; border-radius: 50%; background: var(--pink); color: #fff; display: none; place-items: center; font-size: .8rem; font-weight: 900; }
.service-tab[aria-selected="true"] .tick { display: grid; }
.estimator-panel { background: var(--white); border: 2px solid var(--pink-100); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 30px; }
@media (max-width: 640px) { .estimator-panel { padding: 20px 16px; } }
.estimator-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 30px; align-items: start; }
@media (max-width: 960px) { .estimator-layout { grid-template-columns: 1fr; } }
.quote-card { position: sticky; top: calc(var(--header-h) + 16px); border-radius: 26px; padding: 26px; color: #fff; background: linear-gradient(145deg, var(--pink) 0%, #b23cff 55%, var(--blue-600) 130%); box-shadow: var(--shadow-lg); }
.quote-card .svc { font-size: .8rem; text-transform: uppercase; letter-spacing: 1.2px; opacity: .85; font-weight: 800; }
.quote-card .price { font-family: var(--font-display); font-weight: 700; font-size: 2.9rem; line-height: 1.1; margin-top: 4px; }
.quote-card .price span { opacity: .75; }
.quote-card .meta { font-size: .92rem; opacity: .92; margin-top: 4px; }
.quote-card .note { font-size: .8rem; opacity: .8; margin-top: 8px; }
.quote-card .actions { display: grid; gap: 10px; margin-top: 18px; }
.quote-card .promo { display: inline-flex; gap: 6px; align-items: center; margin-top: 10px; padding: 5px 12px; border-radius: 999px; background: var(--yellow); color: var(--ink); font-weight: 900; font-size: .78rem; text-transform: uppercase; letter-spacing: .6px; }
.quote-card .was { font-size: .9rem; opacity: .8; margin-top: 8px; }
.quote-card .was s { opacity: .9; }
.quote-card .manual { margin-top: 12px; padding: 12px 14px; border-radius: 14px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.35); font-size: .92rem; }
.quote-card .manual ul { margin: 6px 0 0; padding-left: 18px; }
.quote-card details { margin-top: 16px; border-top: 1px solid rgba(255,255,255,.25); padding-top: 12px; font-size: .92rem; }
.quote-card summary { cursor: pointer; font-weight: 800; }
.quote-card .bk { list-style: none; padding: 0; margin: 8px 0 0; }
.quote-card .bk li { display: flex; justify-content: space-between; gap: 12px; padding: 3px 0; }
.quote-card .bk li span:last-child { white-space: nowrap; }
.quote-card h4 { margin: 12px 0 4px; font-size: .95rem; color: #fff; }
.quote-card ul.plain { margin: 0; padding-left: 18px; opacity: .92; }
.info-panel { max-width: 720px; margin-inline: auto; }
.info-panel .svc { font-size: .8rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--pink-700); font-weight: 800; }
.info-panel ul { padding-left: 20px; color: var(--ink-2); }
.info-panel .safety { margin: 16px 0; padding: 12px 16px; border-radius: 14px; background: var(--pink-100); color: var(--pink-700); font-weight: 700; }
.example-note { margin-top: 16px; text-align: center; font-size: .92rem; color: var(--blue-600); background: var(--blue-100); border-radius: 12px; padding: 8px 14px; }
.small-note { margin-top: 10px; text-align: center; font-size: .82rem; color: var(--muted); }

/* ------------------------------------------------------------------ */
/* Pricing cards                                                       */
/* ------------------------------------------------------------------ */
.price-card { position: relative; display: flex; flex-direction: column; }
.price-card .tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--yellow); color: var(--ink); font-weight: 900; font-size: .78rem; text-transform: uppercase; letter-spacing: .8px; padding: 6px 14px; border-radius: 999px; box-shadow: 0 6px 14px -6px rgba(0,0,0,.3); white-space: nowrap; }
.price-card.popular { border-color: var(--pink); box-shadow: var(--shadow-lg); }
.price-card .amount { font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; color: var(--pink-700); margin: 10px 0 0; line-height: 1; }
.price-card .amount small { font-family: var(--font-body); font-size: .95rem; font-weight: 800; color: var(--muted); }
.price-card .rate { font-size: .9rem; color: var(--muted); margin-bottom: 8px; }
.price-card .btn { margin-top: auto; white-space: normal; text-align: center; }
.card .btn { white-space: normal; }

/* ------------------------------------------------------------------ */
/* Family / promise                                                    */
/* ------------------------------------------------------------------ */
.family { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .family { grid-template-columns: 1fr; } }
.family .logo-blob { position: relative; padding: 30px; }
.family .logo-blob::before { content: ''; position: absolute; inset: 10% 5%; background: radial-gradient(circle at 50% 50%, var(--pink-100), transparent 70%); border-radius: 50%; }
.family .logo-blob img { position: relative; width: min(440px, 100%); height: auto; margin-inline: auto; animation: float 5s ease-in-out infinite; backface-visibility: hidden; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.promise { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.promise li { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 2px solid var(--pink-100); border-radius: 18px; padding: 14px 16px; }
.promise li .ico { flex: none; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--yellow-100); font-size: 1.2rem; }
.promise li strong { display: block; }

/* ------------------------------------------------------------------ */
/* Contact                                                             */
/* ------------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 30px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-line { display: flex; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px dashed var(--pink-200); }
.contact-line:last-child { border-bottom: 0; }
.contact-line .ico { flex: none; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--pink-100); font-size: 1.3rem; }
.contact-line a { font-weight: 800; }
.form-note { font-size: .85rem; color: var(--muted); }

/* ------------------------------------------------------------------ */
/* CTA band                                                            */
/* ------------------------------------------------------------------ */
.cta-band { background: linear-gradient(135deg, var(--pink) 0%, #c04dff 60%, var(--blue) 140%); color: #fff; text-align: center; border-radius: var(--radius); padding: 54px 30px; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; }
.cta-band p { opacity: .92; max-width: 620px; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 22px; }

/* ------------------------------------------------------------------ */
/* Footer                                                              */
/* ------------------------------------------------------------------ */
.site-footer { background: var(--ink); color: #e9dff0; padding: 60px 0 30px; margin-top: 30px; }
.site-footer a { color: #fff; }
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
@media (max-width: 900px) { .site-footer .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .site-footer .cols { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--pink-300); font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 12px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 8px 0; }
.site-footer .brand img { height: 74px; }
.site-footer .brand .wordmark { color: #fff; display: block; }
.site-footer .brand .wordmark small { color: var(--blue-200); }
.site-footer .legal { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: .9rem; color: #bfb2c9; }

/* Floating WhatsApp bubble */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 60; display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px 12px 14px; border-radius: 999px; background: #25d366; color: #fff; font-weight: 800; box-shadow: 0 14px 30px -10px rgba(37,211,102,.7); text-decoration: none !important; animation: wa-bob 3s ease-in-out infinite; }
.wa-float svg { width: 26px; height: 26px; }
.wa-float:hover { background: #1fb457; }
@keyframes wa-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@media (max-width: 600px) { .wa-float span { display: none; } .wa-float { padding: 14px; } }

/* Page hero (inner pages) */
.page-hero { padding: 56px 0 40px; background: linear-gradient(160deg, var(--pink-50) 0%, #fff 55%, var(--blue-50) 100%); text-align: center; }
.page-hero p { max-width: 680px; margin-inline: auto; }

/* Prose (legal pages) */
.prose h2 { font-size: 1.5rem; margin-top: 2em; }
.prose h3 { font-size: 1.15rem; margin-top: 1.5em; }
.prose ul { padding-left: 22px; }
.prose li { margin: 6px 0; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
