@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --ink: #111111;
  --paper: #f5f3ef;
  --white: #ffffff;
  --red: #d60f3d;
  --red-dark: #a9002b;
  --muted: #6f6d69;
  --line: rgba(17, 17, 17, 0.15);
  --radius: 1.25rem;
  --container: min(91vw, 1380px);
  --font-display: "Manrope", Arial, sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  transition: background 250ms ease, color 250ms ease, border 250ms ease;
}

.site-header::after {
  position: absolute;
  right: 4.5vw;
  bottom: 0;
  left: 4.5vw;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.28);
  transition: background 250ms ease;
}

.site-header.is-scrolled,
.site-header.header-light {
  color: var(--ink);
  background: rgba(245, 243, 239, 0.94);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled::after,
.site-header.header-light::after {
  background: var(--line);
}

.nav-shell {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  width: var(--container);
  min-height: 88px;
  margin: 0 auto;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 220px;
  height: 58px;
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.site-header:not(.is-scrolled):not(.header-light) .brand {
  padding: 0.4rem 0.6rem;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.9);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.25rem, 2.1vw, 2.4rem);
}

.nav-links a {
  position: relative;
  padding: 2rem 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a:not(.pay-link)::after {
  position: absolute;
  right: 0;
  bottom: 1.55rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.pay-link,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.3rem !important;
  border: 1px solid var(--red);
  color: var(--white);
  background: var(--red);
  transition: color 180ms ease, background 180ms ease, border 180ms ease;
}

.pay-link:hover,
.btn-primary:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 24px;
  height: 1px;
  margin: 5px auto;
  content: "";
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: #07090a;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 3, 4, 0.88) 0%, rgba(2, 3, 4, 0.56) 42%, rgba(2, 3, 4, 0.12) 78%),
    linear-gradient(0deg, rgba(2, 3, 4, 0.5), transparent 50%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-in 1.4s cubic-bezier(0.2, 0.7, 0, 1) both;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: 10.5rem 0 5.5rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: var(--red);
}

.display {
  max-width: 1050px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 7.3vw, 7.9rem);
  font-weight: 500;
  letter-spacing: -0.067em;
  line-height: 0.94;
}

.display .accent {
  color: #ff2858;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(300px, 580px) auto;
  align-items: end;
  margin-top: 2.5rem;
  gap: 2rem;
}

.hero-copy {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.55;
}

