:root {
  --blue: #2447a2;
  --blue-deep: #000036;
  --blue-soft: #eef3ff;
  --gold: #e7bd00;
  --gold-deep: #cfa800;
  --white: #ffffff;
  --black: #121212;
  --text: #23314f;
  --muted: #5f6d89;
  --border: rgba(0, 0, 54, 0.08);
  --shadow: 0 20px 46px rgba(0, 0, 54, 0.09);
  --header-height: 122px;
  --ticker-height: 44px;
  --max-width: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(231, 189, 0, 0.16), transparent 20%),
    radial-gradient(circle at bottom left, rgba(36, 71, 162, 0.08), transparent 24%),
    linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
  padding-top: calc(var(--header-height) + var(--ticker-height));
}

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

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

.ticker {
  position: fixed;
  top: var(--header-height);
  left: 0;
  z-index: 40;
  width: 100%;
  overflow: hidden;
  background: var(--gold);
  color: var(--blue-deep);
  box-shadow: 0 10px 24px rgba(0, 0, 54, 0.12);
  min-height: var(--ticker-height);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
}

.ticker-group {
  display: flex;
  flex-shrink: 0;
}

.ticker-item {
  padding: 12px 0;
  white-space: nowrap;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker-item::before {
  content: "•";
  display: inline-block;
  margin: 0 22px;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-1 * 33.333%));
  }
}

.site-header,
.hero,
.products,
.metrics,
.about,
.site-footer {
  padding-left: clamp(18px, 4vw, 48px);
  padding-right: clamp(18px, 4vw, 48px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  padding-top: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    #08154d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 34px rgba(0, 0, 54, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header__inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  height: var(--header-height);
  padding: 0 38px;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: center;
  gap: 54px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-header__brand {
  display: flex;
  align-items: center;
  justify-self: center;
}

.site-header__brand img {
  width: 100%;
  max-width: 360px;
  max-height: 108px;
  object-fit: contain;
  object-position: left center;
  transform: scale(1.16);
  transform-origin: center left;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  justify-self: center;
}

.site-nav a {
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 800;
  opacity: 0.88;
  letter-spacing: -0.01em;
  transition: opacity 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.site-nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
  color: #fff5c4;
}

.header-cta,
.primary-button,
.secondary-button,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 26px;
  border-radius: 14px;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.header-cta {
  justify-self: center;
  min-width: 212px;
  min-height: 46px;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.header-cta,
.primary-button,
.floating-whatsapp {
  background: var(--gold);
  color: var(--blue-deep);
  box-shadow:
    0 14px 30px rgba(231, 189, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.secondary-button {
  border: 1px solid rgba(0, 0, 54, 0.1);
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-deep);
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.01);
}

.hero {
  padding-top: 22px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at top right, rgba(231, 189, 0, 0.18), transparent 22%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.05), transparent 22%),
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 32px,
      rgba(255, 255, 255, 0.04) 32px,
      rgba(255, 255, 255, 0.04) 33px
    ),
    linear-gradient(135deg, #0b1c63 0%, #173581 55%, #2447a2 100%);
  box-shadow: 0 22px 48px rgba(0, 0, 54, 0.14);
  z-index: 0;
}

.hero__grid {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.9fr);
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: 560px;
}

.hero__copy {
  padding: 30px 26px 24px;
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
  position: relative;
  animation: hero-copy-rise 0.78s ease-out both;
}

.hero__copy::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 18px;
  width: 4px;
  height: 128px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), rgba(231, 189, 0, 0));
  opacity: 0.85;
}

