/* =====================================================================
   PREMIUM GARAGE DOORS - Design System
   Dark glassy-premium. Single accent (orange). One theme (dark).
   Radius rule: buttons = pill, cards/panels = 18px, inputs = 12px.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* surfaces (light theme) */
  --bg: #f6f7fa;
  --bg-2: #eceef3;
  --surface: #ffffff;
  --glass: rgba(255, 255, 255, 0.66);
  --glass-strong: rgba(255, 255, 255, 0.82);
  --border: rgba(20, 28, 46, 0.09);
  --border-strong: rgba(20, 28, 46, 0.16);

  /* text */
  --text: #181c24;
  --text-soft: #454c59;
  --text-mut: #6f7682;

  /* accent (locked, from logo) */
  --accent: #ef6c2d;
  --accent-2: #ff8a3d;
  --accent-deep: #d2531a;
  --accent-glow: rgba(239, 108, 45, 0.30);
  --accent-soft: rgba(239, 108, 45, 0.10);

  /* radii */
  --r-pill: 999px;
  --r-card: 18px;
  --r-input: 12px;
  --r-sm: 10px;

  /* type */
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;

  /* motion */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --curtain-dur: 620ms;

  /* layout */
  --maxw: 1240px;
  --nav-h: 76px;

  /* shadows (tinted, never pure black) */
  --shadow-card: 0 22px 50px -26px rgba(23, 31, 50, 0.30);
  --shadow-glow: 0 20px 52px -18px var(--accent-glow);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--accent); color: #fff; }

/* ---------- Ambient background glows ---------- */
body::before, body::after {
  content: "";
  position: fixed;
  z-index: -2;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.45;
}
body::before {
  width: 60vw; height: 60vw;
  top: -22vw; right: -16vw;
  background: radial-gradient(circle, var(--accent-glow), transparent 62%);
  animation: floatA 16s var(--ease-in-out) infinite alternate;
}
body::after {
  width: 52vw; height: 52vw;
  bottom: -20vw; left: -14vw;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.18), transparent 60%);
  animation: floatB 20s var(--ease-in-out) infinite alternate;
}
.bg-grid {
  position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background-image:
    linear-gradient(rgba(20,28,46,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,28,46,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}
.grain {
  position: fixed; inset: 0; z-index: 60; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@keyframes floatA { to { transform: translate3d(-6vw, 6vh, 0) scale(1.1); } }
@keyframes floatB { to { transform: translate3d(5vw, -5vh, 0) scale(1.08); } }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(64px, 9vw, 128px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
.h-hero { font-size: clamp(2.5rem, 6.2vw, 4.6rem); font-weight: 800; letter-spacing: -0.03em; }
.h-1 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.h-2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.lead { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--text-soft); max-width: 60ch; }
.muted { color: var(--text-mut); }
.accent { color: var(--accent); }
.grad-text {
  background: linear-gradient(100deg, var(--accent-2), var(--accent) 55%, var(--accent-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--accent); opacity: 0.7; }

.section-head { max-width: 64ch; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 16px; }
.section-head.center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --b-bg: var(--glass-strong);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  border: 1px solid var(--border-strong);
  background: var(--b-bg);
  color: var(--text);
  cursor: pointer;
  transition: transform 160ms var(--ease-out), box-shadow 240ms var(--ease-out),
              background 240ms var(--ease-out), border-color 240ms var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(0.97); }

.btn--primary {
  border: none;
  color: #fff;
  background: linear-gradient(100deg, var(--accent-2), var(--accent) 50%, var(--accent-deep));
  box-shadow: 0 10px 26px -10px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn--primary:hover { box-shadow: 0 18px 44px -12px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.4); }

.btn--ghost { background: transparent; }
.btn--ghost:hover { background: var(--glass); border-color: var(--accent); }

.btn--lg { padding: 17px 34px; font-size: 1rem; }
.btn--block { width: 100%; }

/* Homepage "More about us" — centered, larger, orange-fill on hover */
.about-cta { display: flex; justify-content: center; margin-top: clamp(30px, 4vw, 48px); }
.about-cta .btn { padding: 18px 44px; font-size: 1.05rem; }
.about-cta .btn--ghost { background: var(--glass-strong); }
.about-cta .btn--ghost:hover, .about-cta .btn--ghost:focus-visible {
  background: linear-gradient(100deg, var(--accent-2), var(--accent) 55%, var(--accent-deep));
  border-color: transparent; color: #fff;
  box-shadow: 0 16px 38px -12px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.35); }
/* tighten gap between About and Trusted Suppliers */
.about-sec { padding-bottom: clamp(26px, 3vw, 40px); }
.brands-sec { padding-top: clamp(22px, 3vw, 36px); }

/* shine sweep on primary */
.btn--primary::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; overflow: hidden;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  background-size: 220% 100%; background-position: 200% 0;
  opacity: 0; transition: opacity 200ms ease;
}
.btn--primary:hover::after { opacity: 1; animation: shine 900ms var(--ease-out); }
@keyframes shine { from { background-position: 200% 0; } to { background-position: -120% 0; } }

/* ---------- Glass card + spotlight ---------- */
.glass {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,0.85);
}
.spotlight {
  position: relative; overflow: hidden;
  transition: transform 300ms var(--ease-out), border-color 300ms var(--ease-out),
              box-shadow 300ms var(--ease-out);
}
.spotlight::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 0%), var(--accent-soft), transparent 60%);
  opacity: 0; transition: opacity 300ms var(--ease-out);
}
.spotlight:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--shadow-card), var(--shadow-glow); }
.spotlight:hover::before { opacity: 1; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: height 280ms var(--ease-out), background 280ms var(--ease-out),
              border-color 280ms var(--ease-out), backdrop-filter 280ms ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  height: 64px;
  background: rgba(255, 255, 255, 0.78);
  border-bottom-color: var(--border);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.nav__inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; }
.brand img { height: 40px; width: auto; filter: drop-shadow(0 4px 10px rgba(20,28,46,0.14)); }
.nav .brand img { height: 54px; }
.footer__top .brand img { height: 50px; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__txt b { font-size: 1.02rem; }
.brand__txt span { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-mut); margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  position: relative; padding: 9px 15px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 0.93rem; color: var(--text-soft);
  transition: color 200ms ease, background 200ms ease;
}
.nav__links a:hover { color: var(--text); background: var(--glass); }
.nav__links a.active { color: var(--text); }
.nav__links a.active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 2px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.92rem; color: var(--text); margin-right: 8px; }
.nav__phone svg { width: 17px; height: 17px; color: var(--accent); }

.burger { display: none; width: 46px; height: 46px; border-radius: var(--r-sm); border: 1px solid var(--border); background: var(--glass);
  align-items: center; justify-content: center; cursor: pointer; }
