:root {
  --bg: #f4efe7;
  --surface: #fffcf7;
  --surface-muted: #e5ddd0;
  --surface-strong: #103943;
  --surface-strong-alt: #1d4d58;
  --text: #162126;
  --muted: #56656d;
  --line: rgba(22, 33, 38, 0.12);
  --white: #ffffff;
  --accent: #c1812f;
  --accent-dark: #8d5d1d;
  --shadow-lg: 0 24px 50px rgba(16, 57, 67, 0.12);
  --shadow-md: 0 18px 30px rgba(16, 57, 67, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(193, 129, 47, 0.16), transparent 20%),
    linear-gradient(180deg, #f8f3ec 0%, #f4efe7 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: none;
}

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

.topbar {
  background: var(--surface-strong);
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-content {
  padding: 0.75rem 0;
}

.topbar p {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(248, 243, 236, 0.86);
  border-bottom: 1px solid rgba(22, 33, 38, 0.08);
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, var(--surface-strong), var(--surface-strong-alt));
  color: var(--white);
  font-size: 0.88rem;
}

.brand-text {
  font-size: 1rem;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu a:not(.button-nav) {
  color: var(--muted);
  font-size: 0.97rem;
  transition: color 0.2s ease;
}

.menu a:not(.button-nav):hover,
.menu a:not(.button-nav):focus-visible {
  color: var(--surface-strong);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border-radius: 0.9rem;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  margin: 0.24rem auto;
  background: var(--surface-strong);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  padding: 5.5rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248, 243, 236, 0.56), rgba(248, 243, 236, 0.84)),
    linear-gradient(90deg, rgba(248, 243, 236, 0.78), rgba(248, 243, 236, 0.42)),
    url("../images/hero-uniformes.png") center 18% / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left center, rgba(193, 129, 47, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(16, 57, 67, 0.06), transparent 26%);
  pointer-events: none;
}

.hero-grid,
.personalization-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  min-height: 44rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.enterprise-copy h2,
.contact-copy h2,
.visual-main h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.1rem, 6vw, 5.8rem);
}

.hero-text,
.section-heading p,
.enterprise-copy p,
.contact-copy p,
.feature-card p,
.benefit-card p,
.product-body p,
.category-card p,
.visual-panel p {
  color: var(--muted);
}

.hero-text {
  max-width: 38rem;
  margin: 1.4rem 0 0;
  font-size: 1.07rem;
}

.hero-copy {
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
  padding: 2.4rem 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-xl);
  background: rgba(255, 252, 247, 0.38);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.hero-copy .eyebrow,
.hero-copy .hero-text {
  max-width: 42rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.button:hover,
.button:focus-visible,
.product-card:hover,
.product-card:focus-within,
.category-card:hover,
.benefit-card:hover,
.feature-card:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(193, 129, 47, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ab6d24;
}

.button-secondary {
  color: var(--surface-strong);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(16, 57, 67, 0.14);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(16, 57, 67, 0.28);
}

.button-tertiary {
  color: var(--surface-strong);
  background: rgba(16, 57, 67, 0.08);
}

.button-tertiary:hover,
.button-tertiary:focus-visible {
  background: rgba(16, 57, 67, 0.14);
}

.button-nav {
  padding-inline: 1.2rem;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 42rem;
  width: 100%;
}

.hero-trust article,
.category-card,
.product-card,
.feature-card,
.benefit-card,
.enterprise-callout,
.contact-form,
.contact-copy {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.hero-trust article {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.66);
}

.hero-trust strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--surface-strong);
  font-size: 1rem;
}

.visual-panel {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.visual-main {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 21rem;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.14)),
    linear-gradient(135deg, rgba(193, 129, 47, 0.26), transparent 45%);
  color: var(--white);
}

.visual-main h2 {
  max-width: 11ch;
  font-size: clamp(2rem, 3vw, 3rem);
}

.visual-main p,
.visual-kicker,
.visual-tag {
  color: rgba(255, 255, 255, 0.78);
}

.visual-tag,
.visual-kicker,
.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-tag,
.visual-kicker {
  background: rgba(255, 255, 255, 0.08);
}

.visual-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.visual-card {
  min-height: 10rem;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.visual-accent {
  background: linear-gradient(135deg, rgba(193, 129, 47, 0.22), rgba(255, 255, 255, 0.04));
}

.section {
  padding: 5rem 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.46);
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(193, 129, 47, 0.16), transparent 20%),
    linear-gradient(180deg, #123a43 0%, #0d2830 100%);
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.enterprise-copy h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  margin-bottom: 0.8rem;
}

.section-heading-light h2,
.section-heading-light p,
.section-heading-light .eyebrow {
  color: var(--white);
}

.section-heading-light p {
  color: rgba(255, 255, 255, 0.76);
}

.category-grid,
.benefits-grid,
.footer-grid {
  display: grid;
  gap: 1.3rem;
}

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

