:root {
  --bg: #08090d;
  --bg-soft: #11141b;
  --surface: #ffffff;
  --surface-soft: #f4f5f7;
  --surface-muted: #eceef1;
  --text: #11131a;
  --text-soft: #5d6674;
  --text-inverse: #f8fbff;
  --line: rgba(17, 19, 26, 0.08);
  --line-inverse: rgba(255, 255, 255, 0.14);
  --primary: #d8080c;
  --primary-dark: #8e0609;
  --primary-soft: rgba(216, 8, 12, 0.12);
  --success: #18a957;
  --shadow-sm: 0 18px 40px rgba(8, 9, 13, 0.08);
  --shadow-md: 0 24px 60px rgba(8, 9, 13, 0.16);
  --shadow-xl: 0 36px 100px rgba(0, 0, 0, 0.32);
  --radius-xs: 16px;
  --radius-sm: 22px;
  --radius-md: 30px;
  --radius-lg: 38px;
  --container: 1240px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(216, 8, 12, 0.09), transparent 26%),
    linear-gradient(180deg, #f8f9fb 0%, #eff1f4 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: top 0.25s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-shell {
  min-height: 100vh;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

.section {
  position: relative;
  padding: 6.5rem 0;
}

.section--light {
  background: rgba(255, 255, 255, 0.72);
}

.section--surface {
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.96), rgba(234, 237, 242, 0.96));
}

.section--dark {
  background:
    radial-gradient(circle at top left, rgba(216, 8, 12, 0.18), transparent 28%),
    linear-gradient(180deg, #0b0d12 0%, #11151c 100%);
  color: var(--text-inverse);
}

.section-heading {
  max-width: 960px;
  margin-bottom: 0.75rem;
}

.section-heading h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-soft);
}

.section-heading--inverted p,
.section-heading--inverted h2,
.section-heading--inverted .eyebrow {
  color: var(--text-inverse);
}

.section-heading--inverted p {
  color: rgba(248, 251, 255, 0.72);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(8, 10, 15, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 43;
}

.brand img {
  width: 86px;
  height: auto;
}

.brand-text {
  display: grid;
  color: var(--text-inverse);
}

.brand-text strong {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.brand-text small {
  color: rgba(248, 251, 255, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  /* display: flex; */
  align-items: center;
}

.site-nav__panel {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav__mobile-head {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(248, 251, 255, 0.84);
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-dropdown-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text-inverse);
  outline: none;
}

.menu-toggle,
.menu-close {
  display: none;
}

.menu-toggle {
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  position: relative;
  z-index: 43;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--text-inverse);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 11, 0.58);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn--primary {
  background: linear-gradient(135deg, #ff2428, #c1080b);
  color: var(--text-inverse);
  box-shadow: 0 16px 34px rgba(216, 8, 12, 0.26);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow: 0 20px 42px rgba(216, 8, 12, 0.32);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text-inverse);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text-inverse);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.btn--outline {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--surface-muted);
}

.btn--whatsapp {
  background: linear-gradient(135deg, #18b15c, #119145);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(24, 177, 92, 0.24);
}

.btn--full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-height);
  background: var(--bg);
  color: var(--text-inverse);
  overflow: clip;
}

.hero__background,
.hero-frame__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 15, 0.92) 0%, rgba(8, 10, 15, 0.82) 40%, rgba(8, 10, 15, 0.42) 100%),
    linear-gradient(180deg, rgba(8, 10, 15, 0.06), rgba(8, 10, 15, 0.16));
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 88%);
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 3rem;
  min-height: calc(100vh - var(--header-height));
  padding: 4rem 0 3.5rem;
}

.hero__content {
  max-width: 660px;
}

.title_expanse {
  color: var(--primary);
}

.hero__content h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.75rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero__description {
  max-width: 640px;
  margin: 1.35rem 0 0;
  color: rgba(248, 251, 255, 0.76);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
}

.hero__badges {
  display: none;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 251, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 600;
  backdrop-filter: blur(14px);
} */

.hero-badge svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2rem;
}

.hero__trust div {
  min-width: 180px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.hero__trust strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.6rem;
  letter-spacing: -0.05em;
}

.hero__trust span {
  color: rgba(248, 251, 255, 0.68);
  font-size: 0.92rem;
}

.hero__visual {
  position: relative;
}

.hero-frame {
  position: relative;
  min-height: 580px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.hero-frame__glass {
  position: absolute;
  inset: 1.15rem;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(7, 10, 14, 0.32);
  backdrop-filter: blur(14px);
}

.hero-frame__media {
  inset: 1.15rem;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(6, 10, 15, 0.12), rgba(6, 10, 15, 0.12)),
    url("assets/hero-3vix-background.png") 74% center / cover no-repeat;
}