.burger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; position: relative; transition: transform 240ms var(--ease-out), opacity 200ms ease; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 240ms var(--ease-out); }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span::after { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu (glass slide-in) */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; display: flex; flex-direction: column; justify-content: center;
  padding: 96px 28px 40px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(22px) saturate(140%); -webkit-backdrop-filter: blur(22px) saturate(140%);
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform 480ms var(--ease-drawer), opacity 300ms ease;
}
body.menu-open .mobile-menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--text-soft); }
.mobile-menu a.active, .mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn { margin-top: 28px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: calc(var(--nav-h) + clamp(40px, 8vw, 88px)); padding-bottom: clamp(60px, 9vw, 110px); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
.hero__chip {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px 8px 12px; border-radius: var(--r-pill);
  background: var(--glass); border: 1px solid var(--border); font-size: 0.82rem; font-weight: 600; color: var(--text-soft); margin-bottom: 26px;
}
.hero__chip .dot { width: 8px; height: 8px; border-radius: 50%; background: #43d17a; box-shadow: 0 0 0 4px rgba(67,209,122,0.18); }
.hero p.lead { margin-top: 22px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); }
.hero__trust li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-soft); }
.hero__trust svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

/* hero visual */
.hero__visual { position: relative; }
.hero__media {
  position: relative; border-radius: 24px; overflow: hidden; border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card), var(--shadow-glow); aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #e9ebf0, #dde0e7);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 800ms var(--ease-out); }
.hero__media:hover img { transform: scale(1.07); }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,9,12,0.55), transparent 45%); }

.hero__float {
  position: absolute; left: -26px; bottom: 34px; z-index: 3;
  padding: 16px 20px; border-radius: 16px; display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.84); border: 1px solid var(--border-strong);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-card);
  animation: floatCard 6s var(--ease-in-out) infinite alternate;
}
.hero__float .num { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; }
.hero__float .lbl { font-size: 0.78rem; color: var(--text-mut); }
.hero__rating { position: absolute; right: -18px; top: 30px; z-index: 3; padding: 12px 16px; border-radius: 14px;
  background: rgba(255,255,255,0.84); border: 1px solid var(--border-strong); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-card); animation: floatCard 7s 0.5s var(--ease-in-out) infinite alternate; }
.hero__rating .stars { color: var(--accent); letter-spacing: 2px; font-size: 0.95rem; }
.hero__rating .lbl { font-size: 0.74rem; color: var(--text-mut); margin-top: 2px; }
@keyframes floatCard { to { transform: translateY(-12px); } }

/* ---------- Marquee (one per site) ---------- */
.marquee { border-block: 1px solid var(--border); background: var(--bg-2); overflow: hidden; padding-block: 18px; }
.marquee__track { display: flex; gap: 46px; width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span { display: inline-flex; align-items: center; gap: 14px; font-family: var(--font-display); font-weight: 700;
  font-size: 1.05rem; color: var(--text-mut); white-space: nowrap; }
.marquee span::after { content: "✦"; color: var(--accent); font-size: 0.8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Services grid ---------- */
.grid-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card { padding: 30px; display: flex; flex-direction: column; gap: 16px; min-height: 100%; }
.svc-card__icon {
  width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--accent-soft), transparent); border: 1px solid var(--border-strong); color: var(--accent);
}
.svc-card__icon svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 1.22rem; }
.svc-card p { color: var(--text-mut); font-size: 0.95rem; }
.svc-card .more { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-weight: 700; font-size: 0.9rem; }
.svc-card .more svg { width: 16px; height: 16px; transition: transform 240ms var(--ease-out); }
.svc-card:hover .more svg { transform: translateX(4px); }
.svc-incl { display: grid; gap: 10px; margin-top: 6px; padding-top: 18px; border-top: 1px solid var(--border); }
.svc-incl li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-soft); }
.svc-incl svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* ---------- Split / feature rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--border-strong); box-shadow: var(--shadow-card); aspect-ratio: 5/4; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.badges { display: flex; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.badges img { height: 76px; width: auto; border-radius: 14px; background: #fff; padding: 9px; }

/* feature list */
.feature-list { display: grid; gap: 16px; margin-top: 8px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .ic { width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent); border: 1px solid var(--border); }
.feature-list .ic svg { width: 19px; height: 19px; }
.feature-list b { font-family: var(--font-display); font-weight: 700; }
.feature-list p { color: var(--text-mut); font-size: 0.92rem; margin-top: 2px; }

/* ---------- Why-choose cards (4) ---------- */
.grid-why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card { padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.why-card .ic { width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--accent-soft), transparent); border: 1px solid var(--border-strong); color: var(--accent); }
.why-card .ic svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 1.08rem; }
.why-card p { color: var(--text-mut); font-size: 0.9rem; }

/* ---------- Process timeline ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 28px; }
.step__n { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1;
  background: linear-gradient(160deg, var(--accent-2), var(--accent-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step h3 { font-size: 1.1rem; margin-top: 12px; }
.step p { color: var(--text-mut); font-size: 0.9rem; margin-top: 8px; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 44px; right: -12px; width: 24px; height: 1px; background: var(--border-strong); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 30px 18px; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1; }
.stat .num .suf { color: var(--accent); }
.stat .lbl { color: var(--text-mut); margin-top: 10px; font-size: 0.9rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.gallery figure { position: relative; overflow: hidden; border-radius: var(--r-card); border: 1px solid var(--border); }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out); }
.gallery figure:hover img { transform: scale(1.08); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; font-family: var(--font-display); font-weight: 700; color: #fff;
  background: linear-gradient(to top, rgba(8,9,12,0.88), rgba(8,9,12,0.15) 70%, transparent); }
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }

/* Home bento gallery — perfect-fill mosaic */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 224px; gap: 16px; }
.bento figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--r-card); border: 1px solid var(--border); }
.bento figure img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 700ms var(--ease-out); }
.bento figure:hover img { transform: scale(1.06); }
.bento figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; font-family: var(--font-display); font-weight: 700; color: #fff;
  background: linear-gradient(to top, rgba(8,9,12,0.88), rgba(8,9,12,0.15) 70%, transparent); }
.bento .b-hero { grid-column: span 2; grid-row: span 2; }
.bento .b-wide { grid-column: span 2; }

/* Floating WhatsApp button — pill with label, gentle float */
.wa-float { position: fixed; right: 24px; bottom: 24px; z-index: 9980;
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 20px 13px 15px; border-radius: 999px;
  background: #25d366; color: #fff; text-decoration: none;
  font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; line-height: 1;
  box-shadow: 0 12px 30px rgba(37,211,102,0.45);
  animation: waFloat 3.2s ease-in-out infinite;
  transition: box-shadow 240ms ease, background 240ms ease; }