.hero__eyebrow,
.section-head__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__copy h1,
.section-head h2,
.contact-cta__panel h2,
.about__copy h2 {
  margin: 18px 0 0;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.hero__copy h1 {
  max-width: none;
  font-family: "Anton", "Manrope", sans-serif;
  color: var(--gold);
  font-size: clamp(4.35rem, 7.2vw, 6.45rem);
  line-height: 0.94;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 10px 30px rgba(231, 189, 0, 0.16);
  letter-spacing: 0.01em;
  animation: hero-title-sweep 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.08s both;
}

.hero__headline-wrap {
  display: inline-flex;
  margin-top: 6px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero__headline-wrap h1 {
  margin: 0;
  line-height: 0.92;
}

.hero__subtitle {
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(1.24rem, 1.9vw, 1.48rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  padding-left: 0;
  animation: hero-subtitle-rise 0.7s ease-out 0.18s both;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  animation: hero-subtitle-rise 0.7s ease-out 0.28s both;
}

.hero__actions .primary-button {
  border-radius: 999px;
  padding-inline: 30px;
}

.metric-card,
.about__list article {
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(0, 0, 54, 0.05);
}

.metric-card strong,
.metric-card span,
.about__list strong,
.about__list span {
  display: block;
}

.metric-card strong,
.about__list strong {
  color: var(--blue-deep);
  font-size: 1rem;
  font-weight: 800;
}

.metric-card span,
.about__list span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero__visual {
  position: relative;
  min-height: 500px;
  animation: hero-visual-float-in 0.9s ease-out 0.12s both;
}

.hero__visual-card {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero__visual-card--main {
  inset: 0 0 54px 26px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow:
    0 24px 50px rgba(0, 0, 54, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: rotate(0.3deg);
}

.hero__visual-card--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(180deg, #f8faff, #eef3ff);
}

.hero__visual-card--accent {
  left: 0;
  right: 116px;
  bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(135deg, #f2c600, #e7bd00);
  color: var(--blue-deep);
  box-shadow:
    0 20px 34px rgba(0, 0, 54, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  border-radius: 22px;
}

.hero__visual-card--accent p,
.hero__visual-card--accent strong,
.hero__visual-card--accent span {
  margin: 0;
  display: block;
}

.hero__visual-card--accent p {
  color: rgba(0, 0, 54, 0.72);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__visual-card--accent strong {
  margin-top: 8px;
  color: var(--blue-deep);
  font-size: clamp(2.45rem, 4.5vw, 3.3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  animation: price-pulse 2.1s ease-in-out infinite;
  transform-origin: center left;
  font-stretch: expanded;
  line-height: 0.92;
  text-shadow: 0 1px 0 rgba(0, 0, 54, 0.08);
}

.hero__visual-card--accent span {
  margin-top: 8px;
  color: rgba(0, 0, 54, 0.84);
  line-height: 1.55;
}

@keyframes price-pulse {
  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(0, 0, 54, 0);
  }

  50% {
    transform: scale(1.012);
    text-shadow: 0 0 6px rgba(0, 0, 54, 0.08);
  }
}

@keyframes hero-copy-rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes hero-title-sweep {
  from {
    opacity: 0;
    transform: translateX(-34px);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes hero-subtitle-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@keyframes hero-visual-float-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero__copy,
  .hero__copy h1,
  .hero__subtitle,
  .hero__actions,
  .hero__visual {
    animation: none;
  }
}

.products,
.metrics,
.about {
  padding-top: 68px;
}

.metrics-mobile {
  display: none;
}

.section-head,
.about__copy {
  max-width: 780px;
}

.products .section-head,
.metrics .section-head,
.about__copy {
  max-width: 680px;
}

.products .section-head {
  margin: 0 auto;
  text-align: center;
}

.section-head h2,
.about__copy h2 {
  color: var(--blue-deep);
  font-size: clamp(2.15rem, 3.6vw, 3.25rem);
  text-wrap: balance;
}

.products .section-head h2,
.metrics .section-head h2,
.about__copy h2 {
  max-width: 14ch;
}

.products .section-head h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 15ch;
  margin-top: 28px;
  line-height: 1.14;
}

.products-carousel {
  position: relative;
  width: min(var(--max-width), 100%);
  margin: 28px auto 0;
  padding: 18px 0;
  border-radius: 28px;
  --products-marquee-gap: 16px;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%);
  mask-composite: intersect;
}

.products-carousel__viewport {
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.products-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.products-carousel::after,
.products-carousel::before {
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.products-carousel::before,
.products-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 96px;
  z-index: 2;
  pointer-events: none;
}

.products-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.products-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.products-carousel__track {
  display: flex;
  gap: var(--products-marquee-gap);
  width: max-content;
  animation: none;
}

.products-carousel:hover .products-carousel__track {
  animation-play-state: running;
}

.products-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(8, 21, 77, 0.9);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 14px 30px rgba(0, 0, 54, 0.18);
  transition: transform 0.18s ease, background 0.18s ease;
  isolation: isolate;
}

.products-carousel__arrow:hover {
  transform: translateY(-50%) scale(1.04);
  background: rgba(36, 71, 162, 0.96);
}

.products-carousel__arrow--prev {
  left: 12px;
}

.products-carousel__arrow--next {
  right: 12px;
}

@keyframes products-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - (var(--products-marquee-gap) / 2)));
  }
}

.product-tile {
  width: 240px;
  min-height: 310px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  position: relative;
  overflow: hidden;
}

.product-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(231, 189, 0, 0.34);
  box-shadow: 0 26px 48px rgba(0, 0, 54, 0.12);
}

.product-tile::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #2447a2, #e7bd00);
  opacity: 0.9;
}

.product-tile__media {
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background:
    radial-gradient(circle at top, rgba(36, 71, 162, 0.05), transparent 48%),
    #ffffff;
  padding: 0;
  overflow: hidden;
}

.product-tile--large .product-tile__media {
  min-height: 230px;
}

.product-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-tile__content h3 {
  margin: 14px 6px 4px;
  color: var(--blue-deep);
  font-size: 1.04rem;
  letter-spacing: -0.04em;
  text-align: center;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metrics__panel {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  padding: 34px 28px 38px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top center, rgba(231, 189, 0, 0.18), transparent 34%),
    linear-gradient(180deg, #0a1b63 0%, #173581 56%, #2447a2 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 56px rgba(0, 0, 54, 0.18);
  position: relative;
  overflow: hidden;
}

.metrics__panel::after {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 68%);
  pointer-events: none;
}

.metrics__panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 26px;
  pointer-events: none;
}

