:root {
  --ink: #171717;
  --ink-soft: #333333;
  --muted: #6b675f;
  --paper: #f4f0e7;
  --surface: #ffffff;
  --line: #ddd5c7;
  --gold: #d1a133;
  --gold-light: #f4d86e;
  --gold-deep: #856014;
  --lime: #f4d86e;
  --purple: #b78620;
  --green: #171717;
  --red: #a97822;
  --shadow: 0 22px 56px rgba(20, 20, 20, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #050505;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

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

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 16px clamp(20px, 7vw, 86px);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.74);
  border-bottom: 1px solid rgba(244, 216, 110, 0.14);
  backdrop-filter: blur(18px);
}

.nav,
.hero-actions,
.quote-notes {
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
}

.brand-logo {
  display: block;
  width: clamp(142px, 13vw, 210px);
  height: auto;
  filter: drop-shadow(0 0 20px rgba(244, 216, 110, 0.18));
}

.nav {
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a:hover,
.footer a:hover {
  color: var(--lime);
}

.topbar-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 5px;
  border: 1px solid transparent;
  font-weight: 850;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.topbar-action,
.button.primary {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 0 30px rgba(244, 216, 110, 0.18);
}

.button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.36);
}

.topbar-action:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 72svh;
  padding: 112px clamp(20px, 7vw, 86px) 36px;
  color: #ffffff;
  background:
    radial-gradient(circle at 56% 48%, rgba(209, 161, 51, 0.35), rgba(0, 0, 0, 0) 34%),
    radial-gradient(circle at 31% 37%, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0) 26%),
    linear-gradient(180deg, #020202 0%, #070707 60%, #020202 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 88px clamp(20px, 7vw, 86px) 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(244, 216, 110, 0.12), rgba(209, 161, 51, 0.24), rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  filter: blur(54px);
  opacity: 0.8;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto clamp(20px, 7vw, 86px) 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), transparent);
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  max-width: 1560px;
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  max-width: 840px;
}

.label {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: clamp(2.7rem, 4.75vw, 4.95rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.1vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.45vw, 1.17rem);
  line-height: 1.48;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-top: 22px;
}

.hero-trust span {
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.showcase {
  position: relative;
  min-width: 0;
  padding: 5px;
  background: linear-gradient(135deg, var(--gold-light), rgba(209, 161, 51, 0.92), var(--gold));
  border-radius: 12px;
  box-shadow:
    0 0 58px rgba(209, 161, 51, 0.25),
    0 20px 80px rgba(0, 0, 0, 0.44);
}

.video-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.68;
  background: #050505;
  border-radius: 8px;
}

.hero-video,
.video-fallback {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.video-fallback {
  position: relative;
  z-index: 1;
  transform: scale(1.05);
  animation: productFilm 14s ease-in-out infinite alternate;
}

.video-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.02) 44%, rgba(0, 0, 0, 0.34)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 22%);
  pointer-events: none;
}

.video-stage::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  z-index: 5;
  height: 3px;
  background:
    linear-gradient(90deg, var(--gold-light) 0 36%, rgba(255, 255, 255, 0.45) 36% 100%);
  border-radius: 999px;
  opacity: 0.88;
}

.play-mark {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 5;
  width: 78px;
  height: 58px;
  background: rgba(244, 216, 110, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 7px;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
}

.play-mark::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0;
  height: 0;
  border-block: 11px solid transparent;
  border-left: 17px solid #ffffff;
  transform: translate(-34%, -50%);
}

.video-caption {
  position: absolute;
  z-index: 5;
  left: 18px;
  right: 18px;
  bottom: 36px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  color: #ffffff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
}

.video-caption strong {
  color: var(--gold-light);
  font-size: clamp(1rem, 2vw, 1.46rem);
  line-height: 1;
  text-transform: uppercase;
}

.video-caption span {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: right;
}

.showcase-badge {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 16px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.showcase-badge strong {
  color: var(--lime);
  white-space: nowrap;
}

.showcase-badge span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.35;
}