.wa-float:hover { background: #1ebe5d; box-shadow: 0 18px 44px rgba(37,211,102,0.62); }
.wa-float svg { width: 27px; height: 27px; flex-shrink: 0; }
.wa-float__txt { white-space: nowrap; }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 999px; background: #25d366; z-index: -1;
  animation: waHalo 2.8s ease-out infinite; }
@keyframes waFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes waHalo { 0% { opacity: 0.5; transform: scale(1); } 70%, 100% { opacity: 0; transform: scale(1.14); } }
@media (max-width: 560px) {
  .wa-float { right: 15px; bottom: 15px; padding: 12px 18px 12px 14px; gap: 9px; font-size: 0.95rem; }
  .wa-float svg { width: 25px; height: 25px; } }
@media (prefers-reduced-motion: reduce) { .wa-float, .wa-float::before { animation: none; } }
@media (max-width: 880px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; gap: 16px; }
  .bento .b-hero { grid-column: span 2; grid-row: span 2; }
  .bento .b-wide { grid-column: span 1; }
}
@media (max-width: 560px) { .bento { grid-auto-rows: 150px; gap: 12px; } }

/* ---------- Brand / supplier wall ---------- */
.brands { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.brand-card { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  padding: 32px 22px 24px; min-height: 178px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card);
  overflow: hidden; isolation: isolate; box-shadow: 0 6px 18px rgba(20,28,46,0.05);
  transition: transform 420ms var(--ease-out), box-shadow 420ms ease, border-color 420ms ease; }
/* soft inner glow on hover */
.brand-card .glow { content: ""; position: absolute; left: 50%; top: -20%; width: 75%; height: 150px; transform: translateX(-50%);
  background: radial-gradient(closest-side, var(--accent-glow), transparent); opacity: 0; transition: opacity 450ms ease; pointer-events: none; z-index: 0; }
/* top accent bar */
.brand-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 3;
  background: linear-gradient(90deg, var(--accent), var(--accent-2)); transform: scaleX(0); transform-origin: left;
  transition: transform 480ms var(--ease-out); }
/* sheen sweep */
.brand-card::after { content: ""; position: absolute; top: 0; bottom: 0; width: 45%; left: -70%; z-index: 2;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.65), transparent); transform: skewX(-18deg);
  transition: left 750ms var(--ease-out); pointer-events: none; }
.brand-card img { max-width: 84%; max-height: 76px; width: auto; height: auto; object-fit: contain; position: relative; z-index: 1;
  transition: transform 420ms var(--ease-out); }
.brand-card__name { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.02em; color: var(--text-mut); transition: color 320ms ease; }
.brand-card:hover { transform: translateY(-8px); border-color: var(--accent-soft); box-shadow: 0 24px 48px rgba(239,108,45,0.16); }
.brand-card:hover .glow { opacity: 1; }
.brand-card:hover::before { transform: scaleX(1); }
.brand-card:hover::after { left: 125%; }
.brand-card:hover img { transform: scale(1.07); }
.brand-card:hover .brand-card__name { color: var(--accent); }
@media (max-width: 900px) { .brands { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 560px) { .brand-card { min-height: 148px; padding: 26px 14px 18px; gap: 12px; } .brand-card img { max-height: 58px; } }

/* ---------- Suburb / service-area pages ---------- */
.feature-badges.feature-badges--flat { margin-top: 0; }
.area-services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.area-card { position: relative; display: flex; flex-direction: column; gap: 13px; padding: 26px 22px; border-radius: var(--r-card);
  background: var(--glass); border: 1px solid var(--border); overflow: hidden; isolation: isolate;
  transition: transform 420ms var(--ease-out), box-shadow 420ms ease, border-color 420ms ease; }
.area-card::before { content: ""; position: absolute; left: 50%; top: -34%; width: 72%; height: 130px; transform: translateX(-50%);
  background: radial-gradient(closest-side, var(--accent-glow), transparent); opacity: 0; transition: opacity 450ms ease; pointer-events: none; z-index: 0; }
.area-card > * { position: relative; z-index: 1; }
.area-card .ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--accent-soft), transparent); border: 1px solid var(--border-strong); color: var(--accent); }
.area-card .ic svg { width: 24px; height: 24px; }
.area-card h3 { font-family: var(--font-display); font-size: 1.04rem; line-height: 1.2; }
.area-card p { color: var(--text-mut); font-size: 0.88rem; flex: 1; }
.area-card .more { display: inline-flex; align-items: center; gap: 7px; color: var(--accent); font-weight: 700; font-size: 0.85rem; }
.area-card .more svg { width: 16px; height: 16px; transition: transform 320ms var(--ease-out); }
.area-card:hover { transform: translateY(-7px); border-color: var(--accent-soft); box-shadow: 0 22px 46px rgba(239,108,45,0.15); }
.area-card:hover::before { opacity: 1; }
.area-card:hover .more svg { transform: translateX(5px); }
@media (max-width: 1024px) { .area-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .area-services { grid-template-columns: repeat(2, 1fr); gap: 12px; } .area-card { padding: 18px 14px; gap: 10px; } .area-card h3 { font-size: 0.92rem; } .area-card p { font-size: 0.8rem; } .area-card .ic { width: 42px; height: 42px; } }
/* suburb hero title: two lines (phrase + suburb), shrunk to fit one line each */
.hero2 .area-hero-title { font-size: clamp(1.3rem, 6vw, 2.8rem); line-height: 1.12; letter-spacing: -0.02em; }
.area-hero-title .area-line { display: block; white-space: nowrap; }
/* suburb service-image cards: 4 across on desktop */
.svc2.svc2--area { grid-template-columns: repeat(4, 1fr); }
.svc2-card { cursor: pointer; }
@media (max-width: 560px) { .areas-grid a { font-size: 0.84rem; padding: 11px 12px; gap: 7px; } }

