:root {
  --color-ink: #1d1d1f;
  --color-graphite: #707070;
  --color-slate: #474747;
  --color-fog: #f5f5f7;
  --color-snow: #ffffff;
  --color-obsidian: #000000;
  --color-azure: #0071e3;
  --color-cobalt: #0066cc;
  --color-silver: #e8e8ed;
  --color-frost: rgba(210, 210, 215, 0.64);
  --color-cylinder: #dc4a26;
  --color-midnight: #020b14;
  --color-deep-blue: #031426;
  --color-route-blue: #22b8ff;
  --color-copy-soft: #d7e0ea;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Arial, sans-serif;
  --font-text: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Arial, sans-serif;
  --page-max: 1200px;
  --radius-card: 28px;
  --radius-pill: 999px;
  --header-h: 52px;
  --motion-short: 160ms;
  --motion-medium: 520ms;
  --motion-slow: 1100ms;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

#produtos,
#bairros,
#horarios,
#faq {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-fog);
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: 0;
}

body::selection {
  color: var(--color-snow);
  background: var(--color-azure);
}

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

img,
picture {
  display: block;
}

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: var(--header-h);
  max-width: none;
  margin: 0;
  padding: 12px max(24px, calc((100vw - var(--page-max)) / 2 + 24px));
  color: var(--color-snow);
  background: rgba(2, 11, 20, 0.84);
  border-bottom: 1px solid rgba(34, 184, 255, 0.2);
  border-radius: 0;
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  overflow: hidden;
  color: var(--color-snow);
  background: rgba(2, 11, 20, 0.92);
  border: 1px solid rgba(34, 184, 255, 0.72);
  border-radius: var(--radius-pill);
  place-items: center;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 0 24px rgba(34, 184, 255, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.08;
}

.brand strong {
  color: var(--color-snow);
  font-size: 15px;
  font-weight: 700;
}

.brand small {
  color: rgba(215, 224, 234, 0.78);
  font-size: 12px;
}

.site-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.site-nav a,
.phone-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 400;
}

.site-nav a:hover,
.phone-link:hover {
  color: var(--color-snow);
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.phone-link {
  white-space: nowrap;
}

.button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 9px 18px 10px;
  border: 0;
  border-radius: var(--radius-pill);
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition:
    background-color var(--motion-short) ease,
    color var(--motion-short) ease,
    transform var(--motion-short) var(--ease-premium),
    filter var(--motion-short) ease,
    box-shadow var(--motion-short) ease,
    border-color var(--motion-short) ease;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.button:hover {
  filter: saturate(1.06);
  transform: translateY(-2px);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.button:focus-visible,
.site-nav a:focus-visible,
.phone-link:focus-visible,
.mobile-sticky a:focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.35);
  outline-offset: 3px;
}

.button-small {
  min-height: 32px;
  padding: 7px 14px 8px;
  font-size: 14px;
}

