/* ==========================================================================
   AquaTec Plumbing — Design System v2 "Mascot Energy"
   Comic-book brand world (halftone, waves, bubbles, stickers) wrapped in a
   slick modern layout. Matches instagram.com/aquatec.plumbing.
   ========================================================================== */

:root {
  /* Palette — pulled from the Instagram mascot universe */
  --navy-900: #0a1628;
  --navy-800: #0f2040;
  --navy-700: #132a52;
  --red-600: #c50d04;
  --red-500: #F21107;
  --red-700: #990a03;
  --gold-400: #ffd23e;
  --gold-300: #fcd34d;
  --sky-50:  #ecf6fc;
  --sky-100: #d9edf8;
  --sky-200: #c3e2f2;
  --blue-400: #8aa3b8;
  --blue-600: #1a4fa0;
  --ink-900: #1a2340;
  --ink-600: #4a5568;
  --paper: #fdfbf7;
  --white: #ffffff;
  --line: #2d161a;

  /* Type */
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', 'Segoe UI', sans-serif;
  --font-sticker: 'Luckiest Guy', 'Comic Sans MS', cursive;

  /* Comic shadows */
  --pop-sm: 3px 3px 0 var(--line);
  --pop: 5px 5px 0 var(--line);
  --pop-lg: 8px 8px 0 var(--line);
  --pop-red: 5px 5px 0 var(--red-700);
  --pop-navy: 5px 5px 0 var(--navy-900);

  --radius: 14px;
  --radius-lg: 22px;
  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--red-600); }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Display type: sticker lettering (thick contour + comic offset) ---------- */
.display, h1.display, h2.display {
  font-family: var(--font-display); font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.0;
  color: var(--navy-800);
  text-shadow:
    -3px -3px 0 var(--white), 3px -3px 0 var(--white), -3px 3px 0 var(--white), 3px 3px 0 var(--white),
    -3px 0 0 var(--white), 3px 0 0 var(--white), 0 -3px 0 var(--white), 0 3px 0 var(--white),
    6px 7px 0 rgba(45,22,26,0.16);
}
.page-hero h1.display, .cta-band h2.display {
  text-shadow:
    -3px -3px 0 rgba(45,22,26,.9), 3px -3px 0 rgba(45,22,26,.9), -3px 3px 0 rgba(45,22,26,.9), 3px 3px 0 rgba(45,22,26,.9),
    -3px 0 0 rgba(45,22,26,.9), 3px 0 0 rgba(45,22,26,.9), 0 -3px 0 rgba(45,22,26,.9), 0 3px 0 rgba(45,22,26,.9),
    7px 8px 0 rgba(0,0,0,0.35);
}
.stat .stat-num { text-shadow: 4px 5px 0 rgba(0,0,0,0.35); }

/* Red marker underline swash */
.swash { position: relative; white-space: nowrap; }
.swash svg { position: absolute; left: 0; right: 0; bottom: -0.18em; width: 100%; height: 0.32em; }
.swash svg path { stroke: var(--red-500); stroke-width: 9; fill: none; stroke-linecap: round; }

/* Eyebrow chip */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--red-500);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 4px; background: var(--gold-400); border-radius: 2px; }

