:root {
  --bg: #0a0a0f;
  --ink: #f5f5f7;
  --muted: rgba(245, 245, 247, 0.6);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0 80px;
  background:
    linear-gradient(180deg, rgba(10, 10, 15, 0.15), rgba(10, 10, 15, 0.45)),
    url("banner/banner.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--ink);
  font-family: "Poppins", "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(10, 10, 15, 0.12), rgba(10, 10, 15, 0.45) 70%);
  z-index: -1;
  pointer-events: none;
}

.bg-audio-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 6;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bg-audio-toggle:hover {
  background: rgba(0, 0, 0, 0.65);
}

.bg-audio-icon {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
}

.bg-audio-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.bg-audio-icon--on {
  display: none;
}

.bg-audio-toggle.is-playing .bg-audio-icon--mute {
  display: none;
}

.bg-audio-toggle.is-playing .bg-audio-icon--on {
  display: inline-grid;
}


.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 110px;
  z-index: 7;
  display: grid;
  gap: 12px;
}

.floating-whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #74d18d;
  color: #eafff2;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow:
    0 0 12px rgba(116, 209, 141, 0.55),
    0 8px 18px rgba(0, 0, 0, 0.25);
}

.floating-whatsapp-button:hover {
  background: #8be5a3;
  color: #ffffff;
  box-shadow:
    0 0 16px rgba(139, 229, 163, 0.65),
    0 10px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 720px) {
  .floating-whatsapp {
    right: 16px;
    bottom: 96px;
  }

  .floating-whatsapp-button {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}


.top-banner {
  width: min(92vw, 1200px);
  margin: 0 auto 32px;
  padding: 12px 20px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(225, 244, 255, 0.92), rgba(255, 243, 209, 0.88)),
    url("banner/banner.jpeg");
  background-size: cover;
  background-position: center;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.banner-logo {
  height: 114px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-name {
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d2b4f;
}


.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.top-nav a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.top-nav a:hover {
  color: #b00020;
}

.layout {
  margin: 0 auto;
}

html {
  scroll-behavior: smooth;
}

.site-footer {
  width: min(92vw, 1200px);
  margin: 40px auto 0;
  padding: 20px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  text-align: center;
  display: grid;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.layout {
  width: min(92vw, 1200px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
  justify-items: center;
}

.carousel {
  --radius: clamp(136px, 22vw, 256px);
  width: 100%;
  height: min(72vh, 620px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: start;
  justify-items: center;
  gap: 24px;
  perspective: 1200px; /* Creates depth for 3D transforms. */
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 2;
  margin-bottom: 40px;
  padding-top: 0;
  padding-bottom: 24px;
}

.carousel-title {
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
  z-index: 4;
  position: relative;
}

.carousel-subtitle {
  margin: -8px 0 0;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--ink);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  z-index: 4;
  position: relative;
}

.track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d; /* Keeps children in 3D space. */
  animation: spin 20s linear infinite; /* Infinite 360-degree rotation. */
  transition: transform 0.8s ease; /* Smooth rotation when a slide is selected. */
  z-index: 1;
  margin-top: 36px;
  padding-bottom: 32px;
}

.carousel:hover .track {
  animation-play-state: paused; /* Pause orbit on hover. */
}

.carousel:hover .item-content {
  animation-play-state: paused; /* Pause face counter-rotation on hover. */
}

.item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(160px, 22vw, 220px);
  height: clamp(220px, 28vw, 300px);
  transform-style: preserve-3d; /* Allows nested 3D styling. */
  transform: rotateY(calc(var(--i) * (360deg / var(--count))))
    translateZ(var(--radius))
    translate(-50%, -50%)
    scale(var(--hover-scale, 1)); /* Spins each card around the center ring. */
  transition: transform 0.8s ease;
  will-change: transform;
}

.item-face {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transform: rotateY(calc(-1 * var(--i) * (360deg / var(--count))));
}

.item-content {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  animation: spin 20s linear infinite reverse;
}

.item:hover {
  --hover-scale: 1.3;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  border-radius: 22px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.item figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
}

.marquee,
.success-section {
  width: 100%;
  text-align: center;
  display: grid;
  gap: 20px;
  margin-top: 60px;
  position: relative;
  z-index: 3;
}

.gallery-section {
  width: 100%;
  text-align: center;
  display: grid;
  gap: 22px;
  margin-top: 40px;
  position: relative;
  z-index: 3;
}

.gallery-section h2 {
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

.gallery-block {
  width: 100%;
  display: grid;
  gap: 14px;
}

.gallery-block h3 {
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.gallery-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.gallery-grid img,
.gallery-grid video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.gallery-grid video {
  height: auto;
  object-fit: contain;
}

.gallery-page .gallery-section {
  margin-top: 10px;
}

.gallery-page {
  width: min(92vw, 1200px);
  display: block;
}

.gallery-subsection {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.gallery-masonry {
  column-count: 3;
  column-gap: 16px;
}

.gallery-masonry video {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 0 16px;
  break-inside: avoid;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

@media (max-width: 900px) {
  .gallery-masonry {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .gallery-masonry {
    column-count: 1;
  }
}

.marquee h2,
.success-section h2 {
  font-size: clamp(1rem, 2.6vw, 1.4rem);
  color: var(--ink);
  position: relative;
  z-index: 4;
}

.marquee-track {
  display: flex;
  gap: 24px;
  overflow: hidden;
  padding: 18px 10px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent);
  border-radius: 20px;
}

.marquee-group {
  display: flex;
  gap: 24px;
  min-width: 100%;
  align-items: center;
  animation: marquee 28s linear infinite;
}

.marquee-card {
  width: clamp(220px, 28vw, 300px);
  min-height: 120px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  color: var(--ink);
  display: grid;
  gap: 10px;
}

.marquee-card p {
  font-size: 0.95rem;
  line-height: 1.4;
}

.marquee-card span {
  font-size: 0.8rem;
  color: var(--muted);
}

.success-card {
  width: clamp(216px, 24vw, 288px);
  height: 300px;
  flex: 0 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  display: grid;
}

.success-section {
  margin-top: 40px;
  margin-bottom: 20px;
  min-height: 420px;
}

.marquee {
  margin-top: 30px;
}

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

.success-section .marquee-track {
  overflow: hidden;
}

.success-section .marquee-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  padding-right: 1em;
  animation: marquee 28s linear infinite;
  flex-wrap: nowrap;
  min-width: max-content;
}

.success-group {
  display: flex;
  align-items: center;
  gap: 1em;
}

.success-group + .success-group {
  margin-left: 2em;
}

.success-section .marquee-group[aria-hidden="true"] {
  display: flex;
}

.promo-slider {
  width: 100%;
  display: grid;
  gap: 20px;
  text-align: center;
  margin-top: 30px;
}

.promo-slider h2 {
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

.promo-track {
  width: 100%;
  height: clamp(240px, 32vh, 300px);
  overflow: visible;
  display: grid;
  gap: 10px;
  padding: 10px;
  border-radius: 22px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  margin: 0 auto;
}

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

.promo-group {
  position: relative;
  height: 100%;
}

.promo-card {
  text-align: left;
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ink);
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: promo-fade 12s infinite;
  overflow: hidden;
  transition: transform 0.25s ease;
  pointer-events: none;
  visibility: hidden;
}

.promo-card h3 {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.promo-card p {
  color: var(--muted);
  line-height: 1.4;
  font-size: 0.85rem;
}

.promo-card ul {
  display: grid;
  gap: 4px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.8rem;
}

.promo-card li {
  list-style: square;
}

.promo-card:nth-child(1) {
  animation-delay: 0s;
}

.promo-card:nth-child(2) {
  animation-delay: 4s;
}

.promo-card:nth-child(3) {
  animation-delay: 8s;
}

.stats-section {
  width: 100%;
  margin-top: 30px;
  display: grid;
  justify-items: center;
}

.stats-grid {
  width: min(92%, 980px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.stat-card {
  padding: 24px 18px;
  border-radius: 18px;
  background: #ffffff;
  color: #111;
  text-align: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.stat-card h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #d62d1e;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #111;
}
.map-section {
  width: 100%;
  display: grid;
  gap: 18px;
  text-align: center;
  margin-top: 20px;
}

.brand-sliders {
  width: 100%;
  display: grid;
  gap: 22px;
  text-align: center;
  margin-top: 30px;
}

.brand-sliders h2 {
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

.brand-slider {
  width: 100%;
  display: grid;
  gap: 12px;
}

.brand-slider h3 {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.brand-track {
  width: 100%;
  overflow: hidden;
  display: flex;
  gap: 16px;
  padding: 14px 10px;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: max-content;
  animation: brand-scroll 22s linear infinite;
}

.brand-slider:nth-of-type(1) .brand-row {
  animation-duration: 22s;
}

.brand-slider:nth-of-type(2) .brand-row {
  animation-duration: 24s;
}

.brand-slider:nth-of-type(3) .brand-row {
  animation-duration: 26s;
}

.brand-slider:nth-of-type(4) .brand-row {
  animation-duration: 28s;
}

.brand-slider:nth-of-type(5) .brand-row {
  animation-duration: 30s;
}

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

.brand-track figure {
  display: grid;
  gap: 6px;
  place-items: center;
  margin: 0;
}

.brand-track img {
  width: clamp(160px, 20vw, 220px);
  height: 120px;
  object-fit: contain;
  padding: 10px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.3);
}

.brand-track figcaption {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.map-header h2 {
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-header p {
  max-width: 680px;
  margin: 8px auto 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
}

.map-header a {
  font-size: inherit;
  color: #39ff9a;
  text-decoration: none;
  font-weight: 600;
  text-shadow:
    0 0 8px rgba(57, 255, 154, 0.6),
    0 0 16px rgba(57, 255, 154, 0.4);
}

.map-header a:hover {
  color: #8bffcd;
  text-shadow:
    0 0 10px rgba(139, 255, 205, 0.7),
    0 0 22px rgba(139, 255, 205, 0.5);
}

.wa-button {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px auto 0;
  width: min(90%, 520px);
  justify-content: center;
  padding: 12px 24px;
  border-radius: 14px;
  background: #74d18d;
  color: #eafff2;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  box-shadow:
    0 0 12px rgba(116, 209, 141, 0.55),
    0 8px 18px rgba(0, 0, 0, 0.25);
}

.wa-button:hover {
  background: #8be5a3;
  color: #ffffff;
  box-shadow:
    0 0 16px rgba(139, 229, 163, 0.65),
    0 10px 20px rgba(0, 0, 0, 0.3);
}

.wa-icon,
.phone-icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
}

.wa-icon svg,
.phone-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.phone-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
  margin-top: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.15),
    0 8px 18px rgba(0, 0, 0, 0.25);
}

.phone-button:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.22),
    0 10px 20px rgba(0, 0, 0, 0.3);
}

.cta-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.cta-pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(120deg, rgba(13, 43, 79, 0.85), rgba(60, 126, 196, 0.9));
  color: #0d2b4f;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.45),
    0 0 12px rgba(120, 190, 255, 0.45);
  box-shadow:
    0 0 12px rgba(120, 190, 255, 0.45),
    0 10px 20px rgba(0, 0, 0, 0.25);
}

.map-frame {
  width: 60%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.05);
  margin: 0 auto;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-section {
  width: 100%;
  display: grid;
  gap: 18px;
  text-align: center;
  margin-top: 20px;
  justify-items: center;
}

.video-section h2 {
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-frame {
  width: 60%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.05);
  margin: 0 auto;
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
}


.plan-section {
  width: 100%;
  display: grid;
  gap: 20px;
  text-align: center;
  margin-top: 30px;
  justify-items: center;
}

.about-section {
  width: min(92vw, 1100px);
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 24px;
  padding: 20px 0 40px;
}

.about-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}

.about-section h2 span {
  color: #ffd24d;
}

.about-section p {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.7;
  color: var(--muted);
}

.about-stats {
  margin-top: 24px;
  width: 100%;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  padding: 22px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
}

.about-card {
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 10px;
  align-content: center;
}

/* All cards flash together */

.about-card h3 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: #d0b04c;
  animation: about-flash 8s ease-in-out infinite;
}

.about-card span {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  animation: about-flash 8s ease-in-out infinite;
}

@keyframes about-flash {
  0%,
  10%,
  100% {
    opacity: 0.25;
    transform: translateY(4px);
  }
  20%,
  30%,
  40% {
    opacity: 1;
    transform: translateY(0);
  }
  50%,
  60%,
  70% {
    opacity: 0.3;
    transform: translateY(2px);
  }
  80%,
  90% {
    opacity: 0.9;
    transform: translateY(0);
  }
}

.plan-section h2 {
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

.plan-track {
  width: min(92%, 980px);
  display: grid;
  gap: 18px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.plan-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #111111;
}

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

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

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.18),
    0 0 36px rgba(255, 255, 255, 0.12),
    0 18px 40px rgba(0, 0, 0, 0.35);
}

.plan-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.plan-info {
  padding: 18px;
  text-align: left;
  display: grid;
  gap: 10px;
}

.plan-info h3 {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  color: #111111;
}

.plan-models {
  color: rgba(17, 17, 17, 0.72);
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
}

.plan-prices {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: 12px;
  background: #f3f3f3;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 600;
  font-size: 0.95rem;
}

.plan-prices strong {
  color: inherit;
}

.financing-section {
  width: 100%;
  display: grid;
  gap: 20px;
  text-align: center;
  margin-top: 20px;
  justify-items: center;
}

.financing-section h2 {
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  text-align: center;
  width: 100%;
}

.financing-card {
  width: min(92%, 582px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.06);
  margin: 0 auto;
}

.financing-card img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes spin {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}


@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes promo-fade {
  0% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
  }
  8% {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
  }
  28% {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
  }
  36% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
  }
}

