/* =====================================================================
   Perth Solar Panel Cleaners — Stylesheet
   Solar & Gutter Cleaning · East Perth, WA
   Self-contained, responsive, no external image dependencies.
   ===================================================================== */

/* -----------------------------  Design tokens  ---------------------- */
:root {
  /* Brand palette */
  --blue-900: #06335f;
  --blue-800: #073e72;
  --blue-700: #0a4d8c;
  --blue-600: #0f5fa8;
  --blue-500: #1576d1;
  --blue-400: #3f95e0;
  --sky-100:  #e8f3fc;
  --sky-50:   #f4f9fe;
  --sun:      #f7a823;
  --sun-dark: #e8920a;
  --sun-soft: #fff3dc;
  --green:    #2faa5a;
  --green-dark:#1f8a45;

  --ink:    #14202f;
  --body:   #33485c;
  --muted:  #62768a;
  --line:   #e3ebf2;
  --line-2: #d4dfea;

  --bg:      #ffffff;
  --bg-soft: #f4f8fc;
  --bg-deep: #06335f;

  /* Effects */
  --radius:    14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(10,40,70,.06), 0 2px 6px rgba(10,40,70,.06);
  --shadow:    0 6px 18px rgba(10,40,70,.10);
  --shadow-lg: 0 18px 48px rgba(8,45,85,.18);
  --ring:      0 0 0 4px rgba(21,118,209,.18);

  --container: 1160px;
  --gutter: clamp(18px, 4vw, 40px);

  --font-head: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --header-h: 76px;
}

/* -----------------------------  Reset  ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, picture { max-width: 100%; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-700); }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 2px; border-radius: 6px; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p  { color: var(--body); }
strong { color: var(--ink); }

/* -----------------------------  Layout  ----------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--soft { background: var(--bg-soft); }
.section--sky  { background: linear-gradient(180deg, var(--sky-50), #fff); }
.narrow { max-width: 760px; margin-inline: auto; }
.center { text-align: center; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 1000;
  background: var(--blue-700); color: #fff; padding: 10px 16px;
  border-radius: 8px; transition: top .2s ease;
}
.skip-link:focus { top: 12px; color: #fff; }

/* Section heading block */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-600); background: var(--sky-100);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--sun); }
.section-head { max-width: 680px; margin-bottom: clamp(34px, 5vw, 54px); }
.section-head.center { margin-inline: auto; }
.section-head p { font-size: 1.08rem; color: var(--muted); margin-top: 14px; }