.category-card,
.benefit-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.category-card:hover,
.benefit-card:hover,
.feature-card:hover,
.product-card:hover {
  border-color: rgba(16, 57, 67, 0.18);
  box-shadow: var(--shadow-lg);
}

.card-index {
  margin-bottom: 1rem;
  color: var(--accent-dark);
  background: rgba(193, 129, 47, 0.14);
}

.category-card h3,
.product-body h3,
.feature-card h3,
.benefit-card h3,
.site-footer h3 {
  margin: 0 0 0.65rem;
}

.product-carousel {
  --cards-per-view: 4;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-inline: 3.4rem;
}

.product-grid {
  display: flex;
  gap: 1.3rem;
  transition: transform 0.7s ease;
  will-change: transform;
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  border: 1px solid rgba(16, 57, 67, 0.12);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.94);
  box-shadow: var(--shadow-md);
  color: var(--surface-strong);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.carousel-control:hover,
.carousel-control:focus-visible {
  background: var(--white);
  border-color: rgba(16, 57, 67, 0.22);
  box-shadow: var(--shadow-lg);
}

.carousel-control span {
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-0.08rem);
}

.carousel-control-prev {
  left: 0.2rem;
}

.carousel-control-next {
  right: 0.2rem;
}

.product-card {
  display: grid;
  flex: 0 0
    calc((100% - (1.3rem * (var(--cards-per-view) - 1))) / var(--cards-per-view));
  min-height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-visual {
  min-height: 14rem;
  background-color: var(--surface-muted);
  border-bottom: 1px solid var(--line);
}

.product-visual-one {
  background:
    linear-gradient(180deg, rgba(16, 57, 67, 0.06), rgba(16, 57, 67, 0.02)),
    url("../images/camisa-campo-reforzada.png") center 28% / cover no-repeat;
}

.product-visual-two {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 55%),
    linear-gradient(180deg, #485861, #29343a);
}

.product-visual-three {
  background:
    linear-gradient(135deg, rgba(193, 129, 47, 0.18), transparent 55%),
    linear-gradient(180deg, #efe8db, #d9cfbf);
}

.product-visual-four {
  background:
    linear-gradient(135deg, rgba(193, 129, 47, 0.24), transparent 45%),
    linear-gradient(180deg, #1d4d58, #112f37);
}

.product-visual-five {
  background:
    linear-gradient(135deg, rgba(193, 129, 47, 0.14), transparent 50%),
    linear-gradient(180deg, #726456, #3a312a);
}

.product-visual-six {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(180deg, #6f7f78, #44514c);
}

.product-visual-seven {
  background:
    linear-gradient(135deg, rgba(193, 129, 47, 0.18), transparent 50%),
    linear-gradient(180deg, #55707a, #2f4048);
}

.product-visual-eight {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(180deg, #d8d3c9, #b8b1a3);
}

.product-body {
  display: grid;
  gap: 0.95rem;
  padding: 1.4rem;
}

.personalization-grid {
  align-items: start;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  min-height: 100%;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.74);
}

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

.enterprise-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 239, 231, 0.94)),
    var(--surface);
}

.contact-section {
  padding-bottom: 5.5rem;
}

.contact-copy,
.contact-form {
  min-height: 100%;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.contact-list a,
.contact-list p,
.site-footer a,
.site-footer p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(16, 57, 67, 0.12);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(193, 129, 47, 0.88);
  box-shadow: 0 0 0 4px rgba(193, 129, 47, 0.16);
}

.form-note {
  min-height: 1.5rem;
  margin: 0;
  color: var(--accent-dark);
  font-weight: 600;
}

.site-footer {
  padding: 2rem 0 3rem;
  background: #f0e8dc;
  border-top: 1px solid rgba(22, 33, 38, 0.08);
}

.footer-grid {
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  align-items: start;
}

.footer-grid > div {
  display: grid;
  gap: 0.7rem;
}

.brand-footer {
  margin-bottom: 0.8rem;
}

.footer-copy {
  max-width: 22rem;
}

@media (max-width: 1080px) {
  .personalization-grid,
  .contact-grid,
  .category-grid,
  .benefits-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-carousel {
    --cards-per-view: 2;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .menu {
    position: fixed;
    top: 8.3rem;
    left: 1rem;
    right: 1rem;
    z-index: 30;
    display: grid;
    gap: 0.4rem;
    padding: 1rem;
    border: 1px solid rgba(16, 57, 67, 0.1);
    border-radius: var(--radius-lg);
    background: rgba(255, 252, 247, 1);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  }

  .menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu a:not(.button-nav) {
    padding: 0.8rem 0.5rem;
    color: var(--surface-strong);
  }

  .button-nav {
    margin-top: 0.3rem;
  }

  .hero-grid,
  .personalization-grid,
  .contact-grid,
  .enterprise-callout {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-grid {
    min-height: 38rem;
  }
}

@media (max-width: 640px) {
  .topbar p {
    font-size: 0.85rem;
  }

  .nav-shell {
    min-height: 4.7rem;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(2rem, 12vw, 3.35rem);
  }

  .hero-copy .eyebrow {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .hero-copy {
    padding: 1.6rem 1.1rem;
  }

  .hero-actions,
  .hero-trust,
  .visual-stack,
  .feature-list,
  .category-grid,
  .benefits-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-carousel {
    --cards-per-view: 1;
    padding-inline: 2.9rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .enterprise-callout .button,
  .contact-form .button {
    width: 100%;
  }

  .hero-visual,
  .contact-copy,
  .contact-form,
  .enterprise-callout {
    padding: 1.35rem;
  }

  .section {
    padding: 4rem 0;
  }
}

/* Home refresh */
.topbar {
  display: none;
}

.site-header {
  background: rgba(255, 252, 247, 0.9);
}

.hero {
  padding: 2.8rem 0 2rem;
}

.hero::before {
  background:
    radial-gradient(circle at 14% 18%, rgba(193, 129, 47, 0.1), transparent 22%),
    radial-gradient(circle at 82% 16%, rgba(16, 57, 67, 0.08), transparent 18%),
    linear-gradient(180deg, #fffdfa 0%, #f6efe5 100%);
}

.hero::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent 24%);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(22rem, 0.98fr);
  min-height: 38rem;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-reference-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-overlay-actions {
  position: absolute;
  left: 2.6%;
  bottom: 18.8%;
  z-index: 2;
  display: flex;
  gap: 1.7%;
  width: 40%;
}

.hero-overlay-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.2rem;
  padding: 0.9rem 1.4rem;
  border-radius: 1.35rem;
  font-size: clamp(0.88rem, 1.1vw, 1.2rem);
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.hero-overlay-button:hover,
.hero-overlay-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(16, 57, 67, 0.16);
  filter: brightness(1.02);
}

.hero-overlay-button-primary {
  flex: 0 0 32%;
  color: var(--white);
  background: rgba(10, 63, 75, 0.98);
}

.hero-overlay-button-secondary {
  flex: 0 0 54%;
  color: var(--surface-strong);
  border: 1.5px solid rgba(16, 57, 67, 0.36);
  background: rgba(255, 255, 255, 0.9);
}

.hero-copy {
  align-content: center;
  justify-items: start;
  max-width: 40rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  text-align: left;
}

.hero h1 {
  max-width: 8.3ch;
  font-size: clamp(3.5rem, 6vw, 6.1rem);
  letter-spacing: -0.045em;
}

.hero-text {
  max-width: 32rem;
  font-size: 1.15rem;
}

.hero-actions {
  justify-content: flex-start;
}

.button-primary {
  background: linear-gradient(135deg, #0f4352, #113943);
  box-shadow: 0 14px 30px rgba(16, 57, 67, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #0d3945, #0f3139);
}

.button-secondary {
  border: 1.5px solid rgba(16, 57, 67, 0.45);
  background: rgba(255, 255, 255, 0.74);
}

.hero-visual {
  display: grid;
  align-items: center;
  min-height: 38rem;
}

.hero-shape {
  display: none;
}

.hero-image {
  width: 100%;
  max-width: 36rem;
  margin-left: auto;
  object-fit: contain;
}

.hero-badge {
  display: none;
}

.hero-badge strong {
  font-size: 2rem;
  line-height: 1;
}

.hero-badge span {
  color: rgba(255, 255, 255, 0.82);
}

.hero-trust {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
  margin-top: 1.5rem;
}

.hero-trust article {
  min-height: 100%;
  background: rgba(255, 255, 255, 0.94);
}

.solution-reference-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

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

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 44rem;
  }

  .hero-visual {
    min-height: 31rem;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.3rem;
  }
}

@media (max-width: 860px) {
  .hero-trust {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 2rem;
  }

  .hero-reference-image {
    border-radius: var(--radius-md);
  }

  .hero-overlay-actions {
    left: 4%;
    right: 4%;
    bottom: 3.6%;
    width: auto;
    gap: 0.75rem;
  }

  .hero-overlay-button {
    min-height: 2.65rem;
    padding: 0.6rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.68rem;
  }

  .hero-overlay-button-primary {
    flex-basis: 31%;
  }

  .hero-overlay-button-secondary {
    flex-basis: 57%;
  }

  .hero h1 {
    max-width: 8.8ch;
    font-size: clamp(2.9rem, 13vw, 4.2rem);
  }

  .hero-copy {
    padding-top: 0.3rem;
  }

  .hero-visual {
    min-height: 24rem;
    padding: 0;
  }

  .hero-image {
    max-width: 20rem;
    margin-inline: auto;
  }

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