/* ---------- Buttons: comic stickers ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 16px;
  padding: 14px 26px;
  border-radius: 12px;
  border: 2.5px solid var(--line);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  will-change: transform;
}
.btn-red { background: var(--red-500); color: var(--white); box-shadow: var(--pop); }
.btn-red:hover { background: var(--red-600); color: var(--white); transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--line); }
.btn-navy { background: var(--navy-800); color: var(--white); box-shadow: var(--pop); }
.btn-navy:hover { background: var(--navy-700); color: var(--white); transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--line); }
.btn-ghost { background: var(--white); color: var(--navy-800); box-shadow: var(--pop-sm); }
.btn-ghost:hover { color: var(--red-600); transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--line); }
.btn-gold { background: var(--gold-400); color: var(--navy-900); box-shadow: var(--pop); }
.btn-gold:hover { background: var(--gold-300); transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--line); }
.btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--line); }

/* ---------- Halftone + tile + wave helpers ---------- */
.halftone {
  background-color: var(--navy-800);
  background-image: radial-gradient(rgba(255,255,255,0.07) 1.6px, transparent 1.6px);
  background-size: 18px 18px;
}
.halftone-red {
  background-color: var(--red-600);
  background-image: radial-gradient(rgba(0,0,0,0.08) 1.6px, transparent 1.6px);
  background-size: 16px 16px;
}
.tiles {
  background-color: var(--sky-100);
  background-image:
    linear-gradient(rgba(60,120,170,0.16) 2px, transparent 2px),
    linear-gradient(90deg, rgba(60,120,170,0.16) 2px, transparent 2px);
  background-size: 64px 64px;
}
.wave-divider { display: block; width: 100%; height: 70px; }
.wave-divider.flip { transform: scaleY(-1); }

/* Floating bubbles */
.bubble {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,0.85) 12%, var(--sky-200) 45%, var(--blue-400) 100%);
  border: 2px solid rgba(10,22,40,0.45);
  opacity: .75;
  animation: floaty 7s ease-in-out infinite;
  pointer-events: none;
}
.bubble::after {
  content: ""; position: absolute; left: 22%; top: 18%;
  width: 26%; height: 26%; border-radius: 50%;
  background: rgba(255,255,255,0.9);
}
@keyframes floaty {
  0%,100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-18px) translateX(6px); }
}

/* Starburst sticker */
.starburst { position: absolute; pointer-events: none; animation: starPulse 3.4s ease-in-out infinite; }
@keyframes starPulse { 0%,100% { transform: scale(1) rotate(0deg);} 50% { transform: scale(1.08) rotate(3deg);} }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy-900); color: #cdd5f2; font-size: 13.5px; position: relative; z-index: 60; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; }
.topbar a { color: #e8ecfb; font-weight: 500; }
.topbar a:hover { color: var(--gold-300); }
.topbar .tb-left { display: flex; gap: 18px; align-items: center; }
.topbar .tb-socials { display: flex; gap: 12px; align-items: center; }
.topbar .tb-socials a { display: inline-flex; opacity: .85; }
.topbar .tb-socials a:hover { opacity: 1; }
.topbar svg { width: 15px; height: 15px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253,251,247,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2.5px solid var(--line);
  transition: box-shadow .25s ease;
}
.nav.scrolled { box-shadow: 0 6px 24px rgba(10,22,40,0.12); }
.nav .container { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: .5px; color: var(--navy-800); text-transform: uppercase; }
.brand:hover { color: var(--navy-800); }
.brand img { width: 46px; height: 46px; border-radius: 50%; border: 2.5px solid var(--line); box-shadow: 2px 2px 0 var(--line); background: var(--white); }
.brand .dot { color: var(--red-500); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--navy-800); font-weight: 600; font-size: 15.5px; position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 3px; width: 0;
  background: var(--red-500); border-radius: 2px; transition: width .22s ease;
}
.nav-links a:hover { color: var(--red-600); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav .btn { padding: 11px 20px; font-size: 15px; }
.nav-toggle { display: none; background: none; border: 2.5px solid var(--line); border-radius: 10px; padding: 7px 10px; box-shadow: var(--pop-sm); cursor: pointer; }
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 72px 0 110px; }
.hero .container { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gold-400); color: var(--navy-900);
  border: 2.5px solid var(--line); border-radius: 999px;
  box-shadow: var(--pop-sm);
  font-weight: 700; font-size: 13.5px; letter-spacing: .6px; text-transform: uppercase;
  padding: 8px 16px; margin-bottom: 22px;
  transform: rotate(-1.2deg);
}
.hero-kicker .pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red-600); animation: pulseDot 1.6s infinite; }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 0 rgba(196,60,52,.5);} 60% { box-shadow: 0 0 0 7px rgba(196,60,52,0);} }
.hero h1 { font-size: clamp(46px, 6.2vw, 84px); margin-bottom: 20px; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span { display: inline-block; transform: translateY(110%); animation: riseUp .7s cubic-bezier(.2,.7,.2,1) forwards; }
.hero h1 .line:nth-child(2) span { animation-delay: .12s; }
.hero h1 .line:nth-child(3) span { animation-delay: .24s; }
@keyframes riseUp { to { transform: translateY(0); } }
.hero-sub { font-size: 18.5px; color: var(--ink-600); max-width: 520px; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; font-size: 14px; font-weight: 600; color: var(--navy-800); }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 17px; height: 17px; color: var(--red-500); }