.hero-frame__card {
  position: absolute;
  max-width: 240px;
  padding: 1rem 1.1rem;
  border-radius: 26px;
  background: rgba(11, 13, 18, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.hero-frame__card strong {
  display: block;
  color: var(--text-inverse);
  font-size: 1rem;
  line-height: 1.3;
}

.hero-frame__label {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: rgba(248, 251, 255, 0.64);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-frame__card--top {
  top: 2.3rem;
  right: 2.1rem;
}

.hero-frame__card--bottom {
  bottom: 2.3rem;
  left: 2.1rem;
}

.feature-grid,
.segment-grid,
.stats-grid,
.about-pillars {
  display: grid;
  gap: 1.3rem;
}

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

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

.feature-card,
.stat-card,
.about-pillar,
.testimonial-card,
.contact-card,
.equipment-card {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.feature-card,
.about-pillar {
  padding: 1.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover,
.about-pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(216, 8, 12, 0.18);
}

.feature-card__icon,
.about-pillar__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(216, 8, 12, 0.18), rgba(216, 8, 12, 0.05));
  color: var(--primary);
}

.feature-card__icon svg,
.about-pillar__icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3,
.segment-card h3,
.stat-card strong,
.testimonial-card h3,
.contact-card h2,
.contact-card h3,
.equipment-card h3,
.about-copy h2,
.about-panel h3 {
  margin: 1rem 0 0.55rem;
  letter-spacing: -0.04em;
}

.feature-card h3,
.equipment-card h3,
.about-pillar h3 {
  font-size: 1.25rem;
}

.feature-card p,
.segment-card p,
.stat-card p,
.about-copy p,
.about-pillar p,
.testimonial-card p,
.contact-card p {
  margin: 0;
  color: var(--text-soft);
}

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

.segment-card {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  color: var(--text-inverse);
  background:
    linear-gradient(180deg, rgba(8, 10, 15, 0.1), rgba(8, 10, 15, 0.82)),
    linear-gradient(145deg, rgba(216, 8, 12, 0.16), rgba(216, 8, 12, 0.02)),
    var(--segment-image) var(--segment-position, center) / cover no-repeat;
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.segment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.62));
  z-index: -1;
}

.segment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24));
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.segment-card:hover::after {
  opacity: 0.78;
  transform: scale(1.03);
}

.segment-card__content {
  position: relative;
  z-index: 1;
}

.segment-card h3 {
  font-size: 1.4rem;
  color: var(--text-inverse);
}

.segment-card p {
  color: rgba(248, 251, 255, 0.78);
}

.carousel-shell {
  position: relative;
}

.carousel-shell__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.3rem;
  margin-bottom: 0.3rem;
}

.carousel-button {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line-inverse);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-inverse);
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  outline: none;
}

.section--light .carousel-button,
.section--surface .carousel-button {
  background: rgba(17, 19, 26, 0.04);
  border-color: rgba(17, 19, 26, 0.08);
  color: var(--text);
}

.section--light .carousel-button:hover,
.section--light .carousel-button:focus-visible,
.section--surface .carousel-button:hover,
.section--surface .carousel-button:focus-visible {
  background: rgba(17, 19, 26, 0.08);
  border-color: rgba(17, 19, 26, 0.12);
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s ease;
  will-change: transform;
}

.equipment-card {
  flex: 0 0 calc((100% - 2.5rem) / 3);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-inverse);
}

.equipment-card__media {
   position: relative;
  min-height: 270px;
  border-radius: 24px;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      rgba(10, 12, 16, 0.08),
      rgba(10, 12, 16, 0.4)
    ),
    var(--equipment-image);

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.equipment-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(10, 12, 16, 0.72));
}

.equipment-card__media--ribbon,
.equipment-card__media--labels {
  background:
    radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(135deg, rgba(216, 8, 12, 0.32), rgba(17, 21, 28, 0.9));
}

.equipment-card__media--ribbon::before,
.equipment-card__media--labels::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 26% 38%, rgba(255, 255, 255, 0.14) 0 16%, transparent 17%),
    radial-gradient(circle at 56% 58%, rgba(255, 255, 255, 0.12) 0 16%, transparent 17%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03));
}

.equipment-card__media--labels::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0 22%, transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 42%, transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 64%, transparent 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 86%, transparent 86%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02));
}

.equipment-card__body {
  padding: 1.2rem 0.2rem 0.2rem;
}

