:root {
  --red: #e11b22;
  --red-dark: #b8141a;
  --ink: #16181d;
  --ink-soft: #3a3f4a;
  --muted: #6b7280;
  --line: #e7e8ec;
  --bg: #ffffff;
  --bg-alt: #f6f7f9;
  --bg-dark: #16181d;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(20, 22, 28, 0.08);
  --shadow-lg: 0 24px 60px rgba(20, 22, 28, 0.16);
  --maxw: 1140px;
  --head: "Barlow Condensed", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--head); font-weight: 700; letter-spacing: .3px;
  font-size: 1.02rem; text-transform: uppercase;
  padding: 12px 22px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(225, 27, 34, .28); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(20,22,28,.18); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--lg { font-size: 1.1rem; padding: 15px 30px; }
.btn--block { width: 100%; }

/* Topbar */
.topbar { background: var(--ink); color: #d7dae0; font-size: .85rem; }
.topbar__inner { display: flex; align-items: center; gap: 24px; min-height: 40px; flex-wrap: wrap; }
.topbar__item { display: none; }
.topbar__phones { margin-left: auto; display: flex; gap: 22px; }
.topbar__phone { font-weight: 600; color: #fff; white-space: nowrap; }
.topbar__phone:hover { color: #ff9a9d; }
.topbar__rating strong { color: #ffc107; font-weight: 700; letter-spacing: .3px; }
.topbar__rating { color: #fff; }
@media (min-width: 520px) { .topbar__item { display: inline; } }
@media (max-width: 560px) {
  .topbar__inner { justify-content: center; gap: 8px 18px; padding-top: 8px; padding-bottom: 8px; }
  .topbar__phones { margin-left: 0; justify-content: center; gap: 8px 18px; flex-wrap: wrap; }
}

/* Header */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header__inner { display: flex; align-items: center; gap: 16px; min-height: 120px; flex-wrap: nowrap; }
.brand img { height: 94px; width: auto; }
.nav { margin-left: auto; display: flex; flex-wrap: wrap; gap: 15px; }
.nav a { font-family: var(--head); font-weight: 600; font-size: 1rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .3px; white-space: nowrap; }
.nav a:hover, .nav a.is-active { color: var(--red); }
.header__cta { margin-left: 4px; }
.nav-toggle { display: none; }

@media (max-width: 960px) {
  .header__inner { flex-wrap: wrap; justify-content: center; padding-top: 6px; padding-bottom: 12px; }
  .brand { width: 100%; text-align: center; }
  .brand img { margin: 0 auto; }
  .nav { margin-left: 0; justify-content: center; gap: 14px 22px; }
  .header__cta { display: none; }
}
@media (max-width: 560px) {
  .brand img { height: 64px; }
  .nav a { font-size: .95rem; }
}

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(225,27,34,.10), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
  padding: 72px 0 60px;
}
.hero__inner { display: grid; grid-template-columns: 1.25fr .85fr; gap: 44px; align-items: center; }
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; gap: 26px; }
}
.eyebrow {
  display: inline-block; font-family: var(--head); font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.4px; font-size: .9rem; color: var(--red);
  background: rgba(225,27,34,.08); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow--light { color: #ffb3b6; background: rgba(255,255,255,.08); }
.hero h1 {
  font-family: var(--head); font-weight: 800; line-height: 1.08;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem); letter-spacing: -.3px; text-transform: uppercase;
}
.hl { color: var(--red); }
.hero__lead { font-size: 1.15rem; color: var(--ink-soft); margin: 22px 0 28px; max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 26px; color: var(--muted); font-size: .95rem; font-weight: 500; }
.hero__trust li:first-child { color: var(--red); }

.hero__card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-lg); padding: 30px;
}
.hero__card h3 { font-family: var(--head); font-size: 1.7rem; text-transform: uppercase; }
.hero__card > p { color: var(--muted); margin: 10px 0 22px; }
.hero__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 22px; }
.hero__stats div { background: var(--bg-alt); border-radius: 12px; padding: 14px 10px; text-align: center; }
.hero__stats strong { display: block; font-family: var(--head); font-size: 1.5rem; color: var(--red); }
.hero__stats span { font-size: .74rem; color: var(--muted); line-height: 1.3; display: block; }