@keyframes productFilm {
  from {
    transform: scale(1.05) translate3d(-1.5%, 0, 0);
  }

  to {
    transform: scale(1.12) translate3d(2%, -1.4%, 0);
  }
}

.client-band {
  position: relative;
  display: grid;
  gap: 24px;
  padding: 30px 0 36px;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 0%, rgba(209, 161, 51, 0.22), transparent 36%),
    #020202;
  overflow: hidden;
}

.client-band p {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.25rem, 2.45vw, 2rem);
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  text-wrap: balance;
}

.client-kicker {
  display: block;
  margin: 0 20px -12px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.logo-marquee {
  width: 100%;
  padding: 20px 0;
  border-block: 1px solid rgba(244, 216, 110, 0.18);
  mask-image: linear-gradient(90deg, transparent, #000000 10%, #000000 90%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: clamp(44px, 7vw, 92px);
  animation: marquee 28s linear infinite;
}

.logo-track span {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

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

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

.section {
  padding: clamp(72px, 9vw, 126px) clamp(20px, 6vw, 82px);
}

section {
  scroll-margin-top: 92px;
}

.gallery-strip {
  position: relative;
  display: grid;
  min-height: clamp(360px, 48vw, 620px);
  color: #ffffff;
  background: #050505;
  overflow: hidden;
}

.gallery-strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.08)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.52));
}

.gallery-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 760px;
  padding: clamp(72px, 8vw, 110px) clamp(20px, 7vw, 86px);
}

.gallery-copy h2 {
  color: #ffffff;
}

.gallery-copy p:not(.label) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.58;
}

.gallery-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.gallery-carousel span {
  min-width: 112px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(244, 216, 110, 0.22);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 850;
  text-align: center;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 6vw, 76px);
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 20%, rgba(209, 161, 51, 0.16), transparent 34%),
    #080808;
}

.about-grid {
  display: grid;
  gap: 14px;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.about-stats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(244, 216, 110, 0.18);
  border-radius: 5px;
  font-weight: 800;
}

.about-stats strong {
  color: var(--gold-light);
}

.about-grid article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 216, 110, 0.16);
  border-radius: 8px;
}

.about-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.62;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

#productos {
  color: #080808;
  background:
    radial-gradient(circle at 50% 18%, rgba(0, 0, 0, 0.58), transparent 31%),
    radial-gradient(circle at 88% 74%, rgba(0, 0, 0, 0.3), transparent 29%),
    linear-gradient(135deg, #f6d96e, #d1a133 48%, #9c741b);
}

#productos .label {
  color: #080808;
}

.section-heading {
  max-width: 690px;
}

#productos .section-heading h2 {
  color: #080808;
}

.product-cta {
  width: fit-content;
  margin-top: 14px;
  color: #ffffff;
  background: #080808;
  border-color: rgba(0, 0, 0, 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.section-heading.compact {
  max-width: 820px;
}

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

.solution-item,
.business-grid article,
.proof-card,
.proof-points div,
.steps li {
  min-width: 0;
  background: var(--surface);
  border: 1px solid rgba(23, 23, 23, 0.09);
  border-radius: 8px;
}

.solution-item {
  min-height: 292px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(20, 20, 20, 0.06);
}

.solution-item span {
  display: block;
  margin-bottom: 38px;
  color: var(--gold-deep);
  font-weight: 900;
}

.solution-item p,
.business-copy p,
.business-grid p,
.proof-points span,
.steps p,
.quote-copy p,
.form-hint {
  color: var(--muted);
  line-height: 1.62;
}

.solution-item.box-focus {
  color: #ffffff;
  background: #151515;
  border-color: rgba(0, 0, 0, 0.22);
}

.solution-item.box-focus p,
#productos .solution-item.product-dark p,
#productos .solution-item:nth-child(4) p {
  color: rgba(255, 255, 255, 0.8);
}

.solution-item.box-focus span,
#productos .solution-item.product-dark span,
#productos .solution-item:nth-child(4) span {
  color: var(--gold);
}