/* ---------- Testimonials ---------- */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.t-card { padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.t-card .stars { color: var(--accent); letter-spacing: 2px; }
.t-card p { color: var(--text-soft); font-size: 0.96rem; }
.t-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.t-card .avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; color: #fff; background: linear-gradient(150deg, var(--accent-2), var(--accent-deep)); }
.t-card .who b { display: block; font-family: var(--font-display); }
.t-card .who span { font-size: 0.82rem; color: var(--text-mut); }

/* ---------- Service areas chips ---------- */
.areas { display: flex; flex-wrap: wrap; gap: 12px; }
.areas-grid a {
  display: inline-flex; align-items: center; justify-content: flex-start; gap: 9px; padding: 12px 18px; border-radius: var(--r-pill);
  background: var(--glass); border: 1px solid var(--border); font-weight: 600; font-size: 0.92rem; color: var(--text-soft);
  flex-wrap: nowrap; white-space: nowrap; transition: all 240ms var(--ease-out);
}
.areas-grid a svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; transition: color 240ms var(--ease-out); }
.areas-grid a:hover, .areas-grid a:focus-visible { border-color: var(--accent); color: #fff; background: var(--accent); transform: translateY(-2px); box-shadow: 0 10px 24px var(--accent-glow); }
.areas-grid a:hover svg, .areas-grid a:focus-visible svg { color: #fff; }
.areas-grid a:active { transform: scale(0.98); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: 28px; padding: clamp(40px, 6vw, 72px);
  background: linear-gradient(135deg, rgba(255,106,26,0.16), rgba(255,138,61,0.05)); border: 1px solid var(--border-strong); text-align: center; }
.cta-band::before { content: ""; position: absolute; width: 50%; height: 200%; top: -50%; left: 25%;
  background: radial-gradient(circle, var(--accent-glow), transparent 65%); filter: blur(50px); opacity: 0.7; z-index: -1; }
.cta-band .h-1 { max-width: 18ch; margin-inline: auto; }
.cta-band .lead { margin: 18px auto 0; }
.cta-band .hero__actions { justify-content: center; }

/* ===== 24/7 Emergency band ===== */
.emerg-band { position: relative; overflow: hidden; border-radius: 28px;
  padding: clamp(34px, 5.5vw, 64px);
  background: linear-gradient(135deg, var(--accent-deep), var(--accent) 55%, var(--accent-2));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 28px 70px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.22);
  color: #fff; text-align: left; }
.emerg-band__glow { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(120% 90% at 100% 0%, rgba(255,255,255,0.22), transparent 55%),
              radial-gradient(90% 70% at 0% 100%, rgba(0,0,0,0.14), transparent 60%); }
.emerg-band > * { position: relative; z-index: 1; }
.emerg-band__pulse { display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: var(--r-pill); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(6px); }
.emerg-band__dot { width: 9px; height: 9px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7); animation: emergPulse 1.8s ease-out infinite; }
@keyframes emergPulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }
.emerg-band__title { font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.7rem, 4.2vw, 3rem); line-height: 1.1; letter-spacing: -0.02em;
  margin: 20px 0 0; max-width: 22ch; }
.emerg-band__text { margin: 18px 0 0; max-width: 60ch; font-size: 1.04rem;
  line-height: 1.7; color: rgba(255,255,255,0.94); }
.emerg-band__btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 30px; padding: 17px 30px; border-radius: 14px; width: 100%; max-width: 560px;
  background: #fff; color: var(--accent-deep); font-weight: 800; font-size: 1.02rem;
  border: none; cursor: pointer; transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out); }
.emerg-band__btn svg { width: 20px; height: 20px; }
.emerg-band__btn:hover, .emerg-band__btn:focus-visible {
  transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0,0,0,0.22); }
@media (max-width: 560px) {
  .emerg-band { text-align: left; border-radius: 22px; }
  .emerg-band__title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .emerg-band__text { font-size: 0.97rem; }
  .emerg-band__btn { padding: 15px 20px; font-size: 0.95rem; }
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 4vw, 52px); align-items: stretch; }
.info-card { padding: 26px; display: flex; gap: 16px; align-items: center; }
.info-card .ic { width: 50px; height: 50px; flex-shrink: 0; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--accent-soft), transparent); border: 1px solid var(--border-strong); color: var(--accent); }
.info-card .ic svg { width: 23px; height: 23px; }
.info-card h3 { font-size: 1.02rem; }
.info-card a, .info-card p { color: var(--text-soft); font-size: 0.96rem; word-break: break-word; }
.info-card a:hover { color: var(--accent); }
.info-stack { display: grid; gap: 16px; grid-auto-rows: 1fr; height: 100%; }

/* forms */
.form { padding: clamp(24px, 3vw, 36px); display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--text-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--r-input);
  background: #ffffff; border: 1px solid var(--border); color: var(--text);
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: #6b707b; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: #ffffff;
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.field .err { font-size: 0.8rem; color: #d23f1f; min-height: 1em; }
.form__note { font-size: 0.82rem; color: var(--text-mut); }
.form__ok { display: none; padding: 16px 18px; border-radius: var(--r-input); background: rgba(67,209,122,0.12);
  border: 1px solid rgba(31,150,84,0.4); color: #1c7a44; font-weight: 600; }
.form__ok.show { display: block; }
.form__err { display: none; padding: 16px 18px; border-radius: var(--r-input); background: rgba(255,90,60,0.12);
  border: 1px solid rgba(214,77,45,0.45); color: #c0381e; font-weight: 600; }
.form__err.show { display: block; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); background: var(--bg-2); padding-top: clamp(48px, 6vw, 80px); margin-top: 40px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.footer h4 { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mut); margin-bottom: 18px; }
.footer__col p { color: var(--text-mut); font-size: 0.92rem; max-width: 34ch; margin-top: 14px; }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a { color: var(--text-soft); font-size: 0.93rem; transition: color 200ms ease; }
.footer__col a:hover { color: var(--accent); }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; color: var(--text-soft); font-size: 0.93rem; margin-bottom: 11px; }
.footer__contact svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-block: 24px; border-top: 1px solid var(--border); color: var(--text-mut); font-size: 0.86rem; }
.footer__bottom .brand img { height: 30px; }
.footer__legal { display: flex; gap: 22px; align-items: center; justify-content: center; flex-wrap: wrap; }
.footer__legal a { position: relative; color: var(--text-mut); font-size: 0.86rem; transition: color 200ms ease; }
.footer__legal a:hover { color: var(--accent); }
.footer__legal a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 240ms var(--ease-out); }
.footer__legal a:hover::after { transform: scaleX(1); }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--border); color: var(--text-soft); background: var(--glass);
  transition: transform 240ms var(--ease-out), color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease; }
.footer__social a:hover { color: #fff; background: var(--accent); border-color: var(--accent);
  transform: translateY(-3px); box-shadow: 0 10px 22px var(--accent-glow); }
.footer__social svg { width: 19px; height: 19px; }