.equipment-card__category {
  display: inline-flex;
  margin-bottom: 0.6rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 251, 255, 0.72);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.equipment-card p {
  color: rgba(248, 251, 255, 0.72);
}

.equipment-card__cta {
  margin-top: 1.2rem;
  color: #ffffff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--primary);
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.stats-section {
  background:
    radial-gradient(circle at top, rgba(216, 8, 12, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 246, 249, 0.98));
}

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

.stat-card {
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 19, 26, 0.08);
  text-align: left;
}

.stat-card strong {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
}

.stat-card span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.about-copy,
.about-panel {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.about-copy h2,
.about-panel h3,
.contact-card h2,
.contact-card h3 {
  margin-top: 0;
}

.about-highlights {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.about-highlights div {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: var(--surface-soft);
}

.about-highlights strong {
  display: block;
  margin-bottom: 0.35rem;
}

.about-pillars {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-pillar h3 {
  margin-top: 0.9rem;
}

.carousel-track--testimonials .testimonial-card {
  flex: 0 0 calc((100% - 2.5rem) / 3);
}

.testimonial-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
}

.testimonial-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(216, 8, 12, 0.18), rgba(17, 19, 26, 0.05));
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 800;
}

.testimonial-card h3 {
  margin: 0 0 0.18rem;
  font-size: 1.15rem;
}

.testimonial-card small {
  color: var(--text-soft);
}

.testimonial-rating {
  display: inline-flex;
  gap: 0.18rem;
  margin-bottom: 0.8rem;
  color: #f5af19;
}

.partners-section {
  overflow: hidden;
}

.partners-marquee {
  position: relative;
  overflow: hidden;
}

.partners-marquee::before,
.partners-marquee::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 110px;
  z-index: 2;
  background: linear-gradient(90deg, rgba(239, 241, 244, 1), rgba(239, 241, 244, 0));
}

.partners-marquee::after {
  inset: 0 0 0 auto;
  background: linear-gradient(270deg, rgba(239, 241, 244, 1), rgba(239, 241, 244, 0));
}

.partners-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 32s linear infinite;
  padding: 0 1rem;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 240px;
  min-height: 136px;

  padding: 2rem;

  border-radius: 26px;

  background: rgba(255, 255, 255, 0.86);

  border: 1px solid rgba(17, 19, 26, 0.06);

  box-shadow: var(--shadow-sm);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.partner-logo {
  max-width: 180px;

  max-height: 140px;

  width: auto;

  height: auto;

  object-fit: contain;

  filter: grayscale(100%);

  opacity: 0.75;

  transition:
    transform 0.25s ease,
    filter 0.25s ease,
    opacity 0.25s ease;
}

.partner-card:hover .partner-logo {
  filter: grayscale(0);

  opacity: 1;

  transform: scale(1.05);
}

.partner-card:hover {
  transform: translateY(-4px) scale(1.02);
  filter: grayscale(0);
  box-shadow: var(--shadow-md);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 1.5rem;
}

.contact-card {
  padding: 2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.contact-card--cta {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 20%),
    linear-gradient(145deg, #0b0d12, #141922 62%, #1b2029);
  color: var(--text-inverse);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-xl);
}

.contact-card--cta p,
.contact-card--cta .eyebrow {
  color: rgba(248, 251, 255, 0.78);
}

.contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.contact-points {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.contact-points li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-points li::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(216, 8, 12, 0.16);
}

.contact-card__header {
  margin-bottom: 1.2rem;
}

.proposal-form,
.newsletter-form {
  display: grid;
  gap: 0.75rem;
}

.proposal-form label {
  font-size: 0.9rem;
  font-weight: 700;
}

