/* === Extracted style block === */

/* ═══════════════════════════════════════════════════
   DESIGN DIRECTION: Bold local trade. Dark greens,
   confident typography, no fluff. Like a Clearabee
   with a Brighton soul — raw trust, real people.
═══════════════════════════════════════════════════ */

:root {
  --g-darkest:  #0a1f12;
  --g-dark:     #143520;
  --g-mid:      #1a5c30;
  --g-bright:   #2d9c50;
  --g-light:    #7dd67d;
  --g-pale:     #e8f5ec;
  --g-cream:    #f7faf8;
  --amber:      #f59e0b;
  --red:        #dc2626;
  --white:      #ffffff;
  --off-white:  #f4f7f5;
  --grey-dark:  #1f2937;
  --grey-mid:   #4b5563;
  --grey-light: #9ca3af;
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
  --shadow-md:  0 8px 30px rgba(0,0,0,.12);
  --radius:     6px;
  --font-head:  'Barlow Condensed', sans-serif;
  --font-body:  'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--grey-dark);
  background: var(--white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
  min-width: 320px; /* nothing below iPhone SE width */
}

/* ── UTILITY ── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── PAGES (SPA routing) ── */
.page { display: none; }
.page.active { display: block; }

/* ── TOPBAR ── */
.topbar {
  background: #d6ede0;
  border-bottom: 1px solid #a8d4b8;
  padding: 5px 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: #4b5563;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
}
/* EA link */
.topbar-ea {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #143520;
  text-decoration: none;
  white-space: nowrap;
  min-width: 0;
}
.topbar-ea-logo { height: 30px; width: auto; display: block; flex-shrink: 0; }
.topbar-ea-long  { color: #4b5563; }
.topbar-ea-long strong { color: #143520; }
.topbar-ea-short { display: none; color: #4b5563; }
.topbar-ea-short strong { color: #143520; }
/* Right side */
.topbar-right {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}
.topbar-hours { color: #4b5563; }
.topbar-phone, .topbar-wa {
  display: inline-flex; align-items: center; gap: 6px;
  color: #143520;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.topbar-phone:hover, .topbar-wa:hover { color: var(--g-bright); }
.topbar-phone svg, .topbar-wa svg { flex-shrink: 0; }

/* ── NAVBAR ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--g-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1400px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer;
}
.nav-logo img { width: 64px; height: 64px; }
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 27px; font-weight: 800;
  color: var(--white); letter-spacing: .5px;
  line-height: 1.1;
}
.nav-logo-text span { color: var(--g-light); display: block; font-size: 14px; font-weight: 500; letter-spacing: 2px; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links li a, .nav-links li button {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: 8px 14px; border-radius: 4px;
  transition: all .2s;
}
.nav-links li a:hover, .nav-links li button:hover {
  color: var(--white); background: rgba(255,255,255,.08);
}
.nav-links li a.active, .nav-links li button.active {
  color: var(--g-light);
}
.nav-cta {
  background: var(--g-bright) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
}
.nav-cta:hover { background: var(--g-mid) !important; }

/* ── WHATSAPP FLOAT ── */
@keyframes wa-glow-pulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,.5), 0 0 0 0   rgba(37,211,102,.5); }
  70%  { box-shadow: 0 4px 20px rgba(37,211,102,.5), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,.5), 0 0 0 0   rgba(37,211,102,0); }
}
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: wa-glow-pulse 2.4s ease-out infinite;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); animation: none; box-shadow: 0 6px 28px rgba(37,211,102,.7); }
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ══════════════════════════════════
   HOME PAGE
══════════════════════════════════ */

/* Hero */
@keyframes hero-img-fade {
  0%, 4%    { opacity: 0; }
  10%, 30%  { opacity: 1; }
  36%, 100% { opacity: 0; }
}
.hero {
  background: #0a1f10;
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
/* Rotating photo background */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0;
  animation: hero-img-fade 21s infinite;
}
.hero-bg img:nth-child(1) { animation-delay: 0s; }
.hero-bg img:nth-child(2) { animation-delay: 7s; }
.hero-bg img:nth-child(3) { animation-delay: 14s; }
/* Dark overlay over photos */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(10,25,14,.65) 0%,
    rgba(20,53,32,.60) 50%,
    rgba(10,25,14,.68) 100%
  );
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(125,214,125,.15);
  border: 1px solid rgba(125,214,125,.3);
  color: var(--g-light); font-size: 12px;
  font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800; line-height: .92;
  color: var(--white); letter-spacing: 1px;
  margin-bottom: 28px;
}
.hero h1 em {
  color: var(--g-light); font-style: normal;
  display: block;
}
.hero-sub {
  font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,.7);
  margin-bottom: 40px; line-height: 1.7;
}
.hero-sub strong { color: var(--white); font-weight: 600; }
/* Sequential CTA pulse — each button glows in turn, 2s apart, 6s loop */
@keyframes hero-cta-pulse {
  0%, 20%, 100% { transform: translateY(0); filter: brightness(1); }
  10% { transform: translateY(-3px); filter: brightness(1.18); }
}
.hero-btns .btn-primary  { animation: hero-cta-pulse 6s ease-in-out 0s   infinite; }
.hero-btns .btn-wa       { animation: hero-cta-pulse 6s ease-in-out 2s   infinite; }
.hero-btns .btn-phone    { animation: hero-cta-pulse 6s ease-in-out 4s   infinite; }
.hero-btns .btn-primary:hover,
.hero-btns .btn-wa:hover,
.hero-btns .btn-phone:hover { animation: none; }