/* ---------- Legal pages (privacy / terms) ---------- */
.legal-wrap { max-width: 880px; margin-inline: auto; }
.legal-card { padding: clamp(26px, 4vw, 54px); position: relative; overflow: hidden; }
.legal-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: radial-gradient(120% 90% at 50% -10%, rgba(239,108,45,0.16), transparent 62%); animation: legalGlow 6.5s ease-in-out infinite; }
@keyframes legalGlow { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
.legal-prose { position: relative; z-index: 1; }
.legal-prose h2 { font-family: var(--font-display); font-size: clamp(1.22rem, 2.4vw, 1.6rem); margin: 32px 0 12px; }
.legal-prose h2:first-of-type { margin-top: 0; }
.legal-prose h3 { font-size: 1.04rem; margin: 22px 0 8px; }
.legal-prose p, .legal-prose li { color: var(--text-soft); line-height: 1.75; font-size: 0.97rem; }
.legal-prose p { margin-bottom: 14px; }
.legal-prose ul { display: grid; gap: 8px; margin: 0 0 16px; padding-left: 22px; list-style: disc; }
.legal-prose a { color: var(--accent); word-break: break-word; }
.legal-prose strong { color: var(--text); }
.legal-meta { color: var(--text-mut); font-size: 0.88rem; margin-bottom: 26px; }

/* ---------- Page curtain (garage-door transition) ---------- */
.curtain { position: fixed; inset: 0; z-index: 9998; display: flex; flex-direction: column; pointer-events: none; }
.curtain__slat {
  flex: 1; transform: translateY(-101vh);
  background: linear-gradient(180deg, #ffffff 0%, #eef0f4 100%);
  border-bottom: 1px solid rgba(20,28,46,0.06);
  box-shadow: inset 0 -10px 24px -18px rgba(20,28,46,0.16), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform var(--curtain-dur) var(--ease-drawer);
  transition-delay: var(--d, 0ms);
}
.curtain__brand {
  position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: 0; transition: opacity 260ms ease;
}
.curtain__brand img { height: 64px; filter: drop-shadow(0 0 30px var(--accent-glow)); }
/* covering instantly on arrival (set by inline head script) */
html.is-covering .curtain__slat { transform: translateY(0); transition: none; }
html.is-covering .curtain__brand { opacity: 1; transition: none; }
/* closing (leaving) */
.curtain.is-closing { pointer-events: auto; }
.curtain.is-closing .curtain__slat { transform: translateY(0); }
.curtain.is-closing ~ .curtain__brand,
.curtain.is-closing + .curtain__brand { opacity: 1; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); filter: blur(4px);
  transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out), filter 720ms var(--ease-out);
  transition-delay: var(--rd, 0ms); }
.reveal.in { opacity: 1; transform: none; filter: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 520px; }
  .grid-services { grid-template-columns: repeat(2, 1fr); }
  .grid-why { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .t-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav__links, .nav__phone { display: none; }
  .burger { display: flex; }
  .nav__cta { gap: 12px; }
  .nav__cta .btn { display: inline-flex; padding: 11px 18px; font-size: 0.85rem; }
  /* center split-section headings on mobile */
  .split__body, .areas-split > div { text-align: center; }
  .split__body .eyebrow, .areas-split > div .eyebrow { justify-content: center; }
  .split__body .feature-list, .split__body .why-list { display: inline-block; text-align: left; }
  .split, .split--rev .split__media, .contact-grid { grid-template-columns: 1fr; }
  .info-stack { height: auto; grid-auto-rows: auto; }
  .who-split { grid-template-columns: 1fr 1fr; gap: 12px !important; }
  .split--rev .split__media { order: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery .wide { grid-column: span 2; }
  .gallery .tall { grid-row: span 1; }
}
@media (max-width: 480px) {
  .nav .brand img { height: 42px; }
  .nav__cta .btn { padding: 9px 13px; font-size: 0.78rem; }
  .burger { width: 42px; height: 42px; }
}
@media (max-width: 640px) {
  .container { padding-inline: 18px; }
  .stats, .grid-services, .grid-why, .steps, .t-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__float { left: 0; }
  .hero__rating { right: 0; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .stat { padding: 22px; }
}

/* ---------- Reduced transparency fallback ---------- */
@media (prefers-reduced-transparency: reduce) {
  .glass, .nav.scrolled, .mobile-menu, .hero__float, .hero__rating { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--surface); }
}

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

/* ============================================================
   HOME REDESIGN — richer, reference-style sections
   ============================================================ */

/* ---- Hero with background image + quote form ---- */
.hero2 { position: relative; padding-top: calc(var(--nav-h) + clamp(40px,6vw,76px)); padding-bottom: clamp(110px,12vw,170px); overflow: hidden; }
.hero2__bg { position: absolute; inset: 0; z-index: -1; }
.hero2__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero2__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, var(--bg) 26%, rgba(246,247,250,0.90) 46%, rgba(246,247,250,0.45) 72%, rgba(246,247,250,0.20) 100%),
    linear-gradient(to top, var(--bg) 2%, transparent 38%);
}
.hero2__grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(28px,4vw,60px); align-items: center; }
/* Centered inner-page hero variant (even light scrim) */
.hero2--center { padding-top: calc(var(--nav-h) + clamp(48px,6vw,84px)); padding-bottom: clamp(56px,7vw,92px); }
.hero2--center .hero2__bg::after { background: linear-gradient(180deg, rgba(246,247,250,0.74), rgba(246,247,250,0.93) 70%, var(--bg)); }
.hero2--center .section-head { margin-bottom: 0; }
.mini-trust { display: flex; align-items: center; gap: 18px; margin-top: 30px; flex-wrap: wrap; }
.mini-trust .stars { color: var(--accent); letter-spacing: 3px; font-size: 1.34rem; }
.mini-trust b { font-family: var(--font-display); }
.mini-trust small { display: block; color: var(--text-mut); font-size: 0.92rem; margin-top: 4px; }
.mini-trust .sep { width: 1px; height: 48px; background: var(--border-strong); align-self: center; }
.mini-trust .badges { margin-top: 0; align-items: center; flex-wrap: nowrap; flex-shrink: 0; }
.mini-trust .badges img { height: 62px; }
.mini-trust > div:not(.badges) { display: flex; flex-direction: column; justify-content: center; }

/* Quote form card (hero) */
.quote-card { padding: clamp(22px,2.4vw,32px); border-radius: 22px; }
.quote-card h3 { font-size: 1.32rem; }
.quote-card .small { color: var(--text-mut); font-size: 0.88rem; margin: 4px 0 18px; }
.quote-card .form-grid { display: grid; gap: 13px; }
.quote-card .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }

/* ---- Feature badges (overlap hero) ---- */
.feature-badges { position: relative; z-index: 3; margin-top: clamp(-86px,-6vw,-66px); }
.feature-badges .grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.fb-card { padding: 22px; display: flex; gap: 15px; align-items: center; border-radius: 16px; }
.fb-card .ic { width: 48px; height: 48px; flex-shrink: 0; border-radius: 13px; display: flex; align-items: center; justify-content: center; background: linear-gradient(150deg,var(--accent-soft),transparent); border: 1px solid var(--border-strong); color: var(--accent); }
.fb-card .ic svg { width: 24px; height: 24px; }
.fb-card b { font-family: var(--font-display); display: block; font-size: 0.98rem; }
.fb-card span { font-size: 0.8rem; color: var(--text-mut); }