/* Hero results gallery */
.hero__gallery { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero__gallery figure { margin: 0; overflow: hidden; border-radius: 14px; box-shadow: var(--shadow-lg); }
.hero__gallery-main { grid-column: 1 / -1; }
.hero__gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__gallery-main img { aspect-ratio: 16 / 10; }
.hero__gallery figure:not(.hero__gallery-main) img { aspect-ratio: 1 / 1; }
.hero__gallery--four img { aspect-ratio: 1 / 1; }
.hero__gallery-badge {
  position: absolute; top: -12px; left: -8px; z-index: 2;
  background: var(--red); color: #fff; font-family: var(--head); font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; font-size: .9rem;
  padding: 7px 16px; border-radius: 999px; box-shadow: 0 8px 20px rgba(225,27,34,.35);
}

.hero__gallery img { cursor: zoom-in; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; background: rgba(15,17,22,.9); padding: 24px; cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 12px; box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.lightbox__close { position: absolute; top: 18px; right: 24px; background: none; border: none; color: #fff; font-size: 2.4rem; line-height: 1; cursor: pointer; font-family: var(--body); }

/* Strip */
.strip { background: var(--red); color: #fff; }
.strip__inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; padding: 20px 0; }
.strip__item { display: flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--head); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; font-size: 1.02rem; text-align: center; }
.strip__item span { font-size: 1.3rem; }
@media (max-width: 780px) {
  .strip__inner { grid-template-columns: repeat(2,1fr); gap: 26px 16px; }
  .strip__item { flex-direction: column; gap: 8px; }
  .strip__item span { font-size: 1.7rem; }
}

/* Page hero (sub-page banner) */
.page-hero {
  background:
    radial-gradient(900px 400px at 80% -20%, rgba(225,27,34,.10), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
  padding: 22px 0 20px; text-align: center; border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero h1 { font-family: var(--head); font-weight: 800; text-transform: uppercase; font-size: clamp(1.6rem, 3.6vw, 2.5rem); line-height: 1.05; letter-spacing: -.3px; }
.page-hero p { color: var(--muted); max-width: 640px; margin: 10px auto 0; font-size: 1rem; }

/* CTA band */
.cta-band { background: var(--red); color: #fff; text-align: center; padding: 56px 0; }
.cta-band h2 { font-family: var(--head); font-weight: 800; text-transform: uppercase; font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.05; }
.cta-band p { margin: 12px 0 24px; color: #ffe0e1; font-size: 1.08rem; }
.cta-band .btn--primary { background: #fff; color: var(--red); box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.cta-band .btn--primary:hover { background: #111; color: #fff; }

/* Sections */
.section { padding: 84px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section__head h2, .why__text h2, .quote__intro h2 {
  font-family: var(--head); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.05; letter-spacing: -.3px;
}
.section__head p { color: var(--muted); margin-top: 14px; font-size: 1.08rem; }

/* Split sections (Domestic / Commercial / Equipment) */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.split__text p { color: var(--ink-soft); margin: 16px 0 22px; font-size: 1.08rem; }
.split__text h2 { font-family: var(--head); font-weight: 800; text-transform: uppercase; font-size: clamp(1.5rem, 2.8vw, 2.05rem); line-height: 1.1; }
.split--rev .split__text { order: 2; }
.split__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mini { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px; box-shadow: var(--shadow); transition: transform .18s ease; }
.mini:hover { transform: translateY(-4px); }
.mini__icon { font-size: 1.8rem; margin-bottom: 10px; }
.mini h3 { font-family: var(--head); font-size: 1.3rem; text-transform: uppercase; margin-bottom: 6px; }
.mini p { color: var(--muted); font-size: .95rem; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--rev .split__text { order: 0; } }

/* Equipment specs (on dark) */
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.spec { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 26px 22px; }
.spec strong { display: block; font-family: var(--head); font-size: 1.7rem; color: #ff6a6f; text-transform: uppercase; }
.spec span { color: #b9bdc7; font-size: .95rem; }

/* Reviews */
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.review .stars { color: #f5b301; letter-spacing: 2px; margin-bottom: 12px; }
.review p { color: var(--ink-soft); font-size: 1.02rem; font-style: italic; margin-bottom: 18px; }
.review cite { margin-top: auto; font-style: normal; font-family: var(--head); font-weight: 700; text-transform: uppercase; font-size: 1.1rem; }
.review cite span { display: block; font-family: var(--body); font-weight: 500; text-transform: none; color: var(--muted); font-size: .88rem; }

/* Cards grid */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__icon { font-size: 2.1rem; margin-bottom: 14px; }
.card h3 { font-family: var(--head); font-size: 1.5rem; text-transform: uppercase; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 1rem; }
.card--link { display: block; }
.card__more { display: inline-block; margin-top: 14px; font-family: var(--head); font-weight: 700; text-transform: uppercase; letter-spacing: .4px; color: var(--red); }
.center-cta { text-align: center; margin-top: 36px; }
@media (max-width: 900px) { .grid--3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid--3 { grid-template-columns: 1fr; } }

/* Why */
.why__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.why__text p { color: var(--ink-soft); margin: 16px 0 22px; font-size: 1.08rem; }
.checklist { list-style: none; margin-bottom: 26px; }
.checklist li { position: relative; padding-left: 34px; margin-bottom: 12px; color: var(--ink-soft); font-weight: 500; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; background: var(--red); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 700;
}
.why__panel { display: flex; }
.quote-badge {
  background: var(--ink); color: #fff; border-radius: 20px; padding: 44px 38px;
  box-shadow: var(--shadow-lg); position: relative; width: 100%;
}
.quote-badge::before { content: "“"; font-family: Georgia, serif; font-size: 6rem; color: var(--red); line-height: .5; display: block; margin-bottom: 10px; }
.quote-badge p { font-family: var(--head); font-weight: 700; font-size: 1.9rem; line-height: 1.15; text-transform: uppercase; }
.quote-badge span { display: block; margin-top: 18px; color: #ffb3b6; font-size: .95rem; }
@media (max-width: 860px) { .why__inner { grid-template-columns: 1fr; } }

/* Pricing */
.pricing { max-width: 640px; margin: 0 auto; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 20px 26px; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
.price-row:last-child { border-bottom: none; }
.price-row:nth-child(even) { background: var(--bg-alt); }
.price-row span { font-weight: 500; }
.price-row strong { font-family: var(--head); color: var(--red); font-size: 1.35rem; }
.pricing__note { text-align: center; color: var(--muted); font-size: .92rem; margin-top: 18px; }

/* Compact two-column price grid */
.section--tight { padding: 56px 0; }
.section__head--sm { margin-bottom: 30px; }
.pricing--grid { max-width: 820px; display: grid; grid-template-columns: 1fr 1fr; }
.pricing--grid .price-row { padding: 14px 22px; font-size: 1rem; }
.pricing--grid .price-row strong { font-size: 1.2rem; }
.pricing--grid .price-row:nth-child(even) { background: #fff; }
.pricing--grid .price-row:nth-child(4n+2), .pricing--grid .price-row:nth-child(4n+3) { background: var(--bg-alt); }
.pricing--grid .price-row:nth-child(odd) { border-right: 1px solid var(--line); }
@media (max-width: 560px) {
  .pricing--grid { grid-template-columns: 1fr; }
  .pricing--grid .price-row:nth-child(odd) { border-right: none; }
  .pricing--grid .price-row:nth-child(4n+2), .pricing--grid .price-row:nth-child(4n+3) { background: #fff; }
  .pricing--grid .price-row:nth-child(even) { background: var(--bg-alt); }
}

/* Quote / dark section */
.section--dark { background: var(--bg-dark); color: #fff; }
.section--dark .split__text p, .light { color: #b9bdc7; }
.quote__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.quote__intro p { color: #b9bdc7; margin: 16px 0 22px; font-size: 1.08rem; }
.quote__contacts { display: flex; flex-wrap: wrap; gap: 16px; }
.quote__contacts a { font-family: var(--head); font-weight: 700; font-size: 1.35rem; color: #fff; }
.quote__contacts a:hover { color: #ffb3b6; }

.quote-form { background: #fff; color: var(--ink); border-radius: 18px; padding: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; box-shadow: var(--shadow-lg); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 1rem; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 10px; background: var(--bg-alt); color: var(--ink); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px rgba(225,27,34,.12); }
.quote-form .btn { grid-column: 1 / -1; }
.quote-form__note { grid-column: 1 / -1; text-align: center; color: var(--muted); font-size: .84rem; }
.quote-form__note--success { color: #178a3d; font-weight: 700; font-size: .95rem; }
.quote-form__note--error { color: var(--red); font-weight: 700; font-size: .95rem; }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
@media (max-width: 860px) { .quote__inner { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .quote-form { grid-template-columns: 1fr; } }

/* Footer */
.footer { background: #0f1116; color: #b9bdc7; padding: 60px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
.footer__brand img { height: 88px; margin-bottom: 18px; background: #fff; padding: 10px 14px; border-radius: 12px; }
.footer__brand p { font-size: .96rem; max-width: 320px; }
.footer__col h4 { font-family: var(--head); color: #fff; text-transform: uppercase; letter-spacing: .5px; font-size: 1.1rem; margin-bottom: 14px; }
.footer__col a, .footer__col span { display: block; margin-bottom: 9px; font-size: .96rem; }
.footer__col a:hover { color: #fff; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.08); }
.footer__bar-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 20px; padding: 20px 0; font-size: .85rem; color: #7c828e; }
.footer__credit a { color: #b9bdc7; text-decoration: underline; }
.footer__credit a:hover { color: #fff; }
@media (max-width: 860px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__inner { grid-template-columns: 1fr; } }

/* Floating call button (mobile) */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: var(--red); color: #fff;
  display: none; align-items: center; justify-content: center; font-size: 1.5rem;
  box-shadow: 0 10px 24px rgba(225,27,34,.4);
}
@media (max-width: 900px) { .fab { display: flex; } }

.fab--whatsapp { display: flex; bottom: 18px; background: #25D366; box-shadow: 0 10px 24px rgba(37,211,102,.4); }
@media (max-width: 900px) { .fab--whatsapp { bottom: 86px; } }
