/* ==========================================================================
   Hercules C&G Drain Inc — Site Styles
   ========================================================================== */

/* Self-hosted fonts (latin subset) — no third-party requests */

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/barlow-condensed-500.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/barlow-condensed-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow-condensed-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/inter-variable.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy-900: #062f4d;
  --navy-800: #0a4368;
  --navy-700: #0f5c8e;
  --accent-600: #0277c8;
  --accent-500: #2ba2f0;
  --accent-100: #e3f2fd;
  --gray-900: #1a202c;
  --gray-700: #3d4856;
  --gray-500: #64748b;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f7f9fc;
  --silver: #8b959d;
  --white: #ffffff;
  --radius: 10px;
  --shadow-sm: 0 1px 3px rgba(6, 47, 77, 0.08);
  --shadow-md: 0 6px 24px rgba(6, 47, 77, 0.12);
  --font-heading: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --container: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy-900);
  line-height: 1.15;
  font-weight: 700;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.7rem); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.5rem 0;
}

.section--gray {
  background: var(--gray-50);
}

.section--navy {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
}

.section--navy h2,
.section--navy h3,
.section--navy p {
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin-bottom: 0.5rem;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p {
  margin-top: 0.9rem;
  font-size: 1.07rem;
  color: var(--gray-500);
}

.section--navy .section-head p {
  color: #c4d3e8;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.8rem 1.7rem;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--primary {
  background: var(--accent-600);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--accent-500);
  color: var(--white);
}

.btn--outline {
  border-color: var(--white);
  color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--navy-900);
}

.btn--navy {
  background: var(--navy-900);
  color: var(--white);
}

.btn--navy:hover {
  color: var(--white);
}

/* --------------------------------------------------------------------------
   Top bar
   -------------------------------------------------------------------------- */

.topbar {
  background: var(--navy-900);
  color: #c4d3e8;
  font-size: 0.88rem;
  padding: 0.45rem 0;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar__note {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar__note .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2dd36f;
  box-shadow: 0 0 0 3px rgba(45, 211, 111, 0.25);
  flex-shrink: 0;
}

.topbar__phones {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy-900);
}

.brand:hover {
  text-decoration: none;
}

.brand__mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.brand__name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.05;
}

.brand__name span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--accent-600);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav a {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-800);
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  color: var(--accent-600);
  text-decoration: none;
}

.nav a.is-active {
  color: var(--accent-600);
  border-bottom-color: var(--accent-600);
}

.nav .btn {
  font-size: 0.98rem;
  padding: 0.55rem 1.15rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--navy-900);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(43, 162, 240, 0.22), transparent 60%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M0 30h18M42 30h18M30 0v18M30 42v18' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='2'/%3E%3Ccircle cx='30' cy='30' r='9' fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='2'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero__content {
  max-width: 620px;
}

.hero__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  margin-bottom: 1.4rem;
}

.hero h1 {
  color: var(--white);
}

.hero h1 em {
  font-style: normal;
  color: var(--accent-500);
}

.hero p {
  font-size: 1.18rem;
  color: #c4d3e8;
  margin: 1.2rem 0 2rem;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Trust bar under hero */

.trustbar {
  background: var(--navy-800);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.trustbar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.trustbar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #c4d3e8;
  font-size: 0.92rem;
  font-weight: 500;
}

.trustbar__item svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-500);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Page hero (interior pages)
   -------------------------------------------------------------------------- */

.page-hero {
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(43, 162, 240, 0.2), transparent 60%),
    linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: 3.8rem 0;
}

.page-hero h1 {
  color: var(--white);
}

.page-hero p {
  color: #c4d3e8;
  font-size: 1.12rem;
  max-width: 640px;
  margin-top: 0.8rem;
}

/* --------------------------------------------------------------------------
   Cards / grids
   -------------------------------------------------------------------------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--accent-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-600);
}

.card h3 {
  margin-bottom: 0.55rem;
}

.card p {
  color: var(--gray-500);
  font-size: 0.97rem;
}

/* Service tile links (home page) */

.service-tile {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.service-tile:hover {
  text-decoration: none;
  transform: translateY(-3px);
  border-color: var(--accent-500);
}

.service-tile svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent-600);
  flex-shrink: 0;
}

/* Checklists */

.checklist {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.checklist--2col {
  grid-template-columns: repeat(2, 1fr);
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--gray-700);
}

.checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background-color: var(--accent-600);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpath d='M22 4 12 14.01l-3-3'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpath d='M22 4 12 14.01l-3-3'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Service detail blocks (services page) */

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.service-block:last-child {
  border-bottom: 0;
}

.service-block h3 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0.8rem;
}

.service-block p {
  margin-bottom: 1.2rem;
}

.service-block__visual {
  border-radius: var(--radius);
}

.service-block__visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.service-block:nth-child(even) .service-block__visual {
  order: -1;
}

/* Process steps (pipe restoration page) */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow-sm);
  counter-increment: step;
}