.hero-btns {
  display: flex; gap: 10px; flex-wrap: nowrap; align-items: center;
}
.btn-primary {
  background: var(--g-bright);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px; font-weight: 600;
  padding: 16px 24px; border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--g-mid); transform: translateY(-1px); }
.btn-wa {
  background: #25d366;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px; font-weight: 600;
  padding: 16px 28px; border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-wa:hover { background: #20ba59; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px; font-weight: 500;
  padding: 14px 28px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.3);
  cursor: pointer; transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }
.btn-phone {
  background: rgba(45,156,80,.18) !important;
  border: 1.5px solid rgba(45,156,80,.6) !important;
  color: #7de07d !important;
}
.btn-phone:hover {
  background: rgba(45,156,80,.28) !important;
  border-color: rgba(45,156,80,.9) !important;
  color: #fff !important;
}
.hero-badges {
  display: flex; gap: 10px; flex-wrap: nowrap; margin-top: 32px; overflow: hidden;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.75);
  font-size: 12px; font-weight: 500;
  padding: 6px 12px; border-radius: 100px;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--g-light); }

/* Hero right — quote card */
.hero-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 {
  font-family: var(--font-head);
  font-size: 28px; font-weight: 700;
  color: var(--g-dark); margin-bottom: 6px;
}
.hero-card p {
  font-size: 14px; color: var(--grey-mid); margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--grey-dark); margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  font-family: var(--font-body); font-size: 15px;
  border: 1.5px solid #d1d5db;
  border-radius: var(--radius);
  padding: 11px 14px;
  transition: border-color .2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--g-bright);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%;
  background: var(--g-bright); color: var(--white);
  font-family: var(--font-body); font-size: 16px; font-weight: 700;
  border: none; border-radius: var(--radius);
  padding: 16px; cursor: pointer;
  transition: background .2s;
}
.form-submit:hover { background: var(--g-mid); }
.form-note { font-size: 12px; color: var(--grey-light); text-align: center; margin-top: 10px; }

/* Trust Bar */
.trust-bar {
  background: var(--g-mid);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex; align-items: center;
  justify-content: space-around; flex-wrap: nowrap; gap: 16px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: white; font-size: 14px; font-weight: 500;
}
.trust-item .icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

/* How It Works */
.section {
  padding: 80px 0;
}
.section-alt { background: var(--g-cream); }
.section-dark {
  background: var(--g-darkest);
  color: var(--white);
}
.section-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--g-bright); margin-bottom: 12px;
}
.section-dark .section-label { color: var(--g-light); }
.section h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800; line-height: .95;
  margin-bottom: 20px; letter-spacing: .5px;
}
.section-dark h2 { color: var(--white); }
.section h2 em { color: var(--g-bright); font-style: normal; }
.section-dark h2 em { color: var(--g-light); }
.section-intro {
  font-size: 18px; font-weight: 300;
  color: var(--grey-mid); max-width: 580px;
  line-height: 1.7;
}
.section-dark .section-intro { color: rgba(255,255,255,.65); }
.section-header { margin-bottom: 56px; }

