:root {
  --red: #c3192b;
  --red-dark: #971422;
  --black: #101215;
  --charcoal: #1b1e24;
  --grey: #66707a;
  --light: #f4f5f7;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(16, 18, 21, 0.18);
  --shadow-soft: 0 16px 40px rgba(16, 18, 21, 0.10);
  --radius: 15px;
  --transition: 0.35s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-light {
  background: var(--black);
  color: var(--white);
}
.section-light p { color: #c0c5cc; }
.section-dark {
  background: linear-gradient(145deg, #c3192b, #971422);
  color: var(--white);
}
.section-dark p { color: rgba(255,255,255,.82); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--red);
  border-radius: 999px;
}

.section-light .eyebrow,
.section-dark .eyebrow {
  color: var(--white);
}
.section-light .eyebrow::before,
.section-dark .eyebrow::before {
  background: rgba(255,255,255,.92);
}

h1, h2, h3 { line-height: 1.1; margin: 0; }
h1 { font-size: clamp(2.35rem, 4.7vw, 4.45rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2.1rem, 4vw, 3.7rem); letter-spacing: -0.04em; }
h3 { font-size: 1.25rem; letter-spacing: -0.02em; }

p { margin: 0; color: var(--grey); }

.lead {
  font-size: 1.12rem;
  max-width: 720px;
  margin-top: 20px;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 15px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  box-shadow: var(--shadow-soft);
}

.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 16px 34px rgba(255,255,255,.28), 0 14px 30px rgba(16,18,21,.16);
}
.btn-primary:hover {
  background: #f6f7f8;
  color: var(--red-dark);
  box-shadow: 0 22px 40px rgba(255,255,255,.22), 0 18px 36px rgba(16,18,21,.22);
}
.btn-secondary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(195,25,43,.32);
}
.btn-secondary:hover {
  background: var(--red-dark);
  box-shadow: 0 18px 38px rgba(151,20,34,.38);
}

header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(16,18,21,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 35px rgba(0,0,0,.18);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 18px 0;
}
header.scrolled {
  background: rgba(16,18,21,.98);
  box-shadow: 0 16px 38px rgba(0,0,0,.24);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  color: var(--white);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.header-actions { display: flex; align-items: center; gap: 12px; }

.social-links {
  display: flex;
  align-items: center;
  gap: 9px;
}

.social-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-link:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255,255,255,.20);
}
.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
}

.hero {
  min-height: 820px;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16,18,21,.96) 0%, rgba(16,18,21,.90) 48%, rgba(16,18,21,.40) 100%),
    url('https://images.unsplash.com/photo-1635424824849-1b09bdcc55b1?auto=format&fit=crop&w=2000&q=85') center/cover no-repeat;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, rgba(16,18,21,.40));
  z-index: -1;
}

.hero-content {
  width: min(760px, 100%);
  padding-top: 90px;
}

.hero .eyebrow { color: var(--white); }
.hero .eyebrow::before { background: var(--white); }
.hero h1 span { color: #ffd5db; }
.hero p {
  color: rgba(255,255,255,.82);
  font-size: 1.15rem;
  max-width: 680px;
  margin-top: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  font-weight: 700;
  color: var(--white);
}

.stats-wrap {
  margin-top: -66px;
  position: relative;
  z-index: 5;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(145deg, #ffffff, #f2f4f7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stat {
  padding: 30px;
  text-align: center;
  position: relative;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  width: 1px;
  height: 56%;
  background: linear-gradient(transparent, #d7d9de, transparent);
}

.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--red);
  letter-spacing: -0.04em;
}
.stat span { color: var(--grey); font-weight: 700; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(17,18,20,.15);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--black), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }

.icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(195,25,43,.10);
  color: var(--red);
  font-size: 1.35rem;
  margin-bottom: 20px;
  box-shadow: inset 0 0 0 1px rgba(195,25,43,.10);
}

.service-card p { margin-top: 12px; }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.image-stack { position: relative; }
.image-stack img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  left: -30px;
  bottom: 34px;
  width: min(320px, 82%);
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 22px 50px rgba(17,18,20,.22);
}
.floating-card strong { font-size: 1.15rem; color: var(--black); }
.floating-card p { margin-top: 7px; font-size: .95rem; }

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 700;
  color: #2c2f34;
}
.section-light .check-item { color: var(--white); }
.check-item span:first-child {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(195,25,43,.14);
  color: var(--red);
  font-size: .85rem;
  margin-top: 1px;
}
.section-light .check-item span:first-child {
  background: rgba(255,255,255,.16);
  color: var(--white);
}

