:root {
  --navy: #0d3b66;
  --navy-dark: #082a4d;
  --navy-deep: #051c36;
  --red: #d62828;
  --red-dark: #a91d1d;
  --yellow: #f4b400;
  --light-blue: #eaf1f8;
  --bg: #ffffff;
  --gray: #f5f6f8;
  --text: #1a2638;
  --muted: #5a6577;
  --border: #e1e5ec;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}

a { color: var(--navy); text-decoration: none; }

/* ===== TOP UTILITY BAR ===== */
.topbar {
  background: var(--navy-deep); color: #fff; font-size: 0.85rem; padding: 0.5rem 0;
  position: sticky; top: 0; z-index: 101;
}
.topbar-wrap {
  max-width: 1240px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.topbar a { color: #fff; }
.topbar .left { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.topbar .left .item { display: flex; align-items: center; gap: 0.4rem; }
.topbar .right { display: flex; gap: 1rem; align-items: center; }
.topbar .right a:hover { color: var(--yellow); }

/* ===== HEADER ===== */
header.main {
  background: #fff; border-bottom: 1px solid var(--border);
  position: sticky; top: 36px; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.header-wrap {
  max-width: 1240px; margin: 0 auto; padding: 0.6rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center; gap: 2rem;
  flex-wrap: nowrap;
}
.header-wrap > * { flex-shrink: 0; }
.logo-block { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon {
  width: 44px; height: 44px; background: var(--navy); border-radius: 7px;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.logo-icon svg { width: 26px; height: 26px; color: #fff; }
.logo-placeholder {
  color: #fff; font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  text-align: center; line-height: 1.05;
}
.logo-icon::after {
  content: ''; position: absolute; top: -3px; right: -3px;
  width: 12px; height: 12px; background: var(--red);
  border-radius: 50%; border: 2px solid #fff;
}
.logo-text { line-height: 1.1; }
.logo-text .name {
  font-family: 'Roboto Condensed', sans-serif; font-weight: 700;
  font-size: 1.25rem; color: var(--navy); text-transform: uppercase;
  letter-spacing: 0.02em;
}
.logo-text .tag {
  display: block; font-size: 0.7rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.15em; margin-top: 2px;
}

nav.primary ul { display: flex; list-style: none; gap: 1.75rem; align-items: center; flex-wrap: nowrap; }
nav.primary > ul > li { position: relative; }
nav.primary a {
  font-weight: 600; font-size: 0.9rem; color: var(--text);
  padding: 0.25rem 0; transition: color 0.2s;
  display: inline-flex; align-items: center; gap: 0.25rem;
  white-space: nowrap;
}
nav.primary a:hover { color: var(--red); }
nav.primary .has-dropdown > a::after {
  content: ''; display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 0.35rem;
  transition: transform 0.2s;
}
nav.primary .has-dropdown:hover > a::after { transform: rotate(180deg); }

/* dropdown menu */
nav.primary .dropdown {
  position: absolute; top: 100%; left: -1rem;
  background: #fff; border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 0 0 6px 6px;
  min-width: 240px;
  padding: 0.5rem 0;
  box-shadow: 0 12px 28px rgba(13,59,102,0.15);
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 0;
  z-index: 200;
}
nav.primary .has-dropdown:hover .dropdown,
nav.primary .has-dropdown:focus-within .dropdown { display: flex; }
nav.primary .dropdown li { width: 100%; }
nav.primary .dropdown a {
  display: block; width: 100%;
  padding: 0.65rem 1.1rem;
  font-size: 0.92rem; font-weight: 600;
  color: var(--text);
  border-left: 3px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
nav.primary .dropdown a:hover {
  background: var(--gray);
  color: var(--red);
  border-left-color: var(--red);
}

.header-actions { display: flex; gap: 0.75rem; align-items: center; flex-wrap: nowrap; }
.header-actions .btn { padding: 0.65rem 1.1rem; font-size: 0.85rem; white-space: nowrap; }

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--border); padding: 0.45rem 0.7rem;
  color: var(--navy); cursor: pointer; border-radius: 4px;
  gap: 0.4rem;
  font-family: 'Roboto Condensed', sans-serif;
}
.nav-toggle:hover { background: var(--gray); }
.nav-toggle-label {
  font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: 'Roboto Condensed', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.85rem 1.4rem; border-radius: 4px; border: 2px solid transparent;
  cursor: pointer; transition: all 0.2s; font-size: 0.95rem; text-decoration: none;
}
.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-yellow { background: var(--yellow); color: var(--navy-deep); border-color: var(--yellow); }
.btn-yellow:hover { background: #d99a00; border-color: #d99a00; }

.header-phone { text-align: right; font-family: 'Roboto Condensed', sans-serif; }
.header-phone .label { display: block; font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; }
.header-phone .number { font-size: 1.15rem; font-weight: 700; color: var(--red); white-space: nowrap; }
.header-actions .btn { padding: 0.65rem 1.1rem; font-size: 0.85rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(5,28,54,0.78) 0%, rgba(13,59,102,0.78) 100%),
    url('https://images.unsplash.com/photo-1585704032915-c3400ca199e7?w=1920&q=80') center/cover no-repeat;
  color: #fff; overflow: hidden; padding: 4rem 1.5rem 5rem;
}
.hero.cat-residential {
  background:
    linear-gradient(135deg, rgba(5,28,54,0.78) 0%, rgba(13,59,102,0.78) 100%),
    url('https://images.unsplash.com/photo-1593696140826-c58b021acf8b?w=1920&q=80') center/cover no-repeat;
}
.hero.cat-commercial {
  background:
    linear-gradient(135deg, rgba(5,28,54,0.78) 0%, rgba(13,59,102,0.78) 100%),
    url('https://images.unsplash.com/photo-1574359411659-15573a27fd0c?w=1920&q=80') center/cover no-repeat;
}
.hero.cat-drain {
  background:
    linear-gradient(135deg, rgba(5,28,54,0.78) 0%, rgba(13,59,102,0.78) 100%),
    url('https://images.unsplash.com/photo-1607472586893-edb57bdc0e39?w=1920&q=80') center/cover no-repeat;
}
.hero.cat-waterheater {
  background:
    linear-gradient(135deg, rgba(5,28,54,0.78) 0%, rgba(13,59,102,0.78) 100%),
    url('https://images.unsplash.com/photo-1542013936693-884638332954?w=1920&q=80') center/cover no-repeat;
}
.hero.home .hero-wrap {
  grid-template-columns: 1fr;
  max-width: 820px;
  text-align: center;
}
.hero.home .hero-actions { justify-content: center; }
.hero.home .hero-trust { justify-content: center; }
.hero.home p.intro { margin-left: auto; margin-right: auto; }

/* ===== STANDALONE FORM SECTION ===== */
.form-section { background: var(--gray); padding: 4rem 1.5rem; }
.form-section-wrap { max-width: 720px; margin: 0 auto; }
.form-section .hero-form {
  background: #fff; border-radius: 8px; padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(13,59,102,0.08);
  border-top: 4px solid var(--red);
}
.form-consent {
  display: flex; gap: 0.75rem; align-items: flex-start;
  background: var(--light-blue);
  border-radius: 6px;
  padding: 1rem;
  margin: 0.5rem 0 1.25rem;
  font-size: 0.78rem; line-height: 1.5; color: var(--text);
}
.form-consent input[type="checkbox"] {
  margin-top: 0.2rem; flex-shrink: 0;
  width: 16px; height: 16px; accent-color: var(--red);
}
.form-consent a { color: var(--red); text-decoration: underline; }
.netlify-hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ===== SUCCESS MODAL ===== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(5, 28, 54, 0.65);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  padding: 1rem;
  opacity: 0; transition: opacity 0.2s;
}
.modal-backdrop[hidden] { display: none; }
.modal-backdrop.show { opacity: 1; }
.modal-card {
  background: #fff; border-radius: 10px;
  padding: 2.5rem 2rem 2rem; max-width: 440px; width: 100%;
  position: relative; text-align: center;
  border-top: 5px solid var(--red);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  transform: translateY(10px); transition: transform 0.2s;
}
.modal-backdrop.show .modal-card { transform: translateY(0); }
.modal-close {
  position: absolute; top: 0.6rem; right: 0.8rem;
  background: transparent; border: none; cursor: pointer;
  font-size: 1.6rem; line-height: 1; color: var(--muted);
  padding: 0.25rem 0.5rem; border-radius: 4px;
}
.modal-close:hover { background: var(--gray); color: var(--text); }
.modal-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: #5cb85c; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 700;
  margin: 0 auto 1rem;
}
.modal-card h3 {
  font-size: 1.5rem; color: var(--navy); margin-bottom: 0.5rem;
  text-transform: uppercase; letter-spacing: 0.02em;
}
.modal-card p { color: var(--text); margin-bottom: 0.5rem; }
.modal-card .modal-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.modal-card .modal-sub a { color: var(--red); font-weight: 700; }
.modal-card .btn { width: 100%; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0 50 L100 50 M50 0 L50 100' stroke='%23ffffff' stroke-width='0.5' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 100% 100%, 60px 60px;
}
.hero-wrap {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem;
  align-items: center; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(244, 180, 0, 0.15); border: 1px solid var(--yellow);
  color: var(--yellow); padding: 0.4rem 1rem; border-radius: 999px;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 1.5rem;
}
.hero h1 {
  color: #fff; font-size: clamp(2.2rem, 4.5vw, 3.7rem);
  text-transform: uppercase; margin-bottom: 0.75rem; letter-spacing: -0.01em;
}
.hero h1 .accent { color: var(--yellow); }
.hero .subhead {
  font-family: 'Roboto Condensed', sans-serif; font-size: 1.5rem;
  font-weight: 700; color: #fff; text-transform: uppercase;
  margin-bottom: 1rem; letter-spacing: 0.02em;
}
.hero .subhead span { color: var(--yellow); }
.hero p.intro {
  font-size: 1.1rem; color: rgba(255,255,255,0.85);
  margin-bottom: 2rem; max-width: 540px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.hero-trust {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-trust .stars {
  display: flex; align-items: center; gap: 0.4rem;
  color: var(--yellow); font-size: 1.1rem;
}
.hero-trust .stars-num {
  font-family: 'Roboto Condensed', sans-serif; font-weight: 700;
  font-size: 1.5rem; color: #fff; margin-right: 0.5rem;
}
.hero-trust .reviews-text {
  font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.3;
}
.hero-trust .reviews-text strong { color: #fff; }

/* Hero form */
.hero-form {
  background: #fff; color: var(--text); border-radius: 8px;
  padding: 2rem; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border-top: 5px solid var(--red);
}
.hero-form h3 { font-size: 1.4rem; text-transform: uppercase; margin-bottom: 0.25rem; }
.hero-form .sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-grid.full { grid-template-columns: 1fr; }
.form-field { margin-bottom: 0.75rem; }
.form-field label {
  display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  color: var(--navy); margin-bottom: 0.3rem; letter-spacing: 0.05em;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 0.7rem 0.85rem; border: 1.5px solid var(--border);
  border-radius: 4px; font-family: 'Open Sans', sans-serif; font-size: 0.95rem;
  background: #fff; color: var(--text); transition: border-color 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--navy);
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; margin-top: 0.5rem; }
.form-tiny { font-size: 0.7rem; color: var(--muted); margin-top: 0.75rem; text-align: center; }
.form-success {
  display: none; background: #e7f7ed; border: 1px solid #5cb85c; color: #2d6932;
  padding: 1rem; border-radius: 4px; margin-top: 1rem; text-align: center; font-weight: 600;
}
.form-success.show { display: block; }
.form-error {
  display: none; background: #fdecec; border: 1px solid var(--red); color: var(--red-dark);
  padding: 1rem; border-radius: 4px; margin-top: 1rem; text-align: center; font-weight: 600;
}
.form-error.show { display: block; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Compact hero variant for sub-pages */
.hero.compact { padding: 3rem 1.5rem 3.5rem; }
.hero.compact .hero-wrap { grid-template-columns: 1fr; text-align: center; }
.hero.compact h1 { margin-bottom: 1rem; }
.hero.compact p.intro { margin: 0 auto 2rem; }
.hero.compact .hero-actions { justify-content: center; }
.breadcrumb {
  font-size: 0.85rem; color: rgba(255,255,255,0.7);
  margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.1em;
}
.breadcrumb a { color: var(--yellow); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { margin: 0 0.5rem; opacity: 0.5; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--gray); border-bottom: 1px solid var(--border); padding: 1.5rem 1.5rem; }
.trust-bar-wrap {
  max-width: 1240px; margin: 0 auto; display: flex; flex-wrap: wrap;
  justify-content: space-around; gap: 1.5rem; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: 'Roboto Condensed', sans-serif; font-weight: 700;
  color: var(--navy); text-transform: uppercase; font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.trust-item .icon-wrap {
  width: 40px; height: 40px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); flex-shrink: 0;
}
.trust-item .icon-wrap svg { width: 22px; height: 22px; }

/* ===== SECTION ===== */
section { padding: 5rem 1.5rem; }
.container { max-width: 1240px; margin: 0 auto; }
.section-head { text-align: center; max-width: 800px; margin: 0 auto 3.5rem; }
.section-eyebrow {
  display: inline-block; color: var(--red);
  font-family: 'Roboto Condensed', sans-serif; font-size: 0.95rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}
.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem); text-transform: uppercase; margin-bottom: 1rem;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem;
  max-width: 1240px; margin: 0 auto;
}
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: 6px;
  overflow: hidden; transition: all 0.25s;
  display: flex; flex-direction: column;
  color: inherit; text-decoration: none;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(13, 59, 102, 0.15);
  border-color: var(--navy);
}
.service-img {
  height: 180px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy) url('https://images.unsplash.com/photo-1593696140826-c58b021acf8b?w=800&q=70') center/cover no-repeat;
}
.service-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,28,54,0.65), rgba(13,59,102,0.65));
}
.service-img.b { background: var(--navy) url('https://images.unsplash.com/photo-1607472586893-edb57bdc0e39?w=800&q=70') center/cover no-repeat; }
.service-img.c { background: var(--navy) url('https://images.unsplash.com/photo-1542013936693-884638332954?w=800&q=70') center/cover no-repeat; }
.service-img.f { background: var(--navy) url('https://images.unsplash.com/photo-1574359411659-15573a27fd0c?w=800&q=70') center/cover no-repeat; }
.service-img svg {
  width: 80px; height: 80px; color: rgba(255,255,255,0.9);
  position: relative; z-index: 2;
}
.service-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--yellow); color: var(--navy-deep);
  padding: 0.25rem 0.75rem; border-radius: 3px;
  font-family: 'Roboto Condensed', sans-serif; font-size: 0.75rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; z-index: 3;
}
.service-tag.red { background: var(--red); color: #fff; }
.service-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-body h3 { font-size: 1.3rem; text-transform: uppercase; margin-bottom: 0.6rem; }
.service-body p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.25rem; flex: 1; }
.service-price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1rem; border-top: 1px dashed var(--border);
}
.service-price {
  font-family: 'Roboto Condensed', sans-serif; color: var(--red);
  font-weight: 700; font-size: 1.15rem;
}
.service-price small { color: var(--muted); font-size: 0.75rem; font-weight: 400; text-transform: uppercase; }
.service-link {
  color: var(--navy); font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700; text-transform: uppercase; font-size: 0.85rem;
  letter-spacing: 0.05em; display: flex; align-items: center; gap: 0.3rem;
  transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 0.6rem; color: var(--red); }
