:root {
  --primary: #0f3f6e;
  --primary-dark: #082844;
  --secondary: #15a24a;
  --text: #14212f;
  --muted: #5b6877;
  --surface: #ffffff;
  --surface-soft: #f3f7fb;
  --border: rgba(15, 63, 110, 0.12);
  --shadow: 0 18px 45px rgba(8, 40, 68, 0.12);
  --radius: 24px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(21, 162, 74, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fbfe 0%, #edf4fa 100%);
  line-height: 1.6;
}

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

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

iframe {
  width: 100%;
  border: 0;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-inner {
  min-height: 90px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.brand {
  flex-shrink: 0;
  justify-self: center;
  opacity: 0;
  transform: translateY(8px);
  animation: logo-fade-in 1.4s ease-out 0.2s forwards;
}

.brand img {
  width: 260px;
  height: auto;
}

.topbar-service,
.topbar-phone {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: #fff;
  font-weight: 700;
}

.topbar-service {
  justify-self: start;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.topbar-phone {
  justify-self: end;
  font-size: 1.3rem;
  white-space: nowrap;
}

.topbar-phone,
.btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.topbar-phone:hover,
.topbar-phone:focus-visible,
.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.hero {
  padding: 56px 0 24px;
}

.hero-grid,
.feature-grid,
.contact-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

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

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

h1,
h2,
h3,
strong {
  line-height: 1.2;
}

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

h1 {
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  margin-bottom: 20px;
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.lead,
.section-head p,
.service-card p,
.step-card p,
.feature-copy p,
.faq-item p,
.contact-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 24px;
}

.btn {
  min-height: 52px;
  padding: 14px 22px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 32px rgba(15, 63, 110, 0.22);
}

.btn-secondary {
  color: #fff;
  background: var(--secondary);
  box-shadow: 0 14px 32px rgba(21, 162, 74, 0.22);
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  flex-shrink: 0;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.hero-points,
.check-list,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-points {
  display: grid;
  gap: 12px;
}

.hero-points li,
.check-list li,
.contact-list li {
  position: relative;
  padding-left: 28px;
}

.hero-points li::before,
.check-list li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), #52d67f);
  box-shadow: 0 0 0 5px rgba(21, 162, 74, 0.12);
}

.hero-media,
.image-card,
.stats-card,
.service-card,
.step-card,
.contact-card,
.map-card,
.trust-grid article,
.faq-item {
  border-radius: var(--radius);
}

.image-card,
.stats-card,
.service-card,
.step-card,
.contact-card,
.map-card,
.trust-grid article,
.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.image-card {
  overflow: hidden;
}

.image-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.trust-bar {
  padding: 12px 0 8px;
}

.trust-grid,
.cards-grid,
.steps-grid {
  display: grid;
  gap: 20px;
}

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

.trust-grid article {
  padding: 24px;
}

.trust-grid strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.trust-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.section {
  padding: 76px 0;
}

.section-accent {
  position: relative;
}

.section-accent::before {
  content: "";
  position: absolute;
  inset: 42px 0;
  background: linear-gradient(180deg, rgba(15, 63, 110, 0.92), rgba(8, 40, 68, 0.96));
  z-index: -1;
}

.section-accent .feature-copy,
.section-accent .feature-copy p,
.section-accent .feature-copy li,
.section-accent .feature-copy h2,
.section-accent .eyebrow {
  color: #fff;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

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

.service-card,
.step-card,
.contact-card,
.map-card,
.stats-card {
  padding: 28px;
}

.service-card {
  min-height: 220px;
}

.feature-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.stats-card {
  display: grid;
  gap: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(231, 242, 252, 0.96));
}

.stat-item strong {
  display: block;
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 6px;
}

.stat-item span {
  color: var(--muted);
}

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

.step-card span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(15, 63, 110, 0.12);
  color: var(--primary);
  font-weight: 700;
}

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

.faq-item {
  padding: 22px 24px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  padding-right: 28px;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--primary);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 14px 0 0;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-list strong {
  margin-right: 8px;
}

.contact-list a {
  color: var(--primary);
  font-weight: 700;
}

.contact-list address,
.contact-list span {
  display: inline;
  font-style: normal;
  color: var(--muted);
}

.map-card {
  overflow: hidden;
  padding: 0;
  min-height: 100%;
}

.map-card iframe {
  min-height: 100%;
  height: 100%;
}

.footer {
  padding: 34px 0 110px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 63, 110, 0.12);
}

.footer p {
  margin-bottom: 0;
}

.mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1100;
  display: none;
  gap: 12px;
}

.mobile-cta a {
  flex: 1 1 0;
  min-height: 54px;
  border-radius: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(8, 40, 68, 0.18);
}

.mobile-call {
  color: #fff;
  background: var(--primary);
}

.mobile-wa {
  color: #fff;
  background: var(--secondary);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes logo-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .feature-grid,
  .contact-grid,
  .cards-grid,
  .steps-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .section-accent::before {
    inset: 24px 0;
  }

  .map-card iframe {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    min-height: 84px;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 10px 0;
    gap: 6px;
  }

  .brand img {
    width: 200px;
  }

  .topbar-service {
    justify-self: center;
    font-size: 0.72rem;
  }

  .topbar-phone {
    justify-self: center;
    font-size: 1rem;
  }

  .hero {
    padding-top: 32px;
  }

  .section {
    padding: 58px 0;
  }

  .service-card,
  .step-card,
  .contact-card,
  .stats-card {
    padding: 24px;
  }

  .mobile-cta {
    display: flex;
  }

  .footer {
    padding-bottom: 120px;
  }
}