.button-accent {
  color: var(--color-snow);
  background: linear-gradient(180deg, #108cff 0%, #007bff 100%);
  box-shadow:
    0 12px 32px rgba(0, 123, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-dark {
  color: var(--color-snow);
  background: rgba(3, 18, 34, 0.72);
  border: 1px solid rgba(34, 184, 255, 0.75);
  box-shadow:
    0 10px 30px rgba(34, 184, 255, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.button-light {
  color: var(--color-ink);
  background: var(--color-snow);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button-accent:hover {
  background: linear-gradient(180deg, #22a0ff 0%, #0a84ff 100%);
  box-shadow:
    0 16px 38px rgba(0, 123, 255, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button-dark:hover {
  border-color: rgba(34, 184, 255, 0.98);
  box-shadow:
    0 14px 34px rgba(34, 184, 255, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.button-light:hover {
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.ui-icon {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  color: currentColor;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 38%),
    rgba(255, 255, 255, 0.08);
  border: 1.4px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-pill);
  place-items: center;
  overflow: visible;
  line-height: 0;
  box-shadow:
    inset 0 0 0 1px rgba(34, 184, 255, 0.16),
    0 0 18px rgba(34, 184, 255, 0.18);
}

.ui-icon::before {
  content: "";
  display: block;
  color: currentColor;
}

.icon-location::before,
.icon-pin::before {
  content: "";
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 0 4px rgba(34, 184, 255, 0.18);
}

.icon-phone::before {
  width: 11px;
  height: 11px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 0 0 9px 0;
  transform: rotate(12deg) translate(-0.5px, -0.5px);
}

.icon-phone::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 2px;
  right: 6px;
  bottom: 6px;
  background: currentColor;
  border-radius: 2px;
  transform: rotate(32deg);
}

.icon-message::before {
  width: 11px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 50%;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 68% 76%, 54% 100%, 50% 76%, 0 76%);
}

.icon-message::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: translateY(-0.5px);
}

.icon-cylinder::before {
  content: "";
  width: 8px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 4px 4px 3px 3px;
}

.icon-drop::before {
  content: "";
  width: 8px;
  height: 10px;
  background: currentColor;
  border-radius: 8px 8px 8px 2px;
  transform: rotate(45deg);
}

.icon-clock::before {
  content: "21";
  font-size: 9px;
}

.floating-cylinder {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 16;
  width: min(34vw, 390px);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -45%, 0) scale(0.82);
  transform-origin: center;
  transition: transform var(--motion-medium) var(--ease-premium), opacity var(--motion-medium) ease, filter var(--motion-medium) ease;
  will-change: transform, opacity;
}

.floating-cylinder img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  filter: drop-shadow(0 28px 24px rgba(29, 29, 31, 0.16));
}

body.cylinder-hero .floating-cylinder {
  opacity: 0;
  transform: translate3d(-50%, -32%, 0) scale(0.72);
}

body.cylinder-products .floating-cylinder {
  opacity: 0.72;
  transform: translate3d(-38vw, -12%, 0) scale(0.22);
}

body.cylinder-cross .floating-cylinder {
  opacity: 0.9;
  transform: translate3d(19vw, -2%, 0) scale(0.36) rotate(-1deg);
}

body.cylinder-area .floating-cylinder {
  opacity: 0.32;
  transform: translate3d(26vw, -4%, 0) scale(0.24) rotate(1deg);
}

body.cylinder-trust .floating-cylinder {
  opacity: 0.82;
  transform: translate3d(-35vw, -5%, 0) scale(0.22);
}

body.cylinder-final .floating-cylinder {
  opacity: 0;
  transform: translate3d(-50%, 12%, 0) scale(0.26);
}

main {
  overflow: clip;
}

.hero {
  position: relative;
  min-height: clamp(760px, calc(100svh - var(--header-h)), 900px);
  display: grid;
  grid-template-columns: minmax(0, 5.6fr) minmax(320px, 6.4fr);
  gap: 40px;
  align-items: center;
  max-width: none;
  margin: 0 0 28px;
  padding: 124px max(24px, calc((100vw - var(--page-max)) / 2 + 24px)) 86px;
  background:
    radial-gradient(circle at 78% 70%, rgba(34, 184, 255, 0.22) 0%, rgba(34, 184, 255, 0) 31%),
    linear-gradient(90deg, rgba(2, 8, 16, 0.96) 0%, rgba(2, 8, 16, 0.82) 38%, rgba(2, 8, 16, 0.45) 65%, rgba(2, 8, 16, 0.15) 100%),
    linear-gradient(180deg, rgba(2, 8, 16, 0.1) 0%, rgba(2, 8, 16, 0.3) 60%, rgba(2, 8, 16, 0.85) 100%),
    url("assets/hero-mobile-map.webp") center right / cover no-repeat;
  border-radius: 0 0 34px 34px;
  text-align: left;
  isolation: isolate;
  overflow: hidden;
}

.hero-media-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  opacity: 0.82;
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.02) brightness(0.82);
}

.hero-media-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 11, 20, 0.48) 0%, rgba(2, 11, 20, 0.18) 24%, rgba(2, 11, 20, 0.4) 68%, rgba(2, 11, 20, 0.74) 100%),
    linear-gradient(90deg, rgba(2, 11, 20, 0.62) 0%, rgba(2, 11, 20, 0.24) 54%, rgba(2, 11, 20, 0.04) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 0;
  grid-column: 1;
}

.hero-top,
.hero-bottom {
  display: grid;
}

.hero-top {
  gap: 0;
}

.hero-bottom {
  gap: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--color-slate);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
}

.hero h1,
.section h2,
.final-cta h2,
.cross-copy h2,
.schedule-section h2,
.payment-section h2 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 610px;
  margin: 0;
  color: var(--color-snow);
  font-size: clamp(64px, 6.2vw, 88px);
  font-weight: 900;
  line-height: 0.98;
}