#productos .solution-item.product-light,
#productos .solution-item:nth-child(3) {
  color: #111111;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(0, 0, 0, 0.11);
}

#productos .solution-item.product-light p,
#productos .solution-item:nth-child(3) p {
  color: rgba(20, 20, 20, 0.68);
}

#productos .solution-item.product-light span,
#productos .solution-item:nth-child(3) span {
  color: var(--gold-deep);
}

#productos .solution-item.product-dark,
#productos .solution-item:nth-child(4) {
  color: #ffffff;
  background: #151515;
  border-color: rgba(0, 0, 0, 0.22);
}

#productos .solution-item {
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.16);
}

.dark {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 76px);
  color: #ffffff;
  background:
    radial-gradient(circle at 72% 20%, rgba(209, 161, 51, 0.28), transparent 34%),
    linear-gradient(120deg, #050505, #15110a 58%, #050505);
  border-block: 1px solid rgba(244, 216, 110, 0.16);
}

.business-copy {
  max-width: 720px;
}

.business-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
}

.business-grid {
  display: grid;
  gap: 14px;
}

.business-grid article {
  padding: 26px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(244, 216, 110, 0.16);
}

.business-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 18%, rgba(0, 0, 0, 0.58), transparent 31%),
    radial-gradient(circle at 86% 72%, rgba(0, 0, 0, 0.28), transparent 28%),
    linear-gradient(135deg, #f6d96e, #d1a133 48%, #9c741b);
}

.proof-card {
  padding: clamp(26px, 4vw, 42px);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.74);
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.proof-card .label {
  color: var(--gold-light);
}

.proof-card h2 {
  color: #ffffff;
}

.proof-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.proof-metrics span {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(244, 216, 110, 0.2);
  border-radius: 5px;
  font-size: 0.92rem;
  font-weight: 800;
}

.proof-metrics strong {
  color: var(--gold-light);
}

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

.proof-points div {
  padding: 22px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.78);
  border-color: rgba(0, 0, 0, 0.18);
}

.proof-points strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.proof-points span {
  color: rgba(255, 255, 255, 0.78);
}

.process {
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 18%, rgba(244, 216, 110, 0.22), transparent 29%),
    radial-gradient(circle at 88% 80%, rgba(209, 161, 51, 0.2), transparent 31%),
    linear-gradient(135deg, #050505 0%, #17120a 54%, #050505 100%);
  border-block: 1px solid rgba(244, 216, 110, 0.16);
}

.process .label {
  color: var(--gold-light);
}

.process .section-heading h2 {
  color: #ffffff;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  background: transparent;
  border: 0;
}

.steps li {
  position: relative;
  min-height: 244px;
  padding: 24px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.045)),
    #111111;
  border-color: rgba(244, 216, 110, 0.18);
  border-radius: 0;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.steps li:first-child {
  border-radius: 8px 0 0 8px;
}

.steps li:last-child {
  border-radius: 0 8px 8px 0;
}

.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  z-index: 2;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border: 4px solid #15110a;
  border-left: 0;
  border-bottom: 0;
  transform: translateY(-50%) rotate(45deg);
}

.steps li:nth-child(even) {
  background:
    linear-gradient(180deg, rgba(244, 216, 110, 0.18), rgba(244, 216, 110, 0.08)),
    #15110a;
}

.steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 5px;
  font-weight: 900;
}

.steps strong {
  color: #ffffff;
}

.steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.73);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
  padding: clamp(72px, 9vw, 126px) clamp(20px, 6vw, 82px);
  color: #ffffff;
  background: #101010;
}

.quote-copy {
  position: sticky;
  top: 108px;
}

.quote-section .label {
  color: var(--gold-light);
}

.quote-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
}

