:root {
  color-scheme: dark;
  --black: #090a0b;
  --panel: #0d0e10;
  --white: #f4f3ef;
  --muted: #96979a;
  --line: rgba(255, 255, 255, 0.15);
  --gold: #d8ad56;
  --gold-bright: #efc66c;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(216, 173, 86, 0.055), transparent 30%),
    var(--black);
  color: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.site-header {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 70px;
  align-items: flex-start;
  padding: 0 18px 0 2px;
}

.site-logo {
  position: static;
  z-index: 1;
  display: block;
  width: clamp(204px, 13.18vw, 257px);
  height: 70px;
  overflow: hidden;
  line-height: 0;
}

.site-logo img {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(-3px);
}

.site-logo:focus-visible {
  outline: 1px solid var(--gold-bright);
  outline-offset: 3px;
}

.sales-contact {
  position: static;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 0 auto;
  padding: 10px 14px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.sales-contact__icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(239, 198, 108, 0.46);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 15px;
}

.sales-contact__label {
  display: block;
  margin-bottom: 3px;
  color: #8f9092;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sales-contact__numbers {
  display: flex;
  gap: 16px;
}

.sales-contact__numbers a {
  position: relative;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: color 200ms ease;
}

.sales-contact__numbers a + a::before {
  position: absolute;
  top: 50%;
  left: -9px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.sales-contact__numbers a:hover,
.sales-contact__numbers a:focus-visible {
  color: var(--gold-bright);
  outline: none;
}

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

.hero {
  width: min(1780px, calc(100% - 48px));
  height: min(900px, calc(100svh - 128px));
  min-height: 620px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.92fr) minmax(400px, 0.88fr);
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}

.hero__visual {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #101112;
}

.hero__image-stage,
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: blur(7px) saturate(0.94) brightness(0.9);
  transform: scale(1.045);
  transition:
    opacity 1.45s cubic-bezier(.22, .61, .36, 1),
    filter 1.45s cubic-bezier(.22, .61, .36, 1),
    transform 7.5s cubic-bezier(.2, .65, .3, 1);
  backface-visibility: hidden;
  will-change: opacity, filter, transform;
}

.hero__image.is-visible {
  opacity: 1;
  filter: blur(0) saturate(1) brightness(1);
  transform: scale(1);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.34) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.38), transparent 30%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(30px, 3.5vw, 58px) clamp(28px, 3.4vw, 62px) 32px;
  border-left: 1px solid var(--line);
}