/* Booking form card */
.form-card {
  background: var(--white);
  border: 2.5px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--pop-lg);
  padding: 30px 28px 26px;
  position: relative;
  transform: rotate(.6deg);
}
.form-card .form-card-inner { transform: rotate(-.6deg); }
.form-card h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 26px; color: var(--navy-800); margin-bottom: 4px; letter-spacing: .5px; }
.form-card .fc-sub { font-size: 14px; color: var(--ink-600); margin-bottom: 18px; }
.form-card .badge-247 {
  position: absolute; top: -24px; right: -18px;
  font-family: var(--font-sticker); font-size: 17px; line-height: 1;
  background: var(--red-500); color: var(--white);
  border: 2.5px solid var(--line); border-radius: 50%;
  width: 74px; height: 74px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  box-shadow: var(--pop-sm);
  transform: rotate(8deg);
  animation: starPulse 3.4s ease-in-out infinite;
}
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy-800); margin-bottom: 5px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 2px solid var(--line); border-radius: 10px;
  background: var(--sky-50);
  font-size: 15px;
  transition: box-shadow .15s ease, border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-600); background: var(--white);
  box-shadow: 3px 3px 0 var(--sky-200);
}
.field textarea { min-height: 92px; resize: vertical; }
.form-card .btn { width: 100%; }
.form-note { font-size: 13px; color: var(--ink-600); margin-top: 12px; text-align: center; }
.form-success {
  display: none;
  background: rgba(34,197,94,0.08); border: 2px solid rgba(34,197,94,0.45); border-radius: 10px;
  padding: 12px 14px; font-size: 14px; color: #15803d; margin-top: 12px;
}
.form-success.show { display: block; }

/* Hero scenery */
.hero-scenery { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* ---------- Video band ---------- */
.video-band { position: relative; padding: 0 0 84px; }
.video-band .container { max-width: 1020px; }
.video-frame {
  position: relative;
  border: 3px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--pop-lg);
  overflow: hidden;
  background: var(--navy-900);
}
.video-frame video, .video-frame img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.video-frame .vf-tag {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-sticker); font-size: 14px; letter-spacing: 1px;
  background: var(--gold-400); color: var(--navy-900);
  border: 2px solid var(--line); border-radius: 8px; padding: 6px 12px;
  box-shadow: var(--pop-sm); transform: rotate(-2deg);
}