.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.step {
  text-align: center; padding: 40px 28px;
  background: var(--white); border-radius: 10px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.step-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--g-pale);
  border: 3px solid var(--g-bright);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-head);
  font-size: 28px; font-weight: 800; color: var(--g-mid);
}
.step h3 {
  font-family: var(--font-head);
  font-size: 24px; font-weight: 700;
  margin-bottom: 10px; color: var(--g-dark);
}
.step p { font-size: 15px; color: var(--grey-mid); line-height: 1.6; }

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #e5e7eb;
  border-radius: 10px; overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 32px 28px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
}
.service-card:hover {
  background: var(--g-pale);
}
.service-card .svc-icon { font-size: 32px; margin-bottom: 14px; display:flex; align-items:center; justify-content:center; width:56px; height:56px; background:rgba(45,156,80,.1); border-radius:12px; }
.service-card .svc-icon svg { width: 30px; height: 30px; }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 700;
  color: var(--g-dark); margin-bottom: 8px;
}
.service-card p { font-size: 14px; color: var(--grey-mid); line-height: 1.6; }
.service-card .arrow {
  position: absolute; top: 28px; right: 24px;
  color: var(--g-bright); font-size: 20px;
  opacity: 0; transition: opacity .2s;
}
.service-card:hover .arrow { opacity: 1; }

/* Skip vs Us */
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.compare-col { padding: 40px 36px; }
.compare-skip {
  background: #f3f4f6;
}
.compare-us {
  background: var(--g-dark); color: white;
}
.compare-label {
  font-family: var(--font-head);
  font-size: 26px; font-weight: 800;
  margin-bottom: 28px; display: flex; align-items: center; gap: 12px;
}
.compare-skip .compare-label { color: var(--grey-dark); }
.compare-us .compare-label { color: var(--white); }
.compare-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px; font-size: 15px;
}
.compare-skip .compare-item { color: var(--grey-mid); }
.compare-us .compare-item { color: rgba(255,255,255,.85); }
.compare-x { color: var(--red); font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.compare-tick { color: var(--g-light); font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* Reviews */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.review-card {
  background: var(--white);
  border-radius: 10px; padding: 28px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--g-bright);
}
.review-stars { color: #f59e0b; font-size: 18px; margin-bottom: 14px; }
.review-text {
  font-size: 15px; color: var(--grey-dark);
  line-height: 1.7; margin-bottom: 18px;
  font-style: italic;
}
.review-author {
  font-size: 13px; font-weight: 600; color: var(--g-mid);
}
.review-job { font-size: 12px; color: var(--grey-light); }

/* Coverage */
.coverage-tags {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px;
}
.coverage-tag {
  background: var(--g-pale);
  border: 1px solid rgba(45,156,80,.2);
  color: var(--g-dark); font-size: 14px; font-weight: 500;
  padding: 6px 16px; border-radius: 100px;
}

/* ══════════════════════════════════
   SERVICES PAGE
══════════════════════════════════ */
.page-hero {
  background: #0a1f10;
  padding: 70px 0 60px;
  color: var(--white);
  position: relative; overflow: hidden;
}
/* Rotating photo background (same images as hero) */
.page-hero .hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero .hero-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0;
  animation: hero-img-fade 21s infinite;
}
.page-hero .hero-bg img:nth-child(1) { animation-delay: 0s; }
.page-hero .hero-bg img:nth-child(2) { animation-delay: 7s; }
.page-hero .hero-bg img:nth-child(3) { animation-delay: 14s; }
/* Dark overlay */
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(10,25,14,.68) 0%,
    rgba(20,53,32,.62) 50%,
    rgba(10,25,14,.72) 100%
  );
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800; line-height: .92;
  margin-bottom: 16px;
}
.page-hero h1 em { color: var(--g-light); font-style: normal; }
.page-hero p {
  font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,.7); max-width: 600px;
}

.services-full {
  display: flex; flex-direction: column; gap: 0;
}
.service-full {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
}
.service-full:nth-child(even) .service-full-content {
  order: 2;
}
.service-full:nth-child(even) .service-full-visual {
  order: 1;
}
.service-full-content {
  padding: 60px 56px;
}
.service-full-visual {
  background: var(--g-pale);
  padding: 60px 40px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 340px;
  text-align: center;
}
.service-full-visual .big-icon { font-size: 80px; margin-bottom: 20px; display:flex; align-items:center; justify-content:center; }
.service-full-visual .big-icon svg { width: 80px; height: 80px; }
.service-full-visual h4 {
  font-family: var(--font-head); font-size: 26px; font-weight: 700;
  color: var(--g-dark); margin-bottom: 10px;
}
.service-full-visual p { font-size: 15px; color: var(--grey-mid); }

