/* ============================================================
   AXIS PLUMBERS — styles.css
   ============================================================ */

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  --black:      #111111;
  --white:      #FFFFFF;
  --g100:       #F5F5F5;
  --g200:       #E8E8E8;
  --g300:       #D4D4D4;
  --g400:       #AAAAAA;
  --g500:       #888888;
  --g700:       #444444;
  --max-w:      1160px;
  --gutter:     40px;
  --section-v:  96px;
  --font-sans:  "Helvetica LT Pro", "Helvetica Neue", "DM Sans", Helvetica, Arial, sans-serif;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Utility ─────────────────────────────────────────────── */
.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--g500);
}
.label--mb { margin-bottom: 12px; }

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

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  padding: 16px 32px;
  transition: background 0.22s, color 0.22s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--white); color: var(--black); }

.btn-call {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--white);
  padding: 18px 40px;
  transition: background 0.22s, color 0.22s;
  white-space: nowrap;
}
.btn-call:hover { background: var(--g100); }

.btn-ghost {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 18px 40px;
  transition: border-color 0.22s, background 0.22s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.07); }

/* ── Navigation ──────────────────────────────────────────── */
#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--g300);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  transition: box-shadow 0.2s;
}
#nav.scrolled { box-shadow: 0 1px 8px rgba(0, 0, 0, 0.07); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}
.nav-logo-sub {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g400);
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g500);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }
.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  padding: 10px 22px;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--white); color: var(--black); }

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--black);
  transition: all 0.2s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  flex-direction: column;
  padding: 32px var(--gutter);
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  align-self: flex-end;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g500);
  cursor: pointer;
  padding: 8px;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: var(--black); }
.mobile-menu a {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
  padding: 16px 0;
  border-bottom: 1px solid var(--g200);
  transition: opacity 0.2s;
}
.mobile-menu a:hover { opacity: 0.5; }
.mobile-cta {
  margin-top: 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--black);
  padding: 20px 32px;
  text-align: center;
}

/* ── Hero ────────────────────────────────────────────────── */
#hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 0 var(--gutter);
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
}

.hero-texture {
  position: absolute;
  inset: 0;
  background: url('../assets/images/texture-hero.jpg') center / cover no-repeat;
  background-size: 140% auto;
  filter: grayscale(100%) brightness(0.52) contrast(1.5);
  z-index: 0;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.7) 35%, rgba(5, 5, 5, 0.35) 65%, rgba(5, 5, 5, 0.1) 100%),
    radial-gradient(ellipse 75% 60% at 38% 45%, rgba(28, 28, 28, 0.4) 0%, rgba(10, 10, 10, 0.75) 65%, rgba(5, 5, 5, 0.93) 100%);
  z-index: 1;
}

#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-ghost-word {
  position: absolute;
  right: -0.05em;
  bottom: -0.15em;
  font-size: clamp(160px, 22vw, 280px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
  user-select: none;
  pointer-events: none;
  z-index: 3;
  white-space: nowrap;
}

.hero-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  z-index: 6;
}

.scanlines {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255, 255, 255, 0.012) 3px,
    rgba(255, 255, 255, 0.012) 4px
  );
  pointer-events: none;
}

.vignette {
  position: absolute;
  inset: 0;
  z-index: 5;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.35) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, transparent 25%, transparent 70%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 10;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 100px 0 140px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-overline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--g500);
  margin-bottom: 28px;
}
.hero-overline::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--g500);
  flex-shrink: 0;
}

.hero-headline {
  font-size: clamp(56px, 9vw, 112px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin-bottom: 28px;
  background: linear-gradient(175deg, #ffffff 50%, #777777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--g500);
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 44px;
  letter-spacing: 0.01em;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--g500);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.hero-badge-text {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g500);
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.hero-scroll:hover { opacity: 0.8; }
.hero-scroll-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--g500);
}
.hero-scroll-arrow {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounceDown 2s ease-in-out infinite;
}
.hero-scroll-arrow svg { display: block; }
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(4px); }
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.hero-stat {
  flex: 1;
  padding: 20px var(--gutter);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--g500);
}

/* ── Trust Strip ─────────────────────────────────────────── */
#trust {
  background: var(--g100);
  border-bottom: 1px solid var(--g200);
  padding: 20px var(--gutter);
}
.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-items {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g500);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: var(--g400);
  border-radius: 50%;
}
.trust-item:first-child::before { display: none; }
.trust-reg {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--g400);
}

/* ── Services ────────────────────────────────────────────── */
#services {
  padding: var(--section-v) 0;
}
.section-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  margin-bottom: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.section-header--flush {
  padding: 0;
  margin-bottom: 0;
}
.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--black);
}
.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--g300);
  background: var(--g300);
  gap: 1px;
}
.service-cell {
  background: var(--white);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.2s;
  cursor: default;
}
.service-cell:hover { background: var(--g100); }
.service-cell--cta {
  background: var(--black);
  cursor: pointer;
}
.service-cell--cta:hover { background: #1a1a1a; }
.service-num {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--g400);
}
.service-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.3;
}
.service-cell--cta .service-num  { color: var(--g500); }
.service-cell--cta .service-name { color: var(--white); font-size: 22px; font-weight: 700; }
.service-arrow { font-size: 14px; color: var(--g400); margin-top: 4px; }
.service-cell--cta .service-arrow { color: var(--g500); }

/* ── Service cell anchor override ───────────────────────── */
a.service-cell { display: flex; }

