:root {
  --navy: #0b1f38;
  --navy-mid: #143056;
  --blue: #1b6bff;
  --blue-hover: #0e55e0;
  --blue-soft: #e8f0ff;
  --sky: #f3f7ff;
  --bg: #f5f7fb;
  --paper: #ffffff;
  --text: #122033;
  --muted: #5a6b7c;
  --line: #d7e0ea;
  --whatsapp: #128c7e;
  --whatsapp-hover: #0e7468;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(11, 31, 56, 0.08);
  --header-h: 76px;
  --cta-h: 68px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: Outfit, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  padding-bottom: var(--cta-h);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin: 0;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 100;
  background: var(--blue);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1140px, calc(100% - 32px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.eyebrow.light {
  color: #9ec0ff;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--sky);
}

.section-head {
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-head-left {
  margin-left: 0;
  text-align: left;
}

.section-head h2,
.about-panel h2,
.contact-copy h2,
.faq-layout h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.section-head p,
.about-panel p {
  color: var(--muted);
}

.icon {
  width: 22px;
  height: 22px;
}

.icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-lg {
  min-height: 54px;
  padding: 0 22px;
  font-size: 1.02rem;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(27, 107, 255, 0.28);
}

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

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

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

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card,
.highlight-card,
.why-card,
.type-item,
.faq-item,
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  padding: 22px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11, 31, 56, 0.12);
}

.card h3,
.highlight-card h3,
.problem-card h3,
.why-card h3,
.type-item h3 {
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.card p,
.highlight-card p,
.why-card p,
.type-item p,
.problem-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(11, 31, 56, 0.06);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-right: auto;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand small {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.desktop-nav {
  display: none;
  gap: 4px;
}

.desktop-nav a {
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--navy);
  background: var(--blue-soft);
}

.header-cta {
  display: none;
}

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

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle.is-open .icon-menu {
  display: none;
}

.menu-toggle.is-open .icon-close {
  display: block;
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  background: #fff;
  padding: 18px 16px 100px;
  overflow: auto;
}

.mobile-nav nav {
  display: grid;
}

.mobile-nav a {
  padding: 14px 8px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobile-nav-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

/* Hero */
.hero {
  position: relative;
  padding: 28px 0 20px;
  background:
    radial-gradient(circle at 90% 10%, rgba(27, 107, 255, 0.14), transparent 32%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  gap: 28px;
}

.hero h1 {
  font-size: clamp(1.85rem, 6vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  margin-bottom: 12px;
  overflow-wrap: break-word;
}

.hero-sub {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--navy-mid);
  margin-bottom: 12px;
}

.hero-copy p {
  color: var(--muted);
  max-width: 56ch;
}

.hero-copy strong {
  color: var(--navy);
}

.hero-phone {
  display: inline-block;
  margin: 16px 0 18px;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--blue);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-line {
  margin-top: 18px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-mid);
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(11, 31, 56, 0.18);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.hero-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(11, 31, 56, 0.92);
  color: #fff;
  padding: 12px 14px;
  border-radius: 14px;
  max-width: 240px;
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge span {
  font-size: 0.85rem;
  color: #c9d8ef;
  font-weight: 500;
}

/* Highlights */
.highlights {
  margin-top: -8px;
  padding: 8px 0 40px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.highlight-card {
  padding: 20px;
}

/* Problems */
.problem-card {
  position: relative;
  padding-top: 28px;
}

.problem-num {
  display: inline-block;
  font-weight: 800;
  color: var(--blue);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

/* Types */
.types-layout {
  display: grid;
  gap: 28px;
}

.types-media img {
  width: 100%;
  border-radius: 28px;
  background: #eef2f7;
  box-shadow: var(--shadow);
}

.type-list {
  display: grid;
  gap: 12px;
}

.type-item {
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
}

/* Why us */
.why-grid {
  display: grid;
  gap: 14px;
}

.why-card {
  position: relative;
  padding: 22px 22px 22px 20px;
}

.why-index {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.08em;
}

.why-check {
  position: absolute;
  top: 18px;
  right: 16px;
  color: var(--blue);
}

/* Process */
.process-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
}

.process-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.process-num {
  display: inline-block;
  font-weight: 800;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  min-width: 44px;
  text-align: center;
  padding: 4px 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.process-step p {
  color: var(--muted);
}

/* Areas */
.areas-label {
  text-align: center;
  margin-bottom: 16px;
  font-size: 1rem;
}

.area-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.area-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(11, 31, 56, 0.05);
}

.areas-cta {
  text-align: center;
  margin-top: 22px;
  font-weight: 700;
}

.areas-cta a {
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* About */
.about-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
}

.about-panel p + p {
  margin-top: 12px;
}

/* FAQ */
.faq-layout {
  display: grid;
  gap: 24px;
}

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

.faq-item h3 {
  margin: 0;
  font-size: 1rem;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  background: none;
  border: 0;
  padding: 16px 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.faq-item .icon {
  flex-shrink: 0;
  transition: transform 0.18s ease;
}

.faq-item.is-open .icon {
  transform: rotate(180deg);
}

.faq-item [id^='faq-panel'] {
  padding: 0 18px 16px;
}

.faq-item p {
  color: var(--muted);
}

/* Contact */
.contact {
  background:
    radial-gradient(circle at 10% 20%, rgba(27, 107, 255, 0.28), transparent 30%),
    var(--navy);
  color: #fff;
  padding: 72px 0 80px;
}

.contact-grid {
  display: grid;
  gap: 28px;
}

.contact-copy p {
  color: #c9d8ef;
  max-width: 52ch;
}

.contact-phone {
  display: inline-block;
  margin: 18px 0;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}

.contact-card {
  padding: 24px;
  display: grid;
  gap: 18px;
  color: var(--text);
}

.contact-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.contact-card a {
  color: var(--blue);
  font-weight: 700;
}

.profile-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Footer */
.site-footer {
  background: #081627;
  color: #c9d8ef;
  padding: 36px 0 92px;
}

.footer-grid {
  display: grid;
  gap: 20px;
}

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

.footer-meta a {
  color: #fff;
  font-weight: 700;
}

.disclaimer {
  font-size: 0.86rem;
  line-height: 1.6;
}

.footer-copy {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

/* Mobile CTA */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: var(--cta-h);
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(11, 31, 56, 0.08);
}

.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  color: #fff;
  white-space: nowrap;
  padding: 0 8px;
}

.mobile-cta .icon {
  width: 18px;
  height: 18px;
}

.mobile-cta a:first-child {
  background: var(--blue);
}

.mobile-cta a:last-child {
  background: var(--whatsapp);
}

@media (min-width: 720px) {
  .header-cta {
    display: flex;
  }

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

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

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

  .faq-layout {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
  }
}

@media (min-width: 980px) {
  body {
    padding-bottom: 0;
  }

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

  .desktop-nav,
  .header-cta {
    display: flex;
  }

  .hero {
    padding: 36px 0 48px;
  }

  .hero-grid,
  .types-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 48px;
  }

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

  .highlights-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .why-grid .why-card:nth-child(4),
  .why-grid .why-card:nth-child(5) {
    grid-column: span 1;
  }

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

  .site-footer {
    padding-bottom: 36px;
  }

  .about-panel {
    padding: 48px 56px;
  }
}

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

  .btn,
  .card,
  .faq-item .icon {
    transition: none;
  }
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