.service-full-content .svc-label {
  font-size: 12px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--g-bright);
  margin-bottom: 10px;
}
.service-full-content h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 3.5vw, 48px); font-weight: 800;
  color: var(--g-dark); margin-bottom: 16px; line-height: .95;
}
.service-full-content p {
  font-size: 16px; color: var(--grey-mid);
  line-height: 1.7; margin-bottom: 20px;
}
.svc-list { list-style: none; margin-bottom: 28px; }
.svc-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--grey-dark);
  margin-bottom: 10px;
}
.svc-list li::before {
  content: '✓';
  color: var(--g-bright); font-weight: 700; font-size: 14px;
  width: 20px; height: 20px;
  background: var(--g-pale); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.pricing-note {
  background: var(--g-pale);
  border-left: 4px solid var(--g-bright);
  padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px; font-weight: 500; color: var(--g-dark);
  margin-bottom: 24px;
}

/* ══════════════════════════════════
   ABOUT PAGE
══════════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.value-card {
  background: var(--g-pale);
  border-radius: 10px; padding: 28px;
  text-align: center;
}
.value-card .val-icon { font-size: 40px; margin-bottom: 14px; }
.value-card h4 {
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  color: var(--g-dark); margin-bottom: 8px;
}
.value-card p { font-size: 14px; color: var(--grey-mid); line-height: 1.6; }

.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.team-card {
  background: var(--white); border-radius: 10px;
  padding: 28px; text-align: center;
  box-shadow: var(--shadow-md);
}
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--g-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 32px; font-weight: 800;
  color: var(--white); margin: 0 auto 16px;
}
.team-card h4 { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--g-dark); }
.team-card .role { font-size: 13px; color: var(--g-bright); font-weight: 600; margin-bottom: 8px; }
.team-card p { font-size: 14px; color: var(--grey-mid); }

.creds-strip {
  display: flex; flex-wrap: nowrap; gap: 12px; margin-top: 32px;
}
.cred-badge {
  background: var(--g-pale);
  border: 1.5px solid rgba(45,156,80,.25);
  border-radius: 8px; padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--g-dark);
}
.cred-badge .cred-icon { font-size: 22px; }

/* ══════════════════════════════════
   CONTACT PAGE
══════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.contact-methods {
  display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px;
}
.contact-method {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--g-cream); border-radius: 8px; padding: 20px;
}
.contact-method .cm-icon {
  font-size: 24px; flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--g-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-method h4 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--g-dark); }
.contact-method a { color: var(--g-bright); font-weight: 600; font-size: 15px; }
.contact-method p { font-size: 14px; color: var(--grey-mid); margin-top: 2px; }

.hours-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 16px; }
.hours-table td { padding: 8px 0; border-bottom: 1px solid #e5e7eb; color: var(--grey-dark); }
.hours-table td:last-child { font-weight: 600; text-align: right; color: var(--g-mid); }

/* Map placeholder */
.map-placeholder {
  background: var(--g-pale);
  border: 2px dashed rgba(45,156,80,.3);
  border-radius: 8px; padding: 40px 20px;
  text-align: center; margin-top: 24px;
  color: var(--g-mid); font-size: 15px;
}

/* Response promise */
.response-promise {
  background: var(--g-dark); color: white;
  border-radius: 10px; padding: 24px 28px;
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
}
.response-promise .rp-icon { font-size: 32px; }
.response-promise p { font-size: 15px; }
.response-promise strong { color: var(--g-light); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: var(--g-darkest);
  color: rgba(255,255,255,.6);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand { max-width: 280px; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.footer-logo img { width: 44px; height: 44px; }
.footer-logo span {
  font-family: var(--font-head); font-size: 18px; font-weight: 800;
  color: var(--white);
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.footer-ea {
  font-size: 12px; color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.05);
  border-radius: 4px; padding: 8px 12px;
  display: inline-block;
}
.footer-col h5 {
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  color: var(--white); margin-bottom: 16px; letter-spacing: .5px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li button {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color .2s; padding: 0;
}
.footer-col ul li button:hover { color: var(--g-light); }
.footer-col ul li a { font-size: 14px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--g-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 13px;
}

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease forwards; }
.fade-up-2 { animation: fadeUp .6s ease .15s both; }
.fade-up-3 { animation: fadeUp .6s ease .3s both; }

/* ══════════════════════════════════
   BURGER MENU
══════════════════════════════════ */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .28s ease, opacity .28s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */

/* Tablet: swap long EA text for short, hide hours */
@media (max-width: 900px) {
  .topbar-ea-long  { display: none; }
  .topbar-ea-short { display: inline; }
  .topbar-hours    { display: none; }
  .topbar-right    { gap: 12px; }
  .topbar-ea-logo  { height: 26px; }
}

@media (max-width: 900px) {
  /* Layout stacks */
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .steps-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-full { grid-template-columns: 1fr; }
  .service-full:nth-child(even) .service-full-content { order: 1; }
  .service-full:nth-child(even) .service-full-visual { order: 2; }

  /* Nav — show burger, hide inline links */
  nav { position: relative; }
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--g-dark);
    padding: 8px 0 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
    flex-direction: column;
    gap: 0;
    list-style: none;
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a,
  .nav-links li button {
    display: block;
    width: 100%;
    padding: 13px 24px;
    text-align: left;
    font-size: 16px;
    border-radius: 0;
  }
  .nav-links li button.nav-cta {
    margin: 8px 16px 0;
    width: calc(100% - 32px);
    text-align: center;
    border-radius: var(--radius);
  }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: stretch; flex-wrap: wrap; }
  .hero-badges { flex-wrap: wrap; }
  .trust-bar-inner { flex-wrap: wrap; }
  .creds-strip { flex-wrap: wrap; }

  /* Topbar: compact single line on mobile */
  .topbar { display: block !important; padding: 4px 0; }
  .topbar-inner { justify-content: center; gap: 8px; }
  .topbar-ea { gap: 8px; }
  .topbar-ea-logo { height: 22px; }
  .topbar-ea-long { display: none; }
  .topbar-ea-short { display: inline; }
  .topbar-right { display: none; }

  /* Reduce hero padding */
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: clamp(38px, 10vw, 72px); }

  /* Sections tighter on mobile */
  section, .section { padding: 48px 0; }

  /* Full-width CTA buttons */
  .btn { display: block; width: 100%; text-align: center; }
  .hero-btns .btn { width: 100%; }
}

