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

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

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

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

.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);
}

.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 {
  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: auto;
}

.faq-list {
  max-width: 760px;
  margin: 40px auto 0;
}

details {
  background: #050505;
  border: 1px solid var(--border);
  padding: 20px 22px;
}

details + details {
  border-top: none;
}

summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
}

details p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.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 a,
.footer-columns span {
  display: block;
  margin-top: 9px;
  color: var(--subtle);
  font-size: 13px;
}

.floating-whatsapp {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #19BBFF, #0d8fe0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 9999;
    text-decoration: none;
    box-shadow: none;
    animation: whatsappPulse 2s infinite;
    transition: transform 0.3s ease, background 0.3s ease;
}

.floating-whatsapp svg {
    width: 34px;
    height: 34px;
}

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

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

@media (max-width: 768px) {
    .floating-whatsapp {
        width: 60px;
        height: 60px;
        right: 18px;
        bottom: 18px;
    }

    .floating-whatsapp svg {
        width: 30px;
        height: 30px;
    }
}

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

  .stats-card {
    width: 100%;
  }

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

  .floating-whatsapp {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 40;
    min-height: 48px;
    border-radius: 12px;
    background: var(--blue);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 18px 50px rgba(0,0,0,.45);
  }
}

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