/* ============================================================
   Horizon Cleaning Services — global stylesheet
   Palette derived from brand mark: deep harbour teal + leaf green
   ============================================================ */

:root {
  --harbour: #0E4D64;
  --harbour-deep: #0A3A4D;
  --blue: #1C7C9C;
  --blue-bright: #2C9CC0;
  --leaf: #6DAE3F;
  --lime: #A6D65A;
  --mist: #EEF5F6;
  --mist-2: #E2EEF0;
  --ink: #0A2731;
  --ink-soft: #40606B;
  --white: #ffffff;
  --line: rgba(14, 77, 100, 0.12);

  --grad-horizon: linear-gradient(90deg, var(--blue) 0%, var(--leaf) 100%);
  --grad-hero: linear-gradient(135deg, #0A3A4D 0%, #0E4D64 45%, #16657F 100%);

  --shadow-sm: 0 2px 10px rgba(10, 39, 49, 0.06);
  --shadow-md: 0 14px 40px rgba(10, 39, 49, 0.10);
  --shadow-lg: 0 30px 70px rgba(10, 39, 49, 0.16);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-pill: 999px;

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(64px, 9vw, 128px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  font-weight: 700;
}

p { margin: 0 0 1rem; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--grad-horizon);
  border-radius: 2px;
}
.eyebrow.center { justify-content: center; }

/* horizon rule ------------------------------------------------ */
.horizon-rule {
  height: 2px;
  background: var(--grad-horizon);
  border: 0;
  border-radius: 2px;
  opacity: 0.5;
  max-width: var(--wrap);
  margin: 0 auto;
}

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--leaf);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(109, 174, 63, 0.35);
}
.btn-primary:hover { background: #5f9c34; transform: translateY(-2px); box-shadow: 0 16px 32px rgba(109,174,63,.42); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(28,124,156,.3); }
.btn-blue:hover { background: var(--harbour); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--harbour);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--harbour); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* =================== HEADER =================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.32rem;
  letter-spacing: 0.02em; color: var(--harbour);
}
.brand-sub {
  font-family: var(--font-mono); font-size: 0.56rem; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--leaf); margin-top: 4px; font-weight: 700;
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-weight: 500; font-size: 0.96rem; padding: 9px 15px; border-radius: 10px;
  color: var(--ink); transition: color .2s, background .2s; position: relative;
}
.nav-links a:hover { color: var(--blue); background: var(--mist); }
.nav-links a.active { color: var(--blue); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 2px; height: 2px;
  background: var(--grad-horizon); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display);
  font-weight: 600; color: var(--harbour); font-size: 0.98rem; white-space: nowrap;
}
@media (max-width: 1160px) { .nav-phone { display: none; } }
.nav-phone svg { width: 17px; height: 17px; color: var(--leaf); }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  color: var(--harbour);
}
.nav-toggle svg { width: 28px; height: 28px; }

/* mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200; background: var(--white);
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; padding: 24px var(--gutter);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.mobile-nav a {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--harbour);
}
.mobile-nav .btn { margin-top: 24px; justify-content: center; }
.icon-btn { background: none; border: 0; cursor: pointer; color: var(--harbour); padding: 6px; }
.icon-btn svg { width: 28px; height: 28px; }

/* =================== HERO =================== */
.hero {
  position: relative;
  background: var(--grad-hero);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero::before { /* photo wash */
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1600&q=80");
  background-size: cover; background-position: center;
  opacity: 0.16; mix-blend-mode: luminosity;
}
.hero::after { /* teal->green wash */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120% 90% at 80% 10%, rgba(109,174,63,0.28), transparent 60%),
              radial-gradient(90% 80% at 0% 100%, rgba(44,156,192,0.30), transparent 55%);
}
.hero-inner {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center;
  padding-block: clamp(72px, 10vw, 132px);
}
.hero-eyebrow {
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--lime); font-weight: 700;
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 26px;
}
.hero-eyebrow::before { content:""; width: 30px; height: 2px; background: var(--lime); border-radius: 2px; }
.hero h1 {
  color: #fff; font-size: clamp(2.7rem, 6vw, 4.6rem); font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 22px;
}
.hero h1 .shine {
  position: relative;
  background: linear-gradient(100deg, var(--lime) 0%, #d9f2b0 40%, var(--lime) 60%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { font-size: 1.2rem; color: rgba(255,255,255,0.86); max-width: 30em; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  display: flex; gap: 28px; margin-top: 40px; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.16); flex-wrap: wrap;
}
.hero-trust .item { display: flex; flex-direction: column; gap: 2px; }
.hero-trust .num { font-family: var(--font-mono); font-size: 1.7rem; font-weight: 700; color: #fff; }
.hero-trust .num .star { color: var(--lime); }
.hero-trust .lbl { font-size: 0.82rem; color: rgba(255,255,255,0.72); letter-spacing: .02em; }

/* sparkle sweep hero card */
.hero-visual { position: relative; }
.hero-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5;
  background: #123;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card .sweep {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.55) 48%, rgba(255,255,255,0.0) 60%);
  transform: translateX(-120%);
  animation: sweep 4.5s ease-in-out 0.6s infinite;
}
@keyframes sweep { 0% { transform: translateX(-120%);} 22%,100% { transform: translateX(120%);} }
.hero-card .sparkle { position: absolute; color: #fff; opacity: 0; animation: twinkle 4.5s ease-in-out infinite; }
.hero-card .sparkle svg { width: 100%; height: 100%; filter: drop-shadow(0 0 6px rgba(255,255,255,.9)); }
.sparkle.s1 { top: 14%; left: 18%; width: 30px; height: 30px; animation-delay: 1.1s; }
.sparkle.s2 { top: 40%; left: 62%; width: 22px; height: 22px; animation-delay: 1.5s; }
.sparkle.s3 { top: 68%; left: 30%; width: 26px; height: 26px; animation-delay: 1.9s; }
@keyframes twinkle { 0%,60%,100% { opacity: 0; transform: scale(.4) rotate(0deg);} 68% { opacity: 1; transform: scale(1.1) rotate(20deg);} 80% { opacity: .7; transform: scale(.9);} }

.hero-badge {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(6px);
  border-radius: var(--r-md); padding: 16px 20px; display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-md);
}
.hero-badge .ring {
  width: 46px; height: 46px; border-radius: 50%; flex: 0 0 auto;
  background: var(--grad-horizon); display: grid; place-items: center; color: #fff;
}
.hero-badge .ring svg { width: 24px; height: 24px; }
.hero-badge .t { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 0.98rem; line-height: 1.2; }
.hero-badge .s { font-size: 0.8rem; color: var(--ink-soft); }

/* discount flag */
.hero-flag {
  position: absolute; top: -14px; right: -10px; z-index: 3;
  background: var(--leaf); color: #fff; border-radius: 50%;
  width: 96px; height: 96px; display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow-md); transform: rotate(8deg);
  border: 3px solid rgba(255,255,255,.5);
}
.hero-flag b { font-family: var(--font-display); font-size: 1.5rem; line-height: 1; }
.hero-flag span { font-family: var(--font-mono); font-size: 0.56rem; letter-spacing: .12em; text-transform: uppercase; }

/* =================== marquee logos / trust strip =================== */
.trust-strip { background: var(--mist); border-block: 1px solid var(--line); }
.trust-strip .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 22px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--harbour); font-weight: 600; font-size: 0.94rem; }
.trust-item svg { width: 22px; height: 22px; color: var(--leaf); flex: 0 0 auto; }

