/* ================================================================
   DRAIN VISION — drainvision.co.nz
   Theme: Deep Scan — Industrial precision, amber on near-black
   Fonts: Barlow Condensed (headings) + Figtree (body)
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@400;500;600&family=Figtree:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Tokens ── */
:root {
  --bg:          #0C0E11;
  --bg-2:        #131620;
  --bg-3:        #1A1E28;
  --bg-light:    #F5F2ED;
  --bg-light-2:  #ECEAE4;
  --accent:      #E07B12;
  --accent-h:    #F08C28;
  --accent-dim:  rgba(224,123,18,0.12);
  --accent-bdr:  rgba(224,123,18,0.28);
  --teal:        #1A7FA0;
  --text:        #EDE8DF;
  --text-2:      #9A958C;
  --text-3:      #56524E;
  --text-dark:   #1A1C20;
  --text-dark-2: #4A4744;
  --border:      #222630;
  --border-l:    #DAD6D0;
  --radius:      6px;
  --radius-lg:   12px;
  --radius-xl:   20px;
  --font-h:      'Barlow Condensed', sans-serif;
  --font-b:      'Barlow', sans-serif;
  --font-body:   'Figtree', sans-serif;
  --ease:        0.2s ease;
  --shadow:      0 4px 32px rgba(0,0,0,0.45);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.3);
}

/* ── Base ── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-h);
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-weight: 700;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p { line-height: 1.75; }

/* ── Layout ── */
.container  { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 110px 0; }
.text-center { text-align: center; }

/* Light sections */
.light { background: var(--bg-light); color: var(--text-dark); }
.light h1,.light h2,.light h3,.light h4 { color: var(--text-dark); }
.light p,.light li { color: var(--text-dark-2); }
.light .section-label { color: var(--accent); }
.light .section-label::before { background: var(--accent); }
.light .border { background: var(--border-l); }