/* ---------- Trust band ---------- */
.trust-band { position: relative; padding: 56px 0; }
.trust-band .container { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.trust-chip {
  background: var(--white); border: 2.5px solid var(--line); border-radius: 14px;
  box-shadow: var(--pop-sm);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.trust-chip:nth-child(odd) { transform: rotate(-1.3deg); }
.trust-chip:nth-child(even) { transform: rotate(1.1deg); }
.trust-chip:hover { transform: rotate(0) translateY(-3px); box-shadow: var(--pop); }
.trust-chip svg { width: 30px; height: 30px; color: var(--red-500); flex: none; }
.trust-chip b { display: block; font-size: 15.5px; color: var(--navy-800); line-height: 1.25; }
.trust-chip small { font-size: 12.5px; color: var(--ink-600); }

/* ---------- Sections ---------- */
.section { padding: 92px 0; position: relative; }
.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(34px, 4.2vw, 52px); margin-bottom: 14px; }
.section-head p { color: var(--ink-600); font-size: 17px; }

/* ---------- Service cards ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
  background: var(--white);
  border: 2.5px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--pop-sm);
  padding: 26px 24px 22px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative; overflow: hidden;
}
.svc-card:hover { transform: translate(-3px,-3px); box-shadow: var(--pop-lg); }
.svc-card .svc-img {
  margin: -26px -24px 0; aspect-ratio: 16/9.5; overflow: hidden;
  border-bottom: 2.5px solid var(--line); border-radius: 11px 11px 0 0;
  background: var(--sky-100);
}
.svc-card .svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.svc-card:hover .svc-img img { transform: scale(1.05); }
.svc-card .svc-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--sky-100); border: 2.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 3px 3px 0 var(--sky-200);
  transition: transform .25s ease, background .25s ease;
}
.svc-card:hover .svc-icon { transform: rotate(-6deg) scale(1.06); background: var(--gold-300); }
.svc-card .svc-icon svg { width: 30px; height: 30px; color: var(--navy-800); }
.svc-card h3 { font-size: 19px; color: var(--navy-800); line-height: 1.3; }
.svc-card p { font-size: 14.5px; color: var(--ink-600); flex: 1; }
.svc-card .svc-more { font-weight: 700; font-size: 14.5px; color: var(--red-600); display: inline-flex; align-items: center; gap: 6px; }
.svc-card .svc-more svg { width: 16px; height: 16px; transition: transform .2s ease; }
.svc-card:hover .svc-more svg { transform: translateX(4px); }
.svc-card.emergency { background: var(--navy-800); }
.svc-card.emergency h3 { color: var(--white); }
.svc-card.emergency p { color: #c3cbea; }
.svc-card.emergency .svc-icon { background: var(--red-500); }
.svc-card.emergency .svc-icon svg { color: var(--white); }
.svc-card.emergency .svc-more { color: var(--gold-300); }

/* ---------- Why / About split ---------- */
.why-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items: center; }
.why-figure { position: relative; }
.why-figure .wf-img {
  border: 3px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--pop-lg); overflow: hidden; background: var(--sky-100);
}
.why-figure .wf-img img { width: 100%; object-fit: cover; }
.why-figure .wf-sticker {
  position: absolute; bottom: -26px; right: -20px;
  width: 130px; height: 130px; border-radius: 50%;
  border: 3px solid var(--line); box-shadow: var(--pop);
  background: var(--white);
  transform: rotate(6deg);
}
.why-figure .wf-sticker img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.feature-row { display: flex; gap: 16px; margin-top: 26px; }
.feature-row .fr-icon {
  flex: none; width: 50px; height: 50px; border-radius: 12px;
  background: var(--gold-400); border: 2.5px solid var(--line); box-shadow: var(--pop-sm);
  display: flex; align-items: center; justify-content: center;
  transform: rotate(-3deg);
}
.feature-row .fr-icon svg { width: 26px; height: 26px; color: var(--navy-900); }
.feature-row h4 { font-size: 18px; color: var(--navy-800); margin-bottom: 4px; }
.feature-row p { font-size: 15px; color: var(--ink-600); }

/* ---------- Stats band ---------- */
.stats-band { position: relative; padding: 64px 0; }
.stats-band .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.stat { position: relative; padding: 10px; }
.stat .stat-num {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 4.6vw, 60px);
  color: var(--white); line-height: 1; margin-bottom: 8px; letter-spacing: 1px;
  position: relative; display: inline-block;
}
.stat .stat-num .gold { color: var(--gold-400); }
.stat .stat-label { color: #c3cbea; font-size: 14.5px; font-weight: 500; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card {
  background: var(--white); border: 2.5px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--pop);
  padding: 28px 26px;
  position: relative;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--pop-lg); }