/* ══════════════════════════════════
   PRICES PAGE
══════════════════════════════════ */

/* Load pricing grid */
.price-load-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.price-load-card {
  background: var(--white);
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: border-color .2s, box-shadow .2s;
}
.price-load-card:hover {
  border-color: var(--g-bright);
  box-shadow: var(--shadow-md);
}
.price-load-popular {
  border-color: var(--g-bright) !important;
  box-shadow: var(--shadow-md);
}
.price-load-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--g-bright);
  color: white;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-load-bar {
  height: 8px;
  background: #e5e7eb;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 16px;
}
.price-load-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--g-mid), var(--g-bright));
  border-radius: 100px;
}
.price-load-label {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 800;
  color: var(--g-dark);
  margin-bottom: 8px;
}
.price-load-desc {
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 40px;
}
.price-load-amount {
  font-size: 22px;
  color: var(--g-dark);
}
.price-load-amount strong {
  font-family: var(--font-head);
  font-size: 32px; font-weight: 800;
  color: var(--g-mid);
}
.price-load-btns {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.plb-wa {
  display: inline-flex; align-items: center; gap: 6px;
  background: #25d366;
  color: white;
  font-size: 13px; font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s;
}
.plb-wa:hover { background: #1ebe5d; }
.plb-quote {
  display: inline-flex; align-items: center;
  background: var(--g-dark);
  color: white;
  font-size: 13px; font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  border: none; cursor: pointer;
  transition: background .2s;
}
.plb-quote:hover { background: var(--g-mid); }

/* What's included strip */
.price-includes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  background: var(--g-pale);
  border-radius: 10px;
  padding: 20px 24px;
}
.price-inc-item {
  font-size: 14px;
  font-weight: 600;
  color: var(--g-dark);
}

/* CTA strip under load prices */
.price-cta-strip {
  margin-top: 32px;
  background: var(--g-dark);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.price-cta-label {
  color: rgba(255,255,255,.85);
  font-size: 16px;
  font-weight: 500;
  flex: 1;
  min-width: 200px;
  margin: 0;
}
.price-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .price-cta-strip { flex-direction: column; align-items: stretch; text-align: center; }
  .price-cta-btns { justify-content: center; }
}

/* Single item grid */
.price-items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.price-item-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform .2s;
}
.price-item-card:hover { transform: translateY(-3px); }
.price-item-quote {
  border: 2px dashed rgba(45,156,80,.3);
  box-shadow: none;
  background: var(--g-pale);
}
.price-item-icon { font-size: 36px; margin-bottom: 12px; display:flex; align-items:center; justify-content:center; }
.price-item-icon svg { width: 36px; height: 36px; }
.price-item-name {
  font-size: 14px; font-weight: 600;
  color: var(--grey-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}
.price-item-amount {
  font-family: var(--font-head);
  font-size: 28px; font-weight: 800;
  color: var(--g-mid);
}
.price-item-book {
  font-size: 12px;
  font-weight: 600;
  color: #25d366;
  margin-top: 8px;
  opacity: 0;
  transition: opacity .2s;
}
.price-item-card:hover .price-item-book { opacity: 1; }
.price-item-card:hover { border-color: #25d366; }

@media (max-width: 900px) {
  .price-load-grid { grid-template-columns: repeat(3, 1fr); }
  .price-items-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .price-load-grid { grid-template-columns: repeat(2, 1fr); }
  .price-items-grid { grid-template-columns: repeat(2, 1fr); }
  .price-load-desc { min-height: unset; }
}

/* Success/thank you state */
.form-success {
  background: var(--g-pale); border: 2px solid var(--g-bright);
  border-radius: var(--radius); padding: 24px;
  text-align: center; display: none;
}
.form-success.show { display: block; }
.form-success h4 { font-family: var(--font-head); font-size: 24px; color: var(--g-dark); margin-bottom: 8px; }
.form-success p { color: var(--grey-mid); font-size: 15px; }

/* ── POSTCODE CHECKER ── */
.postcode-checker {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 32px;
  margin-top: 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.postcode-checker-icon { font-size: 32px; margin-bottom: 8px; }
.postcode-checker h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--g-dark);
  margin-bottom: 6px;
}
.postcode-checker p {
  color: var(--grey-mid);
  font-size: 15px;
  margin-bottom: 18px;
}
.postcode-input-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.postcode-input-row input {
  padding: 13px 18px;
  border: 2px solid #d1e8d8;
  border-radius: 6px;
  font-size: 16px;
  font-family: var(--font-body);
  width: 200px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: border-color .2s;
}
.postcode-input-row input:focus {
  outline: none;
  border-color: var(--g-bright);
}
.postcode-input-row button {
  background: var(--g-mid);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background .2s;
}
.postcode-input-row button:hover { background: var(--g-dark); }
.postcode-input-row button:disabled { opacity: .6; cursor: not-allowed; }
.postcode-result { margin-top: 16px; border-radius: 8px; font-size: 15px; }
.postcode-yes {
  background: var(--g-pale);
  border-left: 4px solid var(--g-bright);
  padding: 14px 20px;
  color: var(--g-dark);
  font-weight: 500;
  text-align: left;
  border-radius: 0 8px 8px 0;
}
.postcode-yes a { color: var(--g-bright); font-weight: 700; text-decoration: underline; }
.postcode-no {
  background: #fff8e6;
  border-left: 4px solid var(--amber);
  padding: 14px 20px;
  color: #5a3e00;
  text-align: left;
  border-radius: 0 8px 8px 0;
}
.postcode-no a { color: var(--g-mid); font-weight: 700; text-decoration: underline; }
.postcode-error {
  background: #fdecea;
  border-left: 4px solid var(--red);
  padding: 14px 20px;
  color: #7a1c1c;
  text-align: left;
  border-radius: 0 8px 8px 0;
}

/* ── Before & After Slider ── */
.slider-section {
  background: var(--g-dark);
  padding: 64px 0 48px;
  text-align: center;
}
.slider-header {
  margin-bottom: 36px;
}
.slider-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px;
}
.slider-track {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}
.slide {
  display: none;
  animation: slideFadeIn .45s ease;
}
.slide.active {
  display: block;
}
@keyframes slideFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.slide-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: #000;
}
.slide-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.slide-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(20,53,32,.85);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  z-index: 2;
}
.slide-tag-after {
  background: var(--g-bright);
}
.slide-caption {
  background: rgba(0,0,0,.55);
  color: #fff;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  padding: 14px 20px;
  letter-spacing: .02em;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.25);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.slider-btn:hover {
  background: var(--g-bright);
  border-color: var(--g-bright);
}
.slider-prev { left: 8px; }
.slider-next { right: 8px; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.slider-dot.active {
  background: var(--g-bright);
  transform: scale(1.3);
}
@media (max-width: 600px) {
  .slider-wrap { padding: 0 44px; }
  .slider-btn { width: 36px; height: 36px; font-size: 15px; }
}

/* ── Before & After Gallery ── */
.ba-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ba-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ba-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.ba-card:hover .ba-img-wrap img {
  transform: scale(1.03);
}
.ba-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(20,53,32,.82);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 1;
}
.ba-label.ba-after {
  background: var(--g-bright);
}
.ba-caption {
  padding: 14px 18px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--g-dark);
  letter-spacing: .01em;
}