/* =================== SECTIONS =================== */
.section { padding-block: var(--section-y); }
.section.mist { background: var(--mist); }
.section.harbour { background: var(--grad-hero); color: #fff; }
.section.harbour h2, .section.harbour h3 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.section-head p { font-size: 1.12rem; color: var(--ink-soft); margin: 0; }
.section.harbour .section-head p { color: rgba(255,255,255,.8); }

/* =================== SERVICES GRID =================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 30px 28px; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--grad-horizon); transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-ico {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--mist); color: var(--blue); margin-bottom: 20px;
  transition: background .3s, color .3s;
}
.service-ico svg { width: 28px; height: 28px; }
.service-card:hover .service-ico { background: var(--grad-horizon); color: #fff; }
.service-card h3 { font-size: 1.28rem; margin-bottom: 8px; }
.service-card p { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 16px; }
.service-link { font-family: var(--font-display); font-weight: 600; color: var(--blue); font-size: 0.92rem; display: inline-flex; gap: 6px; align-items: center; }
.service-link svg { width: 15px; height: 15px; transition: transform .25s; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* =================== FEATURE / WHY =================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.split-media .stat-chip {
  position: absolute; background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-md);
  padding: 18px 22px; display: flex; align-items: center; gap: 14px;
}
.split-media .stat-chip.bl { bottom: -22px; left: -22px; }
.split-media .stat-chip .n { font-family: var(--font-mono); font-size: 1.9rem; font-weight: 700; color: var(--leaf); line-height: 1; }
.split-media .stat-chip .l { font-size: 0.82rem; color: var(--ink-soft); }

.feature-list { display: grid; gap: 20px; margin-top: 28px; }
.feature-item { display: flex; gap: 16px; }
.feature-item .fi-ico {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px;
  background: var(--mist); color: var(--leaf); display: grid; place-items: center;
}
.feature-item .fi-ico svg { width: 22px; height: 22px; }
.feature-item h4 { font-size: 1.08rem; margin-bottom: 3px; }
.feature-item p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }
.section.harbour .feature-item p { color: rgba(255,255,255,.75); }
.section.harbour .feature-item .fi-ico { background: rgba(255,255,255,.1); color: var(--lime); }

/* =================== PROCESS (numbered — real sequence) =================== */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.process-step { position: relative; padding-top: 20px; }
.process-step .num {
  font-family: var(--font-mono); font-size: 0.9rem; font-weight: 700; color: var(--leaf);
  letter-spacing: .1em;
}
.process-step h4 { font-size: 1.18rem; margin: 12px 0 8px; }
.process-step p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }
.process-step::before {
  content: ""; position: absolute; top: 6px; left: 0; width: 40px; height: 3px;
  background: var(--grad-horizon); border-radius: 3px;
}
.section.harbour .process-step p { color: rgba(255,255,255,.75); }

/* =================== STATS BAND =================== */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat { padding: 10px; }
.stat .n { font-family: var(--font-mono); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; color: #fff; line-height: 1; }
.stat .n .u { color: var(--lime); }
.stat .l { color: rgba(255,255,255,.72); font-size: 0.9rem; margin-top: 8px; letter-spacing: .02em; }

/* =================== REVIEWS =================== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 16px;
  transition: transform .3s, box-shadow .3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { display: flex; gap: 3px; color: #F5A623; }
.stars svg { width: 18px; height: 18px; }
.review-card p { color: var(--ink); font-size: 1rem; margin: 0; line-height: 1.6; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--grad-horizon);
  color: #fff; display: grid; place-items: center; font-family: var(--font-display);
  font-weight: 700; font-size: 1.05rem; flex: 0 0 auto;
}
.review-author .name { font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; }
.review-author .via { font-size: 0.8rem; color: var(--ink-soft); display: flex; align-items: center; gap: 5px; }

.google-badge {
  display: inline-flex; align-items: center; gap: 16px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-pill); padding: 12px 24px 12px 18px;
  box-shadow: var(--shadow-sm);
}
.google-badge .g-rating { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--ink); }
.google-badge .g-stars { color: #F5A623; display: flex; gap: 2px; }
.google-badge .g-stars svg { width: 16px; height: 16px; }
.google-badge .g-sub { font-size: 0.82rem; color: var(--ink-soft); }

/* =================== CTA BAND =================== */
.cta-band { position: relative; overflow: hidden; }
.cta-inner {
  background: var(--grad-hero); border-radius: var(--r-lg); padding: clamp(40px, 6vw, 72px);
  color: #fff; position: relative; overflow: hidden; isolation: isolate;
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 40px; align-items: center;
}
.cta-inner::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(80% 120% at 90% 0%, rgba(109,174,63,.35), transparent 55%);
}
.cta-inner h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 12px; }
.cta-inner p { color: rgba(255,255,255,.82); margin: 0; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-actions .btn { justify-content: center; }

/* =================== FOOTER =================== */
.site-footer { background: var(--harbour-deep); color: rgba(255,255,255,.72); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin: 18px 0; max-width: 30ch; font-size: 0.95rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08);
  display: grid; place-items: center; color: #fff; transition: background .25s, transform .25s;
}
.footer-social a:hover { background: var(--leaf); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-col h4 { color: #fff; font-size: 0.82rem; letter-spacing: .16em; text-transform: uppercase; font-family: var(--font-mono); margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col a { font-size: 0.95rem; transition: color .2s; }
.footer-col a:hover { color: var(--lime); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 0.95rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--leaf); flex: 0 0 auto; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-block: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.86rem;
}
.footer-bottom .abn { font-family: var(--font-mono); letter-spacing: .04em; }
.footer-bottom a:hover { color: var(--lime); }

/* =================== PAGE HERO (interior pages) =================== */
.page-hero { background: var(--grad-hero); color: #fff; position: relative; overflow: hidden; isolation: isolate; }
.page-hero::after {
  content:""; position:absolute; inset:0; z-index:-1;
  background: radial-gradient(90% 120% at 100% 0%, rgba(109,174,63,.28), transparent 55%);
}
.page-hero .wrap { padding-block: clamp(60px, 8vw, 104px); }
.page-hero h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.8rem); max-width: 16ch; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 52ch; margin: 0; }
.breadcrumb { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--lime); margin-bottom: 20px; display: flex; gap: 8px; }
.breadcrumb a:hover { color: #fff; }

/* =================== SERVICE DETAIL BLOCKS =================== */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; padding-block: clamp(40px, 6vw, 72px); }
.svc-detail:not(:last-child) { border-bottom: 1px solid var(--line); }
.svc-detail.reverse .svc-media { order: 2; }
.svc-media img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.svc-body .service-ico { margin-bottom: 18px; }
.svc-body h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.svc-body p { color: var(--ink-soft); }
.check-list { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.96rem; }
.check-list svg { width: 20px; height: 20px; color: var(--leaf); flex: 0 0 auto; margin-top: 2px; }