.scroll-mark {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-mark span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.section {
  padding: clamp(5rem, 10vw, 9.5rem) 0;
}

.section-tight {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: start;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  gap: 2rem;
}

.section-index {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-title {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-title.small {
  max-width: 700px;
  font-size: clamp(2.3rem, 4.2vw, 4.5rem);
}

.lead {
  color: var(--muted);
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
  line-height: 1.55;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
  gap: clamp(2rem, 8vw, 8rem);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4.5rem;
  border-top: 1px solid var(--line);
}

.stat {
  padding: 2rem 1rem 0 0;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
  padding-left: 1.5rem;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.stat-label {
  display: block;
  max-width: 150px;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.feature-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.feature-badge {
  position: absolute;
  right: 1.3rem;
  bottom: 1.3rem;
  display: grid;
  width: 118px;
  height: 118px;
  padding: 1rem;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.dark-section {
  color: var(--white);
  background: var(--ink);
}

.dark-section .lead,
.dark-section .muted {
  color: rgba(255, 255, 255, 0.62);
}

.product-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 720px;
}

.product-visual {
  min-height: 620px;
  overflow: hidden;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-list {
  display: flex;
  padding: clamp(3rem, 7vw, 7rem);
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
}

.product-list h2 {
  margin: 0 0 2rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.product-row {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  gap: 1rem;
}

.product-row span:first-child {
  color: #ff2858;
  font-size: 0.72rem;
}

.product-row strong {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  font-weight: 500;
}

.product-row small {
  color: rgba(255, 255, 255, 0.55);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 2.3rem;
  gap: 0.8rem;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link::after {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "→";
  transition: transform 200ms ease, color 200ms ease, background 200ms ease;
}

.text-link:hover::after {
  color: var(--ink);
  background: currentColor;
  transform: translateX(5px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.process-card {
  min-height: 280px;
  padding: 2.2rem 2.2rem 2.2rem 0;
  border-right: 1px solid var(--line);
}

.process-card + .process-card {
  padding-left: 2.2rem;
}

.process-card:last-child {
  border-right: 0;
}

.process-number {
  color: var(--red);
  font-size: 0.75rem;
}

.process-card h3 {
  margin: 4.5rem 0 1rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.process-card p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.map-frame {
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #eeeae2;
  box-shadow: 0 32px 80px rgba(17, 17, 17, 0.14);
}

.map-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.country-strip {
  display: flex;
  padding: 1.4rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  white-space: nowrap;
}

.country-strip-track {
  display: flex;
  min-width: max-content;
  animation: ticker 24s linear infinite;
}

.country-strip span {
  display: inline-flex;
  align-items: center;
  padding-right: 2.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
  letter-spacing: -0.035em;
}

.country-strip span::after {
  width: 7px;
  height: 7px;
  margin-left: 2.6rem;
  content: "";
  border-radius: 50%;
  background: var(--red);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--red);
}

.cta::before {
  position: absolute;
  top: -30%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
}

.cta h2 {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7.8rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.cta .text-link {
  margin: 0;
}

.page-hero {
  display: flex;
  min-height: 70svh;
  padding-top: 120px;
  align-items: flex-end;
}

.page-hero-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 5rem 0;
}

.page-hero h1 {
  max-width: 1100px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 9vw, 9.7rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.page-hero p {
  max-width: 610px;
  margin: 2rem 0 0 auto;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.full-bleed-image {
  width: 100%;
  max-height: 82svh;
  object-fit: cover;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 9vw, 10rem);
}

.story-grid h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.story-copy p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.value-card {
  min-height: 350px;
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--paper);
}

.value-card span {
  color: var(--red);
  font-size: 0.75rem;
}

.value-card h3 {
  margin: 8rem 0 1rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.products-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(2rem, 7vw, 8rem);
}

.products-aside {
  position: sticky;
  top: 130px;
}

.products-aside h2 {
  margin: 0 0 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.products-aside p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.65;
}

.product-group {
  border-top: 1px solid var(--line);
}

.product-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  gap: 1.25rem;
}

.product-item .code {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 600;
}

.product-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.product-item p {
  max-width: 360px;
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-item .spec {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.notice {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-left: 3px solid var(--red);
  background: #ece9e3;
  line-height: 1.6;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 9rem);
}

.contact-card {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.contact-card small {
  display: block;
  margin-bottom: 1rem;
  color: var(--red);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card address {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 2.1rem);
  font-style: normal;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}

.field {
  position: relative;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 58px;
  padding: 1rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  transition: border 180ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--red-dark);
}

.payment-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(24, 18, 12, 0.08);
}

.payment-summary {
  display: flex;
  min-height: 650px;
  padding: clamp(2.3rem, 5vw, 5rem);
  color: var(--white);
  background: var(--ink);
  flex-direction: column;
  justify-content: space-between;
}

.payment-summary h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.payment-summary p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

.payment-trust {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.payment-trust svg {
  width: 22px;
}

.payment-form {
  padding: clamp(2.3rem, 5vw, 5rem);
}

.payment-form h3 {
  margin: 0 0 2.5rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.currency-wrap {
  position: relative;
}

.currency-wrap span {
  position: absolute;
  right: 0;
  bottom: 1.1rem;
  color: var(--muted);
}

.secure-note {
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.btn-primary {
  margin-top: 2rem;
  border-radius: 0;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.site-footer {
  padding: 5rem 0 2rem;
  color: var(--white);
  background: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  padding-bottom: 4.5rem;
  gap: 4rem;
}

.footer-mark {
  width: min(360px, 80%);
  padding: 0.85rem;
  border-radius: 0.5rem;
  background: var(--white);
}

.footer-copy {
  max-width: 460px;
  margin: 1.8rem 0 0;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-links h3 {
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links address {
  display: block;
  margin: 0 0 0.65rem;
  font-style: normal;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.76rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 95;
  right: 1.5rem;
  bottom: 1.5rem;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: #25d366;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 27px;
  height: 31px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
    min-height: 74px;
  }

  .brand {
    width: 190px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 74px 0 0;
    display: flex;
    padding: 3rem 4.5vw;
    align-items: stretch;
    justify-content: flex-start;
    background: var(--paper);
    color: var(--ink);
    flex-direction: column;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 6vw, 3rem);
    letter-spacing: -0.04em;
  }

  .nav-links a::after {
    display: none;
  }

  .pay-link {
    margin-top: 1.5rem;
    border-bottom: 0 !important;
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
  }

  .hero-bottom,
  .section-head,
  .intro-grid,
  .story-grid,
  .products-layout,
  .contact-layout,
  .payment-shell,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .scroll-mark {
    display: none;
  }

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

  .product-visual {
    min-height: 70vw;
  }

  .process-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .process-card,
  .process-card + .process-card {
    min-height: auto;
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-card h3 {
    margin-top: 3rem;
  }

  .products-aside {
    position: static;
    margin-bottom: 3rem;
  }

  .payment-summary {
    min-height: 470px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: 91vw;
    --radius: 0.8rem;
  }

  .nav-shell {
    min-height: 68px;
  }

  .nav-links {
    inset-block-start: 68px;
  }

  .brand {
    width: 158px;
  }

  .hero-content {
    padding-bottom: 3.4rem;
  }

  .display {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(2, 3, 4, 0.82), rgba(2, 3, 4, 0.28)),
      linear-gradient(0deg, rgba(2, 3, 4, 0.7), transparent 65%);
  }

  .hero-image {
    object-position: 61% center;
  }

  .stats {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .stat,
  .stat:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    padding: 1.35rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-label {
    margin: 0;
  }

  .feature-image,
  .feature-image img {
    min-height: 470px;
  }

  .product-list {
    padding: 4rem 4.5vw;
  }

  .product-row {
    grid-template-columns: 42px 1fr;
  }

  .product-row small {
    display: none;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta .text-link {
    margin-top: 1rem;
  }

  .page-hero {
    min-height: 63svh;
    padding-top: 88px;
  }

  .page-hero h1 {
    font-size: clamp(3.4rem, 18vw, 6.2rem);
  }

  .page-hero p {
    margin-left: 0;
  }

  .product-item {
    grid-template-columns: 55px 1fr;
  }

  .product-item .spec {
    display: none;
  }

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

  .field.full {
    grid-column: auto;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 54px;
    height: 54px;
  }
}