/* ---- Services image cards ---- */
.svc2 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.svc2-card { overflow: hidden; border-radius: var(--r-card); display: flex; flex-direction: column; }
.svc2-card__img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #e9ebf0; }
.svc2-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out); }
.svc2-card:hover .svc2-card__img img { transform: scale(1.07); }
.svc2-card__img .chip { position: absolute; left: 14px; bottom: 14px; width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.92); backdrop-filter: blur(6px); color: var(--accent); box-shadow: var(--shadow-card); }
.svc2-card__img .chip svg { width: 23px; height: 23px; }
.svc2-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc2-card__body h3 { font-size: 1.16rem; }
.svc2-card__body p { color: var(--text-mut); font-size: 0.92rem; }
.svc2-card .more { margin-top: auto; color: var(--accent); font-weight: 700; font-size: 0.9rem; display: inline-flex; gap: 8px; align-items: center; }
.svc2-card .more svg { width: 16px; height: 16px; transition: transform 240ms var(--ease-out); }
.svc2-card:hover .more svg { transform: translateX(4px); }

/* ---- Why split list + media overlay ---- */
.why-list { display: grid; gap: 18px; margin-top: 6px; }
.why-list li { display: flex; gap: 16px; align-items: flex-start; }
.why-list .ic { width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: linear-gradient(150deg,var(--accent-soft),transparent); border: 1px solid var(--border-strong); color: var(--accent); }
.why-list .ic svg { width: 23px; height: 23px; }
.why-list b { font-family: var(--font-display); font-size: 1.06rem; }
.why-list p { color: var(--text-mut); font-size: 0.92rem; margin-top: 3px; }
.media-stat { position: absolute; left: 18px; bottom: 18px; padding: 15px 20px; border-radius: 16px; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); box-shadow: var(--shadow-card); }
.media-stat .num { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--accent); line-height: 1; }
.media-stat .lbl { font-size: 0.78rem; color: var(--text-mut); margin-top: 4px; }

/* ---- Stats band (orange) ---- */
.stats-band { position: relative; overflow: hidden; border-radius: 24px; padding: clamp(34px,4vw,54px); background: linear-gradient(120deg,var(--accent-deep),var(--accent) 58%,var(--accent-2)); box-shadow: var(--shadow-glow); }
.stats-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% -25%, rgba(255,255,255,0.28), transparent 42%); pointer-events: none; }
.stats-band .grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; position: relative; }
.stats-band .stat { text-align: center; color: #fff; }
.stats-band .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem,4vw,3rem); line-height: 1; }
.stats-band .lbl { margin-top: 8px; font-size: 0.9rem; color: rgba(255,255,255,0.92); }
.stats-band .stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.2); }