.hero-headline-primary,
.hero-headline-secondary {
  display: block;
}

.hero-headline-secondary {
  display: inline;
  max-width: 8.5ch;
}

.hero-glitch {
  position: relative;
  display: inline-block;
  color: var(--color-snow);
}

.hero-glitch::before,
.hero-glitch::after {
  position: absolute;
  inset: 0;
  overflow: hidden;
  color: var(--color-snow);
  content: attr(data-text);
  opacity: 0;
  pointer-events: none;
}

.hero-glitch::before {
  text-shadow: 1px 0 rgba(0, 113, 227, 0.42);
}

.hero-glitch::after {
  text-shadow: -1px 0 rgba(220, 74, 38, 0.34);
}

.hero-glitch:hover::before,
.hero-glitch:hover::after,
body.motion-ready .hero-glitch::before,
body.motion-ready .hero-glitch::after {
  animation: glitch-nudge 680ms steps(2, end) 1;
}

.lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--color-copy-soft);
  font-size: 20px;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  max-width: 620px;
  margin: 26px 0 0;
}

.hero-proof span,
.pill,
.product-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  color: var(--color-ink);
  background: var(--color-frost);
  border: 0;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(20px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: 24px;
  padding: 10px 15px 10px 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(4, 18, 34, 0.7);
  border: 1px solid rgba(34, 184, 255, 0.48);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.hero-eyebrow .ui-icon {
  color: var(--color-route-blue);
}

.hero-primary-cta,
.hero-secondary-cta {
  min-height: 60px;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 800;
}

.hero-primary-cta {
  background: linear-gradient(180deg, #108cff 0%, #007bff 100%);
  box-shadow: 0 12px 32px rgba(0, 123, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-primary-cta:hover {
  background: linear-gradient(180deg, #22a0ff 0%, #0a84ff 100%);
  box-shadow: 0 16px 38px rgba(0, 123, 255, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero-secondary-cta {
  color: var(--color-snow);
  background: rgba(3, 18, 34, 0.72);
  border: 1px solid rgba(34, 184, 255, 0.75);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.hero-secondary-cta:hover {
  border-color: rgba(34, 184, 255, 0.98);
  box-shadow: 0 10px 30px rgba(34, 184, 255, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero-proof span {
  min-height: 46px;
  padding: 12px 16px 12px 12px;
  color: var(--color-snow);
  background: rgba(4, 18, 34, 0.68);
  border: 1px solid rgba(0, 132, 255, 0.55);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.hero-proof .ui-icon {
  color: var(--color-route-blue);
}

.hero-media {
  position: relative;
  z-index: 1;
  width: min(31vw, 352px);
  justify-self: center;
  margin: 0;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  filter: drop-shadow(0 20px 20px rgba(29, 29, 31, 0.12));
}

.circular-badge {
  position: absolute;
  top: -20px;
  right: -22px;
  z-index: 2;
  display: grid;
  width: 116px;
  height: 116px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(232, 232, 237, 0.92);
  border-radius: var(--radius-pill);
  place-items: center;
  backdrop-filter: blur(18px);
}

.circular-badge span {
  display: block;
  width: 92px;
  color: var(--color-slate);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  animation: rotate-badge 18s linear infinite;
}

.urgency-band,
.cross-sell,
.payment-section,
.final-cta {
  max-width: var(--page-max);
  margin: 0 auto;
  border-radius: var(--radius-card);
}

.urgency-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px;
  color: var(--color-snow);
  background:
    radial-gradient(circle at 50% 42%, rgba(34, 184, 255, 0.18), rgba(34, 184, 255, 0) 32%),
    radial-gradient(circle at 84% 72%, rgba(255, 140, 0, 0.12), rgba(255, 140, 0, 0) 28%),
    linear-gradient(180deg, #020b14 0%, #031426 48%, #020b14 100%);
}

.urgency-band h2 {
  margin: 0;
  color: var(--color-snow);
  font-size: 32px;
  line-height: 1.08;
}

.urgency-band .eyebrow,
.cross-copy .eyebrow,
.payment-section .eyebrow,
.final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.urgency-band p,
.cross-copy p,
.payment-section p,
.final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.urgency-band p {
  margin: 0;
}

.section {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 80px 24px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading h2,
.schedule-section h2,
.payment-section h2,
.cross-copy h2 {
  font-size: 56px;
  line-height: 1.07;
}

.section-heading p,
.schedule-section p,
.payment-section p,
.cross-copy p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--color-graphite);
  font-size: 20px;
  line-height: 1.4;
}

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

.product-card,
.area-grid article,
.notice-row,
.schedule-card,
.trust-grid article,
details {
  overflow: hidden;
  background: var(--color-snow);
  border: 0;
  border-radius: var(--radius-card);
  box-shadow: none;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-featured {
  grid-column: span 2;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1fr);
  grid-template-rows: auto;
}

.product-card picture {
  display: grid;
  min-height: 320px;
  background: var(--color-fog);
  place-items: center;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: contain;
  padding: 18px;
  transition: transform var(--motion-medium) var(--ease-premium), filter var(--motion-medium) ease;
  will-change: transform;
}

.product-card:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.025);
}

.product-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.product-card h3 {
  margin: 22px 0 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.product-card p {
  margin: 18px 0 0;
  color: var(--color-graphite);
}

.product-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.consult-note,
.compact-list li {
  color: var(--color-ink) !important;
}

.compact-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.compact-list li {
  position: relative;
  padding-left: 18px;
}

.compact-list li::before {
  position: absolute;
  left: 0;
  color: var(--color-cobalt);
  content: "+";
  font-weight: 700;
}

.product-card .button {
  margin-top: auto;
}

.product-section {
  position: relative;
  max-width: none;
  padding: 104px max(20px, calc((100vw - var(--page-max)) / 2 + 24px));
  color: var(--color-snow);
  background:
    radial-gradient(circle at 50% 42%, rgba(34, 184, 255, 0.18), rgba(34, 184, 255, 0) 32%),
    radial-gradient(circle at 84% 72%, rgba(255, 140, 0, 0.12), rgba(255, 140, 0, 0) 28%),
    linear-gradient(180deg, #020b14 0%, #031426 48%, #020b14 100%);
  overflow: hidden;
}

.product-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(34, 184, 255, 0) 12%, rgba(34, 184, 255, 0.12) 50%, rgba(34, 184, 255, 0) 82%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 72px);
  content: "";
  opacity: 0.35;
}

.product-section .section-heading {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin-bottom: 54px;
}

.product-section .section-heading .eyebrow {
  color: rgba(34, 184, 255, 0.92);
}

.product-section .section-heading h2 {
  color: var(--color-snow);
}

.product-section .section-heading p {
  color: rgba(215, 224, 234, 0.78);
}

.product-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.carousel-viewport {
  position: relative;
  margin: 0 -24px;
  overflow: hidden;
  touch-action: pan-y;
}

.carousel-track {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(390px, 58vw, 640px);
  outline: none;
  cursor: grab;
  user-select: none;
}

.carousel-track.is-dragging {
  cursor: grabbing;
}

.carousel-slide {
  position: absolute;
  left: 50%;
  width: min(72vw, 470px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(3, 18, 34, 0.82);
  border: 1px solid rgba(34, 184, 255, 0.18);
  border-radius: 30px;
  opacity: 0;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 30px rgba(34, 184, 255, 0.08);
  transform: translateX(-50%) translateY(18px) scale(0.88);
  transition: transform 720ms var(--ease-premium), opacity 520ms ease, filter 520ms ease, box-shadow 720ms ease;
  will-change: transform, opacity;
}

.carousel-slide::before,
.carousel-slide::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.carousel-slide::before {
  z-index: 1;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.22) 42%, transparent 58%);
  opacity: 0;
  transform: translateX(-120%);
}

.carousel-slide::after {
  background: radial-gradient(circle at 50% 76%, rgba(34, 184, 255, 0.26), transparent 42%);
  opacity: 0.65;
}

.carousel-slide picture,
.carousel-slide img {
  width: 100%;
  height: 100%;
}

.carousel-slide img {
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 820ms var(--ease-premium), filter 520ms ease;
  -webkit-user-drag: none;
}

.carousel-slide.is-active {
  z-index: 4;
  opacity: 1;
  filter: none;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 42px rgba(34, 184, 255, 0.22);
  transform: translateX(-50%) translateY(0) scale(1);
  animation: carousel-glow 3.6s ease-in-out infinite;
}

.carousel-slide.is-active::before {
  animation: carousel-sweep 900ms var(--ease-premium) 1;
}

.carousel-slide.is-active img {
  transform: scale(1);
}

.carousel-slide.is-prev {
  z-index: 2;
  opacity: 0.58;
  filter: blur(1px) saturate(0.88);
  transform: translateX(calc(-50% - min(42vw, 360px))) translateY(18px) scale(0.92);
}

.carousel-slide.is-next {
  z-index: 2;
  opacity: 0.58;
  filter: blur(1px) saturate(0.88);
  transform: translateX(calc(-50% + min(42vw, 360px))) translateY(18px) scale(0.92);
}

.carousel-slide.is-far {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.carousel-content {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 24px;
  color: var(--color-snow);
  background: rgba(3, 18, 34, 0.74);
  border: 1px solid rgba(34, 184, 255, 0.24);
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.carousel-content.is-changing {
  animation: product-content-in 360ms var(--ease-premium) 1;
}

.carousel-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(34, 184, 255, 0.38);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.carousel-count {
  margin: 0 0 6px;
  color: rgba(34, 184, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
}

.carousel-content h3 {
  margin: 0;
  color: var(--color-snow);
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1;
  text-transform: uppercase;
}

.carousel-content p:last-child {
  max-width: 620px;
  margin: 10px 0 0;
  color: rgba(215, 224, 234, 0.78);
  font-size: 18px;
  line-height: 1.38;
}

.carousel-cta {
  min-height: 52px;
  padding-inline: 22px;
  white-space: nowrap;
  box-shadow: 0 12px 32px rgba(0, 123, 255, 0.3);
}

.carousel-controls {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.carousel-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  color: var(--color-snow);
  background: rgba(3, 18, 34, 0.78);
  border: 1px solid rgba(34, 184, 255, 0.42);
  border-radius: var(--radius-pill);
  place-items: center;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  transition: transform var(--motion-short) var(--ease-premium), border-color var(--motion-short) ease, box-shadow var(--motion-short) ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  border-color: rgba(34, 184, 255, 0.9);
  box-shadow: 0 0 24px rgba(34, 184, 255, 0.24);
  outline: none;
  transform: translateY(-1px);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: width var(--motion-short) var(--ease-premium), background-color var(--motion-short) ease;
}

.carousel-dot.is-active {
  width: 32px;
  background: var(--color-route-blue);
}

.carousel-progress {
  position: relative;
  max-width: 320px;
  height: 3px;
  margin: -10px auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
}

.carousel-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #007bff, #22b8ff);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
}

.product-showcase.is-playing .carousel-progress span {
  animation: carousel-progress 5s linear forwards;
}

.cross-sell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 44px;
  align-items: center;
  padding: 44px;
  color: var(--color-snow);
  background: var(--color-obsidian);
}

.payment-section {
  color: var(--color-snow);
  background:
    radial-gradient(circle at 50% 42%, rgba(34, 184, 255, 0.18), rgba(34, 184, 255, 0) 32%),
    radial-gradient(circle at 84% 72%, rgba(255, 140, 0, 0.12), rgba(255, 140, 0, 0) 28%),
    linear-gradient(180deg, #020b14 0%, #031426 48%, #020b14 100%);
}

.cross-copy h2,
.payment-section h2,
.final-cta h2 {
  color: var(--color-snow);
}

.cross-copy .button,
.payment-section .button {
  margin-top: 28px;
}

.cross-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 32px;
  background: #020b14;
  isolation: isolate;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.cross-media::before,
.cross-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.cross-media::before {
  z-index: 2;
  background:
    radial-gradient(circle at 50% 48%, rgba(34, 184, 255, 0.18), rgba(34, 184, 255, 0) 38%),
    radial-gradient(circle at 50% 50%, rgba(2, 11, 20, 0) 58%, rgba(2, 11, 20, 0.18) 72%, rgba(2, 11, 20, 0.96) 100%);
}

.cross-media::after {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(2, 11, 20, 0.98) 0%, rgba(2, 11, 20, 0.1) 16%, rgba(2, 11, 20, 0) 30%, rgba(2, 11, 20, 0) 70%, rgba(2, 11, 20, 0.1) 84%, rgba(2, 11, 20, 0.98) 100%),
    linear-gradient(180deg, rgba(2, 11, 20, 0.96) 0%, rgba(2, 11, 20, 0.08) 18%, rgba(2, 11, 20, 0.08) 82%, rgba(2, 11, 20, 0.96) 100%);
}

.cross-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transform: scale(1.04);
  filter: saturate(1.03) contrast(1.02);
  z-index: 1;
}

.cross-media:hover .cross-video {
  transform: scale(1.06);
}

.area-grid,
.trust-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

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

.area-grid article {
  min-height: 170px;
  padding: 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.12;
}

.area-grid strong,
.area-grid span {
  display: block;
}

.area-grid span {
  margin-top: 18px;
  color: var(--color-graphite);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
}

.notice-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
  padding: 24px;
}

.notice-row p {
  margin: 0;
  color: var(--color-graphite);
}

.schedule-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.52fr);
  gap: 44px;
  align-items: start;
}

.schedule-card {
  padding: 28px;
}

.schedule-card dl {
  display: grid;
  margin: 0 0 24px;
}

.schedule-card div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-silver);
}

.schedule-card dt {
  color: var(--color-graphite);
}

.schedule-card dd {
  margin: 0;
  color: var(--color-ink);
  font-weight: 700;
  text-align: right;
}

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

.trust-grid article {
  min-height: 176px;
  padding: 28px;
}

.trust-grid strong {
  display: block;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.08;
}

.trust-grid span {
  display: block;
  margin-top: 28px;
  color: var(--color-graphite);
}

.payment-section {
  padding: 64px 28px;
  color: var(--color-snow);
  background: var(--color-obsidian);
}

.payment-section p {
  max-width: 720px;
}

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

details {
  padding: 24px;
}

summary {
  color: var(--color-ink);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}

details p {
  margin: 16px 0 0;
  color: var(--color-graphite);
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--motion-medium) ease, transform var(--motion-medium) var(--ease-premium);
}

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

@keyframes rotate-badge {
  to {
    transform: rotate(360deg);
  }
}

@keyframes glitch-nudge {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translate(0);
  }
  18% {
    opacity: 0.7;
    clip-path: inset(10% 0 58% 0);
    transform: translate(1px, -1px);
  }
  38% {
    opacity: 0.55;
    clip-path: inset(62% 0 13% 0);
    transform: translate(-1px, 1px);
  }
  62% {
    opacity: 0.38;
    clip-path: inset(32% 0 34% 0);
    transform: translate(1px, 0);
  }
  100% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translate(0);
  }
}