.review-card::after { /* speech tail */
  content: ""; position: absolute; bottom: -16px; left: 44px;
  width: 26px; height: 26px; background: var(--white);
  border-right: 2.5px solid var(--line); border-bottom: 2.5px solid var(--line);
  transform: rotate(45deg) skew(8deg, 8deg);
}
.review-stars { display: flex; gap: 4px; }
.review-stars svg { width: 19px; height: 19px; color: var(--gold-400); }
.review-card blockquote { font-size: 15px; color: var(--ink-600); flex: 1; }
.review-meta { display: flex; align-items: center; gap: 12px; }
.review-meta .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue-600); color: var(--white); /* link-blue kept for legibility */
  border: 2.5px solid var(--line); box-shadow: 2px 2px 0 var(--line);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; letter-spacing: .5px;
}
.review-meta b { display: block; font-size: 15.5px; color: var(--navy-800); line-height: 1.3; }
.review-meta small { font-size: 13px; color: var(--ink-600); }

/* ---------- Areas ---------- */
.areas-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.areas-chips { display: flex; flex-wrap: wrap; gap: 13px; }
.area-chip {
  background: var(--white); color: var(--navy-800);
  border: 2.5px solid var(--line); border-radius: 999px;
  box-shadow: var(--pop-sm);
  padding: 10px 19px; font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.area-chip svg { width: 15px; height: 15px; color: var(--red-500); }
.area-chip:hover { background: var(--gold-300); color: var(--navy-900); transform: translate(-2px,-2px); box-shadow: var(--pop-sm); }
.area-chip.ask { background: var(--navy-800); color: var(--white); }
.area-chip.ask:hover { background: var(--navy-700); }
.areas-figure { position: relative; }
.areas-figure .af-img {
  border: 3px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--pop-lg); overflow: hidden;
}
.areas-figure .af-img img { width: 100%; object-fit: cover; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--white); border: 2.5px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--pop-sm);
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq-item[open] { box-shadow: var(--pop); }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 22px;
  font-weight: 600; font-size: 16px; color: var(--navy-800);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-plus {
  flex: none; width: 32px; height: 32px; border-radius: 9px;
  border: 2.5px solid var(--line); background: var(--gold-400);
  box-shadow: 2px 2px 0 var(--line);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; color: var(--navy-900);
  transition: transform .25s ease, background .25s ease;
}
.faq-item[open] summary .faq-plus { transform: rotate(45deg); background: var(--red-500); color: var(--white); }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--ink-600); font-size: 15.5px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band .container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center;
  padding-top: 84px; padding-bottom: 84px;
}
.cta-band h2 { color: var(--white); font-size: clamp(34px, 4.4vw, 54px); margin-bottom: 14px; }
.cta-band p { color: #c3cbea; font-size: 17px; max-width: 520px; margin-bottom: 30px; }
.cta-phone {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--white); border: 2.5px solid var(--line); border-radius: 16px;
  box-shadow: var(--pop); padding: 16px 24px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.cta-phone:hover { transform: translate(-2px,-2px); box-shadow: var(--pop-lg); }
.cta-phone .cp-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--red-500); border: 2.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  animation: ring 2.6s ease-in-out infinite;
}
@keyframes ring { 0%,100% { transform: rotate(0);} 4% { transform: rotate(-12deg);} 8% { transform: rotate(10deg);} 12% { transform: rotate(-8deg);} 16% { transform: rotate(0);} }
.cta-phone .cp-icon svg { width: 22px; height: 22px; color: var(--white); }
.cta-phone b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 24px; letter-spacing: 1px; color: var(--navy-900); line-height: 1.1; }
.cta-phone small { color: var(--ink-600); font-size: 13px; }
.cta-figure { position: relative; }
.cta-figure img {
  border: 3px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--pop-lg);
  transform: rotate(1.6deg);
}

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #aeb6da; position: relative; }
.footer a { color: #cdd5f2; font-size: 14.5px; }
.footer a:hover { color: var(--gold-300); }
.footer .footer-main {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr .9fr; gap: 44px;
  padding: 70px 0 50px;
}
.footer h5 {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  color: var(--white); font-size: 17px; margin-bottom: 18px;
}
.footer .f-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer .f-brand img { width: 52px; height: 52px; border-radius: 50%; border: 2.5px solid rgba(255,255,255,.25); background: var(--white); }
.footer .f-brand span { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--white); text-transform: uppercase; letter-spacing: .5px; }
.footer .f-brand .dot { color: var(--red-500); }
.footer .f-blurb { font-size: 14.5px; margin-bottom: 20px; max-width: 300px; }
.footer .f-socials { display: flex; gap: 12px; }
.footer .f-socials a {
  width: 38px; height: 38px; border-radius: 10px;
  border: 2px solid rgba(255,255,255,.25);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.footer .f-socials a:hover { background: var(--red-500); border-color: var(--line); transform: translateY(-3px); }
.footer .f-socials svg { width: 17px; height: 17px; }
.footer ul li { margin-bottom: 9px; }
.footer .f-contact li { display: flex; gap: 9px; align-items: flex-start; margin-bottom: 12px; font-size: 14.5px; }
.footer .f-contact svg { width: 16px; height: 16px; color: var(--gold-400); flex: none; margin-top: 4px; }
.footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0; font-size: 13.5px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}