.cta-band {
  padding: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(16,18,21,.95), rgba(27,30,36,.95)),
    url('https://images.unsplash.com/photo-1635424824849-1b09bdcc55b1?auto=format&fit=crop&w=1800&q=80') center/cover;
  color: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.cta-band p { color: rgba(255,255,255,.78); margin-top: 8px; }

.review-card .stars { color: #f2b01e; font-size: 1.1rem; letter-spacing: 2px; }
.review-card blockquote {
  margin: 18px 0 22px;
  color: #35383d;
  font-weight: 600;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
}
.review-author small { color: var(--grey); }

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.area-chip {
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.18);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.area-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0,0,0,.16);
  background: rgba(255,255,255,.24);
}
.area-panel {
  background: rgba(255,255,255,.95);
  color: var(--black);
}
.area-panel p { color: #4d535b !important; }

.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 21px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
  color: var(--black);
}
.faq-question span:last-child { color: var(--red); font-size: 1.4rem; transition: transform var(--transition); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.faq-answer p { padding: 0 24px 22px; color: var(--grey); }
.faq-item.active .faq-answer { max-height: 240px; }
.faq-item.active .faq-question span:last-child { transform: rotate(45deg); }

.contact-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
}

.contact-panel, .form-panel {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}
.contact-panel {
  background: linear-gradient(145deg, #c3192b, #971422);
  color: var(--white);
}
.contact-panel .eyebrow {
  color: var(--white);
  background: rgba(255,255,255,.14);
  padding: 8px 12px;
  border-radius: 999px;
}
.contact-panel .eyebrow::before {
  background: var(--white);
}
.contact-panel p { color: rgba(255,255,255,.82); margin-top: 18px; }
.contact-details { display: grid; gap: 16px; margin-top: 28px; }
.contact-detail {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  transition: background var(--transition), transform var(--transition);
}
.contact-detail:hover { background: rgba(255,255,255,.16); transform: translateX(4px); }
.contact-detail strong { display: block; }
.contact-detail small { color: rgba(255,255,255,.72); }

.form-panel { background: var(--white); }
.form-panel .btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(195,25,43,.30);
}
.form-panel .btn-primary:hover {
  background: var(--charcoal);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(16,18,21,.28);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-size: .9rem; font-weight: 800; }
input, textarea, select {
  width: 100%;
  border: 0;
  background: #f1f2f4;
  border-radius: 12px;
  padding: 15px 16px;
  outline: none;
  box-shadow: inset 0 0 0 1px transparent;
  transition: box-shadow var(--transition), background var(--transition);
}
input:focus, textarea:focus, select:focus {
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(195,25,43,.45), 0 8px 22px rgba(195,25,43,.08);
}
textarea { min-height: 140px; resize: vertical; }

