:root {
  --blue: #19BBFF;
  --black: #000000;
  --surface: #080808;
  --surface-2: #0B0B0B;
  --border: rgba(255, 255, 255, 0.075);
  --border-soft: rgba(255, 255, 255, 0.055);
  --text: #FFFFFF;
  --muted: rgba(255, 255, 255, 0.62);
  --subtle: rgba(255, 255, 255, 0.38);
  --star: #F5A623;
  --container: 1200px;
  --gutter: 24px;
  --radius: 18px;
  --section: 96px;
}

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

html {
  scroll-behavior: smooth !important;
}

body {
  font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--black);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + (var(--gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-header {
  width: 100%;
  height: 72px;
  background: #000;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  z-index: 20;
}

.header-container {
  height: 100%;
  display: grid;
  grid-template-columns: 160px 1fr 160px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
}

.logo {
  display: flex;
  align-items: center;
  height: 72px;
  flex-shrink: 0;
}

.logo img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.brand b {
  color: var(--blue);
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 400;
}

.main-nav a {
  transition: color .2s ease;
}

.main-nav a:hover {
  color: #fff;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--blue);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}

.header-cta:hover {
  background: #42C8FF;
  transform: translateY(-1px);
}

.menu-button {
  display: none;
}

.section-hero {
  min-height: 620px;
  padding-block: 80px;
  background: #000;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: "";
  position: absolute;
  top: 80px;
  right: 120px;
  width: 540px;
  height: 360px;
  border-radius: 999px;
  background: rgba(25, 187, 255, 0.16);
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 520px 430px;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--blue);
}

.hero-copy h1 {
  margin-top: 54px;
  font-size: clamp(46px, 4.1vw, 62px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.hero-copy h1 span {
  color: var(--blue);
}

.hero-text {
  margin-top: 26px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 46px;
  padding-inline: 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #000;
  background: var(--blue);
}

.button-secondary {
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-row {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.trust-row i {
  width: 1px;
  height: 18px;
  background: var(--border);
}

.stars {
  color: var(--star);
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.stats-card {
  width: 430px;
  min-height: 320px;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 25px 80px rgba(0,0,0,.34);
}

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

.stat-item {
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-item:nth-child(1),
.stat-item:nth-child(2) {
  border-bottom: 1px solid var(--border);
}

.stat-item:nth-child(1),
.stat-item:nth-child(3) {
  border-right: 1px solid var(--border);
  padding-right: 30px;
}

.stat-item:nth-child(2),
.stat-item:nth-child(4) {
  padding-left: 30px;
}

.stat-item strong {
  color: var(--blue);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.stat-item strong span {
  font-size: 0.58em;
}

.stat-item small {
  margin-top: 8px;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 400;
}

.rating-line {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--subtle);
  font-size: 12px;
}

.rating-line strong {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 600;
}

.proof-band {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: #020202;
}

.proof-grid {
  min-height: 120px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.proof-grid div {
  padding: 28px 24px;
  border-right: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-grid div:first-child {
  border-left: 1px solid var(--border-soft);
}

.proof-grid strong {
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.proof-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding-block: var(--section);
  background: #000;
  border-top: 1px solid var(--border-soft);
}

.section-header {
  max-width: 760px;
}

.section-header h2,
.about-content h2,
.location h2 {
  margin-top: 14px;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.section-intro {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.service-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  min-height: 210px;
  padding: 28px;
  background: #050505;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .2s ease;
}

.service-card:hover {
  background: #0B0B0B;
}

.service-card:nth-child(4n) {
  border-right: none;
}

.service-card:nth-last-child(-n + 4) {
  border-bottom: none;
}

.service-icon,
.why-grid span {
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  display: block;
  border-radius: 9px;
  border: 1px solid rgba(25, 187, 255, 0.25);
  background: rgba(25, 187, 255, 0.08);
}

.service-card h3,
.why-grid h3,
.process-grid h3 {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
}

.service-card p,
.why-grid p,
.process-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.split-header {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: end;
}

.split-header h2 {
  margin-top: 14px;
  max-width: 650px;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.split-header > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.why-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.why-grid article {
  min-height: 230px;
  padding: 30px;
  background: #050505;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-grid article:nth-child(3n) {
  border-right: none;
}

.why-grid article:nth-last-child(-n + 3) {
  border-bottom: none;
}

.about-grid,
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: #050505;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.about-media {
  min-height: 360px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at center, rgba(25, 187, 255, 0.10), transparent 58%),
    #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--subtle);
  font-size: 14px;
}

.map-placeholder {
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-content p:not(.eyebrow),
.location p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.pills {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pills span {
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(25, 187, 255, 0.25);
  color: rgba(25, 187, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
}

.process-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-grid article {
  min-height: 230px;
  padding: 28px;
  background: #050505;
  border-right: 1px solid var(--border);
}

.process-grid article:last-child {
  border-right: none;
}

.process-grid strong {
  display: block;
  margin-bottom: 36px;
  color: var(--blue);
  font-size: 14px;
  letter-spacing: 0.14em;
}

.policy-note {
  margin-top: 24px;
  padding: 22px 24px;
  background: rgba(25, 187, 255, 0.06);
  border: 1px solid rgba(25, 187, 255, 0.18);
  border-radius: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.policy-note strong {
  color: #fff;
}

.testimonial-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-grid article {
  padding: 28px;
  background: #050505;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.testimonial-grid p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.testimonial-grid strong {
  display: block;
  margin-top: 22px;
  color: #fff;
  font-size: 13px;
}

.google-link {
  margin-top: 26px;
  display: inline-flex;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.cta-strip {
  background: var(--blue);
  color: #000;
}

.cta-strip-inner {
  min-height: 96px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-strip-inner div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-strip strong {
  font-size: 16px;
}

.cta-strip span {
  font-size: 13px;
  opacity: .68;
}

.cta-strip a {
  padding: 12px 22px;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.contact-list {
  margin-top: 28px;
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.contact-list strong {
  color: #fff;
}

.faq-header {
  margin-inline: 0;
}

.faq-header .section-intro {
  max-width: 760px;
}

.faq-list {
  max-width: 100%;
  margin-top: 44px;
  display: grid;
  gap: 14px;
}

.faq-list details {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(25, 187, 255, 0.28);
  background: #050505;
  box-shadow: none;
  transition: all 0.25s ease;
}

.faq-list details[open] {
  border-color: rgba(25, 187, 255, 0.45);
  box-shadow: 0 0 28px rgba(25, 187, 255, 0.08);
  background: #070707;
}

.faq-list summary {
  min-height: 68px;
  padding: 0 28px;
  cursor: pointer;
  display: grid;
  grid-template-columns: 30px 1fr 20px;
  align-items: center;
  gap: 20px;
  list-style: none;
}

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

.faq-list summary::marker {
  display: none;
  content: "";
}

.faq-list summary strong {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 12px rgba(25, 187, 255, 0.18);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  border-radius: 99px;
  background: #001018;
}

.faq-icon::after {
  transform: rotate(90deg);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-list details[open] .faq-icon::after {
  transform: rotate(0deg);
  opacity: 0;
}

.faq-arrow {
  width: 14px;
  height: 14px;
  border-right: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.faq-list details[open] .faq-arrow {
  transform: rotate(225deg);
}

.faq-answer {
  padding: 26px 72px 30px 78px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-answer p {
  margin: 0;
  max-width: 960px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
}

.site-footer {
  padding-block: 42px;
  border-top: 1px solid var(--border-soft);
  background: #000;
}

.footer-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
}

.footer-brand {
  margin-bottom: 12px;
}

.site-footer p,
.footer-info,
.legal {
  color: var(--subtle);
  font-size: 13px;
  line-height: 1.6;
}

.legal {
  margin-top: 14px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.footer-columns h4 {
  margin-bottom: 14px;
  font-size: 13px;
  color: #fff;
}

.footer-columns > div > a,
.footer-columns > div > span {
  display: block;
  margin-top: 9px;
  color: var(--subtle);
  font-size: 13px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo img {
  display: block;
  height: 38px;
  width: auto;
  object-fit: contain;
}

.footer-contact {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--subtle);
  font-size: 13px;
  line-height: 1.2;
  text-decoration: none;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--blue);
}

.footer-contact span {
  display: inline-flex !important;
  align-items: center;
  margin-top: 0 !important;
  line-height: 1.2;
}

.whatsapp-widget {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.floating-whatsapp {
  width: 68px;
  height: 68px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #19BBFF, #0d8fe0);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: whatsappPulse 2s infinite;
  transition: transform .25s ease, background .25s ease;
}

.floating-whatsapp i {
  font-size: 34px;
  line-height: 1;
}

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.04);
  background: linear-gradient(135deg, #37c6ff, #19BBFF);
}

.whatsapp-chat {
  width: 360px;
  margin-bottom: 16px;
  border-radius: 22px;
  overflow: hidden;
  background: #080808;
  border: 1px solid rgba(25, 187, 255, 0.22);
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(.96);
  transform-origin: bottom right;
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.whatsapp-widget.is-open .whatsapp-chat {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-chat-header {
  min-height: 70px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #19BBFF, #0d8fe0);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.whatsapp-chat-header strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
}

.whatsapp-chat-header span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 600;
  opacity: .7;
}

.whatsapp-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.18);
  color: #000;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-message {
  position: relative;
  padding: 18px 20px;
  border-radius: 18px;
  background: #1d1d1d;
  max-width: 100%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

.whatsapp-message::before {
  content: "";
  position: absolute;
  left: -10px;
  bottom: 18px;
  width: 20px;
  height: 20px;
  background: #1d1d1d;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.whatsapp-message p {
  color: rgba(255,255,255,.86);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.whatsapp-message p + p {
  margin-top: 10px;
}

.whatsapp-chat-cta {
  margin-top: 20px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--blue);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}

.whatsapp-chat-cta:hover {
  transform: translateY(-2px);
  background: #42C8FF;
}

.whatsapp-chat-cta i {
  font-size: 20px;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(25, 187, 255, 0.55);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(25, 187, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(25, 187, 255, 0);
  }
}

.back-to-top {
  position: fixed;
  left: 28px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(25, 187, 255, 0.14);
  border: 1px solid rgba(25, 187, 255, 0.28);
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all .25s ease;
  z-index: 9998;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(25, 187, 255, 0.22);
  transform: translateY(-3px);
}

@media (max-width: 768px) {

    .whatsapp-widget {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .whatsapp-chat {
    width: 100%;
    margin-bottom: 14px;
  }

  .floating-whatsapp {
    width: 60px;
    height: 60px;
    margin-left: auto;
  }

  .floating-whatsapp i {
    font-size: 30px;
  }

    .faq-list summary {
    min-height: 62px;
    padding: 0 18px;
    grid-template-columns: 28px 1fr 16px;
    gap: 14px;
  }

  .faq-list summary strong {
    font-size: 15px;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
  }

  .faq-answer {
    padding: 20px 18px 24px 60px;
  }

  .faq-answer p {
    font-size: 14px;
  }

}

@media (max-width: 1024px) {
  :root {
    --container: 920px;
  }

  .header-container {
    grid-template-columns: 140px 1fr 140px;
  }

  .main-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr 390px;
    gap: 48px;
  }

  .stats-card {
    width: 390px;
  }

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

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

  .service-card:nth-child(n),
  .why-grid article:nth-child(n) {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .service-card:nth-child(2n),
  .why-grid article:nth-child(2n) {
    border-right: none;
  }

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

  .process-grid article {
    border-bottom: 1px solid var(--border);
  }

  .split-header {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 20px;
    --section: 72px;
  }

  .site-header {
    height: 66px;
  }

  .header-container {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    justify-self: end;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: transparent;
    display: block;
    cursor: pointer;
  }

  .menu-button span {
    width: 18px;
    height: 2px;
    background: #fff;
    display: block;
    margin: 5px auto;
  }

  .main-nav {
    position: absolute;
    top: 66px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #050505;
  }

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

  .main-nav a {
    width: 100%;
    padding: 14px 12px;
  }

.section-hero {
  min-height: auto;
  padding-block: 72px;
}

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    position: relative;
    z-index: 1;
  }

.stats-card {
  width: 430px;
  min-height: 320px;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 25px 80px rgba(0,0,0,.34);
}

  .hero-copy h1 {
    margin-top: 38px;
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-row {
    flex-wrap: wrap;
    gap: 12px;
  }

  .trust-row i {
    display: none;
  }

  .stats-card {
    padding: 26px;
  }

  .stat-item {
    min-height: 96px;
  }

  .stat-item strong {
    font-size: 34px;
  }

  .proof-grid,
  .service-grid,
  .why-grid,
  .about-grid,
  .location-grid,
  .testimonial-grid,
  .footer-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .proof-grid div,
  .service-card,
  .why-grid article,
  .process-grid article {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }

  .about-grid,
  .location-grid {
    gap: 44px;
  }

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

  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-strip a {
    width: 100%;
    text-align: center;
  }

}

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

  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    padding: 22px 0 !important;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .rating-line {
    flex-direction: column;
    align-items: flex-start;
  }
}