:root {
  --blue: #18FECD;

  --black: #031D2E;
  --surface: #06253A;
  --surface-2: #0A3048;

  --border: rgba(24, 254, 205, 0.12);
  --border-soft: rgba(24, 254, 205, 0.08);

  --text: #FFFFFF;
  --muted: rgba(255, 255, 255, 0.72);
  --subtle: rgba(255, 255, 255, 0.48);

  --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: 78px;
  background: rgba(3, 29, 46, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  height: 100%;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  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: 58px;
  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: 15px;
  font-weight: 500;
}

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

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

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width .25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

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

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

.menu-button {
  display: none;
}

.section-hero {
  min-height: 620px;
  padding-block: 80px;
  background: #031D2E;
  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(24, 254, 205, 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: #05253B;
}

.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: #031D2E;
  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: 700;
}

.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: #06253A;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .2s ease;
}

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

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

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

.service-icon,
.why-grid span {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(24, 254, 205, 0.25);
  background: rgba(24, 254, 205, 0.08);
}

.why-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-grid span img,
.service-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;

  filter:
    brightness(0)
    saturate(100%)
    invert(95%)
    sepia(74%)
    saturate(2356%)
    hue-rotate(92deg)
    brightness(102%)
    contrast(102%);
}

.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: #06253A;
  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: #06253A;
}

.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);
  overflow: hidden;
  background: #06253A;
}

.about-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.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(24, 254, 205, 0.25);
  color: rgba(24, 254, 205, 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: #06253A;
  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(24, 254, 205, 0.06);
  border: 1px solid rgba(24, 254, 205, 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: #06253A;
  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(24, 254, 205, 0.28);
  background: #06253A;
  box-shadow: none;
  transition: all 0.25s ease;
}

.faq-list details[open] {
  border-color: rgba(24, 254, 205, 0.45);
  box-shadow: 0 0 28px rgba(24, 254, 205, 0.08);
  background: #0A3048;
}

.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(24, 254, 205, 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: 72px 34px;
  border-top: 1px solid rgba(24, 254, 205, 0.10);
  background:
    radial-gradient(circle at top center, rgba(24, 254, 205, 0.12), transparent 36%),
    #031D2E;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1.1fr 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
}

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

.footer-brand-area p {
  max-width: 310px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.footer-column h4 {
  position: relative;
  margin-bottom: 28px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 34px;
  height: 2px;
  background: var(--blue);
  border-radius: 999px;
}

.footer-column > a {
  position: relative;
  width: fit-content;
  display: flex;
  align-items: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  transition: color .2s ease, transform .2s ease;
}


.footer-column > a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-column > a::before {
  content: "›";
  margin-right: 10px;
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
}

.footer-contact {
  display: flex !important;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.3;
  transition: color .2s ease;
}

.footer-contact:hover {
  transform: translateX(3px);
  color: #fff;
}

.footer-contact::before {
  display: none;
}

.footer-contact i {
  width: 22px;
  min-width: 22px;
  color: var(--blue);
  font-size: 20px;
  text-align: center;
}

.footer-contact span {
  display: inline !important;
  margin: 0 !important;
}

.hours-card {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.025);
}

.hours-card div + div {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hours-card strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.hours-card span {
  display: block;
  margin-top: 7px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--subtle);
  font-size: 13px;
}

.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, #18FECD, #11C9A3);
  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, #18FECD);
}

.whatsapp-chat {
  width: 360px;
  margin-bottom: 16px;
  border-radius: 22px;
  overflow: hidden;
  background: #06253A;
  border: 1px solid rgba(24, 254, 205, 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, #18FECD, #11C9A3);
  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: #4DFFE0;
}

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

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(24, 254, 205, 0.55);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(24, 254, 205, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(24, 254, 205, 0);
  }
}