/* ── Section label ── */
.section-label {
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover {
  background: var(--accent-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(224,123,18,0.38);
}
.btn-outline  { border: 1.5px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline-light { border: 1.5px solid var(--border-l); color: var(--text-dark); }
.btn-outline-light:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost { color: var(--text-2); }
.btn-ghost:hover { color: var(--accent); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 24px;
  transition: all 0.35s ease;
  background: linear-gradient(to bottom, rgba(12,14,17,0.7) 0%, transparent 100%);
}
.nav.scrolled {
  background: rgba(12,14,17,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  mix-blend-mode: screen;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--ease);
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-links a.active { color: var(--accent); }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 9px 18px;
  border: 1.5px solid var(--accent-bdr);
  border-radius: var(--radius);
  transition: all var(--ease);
}
.nav-phone svg { width: 14px; height: 14px; flex-shrink: 0; }
.nav-phone:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s ease; }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 199;
  padding: 32px 24px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--ease);
}
.nav-mobile a:hover { color: var(--accent); padding-left: 8px; }
.nav-mobile-cta {
  margin-top: 28px;
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 18px 24px !important;
  border-radius: var(--radius) !important;
  border-bottom: none !important;
  text-align: center;
  font-size: 1.3rem !important;
}
.nav-mobile-cta:hover { background: var(--accent-h) !important; padding-left: 24px !important; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 72% 50%, rgba(224,123,18,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 35% 45% at 15% 75%, rgba(26,127,160,0.05) 0%, transparent 55%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,123,18,0.08);
  border: 1px solid var(--accent-bdr);
  border-radius: 100px;
  padding: 5px 14px 5px 8px;
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(0.75); }
}
.eyebrow-text {
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero h1 { text-transform: uppercase; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  margin-bottom: 32px;
  max-width: 460px;
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-tag {
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
}

/* ── Radar visual ── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.radar-wrap {
  position: relative;
  width: 400px;
  height: 400px;
}
.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(224,123,18,0.18);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.radar-ring:nth-child(1) { width:100%; height:100%; }
.radar-ring:nth-child(2) { width:70%;  height:70%;  border-color: rgba(224,123,18,0.26); }
.radar-ring:nth-child(3) { width:42%;  height:42%;  border-color: rgba(224,123,18,0.36); }
.radar-ring:nth-child(4) {
  width:14px; height:14px;
  background: var(--accent);
  border: none;
  box-shadow: 0 0 18px rgba(224,123,18,0.9), 0 0 40px rgba(224,123,18,0.4);
  animation: pulseDot 2s ease-in-out infinite;
}
.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(224,123,18,0.14) 45deg, transparent 45deg);
  animation: sweep 3.5s linear infinite;
}
@keyframes sweep { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.radar-h-line {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: rgba(224,123,18,0.12);
  transform: translateY(-50%);
}
.radar-v-line {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: rgba(224,123,18,0.12);
  transform: translateX(-50%);
}
.radar-blip {
  position: absolute;
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: blip 4s ease-in-out infinite;
}
.radar-blip:nth-child(1) { top: 22%; left: 62%; animation-delay: 0.8s; }
.radar-blip:nth-child(2) { top: 64%; left: 24%; animation-delay: 2.1s; }
.radar-blip:nth-child(3) { top: 40%; left: 28%; animation-delay: 3.3s; }
@keyframes blip {
  0%,100% { opacity:0; transform:scale(0.4); }
  30%,65% { opacity:1; transform:scale(1); }
}
.radar-corner {
  position: absolute;
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
}
.radar-corner.tl { top: 8px; left: 12px; }
.radar-corner.tr { top: 8px; right: 12px; }
.radar-corner.bl { bottom: 8px; left: 12px; }
.radar-corner.br { bottom: 8px; right: 12px; }
.radar-footer-badge {
  position: absolute;
  bottom: -22px; left: 50%;
  transform: translateX(-50%);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 18px;
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  white-space: nowrap;
}
.radar-footer-badge em { color: var(--accent); font-style: normal; }

/* ── Trust bar ── */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 36px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 34px; height: 34px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 16px; height: 16px; color: var(--accent); }
.trust-val {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1.2;
}
.trust-sub { font-size: 0.72rem; color: var(--text-3); margin-top: 1px; }

/* ── Services grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.svc-card {
  background: var(--bg-2);
  padding: 34px 28px;
  transition: background var(--ease);
  position: relative;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--ease);
}
.svc-card:hover { background: var(--bg-3); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-num {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-3);
  margin-bottom: 18px;
}
.svc-icon { color: var(--accent); margin-bottom: 14px; }
.svc-icon svg { width: 36px; height: 36px; }
.svc-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.svc-card p { font-size: 0.88rem; color: var(--text-2); line-height: 1.65; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap var(--ease);
}
.svc-link:hover { gap: 10px; }
.svc-link svg { width: 14px; height: 14px; }

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-list { display: flex; flex-direction: column; gap: 22px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-icon {
  width: 38px; height: 38px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-bdr);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-icon svg { width: 16px; height: 16px; color: var(--accent); }
.feature-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--text);
}
.light .feature-body h4 { color: var(--text-dark); }
.feature-body p { font-size: 0.88rem; color: var(--text-2); }
.light .feature-body p { color: var(--text-dark-2); }

.img-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-3);
  font-family: var(--font-h);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}
.img-placeholder svg { width: 44px; height: 44px; opacity: 0.25; }
.img-stats {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.img-stat {
  background: rgba(12,14,17,0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
}
.img-stat-val {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.img-stat-lbl { font-size: 0.72rem; color: var(--text-2); margin-top: 2px; }

/* ── Area tags ── */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.area-tag {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 100px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: all var(--ease);
}
.area-tag:hover, .area-tag.hi {
  background: var(--accent-dim);
  border-color: var(--accent-bdr);
  color: var(--accent);
}

/* ── Reviews ── */
.reviews-score {
  text-align: center;
  margin-bottom: 48px;
}
.reviews-num {
  font-family: var(--font-h);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.reviews-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 8px 0 6px;
}
.reviews-stars svg { width: 20px; height: 20px; color: var(--accent); fill: var(--accent); }
.reviews-count { font-size: 0.88rem; color: var(--text-2); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--ease);
}
.review-card:hover { border-color: rgba(224,123,18,0.25); }
.review-card-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-card-stars svg { width: 14px; height: 14px; color: var(--accent); fill: var(--accent); }
.review-card-text {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 18px;
}
.review-card-author {
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}
.review-card-role { font-size: 0.74rem; color: var(--text-3); margin-top: 2px; }
.reviews-cta { text-align: center; margin-top: 36px; }

/* ── Partners ── */
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.partner-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  min-width: 200px;
  transition: all var(--ease);
}
.partner-card:hover { border-color: var(--accent-bdr); background: var(--bg-3); }
.partner-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.partner-name {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
}
.partner-role { font-size: 0.75rem; color: var(--text-3); }