/* ---------- Interior pages ---------- */
.page-hero { position: relative; overflow: hidden; padding: 76px 0 64px; }
.page-hero .container { position: relative; z-index: 2; max-width: 880px; text-align: center; }
.breadcrumb {
  display: inline-flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: center;
  font-size: 13.5px; font-weight: 600; letter-spacing: .4px;
  color: #aeb6da; margin-bottom: 18px;
}
.breadcrumb a { color: var(--gold-300); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: .6; }
.page-hero h1 { color: var(--white); font-size: clamp(38px, 5vw, 62px); margin-bottom: 16px; }
.page-hero .ph-sub { color: #c3cbea; font-size: 17.5px; max-width: 640px; margin: 0 auto 28px; }
.page-hero .hero-ctas { justify-content: center; margin-bottom: 0; }

.content-section { padding: 76px 0; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.split .sp-figure { border: 3px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--pop-lg); overflow: hidden; }
.split .sp-figure img { width: 100%; object-fit: cover; }
.checklist { margin-top: 22px; display: grid; gap: 13px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink-600); }
.checklist svg { flex: none; width: 22px; height: 22px; color: var(--red-500); margin-top: 2px; }
.checklist b { color: var(--navy-800); }

/* Process steps */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step-card {
  background: var(--white); border: 2.5px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--pop-sm); padding: 26px 22px; position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--pop); }
.step-card .step-num {
  font-family: var(--font-display); font-weight: 800; font-size: 38px; color: var(--white);
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--red-500); border: 2.5px solid var(--line); box-shadow: 3px 3px 0 var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; transform: rotate(-4deg);
}
.step-card h4 { font-size: 17.5px; color: var(--navy-800); margin-bottom: 7px; }
.step-card p { font-size: 14.5px; color: var(--ink-600); }

/* Pull quote */
.pull-quote {
  max-width: 760px; margin: 0 auto; text-align: center;
  font-size: clamp(20px, 2.6vw, 27px); font-weight: 600; line-height: 1.5;
  color: var(--navy-800); position: relative; padding: 18px 30px;
}
.pull-quote .pq-mark { font-family: var(--font-sticker); font-size: 64px; color: var(--gold-400); line-height: .6; display: block; margin-bottom: 14px; }