.step::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-500);
  line-height: 1;
  margin-bottom: 0.7rem;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.45rem;
}

.step p {
  font-size: 0.94rem;
  color: var(--gray-500);
}

/* Stats band */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--accent-500);
  line-height: 1;
}

.stat__label {
  margin-top: 0.4rem;
  color: #c4d3e8;
  font-size: 0.98rem;
}

/* About split */

.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.about__panel {
  background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius);
  color: var(--white);
  padding: 2.3rem 2rem;
}

.about__panel h3 {
  color: var(--white);
  margin-bottom: 0.8rem;
}

.about__panel p {
  color: #c4d3e8;
  font-size: 0.98rem;
}

.about__panel .quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-500);
  margin-top: 1.2rem;
}

/* CTA band */

.cta-band {
  background:
    radial-gradient(800px 300px at 15% 120%, rgba(43, 162, 240, 0.25), transparent 60%),
    linear-gradient(135deg, var(--navy-900), var(--navy-800));
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.4rem;
}

.cta-band p {
  color: #c4d3e8;
}

.cta-band__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}

.contact-card svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent-600);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
}

.contact-card a {
  font-weight: 600;
}

.contact-card p,
.contact-card a {
  font-size: 0.98rem;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-md);
}

.form-card h2 {
  margin-bottom: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy-900);
  margin-bottom: 0.35rem;
}

.form-group .req {
  color: var(--accent-600);
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-900);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-500);
  box-shadow: 0 0 0 3px rgba(43, 162, 240, 0.15);
}

.form-note {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 0.9rem;
}

/* Service areas */

.areas {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.areas li {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 0.55rem 0.9rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy-800);
  box-shadow: var(--shadow-sm);
}

.areas li.areas__more {
  background: transparent;
  border-style: dashed;
  box-shadow: none;
  color: var(--gray-500);
}

.areas li {
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.areas li:hover {
  border-color: var(--accent-500);
  transform: translateY(-2px);
}

.areas a {
  display: block;
  color: var(--navy-800);
  font-weight: 500;
}

.areas a:hover {
  color: var(--accent-600);
  text-decoration: none;
}

.areas li.areas__more a {
  color: var(--gray-500);
}

/* Breadcrumb (interior page heroes) */

.crumbs {
  font-size: 0.85rem;
  color: #c4d3e8;
  margin-bottom: 0.7rem;
}

.crumbs a {
  color: #c4d3e8;
}

.crumbs a:hover {
  color: var(--white);
}

.crumbs span {
  color: var(--white);
}

/* Spacing utilities (replace inline styles for strict CSP) */

.mt-text { margin-top: 0.9rem; }
.mt-brand { margin-top: 1rem; }
.mt-btn { margin-top: 1.2rem; }
.mt-list { margin-top: 1.3rem; }

.center-cta {
  text-align: center;
  margin-top: 2.2rem;
}

/* Captioned media figure */

.media-figure {
  max-width: 460px;
  margin: 2.5rem auto 0;
  text-align: center;
}

.media-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.media-figure figcaption {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* FAQ accordion */

.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 0 1.3rem;
}

.faq__item summary {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  padding: 1.1rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--accent-600);
  line-height: 1;
  flex-shrink: 0;
}

.faq__item[open] summary::after {
  content: "\2212";
}

.faq__item p {
  margin: 0 0 1.2rem;
  color: var(--gray-700);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--navy-900);
  color: #c4d3e8;
  padding: 3.5rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer h4 {
  color: var(--white);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer p {
  font-size: 0.95rem;
}

.footer a {
  color: #c4d3e8;
}

.footer a:hover {
  color: var(--white);
}

.footer__brand .brand__name {
  color: var(--white);
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
}

.footer__contact li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.footer__contact svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-500);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem 0;
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Floating call button (mobile) */

.call-fab {
  display: none;
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent-600);
  box-shadow: 0 8px 24px rgba(2, 119, 200, 0.45);
  align-items: center;
  justify-content: center;
}

.call-fab svg {
  width: 26px;
  height: 26px;
  stroke: var(--white);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 920px) {
  .grid-3,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .about,
  .contact-grid,
  .service-block,
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__media {
    max-width: 520px;
    margin: 0 auto;
  }

  .areas {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-block:nth-child(even) .service-block__visual {
    order: 0;
  }

  .service-block__visual {
    min-height: 180px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .trustbar .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .section {
    padding: 3.2rem 0;
  }

  .grid-3,
  .grid-2,
  .steps,
  .checklist--2col,
  .form-row,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .areas {
    grid-template-columns: repeat(2, 1fr);
  }

  .topbar__note span.txt {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0 1rem;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav a.is-active {
    border-bottom-color: var(--gray-100);
  }

  .nav .btn {
    margin: 0.9rem 1.5rem 0;
    justify-content: center;
  }

  .hero__inner {
    padding: 3.8rem 0 3.4rem;
  }

  .call-fab {
    display: flex;
  }
}
