: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: radial-gradient(circle at top, #1b1b22, #0a0a0f 60%);
  color: var(--ink);
  font-family: "Poppins", "Segoe UI", sans-serif;
}

.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.6;
  filter: saturate(1.05) contrast(1.1);
  pointer-events: none;
}

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

.bg-audio-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 6;
  padding: 10px 18px;
  border-radius: 999px;
  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);
}

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


.top-banner {
  width: min(92vw, 1200px);
  margin: 0 auto 32px;
  padding: 12px 20px;
  border-radius: 18px;
  background: #ffffff;
  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;
}

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

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

.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: cover;
  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;
}

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

.request-popup-section {
  width: 100%;
  display: grid;
  gap: 12px;
  text-align: center;
  justify-items: center;
  padding: 24px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.09), rgba(0, 0, 0, 0.28));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.request-popup-section h2 {
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.request-popup-section p {
  color: var(--muted);
  line-height: 1.45;
}

.request-open-btn,
.request-submit-btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(120deg, #1d4ed8, #3b82f6);
  box-shadow:
    0 0 14px rgba(59, 130, 246, 0.35),
    0 10px 22px rgba(0, 0, 0, 0.3);
}

.request-open-btn:hover,
.request-submit-btn:hover {
  filter: brightness(1.08);
}

.request-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
}

.request-popup[hidden] {
  display: none;
}

.request-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.request-popup-panel {
  position: relative;
  width: min(92vw, 520px);
  max-height: 90vh;
  overflow: auto;
  border-radius: 16px;
  padding: 20px;
  background: #ffffff;
  color: #111;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.4);
}

.request-popup-panel h3 {
  margin: 0 32px 12px 0;
  font-size: 1.25rem;
}

.request-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f1f3f5;
  color: #111;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.request-popup-form {
  display: grid;
  gap: 10px;
}

.request-popup-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  text-align: left;
}

.request-popup-form input,
.request-popup-form textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.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: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  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);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 96px; /* Keep above chatbot launcher */
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #25d366;
  color: #ffffff;
  box-shadow:
    0 0 12px rgba(37, 211, 102, 0.6),
    0 12px 24px rgba(0, 0, 0, 0.35);
  z-index: 7;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: #2fdf74;
  box-shadow:
    0 0 16px rgba(47, 223, 116, 0.72),
    0 14px 28px rgba(0, 0, 0, 0.4);
}

.floating-whatsapp .wa-icon {
  width: 28px;
  height: 28px;
}

.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: rgba(255, 255, 255, 0.08);
  color: #ffe66a;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow:
    0 0 8px rgba(255, 230, 106, 0.6),
    0 0 16px rgba(255, 230, 106, 0.35);
}

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

.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%, 582px);
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 20px;
  padding: 8px;
  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);
  overflow: visible;
}

.plan-card {
  grid-area: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  animation: plan-fade 24s infinite;
  transition: transform 0.25s ease;
  pointer-events: none;
  visibility: hidden;
}

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

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

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

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

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

.plan-card:nth-child(4) {
  animation-delay: 12s;
}

.plan-card:nth-child(5) {
  animation-delay: 16s;
}

.plan-card:nth-child(6) {
  animation-delay: 20s;
}

.plan-card:hover {
  transform: scale(1.4);
  z-index: 2;
}

.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 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: minmax(0, 1fr) minmax(240px, 30%);
    align-items: start;
    justify-items: stretch;
    column-gap: 72px;
  }

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

  .promo-slider {
    grid-column: 2;
    margin-top: 0;
    text-align: left;
    width: 100%;
    justify-self: end;
    align-self: stretch;
    min-height: min(28vh, 260px);
    z-index: 4;
  }

  .promo-slider h2 {
    text-align: left;
  }

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

@media (max-width: 720px) {
  .banner-logo {
    height: 44px;
  }
  .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;
    visibility: visible;
    pointer-events: auto;
    inset: auto;
    overflow: visible;
  }

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

  .map-frame {
    width: 100%;
  }

  .video-frame {
    width: 100%;
  }

  .request-popup-panel {
    width: min(94vw, 520px);
    padding: 16px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 90px;
    width: 52px;
    height: 52px;
  }
}
.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);
}