.back-to-top {
  position: fixed;
  left: 28px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(24, 254, 205, 0.14);
  border: 1px solid rgba(24, 254, 205, 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(24, 254, 205, 0.22);
  transform: translateY(-3px);
}

@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: 22px;
    --section: 72px;
  }

  body {
    overflow-x: hidden;
  }

  .container {
    max-width: 100%;
    padding-inline: var(--gutter);
  }

  .site-header {
    height: 66px;
  }

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

  .logo {
    height: 66px;
  }

  .logo img {
    height: 46px;
    max-width: 160px;
  }

  .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: 22px;
    right: 22px;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #06253A;
    text-align: center;
  }

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

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

  .main-nav a::after {
    display: none;
  }

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

  .section-hero::before {
    top: 70px;
    right: -120px;
    width: 360px;
    height: 260px;
    filter: blur(95px);
    opacity: .75;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 11vw, 50px);
    font-weight: 700;
    line-height: 0.98;
  }

  .hero-copy h1 span {
    font-weight: 700;
  }

  .hero-text {
    max-width: 100%;
    margin-inline: auto;
    font-size: 15px;
  }

  .hero-actions {
    width: 100%;
    max-width: 280px;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-actions .button,
  .hero-actions a {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .button,
  .cta-strip a,
  .whatsapp-chat-cta {
    max-width: 100%;
    box-sizing: border-box;
  }

  .trust-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    text-align: center;
  }

  .trust-row i {
    display: none;
  }

  .stats-card {
    width: 100%;
    min-height: auto;
    padding: 26px;
  }

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

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

  .section-header,
  .split-header,
  .about-content,
  .location {
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .section-header h2,
  .about-content h2,
  .location h2,
  .split-header h2 {
    max-width: 12ch;
    margin-inline: auto;
    font-size: clamp(30px, 10vw, 42px);
    font-weight: 700;
  }

  .section-intro,
  .split-header > p,
  .about-content p:not(.eyebrow),
  .location p:not(.eyebrow) {
    margin-inline: auto;
    font-size: 14px;
  }

  .proof-grid,
  .service-grid,
  .why-grid,
  .about-grid,
  .location-grid,
  .testimonial-grid,
  .footer-grid {
    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);
  }

  .service-card,
  .why-grid article,
  .process-grid article,
  .testimonial-grid article {
    padding: 24px;
    text-align: center;
  }

  .service-icon,
  .why-grid span {
    margin-inline: auto;
  }

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

  .about-media {
    min-height: 220px;
  }

  .pills {
    justify-content: center;
    gap: 8px;
  }

  .pills span {
    font-size: 11px;
    padding: 7px 11px;
  }

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

  .policy-note {
    text-align: center;
  }

  .cta-strip-inner {
    width: 100%;
    padding-block: 24px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-strip a {
    width: 100%;
    max-width: 280px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    text-align: center;
    white-space: nowrap;
  }

  .google-link {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
  }

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

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

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

  .faq-answer {
    padding: 20px;
    text-align: center;
  }

  .faq-answer p {
    margin: 0 auto;
    font-size: 14px;
    text-align: center;
  }

  .site-footer {
    padding-block: 56px 28px;
  }

  .footer-grid {
    gap: 42px;
    text-align: left;
  }

  .footer-brand-area,
  .footer-column {
    text-align: left;
  }

  .footer-logo {
    justify-content: flex-start;
  }

  .footer-logo img {
    height: 46px;
  }

  .footer-brand-area p {
    max-width: 100%;
    margin-inline: 0;
  }

  .footer-column h4 {
    text-align: left;
  }

  .footer-column h4::after {
    left: 0;
    transform: none;
  }

  .footer-column > a,
  .footer-contact {
    width: fit-content;
    margin-left: 0;
    margin-right: 0;
    justify-content: flex-start;
    text-align: left;
  }

  .footer-contact span {
    text-align: left;
  }

  .hours-card {
    padding: 20px;
    max-width: 320px;
    margin-inline: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 8px;
  }

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

  .whatsapp-chat,
  .floating-whatsapp {
    pointer-events: auto;
  }

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

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

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

  .back-to-top {
    left: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    font-size: 20px;
    z-index: 10000;
  }
}

@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;
  }
}