@import url("styles.css");

:root {
  --bg: #120423;
  --surface: #1b0c33;
  --surface-soft: #241143;
  --text: #f4ecff;
  --text-soft: #ceb7f2;
  --blue-700: #b05cff;
  --blue-600: #c874ff;
  --green-600: #ff4fb2;
  --green-500: #ff80cf;
  --line: #43206f;
  --shadow: 0 24px 48px rgba(6, 2, 14, 0.55);
}

body {
  background: radial-gradient(circle at 12% 8%, #3e136e 0%, transparent 33%),
    radial-gradient(circle at 88% 18%, #611b8a 0%, transparent 36%),
    linear-gradient(180deg, #1a0635 0%, #0d041b 72%, #090214 100%);
  color: var(--text);
}

.topbar {
  background: rgba(20, 8, 37, 0.88);
  border-bottom: 1px solid rgba(215, 170, 255, 0.16);
}

.logo,
.nav a {
  color: #f5edff;
}

.logo {
  gap: 0.75rem;
}

.logo-image {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(255, 111, 200, 0.28));
}

.btn-primary {
  box-shadow: 0 14px 30px rgba(80, 19, 140, 0.55);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(96, 25, 163, 0.62);
}

.btn-secondary {
  color: #f0dbff;
  background: #2b1249;
  border-color: #54307f;
}

.hero-aura-one {
  background: rgba(181, 97, 255, 0.3);
}

.hero-aura-two {
  background: rgba(255, 79, 178, 0.3);
}

.hero-subtitle,
.section-intro,
.hero-note,
.metric-card span,
.details-card ul,
.trust-card p,
.video-tip {
  color: var(--text-soft);
}

.video-card,
.metric-card,
.photo-card,
.step-card,
.details-card,
.trust-shell,
.trust-card,
.modal-panel {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.trust-title {
  margin: 0 0 0.55rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.18rem;
}

.trust-icon {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #ff6fc8;
  background: rgba(255, 111, 200, 0.12);
  border: 1px solid rgba(255, 111, 200, 0.35);
  flex: 0 0 auto;
}

.trust-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  fill: currentColor;
}

.metrics-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.metric-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.metric-icon {
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #ff6fc8;
  background: rgba(255, 111, 200, 0.12);
  border: 1px solid rgba(255, 111, 200, 0.34);
  flex: 0 0 auto;
}

.metric-icon svg {
  width: 1.12rem;
  height: 1.12rem;
  display: block;
  fill: currentColor;
}

.metric-card strong {
  font-size: 1.01rem;
  line-height: 1.3;
}

.photo-carousel {
  margin-top: 1.5rem;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0.85rem 0.85rem 1rem;
  box-shadow: var(--shadow);
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.carousel-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  margin: 0;
}

.carousel-slide img {
  width: 100%;
  height: clamp(260px, 52vh, 480px);
  object-fit: cover;
  border-radius: var(--radius-md);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 247, 0.55);
  background: rgba(42, 16, 74, 0.82);
  color: #ffe6f7;
  font-size: 1.15rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.carousel-btn:hover {
  background: rgba(66, 28, 109, 0.9);
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 10px 22px rgba(11, 3, 22, 0.55);
}

.carousel-btn-prev {
  left: 1.35rem;
}

.carousel-btn-next {
  right: 1.35rem;
}

.carousel-dots {
  margin-top: 0.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid #b585ea;
  background: rgba(229, 203, 255, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.carousel-dot:hover {
  transform: scale(1.15);
}

.carousel-dot.is-active {
  background: #ff6fc8;
  border-color: #ff6fc8;
  transform: scale(1.16);
}

.video-tip {
  border-top-color: var(--line);
}

.photo-card figcaption {
  color: #ecd9ff;
}

.details-card,
.trust-shell {
  background: linear-gradient(160deg, #221041, #170a2d);
}

.sticky-cta {
  background: rgba(37, 13, 67, 0.96);
  border-color: rgba(245, 179, 255, 0.22);
  color: #ffe8ff;
  box-shadow: 0 18px 36px rgba(7, 2, 14, 0.6);
}

.modal {
  background: rgba(8, 4, 15, 0.78);
}

.modal-close {
  background: #311756;
  color: #efdcff;
}

.lead-form label {
  color: #ead7ff;
}

.lead-form input,
.lead-form select {
  background: #130726;
  color: #f4ecff;
  border-color: #553082;
}

.lead-form input:focus,
.lead-form select:focus {
  outline-color: #cc8dff;
  border-color: #cc8dff;
}

.form-feedback {
  color: #ff8ad5;
}

.site-footer {
  padding: 2.2rem 0 5.8rem;
  border-top: 1px solid rgba(215, 170, 255, 0.16);
  background: rgba(11, 4, 22, 0.58);
}

.site-footer p {
  margin: 0;
  text-align: center;
  color: #d9c3f7;
  font-size: 0.95rem;
}

.footer-logo-wrap {
  width: fit-content;
  margin: 0 auto 0.85rem;
  display: block;
}

.footer-logo {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(255, 111, 200, 0.3));
}

@media (max-width: 920px) {
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    background: #1c0b35;
    border-color: #4e2a7c;
    box-shadow: 0 18px 30px rgba(7, 2, 14, 0.55);
  }
}

@media (max-width: 560px) {
  .logo-image {
    height: 32px;
  }

  .footer-logo {
    height: 52px;
  }

  .carousel-slide img {
    height: 250px;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
  }

  .carousel-btn-prev {
    left: 0.85rem;
  }

  .carousel-btn-next {
    right: 0.85rem;
  }

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