@keyframes brand-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes plan-fade {
  0% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
  }
  6% {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
  }
  14% {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
  }
  18% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
  }
}

@media (min-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: center;
    column-gap: 0;
  }

  .carousel {
    grid-column: 1;
    justify-self: center;
    --radius: clamp(120px, 16vw, 210px);
  }

  .marquee,
  .stats-section,
  .map-section,
  .video-section,
  .plan-section {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .banner-logo {
    height: 96px;
  }

  .top-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-nav {
    justify-content: flex-start;
  }

  .carousel {
    height: 68vh;
    --radius: clamp(160px, 40vw, 300px);
  }

  .item figcaption {
    font-size: 0.85rem;
  }

  .marquee-track {
    padding: 14px 6px;
  }

  .promo-track {
    height: auto;
    width: 100%;
  }

  .promo-group {
    animation: none;
    height: auto;
  }

  .promo-card {
    position: relative;
    opacity: 1;
    animation: none;
  }

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

  .map-frame {
    width: 100%;
  }

  .video-frame {
    width: 100%;
  }
}
.promo-card:hover {
  transform: scale(1.3);
  z-index: 2;
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.18),
    0 0 36px rgba(255, 255, 255, 0.12),
    0 18px 40px rgba(0, 0, 0, 0.35);
}

.portrait-slider {
  width: 100%;
  text-align: center;
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.portrait-title {
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

.portrait-track {
  width: 100%;
  overflow: hidden;
  display: flex;
  gap: 18px;
  padding: 16px 10px;
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.portrait-row {
  display: flex;
  gap: 18px;
  min-width: max-content;
  animation: portrait-scroll 26s linear infinite;
}

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

.portrait-card {
  width: clamp(160px, 18vw, 220px);
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.35);
  display: grid;
}

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

@keyframes portrait-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
