/* ── HYDRO FIX BRAND STYLESHEET ──────────────────────────────────
   Brand: Playfair Display (headings) + Inter (body)
   Primary: Navy #0e1f2f · Teal #2d7d6f · Cream #f7f3ee
   Matches: myhydrofix.com live site & brand guide v1.0
──────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --white:      #ffffff;
  --cream:      #f7f3ee;
  --cream-dark: #ede8df;
  --navy:       #0e1f2f;
  --navy-mid:   #1c3448;
  --teal:       #2d7d6f;
  --teal-light: #3d9d8d;
  --teal-pale:  #e8f4f2;
  --text:       #0e1f2f;
  --text-mid:   #3d5568;
  --text-light: #7a94a8;
  --border:     rgba(14,31,47,0.1);
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --max:   1100px;
  --r:     8px;
  --r-lg:  16px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--white); color: var(--text); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 72px; display: flex; align-items: center;
  padding: 0 5%;
}
.nav-inner { max-width: var(--max); margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 38px; width: auto; }
.nav-logo-text { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--navy); text-decoration: none; }
.nav-logo-text span { color: var(--teal); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 400; color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta { background: var(--navy); color: #fff; font-size: 14px; font-weight: 500; padding: 11px 24px; border-radius: 100px; text-decoration: none; transition: background 0.2s; white-space: nowrap; }
.nav-cta:hover { background: var(--teal); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; transition: 0.3s; }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 20px 5%; z-index: 199; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; font-size: 16px; color: var(--text-mid); text-decoration: none; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }

@media (max-width: 860px) { .nav-links { display: none; } .nav-hamburger { display: block; } }

/* ── SHARED LAYOUT ───────────────────────────────────────────── */
.section { padding: 96px 5%; }
.section-sm { padding: 64px 5%; }
.inner { max-width: var(--max); margin: 0 auto; }

.label {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.label::before { content: ''; width: 24px; height: 1px; background: var(--teal); }
.label-center { justify-content: center; }
.label-center::before { display: none; }

.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--teal); }

h1 { font-family: var(--serif); font-size: clamp(38px, 5.5vw, 68px); line-height: 1.06; letter-spacing: -1px; font-weight: 700; }
h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 48px); line-height: 1.12; letter-spacing: -0.5px; font-weight: 700; margin-bottom: 20px; }
h3 { font-family: var(--serif); font-size: clamp(20px, 2.5vw, 28px); line-height: 1.25; font-weight: 600; margin-bottom: 12px; }
h4 { font-family: var(--sans); font-size: 15px; font-weight: 600; margin-bottom: 8px; }
p { font-size: 16px; color: var(--text-mid); line-height: 1.8; }

em { font-style: italic; color: var(--teal); }

.lead { font-size: 18px; font-weight: 300; color: var(--text-mid); line-height: 1.8; max-width: 600px; margin-bottom: 48px; }
.lead-center { text-align: center; margin-left: auto; margin-right: auto; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn { display: inline-block; font-family: var(--sans); font-size: 15px; font-weight: 500; padding: 14px 30px; border-radius: 100px; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--teal); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-light); transform: translateY(-1px); }
.btn-fill { background: var(--teal); color: #fff; }
.btn-fill:hover { background: var(--teal-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-white { background: transparent; color: rgba(255,255,255,0.85); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.8); color: #fff; }
.btn-lg { padding: 17px 36px; font-size: 16px; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  min-height: 100vh; display: flex; align-items: center;
  padding: 140px 5% 88px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(45,125,111,0.15) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -15%; left: -8%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,125,111,0.07) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner { max-width: var(--max); margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 72px; align-items: center; position: relative; z-index: 2; }
.hero .label { color: var(--teal-light); }
.hero .label::before { background: var(--teal-light); }
.hero .eyebrow { color: var(--teal-light); }
.hero .eyebrow::before { background: var(--teal-light); }
.hero h1 { color: #fff; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--teal-light); }
.hero .sub { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 480px; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { font-size: 13px; color: rgba(255,255,255,0.35); display: flex; gap: 20px; flex-wrap: wrap; }
.hero-trust strong { color: rgba(255,255,255,0.7); }
.hero-reassurance { font-size: 13px; color: rgba(255,255,255,0.35); display: flex; gap: 20px; flex-wrap: wrap; }
.hero-img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-stats { display: flex; flex-direction: column; gap: 16px; }
.hero-stat { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r); padding: 22px 26px; }
.hero-stat:nth-child(2) { margin-left: 32px; }
.hero-stat-num { font-family: var(--serif); font-size: 44px; line-height: 1; color: var(--teal-light); margin-bottom: 4px; font-weight: 700; }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.45); }

@media (max-width: 860px) { .hero-inner { grid-template-columns: 1fr; } .hero-stats, .hero-img { display: none; } .hero { min-height: auto; } }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero { background: var(--navy); padding: 140px 5% 88px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(45,125,111,0.14) 0%, transparent 65%); border-radius: 50%; pointer-events: none; }
.page-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 18px; max-width: 780px; }
.page-hero h1 em { color: var(--teal-light); }
.page-hero .sub { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.58); max-width: 580px; line-height: 1.75; margin-bottom: 36px; }
.page-hero .label { color: var(--teal-light); }
.page-hero .label::before { background: var(--teal-light); }
.page-hero .eyebrow { color: var(--teal-light); }
.page-hero .eyebrow::before { background: var(--teal-light); }