.quote-notes {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.quote-notes span {
  padding: 9px 11px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  font-size: 0.88rem;
  font-weight: 750;
}

.quote-help {
  margin: -2px 0 0;
  padding: 12px 14px;
  color: rgba(23, 23, 23, 0.78);
  background: rgba(209, 161, 51, 0.16);
  border: 1px solid rgba(209, 161, 51, 0.28);
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.45;
}

.quote-form {
  display: grid;
  gap: 17px;
  padding: clamp(22px, 4vw, 38px);
  color: var(--ink);
  background: #ffffff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-card-section {
  padding: clamp(56px, 7vw, 96px) clamp(20px, 6vw, 82px);
  background: #050505;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  color: #080808;
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 255, 255, 0.44), transparent 25%),
    linear-gradient(135deg, #f8df7a, #d4a43a 56%, #a77a1d);
  border-radius: 12px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.contact-card img {
  display: block;
  width: min(260px, 76%);
  margin-bottom: 24px;
  filter: brightness(0.14) contrast(1.2);
}

.contact-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(8, 8, 8, 0.78);
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.55;
}

.contact-details h2 {
  color: #080808;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.contact-details dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.contact-details div {
  min-width: 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 8px;
}

.contact-details dt {
  margin-bottom: 6px;
  color: rgba(8, 8, 8, 0.64);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  color: #080808;
  font-size: 1.04rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.quote-form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 850;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 5px;
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(200, 155, 44, 0.24);
  border-color: var(--gold);
}

.form-submit {
  width: 100%;
  min-height: 52px;
  cursor: pointer;
}

.form-hint {
  margin: 0;
  font-size: 0.88rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 82px);
  color: rgba(255, 255, 255, 0.68);
  background: #080808;
  font-size: 0.92rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 1040px) {
  .topbar {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .topbar-action {
    justify-self: end;
  }

  .hero-shell,
  .split,
  .about-section,
  .dark,
  .proof,
  .quote-section,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .showcase {
    max-width: 760px;
  }

  .solution-list,
  .proof-points,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    gap: 12px;
  }

  .steps li,
  .steps li:first-child,
  .steps li:last-child {
    border-radius: 8px;
  }

  .steps li:not(:last-child)::after {
    display: none;
  }

  .quote-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .topbar {
    min-height: 66px;
    padding-inline: 16px;
  }

  .topbar-action {
    display: none;
  }

  .brand-logo {
    width: 148px;
  }

  .hero {
    min-height: auto;
    padding: 92px 20px 34px;
    background:
      radial-gradient(circle at 50% 28%, rgba(209, 161, 51, 0.36), transparent 38%),
      radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.08), transparent 28%),
      #020202;
  }

  .hero::before {
    inset: 72px 20px 0;
    filter: blur(40px);
  }

  h1 {
    font-size: clamp(2.15rem, 10.4vw, 3.05rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .lead {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    width: 100%;
    min-height: 45px;
    padding-inline: 12px;
    font-size: 0.94rem;
  }

  .hero-trust span {
    width: 100%;
    text-align: center;
  }

  .showcase {
    margin-top: 6px;
    padding: 3px;
    border-radius: 10px;
  }

  .video-stage {
    aspect-ratio: 1.34;
  }

  .video-caption {
    display: grid;
    align-items: start;
  }

  .video-caption span {
    max-width: none;
    text-align: left;
  }

  .play-mark {
    width: 64px;
    height: 48px;
  }

  .showcase-badge {
    position: static;
    display: grid;
    margin-top: 0;
    border-radius: 0 0 8px 8px;
  }

  .client-band {
    padding: 34px 0 38px;
  }

  .client-band p {
    font-size: 1.34rem;
    line-height: 1.25;
  }

  .logo-track {
    gap: 38px;
    animation-duration: 22s;
  }

  .section,
  .quote-section {
    padding: 64px 20px;
  }

  .gallery-strip {
    min-height: 520px;
  }

  .gallery-strip img {
    object-position: 58% center;
  }

  .gallery-copy {
    padding: 64px 20px;
    align-self: end;
  }

  .gallery-copy p:not(.label) {
    font-size: 0.98rem;
  }

  .solution-list,
  .about-grid,
  .proof-points,
  .contact-details dl,
  .steps {
    grid-template-columns: 1fr;
  }

  .solution-item,
  .steps li {
    min-height: auto;
  }

  .footer {
    flex-direction: column;
  }
}