/* -----------------------------  Buttons  ---------------------------- */
.btn {
  --btn-bg: var(--blue-700); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: var(--radius-sm); border: 2px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap; line-height: 1.1;
}
.btn:hover { transform: translateY(-2px); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn svg { width: 19px; height: 19px; }

.btn-primary { --btn-bg: var(--sun); --btn-fg: #3a2a05; box-shadow: 0 8px 20px rgba(247,168,35,.32); }
.btn-primary:hover { --btn-bg: var(--sun-dark); box-shadow: 0 12px 26px rgba(232,146,10,.40); }

.btn-blue { --btn-bg: var(--blue-700); --btn-fg: #fff; box-shadow: 0 8px 20px rgba(10,77,140,.28); }
.btn-blue:hover { --btn-bg: var(--blue-800); }

.btn-outline { background: transparent; color: var(--blue-700); border-color: var(--line-2); }
.btn-outline:hover { background: var(--sky-100); border-color: var(--blue-400); color: var(--blue-700); }

.btn-ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(4px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.22); color: #fff; }

.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 1.06rem; }

/* -----------------------------  Header  ----------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 6px 22px rgba(8,45,85,.10); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-logo {
  width: 48px; height: 48px; flex: none;
  display: grid; place-items: center;
}
.brand-logo img { width: 48px; height: 48px; object-fit: contain; display: block; }
.brand-logo svg { width: 30px; height: 30px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.06rem; color: var(--ink); letter-spacing: -.02em; }
.brand-tag { font-size: .72rem; color: var(--muted); font-weight: 500; letter-spacing: .01em; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > ul { display: flex; align-items: center; gap: 6px; }
.site-nav > ul a {
  display: block; padding: 9px 13px; border-radius: 8px;
  font-family: var(--font-head); font-weight: 500; font-size: .96rem; color: var(--body);
  transition: background .15s ease, color .15s ease;
}
.site-nav > ul a:hover { background: var(--sky-100); color: var(--blue-700); }
.site-nav > ul a.active { color: var(--blue-700); background: var(--sky-100); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.btn-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: .98rem;
}
.btn-phone svg { width: 18px; height: 18px; color: var(--green); }
.btn-phone:hover { color: var(--blue-700); }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line-2);
  border-radius: 10px; background: #fff; padding: 0; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 22px; height: 2.4px;
  background: var(--ink); border-radius: 2px; transform: translate(-50%,-50%); transition: .25s ease;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: translate(-50%,-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: translate(-50%,-50%) rotate(-45deg); }

/* -----------------------------  Hero  ------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(247,168,35,.18), transparent 60%),
    linear-gradient(160deg, var(--blue-800) 0%, var(--blue-700) 42%, var(--blue-600) 100%);
  color: #eaf3fb;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(680px 320px at 12% 110%, rgba(47,170,90,.22), transparent 60%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(54px, 8vw, 92px);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  color: #fff; padding: 8px 15px; border-radius: 999px; font-size: .86rem; font-weight: 500;
  margin-bottom: 22px; backdrop-filter: blur(6px);
}
.hero-badge .stars { color: var(--sun); letter-spacing: 2px; }
.hero h1 { color: #fff; max-width: 16ch; }
.hero h1 .hl { color: var(--sun); }
.hero-lead { font-size: clamp(1.05rem, 1.6vw, 1.24rem); color: #d3e4f3; margin-top: 20px; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px 30px; margin-top: 36px; }
.hero-trust li { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: #d3e4f3; font-weight: 500; }
.hero-trust svg { width: 22px; height: 22px; color: var(--sun); flex: none; }

/* Hero illustration (pure SVG/CSS rooftop scene) */
.hero-art { position: relative; }
.hero-art .scene { width: 100%; height: auto; filter: drop-shadow(0 24px 48px rgba(0,0,0,.32)); border-radius: var(--radius-lg); }
.hero-float {
  position: absolute; background: #fff; color: var(--ink);
  border-radius: 14px; box-shadow: var(--shadow-lg); padding: 13px 17px;
  display: flex; align-items: center; gap: 12px; font-family: var(--font-head);
}
.hero-float .ico { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.hero-float .ico svg { width: 22px; height: 22px; }
.hero-float b { display: block; font-size: 1.18rem; line-height: 1; }
.hero-float small { color: var(--muted); font-size: .76rem; font-weight: 500; }
.hero-float.f1 { top: 8%; left: -22px; }
.hero-float.f2 { bottom: 9%; right: -16px; }
.hero-float.f1 .ico { background: var(--sun-soft); color: var(--sun-dark); }
.hero-float.f2 .ico { background: #e7f7ee; color: var(--green-dark); }

/* Wave divider */
.wave-divider { display: block; width: 100%; height: auto; margin-top: -1px; color: var(--bg); }
.wave-divider.soft { color: var(--bg-soft); }

/* -----------------------------  Stats bar  -------------------------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; text-align: center; box-shadow: var(--shadow-sm);
}
.stat b { display: block; font-family: var(--font-head); font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--blue-700); line-height: 1; }
.stat span { display: block; margin-top: 8px; font-size: .92rem; color: var(--muted); font-weight: 500; }
.stat .sun { color: var(--sun-dark); }
.stat .green { color: var(--green-dark); }

/* -----------------------------  Cards / Services  ------------------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--sky-100); }
.svc-icon {
  width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center;
  margin-bottom: 20px; background: linear-gradient(150deg, var(--sky-100), #fff);
  border: 1px solid var(--line); color: var(--blue-600);
}
.svc-icon svg { width: 32px; height: 32px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }
.card .more {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 16px;
  font-family: var(--font-head); font-weight: 600; font-size: .94rem; color: var(--blue-600);
}
.card .more svg { width: 16px; height: 16px; transition: transform .2s ease; }
.card:hover .more svg { transform: translateX(4px); }

.tick-list { display: grid; gap: 13px; }
.tick-list li { display: flex; gap: 12px; align-items: flex-start; }
.tick-list .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: #e7f7ee; color: var(--green-dark); margin-top: 1px;
}
.tick-list .tick svg { width: 15px; height: 15px; }
.tick-list b { color: var(--ink); }
.tick-list span { color: var(--muted); font-size: .96rem; }

/* Split feature row */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,64px); align-items: center; }
.split.reverse .split-media { order: 2; }
.media-card {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.media-card svg { width: 100%; height: auto; display: block; }

/* Process steps */
.steps { counter-reset: step; display: grid; gap: 24px; grid-template-columns: repeat(4,1fr); }
.step { position: relative; padding-top: 8px; }
.step .num {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: #fff;
  background: linear-gradient(150deg, var(--blue-600), var(--blue-800));
  box-shadow: var(--shadow); margin-bottom: 18px;
}
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .95rem; }

/* -----------------------------  Reviews  ---------------------------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px;
}
.review .stars { color: var(--sun); letter-spacing: 2px; font-size: 1.05rem; }
.review p { color: var(--body); font-size: 1rem; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review .avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 1.05rem;
}
.review .who b { display: block; color: var(--ink); font-size: .98rem; }
.review .who small { color: var(--muted); }
.gverified { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--muted); }
.gverified svg { width: 15px; height: 15px; }

/* -----------------------------  Areas  ------------------------------ */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 12px; }
.area-chip {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-head); font-weight: 500; font-size: .95rem; color: var(--ink);
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.area-chip:hover { border-color: var(--blue-400); transform: translateY(-2px); box-shadow: var(--shadow-sm); color: var(--blue-700); }
.area-chip svg { width: 17px; height: 17px; color: var(--sun-dark); flex: none; }

/* -----------------------------  Quote form  ------------------------- */
.quote-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,56px); align-items: center;
}
.quote-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: clamp(26px, 4vw, 40px); border: 1px solid var(--line);
}
.quote-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.quote-card .sub { color: var(--muted); margin-bottom: 22px; font-size: .98rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-family: var(--font-head); font-weight: 500; font-size: .9rem; color: var(--ink); }
.field label .req { color: #d6453b; }
.field input, .field select, .field textarea {
  font: inherit; font-size: .98rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line-2); border-radius: var(--radius-sm);
  background: var(--sky-50); transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-500); background: #fff; box-shadow: var(--ring);
}
.field input::placeholder, .field textarea::placeholder { color: #9aabbb; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-note a { font-weight: 600; }
.honeypot { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; }
.btn[aria-busy="true"] { opacity: .8; pointer-events: none; }
.btn .spinner {
  width: 18px; height: 18px; border: 2.4px solid rgba(58,42,5,.35); border-top-color: #3a2a05;
  border-radius: 50%; animation: spin .7s linear infinite; display: none;
}
.btn[aria-busy="true"] .spinner { display: inline-block; }
.btn[aria-busy="true"] .btn-label { opacity: .7; }
@keyframes spin { to { transform: rotate(360deg); } }

.quote-aside h2 { color: #fff; }
.quote-aside { color: #d3e4f3; }
.quote-aside .tick-list .tick { background: rgba(255,255,255,.16); color: #fff; }
.quote-aside .tick-list b { color: #fff; }
.quote-aside .tick-list span { color: #bcd3e8; }
.callout-phone {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 26px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  padding: 16px 22px; border-radius: var(--radius); color: #fff;
}
.callout-phone .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--sun); color: #3a2a05; display: grid; place-items: center; flex: none; }
.callout-phone small { display: block; color: #bcd3e8; font-size: .8rem; }
.callout-phone b { font-family: var(--font-head); font-size: 1.4rem; line-height: 1.1; }
.callout-phone a { color: #fff; }

.section--cta {
  background:
    radial-gradient(800px 360px at 85% 0%, rgba(247,168,35,.2), transparent 60%),
    linear-gradient(150deg, var(--blue-800), var(--blue-600));
}

/* -----------------------------  FAQ  -------------------------------- */
.faq { display: grid; gap: 14px; max-width: 820px; margin-inline: auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink);
}
.faq-q .chev { width: 22px; height: 22px; flex: none; color: var(--blue-600); transition: transform .25s ease; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 24px 22px; color: var(--muted); }

/* -----------------------------  Footer  ----------------------------- */
.site-footer { background: var(--bg-deep); color: #b9d0e3; padding-top: clamp(50px,7vw,80px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.site-footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 18px; letter-spacing: .01em; }
.site-footer a { color: #b9d0e3; }
.site-footer a:hover { color: #fff; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tag { color: #88a7c2; }
.footer-about { margin-top: 16px; font-size: .95rem; color: #9fbdd6; max-width: 34ch; }
.footer-links { display: grid; gap: 11px; font-size: .96rem; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: .96rem; }
.footer-contact svg { width: 19px; height: 19px; color: var(--sun); flex: none; margin-top: 3px; }
.footer-contact b { color: #fff; font-family: var(--font-head); }
.social { display: flex; gap: 12px; margin-top: 18px; }
.social a {
  width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #fff; transition: background .2s ease, transform .2s ease;
}
.social a:hover { background: var(--sun); color: #3a2a05; transform: translateY(-2px); }
.social svg { width: 20px; height: 20px; }
.footer-bottom {
  margin-top: clamp(40px,6vw,60px); border-top: 1px solid rgba(255,255,255,.12);
  padding: 24px 0; display: flex; flex-wrap: wrap; gap: 12px 24px;
  align-items: center; justify-content: space-between; font-size: .88rem; color: #88a7c2;
}
.footer-bottom a { color: #88a7c2; }
.footer-bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* -----------------------------  Floating actions  ------------------- */
.fab-stack { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.fab {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; box-shadow: var(--shadow-lg); border: 0;
  transition: transform .2s ease, opacity .2s ease;
}
.fab:hover { transform: translateY(-3px); }
.fab svg { width: 26px; height: 26px; }
.fab-call { background: var(--green); }
.fab-call { animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(47,170,90,.5); } 70% { box-shadow: 0 0 0 16px rgba(47,170,90,0); } 100% { box-shadow: 0 0 0 0 rgba(47,170,90,0); } }
.fab-top { background: var(--blue-700); opacity: 0; pointer-events: none; }
.fab-top.show { opacity: 1; pointer-events: auto; }

/* -----------------------------  Toast  ------------------------------ */
.toast-stack {
  position: fixed; top: 20px; right: 20px; z-index: 1000;
  display: flex; flex-direction: column; gap: 12px; max-width: min(380px, calc(100vw - 32px));
}
.toast {
  display: flex; align-items: flex-start; gap: 13px;
  background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--green);
  border-radius: 12px; box-shadow: var(--shadow-lg); padding: 15px 16px;
  transform: translateX(120%); opacity: 0; transition: transform .35s cubic-bezier(.2,.9,.3,1.2), opacity .35s ease;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast .t-ico { width: 34px; height: 34px; border-radius: 9px; flex: none; display: grid; place-items: center; color: #fff; }
.toast .t-ico svg { width: 19px; height: 19px; }
.toast .t-body { flex: 1; }
.toast .t-body strong { display: block; font-family: var(--font-head); font-size: .98rem; color: var(--ink); }
.toast .t-body span { font-size: .9rem; color: var(--muted); }
.toast .t-close { background: none; border: 0; color: var(--muted); padding: 2px; line-height: 0; border-radius: 6px; }
.toast .t-close:hover { color: var(--ink); }
.toast .t-close svg { width: 17px; height: 17px; }
.toast--success { border-left-color: var(--green); } .toast--success .t-ico { background: var(--green); }
.toast--error   { border-left-color: #e0594d; }      .toast--error .t-ico { background: #e0594d; }
.toast--info    { border-left-color: var(--blue-500); } .toast--info .t-ico { background: var(--blue-500); }

/* -----------------------------  Page hero (interior)  --------------- */
.page-hero {
  background:
    radial-gradient(700px 300px at 88% -20%, rgba(247,168,35,.16), transparent 60%),
    linear-gradient(150deg, var(--blue-800), var(--blue-600));
  color: #fff; padding-block: clamp(48px, 7vw, 84px);
}
.page-hero .breadcrumb { font-size: .9rem; color: #bcd3e8; margin-bottom: 14px; }
.page-hero .breadcrumb a { color: #bcd3e8; } .page-hero .breadcrumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #d3e4f3; font-size: 1.12rem; margin-top: 16px; max-width: 60ch; }

/* Prose (privacy etc.) */
.prose { max-width: 820px; }
.prose h2 { font-size: 1.5rem; margin: 38px 0 12px; }
.prose h3 { margin: 26px 0 10px; }
.prose p, .prose li { color: var(--body); }
.prose ul { list-style: disc; padding-left: 22px; display: grid; gap: 8px; margin: 12px 0; }
.prose a { font-weight: 500; }

/* -----------------------------  Reveal animation  ------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* -----------------------------  Responsive  ------------------------- */
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { max-width: 520px; margin-inline: auto; order: -1; }
  .hero-float.f1 { left: 4%; } .hero-float.f2 { right: 4%; }
  .split, .quote-wrap { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  :root { --header-h: 66px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 14px var(--gutter) 24px; box-shadow: var(--shadow-lg);
    transform: translateY(-130%); transition: transform .3s ease; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav > ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .site-nav > ul a { padding: 13px 12px; font-size: 1.05rem; border-radius: 10px; }
  .nav-cta { flex-direction: column; align-items: stretch; gap: 12px; margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--line); }
  .btn-phone { justify-content: center; padding: 12px; border: 1.5px solid var(--line-2); border-radius: 10px; }
  .nav-cta .btn { width: 100%; }
  .hero-float { padding: 10px 13px; } .hero-float b { font-size: 1rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .grid-3, .grid-4, .reviews-grid, .steps, .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  body { font-size: 16px; }
  .brand-tag { display: none; }
}

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