/* ══════════════════════════════
   THEME TOKENS — Dark Luxury
══════════════════════════════ */
:root {
  --bg: #07050F;
  --bg2: #0F0A1C;
  --bg3: #160E26;
  --bg-card: #140C22;
  --purple: #6B2FD9;
  --purple-l: #8B4FFF;
  --purple-d: #3D1A8C;
  --gold: #F5C200;
  --gold-l: #FFD740;
  --orange: #FF7A1A;
  --white: #FFFFFF;
  --w80: rgba(255, 255, 255, 0.80);
  --w50: rgba(255, 255, 255, 0.50);
  --w20: rgba(255, 255, 255, 0.12);
  --w08: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-p: rgba(107, 47, 217, 0.35);
  --text: #FFFFFF;
  --text-sub: rgba(255, 255, 255, 0.70);
  --text-dim: rgba(255, 255, 255, 0.40);
  --hero-glow1: rgba(107, 47, 217, 0.30);
  --hero-glow2: rgba(245, 194, 0, 0.12);
  --nav-bg: rgba(7, 5, 15, 0.95);
  --stats-bg: linear-gradient(135deg, #6B2FD9, #3D1A8C);
  --marquee-bg: #0F0A1C;
  --cta-bg: linear-gradient(135deg, rgba(107, 47, 217, 0.18), rgba(245, 194, 0, 0.07));
  --footer-bg: #0F0A1C;
  --section-alt: #0F0A1C;
  --pill-bg: rgba(107, 47, 217, 0.15);
  --pill-border: rgba(107, 47, 217, 0.40);
  --pill-text: #C589FF;
}



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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

/* ══════════════════════════════
   THEME TOKENS — Dark Luxury
══════════════════════════════ */
:root {
  --bg: #07050F;
  --bg2: #0F0A1C;
  --bg3: #160E26;
  --bg-card: #140C22;
  --purple: #6B2FD9;
  --purple-l: #8B4FFF;
  --purple-d: #3D1A8C;
  --gold: #F5C200;
  --gold-l: #FFD740;
  --orange: #FF7A1A;
  --white: #FFFFFF;
  --w80: rgba(255, 255, 255, 0.80);
  --w50: rgba(255, 255, 255, 0.50);
  --w20: rgba(255, 255, 255, 0.12);
  --w08: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-p: rgba(107, 47, 217, 0.35);
  --text: #FFFFFF;
  --text-sub: rgba(255, 255, 255, 0.70);
  --text-dim: rgba(255, 255, 255, 0.40);
  --hero-glow1: rgba(107, 47, 217, 0.30);
  --hero-glow2: rgba(245, 194, 0, 0.12);
  --nav-bg: rgba(7, 5, 15, 0.95);
  --stats-bg: linear-gradient(135deg, #6B2FD9, #3D1A8C);
  --marquee-bg: #0F0A1C;
  --cta-bg: linear-gradient(135deg, rgba(107, 47, 217, 0.18), rgba(245, 194, 0, 0.07));
  --footer-bg: #0F0A1C;
  --section-alt: #0F0A1C;
  --pill-bg: rgba(107, 47, 217, 0.15);
  --pill-border: rgba(107, 47, 217, 0.40);
  --pill-text: #C589FF;
}



/* ── SCROLL ── */

::-webkit-scrollbar {
  width: 3px
}

::-webkit-scrollbar-track {
  background: var(--bg)
}

::-webkit-scrollbar-thumb {
  background: var(--purple);
  border-radius: 2px
}



/* ── PILL / CHIP ── */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pill-text);
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 58px;
  width: auto;
  display: block;
}



/* ── SECTION COMMON ── */

section {
  padding: 96px 60px;
  background: var(--bg)
}

section.alt {
  background: var(--section-alt)
}

.s-header {
  margin-bottom: 56px
}

.s-header.center {
  text-align: center
}

.s-h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text)
}

.s-h2 em {
  font-style: normal;
  color: var(--purple)
}

.s-h2 mark {
  background: none;
  color: var(--gold)
}

.s-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-sub);
  max-width: 520px;
  margin-top: 14px;
  line-height: 1.68
}

.s-header.center .s-sub {
  margin: 14px auto 0
}



/* ── STATS BAR ── */

.stats-bar {
  background: var(--stats-bg);
  padding: 22px 60px
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto
}

.stat-item .num {
  font-family: 'Syne', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1
}

.stat-item .lbl {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
  letter-spacing: 0.02em
}

.stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2)
}



/* ── MARQUEE ── */

.marquee-wrap {
  background: var(--marquee-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden
}

.marquee-inner {
  display: flex;
  animation: marquee 32s linear infinite;
  white-space: nowrap
}

.marq-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 36px;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim)
}

