:root {
  --background: #ffffff;
  --foreground: #111a34;
  --brand: #10235f;
  --brand-deep: #0c1a49;
  --secondary: #f2f6fb;
  --muted: #667085;
  --border: #dbe4ef;
  --whatsapp: #23c463;
  --whatsapp-hover: #16a855;
  --accent: #34d399;
  --danger: #ef4444;
  --radius: 16px;
  --shadow-sm: 0 10px 30px rgba(15, 35, 95, 0.08);
  --shadow-lg: 0 24px 70px rgba(8, 22, 63, 0.24);
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img,
.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}

.brand strong {
  display: block;
  color: var(--brand);
  line-height: 1.1;
  font-size: 16px;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(17, 26, 52, 0.78);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px) scale(1.015);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 14px 32px rgba(19, 154, 76, 0.2);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-lg {
  min-height: 52px;
  padding: 15px 28px;
  font-size: 16px;
}

.whatsapp-icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M.057 24l1.687-6.163a11.867 11.867 0 0 1-1.587-5.946C.16 5.335 5.495 0 12.05 0a11.817 11.817 0 0 1 8.413 3.488 11.824 11.824 0 0 1 3.48 8.414c-.003 6.557-5.338 11.892-11.893 11.892a11.9 11.9 0 0 1-5.688-1.448L.057 24zm6.597-3.807c1.676.995 3.276 1.591 5.392 1.592 5.448 0 9.886-4.434 9.889-9.885.002-5.462-4.415-9.89-9.881-9.892-5.452 0-9.887 4.434-9.889 9.884-.001 2.225.651 3.891 1.746 5.634l-.999 3.648 3.742-.981zm11.387-5.464c-.074-.124-.272-.198-.57-.347-.297-.149-1.758-.868-2.031-.967-.272-.099-.47-.149-.669.149-.198.297-.768.967-.941 1.165-.173.198-.347.223-.644.074-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.521.151-.172.2-.296.3-.495.099-.198.05-.372-.025-.521-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51l-.57-.01c-.198 0-.52.074-.792.372s-1.04 1.016-1.04 2.479 1.065 2.876 1.213 3.074c.149.198 2.095 3.2 5.076 4.487.709.306 1.263.489 1.694.626.712.226 1.36.194 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.695.248-1.29.173-1.414z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 650px;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(115deg, rgba(10, 24, 68, 0.94) 0%, rgba(16, 35, 95, 0.78) 55%, rgba(16, 35, 95, 0.55) 100%);
}

.hero-content {
  padding-block: clamp(88px, 12vw, 156px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 14px;
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  backdrop-filter: blur(10px);
}

.snowflake,
.snow-badge {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
}

.snowflake::before,
.snowflake::after,
.snow-badge::before,
.snow-badge::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.snowflake::after,
.snow-badge::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.snow-badge {
  width: 28px;
  height: 28px;
  color: #fff;
}

.snow-badge::before,
.snow-badge::after {
  height: 3px;
}

.hero h1 {
  max-width: 780px;
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 span {
  color: rgba(255, 255, 255, 0.72);
}

.hero p {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 420px;
  margin-top: 48px;
  color: #fff;
}

.hero-stats strong {
  display: block;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(70px, 8vw, 92px);
}

.section-title {
  margin-bottom: 42px;
}

.section-title.center,
.center {
  text-align: center;
}

.section-title.narrow {
  max-width: 740px;
  margin-inline: auto;
}

.section-title h2,
.problem-section h2,
.faq-grid h2,
.final-cta h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-title p,
.faq-grid p,
.final-cta p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.reviews-section,
.services-section,
.segments-section {
  background: rgba(242, 246, 251, 0.68);
}

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  padding: 9px 16px;
  box-shadow: var(--shadow-sm);
  font-size: 14px;
}

.google-rating svg {
  width: 22px;
  height: 22px;
}

.google-rating b {
  color: #f59e0b;
}

.google-rating span {
  color: var(--muted);
}

.reviews-track {
  display: flex;
  gap: 20px;
  margin-inline: -20px;
  padding: 2px 20px 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  width: min(85vw, 390px);
  flex: 0 0 auto;
  scroll-snap-align: start;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}

.review-card h3 {
  margin: 0;
  font-size: 14px;
}

.review-card small,
.review-card time {
  color: var(--muted);
  font-size: 12px;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: #f59e0b;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.review-card p {
  margin: 14px 0 0;
  color: rgba(17, 26, 52, 0.8);
  font-size: 14px;
  line-height: 1.68;
}

.drag-note {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.problem-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(60% 60% at 50% 0%, rgba(239, 68, 68, 0.18), transparent 70%), linear-gradient(180deg, #10235f 0%, #0b183f 100%);
  color: #fff;
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(36px, 7vw, 78px);
}

.danger {
  border: 1px solid rgba(248, 113, 113, 0.4);
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.15);
  padding: 8px 12px;
  color: #fecaca;
}

.problem-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  font-size: 19px;
}