/* ── CTA banner ── */
.cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, #B5630E 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 36px 36px;
}
.cta-band-inner { position: relative; z-index:1; text-align: center; }
.cta-band h2 {
  color: var(--bg) !important;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cta-band p { color: rgba(12,14,17,0.65); font-size: 1.05rem; margin-bottom: 32px; }
.cta-band .btn-dark { background: var(--bg); color: var(--text); margin: 0 6px; }
.cta-band .btn-dark:hover { background: var(--bg-3); }
.cta-band .btn-bare { border: 2px solid rgba(12,14,17,0.25); color: var(--bg); background: transparent; margin: 0 6px; }
.cta-band .btn-bare:hover { background: rgba(12,14,17,0.08); }

/* ── Footer ── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-logo {
  margin-bottom: 12px;
  display: block;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  mix-blend-mode: screen;
  display: block;
}
.footer-desc { font-size: 0.88rem; color: var(--text-2); line-height: 1.75; max-width: 260px; margin-bottom: 20px; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-2);
  margin-bottom: 8px;
  transition: color var(--ease);
}
.footer-contact a:hover { color: var(--accent); }
.footer-contact svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-col-head {
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-2);
  transition: all var(--ease);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before { content:'→'; font-size: 0.75rem; color: var(--text-3); transition: color var(--ease); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-links a:hover::before { color: var(--accent); }
.sitewise {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-bdr);
  border-radius: var(--radius);
  padding: 7px 12px;
  font-family: var(--font-h);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.sitewise svg { width: 14px; height: 14px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 0.78rem; color: var(--text-3); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 0.78rem; color: var(--text-3); transition: color var(--ease); }
.footer-legal a:hover { color: var(--accent); }

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: 150px 0 72px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 80% at 100% 40%, rgba(224,123,18,0.05) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index:1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.breadcrumb a { font-family: var(--font-h); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb svg { width: 12px; height: 12px; color: var(--text-3); }
.breadcrumb span { font-family: var(--font-h); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.page-hero h1 { text-transform: uppercase; margin-bottom: 14px; }
.page-hero-sub { font-size: 1.05rem; color: var(--text-2); max-width: 580px; }

/* ── Service detail ── */
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.svc-detail-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: border-color var(--ease);
}
.svc-detail-card:hover { border-color: rgba(224,123,18,0.3); }
.svc-detail-card.full { grid-column: 1 / -1; }
.svc-detail-icon {
  width: 52px; height: 52px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-bdr);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.svc-detail-icon svg { width: 24px; height: 24px; color: var(--accent); }
.svc-detail-card h3 { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; }
.svc-detail-card p { font-size: 0.88rem; color: var(--text-2); }
.svc-detail-card ul { margin-top: 12px; display: flex; flex-direction: column; gap: 7px; }
.svc-detail-card ul li {
  font-size: 0.88rem;
  color: var(--text-2);
  padding-left: 16px;
  position: relative;
}
/* Cards inside light sections get a light background */
.light .svc-detail-card {
  background: var(--bg-light-2);
  border-color: var(--border-l);
}
.light .svc-detail-card h3 { color: var(--text-dark); }
.light .svc-detail-card p,
.light .svc-detail-card ul li { color: var(--text-dark-2); }
.svc-detail-card ul li::before { content:'—'; position: absolute; left:0; color: var(--accent); font-size: 0.8rem; }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.price-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.price-card.featured { border-color: var(--accent-bdr); background: rgba(224,123,18,0.03); }
.price-card-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 22px; padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.price-card h3 { font-size: 1.4rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 3px; }
.price-card-desc { font-size: 0.82rem; color: var(--text-2); }
.price-badge {
  background: var(--accent-dim);
  color: var(--accent);
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-rows { display: flex; flex-direction: column; gap: 12px; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.price-row-name { color: var(--text-2); }
.price-row-val {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--text);
}
.price-divider { height: 1px; background: var(--border); }
.price-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--text-3);
  padding-top: 14px;
  border-top: 1px solid var(--border);
  line-height: 1.65;
}

/* ── Contact ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 56px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-info-icon {
  width: 42px; height: 42px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-bdr);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-icon svg { width: 18px; height: 18px; color: var(--accent); }
.contact-info-lbl {
  font-family: var(--font-h);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 3px;
}
.contact-info-val {
  font-size: 0.98rem;
  color: var(--text);
  font-weight: 500;
}
.contact-info-val a { transition: color var(--ease); }
.contact-info-val a:hover { color: var(--accent); }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-h);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 7px;
}
.form-control {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 15px;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(224,123,18,0.1); }
.form-control::placeholder { color: var(--text-3); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Scroll fade ── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .svc-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
  .nav-links, .nav-phone { display: none; }
  .nav-burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); width: 100%; justify-content: center; }
  .trust-item:last-child { border-bottom: none; }
  .svc-detail-card.full { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .partners-row { flex-direction: column; align-items: stretch; }
  .partner-card { justify-content: center; }
  h1 { font-size: clamp(2.4rem, 11vw, 3.5rem); }
}