@keyframes carousel-glow {
  0%,
  100% {
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(255, 255, 255, 0.04),
      0 0 34px rgba(34, 184, 255, 0.16);
  }
  50% {
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(255, 255, 255, 0.05),
      0 0 48px rgba(34, 184, 255, 0.28);
  }
}

@keyframes carousel-sweep {
  from {
    opacity: 0;
    transform: translateX(-120%);
  }
  35% {
    opacity: 0.38;
  }
  to {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes product-content-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.final-cta {
  padding: 88px 28px;
  color: var(--color-snow);
  background: var(--color-obsidian);
  text-align: center;
}

.final-cta h2 {
  max-width: 920px;
  margin: 0 auto;
  font-size: 72px;
  line-height: 1.04;
}

.final-cta p {
  max-width: 680px;
  margin: 20px auto 0;
  font-size: 20px;
  line-height: 1.4;
}

.final-cta .hero-actions {
  margin-top: 28px;
  justify-content: center;
}

.site-footer {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  max-width: var(--page-max);
  margin: 24px auto 0;
  padding: 32px 28px;
  color: var(--color-snow);
  background: var(--color-obsidian);
  border-radius: 28px 28px 0 0;
}

.site-footer strong,
.site-footer span,
.site-footer a {
  display: block;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer address {
  display: grid;
  gap: 4px;
  font-style: normal;
  text-align: right;
}

.site-footer a {
  font-weight: 600;
}

.mobile-sticky {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px;
  background: rgba(2, 11, 20, 0.74);
  border-top: 1px solid rgba(34, 184, 255, 0.28);
  opacity: 0;
  transform: translateY(110%);
  transition: opacity var(--motion-medium) ease, transform var(--motion-medium) var(--ease-premium);
  backdrop-filter: blur(18px);
}

.mobile-sticky a {
  display: grid;
  min-height: 50px;
  color: var(--color-snow);
  background: rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  place-items: center;
  font-weight: 600;
}

.mobile-sticky a:first-child {
  color: var(--color-snow);
  background: linear-gradient(180deg, #108cff 0%, #007bff 100%);
}

body.show-sticky-cta .mobile-sticky {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .site-nav {
    display: none;
  }

  .header-actions {
    justify-content: end;
  }

  .hero h1 {
    font-size: clamp(52px, 8vw, 72px);
  }

  .hero {
    grid-template-columns: minmax(0, 0.72fr) minmax(160px, 0.28fr);
    gap: 24px;
    padding: 108px 32px 72px;
    background:
      radial-gradient(circle at 78% 70%, rgba(34, 184, 255, 0.22) 0%, rgba(34, 184, 255, 0) 31%),
      linear-gradient(90deg, rgba(2, 8, 16, 0.96) 0%, rgba(2, 8, 16, 0.84) 44%, rgba(2, 8, 16, 0.38) 78%, rgba(2, 8, 16, 0.12) 100%),
      linear-gradient(180deg, rgba(2, 8, 16, 0.12) 0%, rgba(2, 8, 16, 0.34) 64%, rgba(2, 8, 16, 0.88) 100%),
      url("assets/hero-mobile-map.webp") center right / cover no-repeat;
  }

  .hero-media {
    width: min(28vw, 260px);
  }

  .circular-badge {
    top: -12px;
    right: -12px;
    width: 94px;
    height: 94px;
  }

  .circular-badge span {
    width: 74px;
    font-size: 9px;
  }

  .floating-cylinder {
    width: min(36vw, 320px);
  }

  body.cylinder-products .floating-cylinder,
  body.cylinder-trust .floating-cylinder {
    transform: translate3d(-38vw, -10%, 0) scale(0.2);
  }

  .product-featured,
  .cross-sell,
  .schedule-section {
    grid-template-columns: 1fr;
  }

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

  .carousel-content {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    position: fixed;
    grid-template-columns: 1fr;
    min-height: 52px;
    padding: 10px 24px;
    background: linear-gradient(180deg, rgba(2, 11, 20, 0.92), rgba(2, 11, 20, 0.62));
    border-radius: 0;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: 100svh;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 18px;
    padding: 92px 24px 34px;
    background:
      linear-gradient(180deg, rgba(1, 7, 16, 0.18) 0%, rgba(1, 7, 16, 0.12) 20%, rgba(1, 7, 16, 0.08) 58%, rgba(1, 7, 16, 0.76) 100%),
      linear-gradient(90deg, rgba(1, 7, 16, 0.46) 0%, rgba(1, 7, 16, 0.18) 54%, rgba(1, 7, 16, 0.02) 100%);
    text-align: left;
  }

  .hero-copy,
  .lead {
    margin-right: 0;
    margin-left: 0;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: calc(100svh - 100px);
    align-self: stretch;
    max-width: 100%;
    grid-template-rows: auto 1fr;
  }

  .hero-top {
    gap: 8px;
    align-content: start;
    text-transform: uppercase;
    text-align: center;
  }

  .hero-bottom {
    gap: 18px;
    align-content: end;
    padding-bottom: 28px;
  }

  .eyebrow {
    font-size: 15px;
  }

  .hero-eyebrow {
    font-size: 10.5px;
  }

  .hero-product-name {
    color: var(--color-snow);
  }

  .hero .lead {
    max-width: 100%;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.78);
    align-self: end;
    font-size: 12px;
    line-height: 1.35;
    text-transform: none;
  }

  .hero h1,
  .final-cta h2 {
    font-size: clamp(36px, 10.5vw, 50px);
    line-height: 0.95;
  }

  .hero-headline-primary {
    display: block;
    font-size: 1em;
    line-height: 0.95;
  }

  .hero-headline-secondary {
    display: block;
    margin-top: 8px;
    font-size: 0.35em;
    line-height: 1.08;
    max-width: none;
    text-align: center;
  }

  .lead,
  .section-heading p,
  .schedule-section p,
  .payment-section p,
  .cross-copy p,
  .final-cta p {
    font-size: 16px;
  }

  .hero-media {
    width: min(54vw, 210px);
    margin: 2px 0 0;
    justify-self: start;
  }

  .circular-badge {
    display: none;
  }

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

  .hero-actions {
    margin-top: 0;
    margin-bottom: 6px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero .button-dark {
    color: var(--color-snow);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
  }

  .hero-proof span {
    color: var(--color-snow);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
  }

  .floating-cylinder {
    display: none;
  }

  .urgency-band,
  .cross-sell,
  .payment-section,
  .final-cta {
    margin-right: 12px;
    margin-left: 12px;
    padding: 20px 20px;
  }

  .final-cta p {
    margin-top: 18px;
  }

  .final-cta .hero-actions {
    margin-top: 32px;
  }

  .urgency-band,
  .product-layout,
  .area-grid,
  .trust-grid,
  .faq-grid,
  .notice-row {
    grid-template-columns: 1fr;
  }

  .product-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .section {
    padding: 42px 20px;
  }

  .product-section {
    padding: 56px 20px 112px;
  }

  .product-section {
    background: transparent;
  }

  .product-section::before {
    inset: 42px 0 0;
    transform: translateY(14px);
    opacity: 1;
    background:
      radial-gradient(circle at 50% 42%, rgba(34, 184, 255, 0.18), rgba(34, 184, 255, 0) 32%),
      radial-gradient(circle at 84% 72%, rgba(255, 140, 0, 0.12), rgba(255, 140, 0, 0) 28%),
      linear-gradient(180deg, #020b14 0%, #031426 48%, #020b14 100%),
      linear-gradient(115deg, rgba(34, 184, 255, 0) 12%, rgba(34, 184, 255, 0.12) 50%, rgba(34, 184, 255, 0) 82%),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 72px);
  }

  .cross-sell {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
    margin-top: 4px;
  }

  .cross-copy {
    position: relative;
    z-index: 4;
  }

  .cross-media {
    min-height: 210px;
    order: -1;
    border-radius: 28px;
    margin-top: 10px;
  }

  .product-section .section-heading {
    margin-bottom: 36px;
  }

  .carousel-viewport {
    margin: 0 -20px;
  }

  .carousel-track {
    min-height: 420px;
  }

  .carousel-slide {
    width: min(78vw, 330px);
    border-radius: 26px;
  }

  .carousel-slide.is-prev {
    transform: translateX(calc(-50% - 72vw)) translateY(16px) scale(0.9);
  }

  .carousel-slide.is-next {
    transform: translateX(calc(-50% + 72vw)) translateY(16px) scale(0.9);
  }

  .carousel-content {
    gap: 11px;
    padding: 13px;
  }

  .carousel-content h3 {
    font-size: 20px;
  }

  .carousel-content p:last-child {
    font-size: 10px;
  }

  .carousel-cta {
    width: 100%;
    min-height: 34px;
    padding-inline: 16px;
    font-size: 12px;
  }

  .carousel-controls {
    justify-content: space-between;
  }

  .section-heading h2,
  .schedule-section h2,
  .payment-section h2,
  .cross-copy h2 {
    font-size: 38px;
    line-height: 1.1;
  }

  .product-card picture {
    min-height: 170px;
    max-height: 230px;
  }

  .product-card img {
    min-height: 170px;
    max-height: 230px;
  }

  .product-card img {
    padding: 12px;
  }

  .product-card:hover img,
  .cross-sell:hover img {
    transform: none;
  }

  .product-content,
  .schedule-card {
    padding: 24px;
  }

  .product-card h3 {
    font-size: 30px;
  }

  .schedule-card div,
  .site-footer {
    flex-direction: column;
  }

  .schedule-card dd,
  .site-footer address {
    text-align: left;
  }

  .mobile-sticky {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .floating-cylinder,
  .button,
  .product-card img,
  .hero-background-video,
  .cross-video,
  [data-reveal],
  .carousel-slide,
  .carousel-slide img,
  .carousel-progress span {
    transition: none;
  }

  .circular-badge span,
  .hero-glitch::before,
  .hero-glitch::after {
    animation: none !important;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .carousel-slide,
  .carousel-slide.is-active,
  .product-showcase.is-playing .carousel-progress span {
    animation: none;
  }

  .cross-video {
    display: none;
  }

  .hero-background-video {
    display: none;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(1, 7, 16, 0.24) 0%, rgba(1, 7, 16, 0.18) 20%, rgba(1, 7, 16, 0.14) 58%, rgba(1, 7, 16, 0.8) 100%),
      linear-gradient(90deg, rgba(1, 7, 16, 0.56) 0%, rgba(1, 7, 16, 0.24) 54%, rgba(1, 7, 16, 0.04) 100%),
      url("assets/hero-background-poster.jpg") center 18% / cover no-repeat;
  }

  .cross-media {
    background: url("assets/service-dark.png") center center / cover no-repeat;
  }
}