.hero__copy {
  margin: auto 0;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

h1 {
  max-width: 540px;
  margin: 0;
  color: var(--white);
  font-size: clamp(44px, 3.65vw, 68px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

h1 span {
  color: var(--gold);
}

.hero__intro {
  max-width: 450px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.5;
}

.gallery-controls {
  margin-top: clamp(24px, 4vh, 36px);
}

.gallery-controls__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}

.gallery-controls__topline p {
  margin: 0;
  color: #b6b7b9;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: none;
  color: #8f9092;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  transition: color 180ms ease;
}

.gallery-toggle:hover,
.gallery-toggle:focus-visible {
  color: var(--white);
}

.gallery-toggle__pause {
  width: 9px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.gallery-toggle.is-paused .gallery-toggle__pause {
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left: 8px solid currentColor;
  border-right: 0;
}

.thumbnails {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
}

.thumbnail {
  position: relative;
  aspect-ratio: 1.48;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: #171819;
  cursor: pointer;
  opacity: 0.56;
  transition: opacity 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

.thumbnail.is-active {
  border-color: var(--gold-bright);
  opacity: 1;
}

.thumbnail__progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: left;
}

.thumbnail.is-active .thumbnail__progress {
  animation: gallery-progress 6s linear forwards;
}

.thumbnails.is-paused .thumbnail__progress {
  animation-play-state: paused;
}

@keyframes gallery-progress {
  to { transform: scaleX(1); }
}

.hero__cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding: 17px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 226, 155, 0.52);
  border-radius: 2px;
  background: linear-gradient(135deg, #cfa34c 0%, var(--gold-bright) 52%, #d6a84f 100%);
  box-shadow: 0 10px 28px rgba(216, 173, 86, 0.12);
  color: #0a0b0c;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 260ms cubic-bezier(.2, .7, .2, 1),
    box-shadow 260ms ease,
    filter 260ms ease;
}

.hero__cta::before {
  position: absolute;
  inset: -2px;
  content: "";
  background: linear-gradient(108deg, transparent 25%, rgba(255, 255, 255, 0.55) 48%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 760ms cubic-bezier(.2, .7, .2, 1);
  pointer-events: none;
}

.hero__cta span {
  position: relative;
  z-index: 1;
}

.hero__cta:hover,
.hero__cta:focus-visible {
  color: #050606;
  filter: saturate(1.08) brightness(1.04);
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(216, 173, 86, 0.24);
}

.hero__cta:hover::before,
.hero__cta:focus-visible::before {
  transform: translateX(120%);
}

.hero__cta:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.hero__cta:active {
  transform: translateY(0) scale(0.995);
}

.hero__cta-icon {
  color: #0a0b0c;
  font-size: 22px;
  transition: transform 280ms cubic-bezier(.2, .7, .2, 1);
}

.hero__cta:hover .hero__cta-icon,
.hero__cta:focus-visible .hero__cta-icon {
  transform: translate(4px, -4px) rotate(4deg);
}

.cinema-section {
  width: min(1780px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(22px, 1.8vw, 29px) clamp(28px, 4vw, 72px) 64px;
  background:
    radial-gradient(circle at 16% 10%, rgba(216, 173, 86, 0.09), transparent 27%),
    linear-gradient(180deg, #0c0d0f 0%, #090a0b 100%);
}

.cinema-section__heading {
  width: min(816px, 100%);
  margin: 0 auto;
}

.cinema-section h2 {
  max-width: 792px;
  margin: 0;
  color: var(--white);
  font-size: clamp(29px, 2.3vw, 38px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.cinema-section h2 span {
  color: var(--gold);
}

.cinema-frame {
  position: relative;
  width: min(756px, 66%);
  aspect-ratio: 16 / 9;
  margin: clamp(14px, 1.3vw, 20px) auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #050606;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.cinema-section__cta {
  position: relative;
  display: flex;
  width: min(480px, 100%);
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 64px auto 0;
  padding: 14px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 226, 155, 0.52);
  border-radius: 2px;
  background: linear-gradient(135deg, #cfa34c 0%, var(--gold-bright) 52%, #d6a84f 100%);
  box-shadow: 0 10px 28px rgba(216, 173, 86, 0.12);
  color: #090a0b;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 260ms cubic-bezier(.2, .7, .2, 1), box-shadow 260ms ease, filter 260ms ease;
}

.cinema-section__cta::before {
  position: absolute;
  inset: -2px;
  content: "";
  background: linear-gradient(108deg, transparent 25%, rgba(255, 255, 255, 0.55) 48%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 760ms cubic-bezier(.2, .7, .2, 1);
  pointer-events: none;
}

.cinema-section__cta span {
  position: relative;
  z-index: 1;
}

.cinema-section__cta:hover,
.cinema-section__cta:focus-visible {
  outline: none;
  filter: saturate(1.08) brightness(1.04);
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(216, 173, 86, 0.24);
}

.cinema-section__cta:hover::before,
.cinema-section__cta:focus-visible::before {
  transform: translateX(120%);
}

.cinema-section__cta:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.cinema-section__cta:active {
  transform: translateY(0) scale(0.995);
}

.cinema-section__cta-icon {
  font-size: 22px;
  transition: transform 280ms cubic-bezier(.2, .7, .2, 1);
}

.cinema-section__cta:hover .cinema-section__cta-icon,
.cinema-section__cta:focus-visible .cinema-section__cta-icon {
  transform: translate(4px, -4px) rotate(4deg);
}

.cinema-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cinema-frame__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 55%, rgba(0, 0, 0, 0.64) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 32%);
  pointer-events: none;
}

.cinema-frame__caption {
  position: absolute;
  bottom: 26px;
  left: 28px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cinema-frame__caption span {
  margin-right: 14px;
  color: var(--gold-bright);
  font-weight: 600;
  letter-spacing: 0.16em;
}

.cinema-frame__toggle {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border: 0;
  background: rgba(9, 10, 11, 0.62);
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: color 200ms ease, background 200ms ease;
}

.cinema-frame__toggle > span {
  width: 9px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.cinema-frame__toggle.is-paused > span {
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-right: 0;
  border-left: 8px solid currentColor;
}

.cinema-frame__toggle i {
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cinema-frame__toggle:hover,
.cinema-frame__toggle:focus-visible {
  outline: none;
  background: rgba(9, 10, 11, 0.84);
  color: var(--gold-bright);
}

.cinema-frame__toggle:focus-visible {
  outline: 1px solid var(--gold-bright);
  outline-offset: 3px;
}

.lead-section {
  width: min(1780px, calc(100% - 48px));
  min-height: 0;
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  scroll-margin-top: 28px;
  border: 1px solid var(--line);
  background: #0d0e10;
}

.lead-section__intro {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  min-width: 0;
  padding: clamp(40px, 4vw, 68px);
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 86%, rgba(216, 173, 86, 0.14), transparent 27%),
    linear-gradient(145deg, #101113 0%, #0b0c0e 100%);
}

.lead-section__intro::after {
  position: absolute;
  right: -130px;
  bottom: -130px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(216, 173, 86, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 54px rgba(216, 173, 86, 0.035),
    0 0 0 108px rgba(216, 173, 86, 0.018);
  pointer-events: none;
}

.lead-section h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(48px, 4.45vw, 82px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.lead-section h2 span {
  color: var(--gold);
}

.lead-section__description {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.65;
}


.lead-section__form-panel {
  min-width: 0;
  padding: clamp(40px, 4vw, 68px);
  border-top: 2px solid var(--gold);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 24%),
    #111214;
}

.lead-form__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.lead-form__kicker {
  margin: 0 0 10px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.lead-form__header h3 {
  margin: 0;
  font-size: clamp(28px, 2.25vw, 40px);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.lead-form {
  display: flex;
  flex-direction: column;
}

.project-type {
  min-width: 0;
  margin: 0 0 34px;
  padding: 0;
  border: 0;
}

.project-type legend,
.form-field > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 11px;
  color: #b8b9bb;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-field em {
  color: #67686b;
  font-size: 9px;
  font-style: normal;
}

.project-type__options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.project-option {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.project-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.project-option span {
  display: grid;
  min-height: 48px;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  color: #8f9093;
  font-size: 12px;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.project-option:hover span {
  border-color: rgba(216, 173, 86, 0.45);
  color: var(--white);
  transform: translateY(-1px);
}

.project-option input:focus-visible + span {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.project-option input:checked + span {
  border-color: var(--gold-bright);
  background: rgba(216, 173, 86, 0.12);
  color: var(--gold-bright);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 15px;
  transition: border-color 220ms ease, background 220ms ease;
}

.form-field input,
.form-field select {
  height: 48px;
  padding: 0 2px;
}

.form-field textarea {
  min-height: 86px;
  padding: 13px 2px;
  resize: vertical;
  line-height: 1.5;
}

.form-field select {
  cursor: pointer;
}

.form-field option {
  background: #151618;
  color: var(--white);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #5f6063;
}

.form-field:focus-within > span {
  color: var(--gold-bright);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-bright);
  background: linear-gradient(180deg, transparent, rgba(216, 173, 86, 0.035));
}

.lead-form.was-validated :invalid:not(fieldset) {
  border-color: #c76b61;
}

.lead-form.was-validated .project-type:has(input:invalid) .project-option span {
  border-color: rgba(199, 107, 97, 0.55);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 26px 0;
  color: #85868a;
  font-size: 12px;
  line-height: 1.45;
  cursor: pointer;
}

.form-consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--gold-bright);
}

.form-submit {
  position: relative;
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 15px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 226, 155, 0.52);
  border-radius: 2px;
  background: linear-gradient(135deg, #cfa34c 0%, var(--gold-bright) 52%, #d6a84f 100%);
  box-shadow: 0 10px 28px rgba(216, 173, 86, 0.12);
  color: #08090a;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 260ms cubic-bezier(.2, .7, .2, 1), box-shadow 260ms ease;
}

.form-submit::before {
  position: absolute;
  inset: -2px;
  content: "";
  background: linear-gradient(108deg, transparent 25%, rgba(255, 255, 255, 0.55) 48%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 760ms cubic-bezier(.2, .7, .2, 1);
}

.form-submit > span {
  position: relative;
  z-index: 1;
}

.form-submit:hover,
.form-submit:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(216, 173, 86, 0.24);
}

.form-submit:hover::before,
.form-submit:focus-visible::before {
  transform: translateX(120%);
}

.form-submit:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.form-submit__icon {
  font-size: 21px;
  transition: transform 280ms cubic-bezier(.2, .7, .2, 1);
}

.form-submit:hover .form-submit__icon,
.form-submit:focus-visible .form-submit__icon {
  transform: translate(4px, -4px) rotate(4deg);
}

.form-submit.is-success {
  background: linear-gradient(135deg, #d8b762, #f1d289);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: #999a9d;
  font-size: 12px;
  line-height: 1.45;
}

.form-status.is-error {
  color: #e08b80;
}

.form-status.is-success {
  color: var(--gold-bright);
}

.proof-section {
  width: min(1780px, calc(100% - 48px));
  margin: 0 auto 96px;
  padding: clamp(58px, 6vw, 104px);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 0%, rgba(216, 173, 86, 0.12), transparent 27%),
    linear-gradient(145deg, #0e0f11 0%, #090a0b 74%);
}

.proof-section__header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: clamp(48px, 8vw, 130px);
  margin-bottom: clamp(50px, 5vw, 80px);
}

.proof-section h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(46px, 4.9vw, 88px);
  font-weight: 400;
  letter-spacing: -0.062em;
  line-height: 0.98;
}

.proof-section h2 span {
  color: var(--gold);
}

.proof-section__intro {
  max-width: 550px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.65;
}

.testimonial-carousel {
  --cards-visible: 3;
  --testimonial-gap: 18px;
  position: relative;
}

.testimonial-viewport {
  overflow: hidden;
  padding-top: 10px;
  margin-top: -10px;
}

.testimonial-track {
  display: flex;
  gap: var(--testimonial-gap);
  transition: transform 720ms cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.testimonial-card {
  position: relative;
  display: flex;
  min-width: calc((100% - (var(--testimonial-gap) * (var(--cards-visible) - 1))) / var(--cards-visible));
  flex: 0 0 calc((100% - (var(--testimonial-gap) * (var(--cards-visible) - 1))) / var(--cards-visible));
  min-height: 376px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 2.6vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  transition: border-color 260ms ease, background 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.testimonial-card::after {
  position: absolute;
  top: -74px;
  right: -74px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(216, 173, 86, 0.15);
  border-radius: 50%;
  content: "";
  transition: transform 500ms cubic-bezier(.2, .7, .2, 1);
}

.testimonial-card:hover {
  border-color: rgba(216, 173, 86, 0.42);
  background: linear-gradient(145deg, rgba(216, 173, 86, 0.075), rgba(255, 255, 255, 0.015));
  transform: translateY(-4px);
}

.testimonial-card:hover::after {
  transform: scale(1.2);
}

.testimonial-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.testimonial-card__top > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(216, 173, 86, 0.48);
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.testimonial-card__top p {
  margin: 0;
  color: #77787b;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin: 50px 0;
  color: #d7d6d2;
  font-size: clamp(18px, 1.35vw, 23px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.testimonial-card footer {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.testimonial-card footer strong,
.testimonial-card footer span {
  display: block;
}

.testimonial-card footer strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.testimonial-card footer span {
  margin-top: 5px;
  color: #707175;
  font-size: 11px;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
}

.testimonial-controls > p {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 115px;
  margin: 0;
  color: #78797c;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.testimonial-controls > p span:first-child {
  color: var(--gold-bright);
}

.testimonial-controls > p i {
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.testimonial-controls > div {
  display: flex;
  gap: 8px;
}

.testimonial-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 20px;
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease, transform 220ms ease;
}

.testimonial-controls button:hover,
.testimonial-controls button:focus-visible {
  border-color: var(--gold-bright);
  outline: none;
  background: var(--gold-bright);
  color: #090a0b;
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.whatsapp-float__label {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  background: rgba(9, 10, 11, 0.9);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.whatsapp-float__icon {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #20b95a;
  box-shadow: 0 11px 27px rgba(13, 118, 56, 0.38);
  transform: none;
  transition: transform 280ms cubic-bezier(.2, .7, .2, 1), box-shadow 280ms ease, background 280ms ease;
}

.whatsapp-float__icon img {
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.whatsapp-float__icon::after {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(37, 211, 102, 0.42);
  border-radius: 50%;
  content: "";
  animation: whatsapp-pulse 2.6s ease-out infinite;
}

.whatsapp-float:hover .whatsapp-float__label,
.whatsapp-float:focus-visible .whatsapp-float__label {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float:hover .whatsapp-float__icon,
.whatsapp-float:focus-visible .whatsapp-float__icon {
  background: #28c967;
  box-shadow: 0 14px 34px rgba(13, 118, 56, 0.5);
  transform: translateY(-2px) scale(1.04);
}

.whatsapp-float:focus-visible {
  outline: 0;
}

@keyframes whatsapp-pulse {
  0% { opacity: 0.72; transform: scale(0.9); }
  70%, 100% { opacity: 0; transform: scale(1.25); }
}

@media (max-width: 1080px) {
  .cinema-section {
    width: calc(100% - 28px);
    margin-bottom: 0;
    padding: 26px 34px 64px;
  }

  .cinema-frame {
    width: min(756px, 84%);
  }

  .cinema-section__cta {
    width: min(480px, 90%);
  }

  .lead-section {
    width: calc(100% - 28px);
    grid-template-columns: 0.82fr 1.18fr;
  }

  .lead-section__intro,
  .lead-section__form-panel {
    padding: 40px 34px;
  }

  .lead-section h2 {
    font-size: clamp(42px, 5.2vw, 58px);
  }

  .project-type__options {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-section {
    width: calc(100% - 28px);
    padding: 64px 34px;
  }

  .proof-section__header {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    gap: 48px;
  }

  .testimonial-carousel {
    --cards-visible: 2;
  }
}

@media (max-width: 1080px) {
  .hero {
    width: calc(100% - 28px);
    height: min(720px, calc(100svh - 64px));
    min-height: 640px;
    margin: 0 auto 32px;
    grid-template-columns: 1.25fr 0.75fr;
  }

  .hero__visual {
    min-height: 0;
  }

  .hero__content {
    padding: 34px 28px 26px;
  }

  h1 {
    font-size: clamp(42px, 5vw, 56px);
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 104px;
    display: block;
    padding: 0 8px 0 6px;
  }

  .site-logo {
    position: static;
    width: 204px;
    height: 58px;
  }

  .sales-contact {
    position: absolute;
    top: 58px;
    right: 8px;
    max-width: calc(100% - 16px);
    gap: 8px;
    padding: 8px 10px;
  }

  .sales-contact__icon {
    width: 27px;
    height: 27px;
    font-size: 13px;
  }

  .sales-contact__label {
    display: none;
  }

  .sales-contact__numbers {
    gap: 13px;
  }

  .sales-contact__numbers a {
    font-size: 10px;
  }

  .sales-contact__numbers a + a::before {
    left: -7px;
  }

  .hero {
    width: 100%;
    height: auto;
    min-height: 100svh;
    margin: 0;
    display: flex;
    flex-direction: column;
    border: 0;
  }

  .hero__visual {
    min-height: 54svh;
    order: 1;
  }

  .hero__content {
    min-height: 46svh;
    order: 2;
    padding: 32px 22px 26px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .cinema-section {
    width: 100%;
    margin: 0;
    padding: 34px 22px 48px;
  }

  .cinema-section h2 {
    font-size: clamp(32px, 8.4vw, 41px);
  }

  .cinema-frame {
    width: 90%;
    margin-top: 22px;
  }

  .cinema-section__cta {
    width: 100%;
    margin-top: 48px;
  }

  .cinema-frame__caption {
    bottom: 17px;
    left: 16px;
    max-width: calc(100% - 120px);
    font-size: 8px;
    line-height: 1.45;
  }

  .cinema-frame__caption span {
    display: block;
    margin: 0 0 4px;
  }

  .cinema-frame__toggle {
    right: 10px;
    bottom: 10px;
  }

  .hero__copy {
    margin: 0;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  h1 {
    max-width: 500px;
    font-size: clamp(42px, 12vw, 56px);
  }

  .hero__intro {
    margin-top: 22px;
    font-size: 16px;
  }

  .gallery-controls {
    margin-top: 36px;
  }

  .thumbnails {
    display: flex;
    gap: 8px;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .thumbnails::-webkit-scrollbar {
    display: none;
  }

  .thumbnail {
    width: 76px;
    min-width: 76px;
  }

}

@media (max-width: 760px) {
  .lead-section {
    width: 100%;
    min-height: auto;
    margin: 0;
    display: block;
    scroll-margin-top: 0;
    border-right: 0;
    border-left: 0;
  }

  .lead-section__intro {
    gap: 0;
    padding: 48px 22px 42px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .lead-section__form-panel {
    padding: 42px 22px 48px;
  }

  .lead-section h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .lead-section__description {
    margin-top: 22px;
    font-size: 16px;
  }

  .lead-form__header {
    align-items: flex-start;
    margin-bottom: 28px;
  }


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

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

  .proof-section {
    width: 100%;
    margin: 0;
    padding: 64px 22px 86px;
    border-right: 0;
    border-left: 0;
  }

  .proof-section__header {
    display: block;
    margin-bottom: 42px;
  }

  .proof-section h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .proof-section__intro {
    margin-top: 24px;
    font-size: 15px;
  }

  .testimonial-carousel {
    --cards-visible: 1;
  }

  .testimonial-card {
    min-height: 360px;
    padding: 28px;
  }

  .testimonial-card blockquote {
    font-size: 19px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float__label {
    display: none;
  }

  .whatsapp-float__icon {
    width: 45px;
    height: 45px;
  }
}

@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;
  }
}


/* Estrutura narrativa de nove seções */
.benefits-section,
.about-section,
.comparison-section,
.faq-section {
  width: min(1780px, calc(100% - 48px));
  margin: 0 auto 96px;
  padding: clamp(56px, 5vw, 88px);
  border: 1px solid var(--line);
  background: #0d0e10;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(48px, 7vw, 128px);
  align-items: end;
  margin-bottom: clamp(44px, 5vw, 76px);
}

.section-heading h2,
.faq-content h2 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(42px, 4.1vw, 74px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-heading h2 span,
.faq-content h2 span {
  color: var(--gold);
}

.section-heading__copy {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.7;
}

.benefits-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(216, 173, 86, 0.08), transparent 28%),
    #0d0e10;
}

.benefits-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  gap: 18px;
}

.benefits-section .cinema-frame {
  width: 100%;
  height: 100%;
  min-height: 520px;
  margin: 0;
  aspect-ratio: auto;
}

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

.benefit-card {
  min-height: 250px;
  padding: clamp(24px, 2.5vw, 40px);
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.025), transparent 72%);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.benefit-card:hover {
  border-color: rgba(216, 173, 86, 0.45);
  background: rgba(216, 173, 86, 0.045);
  transform: translateY(-3px);
}


.benefit-card h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.transition-strip {
  width: min(1780px, calc(100% - 48px));
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: clamp(28px, 4vw, 68px);
  align-items: center;
  padding: clamp(32px, 3.5vw, 54px) clamp(34px, 5vw, 86px);
  border: 1px solid rgba(216, 173, 86, 0.38);
  background:
    linear-gradient(90deg, rgba(216, 173, 86, 0.095), transparent 40%),
    #111214;
}

.transition-strip--reverse {
  background:
    linear-gradient(270deg, rgba(216, 173, 86, 0.095), transparent 40%),
    #111214;
}

.transition-strip__label {
  margin: 0;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.17em;
}

.transition-strip h2 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(26px, 2.7vw, 46px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.transition-strip h2 span {
  color: var(--gold);
}

.transition-strip a,
.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 200ms ease, transform 200ms ease;
}

.transition-strip a:hover,
.transition-strip a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--gold-bright);
  outline: 0;
  transform: translateX(3px);
}

.about-section {
  background:
    radial-gradient(circle at 8% 92%, rgba(216, 173, 86, 0.07), transparent 25%),
    #0d0e10;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  min-height: 600px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
}

.about-story__image {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.about-story__image img,
.service-card img,
.reach-panel img,
.faq-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2, .7, .2, 1);
}

.about-story:hover .about-story__image img,
.service-card:hover img,
.faq-visual:hover img {
  transform: scale(1.025);
}

.about-story__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 4.5vw, 76px);
  border-left: 1px solid var(--line);
  background: #111214;
}

.about-story__index {
  margin: 0 0 38px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.about-story__content h3,
.reach-panel h3 {
  margin: 0;
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.about-story__content > p:not(.about-story__index),
.reach-panel > div > p:not(.eyebrow) {
  margin: 26px 0 34px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.service-card {
  display: grid;
  grid-template-rows: minmax(210px, 0.9fr) auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111214;
}

.service-card > div {
  padding: 28px 30px 32px;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.reach-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  min-height: 430px;
  border: 1px solid var(--line);
  background: #111214;
}

.reach-panel > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 4.5vw, 76px);
}

.reach-panel img {
  border-left: 1px solid var(--line);
}

.comparison-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 173, 86, 0.065), transparent 32%),
    #0d0e10;
}

.section-heading--centered {
  display: block;
  max-width: 1050px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--centered h2 {
  margin-right: auto;
  margin-left: auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
}

.comparison-card {
  padding: clamp(36px, 4vw, 62px);
  border: 1px solid var(--line);
  background: #111214;
}

.comparison-card--astro {
  border-color: rgba(216, 173, 86, 0.48);
  background: linear-gradient(145deg, rgba(216, 173, 86, 0.075), #111214 58%);
}

.comparison-card--common {
  background: linear-gradient(145deg, rgba(199, 107, 97, 0.035), #101113 58%);
}

.comparison-card__eyebrow {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.comparison-card--common .comparison-card__eyebrow {
  color: #c98177;
}

.comparison-card h3 {
  margin: 0 0 38px;
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 400;
  letter-spacing: -0.045em;
}

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

.comparison-card li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.comparison-card li > span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(216, 173, 86, 0.45);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 12px;
}

.comparison-card--common li > span {
  border-color: rgba(199, 107, 97, 0.38);
  color: #c98177;
}

.comparison-card li p {
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.comparison-card li strong {
  color: var(--white);
  font-weight: 600;
}

.section-cta,
.final-cta a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(760px, 100%);
  min-height: 62px;
  margin: 42px auto 0;
  padding: 16px 22px;
  border: 1px solid rgba(255, 226, 155, 0.52);
  background: linear-gradient(135deg, #cfa34c, var(--gold-bright) 52%, #d6a84f);
  color: #08090a;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.section-cta:hover,
.section-cta:focus-visible,
.final-cta a:hover,
.final-cta a:focus-visible {
  outline: 0;
  box-shadow: 0 14px 34px rgba(216, 173, 86, 0.2);
  transform: translateY(-2px);
}

.faq-section {
  margin-bottom: 48px;
  background: #0d0e10;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.faq-visual {
  position: sticky;
  top: 24px;
  min-height: 660px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
}

.faq-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(9, 10, 11, 0.92));
  pointer-events: none;
}

.faq-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 28px;
  left: 30px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.faq-visual figcaption span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-bright);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.faq-content h2 {
  margin-bottom: 42px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 4px;
  color: var(--gold-bright);
  content: "+";
  font-size: 22px;
  font-weight: 300;
  transition: transform 220ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  margin: -6px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 56px;
  align-items: center;
  margin-top: clamp(56px, 7vw, 108px);
  padding-top: clamp(44px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.final-cta h3 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(34px, 3.5vw, 60px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.final-cta a {
  width: 100%;
  margin: 0;
}

@media (max-width: 1080px) {
  .benefits-section,
  .about-section,
  .comparison-section,
  .faq-section,
  .transition-strip {
    width: calc(100% - 28px);
  }

  .benefits-section,
  .about-section,
  .comparison-section,
  .faq-section {
    padding: 54px 34px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefits-showcase,
  .about-story,
  .reach-panel,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .benefits-section .cinema-frame {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .about-story__image,
  .reach-panel img {
    min-height: 420px;
  }

  .about-story__content,
  .reach-panel img {
    border-left: 0;
  }

  .about-story__content {
    border-top: 1px solid var(--line);
  }

  .reach-panel img {
    border-top: 1px solid var(--line);
  }

  .transition-strip {
    grid-template-columns: 110px 1fr;
  }

  .transition-strip a {
    grid-column: 2;
  }

  .faq-visual {
    position: relative;
    top: auto;
    min-height: 460px;
  }

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

@media (max-width: 760px) {
  .benefits-section,
  .about-section,
  .comparison-section,
  .faq-section,
  .transition-strip {
    width: 100%;
    margin: 0;
    border-right: 0;
    border-left: 0;
  }

  .benefits-section,
  .about-section,
  .comparison-section,
  .faq-section {
    padding: 64px 22px;
  }

  .section-heading h2,
  .faq-content h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .benefits-grid,
  .services-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 220px;
  }

  .transition-strip {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 42px 22px;
  }

  .transition-strip a {
    grid-column: auto;
  }

  .about-story {
    min-height: 0;
  }

  .about-story__image,
  .reach-panel img {
    min-height: 300px;
  }

  .about-story__content,
  .reach-panel > div,
  .comparison-card {
    padding: 34px 24px;
  }

  .service-card {
    grid-template-rows: 220px auto;
  }

  .reach-panel {
    min-height: 0;
  }

  .faq-visual {
    min-height: 360px;
  }

  .faq-list summary {
    font-size: 15px;
  }

  .final-cta {
    gap: 34px;
  }
}


/* Interação aprimorada dos depoimentos */
.testimonial-viewport {
  cursor: grab;
  touch-action: pan-y;
}

.testimonial-viewport:active {
  cursor: grabbing;
}

.testimonial-carousel:focus-visible {
  outline: none;
}

.testimonial-carousel:focus-visible .testimonial-viewport {
  outline: 1px solid rgba(239, 198, 108, 0.8);
  outline-offset: 5px;
}

.testimonial-controls > p {
  min-width: 150px;
}

.testimonial-controls > p i {
  position: relative;
  width: 68px;
  overflow: hidden;
}

.testimonial-controls > p i::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--testimonial-progress, 23%);
  background: var(--gold-bright);
  content: "";
  transition: width 520ms cubic-bezier(.22, .61, .36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track,
  .testimonial-controls > p i::after {
    transition: none;
  }
}

    

/* Lista de regiões atendidas para entrega de esteiras */
.delivery-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.delivery-list li {
  position: relative;
  padding-left: 18px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.45;
}

.delivery-list li::before {
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-bright);
  content: "";
}

@media (max-width: 560px) {
  .delivery-list { grid-template-columns: 1fr; }
}

  

/* Provas de fabricação própria */
.factory-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0 30px;
  border: 1px solid var(--line);
  background: var(--line);
}

.factory-proof p {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 18px;
  background: #111214;
}

.factory-proof strong {
  color: var(--gold-bright);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.factory-proof span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 560px) {
  .factory-proof { grid-template-columns: 1fr; }
}

  

/* Ajuste de entrelinha do título principal */
.hero__copy h1 {
  line-height: 1.06;
}

  

/* Mapa das regiões atendidas */
.reach-panel img.reach-panel__map {
  object-fit: contain;
  object-position: center;
  padding: clamp(26px, 3vw, 52px);
  background:
    radial-gradient(circle at 50% 48%, rgba(216, 173, 86, 0.08), transparent 58%),
    #0b0c0d;
}

@media (max-width: 760px) {
  .reach-panel img.reach-panel__map {
    padding: 24px 16px;
  }
}

  

/* Vídeo vertical da esteira no FAQ */
.faq-visual__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #090a0b;
}

.faq-video-toggle {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(9, 10, 11, 0.72);
  color: var(--white);
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.faq-video-toggle:hover,
.faq-video-toggle:focus-visible {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.faq-video-toggle:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

@media (max-width: 560px) {
  .faq-video-toggle {
    top: 12px;
    right: 12px;
  }
}

  

/* Mapa estático conectado às regiões atendidas */
.reach-panel--connected {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 64%, rgba(216, 173, 86, 0.08), transparent 42%),
    #0d0e10;
}

.reach-panel--connected > .reach-panel__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(24px, 4vw, 72px);
  padding: clamp(28px, 3vw, 46px);
  border-bottom: 1px solid var(--line);
}

.reach-panel--connected .reach-panel__intro > div {
  display: block;
  padding: 0;
}

.reach-panel--connected .reach-panel__intro h3 {
  max-width: 680px;
  font-size: clamp(28px, 2.4vw, 40px);
}

.reach-panel--connected .reach-panel__intro > p:not(.eyebrow) {
  max-width: 440px;
  margin: 0;
}

.reach-panel--connected > .reach-panel__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: clamp(34px, 4vw, 72px);
  min-height: clamp(430px, 32vw, 520px);
  padding: clamp(28px, 3.2vw, 52px);
  isolation: isolate;
}

.map-board {
  position: relative;
  width: 100%;
  max-width: 860px;
  aspect-ratio: 3 / 2;
  justify-self: start;
}

.reach-panel--connected .map-board > img.delivery-map-static {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.28));
}

.map-connectors {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-connectors polyline {
  fill: none;
  stroke: rgba(226, 183, 91, 0.58);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.map-connectors circle {
  fill: var(--gold-bright);
  stroke: rgba(10, 11, 12, 0.88);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.map-location-labels {
  position: absolute;
  z-index: 3;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

.map-location-label {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px 7px 24px;
  border: 1px solid rgba(216, 173, 86, 0.32);
  background: rgba(10, 11, 12, 0.86);
  color: var(--white);
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.map-location-label::before {
  position: absolute;
  left: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 4px rgba(216, 173, 86, 0.12);
  content: "";
}

.map-location-label strong { font-weight: 500; }

.map-location-label span {
  color: var(--gold-bright);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.map-location-label--belem { top: 4%; left: 43%; }
.map-location-label--maranhao { top: 27%; left: 60%; }
.map-location-label--ceara { top: 12%; left: 68%; }
.map-location-label--rn { top: 35%; left: 67%; }
.map-location-label--rio { top: 54%; left: 79%; }
.map-location-label--saopaulo { top: 75%; left: 68%; }
.map-location-label--campinas { top: 64%; left: 43%; }

.delivery-conversion {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 410px;
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid rgba(216, 173, 86, 0.28);
  background:
    linear-gradient(145deg, rgba(216, 173, 86, 0.08), transparent 52%),
    rgba(16, 17, 19, 0.84);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
}

.delivery-conversion::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 48%;
  height: 2px;
  background: var(--gold-bright);
  content: "";
}

.delivery-conversion .eyebrow {
  margin-bottom: 20px;
}

.delivery-conversion h4 {
  max-width: 340px;
  margin: 0 0 18px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(27px, 2.1vw, 38px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.delivery-conversion > p:not(.eyebrow) {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.delivery-conversion__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 0 20px;
  background: var(--gold-bright);
  color: #0b0c0d;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.delivery-conversion__cta span:last-child {
  font-size: 21px;
  line-height: 1;
}

.delivery-conversion__cta:hover,
.delivery-conversion__cta:focus-visible {
  background: #f1ca73;
  transform: translateY(-2px);
}

.delivery-conversion small {
  margin-top: 14px;
  color: rgba(245, 244, 241, 0.48);
  font-size: 11px;
  letter-spacing: 0.04em;
}

@media (max-width: 980px) {
  .reach-panel--connected > .reach-panel__intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .reach-panel--connected > .reach-panel__stage {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 28px;
  }

  .map-board {
    width: 720px;
    max-width: 100%;
    justify-self: center;
  }

  .delivery-conversion {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 680px) {
  .reach-panel--connected > .reach-panel__intro { padding: 28px 24px; }

  .reach-panel--connected > .reach-panel__stage {
    display: block;
    min-height: 0;
    padding: 12px 18px 24px;
  }

  .map-board {
    position: relative;
    width: 100%;
    aspect-ratio: auto;
  }

  .reach-panel--connected .map-board > img.delivery-map-static {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .map-connectors { display: none; }

  .map-location-labels {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .map-location-label {
    position: relative;
    inset: auto;
    width: 100%;
    white-space: normal;
  }

  .delivery-conversion {
    margin-top: 22px;
    padding: 26px 22px;
  }

  .delivery-conversion h4 {
    font-size: 29px;
  }
}

@media (max-width: 430px) {
  .map-location-labels { grid-template-columns: 1fr; }
}
