@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #f6f6f6;
  --ink: #031219;
  --graphite: #2c2c2c;
  --navy: #072a3e;
  --teal: #025e73;
  --cyan: #30c9e8;
  --line: rgba(3, 18, 25, 0.12);
  --soft: #eef4f6;
  --gradient-deep: linear-gradient(135deg, #031219 0%, #072a3e 48%, #025e73 100%);
  --gradient-brand: linear-gradient(135deg, #025e73 0%, #30c9e8 100%);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.mobile-line {
  display: inline;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(var(--max), calc(100% - 32px));
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 20px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: translateX(-50%);
}

.brand img {
  width: 166px;
  height: auto;
  filter: brightness(0) invert(1);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover {
  color: white;
}

.nav-cta {
  padding: 11px 16px;
  background: var(--gradient-brand);
  color: var(--ink);
  border-radius: 6px;
}

.nav .nav-cta:hover {
  color: var(--ink);
  background: linear-gradient(135deg, #55dbef 0%, #30c9e8 100%);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.42);
}

.hero {
  position: relative;
  min-height: 90svh;
  overflow: hidden;
  color: white;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 20%, rgba(48, 201, 232, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(3, 18, 25, 0.88) 0%, rgba(3, 18, 25, 0.68) 48%, rgba(3, 18, 25, 0.32) 100%),
    linear-gradient(180deg, rgba(3, 18, 25, 0.12), rgba(3, 18, 25, 0.78));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 90svh;
  grid-template-columns: minmax(0, 820px);
  gap: 0;
  align-items: center;
  justify-content: center;
  padding: 132px 0 74px;
}

.hero-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin: 0 auto 20px;
  font-size: clamp(2.15rem, 3.6vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.2vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero-lead,
.section-lead,
.section-heading p,
.method-copy p,
.about-copy p,
.final-cta p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.section-lead,
.section-heading p,
.about-copy p {
  color: rgba(3, 18, 25, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.hero-copy .hero-lead {
  margin-right: auto;
  margin-left: auto;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--gradient-brand);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(48, 201, 232, 0.26);
}

.whatsapp-hero {
  gap: 10px;
  background: var(--cyan);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(48, 201, 232, 0.28);
}

.whatsapp-hero img {
  width: 24px;
  height: 24px;
}

.whatsapp-hero:hover {
  background: white;
  color: #168f47;
  transform: translateY(-3px);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: white;
}

.button.wide {
  width: 100%;
}

.section {
  padding: 96px 0;
}

.light {
  background:
    radial-gradient(circle at 82% 16%, rgba(48, 201, 232, 0.12), transparent 30%),
    linear-gradient(180deg, #031219 0%, #2c2c2c 100%);
  color: white;
}

.dark {
  background:
    radial-gradient(circle at 18% 20%, rgba(48, 201, 232, 0.14), transparent 28%),
    var(--gradient-deep);
  color: white;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.solution-layout {
  text-align: center;
}

.solution-heading {
  max-width: 860px;
  margin: 0 auto 42px;
}

.solution-heading .section-lead {
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.76);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article {
  position: relative;
  overflow: hidden;
  min-height: 232px;
  padding: 26px 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.035) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: white;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.service-grid article:nth-child(even) {
  background:
    linear-gradient(135deg, rgba(2, 94, 115, 0.72) 0%, rgba(48, 201, 232, 0.16) 100%);
  border-color: rgba(48, 201, 232, 0.22);
}

.service-grid article::after {
  content: "";
  position: absolute;
  inset: auto -24px -44px auto;
  width: 112px;
  height: 112px;
  background: radial-gradient(circle, rgba(48, 201, 232, 0.2), transparent 66%);
}

.service-grid h3 {
  position: relative;
  z-index: 1;
  max-width: 260px;
  margin: 0 auto 8px;
  color: white;
  font-size: 1.02rem;
}

.service-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.card-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 78px;
  height: 78px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(48, 201, 232, 0.28);
  border-radius: 8px;
  color: white;
}

.card-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-grid .accent-card {
  background:
    linear-gradient(135deg, rgba(48, 201, 232, 0.28) 0%, rgba(2, 94, 115, 0.86) 100%);
  color: white;
}

.service-grid .accent-card p {
  color: rgba(255, 255, 255, 0.72);
}

.service-grid .accent-card .card-icon {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--cyan);
}

.method-grid,
.about-grid,
.proof-grid,
.faq-grid,
.final-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
  align-items: center;
}

.image-stack {
  position: relative;
}

.image-main,
.about img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.image-main {
  height: clamp(440px, 48vw, 620px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.method-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.benefit-grid span {
  position: relative;
  padding-left: 32px;
}

.check-list li::before,
.benefit-grid span::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--cyan);
  border-radius: 50%;
}

.statement {
  padding: 24px;
  border-left: 4px solid var(--cyan);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0 8px 8px 0;
}

.statement span,
.statement strong {
  display: block;
}

.statement strong {
  color: var(--cyan);
  font-size: 1.35rem;
}

.method-cta {
  background: var(--cyan);
  color: var(--ink);
}

.method-cta:hover {
  background: white;
  color: var(--teal);
}

.process {
  background:
    linear-gradient(180deg, #eef4f6 0%, #f6f6f6 100%);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 52px;
}

.section-heading.compact {
  margin-bottom: 34px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.timeline article {
  min-height: 310px;
  padding: 28px;
  background:
    linear-gradient(180deg, white 0%, #f7fbfc 100%);
}

.timeline span {
  display: inline-block;
  margin-bottom: 52px;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 700;
}

.timeline p {
  color: rgba(3, 18, 25, 0.65);
}

.result-banner {
  margin-top: 24px;
  padding: 26px 30px;
  background: var(--gradient-deep);
  color: white;
  border-radius: 8px;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-weight: 700;
}

.benefits {
  background:
    linear-gradient(180deg, #f6f6f6 0%, #eef4f6 100%);
}

.benefits-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 68px;
  align-items: center;
}

.video-frame {
  position: relative;
  overflow: hidden;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  background: var(--ink);
  border: 10px solid white;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(7, 42, 62, 0.22);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.benefits-copy h2 {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(1.85rem, 2.9vw, 3rem);
}

.benefit-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  min-height: 42px;
  padding: 8px 0 8px 42px;
  color: rgba(3, 18, 25, 0.78);
  font-size: 0.98rem;
  font-weight: 600;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 26px;
  height: 26px;
  background: var(--gradient-brand);
  border-radius: 50%;
}

.benefit-list li::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 7px;
  width: 10px;
  height: 6px;
  border-bottom: 3px solid white;
  border-left: 3px solid white;
  transform: rotate(-45deg);
}

.about {
  background: white;
}

.about-single {
  display: block;
}

.about-single .about-copy {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.about-single .about-copy p {
  margin-right: auto;
  margin-left: auto;
}

.about img {
  height: 620px;
}

.address {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding: 22px;
  background:
    linear-gradient(135deg, #eef4f6 0%, #ffffff 100%);
  border-radius: 8px;
}

.proof {
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.2), transparent 28%),
    var(--gradient-deep);
  color: white;
}

.proof-grid {
  grid-template-columns: 1fr 0.75fr;
}

.proof h2 {
  max-width: 780px;
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
}

.rating {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 14px;
  background: white;
  color: var(--teal);
  border-radius: 6px;
  font-weight: 800;
}

.areas {
  display: grid;
  gap: 14px;
}

.areas span {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 700;
}

.proof-note {
  grid-column: 1 / -1;
  margin: -28px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.faq {
  background:
    linear-gradient(180deg, #eef4f6 0%, #f6f6f6 100%);
}

.faq-kicker {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--teal);
  transform: translate(-50%, -50%);
}

.faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 24px 24px;
  color: rgba(3, 18, 25, 0.68);
}

.faq-item.is-open p {
  display: block;
}

.faq-item.is-open button span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.final-cta {
  padding: 110px 0;
  background:
    radial-gradient(circle at 82% 10%, rgba(48, 201, 232, 0.18), transparent 28%),
    var(--gradient-deep);
  color: white;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.74);
}

.final-title strong,
.final-title span {
  font-weight: inherit;
}

.final-title span {
  font-weight: 400;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.map-button {
  background: white;
  color: var(--teal);
}

.map-button:hover {
  background: var(--cyan);
  color: var(--ink);
}

.final-whatsapp {
  min-height: 64px;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 74px 0 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(48, 201, 232, 0.16), transparent 30%),
    linear-gradient(135deg, #020b10 0%, #031219 48%, #072a3e 100%);
  color: white;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--gradient-brand);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.9fr;
  gap: 56px;
}

.footer-brand p,
.footer span {
  color: rgba(255, 255, 255, 0.68);
}

.footer h3 {
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 1rem;
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.footer a:hover {
  color: white;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-social a {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: white;
}

.footer-social a:hover {
  background: var(--cyan);
  color: var(--ink);
}

.footer-social a[aria-label*="WhatsApp"]:hover {
  background: #25d366;
  color: white;
}

.footer-social svg,
.footer-social img {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.footer-social .whatsapp-mark {
  width: 27px;
  height: 27px;
}

.footer-brand img {
  width: 176px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.whatsapp-float {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #25d366;
  color: #062113;
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  animation: whatsappMotion 2.35s ease-in-out infinite;
}

.whatsapp-float:hover {
  animation-play-state: paused;
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

@keyframes whatsappMotion {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-7px) scale(1.04);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    padding: 18px;
    background: rgba(3, 18, 25, 0.98);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  }

  .nav.is-open {
    display: grid;
    gap: 12px;
  }

  .nav a {
    padding: 12px;
    color: rgba(255, 255, 255, 0.82);
  }

  .nav-cta {
    text-align: center;
  }

  .hero-grid,
  .method-grid,
  .about-grid,
  .proof-grid,
  .faq-grid,
  .final-grid,
  .benefits-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: center;
    padding-top: 132px;
  }

  .timeline,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .video-frame {
    max-width: 360px;
  }

  .image-main {
    height: 470px;
  }

  .proof-note {
    margin-top: 0;
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 34px, var(--max));
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 64px;
    justify-content: center;
    padding: 10px 54px;
  }

  .brand img {
    width: 134px;
  }

  .mobile-line {
    display: block;
  }

  .menu-toggle {
    position: absolute;
    right: 8px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-grid {
    min-height: 78svh;
    gap: 16px;
    padding: 82px 0 20px;
  }

  h1 {
    max-width: none;
    margin-bottom: 16px;
    font-size: clamp(1.34rem, 5.4vw, 1.58rem);
    line-height: 1.16;
  }

  .hero h1 .mobile-line {
    white-space: nowrap;
  }

  h2 {
    font-size: clamp(1.55rem, 7.2vw, 2.1rem);
  }

  .hero-lead {
    max-width: 34ch;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .button {
    min-height: 48px;
    padding: 13px 18px;
    font-size: 0.92rem;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 66px 0;
  }

  .light {
    padding: 48px 0 52px;
  }

  .solution-heading {
    margin-bottom: 22px;
  }

  .solution-heading h2 {
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(1.25rem, 5.7vw, 1.65rem);
    line-height: 1.12;
  }

  .solution-heading h2 .mobile-line {
    white-space: nowrap;
  }

  .solution-heading .section-lead {
    max-width: 34ch;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .timeline,
  .benefit-grid,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .service-grid article {
    min-height: 118px;
    padding: 13px 8px 12px;
  }

  .card-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 9px;
    border-radius: 6px;
  }

  .card-icon svg {
    width: 27px;
    height: 27px;
    stroke-width: 2.7;
  }

  .service-grid h3 {
    max-width: 15ch;
    margin-bottom: 0;
    font-size: 0.72rem;
    line-height: 1.18;
  }

  .service-grid p {
    display: none;
  }

  #metodo {
    display: flex;
    min-height: 100svh;
    align-items: center;
    padding: 38px 0;
  }

  .method-grid {
    gap: 18px;
    text-align: center;
  }

  .method-copy .eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
  }

  .method-copy h2 {
    max-width: 13ch;
    margin-right: auto;
    margin-bottom: 12px;
    margin-left: auto;
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.08;
  }

  .method-copy p {
    max-width: 32ch;
    margin-right: auto;
    margin-bottom: 14px;
    margin-left: auto;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .check-list {
    width: min(100%, 310px);
    gap: 7px;
    margin: 16px auto 18px;
    text-align: left;
  }

  .check-list li {
    padding-left: 24px;
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .check-list li::before {
    top: 0.42em;
    width: 8px;
    height: 8px;
  }

  .method-cta {
    width: min(100%, 260px);
  }

  .benefits {
    display: flex;
    min-height: 100svh;
    align-items: center;
    padding: 42px 0;
  }

  .benefits .container {
    width: min(100% - 46px, var(--max));
  }

  .benefits-layout {
    gap: 0;
  }

  .video-frame {
    display: block;
    max-width: 126px;
    margin-bottom: 16px;
    border-width: 5px;
  }

  .benefits-copy {
    text-align: center;
  }

  .benefits-copy h2 {
    max-width: none;
    margin-right: auto;
    margin-bottom: 18px;
    margin-left: auto;
    font-size: clamp(1.55rem, 6.8vw, 1.95rem);
    line-height: 1.12;
  }

  .benefit-list {
    width: min(100%, 340px);
    gap: 7px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .benefit-list li {
    min-height: 32px;
    padding: 5px 0 5px 34px;
    font-size: 0.86rem;
    line-height: 1.22;
  }

  .benefit-list li::before {
    top: 5px;
    width: 23px;
    height: 23px;
  }

  .benefit-list li::after {
    top: 12px;
    left: 7px;
    width: 9px;
    height: 5px;
    border-bottom-width: 2px;
    border-left-width: 2px;
  }

  .timeline article {
    min-height: 240px;
  }

  .timeline span {
    margin-bottom: 30px;
  }

  .image-main {
    height: 150px;
  }

  .faq {
    text-align: center;
  }

  .faq-grid {
    gap: 26px;
  }

  .faq-kicker,
  .faq h2 {
    margin-right: auto;
    margin-left: auto;
  }

  .faq h2 {
    max-width: none;
    font-size: clamp(1.45rem, 6.8vw, 1.85rem);
    line-height: 1.12;
  }

  .faq h2 .mobile-line {
    white-space: nowrap;
  }

  .faq-list {
    text-align: left;
  }

  .faq-item button {
    min-height: 64px;
    padding: 18px 18px;
    font-size: 0.88rem;
  }

  .final-cta {
    padding: 58px 0;
    text-align: center;
  }

  .final-grid {
    gap: 24px;
  }

  .final-cta .eyebrow,
  .final-cta h2,
  .final-cta p {
    margin-right: auto;
    margin-left: auto;
  }

  .final-cta h2 {
    max-width: none;
    font-size: clamp(1.22rem, 5.2vw, 1.55rem);
    line-height: 1.18;
  }

  .final-title .mobile-line {
    white-space: nowrap;
  }

  .final-cta p {
    max-width: 32ch;
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .footer {
    padding: 38px 0 18px;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 16px;
    align-items: start;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand img {
    width: 128px;
    margin: 0 auto 12px;
  }

  .footer-brand p {
    max-width: 32ch;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .footer h3 {
    margin-bottom: 8px;
    font-size: 0.88rem;
  }

  .footer a,
  .footer span {
    margin-bottom: 6px;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .footer-social {
    justify-content: center;
    gap: 9px;
    margin-bottom: 10px;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
  }

  .footer-social svg,
  .footer-social img,
  .footer-social .whatsapp-mark {
    width: 20px;
    height: 20px;
  }

  .about img {
    height: 420px;
  }

  .areas span {
    font-size: 1.1rem;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 4px;
    margin-top: 18px;
    padding-top: 14px;
    text-align: center;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 11px;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float img {
    width: 25px;
    height: 25px;
  }
}