/* ── About ───────────────────────────────────────────────── */
#about {
  padding: var(--section-v) 0;
  background: var(--black);
}
.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.about-title {
  color: var(--white);
  margin-top: 16px;
}
.about-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 4px;
}
.about-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.about-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--g500);
}
.about-stats {
  display: flex;
  gap: 40px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num   { font-size: 32px; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.stat-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--g500); }

/* ── Areas ───────────────────────────────────────────────── */
#areas {
  padding: var(--section-v) 0;
  border-top: 1px solid var(--g200);
}
.areas-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.areas-intro {
  font-size: 17px;
  color: var(--g500);
  line-height: 1.7;
  max-width: 640px;
  margin-top: 24px;
}
.areas-list {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--g200);
}
.area-item {
  padding: 20px 32px 20px 0;
  font-size: 18px;
  color: var(--g700);
  border-bottom: 1px solid var(--g200);
  width: 33.33%;
  letter-spacing: -0.01em;
}
.area-item:nth-child(3n) { width: 33.34%; }

/* ── Testimonials ────────────────────────────────────────── */
#testimonials {
  padding: var(--section-v) 0;
  background: var(--g100);
}
.testimonials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.reviews-source {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g400);
  align-self: flex-end;
}

.reviews-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--g300);
}
.review {
  padding: 32px 0;
  border-bottom: 1px solid var(--g300);
  display: grid;
  grid-template-columns: 48px 1fr 180px;
  gap: 32px;
  align-items: start;
}
.review-stars {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 2px;
}
.star-row { display: flex; gap: 2px; }
.star {
  width: 8px;
  height: 8px;
  background: var(--black);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.review-text {
  font-size: 17px;
  color: var(--g700);
  line-height: 1.65;
}
.review-author {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 2px;
}
.review-name { font-size: 13px; font-weight: 500; color: var(--black); }
.review-loc  { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--g400); }

/* ── Contact ─────────────────────────────────────────────── */
#contact {
  padding: var(--section-v) 0;
}
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left { display: flex; flex-direction: column; gap: 32px; }
.phone-display { display: flex; flex-direction: column; gap: 6px; }
.phone-display a {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1;
  transition: opacity 0.2s;
}
.phone-display a:hover { opacity: 0.55; }
.contact-meta  { display: flex; flex-direction: column; gap: 16px; }
.meta-row      { display: flex; flex-direction: column; gap: 3px; }
.meta-key      { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--g400); }
.meta-val      { font-size: 15px; color: var(--g700); }
.meta-val--link { transition: opacity 0.2s; }
.meta-val--link:hover { opacity: 0.6; }
.contact-form  { display: flex; flex-direction: column; gap: 16px; }
.field         { display: flex; flex-direction: column; gap: 6px; }
.field-label   { font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--g500); }
.field input,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--g300);
  padding: 13px 15px;
  outline: none;
  width: 100%;
  transition: border-color 0.18s;
  border-radius: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.field input:focus,
.field textarea:focus  { border-color: var(--black); }
.field input::placeholder,
.field textarea::placeholder { color: var(--g400); }
.field textarea { resize: vertical; min-height: 96px; }
.form-submit {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  padding: 16px 32px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s, color 0.2s;
}
.form-submit:hover { background: var(--white); color: var(--black); }

/* ── Footer ──────────────────────────────────────────────── */
#footer {
  background: var(--black);
  padding: 48px var(--gutter) 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand       { display: flex; flex-direction: column; gap: 12px; }
.footer-logo-name   { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); }
.footer-logo-sub    { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--g500); }
.footer-cols        { display: flex; gap: 64px; }
.footer-col         { display: flex; flex-direction: column; gap: 12px; }
.footer-col-label   { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--g500); margin-bottom: 4px; }
.footer-col a,
.footer-col span    { font-size: 13px; color: var(--g400); transition: color 0.18s; display: block; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy   { font-size: 11px; color: var(--g500); letter-spacing: 0.06em; }
.footer-reg    { font-size: 11px; color: var(--g500); letter-spacing: 0.06em; }
.footer-credit { font-size: 11px; color: var(--g500); letter-spacing: 0.06em; }
.footer-credit-link {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.footer-credit-link:hover { border-color: var(--white); }

/* ── Scroll Animations ───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --gutter: 24px; --section-v: 64px; }

  .nav-links,
  .nav-cta      { display: none; }
  .nav-hamburger { display: flex; }

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

  .about-inner { grid-template-columns: 1fr; gap: 40px; }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }

  .area-item,
  .area-item:nth-child(3n) { width: 50%; }

  .review { grid-template-columns: 36px 1fr; }
  .review-author { display: none; }

  .footer-cols { gap: 32px; }

  .hero-stats {
    position: static;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
  .hero-stat {
    min-width: 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .hero-ghost-word { font-size: 140px; }
}

@media (max-width: 580px) {
  .services-grid { grid-template-columns: 1fr; }

  .hero-btns { flex-direction: column; }
  .hero-btns .btn-call,
  .hero-btns .btn-ghost { width: 100%; text-align: center; }

  .area-item,
  .area-item:nth-child(3n) { width: 100%; }

  .about-stats { flex-direction: column; gap: 20px; }

  .footer-inner  { flex-direction: column; }
  .footer-cols   { flex-direction: column; gap: 24px; }

  .section-header { flex-direction: column; align-items: flex-start; }
}