/* ---- Timeline ---- */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.timeline::before { content: ""; position: absolute; top: 29px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg,transparent,var(--accent),transparent); }
.tl-step { position: relative; text-align: center; }
.tl-step .dot { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: #fff; background: linear-gradient(150deg,var(--accent-2),var(--accent-deep)); box-shadow: 0 10px 24px -10px var(--accent-glow); position: relative; z-index: 1; }
.tl-step h3 { font-size: 1.06rem; }
.tl-step p { color: var(--text-mut); font-size: 0.9rem; margin-top: 8px; }

/* ---- Emergency band ---- */
.emergency { position: relative; overflow: hidden; border-radius: 24px; padding: clamp(28px,4vw,46px); display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; background: linear-gradient(120deg,#1b1e26,#2b303c); box-shadow: var(--shadow-card); }
.emergency::before { content: ""; position: absolute; right: -8%; top: -60%; width: 46%; height: 220%; background: radial-gradient(circle,var(--accent-glow),transparent 62%); }
.emergency__l { display: flex; align-items: center; gap: 20px; position: relative; }
.emergency__l .ic { width: 64px; height: 64px; flex-shrink: 0; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: var(--accent); color: #fff; box-shadow: 0 0 0 8px rgba(239,108,45,0.2); }
.emergency__l .ic svg { width: 32px; height: 32px; }
.emergency h3 { color: #fff; font-size: clamp(1.3rem,2.4vw,1.85rem); }
.emergency p { color: rgba(255,255,255,0.72); font-size: 0.95rem; margin-top: 4px; }
.emergency .actions { position: relative; display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- Areas split ---- */
.areas-split { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: clamp(28px,4vw,52px); align-items: center; }
.areas-card { position: relative; overflow: hidden; padding: clamp(26px,3vw,40px); border-radius: var(--r-card); }
.areas-card .area-pin-bg { position: absolute; right: -34px; bottom: -34px; width: 200px; height: 200px; opacity: 0.07; color: var(--accent); pointer-events: none; }
.areas-grid { display: flex; flex-wrap: wrap; gap: 12px; position: relative; }

/* ---- Section tints / quote mark ---- */
.section-tint { background: var(--bg-2); border-block: 1px solid var(--border); }
.t-card .quote-mark { font-family: var(--font-display); font-size: 3rem; line-height: 0.5; color: var(--accent); opacity: 0.45; }

/* ---- Responsive (redesign) ---- */
@media (max-width: 1024px) {
  .hero2__grid { grid-template-columns: 1fr; }
  .hero2__bg::after { background: linear-gradient(to top, var(--bg) 6%, rgba(246,247,250,0.82) 46%, rgba(246,247,250,0.5)); }
  .feature-badges .grid { grid-template-columns: repeat(2,1fr); }
  .svc2 { grid-template-columns: repeat(2,1fr); }
  .stats-band .grid { grid-template-columns: repeat(2,1fr); }
  .stats-band .stat:nth-child(2) { border-right: none; }
  .timeline { grid-template-columns: repeat(2,1fr); row-gap: 36px; }
  .timeline::before { display: none; }
  .areas-split { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 640px) {
  .hero2__grid, .feature-badges .grid, .svc2, .stats-band .grid, .timeline, .quote-card .row2, .areas-grid { grid-template-columns: 1fr; }
  .feature-badges { margin-top: 28px; }
  .stats-band .stat { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 18px; }
  .stats-band .stat:last-child { border-bottom: none; }
  .emergency { flex-direction: column; align-items: flex-start; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ICON CLIP GUARD + MOBILE 2x2 GRIDS + CUSTOM DROPDOWN
   ============================================================ */

/* Inline icons never clip, at any size */
.nav__phone svg, .footer__contact svg, .feature-list .ic svg, .why-list .ic svg,
.info-card .ic svg, .svc-card__icon svg, .svc2-card__img .chip svg, .why-card .ic svg,
.fb-card .ic svg, .areas a svg, .btn svg, .more svg, .svc-incl svg, .mini-trust svg,
.emergency__l .ic svg, .nav__links svg, .cselect__btn svg { overflow: visible; }

/* ---- Custom dropdown (replaces native select) ---- */
.cselect { position: relative; width: 100%; }
.cselect > select { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; left: -9999px; }
.cselect__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 13px 16px; border-radius: var(--r-input); background: #fff; border: 1px solid var(--border);
  color: var(--text); font: inherit; cursor: pointer; text-align: left;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  -webkit-tap-highlight-color: transparent; user-select: none; -webkit-user-select: none;
}
.cselect__btn .chev { width: 18px; height: 18px; color: var(--text-mut); flex-shrink: 0; transition: transform 200ms var(--ease-out); }
.cselect__btn[aria-expanded="true"] { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.cselect__btn[aria-expanded="true"] .chev { transform: rotate(180deg); }
.cselect__btn.placeholder { color: #6b707b; }
.cselect__panel {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 40;
  background: #fff; border: 1px solid var(--border-strong); border-radius: var(--r-input);
  box-shadow: var(--shadow-card); padding: 6px; max-height: 260px; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
  opacity: 0; transform: translateY(-6px) scale(0.99); transform-origin: top center; pointer-events: none;
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}
.cselect.open .cselect__panel, .cselect__panel.open { opacity: 1; transform: none; pointer-events: auto; }
.cselect__opt { padding: 12px 13px; border-radius: 9px; cursor: pointer; font-size: 0.95rem; color: var(--text-soft); transition: background 140ms ease, color 140ms ease; -webkit-tap-highlight-color: transparent; user-select: none; -webkit-user-select: none; }
.cselect__opt:hover, .cselect__opt.active { background: var(--accent-soft); color: var(--text); }
@media (prefers-reduced-motion: reduce) { .cselect__panel { transition: none; } }

/* ---- Mobile: cards in 2x2 grid + tight fit ---- */
@media (max-width: 720px) {
  .svc2, .grid-services, .grid-why, .feature-badges .grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .svc2-card__img { aspect-ratio: 4 / 3; }
  .svc2-card__img .chip { width: 36px; height: 36px; left: 8px; bottom: 8px; }
  .svc2-card__img .chip svg { width: 18px; height: 18px; }
  .svc2-card__body { padding: 14px 13px; gap: 7px; }
  .svc2-card__body h3 { font-size: 0.98rem; line-height: 1.15; }
  .svc2-card__body p { font-size: 0.8rem; }
  .svc2-card .more { font-size: 0.82rem; }
  .why-card { padding: 18px 15px; gap: 10px; }
  .why-card .ic { width: 42px; height: 42px; }
  .why-card h3 { font-size: 0.98rem; }
  .why-card p { font-size: 0.82rem; }
  .fb-card { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px 14px; }
  .feature-badges { margin-top: 26px; }
}

/* ---- Mobile: prevent overflow, perfect fit ---- */
@media (max-width: 640px) {
  html, body { max-width: 100%; overflow-x: hidden; }
  .h-hero { font-size: clamp(2rem, 9vw, 2.7rem); }
  .h-1 { font-size: clamp(1.6rem, 7vw, 2rem); }
  .section { padding-block: clamp(48px, 12vw, 72px); }
  .stats-band, .emergency, .cta-band, .areas-card { padding: 26px 20px; }
  .quote-card { padding: 20px 16px; }
  .hero2 { padding-bottom: clamp(80px, 18vw, 120px); }
  .emergency .actions { width: 100%; }
  .emergency .actions .btn { flex: 1; justify-content: center; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery .wide, .gallery .tall { grid-column: auto; grid-row: auto; }
  .badges { flex-wrap: nowrap; }
  .badges img { height: 58px; }
  .map-card iframe, .glass iframe { height: 300px; }
}

/* ============================================================
   MOBILE V2 — glassy drawer menu, 2x2 grids, motion, footer
   ============================================================ */

/* Glassy header on mobile (always frosted) */
@media (max-width: 860px) {
  .nav { background: rgba(255,255,255,0.6); backdrop-filter: blur(18px) saturate(150%); -webkit-backdrop-filter: blur(18px) saturate(150%); border-bottom: 1px solid var(--border); }
  .nav.scrolled { background: rgba(255,255,255,0.78); }
}

/* Right-side glassy drawer */
.nav-scrim { position: fixed; inset: 0; z-index: 98; background: rgba(12,14,20,0.42); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); opacity: 0; pointer-events: none; transition: opacity 360ms var(--ease-out); }
body.menu-open .nav-scrim { opacity: 1; pointer-events: auto; }
.mobile-menu {
  top: 0; right: 0; bottom: 0; left: auto; width: min(80%, 330px); height: 100%;
  padding: 96px 26px 32px; justify-content: flex-start; gap: 0;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(28px) saturate(165%); -webkit-backdrop-filter: blur(28px) saturate(165%);
  border-left: 1px solid rgba(255,255,255,0.65);
  box-shadow: -30px 0 70px -22px rgba(20,28,46,0.4);
  transform: translateX(106%); opacity: 1; overflow: hidden;
  transition: transform 520ms var(--ease-drawer);
}
.mobile-menu::before { content: ""; position: absolute; top: -25%; right: -35%; width: 240px; height: 240px;
  background: radial-gradient(circle, var(--accent-glow), transparent 66%); filter: blur(18px); pointer-events: none;
  animation: drawerGlow 7s var(--ease-in-out) infinite alternate; }
@keyframes drawerGlow { to { transform: translate(-26px, 46px) scale(1.18); } }
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu a:not(.btn) {
  font-family: var(--font-display); font-size: 1.18rem; font-weight: 700; padding: 15px 4px;
  border-bottom: 1px solid var(--border); color: var(--text-soft);
  opacity: 0; transform: translateX(22px);
  transition: opacity 460ms var(--ease-out), transform 460ms var(--ease-out), color 200ms ease;
}
.mobile-menu a:not(.btn).active { color: var(--accent); }
.mobile-menu .btn { margin-top: 22px; font-size: 1rem; opacity: 0; transform: translateX(22px);
  transition: opacity 460ms var(--ease-out), transform 460ms var(--ease-out), box-shadow 240ms var(--ease-out); }
body.menu-open .mobile-menu a, body.menu-open .mobile-menu .btn { opacity: 1; transform: none; }
body.menu-open .mobile-menu a:nth-child(1) { transition-delay: 120ms; }
body.menu-open .mobile-menu a:nth-child(2) { transition-delay: 175ms; }
body.menu-open .mobile-menu a:nth-child(3) { transition-delay: 230ms; }
body.menu-open .mobile-menu a:nth-child(4) { transition-delay: 285ms; }
body.menu-open .mobile-menu a:nth-child(5) { transition-delay: 340ms; }
body.menu-open .mobile-menu .btn { transition-delay: 400ms; }

/* Dropdown options always in front (raise field's section while open) */
.hero2, #quote, .contact-grid { position: relative; }
body.cselect-open .hero2, body.cselect-open #quote, body.cselect-open .contact-grid { z-index: 60; }
.cselect__panel { z-index: 9990; }

@media (max-width: 640px) {
  /* Hero quote card: smaller, perfect fit */
  .quote-card { padding: 18px 15px; border-radius: 18px; }
  .quote-card h3 { font-size: 1.15rem; }
  .quote-card .small { font-size: 0.82rem; margin: 3px 0 14px; }
  .quote-card .form-grid { gap: 11px; }
  .quote-card .field label { font-size: 0.8rem; }
  .quote-card .field input, .quote-card .cselect__btn { padding: 11px 13px; font-size: 0.92rem; }
  .quote-card .row2 { grid-template-columns: 1fr 1fr; gap: 10px; }
  .quote-card .btn { padding: 13px; }

  /* Orange stats band -> 2x2 with dividers */
  .stats-band { padding: 8px 14px; }
  .stats-band .grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0; }
  .stats-band .stat { border: none !important; padding: 22px 8px; }
  .stats-band .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.22) !important; }
  .stats-band .stat:nth-child(1), .stats-band .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.22) !important; }
  .stats-band .num { font-size: 2.1rem; }

  /* How we work -> single column with animated glowing connector */
  .timeline { grid-template-columns: 1fr; row-gap: 34px; position: relative; }
  .timeline::before { display: block; content: ""; position: absolute; top: 30px; bottom: 30px; left: 50%; width: 2px; transform: translateX(-50%); background: var(--accent-soft); }
  .timeline::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); top: 30px; width: 6px; height: 64px; border-radius: 6px; background: linear-gradient(var(--accent), transparent); box-shadow: 0 0 18px 5px var(--accent-glow); animation: tlTravel 4.4s var(--ease-in-out) infinite; }
  .tl-step .dot::before { content: ""; position: absolute; inset: -7px; border-radius: 50%; border: 2px solid var(--accent); opacity: 0; transform: scale(0.8); pointer-events: none; animation: ringGlow 4.4s ease-in-out infinite; }
  .tl-step:nth-child(1) .dot::before { animation-delay: 0s; }
  .tl-step:nth-child(2) .dot::before { animation-delay: 1.1s; }
  .tl-step:nth-child(3) .dot::before { animation-delay: 2.2s; }
  .tl-step:nth-child(4) .dot::before { animation-delay: 3.3s; }

  /* Customer reviews -> looping right-to-left marquee */
  .t-marquee { overflow: hidden; margin-inline: -18px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
  .t-marquee .t-grid { display: flex; flex-wrap: nowrap; width: max-content; gap: 14px; padding-inline: 18px; animation: marquee 32s linear infinite; }
  .t-marquee:active .t-grid { animation-play-state: paused; }
  .t-card { width: 80vw; flex: 0 0 auto; }
  .t-marquee .t-card { opacity: 1 !important; transform: none !important; filter: none !important; }

  /* Footer centered */
  .footer__top { text-align: center; }
  .footer__col { display: flex; flex-direction: column; align-items: center; }
  .footer__col p { margin-inline: auto; }
  .footer__col ul { align-items: center; }
  .footer__contact li { justify-content: center; }
  .footer .brand { justify-content: center; }
  .footer__social { justify-content: center; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 8px; padding-bottom: 92px; }

  /* Contact info cards -> 2x2 */
  .info-stack { grid-template-columns: 1fr 1fr; gap: 12px; }
  .info-card { flex-direction: column; align-items: flex-start; padding: 16px 14px; gap: 10px; }
  .info-card h3 { font-size: 0.95rem; }
  .info-card a, .info-card p { font-size: 0.8rem; }
}

/* Center hero chip, CTAs + section buttons on mobile */
@media (max-width: 860px) {
  .hero__actions { justify-content: center; }
  .hero2 .hero__chip { display: flex; width: fit-content; margin-inline: auto; }
  /* section headings centered on mobile */
  .section-head { text-align: center; margin-inline: auto; }
  .section-head .eyebrow { justify-content: center; }
  .section-head .lead { margin-inline: auto; }
  /* rating + badges on one centered line */
  .hero2 .mini-trust { justify-content: center; flex-wrap: nowrap; gap: 14px; }
  .hero2 .mini-trust > div:not(.badges) { align-items: center; text-align: center; }
  .hero2 .mini-trust .badges { flex-wrap: nowrap; }
  .hero2 .mini-trust .badges img { height: 50px; }
  /* standalone badges centered (about page) */
  .badges { justify-content: center; }
}

@keyframes tlTravel { 0% { top: 30px; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { top: calc(100% - 94px); opacity: 0; } }
@keyframes ringGlow {
  0% { opacity: 0; transform: scale(0.8); box-shadow: none; }
  6% { opacity: 1; transform: scale(1); box-shadow: 0 0 16px 3px var(--accent-glow); }
  20% { opacity: 1; transform: scale(1.06); box-shadow: 0 0 20px 5px var(--accent-glow); }
  30% { opacity: 0; transform: scale(1.14); box-shadow: none; }
  100% { opacity: 0; }
}

/* ===================== FAQ (accordion) ===================== */
.faq-wrap { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  background: var(--glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out), background .3s var(--ease-out);
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item[open] { border-color: var(--border-strong); box-shadow: var(--shadow-card); background: var(--glass-strong); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.06rem;
  line-height: 1.4;
  color: var(--text);
  transition: color .25s var(--ease-out);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-deep); }
.faq-q-ic {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  position: relative;
  transition: transform .35s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out);
}
.faq-q-ic::before, .faq-q-ic::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq-q-ic::before { width: 13px; height: 2.5px; }
.faq-q-ic::after { width: 2.5px; height: 13px; transition: transform .35s var(--ease-out), opacity .3s var(--ease-out); }
.faq-item[open] .faq-q-ic { transform: rotate(180deg); background: var(--accent); color: #fff; }
.faq-item[open] .faq-q-ic::after { transform: scaleY(0); opacity: 0; }
.faq-a { padding: 0 24px 22px; color: var(--text-soft); line-height: 1.7; font-size: .98rem; }
.faq-a p { margin: 0; }
.faq-item[open] .faq-a { animation: faqReveal .4s var(--ease-out); }
@keyframes faqReveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@media (max-width: 560px) {
  .faq-item summary { padding: 16px 18px; font-size: .98rem; gap: 12px; }
  .faq-a { padding: 0 18px 18px; }
}