.service-card.text { border-top: 4px solid var(--red); }
.service-card.text .service-body { padding: 1.75rem 1.5rem 1.5rem; }
.service-card.text h3 { color: var(--navy); }

/* ===== ABOUT ===== */
.about { background: var(--gray); }
.about-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center; }
.about-image {
  position: relative; aspect-ratio: 4/5; border-radius: 8px; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 50px rgba(13,59,102,0.25);
}
.about-image::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(244,180,0,0.15) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0 50 L100 50 M50 0 L50 100' stroke='%23ffffff' stroke-width='0.5' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 100% 100%, 50px 50px;
}
.about-image-content { position: relative; z-index: 2; text-align: center; padding: 2rem; color: #fff; }
.about-image-content .big-num {
  font-family: 'Roboto Condensed', sans-serif; font-size: 7rem;
  font-weight: 700; color: var(--yellow); line-height: 1; margin-bottom: 0.5rem;
}
.about-image-content .big-label {
  font-family: 'Roboto Condensed', sans-serif; font-size: 1.5rem;
  text-transform: uppercase; font-weight: 700; margin-bottom: 2rem;
}
.about-image-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.2);
}
.about-image-stats .s-num {
  font-family: 'Roboto Condensed', sans-serif; font-size: 2.5rem;
  font-weight: 700; color: #fff;
}
.about-image-stats .s-lbl {
  font-size: 0.8rem; text-transform: uppercase; color: rgba(255,255,255,0.8); letter-spacing: 0.05em;
}
.about-content .section-eyebrow { text-align: left; }
.about-content h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem); text-transform: uppercase; margin-bottom: 1.25rem;
}
.about-content > p { color: var(--muted); margin-bottom: 1rem; font-size: 1rem; }
.promises { list-style: none; margin: 1.5rem 0 2rem; }
.promises li {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 0.85rem 0; border-bottom: 1px solid var(--border);
}
.promises li:last-child { border-bottom: none; }
.promise-icon {
  width: 36px; height: 36px; background: var(--red); border-radius: 50%;
  color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.promise-icon svg { width: 18px; height: 18px; }
.promises strong {
  display: block; color: var(--navy); font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.1rem; text-transform: uppercase; margin-bottom: 0.15rem;
}
.promises span { color: var(--muted); font-size: 0.92rem; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--red); color: #fff; padding: 3rem 1.5rem; text-align: center; }
.cta-banner-wrap {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-banner .cta-text { text-align: left; flex: 1; min-width: 280px; }
.cta-banner h3 {
  color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-transform: uppercase; margin-bottom: 0.4rem;
}
.cta-banner p { color: rgba(255,255,255,0.9); margin: 0; font-size: 1.05rem; }
.cta-banner-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-banner .btn-yellow { padding: 1rem 1.5rem; font-size: 1rem; }
.cta-banner .btn-white { background: #fff; color: var(--red); border-color: #fff; }
.cta-banner .btn-white:hover { background: var(--navy-deep); color: #fff; border-color: var(--navy-deep); }

/* ===== REVIEWS ===== */
.reviews { background: #fff; }
.reviews-platforms {
  display: flex; justify-content: center; gap: 2rem;
  margin-bottom: 3rem; flex-wrap: wrap;
}
.platform-badge {
  background: var(--gray); border: 1px solid var(--border); border-radius: 6px;
  padding: 1rem 1.5rem; display: flex; align-items: center; gap: 0.75rem; min-width: 200px;
  text-decoration: none; color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.platform-badge:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 59, 102, 0.1);
}
.platform-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700; font-size: 1.2rem; flex-shrink: 0;
}
.platform-icon.g { background: #4285f4; }
.platform-icon.f { background: #1877f2; }
.platform-icon.y { background: #d32323; }
.platform-info .rating {
  font-family: 'Roboto Condensed', sans-serif; font-weight: 700;
  font-size: 1.2rem; color: var(--navy); line-height: 1;
}
.platform-info .rating .stars { color: var(--yellow); margin-left: 0.25rem; }
.platform-info .label { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem;
}
.review-card {
  background: var(--gray); border: 1px solid var(--border);
  border-left: 4px solid var(--red); padding: 1.75rem; border-radius: 4px; position: relative;
}
.review-card .quote-mark {
  position: absolute; top: 12px; right: 18px;
  font-family: 'Roboto Condensed', sans-serif; font-size: 4rem;
  color: var(--navy); opacity: 0.1; line-height: 1;
}
.review-card .review-stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 0.85rem; letter-spacing: 0.1em; }
.review-card .review-body { color: var(--text); font-size: 0.98rem; margin-bottom: 1.25rem; line-height: 1.55; }
.review-card .review-meta {
  display: flex; align-items: center; gap: 0.75rem;
  padding-top: 1rem; border-top: 1px solid var(--border);
}
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--navy);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: 'Roboto Condensed', sans-serif; font-weight: 700;
}
.review-name {
  font-family: 'Roboto Condensed', sans-serif; font-weight: 700;
  color: var(--navy); text-transform: uppercase; font-size: 0.95rem;
}
.review-loc { font-size: 0.8rem; color: var(--muted); }
.review-platform {
  margin-left: auto; font-size: 0.75rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.05em;
  text-decoration: none; transition: color 0.2s;
}
.review-platform:hover { color: var(--red); }

/* ===== SERVICE AREA ===== */
.areas { background: var(--gray); }
.areas-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: center; }
.areas-side .section-eyebrow { display: block; }
.areas-side h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); text-transform: uppercase; margin-bottom: 1rem; }
.areas-side p { color: var(--muted); margin-bottom: 1.5rem; }
.areas-side .cta-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.areas-list {
  background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 1.75rem;
}
.areas-list h4 {
  font-size: 1.05rem; text-transform: uppercase; margin-bottom: 1rem;
  color: var(--navy); padding-bottom: 0.75rem; border-bottom: 2px solid var(--red);
}
.areas-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.5rem 1rem; list-style: none;
}
.areas-grid li {
  padding: 0.4rem 0; font-size: 0.92rem; color: var(--text);
  display: flex; align-items: center; gap: 0.5rem;
}
.areas-grid li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--red); border-radius: 50%; flex-shrink: 0;
}