/* Cross-link grids */
.xlink-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.xlink {
  background: var(--white); border: 2.5px solid var(--line); border-radius: 12px;
  box-shadow: var(--pop-sm);
  padding: 13px 16px; font-weight: 600; font-size: 14.5px; color: var(--navy-800);
  display: flex; align-items: center; gap: 10px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.xlink svg { width: 16px; height: 16px; color: var(--red-500); flex: none; }
.xlink:hover { background: var(--sky-100); transform: translate(-2px,-2px); box-shadow: var(--pop-sm); color: var(--navy-900); }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.post-card {
  background: var(--white); border: 2.5px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--pop-sm); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.post-card:hover { transform: translate(-3px,-3px); box-shadow: var(--pop-lg); }
.post-card .pc-img { aspect-ratio: 16/8.5; overflow: hidden; border-bottom: 2.5px solid var(--line); }
.post-card .pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .pc-img img { transform: scale(1.045); }
.post-card .pc-body { padding: 24px 24px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card .pc-meta { font-size: 13px; font-weight: 600; color: var(--red-600); text-transform: uppercase; letter-spacing: .8px; }
.post-card h3 { font-size: 20px; color: var(--navy-800); line-height: 1.35; }
.post-card p { font-size: 14.5px; color: var(--ink-600); flex: 1; }
.article { max-width: 760px; margin: 0 auto; }
.article h2 { font-size: 28px; color: var(--navy-800); margin: 38px 0 14px; font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .5px; }
.article h3 { font-size: 21px; color: var(--navy-800); margin: 28px 0 10px; }
.article p { margin-bottom: 16px; color: var(--ink-600); }
.article ul, .article ol { margin: 0 0 16px 22px; color: var(--ink-600); }
.article ul { list-style: disc; }
.article ol { list-style: decimal; }
.article li { margin-bottom: 8px; }
.article .article-meta { font-size: 14px; color: var(--ink-600); margin-bottom: 28px; }
.article .lead { font-size: 18.5px; color: var(--ink-900); }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: start; }
.info-card {
  background: var(--white); border: 2.5px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--pop-sm); padding: 22px 22px;
  display: flex; gap: 16px; margin-bottom: 18px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.info-card:hover { transform: translate(-2px,-2px); box-shadow: var(--pop); }
.info-card .ic-icon {
  flex: none; width: 52px; height: 52px; border-radius: 13px;
  background: var(--sky-100); border: 2.5px solid var(--line); box-shadow: 3px 3px 0 var(--sky-200);
  display: flex; align-items: center; justify-content: center;
}
.info-card .ic-icon svg { width: 26px; height: 26px; color: var(--navy-800); }
.info-card h4 { font-size: 17px; color: var(--navy-800); margin-bottom: 3px; }
.info-card p, .info-card a.big { font-size: 15px; color: var(--ink-600); }
.info-card a.big { font-weight: 700; color: var(--red-600); font-size: 17px; }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 70;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--red-500); border: 2.5px solid var(--line); box-shadow: var(--pop-sm);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(14px);
  transition: opacity .25s ease, transform .25s ease;
  cursor: pointer;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top svg { width: 22px; height: 22px; color: var(--white); }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero .container { grid-template-columns: 1fr; gap: 44px; }
  .form-card { max-width: 560px; }
  .why-grid, .areas-wrap, .split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band .container { grid-template-columns: 1fr; }
  .cta-figure { max-width: 440px; }
  .footer .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .xlink-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  body { font-size: 15.5px; }
  .topbar .tb-left span.tb-email { display: none; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 2.5px solid var(--line);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 10px 24px 18px;
    box-shadow: 0 16px 28px rgba(10,22,40,.14);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 0; width: 100%; border-bottom: 1px dashed rgba(10,22,40,.15); }
  .nav-toggle { display: inline-flex; }
  .nav .btn-quote { display: none; }
  .services-grid, .reviews-grid, .blog-grid, .steps-grid, .xlink-grid { grid-template-columns: 1fr; }
  .stats-band .container { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .section { padding: 64px 0; }
  .hero { padding: 52px 0 84px; }
  .form-card .badge-247 { top: -20px; right: 4px; }
  .footer .footer-main { grid-template-columns: 1fr; }
  .wave-divider { height: 44px; }
}

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