.marq-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}



/* ── WHY US ── */

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.why-cards-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 22px;
  transition: border-color 0.2s, transform 0.2s;
}

.why-card:hover {
  border-color: var(--border-p);
  transform: translateY(-3px)
}

.why-icon {
  font-size: 30px;
  margin-bottom: 12px
}

.why-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px
}

.why-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.55
}

.why-big {
  margin-top: 36px
}

.why-big-num {
  font-family: 'Syne', sans-serif;
  font-size: 70px;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: -0.04em;
  line-height: 1
}

.why-big-label {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-sub);
  margin-top: 8px
}



/* ── TESTIMONIALS ── */

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 22px
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px
}

.star {
  color: var(--gold);
  font-size: 13px
}

.review-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-sub);
  line-height: 1.68;
  margin-bottom: 18px;
  font-style: italic
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--purple-d));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.rev-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text)
}

.rev-role {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 2px
}



/* ── GALLERY ── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 190px 190px;
  gap: 12px
}

.gal-item {
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  cursor: pointer;
  position: relative;
  transition: opacity 0.2s;
}

.gal-item:hover {
  opacity: 0.82
}

.gal-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2
}

.gal-item:nth-child(5) {
  grid-column: span 2
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 5, 15, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s
}

.gal-item:hover .gal-overlay {
  opacity: 1
}



/* ── CTA BAND ── */

.cta-band {
  background: var(--cta-bg);
  border-top: 1px solid var(--border-p);
  border-bottom: 1px solid var(--border-p);
  text-align: center;
  padding: 80px 60px;
}

.cta-band .s-h2 {
  max-width: 600px;
  margin: 0 auto 14px
}

.cta-band .s-sub {
  margin: 0 auto 36px
}

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


/* ══════════════════════════════════════════
   RESPONSIVE — Shared Components
   Desktop styles above are UNTOUCHED.
   ══════════════════════════════════════════ */

/* ── TABLET ≤ 1024px ── */
@media (max-width: 1024px) {

  section {
    padding: 72px 36px;
  }

  .stats-bar {
    padding: 22px 36px;
  }

  .stats-inner {
    flex-wrap: wrap;
    gap: 18px 0;
    justify-content: center;
  }

  .stat-item {
    flex: 0 0 33.33%;
    text-align: center;
  }

  .stat-div {
    display: none;
  }

  .why-grid {
    gap: 48px;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 160px 160px 160px;
  }

  .gal-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gal-item:nth-child(5) {
    grid-column: span 1;
  }

  .cta-band {
    padding: 60px 36px;
  }

}

/* ── SMALL TABLET / LARGE PHONE ≤ 768px ── */
@media (max-width: 768px) {

  section {
    padding: 56px 24px;
  }

  .s-h2 {
    font-size: clamp(28px, 5vw, 38px);
  }

  .s-sub {
    font-size: 15px;
  }

  .stats-bar {
    padding: 20px 24px;
  }

  .stats-inner {
    gap: 16px 0;
  }

  .stat-item {
    flex: 0 0 50%;
  }

  .stat-item .num {
    font-size: 24px;
  }

  .stat-item .lbl {
    font-size: 11px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-cards-2x2 {
    grid-template-columns: 1fr 1fr;
  }

  .why-big-num {
    font-size: 50px;
  }

  .review-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 140px 140px 140px;
  }

  .cta-band {
    padding: 48px 24px;
  }

  .cta-band .s-h2 {
    font-size: clamp(26px, 5vw, 36px);
  }

  .cta-btns {
    flex-direction: column;
    gap: 10px;
  }

  .cta-btns .btn-primary,
  .cta-btns .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .marq-item {
    font-size: 10px;
    padding: 0 24px;
  }

}

/* ── PHONE ≤ 480px ── */
@media (max-width: 480px) {

  section {
    padding: 48px 16px;
  }

  .s-h2 {
    font-size: clamp(24px, 6vw, 32px);
  }

  .s-sub {
    font-size: 14px;
    margin-top: 10px;
  }

  .s-header {
    margin-bottom: 36px;
  }

  .pill {
    font-size: 10px;
    padding: 5px 12px;
    gap: 6px;
  }

  .stats-bar {
    padding: 18px 16px;
  }

  .stat-item {
    flex: 0 0 50%;
  }

  .stat-item .num {
    font-size: 22px;
  }

  .why-cards-2x2 {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 20px 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 120px 120px 120px;
    gap: 8px;
  }

  .gal-item:nth-child(1) {
    grid-column: span 2;
  }

  .cta-band {
    padding: 40px 16px;
  }

}