/* ===== STUB / SUB-PAGE CONTENT ===== */
.page-body { padding: 5rem 1.5rem; }
.page-body .container { max-width: 900px; }
.page-body h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); text-transform: uppercase; margin: 2rem 0 1rem; }
.page-body h2:first-child { margin-top: 0; }
.page-body p { color: var(--text); margin-bottom: 1rem; font-size: 1.02rem; }
.page-body ul.checks { list-style: none; margin: 1rem 0 2rem; }
.page-body ul.checks li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.5rem 0; color: var(--text);
}
.page-body ul.checks li::before {
  content: '✓'; color: var(--red); font-weight: 700;
  flex-shrink: 0; font-size: 1.1rem;
}
.page-body ul.checks li a {
  color: var(--red); font-weight: 700; font-size: 1.05rem;
  text-decoration: underline;
}
.page-body ul.checks li a:hover { color: var(--red-dark); }
.page-body .lead {
  font-size: 1.15rem; color: var(--muted);
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
footer.site { background: var(--navy-deep); color: rgba(255,255,255,0.85); padding: 4rem 1.5rem 0; }
.footer-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem;
}
footer.site h5 {
  color: #fff; font-size: 1rem; text-transform: uppercase;
  margin-bottom: 1.25rem; letter-spacing: 0.05em;
  padding-bottom: 0.65rem; border-bottom: 2px solid var(--red);
  display: inline-block;
}
footer.site ul { list-style: none; }
footer.site ul li { margin-bottom: 0.5rem; }
footer.site a { color: rgba(255,255,255,0.75); font-size: 0.92rem; transition: color 0.2s; }
footer.site a:hover { color: var(--yellow); }
.footer-brand .logo-block { margin-bottom: 1rem; }
.footer-brand .logo-text .name { color: #fff; }
.footer-brand .logo-text .tag { color: rgba(255,255,255,0.6); }
.footer-brand p { font-size: 0.92rem; color: rgba(255,255,255,0.7); margin-bottom: 1.25rem; line-height: 1.6; }
.footer-contact-row {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 0.5rem; font-size: 0.92rem;
}
.footer-contact-row svg { width: 16px; height: 16px; color: var(--yellow); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0; text-align: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  max-width: 1240px; margin: 0 auto;
}
.footer-bottom .license { color: var(--yellow); font-weight: 600; margin: 0.25rem 0; }

.header-wrap { flex-wrap: nowrap; }
.header-wrap > * { flex-shrink: 0; }
nav.primary ul { flex-wrap: nowrap; }
nav.primary a { white-space: nowrap; }
.header-actions { flex-wrap: nowrap; }
.header-phone .number { white-space: nowrap; }
.header-phone .label { white-space: nowrap; }
.topbar .left { flex-wrap: nowrap; }
.topbar .left .item { white-space: nowrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1280px) {
  .nav-toggle { display: inline-flex; align-items: center; order: -1; }
  .logo-block { order: 0; }
  .header-actions { order: 1; }
  nav.primary {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    padding: 0.5rem 1rem;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
  nav.primary.open { display: block; }
  nav.primary ul { flex-direction: column; align-items: stretch; gap: 0; }
  nav.primary > ul > li { border-bottom: 1px solid var(--border); }
  nav.primary > ul > li:last-child { border-bottom: none; }
  nav.primary a { padding: 0.85rem 0.5rem; font-size: 0.95rem; width: 100%; }
  nav.primary .dropdown {
    position: static; display: block;
    background: var(--gray);
    border: none; border-top: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0.25rem 0 0.5rem 0;
  }
  nav.primary .dropdown a { padding: 0.55rem 1.25rem; font-size: 0.88rem; }
  nav.primary .has-dropdown > a::after { display: none; }
}

@media (max-width: 980px) {
  .hero-wrap, .about-wrap, .areas-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topbar .left { font-size: 0.78rem; gap: 1rem; }
}

@media (max-width: 600px) {
  .topbar { display: none; }
  header.main { top: 0; }
  section { padding: 3.5rem 1rem; }
  .hero { padding: 3rem 1rem 4rem; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .header-wrap { padding: 0.5rem 0.75rem; gap: 0.5rem; }
  .logo-icon { width: 36px; height: 36px; }
  .logo-icon svg { width: 20px; height: 20px; }
  .logo-text .name { font-size: 0.95rem; }
  .header-actions { gap: 0.35rem; }
  .header-actions .btn { padding: 0.4rem 0.6rem; font-size: 0.7rem; }
  .header-phone .number { font-size: 0.9rem; }
  .header-phone .label { font-size: 0.55rem; }
  .header-actions .btn-outline { display: none; }
  .topbar .left { font-size: 0.7rem; gap: 0.5rem; }
  .topbar .left .item svg { display: none; }
  .topbar .left .item:not(:first-child) { display: none; }
  .cta-banner-wrap { flex-direction: column; text-align: center; }
  .cta-banner .cta-text { text-align: center; }
}

@media (max-width: 420px) {
  .header-phone { display: none; }
}