.proposal-form input,
.proposal-form textarea,
.newsletter-form input {
  width: 100%;
  padding: 1rem 1rem;
  border: 1px solid rgba(17, 19, 26, 0.12);
  border-radius: 18px;
  background: #ffffff;
  color: var(--text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.proposal-form input:focus,
.proposal-form textarea:focus,
.newsletter-form input:focus {
  border-color: rgba(216, 8, 12, 0.44);
  box-shadow: 0 0 0 4px rgba(216, 8, 12, 0.12);
  outline: none;
}

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

.form-status,
.newsletter-status {
  margin: 0.1rem 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.form-status.is-error,
.newsletter-status.is-error {
  color: var(--primary-dark);
}

.form-status.is-success,
.newsletter-status.is-success {
  color: var(--success);
}

.site-footer {
  background: #0b0d12;
  color: var(--text-inverse);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr 1fr;
  gap: 1.5rem;
  padding: 4.5rem 0 2.5rem;
}

.footer-brand img {
  width: 112px;
  margin-bottom: 1rem;
}

.footer-brand p,
.footer-contact li,
.footer-links a,
.footer-bottom p,
.newsletter-status {
  color: rgba(248, 251, 255, 0.7);
}

.site-footer h3 {
  margin: 0 0 1rem;
  font-size: 1.08rem;
}

.footer-links {
  display: grid;
  gap: 0.75rem;
}

.footer-links a,
.footer-contact a {
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ffffff;
}

.footer-contact {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.newsletter-form input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.newsletter-form input::placeholder {
  color: rgba(248, 251, 255, 0.42);
}

.newsletter-form .btn--outline {
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.newsletter-form .btn--outline:hover,
.newsletter-form .btn--outline:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  padding: 1.2rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 38;
  width: 68px;
  height: 68px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #18b15c, #119145);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 22px 44px rgba(17, 145, 69, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 26px 52px rgba(17, 145, 69, 0.34);
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

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

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

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

@media (max-width: 1180px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .stats-grid,
  .footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .equipment-card,
  .carousel-track--testimonials .testimonial-card {
    flex-basis: calc((100% - 1.25rem) / 2);
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 82px;
  }

  .hero__layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero__content,
  .section-heading,
  .about-copy {
    max-width: none;
  }

  .hero__visual {
    max-width: 720px;
  }

  .hero-frame {
    min-height: 480px;
  }

  .about-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {


  p.eyebrow {
    display: none;
  }

  .menu-toggle,
  .menu-close {
    display: inline-flex;
  }

  .menu-close {
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(88vw, 360px);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 1000;
  }

  .site-nav__panel {
    width: 100%;
    min-height: 100vh;
    padding: 1rem 1rem 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
    background: rgba(9, 12, 18, 0.98);
    backdrop-filter: blur(18px);
    box-shadow: -22px 0 48px rgba(0, 0, 0, 0.28);
  }

  .site-nav__mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.3rem;
    color: var(--text-inverse);
    font-weight: 700;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }

  .nav-link,
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: flex-start;
    padding: 0.95rem 1rem;
    border-radius: 18px;
  }

  .nav-actions {
    flex-direction: column;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .mega-menu {
    position: static;
    width: 100%;
    margin-top: 0.6rem;
    padding: 1rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .nav-item--dropdown.is-open .mega-menu {
    display: block;
  }

  .mega-menu__grid {
    grid-template-columns: 1fr;
  }

  body.menu-open .site-nav {
    transform: translateX(0);
  }

  body.menu-open .menu-overlay {
    opacity: 1;
    visibility: visible;
  }

  body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 780px) {
  .section {
    padding: 5rem 0;
  }

  .feature-grid,
  .feature-grid--compact,
  .segment-grid,
  .stats-grid,
  .about-pillars,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .equipment-card,
  .carousel-track--testimonials .testimonial-card {
    flex-basis: 100%;
  }

  .hero__actions,
  .contact-card__actions {
    flex-direction: column;
  }

  .hero__actions .btn,
  .contact-card__actions .btn {
    width: 100%;
  }

  .hero-frame {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .header-inner {
    gap: 0.75rem;
  }

  .brand {
    max-width: calc(100% - 72px);
  }

  .brand img {
    width: 64px;
  }

  .brand-text strong {
    font-size: 0.96rem;
  }

  .brand-text small {
    font-size: 0.66rem;
    line-height: 1.25;
  }

  .hero__content h1 {
    max-width: 10ch;
    font-size: 3.3rem;
  }

  .hero__description {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero__trust div {
    width: 100%;
  }

  .hero__badges {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-badge {
    width: 100%;
    justify-content: flex-start;
    white-space: normal;
  }

  .hero-frame__card {
    max-width: 210px;
    padding: 0.85rem 0.9rem;
  }

  .contact-card,
  .about-copy,
  .about-panel {
    padding: 1.5rem;
  }

  .floating-whatsapp {
    width: 64px;
    height: 64px;
  }
}

.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn--whatsapp svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.floating-whatsapp svg {
    margin-top: 0.3rem;
    width: 28px;
    height: 28px;
}

.floating-instagram {
    position: fixed;
    right: 1.2rem;
    bottom: 6.2rem;

    z-index: 38;

    width: 68px;
    height: 68px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    background: linear-gradient(
        135deg,
        #833AB4,
        #FD1D1D,
        #FCAF45
    );

    box-shadow: 0 22px 44px rgba(131,58,180,.30);

    transition: .25s;
}

.floating-instagram svg {
    width: 30px;
    height: 30px;
}

.floating-instagram:hover {
    transform: translateY(-4px) scale(1.03);
}