/* ============================================
   TRUST STATS SECTION
   ============================================ */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.trust-stat {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
/* Green accent bar at top of each tile */
.trust-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--g-mid), var(--g-bright));
}
.trust-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.trust-stat-icon {
  width: 56px; height: 56px;
  background: var(--g-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.trust-stat-val {
  font-family: var(--font-head);
  font-size: 24px; font-weight: 800;
  color: var(--g-dark);
  line-height: 1.1;
  margin-bottom: 2px;
}
.trust-stat-label {
  font-size: 13px; font-weight: 700;
  color: var(--g-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.trust-stat-sub {
  font-size: 12px;
  color: var(--grey-mid);
}
.trust-points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
  margin: 0 auto 36px;
  max-width: 700px;
}
.trust-point-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--grey-dark);
  line-height: 1.5;
}
.trust-tick {
  width: 22px; height: 22px;
  background: var(--g-bright);
  color: white;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.trust-review-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}
.trust-review-row p {
  font-size: 15px;
  color: var(--grey-mid);
  margin: 0;
}
.trust-review-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  color: var(--g-dark);
  border: 2px solid var(--g-bright);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}
.trust-review-btn:hover { background: var(--g-pale); }

@media (max-width: 900px) {
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
  .trust-points-grid { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 480px) {
  .trust-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* ============================================
   FAQ ACCORDION — modern card style
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  overflow: hidden;
  border-left: 4px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
details.faq-item[open] {
  border-left-color: var(--g-bright);
  box-shadow: 0 4px 20px rgba(45,156,80,.12);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px; font-weight: 600;
  color: var(--g-dark);
  text-align: left;
  transition: color .15s;
  list-style: none; /* remove default summary triangle */
  -webkit-appearance: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
/* Remove disclosure triangle in all browsers */
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; }
.faq-chevron { pointer-events: none; }
.faq-q:hover { color: var(--g-mid); }
details.faq-item[open] .faq-q { color: var(--g-mid); }
.faq-chevron {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--g-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--g-bright);
  transition: transform .25s ease, background .2s;
}
details.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  background: var(--g-bright);
  color: white;
}
.faq-chevron svg { display: block; }
.faq-a {
  /* details/summary handles show/hide natively — no max-height tricks needed */
}
.faq-a p {
  padding: 0 22px 20px;
  margin: 0;
  font-size: 15px;
  color: var(--grey-mid);
  line-height: 1.8;
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
}

/* ============================================
   MOBILE STICKY CTA BAR
   ============================================ */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 999;
    box-shadow: 0 -2px 16px rgba(0,0,0,.15);
  }
  .mobile-cta-call,
  .mobile-cta-wa {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    font-family: var(--font-body);
    font-size: 15px; font-weight: 700;
    color: white;
    text-decoration: none;
  }
  .mobile-cta-call {
    background: var(--g-dark);
  }
  .mobile-cta-wa {
    background: #25d366;
  }
  /* push page content up so it's not hidden behind the bar */
  body { padding-bottom: 80px; }
  /* nudge floating WhatsApp button above the bar */
  .wa-float { bottom: 72px !important; }
}