.metrics__layout {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.metrics__intro {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.metrics__intro h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0, 0, 54, 0.12);
}

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.metric-card {
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 30px 24px 26px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 36px rgba(0, 0, 54, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.metric-card--featured {
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 36px rgba(0, 0, 54, 0.18);
}

.metric-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(231, 189, 0, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 22px 42px rgba(0, 0, 54, 0.22);
}

.metric-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 124px;
  margin: 0 0 22px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.metric-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.metric-card__icon--tile img {
  filter: brightness(0) invert(1);
  transform: scale(1.22);
}

.metric-card strong {
  color: var(--gold);
  font-size: 1.6rem;
  display: block;
  letter-spacing: -0.02em;
  line-height: 1.16;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(231, 189, 0, 0.12);
}

.metric-card span {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.18;
  opacity: 0.96;
}

.metric-card:last-child strong {
  font-size: 1.6rem;
  line-height: 1.08;
}

.about__grid {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 26px;
  align-items: center;
  padding: 36px;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.about__grid::before {
  content: "";
  position: absolute;
  inset: auto auto -60px -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 189, 0, 0.12), transparent 70%);
  pointer-events: none;
}

.about__copy h2 {
  max-width: none;
  font-size: clamp(2.2rem, 3.9vw, 3.2rem);
}

.about__highlight {
  position: relative;
  margin-top: 20px;
  padding: 4px 0 4px 22px;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.about__highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--blue));
}

.about__highlight p {
  margin: 0;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.8;
}

.about__cta {
  margin-top: 22px;
}

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

