:root {
  color-scheme: light;
  --ink: #101820;
  --muted: #5e6b75;
  --line: rgba(16, 24, 32, 0.1);
  --paper: #f7f8f7;
  --surface: #ffffff;
  --steel: #162231;
  --steel-2: #223244;
  --blue: #0e5b9a;
  --blue-strong: #0b4a7d;
  --green: #159447;
  --green-strong: #087536;
  --clay: #b94a1f;
  --sand: #e8d7b8;
  --shadow-soft: 0 18px 45px rgba(16, 24, 32, 0.12), 0 2px 8px rgba(16, 24, 32, 0.08);
  --shadow-lift: 0 24px 60px rgba(16, 24, 32, 0.18), 0 5px 16px rgba(16, 24, 32, 0.1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

img,
svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  transform: translateY(-120%);
  transition-property: transform;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(128px, auto);
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  color: #fff;
  transition-property: background-color, box-shadow, padding;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.site-header.is-scrolled {
  background: rgba(16, 24, 32, 0.92);
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.22);
  padding-top: 10px;
  padding-bottom: 10px;
  backdrop-filter: blur(14px);
}

.brand,
.header-cta,
.button,
.text-link,
.whatsapp-widget,
.nav-links a {
  min-height: 40px;
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 10px;
  background: #fff;
  color: var(--blue-strong);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18), inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  font-variant-numeric: tabular-nums;
}

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

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 0.88rem;
  transition-property: background-color, color;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  transition-property: transform, background-color, color, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.header-cta:active,
.button:active,
.whatsapp-widget:active,
.text-link:active {
  transform: scale(0.96);
}

.header-cta {
  justify-self: end;
  padding: 0 18px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 34px rgba(21, 148, 71, 0.28);
}

.header-cta:hover,
.header-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-strong);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 17, 23, 0.88) 0%, rgba(12, 17, 23, 0.66) 36%, rgba(12, 17, 23, 0.14) 70%, rgba(12, 17, 23, 0.22) 100%),
    linear-gradient(180deg, rgba(12, 17, 23, 0.28) 0%, rgba(12, 17, 23, 0.08) 44%, rgba(12, 17, 23, 0.62) 100%);
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 94px;
  padding-bottom: 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2bf63;
}

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

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 740px;
  margin-bottom: 18px;
  font-size: clamp(3.1rem, 58px, 4.7rem);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 40px, 3rem);
}

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

p {
  color: var(--muted);
  text-wrap: pretty;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.14rem;
}

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

.button {
  min-width: 180px;
  padding: 0 22px;
  min-height: 52px;
  box-shadow: var(--shadow-soft);
}

.button-primary {
  background: var(--green);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #fff;
}

.button-large {
  min-width: 210px;
  min-height: 58px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
  font-weight: 800;
}

.section {
  padding: 88px 0;
  background: var(--paper);
}

.section-light {
  padding: 0;
  background: #fff;
}

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

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
  transform: translateY(-38px);
}

.metrics div {
  min-height: 116px;
  padding: 28px;
  background: #fff;
}

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

.metrics strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.08rem;
  font-variant-numeric: tabular-nums;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
  text-align: center;
}

.section-heading:not(.align-left) {
  margin-left: auto;
  margin-right: auto;
}

.section-heading p {
  margin-bottom: 0;
  font-size: 1.02rem;
}

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

.product-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  gap: 18px;
}

.product-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.product-card-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(220px, 0.75fr);
  gap: 14px;
  align-items: center;
  background:
    linear-gradient(135deg, #ffffff 0%, #f4f8fb 58%, #e9f3fa 100%);
}

.product-card-featured img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(14, 91, 154, 0.28));
}

.product-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 16px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(14, 91, 154, 0.1);
  color: var(--blue-strong);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.compact-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 1)),
    repeating-linear-gradient(135deg, rgba(16, 24, 32, 0.04) 0 1px, transparent 1px 12px);
}

.product-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: auto;
  border-radius: 10px;
  background: rgba(14, 91, 154, 0.1);
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(14, 91, 154, 0.11);
}

.product-icon.accent {
  background: rgba(185, 74, 31, 0.1);
  color: var(--clay);
  box-shadow: inset 0 0 0 1px rgba(185, 74, 31, 0.11);
}

.product-icon svg {
  width: 32px;
  height: 32px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 9px 0;
  color: var(--blue-strong);
  font-weight: 900;
  transition-property: transform, color;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.text-link::after {
  content: "";
  width: 22px;
  height: 2px;
  margin-left: 10px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: left center;
  transition-property: transform;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--green-strong);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1.35);
}

.section-steel {
  background:
    linear-gradient(135deg, var(--steel) 0%, var(--steel-2) 100%);
  color: #fff;
}

.section-steel p {
  color: rgba(255, 255, 255, 0.72);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 38px;
  align-items: center;
}

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

.step {
  min-height: 210px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 18px 42px rgba(0, 0, 0, 0.16);
}

.step span {
  display: block;
  margin-bottom: 32px;
  color: #f2bf63;
  font-size: 0.92rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.step strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
  text-wrap: balance;
}

.step p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.section-cta {
  background: linear-gradient(180deg, #fff 0%, #f2f4f5 100%);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-lift);
}

.cta-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 36px, 2.55rem);
}

.cta-panel p:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding: 30px 0 104px;
  background: var(--steel);
  color: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p,
.footer-inner a {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  font-weight: 900;
}

.whatsapp-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 12;
  display: inline-grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 218px;
  min-height: 64px;
  padding: 9px 16px 9px 9px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 22px 48px rgba(16, 24, 32, 0.26), 0 2px 8px rgba(16, 24, 32, 0.12);
  transition-property: transform, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.whatsapp-widget:hover,
.whatsapp-widget:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 28px 58px rgba(16, 24, 32, 0.3), 0 4px 12px rgba(16, 24, 32, 0.14);
}

.whatsapp-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
}

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

.whatsapp-text strong,
.whatsapp-text small {
  display: block;
}

.whatsapp-text strong {
  line-height: 1.1;
  font-size: 0.98rem;
}

.whatsapp-text small {
  color: var(--muted);
  font-size: 0.8rem;
}

.whatsapp-status {
  position: absolute;
  top: 8px;
  left: 45px;
  width: 11px;
  height: 11px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(21, 148, 71, 0.34);
  animation: status-pulse 2.4s cubic-bezier(0.2, 0, 0, 1) infinite;
}

@keyframes status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 148, 71, 0.34);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(21, 148, 71, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(21, 148, 71, 0);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .product-grid,
  .split-layout,
  .steps,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .metrics div {
    min-height: auto;
  }

  .product-card-featured {
    grid-template-columns: 1fr;
  }

  .product-card-featured img {
    max-width: 320px;
    justify-self: center;
  }
}

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

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 17, 23, 0.88) 0%, rgba(12, 17, 23, 0.7) 55%, rgba(12, 17, 23, 0.28) 100%),
      linear-gradient(180deg, rgba(12, 17, 23, 0.4) 0%, rgba(12, 17, 23, 0.1) 44%, rgba(12, 17, 23, 0.68) 100%);
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
    padding-top: 86px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .trust-row span {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .section-light {
    padding: 0;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .metrics {
    transform: translateY(-26px);
  }

  .product-card {
    min-height: 280px;
    padding: 22px;
  }

  .cta-panel {
    padding: 24px;
  }

  .footer-inner {
    display: block;
  }

  .footer-inner a {
    margin-top: 12px;
  }

  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
    min-width: 64px;
    grid-template-columns: 46px;
    padding: 9px;
  }

  .whatsapp-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}
