:root {
  color-scheme: light;
  --ink: #101623;
  --muted: #5f6878;
  --line: #d9e0ea;
  --surface: #ffffff;
  --soft: #f4f7fb;
  --navy: #0b111f;
  --green: #13a86b;
  --teal: #0a766c;
  --gold: #c88b2c;
  --red: #c94f4f;
  --shadow: 0 18px 50px rgba(16, 22, 35, .13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(217, 224, 234, .8);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

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

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

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

.header-call {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal);
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .78fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: calc(100svh - 72px);
  padding: clamp(52px, 8vw, 100px) clamp(18px, 4vw, 56px) clamp(44px, 6vw, 76px);
  background:
    linear-gradient(135deg, rgba(11, 17, 31, .96), rgba(14, 43, 54, .92)),
    radial-gradient(circle at 82% 20%, rgba(19, 168, 107, .26), transparent 34%);
  color: #fff;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 8vw, 86px);
  line-height: .98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 2.2vw, 23px);
}

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

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 900;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 30px rgba(19, 168, 107, .28);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 34px 0 0;
}

.hero-facts div {
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}

.hero-facts dt {
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
}

.hero-facts dd {
  margin: 2px 0 0;
  font-weight: 800;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.commerce-panel {
  width: min(100%, 430px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, .1);
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  gap: 7px;
  padding-bottom: 18px;
}

.panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
}

.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  color: var(--ink);
}

.metric-row small,
.task-list p {
  color: var(--muted);
}

.metric-row strong {
  display: block;
  font-size: 24px;
}

.metric-row b {
  color: var(--green);
  font-size: 28px;
}

.chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  height: 150px;
  gap: 12px;
  margin: 20px 0;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
}

.chart span {
  display: block;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--green), var(--gold));
}

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

.task-list p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}

.task-list span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.trust-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: var(--gold);
  color: #111;
}

.trust-band p {
  margin: 0;
}

.trust-band a {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

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

.section-heading {
  max-width: 790px;
  margin-bottom: 28px;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.cards,
.service-grid {
  display: grid;
  gap: 16px;
}

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

.card,
.service-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.card h3,
.service-grid h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.card p,
.service-grid p,
.why-list p,
.faq-list p {
  margin: 0;
  color: var(--muted);
}

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

.region-section {
  background: #fff;
}

.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.region-list span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 18px;
  background: var(--soft);
  font-weight: 900;
}

.why {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
  background: var(--navy);
  color: #fff;
}

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

.why-list p {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .78);
}

.why-list strong {
  color: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

details p {
  padding: 0 20px 20px;
}

.final-cta {
  padding: clamp(54px, 8vw, 90px) clamp(18px, 4vw, 56px);
  background: var(--teal);
  color: #fff;
}

.final-cta h2 {
  max-width: 920px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 30px clamp(18px, 4vw, 56px);
  background: #080d17;
  color: #fff;
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .68);
}

address {
  color: rgba(255, 255, 255, .72);
  font-style: normal;
  text-align: right;
}

address a {
  color: #fff;
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 16px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(16, 22, 35, .28);
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .why {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .cards.three,
  .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .header-call {
    display: none;
  }

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

  .hero-actions,
  .trust-band,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .commerce-panel {
    padding: 14px;
  }

  address {
    text-align: left;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
  }
}