/* ── QUOTE BAND ──────────────────────────────────────────────── */
.quote-band { background: var(--navy-mid); padding: 48px 5%; text-align: center; }
.quote-band blockquote { font-family: var(--serif); font-size: clamp(16px, 2.2vw, 22px); font-style: italic; font-weight: 400; line-height: 1.6; color: rgba(255,255,255,0.75); max-width: 820px; margin: 0 auto; }
.quote-band blockquote em { color: var(--teal-light); }

/* ── SECTION COLORS ──────────────────────────────────────────── */
.cream { background: var(--cream); }
.off { background: var(--cream); }

/* ── CARDS ───────────────────────────────────────────────────── */
.card-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
@media (max-width: 900px) { .card-grid-4 { grid-template-columns: repeat(2,1fr); } .card-grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .card-grid-4, .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; } }

.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(14,31,47,0.07); }
.card-teal { border-top: 3px solid var(--teal); }
.card-icon { width: 44px; height: 44px; background: var(--teal-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.card h4 { color: var(--navy); }
.card p { font-size: 14px; }

/* ── COMPARISON TABLE ────────────────────────────────────────── */
.compare-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-lg); }
.compare { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare thead tr { background: var(--navy); }
.compare th { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 12px 16px; text-align: left; color: rgba(255,255,255,0.4); }
.compare th:last-child { color: var(--teal-light); }
.compare td { padding: 13px 16px; border-bottom: 1px solid var(--border); color: var(--text-mid); }
.compare td:first-child { color: var(--navy); font-weight: 600; }
.compare td:nth-child(2) { color: var(--text-light); }
.compare td:last-child { color: var(--teal); font-weight: 600; }
.compare tbody tr:last-child td { border-bottom: none; }
.compare tbody tr:hover td { background: var(--cream); }

/* ── SPLIT SECTIONS ──────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-3-2 { grid-template-columns: 3fr 2fr; }
.split-2-3 { grid-template-columns: 2fr 3fr; }
@media (max-width: 800px) { .split, .split-3-2, .split-2-3 { grid-template-columns: 1fr; gap: 36px; } }
.split-img { border-radius: var(--r-lg); overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── FEATURES LIST ───────────────────────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature { display: flex; gap: 16px; align-items: flex-start; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r); padding: 20px; transition: border-color 0.2s; }
.feature-icon { width: 38px; height: 38px; background: rgba(45,125,111,0.2); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.feature h4 { color: #fff; margin-bottom: 3px; }
.feature p { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ── DARK SECTION ────────────────────────────────────────────── */
.dark { background: var(--navy); }
.dark h2 { color: #fff; }
.dark h2 em { color: var(--teal-light); }
.dark h3 { color: #fff; }
.dark .label { color: var(--teal-light); }
.dark .label::before { background: var(--teal-light); }
.dark .eyebrow { color: var(--teal-light); }
.dark .eyebrow::before { background: var(--teal-light); }
.dark .lead { color: rgba(255,255,255,0.58); }
.dark p { color: rgba(255,255,255,0.58); }
.dark .compare-wrap { border-color: rgba(255,255,255,0.1); }
.dark .compare td { border-color: rgba(255,255,255,0.07); }
.dark .compare td:first-child { color: rgba(255,255,255,0.65); }
.dark .compare td:nth-child(2) { color: rgba(255,255,255,0.28); }
.dark .compare td:last-child { color: var(--teal-light); }

/* ── STAT BLOCKS ─────────────────────────────────────────────── */
.big-stat { font-family: var(--serif); font-size: clamp(72px, 12vw, 120px); line-height: 1; color: var(--teal-light); letter-spacing: -0.03em; font-weight: 700; }
.big-stat-sub { font-size: 16px; color: rgba(255,255,255,0.55); margin-top: 8px; line-height: 1.5; }

/* ── PROCESS STEPS ───────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 48px; position: relative; }
.steps::before { content: ''; position: absolute; top: 25px; left: 8%; right: 8%; height: 1px; background: var(--cream-dark); }
.step { text-align: center; padding: 0 14px; position: relative; }
.step-n { width: 50px; height: 50px; border-radius: 50%; background: var(--navy); color: #fff; font-family: var(--serif); font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; position: relative; z-index: 2; }
.step h4 { font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.step p { font-size: 13px; color: var(--text-light); line-height: 1.6; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr 1fr; gap: 28px; } .steps::before { display: none; } }
@media (max-width: 440px) { .steps { grid-template-columns: 1fr; } }

/* ── TRUST BADGES ────────────────────────────────────────────── */
.badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.badge { display: flex; align-items: center; gap: 8px; background: var(--cream); border: 1px solid var(--border); border-radius: 100px; padding: 9px 16px; font-size: 13px; font-weight: 500; color: var(--text); }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 860px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial { background: var(--cream); border: 1px solid var(--cream-dark); border-left: 3px solid var(--teal); border-radius: 0 var(--r-lg) var(--r-lg) 0; padding: 26px; }
.t-stars { color: #e9a820; font-size: 14px; margin-bottom: 12px; }
.testimonial p { font-size: 14px; font-style: italic; margin-bottom: 14px; color: var(--text-mid); }
.t-name { font-size: 13px; font-weight: 600; color: var(--text); }
.t-loc { font-size: 12px; color: var(--text-light); }
.t-disclaimer { font-size: 11px; color: var(--text-light); margin-top: 14px; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width: 720px; display: flex; flex-direction: column; gap: 4px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.faq-q { padding: 20px 24px; font-size: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; transition: background 0.15s; color: var(--navy); }
.faq-q:hover { background: var(--cream); }
.faq-q::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--teal); flex-shrink: 0; margin-left: 14px; transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 14px; color: var(--text-mid); line-height: 1.8; }
.faq-item.open .faq-a { display: block; }

/* ── CALLOUT ─────────────────────────────────────────────────── */
.callout { background: var(--cream); border: 1px solid var(--cream-dark); border-left: 4px solid var(--teal); border-radius: 0 var(--r-lg) var(--r-lg) 0; padding: 22px 26px; margin: 24px 0; }
.callout p { font-size: 15px; color: var(--text-mid); margin: 0; line-height: 1.78; }
.callout p strong { color: var(--teal); }

/* ── CTA SECTION ─────────────────────────────────────────────── */
.cta-section { background: var(--navy); text-align: center; padding: 100px 5%; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(45,125,111,0.12) 0%, transparent 70%); pointer-events: none; }
.cta-section > * { position: relative; z-index: 2; }
.cta-section h2 { color: #fff; }
.cta-section h2 em { color: var(--teal-light); }
.cta-section .sub { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto 40px; line-height: 1.75; }
.cta-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-lg); padding: 40px; max-width: 520px; margin: 0 auto; }
.cta-card .fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.cta-card input, .cta-card select { width: 100%; padding: 14px 18px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 100px; color: #fff; font-family: var(--sans); font-size: 15px; outline: none; transition: border-color 0.2s; }
.cta-card input::placeholder { color: rgba(255,255,255,0.32); }
.cta-card input:focus, .cta-card select:focus { border-color: var(--teal-light); }
.cta-card select { color: rgba(255,255,255,0.5); appearance: none; }
.cta-card select option { background: var(--navy); color: #fff; }
.cta-card .btn { width: 100%; text-align: center; font-size: 16px; padding: 17px; }
.cta-fine, .fine { font-size: 12px; color: rgba(255,255,255,0.28); margin-top: 12px; }

/* ── BLOG ────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; text-decoration: none; color: inherit; transition: box-shadow 0.2s; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: 0 8px 24px rgba(14,31,47,0.08); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--teal-pale); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.blog-card h3 { font-family: var(--serif); font-size: 18px; line-height: 1.35; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.blog-card p { font-size: 13px; color: var(--text-mid); line-height: 1.7; flex: 1; }
.blog-card-date { font-size: 11px; color: var(--text-light); margin-top: 12px; }

/* ── BLOG POST ───────────────────────────────────────────────── */
.post-header { background: var(--navy); padding: 140px 5% 72px; position: relative; overflow: hidden; }
.post-header::before { content: ''; position: absolute; top: -20%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(45,125,111,0.14) 0%, transparent 65%); border-radius: 50%; pointer-events: none; }
.post-header-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.post-back { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; margin-bottom: 24px; transition: color 0.2s; }
.post-back:hover { color: var(--teal-light); }
.post-header .label { color: var(--teal-light); }
.post-header .label::before { background: var(--teal-light); }
.post-header h1 { color: #fff; font-size: clamp(26px, 4vw, 44px); line-height: 1.12; margin-bottom: 18px; }
.post-header h1 em { color: var(--teal-light); }
.post-meta { font-size: 13px; color: rgba(255,255,255,0.35); display: flex; gap: 20px; }
.post-body { max-width: 800px; margin: 0 auto; padding: 64px 5%; }
.post-body h2 { font-size: clamp(22px, 3vw, 32px); margin-top: 48px; margin-bottom: 16px; }
.post-body h3 { font-size: clamp(18px, 2.5vw, 24px); margin-top: 36px; margin-bottom: 12px; }
.post-body p { font-size: 16px; color: var(--text-mid); line-height: 1.85; margin-bottom: 18px; }
.post-body ul, .post-body ol { margin: 14px 0 18px 24px; }
.post-body li { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-bottom: 8px; }
.post-body blockquote { border-left: 3px solid var(--teal); padding: 16px 20px; margin: 28px 0; background: var(--cream); border-radius: 0 var(--r-lg) var(--r-lg) 0; }
.post-body blockquote p { font-style: italic; margin: 0; }
.post-cta { background: var(--navy); border-radius: var(--r-lg); padding: 40px; margin: 48px 0; text-align: center; position: relative; overflow: hidden; }
.post-cta::before { content: ''; position: absolute; top: -40px; right: -40px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(45,125,111,0.15) 0%, transparent 65%); border-radius: 50%; }
.post-cta h3 { font-size: 22px; color: #fff; margin-bottom: 10px; position: relative; z-index: 2; }
.post-cta p { color: rgba(255,255,255,0.58); max-width: 440px; margin: 0 auto 24px; position: relative; z-index: 2; }
.related-posts { background: var(--cream); padding: 64px 5%; border-top: 1px solid var(--border); }
.related-inner { max-width: var(--max); margin: 0 auto; }

/* ── INDUSTRY GRID ───────────────────────────────────────────── */
.industry-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 860px) { .industry-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .industry-grid { grid-template-columns: 1fr; } }
.industry-card { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; text-decoration: none; display: block; }
.industry-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.industry-card:hover img { transform: scale(1.04); }
.industry-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,31,47,0.85) 0%, rgba(14,31,47,0.15) 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; }
.industry-card h3 { font-size: 20px; color: #fff; margin-bottom: 4px; }
.industry-card p { font-size: 13px; color: rgba(255,255,255,0.65); }

/* ── EYEBROW TAG BADGE ───────────────────────────────────────── */
.tag { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 20px; }
.tag::before { content: ''; width: 20px; height: 1px; background: var(--teal-light); }

/* ── CONTACT FORM ────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 6px; letter-spacing: 0.02em; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 13px 18px; border: 1.5px solid var(--border); border-radius: 100px; font-family: var(--sans); font-size: 15px; color: var(--text); background: var(--white); outline: none; transition: border-color 0.2s; }
.form-field textarea { border-radius: var(--r-lg); height: 120px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--teal); }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-detail-icon { width: 40px; height: 40px; background: var(--teal-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-detail h5 { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.contact-detail p { font-size: 13px; margin: 0; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { background: var(--navy); padding: 56px 5% 32px; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
.footer-logo { font-family: var(--serif); font-size: 22px; font-weight: 700; color: #fff; text-decoration: none; display: block; margin-bottom: 14px; }
.footer-logo span { color: var(--teal-light); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.75; }
.footer-col h5 { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.28); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ── ANIMATIONS ──────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.v, .reveal.visible { opacity: 1; transform: none; }
.rd1, .reveal-d1 { transition-delay: 0.1s; }
.rd2, .reveal-d2 { transition-delay: 0.2s; }
.rd3, .reveal-d3 { transition-delay: 0.3s; }

/* ── STICKY MOBILE CTA ───────────────────────────────────────── */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99; background: var(--navy); padding: 12px 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.sticky-cta a { display: block; background: var(--teal); color: #fff; text-align: center; font-size: 15px; font-weight: 500; padding: 14px; border-radius: 100px; text-decoration: none; }
@media (max-width: 600px) { .sticky-cta { display: block; } body { padding-bottom: 72px; } }

/* ── CITY PAGE EXTRAS ────────────────────────────────────────── */
.city-hero { background: var(--navy); padding: 140px 5% 88px; position: relative; overflow: hidden; }
.city-hero::before { content: ''; position: absolute; top: -15%; right: -8%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(45,125,111,0.14) 0%, transparent 65%); border-radius: 50%; pointer-events: none; }
.city-hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.city-hero h1 { color: #fff; margin-bottom: 18px; }
.city-hero h1 em { color: var(--teal-light); }
.city-hero .sub { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.58); max-width: 460px; line-height: 1.75; margin-bottom: 36px; }
.city-hero .label { color: var(--teal-light); }
.city-hero .label::before { background: var(--teal-light); }
.city-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.city-hero-reassurance { font-size: 13px; color: rgba(255,255,255,0.35); display: flex; gap: 18px; flex-wrap: wrap; }
.city-hero-reassurance span { color: var(--teal-light); margin-right: 4px; }
.city-hero-img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; }
.city-hero-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .city-hero-inner { grid-template-columns: 1fr; } .city-hero-img { display: none; } }