.about__list article {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.about__media-card {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 24px 46px rgba(0, 0, 54, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.about__media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-footer {
  margin-top: 22px;
  padding-top: 10px;
  background:
    radial-gradient(circle at top center, rgba(231, 189, 0, 0.08), transparent 28%),
    linear-gradient(180deg, #06103d 0%, #040d32 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: -80px auto auto -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 189, 0, 0.08), transparent 68%);
  pointer-events: none;
}

.site-footer__inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  padding: 0 0 8px;
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(240px, 1.1fr) minmax(180px, 0.65fr);
  gap: 14px;
  align-items: center;
}

.site-footer__brand,
.site-footer__col {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.site-footer__brand {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer__col {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-footer__brand img {
  width: min(148px, 100%);
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.site-footer__label {
  margin: 0 0 2px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__col p,
.site-footer__col a {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.35;
}

.site-footer__col a {
  font-weight: 800;
}

.site-footer__contact-logo {
  display: none;
  width: min(132px, 100%);
  height: auto;
  max-height: 46px;
  margin-top: 8px;
  object-fit: contain;
}

.site-footer__bottom {
  padding: 7px 20px 8px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 0, 54, 0.2);
}

.floating-whatsapp.is-hidden {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

@media (max-width: 1080px) {
  .site-header__inner,
  .hero__grid,
  .metrics__layout,
  .about__grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-header__inner {
    justify-items: center;
    text-align: center;
  }

  .site-nav,
  .hero__actions,
  .hero__actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero__copy {
    text-align: center;
    margin: 0 auto;
  }

  .hero__copy h1,
  .hero__copy p,
  .section-head,
  .about__copy {
    max-width: none;
  }

  .metrics__grid,
  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__visual {
    min-height: 540px;
  }

  .hero__visual-card--main {
    inset: 0 40px 70px 40px;
  }

  .hero__visual-card--accent {
    left: 30px;
    right: 30px;
  }

  .product-tile--large {
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .metrics {
    display: none;
  }

  .metrics-mobile {
    display: block;
    padding: 48px 14px 0;
  }

  .metrics-mobile__panel {
    width: min(var(--max-width), 100%);
    margin: 0 auto;
    padding: 20px 12px 22px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(36, 71, 162, 0.08);
    box-shadow: 0 18px 36px rgba(0, 0, 54, 0.08);
  }

  .metrics-mobile__panel h2 {
    margin: 0;
    color: var(--blue);
    font-size: 1.28rem;
    line-height: 1.12;
    text-align: center;
    letter-spacing: -0.03em;
  }

  .metrics-mobile__list {
    margin-top: 16px;
    display: grid;
    gap: 14px;
    justify-items: center;
  }

  .metrics-mobile__item {
    width: 178px;
    aspect-ratio: 1 / 1;
    padding: 16px 12px 14px;
    border-radius: 999px;
    background:
      radial-gradient(circle at top, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0) 45%),
      #0f236e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 28px rgba(0, 0, 54, 0.16);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .metrics-mobile__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    margin-bottom: 10px;
  }

  .metrics-mobile__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .metrics-mobile__icon--tile img {
    filter: brightness(0) invert(1);
    transform: scale(1.2);
  }

  .metrics-mobile__item strong {
    color: var(--gold);
    font-size: 0.94rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(231, 189, 0, 0.12);
  }

  :root {
    --header-height: 0px;
    --ticker-height: 38px;
  }

  body {
    padding-top: calc(var(--header-height) + var(--ticker-height));
  }

  .site-header,
  .hero,
  .products,
  .metrics,
  .about,
  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero::before {
    inset: 0;
    border-radius: 0;
  }

  .ticker-item {
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    padding: 10px 0;
  }

  .ticker-item::before {
    margin: 0 14px;
  }

  .site-header {
    display: none;
  }

  .hero {
    padding-top: 12px;
  }

  .hero__grid,
  .metrics__layout,
  .about__grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    min-height: 0;
    gap: 20px;
  }

  .hero__copy {
    padding: 22px 16px 22px;
    border-radius: 0;
    text-align: center;
    position: relative;
  }

  .hero__eyebrow,
  .section-head__eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    padding: 0;
  }

  .hero__copy h1 {
    max-width: none;
    font-size: clamp(3rem, 12vw, 3.9rem);
    line-height: 0.96;
  }

  .hero__copy::before,
  .hero__copy::after {
    content: "";
    position: absolute;
    top: 38px;
    width: 4px;
    height: 120px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gold), rgba(231, 189, 0, 0));
    opacity: 0.95;
    box-shadow: 0 0 18px rgba(231, 189, 0, 0.18);
  }

  .hero__copy::before {
    left: 4px;
  }

  .hero__copy::after {
    right: 4px;
  }

  .hero__subtitle {
    margin-top: 4px;
    padding-left: 0;
    font-size: 1.12rem;
    line-height: 1.06;
    text-shadow: 0 8px 18px rgba(0, 0, 54, 0.18);
  }

  .hero__actions {
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .hero__highlights {
    gap: 10px;
    margin-top: 18px;
  }

  .hero__headline-wrap {
    display: inline-flex;
    justify-content: center;
    margin-top: 14px;
    padding: 10px 14px 12px;
    border-radius: 22px;
    position: relative;
  }

  .hero__visual {
    min-height: 402px;
  }

  .hero__visual-card--main {
    inset: 0 10px 82px 10px;
    border-radius: 22px;
  }

  .hero__visual-card--accent {
    left: 12px;
    right: 12px;
    padding: 8px 10px;
    border-radius: 16px;
    bottom: 46px;
  }

  .hero__visual-card--accent strong {
    margin-top: 6px;
    font-size: 2.2rem;
  }

  .hero__visual-card--accent p {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  .hero__actions .primary-button {
    min-width: 250px;
    border-radius: 999px;
    box-shadow:
      0 16px 28px rgba(0, 0, 54, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.26);
  }

  .products,
  .metrics,
  .about,
  .contact-cta {
    padding-top: 48px;
  }

  .about {
    padding-bottom: 14px;
  }

  .section-head h2,
  .about__copy h2,
  .contact-cta__panel h2 {
    font-size: clamp(1.85rem, 8.8vw, 2.25rem);
    line-height: 1.06;
  }

  .products-carousel {
    margin-top: 18px;
    padding: 10px 0;
    --products-marquee-gap: 12px;
  }

  .products-carousel::before,
  .products-carousel::after {
    width: 22px;
  }

  .products-carousel__arrow {
    width: 38px;
    height: 38px;
    font-size: 1.65rem;
  }

  .products-carousel__arrow--prev {
    left: 6px;
  }

  .products-carousel__arrow--next {
    right: 6px;
  }

  .products-carousel__track {
    animation: none;
  }

  .products-carousel__track.is-mobile-loop {
    animation: none;
  }

  .metrics__panel {
    padding: 18px 10px 22px;
  }

  .metrics__intro {
    padding: 0 8px;
    border-radius: 0;
    text-align: center;
    background: transparent;
    box-shadow: none;
  }

  .metrics__intro h2 {
    font-size: 1.42rem;
    white-space: normal;
  }

  .metrics__grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 14px;
  }

  .product-tile {
    width: 172px;
    min-height: 0;
    padding: 12px;
  }

  .product-tile__media,
  .product-tile--large .product-tile__media {
    min-height: 150px;
    padding: 12px;
    border-radius: 16px;
  }

  .product-tile__media img {
    max-height: 126px;
  }

  .product-tile__tag {
    margin-top: 12px;
    font-size: 0.68rem;
  }

  .product-tile__content h3 {
    margin: 10px 4px 2px;
    min-height: 2.2em;
    font-size: 1rem;
  }

  .product-tile__content p {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .metric-card,
  .about__list article {
    min-height: 0;
    padding: 12px 8px 10px;
  }

  .metric-card strong {
    font-size: 0.9rem;
    line-height: 1.08;
    letter-spacing: -0.01em;
  }

  .metric-card__icon {
    width: 52px;
    height: 52px;
    margin: 0 0 10px;
  }

  .metric-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .metric-card span {
    margin-top: 4px;
    font-size: 0.7rem;
    line-height: 1.15;
  }

  .metrics__grid .metric-card:last-child {
    grid-column: auto;
    max-width: 220px;
    justify-self: center;
  }

  .about__media {
    min-height: 280px;
    border-radius: 18px;
  }

  .about__copy p {
    margin-top: 0;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .about__grid {
    padding: 16px;
    border-radius: 20px;
    gap: 18px;
  }

  .about__highlight {
    margin-top: 14px;
    padding: 2px 0 2px 14px;
  }

  .about__cta {
    margin-top: 18px;
    width: 100%;
    max-width: 280px;
  }

  .about__list {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .about__media-card {
    aspect-ratio: 1 / 1;
    min-height: 0;
    border-radius: 12px;
  }

  .about__list {
    margin-top: 18px;
    gap: 8px;
  }

  .site-footer__inner {
    padding: 4px 0 8px;
    gap: 8px;
    text-align: center;
    align-items: center;
    justify-items: center;
  }

  .site-footer {
    margin-top: 16px;
    padding-top: 10px;
    padding-bottom: 8px;
  }

  .site-footer__brand,
  .site-footer__col {
    padding: 0;
    justify-content: center;
    align-items: center;
  }

  .site-footer__brand {
    display: none;
  }

  .site-footer__col:first-of-type {
    order: 2;
  }

  .site-footer__col:last-of-type {
    order: 1;
  }

  .site-footer__brand img {
    width: min(132px, 100%);
    height: auto;
    max-height: 46px;
    object-fit: contain;
  }

  .site-footer__col {
    max-width: 310px;
    text-align: center;
  }

  .site-footer__col:last-child {
    padding-bottom: 6px;
  }

  .site-footer__label {
    margin-bottom: 0;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .site-footer__col p,
  .site-footer__col a {
    font-size: 0.76rem;
    line-height: 1.25;
  }

  .site-footer__contact-logo {
    display: block;
    width: min(118px, 100%);
    height: auto;
    max-height: 40px;
    margin-top: 10px;
    object-fit: contain;
  }

  .site-footer__bottom {
    padding: 6px 14px 8px;
    font-size: 0.72rem;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 38px;
    padding: 9px 12px;
    font-size: 0.76rem;
  }
}

@media (max-width: 420px) {
  .metrics-mobile {
    padding: 48px 12px 0;
  }

  .metrics-mobile__panel {
    padding: 18px 10px 20px;
  }

  .metrics-mobile__panel h2 {
    font-size: 1.12rem;
  }

  .metrics-mobile__item {
    width: 164px;
    padding: 14px 10px 12px;
  }

  .metrics-mobile__icon {
    width: 66px;
    height: 66px;
    margin-bottom: 8px;
  }

  .metrics-mobile__item strong {
    font-size: 0.86rem;
  }

  :root {
    --header-height: 0px;
  }

  .site-header,
  .hero,
  .products,
  .metrics,
  .about,
  .site-footer {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero__copy h1 {
    font-size: clamp(2.65rem, 11.8vw, 3.3rem);
  }

  .hero__copy {
    padding: 20px 14px 20px;
  }

  .hero__copy::before,
  .hero__copy::after {
    top: 34px;
    width: 3px;
    height: 102px;
  }

  .hero__copy::before {
    left: 2px;
  }

  .hero__copy::after {
    right: 2px;
  }

  .about {
    padding-bottom: 12px;
  }

  .site-footer {
    margin-top: 14px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .site-footer__inner {
    padding: 4px 0 8px;
    gap: 6px;
  }

  .hero__headline-wrap {
    padding: 12px 14px 14px;
    border-radius: 18px;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .primary-button {
    min-height: 42px;
    font-size: 0.82rem;
  }

  .hero__visual {
    min-height: 352px;
  }

  .hero__visual-card--main {
    inset: 0 4px 76px 4px;
  }

  .hero__visual-card--accent {
    left: 10px;
    right: 10px;
    padding: 8px 10px;
    bottom: 40px;
  }

  .hero__visual-card--accent p {
    font-size: 0.64rem;
  }

  .hero__visual-card--accent strong {
    font-size: 2rem;
  }

  .hero__visual-card--accent span {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .section-head h2,
  .about__copy h2 {
    font-size: clamp(1.7rem, 8.6vw, 2.05rem);
  }

  .product-tile {
    width: 154px;
    padding: 10px;
  }

  .product-tile__media,
  .product-tile--large .product-tile__media {
    min-height: 136px;
    padding: 10px;
  }

  .product-tile__media img {
    max-height: 112px;
  }

  .product-tile__content h3 {
    font-size: 0.94rem;
  }

  .metrics__panel {
    padding: 16px 8px 20px;
  }

  .metrics__intro h2 {
    font-size: 1.26rem;
  }

  .metric-card strong,
  .about__list strong {
    font-size: 0.84rem;
  }

  .metric-card span,
  .about__list span,
  .about__highlight p {
    font-size: 0.64rem;
    line-height: 1.12;
  }

  .metrics__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .metric-card {
    width: min(220px, 100%);
    min-width: 220px;
    max-width: 220px;
    aspect-ratio: 1 / 1;
    min-height: 0;
    justify-self: center;
    padding: 18px 16px 16px;
  }

  .metric-card__icon {
    width: 50px;
    height: 50px;
    margin: 0 0 8px;
  }

  .metrics__grid .metric-card:last-child {
    width: 220px;
    max-width: 220px;
  }
}