footer {
  background: linear-gradient(145deg, #b71627, #8d1120);
  color: var(--white);
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.15fr;
  gap: 40px;
}
footer h3 { margin-bottom: 18px; }
footer p, footer a { color: rgba(255,255,255,.82); }
footer a { transition: color var(--transition), transform var(--transition); display: inline-block; }
footer a:hover { color: var(--white); transform: translateX(3px); }
footer .social-link {
  background: rgba(255,255,255,.14);
  color: var(--white);
}
footer .social-link:hover {
  transform: translateY(-3px);
  background: var(--white);
  color: var(--red);
}
.footer-social { margin-top: 22px; }
.footer-links { display: grid; gap: 10px; }
.footer-cta {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(0,0,0,.14);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.footer-cta p { margin: 10px 0 18px; }
.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.70);
  font-size: .9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.mobile-call {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 16px;
  right: 16px;
  bottom: 16px;
  min-height: 54px;
  border-radius: 14px;
  background: var(--white);
  color: var(--black);
  font-weight: 800;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 34px rgba(16,18,21,.22);
}

@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2)::after { display: none; }
  .image-stack { max-width: 720px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 72px 0; }
  .hero { min-height: 760px; background-position: 62% center; }
  .header-actions .btn { display: none; }
  .header-call { font-size: .9rem; }
  .social-links-header { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .stats-wrap { margin-top: -42px; }
  .stats, .grid-3, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .stat:not(:last-child)::after { display: none; }
  .stat:not(:last-child) { box-shadow: inset 0 -1px 0 #eceef1; }
  .floating-card { left: 14px; bottom: 14px; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 28px; }
  .contact-panel, .form-panel { padding: 26px; }
  .footer-bottom { flex-direction: column; }
  .mobile-call { display: flex; }
  body { padding-bottom: 78px; }
}

/* Form integration and accessibility */
.website-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 12px; min-height: 24px; font-weight: 700; }
.form-status.success { color: #167443; }
.form-status.error { color: var(--red-dark); }
strong { color: inherit; font-weight: 800; }
:focus-visible { outline: 3px solid rgba(195,25,43,.4); outline-offset: 4px; }


/* Remote stock-image and layout stability */
.image-stack { min-height: 520px; }
.image-stack img { background: #24272d; }
@media (max-width: 980px) {
  .image-stack { min-height: 440px; }
  .image-stack img { height: 440px; }
}
@media (max-width: 680px) {
  h1 { font-size: clamp(2.25rem, 11vw, 3.35rem); }
  .image-stack { min-height: 390px; }
  .image-stack img { height: 390px; }
}

/* ============================================================
   RESPONSIVE STABILITY PATCH
   Prevents hero overlap, narrow text pillars and escaped cards.
   ============================================================ */

html, body { max-width: 100%; overflow-x: hidden; }
.container, .split > *, .contact-wrap > *, .faq-layout > * { min-width: 0; }
img { height: auto; }

@media (max-width: 1100px) {
  .split { gap: 38px; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .contact-wrap { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); }
  .footer-grid { gap: 28px; }
}

@media (max-width: 920px) {
  .split,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .split > *,
  .contact-wrap > * {
    width: 100%;
    max-width: none;
  }

  .image-stack {
    width: 100%;
    max-width: none;
    min-height: 0;
  }

  .image-stack img {
    width: 100%;
    height: clamp(360px, 52vw, 520px);
    min-height: 0;
  }

  .floating-card {
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: auto;
    max-width: 360px;
  }
}

@media (max-width: 820px) {
  header { padding: 12px 0; }
  .header-inner { gap: 12px; }
  .brand { font-size: 1rem; }
  .header-actions { gap: 8px; }
  .header-call { font-size: .86rem; white-space: nowrap; }
  .social-links-header { display: none; }
  .header-actions .btn { display: none; }

  .hero {
    min-height: auto;
    padding: 112px 0 72px;
    align-items: flex-start;
    background-position: 58% center;
  }

  .hero-content {
    width: 100%;
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 9vw, 3.9rem);
    line-height: 1.02;
    max-width: 14ch;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero p { font-size: 1rem; }
  .hero-trust { margin-top: 26px; }

  .stats-wrap {
    margin-top: 0;
    padding-top: 18px;
    position: relative;
    z-index: 1;
    background: var(--white);
  }

  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat { padding: 22px 18px; }
  .stat:nth-child(2)::after { display: none; }

  .section { padding: 72px 0; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 62px 0; }
  .hero { padding: 104px 0 56px; background-position: 62% center; }
  .hero h1 { font-size: clamp(2.2rem, 12vw, 3.25rem); max-width: 12ch; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 9px; }
  .trust-pill { width: 100%; justify-content: center; }

  .stats,
  .grid-3,
  .form-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .stat:not(:last-child)::after { display: none; }
  .stat:not(:last-child) { box-shadow: inset 0 -1px 0 #eceef1; }

  .contact-panel,
  .form-panel { padding: 24px; }

  .image-stack img { height: 340px; }
  .floating-card {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 16px;
  }

  .cta-band { flex-direction: column; align-items: flex-start; padding: 24px; }
  .cta-band .btn { width: 100%; }
  .faq-question { padding: 18px 18px; gap: 14px; }
  .faq-answer p { padding: 0 18px 20px; }
  .footer-bottom { flex-direction: column; }
  .mobile-call { display: flex; }
  body { padding-bottom: 78px; }

  footer a,
  .contact-detail strong,
  .contact-detail small {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 420px) {
  .brand { max-width: 54%; line-height: 1.15; }
  .header-call { font-size: .78rem; }
  .hero h1 { font-size: clamp(2rem, 12vw, 2.7rem); }
  .hero p { font-size: .96rem; }
  .btn { min-height: 50px; padding: 0 18px; }
}