.problem-list li {
  display: flex;
  align-items: center;
  gap: 13px;
}

.problem-list span {
  position: relative;
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: var(--danger);
  box-shadow: 0 10px 26px rgba(153, 27, 27, 0.35);
}

.problem-list span::before,
.problem-list span::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  transform: rotate(45deg);
}

.problem-list span::after {
  transform: rotate(-45deg);
}

.problem-copy {
  margin: 24px 0;
  font-size: 22px;
  font-weight: 750;
}

.problem-copy strong {
  color: var(--accent);
}

.problem-photo {
  position: relative;
  margin: 0;
}

.problem-photo img {
  width: 100%;
  max-height: 520px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.problem-photo figcaption {
  position: absolute;
  top: -16px;
  right: -16px;
  border-radius: 16px;
  background: var(--danger);
  padding: 10px 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(153, 27, 27, 0.36);
}

.brand-strip {
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, #fff 0%, rgba(242, 246, 251, 0.72) 100%);
}

.marquee-mask {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: marquee 35s linear infinite;
}

.brand-card {
  display: grid;
  width: 176px;
  height: 80px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.brand-card span {
  font-size: 25px;
  font-weight: 900;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.action-section {
  background: #fff;
}

.section-title h2 span {
  color: var(--brand);
}

.phone-video {
  width: min(300px, 100%);
  aspect-ratio: 9 / 16;
  margin: 40px auto 0;
  border-radius: 34px;
  padding: 5px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: var(--shadow-lg);
}

.phone-video video {
  width: 100%;
  height: 100%;
  border-radius: 29px;
  background: #000;
  object-fit: cover;
}

.action-cta {
  margin-top: 32px;
}

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

.image-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(15, 35, 95, 0.15);
}

.image-card figure {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-card:hover img {
  transform: scale(1.045);
}

.image-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.image-card h3 {
  margin: 0;
  font-size: 18px;
}

.image-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.image-card .btn {
  width: 100%;
  margin-top: auto;
  padding-inline: 16px;
}

.image-card .card-action {
  padding-top: 22px;
}

.difference-section {
  background: var(--brand);
  color: #fff;
}

.muted-light {
  color: rgba(255, 255, 255, 0.62);
}

.difference-grid,
.segment-grid,
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.difference-grid article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  padding: 28px;
  backdrop-filter: blur(10px);
}

.difference-grid strong,
.segment-grid strong {
  display: block;
  color: rgba(255, 255, 255, 0.38);
  font-size: 42px;
  line-height: 1;
}

.difference-grid h3,
.segment-grid h3 {
  margin: 16px 0 0;
  font-size: 20px;
}

.difference-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.65;
}

.segment-grid article {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.segment-grid strong {
  color: rgba(16, 35, 95, 0.28);
}

.segment-grid h3 {
  color: var(--brand);
}

.segment-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(36px, 7vw, 76px);
}

.faq-grid > div:first-child p {
  margin-bottom: 24px;
}

.faq-list {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
}

.faq-list details {
  padding: 23px 24px;
}

.faq-list details + details {
  border-top: 1px solid var(--border);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-weight: 780;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--brand);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--brand-deep);
  color: #fff;
}

.final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: -1;
}

.final-content {
  max-width: 870px;
  text-align: center;
}

.snow-badge {
  display: grid;
  width: 56px;
  height: 56px;
  margin-inline: auto;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.final-cta p {
  max-width: 660px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.8);
}

.final-cta .btn {
  margin-top: 32px;
}

.contact-cards {
  margin-top: 48px;
  text-align: left;
}

.contact-cards article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  padding: 20px;
}

.contact-cards span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-cards strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
}

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--whatsapp);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 22px 48px rgba(19, 154, 76, 0.34);
  outline: 5px solid rgba(255, 255, 255, 0.48);
  transition: transform 0.2s ease, background 0.2s ease;
}

.floating-whatsapp .whatsapp-icon {
  width: 28px;
  height: 28px;
}

.floating-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: scale(1.08);
}

@media (max-width: 980px) {
  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: var(--brand);
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .mobile-nav {
    display: grid;
    gap: 14px;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
    padding-inline: 20px;
    color: var(--foreground);
    font-weight: 750;
    transition: max-height 0.25s ease, padding 0.25s ease, border-color 0.25s ease;
  }

  .site-header.menu-open .mobile-nav {
    max-height: 360px;
    border-color: var(--border);
    padding-block: 18px 20px;
  }

  .mobile-nav .btn {
    justify-self: start;
  }

  .problem-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .difference-grid,
  .segment-grid,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 32px, 1280px);
  }

  .header-inner {
    min-height: 64px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-block: 72px 80px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 10px;
  }

  .google-rating {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 20px;
  }

  .problem-photo figcaption {
    top: 12px;
    right: 12px;
  }

  .card-grid,
  .difference-grid,
  .segment-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