/* =================== FAQ =================== */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: transparent; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 26px; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex: 0 0 auto; width: 26px; height: 26px; position: relative; transition: transform .3s; color: var(--blue); }
.faq-item summary .plus::before, .faq-item summary .plus::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq-item summary .plus::before { top: 12px; left: 4px; right: 4px; height: 2.5px; }
.faq-item summary .plus::after { left: 12px; top: 4px; bottom: 4px; width: 2.5px; transition: transform .3s; }
.faq-item[open] summary .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item .faq-body { padding: 0 26px 24px; color: var(--ink-soft); }
.faq-item .faq-body p { margin: 0; }

/* =================== CONTACT / FORM =================== */
.contact-layout { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-info { display: grid; gap: 18px; }
.info-card { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 24px; }
.info-card .ic {
  width: 48px; height: 48px; border-radius: 12px; background: var(--grad-horizon);
  color: #fff; display: grid; place-items: center; flex: 0 0 auto;
}
.info-card .ic svg { width: 24px; height: 24px; }
.info-card h4 { margin: 0 0 4px; font-size: 1.05rem; }
.info-card a, .info-card p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }
.info-card a:hover { color: var(--blue); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--harbour); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; padding: 13px 15px; border-radius: 12px;
  border: 1.5px solid var(--line); background: var(--mist); color: var(--ink);
  transition: border-color .2s, background .2s, box-shadow .2s; width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 4px rgba(28,124,156,.12);
}
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 0.84rem; color: var(--ink-soft); margin-top: 14px; text-align: center; }

/* =================== VALUES / ABOUT =================== */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 30px 28px; }
.value-card .service-ico { margin-bottom: 18px; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.value-card p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }

.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.area-tags span { background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 8px 18px; font-size: 0.92rem; font-weight: 500; color: var(--harbour); }

/* guarantee seal */
.guarantee { display: flex; align-items: center; gap: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 32px; box-shadow: var(--shadow-sm); }
.seal {
  flex: 0 0 auto; width: 92px; height: 92px; border-radius: 50%; background: var(--grad-horizon);
  color: #fff; display: grid; place-items: center; text-align: center; box-shadow: var(--shadow-md);
}
.seal svg { width: 44px; height: 44px; }
.guarantee h3 { margin-bottom: 6px; }
.guarantee p { margin: 0; color: var(--ink-soft); }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* =================== RESPONSIVE =================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 440px; }
  .services-grid, .reviews-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .split, .svc-detail, .contact-layout, .cta-inner { grid-template-columns: 1fr; }
  .split.reverse .split-media, .svc-detail.reverse .svc-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .cta-inner { text-align: left; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .nav-cta > .btn { display: none; }
  .brand img { width: 40px; height: 40px; }
  .brand-name { font-size: 1.16rem; }
  .services-grid, .reviews-grid, .value-grid, .process, .check-list, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 20px; }
  .guarantee { flex-direction: column; text-align: center; }
  .split-media .stat-chip.bl { left: 0; }
}

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