.rain-stat { background: var(--teal-pale); border: 1px solid rgba(45,125,111,0.2); border-radius: var(--r-lg); padding: 28px 32px; display: flex; gap: 24px; align-items: center; margin: 32px 0; flex-wrap: wrap; }
.rain-num { font-family: var(--serif); font-size: 52px; font-weight: 700; color: var(--teal); line-height: 1; flex-shrink: 0; }
.rain-label { font-size: 16px; color: var(--text-mid); line-height: 1.6; }
.rain-label strong { color: var(--text); font-weight: 600; }

.problem-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }
.problem-list li { display: flex; gap: 12px; align-items: flex-start; padding: 16px 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); font-size: 15px; color: var(--text-mid); line-height: 1.6; }
.problem-list li::before { content: '→'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.city-links { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
@media (max-width: 720px) { .city-links { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 440px) { .city-links { grid-template-columns: 1fr; } }
.city-link-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px; text-decoration: none; color: inherit; transition: border-color 0.2s, transform 0.2s; display: block; }
.city-link-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.city-link-card .city-link-name { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.city-link-card .city-link-county { font-size: 12px; color: var(--text-light); }
.city-link-card .city-link-arrow { font-size: 13px; color: var(--teal); font-weight: 600; margin-top: 10px; display: block; }

/* ── SERVICES DROPDOWN ───────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 3px; cursor: pointer; }
.nav-dropdown-trigger svg { transition: transform 0.2s; }
.nav-dropdown.open .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 10px;
  min-width: 260px;
  box-shadow: 0 16px 40px rgba(14,31,47,0.12);
  list-style: none;
  z-index: 300;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  rotate: 45deg;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: var(--r);
  text-decoration: none; color: var(--text);
  transition: background 0.15s;
  font-size: 14px; font-weight: 400;
}
.nav-dropdown-menu li a:hover { background: var(--cream); }
.nav-dropdown-menu li a .dd-icon {
  font-size: 18px; width: 36px; height: 36px;
  background: var(--teal-pale); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-dropdown-menu li a div strong {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--navy); margin-bottom: 1px;
}
.nav-dropdown-menu li a div span {
  display: block; font-size: 12px; color: var(--text-light);
}

/* ── MOBILE MENU EXTRAS ──────────────────────────────────────── */
.mobile-section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-light);
  padding: 14px 0 6px;
}
.mobile-sub {
  padding-left: 16px !important;
  font-size: 14px !important;
  color: var(--text-mid) !important;
}
