/*
Theme Name: MIHI Entertainment LA
Theme URI: https://photoboothrentallosangelesca.com
Author: MIHI Entertainment
Description: Custom WordPress theme for MIHI Entertainment photo booth rental — Los Angeles.
Version: 1.0.0
License: Private
Text Domain: mihi
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --bg: #1f1f1f;
  --surface: #252525;
  --surface-2: #2d2d2d;
  --border: rgba(255,255,255,0.08);
  --text: #ffffff;
  --muted: #9ca3af;
  --coral: #ff4f4f;
  --aqua: #18f1e1;
  --footer-bg: #141414;
  --sp-bg: #0d0d0d;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; padding: 0; margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1f1f1f; }
::-webkit-scrollbar-thumb { background: #444; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #ff4f4f; }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.font-archivo { font-family: 'Archivo Black', sans-serif; }
.gradient-text {
  background: linear-gradient(90deg, #18f1e1, #ff4f4f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-orange {
  background: linear-gradient(90deg, #f97316, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-gradient {
  background: linear-gradient(135deg, #18f1e1 0%, #ff4f4f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }

.section-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  display: block;
}
.section-label--coral { color: #ff4f4f; }
.section-label--aqua { color: #18f1e1; }
.section-label--orange { color: #f97316; }

.section-h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3rem);
  line-height: 1.1;
}
.section-h2--dark { color: #1f1f1f; }
.section-h2--light { color: #ffffff; }

.section-center { text-align: center; margin-bottom: 4rem; }

.dot-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, currentColor 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #18f1e1;
  color: #1f1f1f;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  transition: opacity 0.2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { opacity: 0.9; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 9999px;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-secondary:hover { border-color: #ff4f4f; color: #ff4f4f; }

.btn-aqua {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #18f1e1;
  color: #1f1f1f;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}
.btn-aqua:hover { opacity: 0.9; }

.btn-coral-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid #ff4f4f;
  color: #ff4f4f;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  transition: background 0.2s;
}
.btn-coral-outline:hover { background: rgba(255,255,255,0.05); }

.btn-gradient-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(to right, #f97316, #ec4899);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}
.btn-gradient-orange:hover { opacity: 0.9; }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  transition: background 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.05); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.3s;
  padding: 1.25rem 0;
}
.navbar.scrolled {
  background: rgba(31,31,31,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.75rem 0;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .navbar__inner { padding: 0 1.5rem; } }

.navbar__logo img {
  height: 2.5rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.navbar__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .navbar__nav { display: flex; } }

.navbar__nav-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.navbar__nav-link:hover { color: #fff; }

.navbar__services { position: relative; }
.navbar__services-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
}
.navbar__services-btn:hover { color: #fff; }
.navbar__services-btn .chevron {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.2s;
}
.navbar__services-btn.open .chevron { transform: rotate(180deg); }

.navbar__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  width: 14rem;
  background: #252525;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
  padding: 0.5rem 0;
  max-height: 70vh;
  overflow-y: auto;
  z-index: 100;
}
.navbar__dropdown.open { display: block; }
.navbar__dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: all 0.15s;
}
.navbar__dropdown a:hover { color: #fff; background: rgba(255,255,255,0.05); }

.navbar__ctas {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) { .navbar__ctas { display: flex; } }

.navbar__phone {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: color 0.2s;
}
.navbar__phone:hover { color: #fff; }

.navbar__book-btn {
  background: #18f1e1;
  color: #1f1f1f;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}
.navbar__book-btn:hover { opacity: 0.9; }

.navbar__hamburger {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 0.25rem;
}
@media (min-width: 768px) { .navbar__hamburger { display: none; } }

.navbar__mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: #1f1f1f;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 1rem;
}
.navbar__mobile.open { display: flex; }
@media (min-width: 768px) { .navbar__mobile { display: none !important; } }

.navbar__mobile-services-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  padding: 0;
}
.navbar__mobile-services-btn .chevron { width: 1rem; height: 1rem; transition: transform 0.2s; }
.navbar__mobile-services-btn.open .chevron { transform: rotate(180deg); }

.navbar__mobile-services-list {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(24,241,225,0.3);
}
.navbar__mobile-services-list.open { display: flex; }
.navbar__mobile-services-list a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.navbar__mobile-services-list a:hover { color: #fff; }

.navbar__mobile-link { color: rgba(255,255,255,0.8); font-size: 1rem; transition: color 0.2s; }
.navbar__mobile-link:hover { color: #fff; }

.navbar__mobile-book {
  display: block;
  background: #18f1e1;
  color: #1f1f1f;
  font-family: 'Archivo Black', sans-serif;
  text-align: center;
  padding: 0.75rem;
  border-radius: 9999px;
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1f1f1f;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay-1 { position: absolute; inset: 0; background: rgba(31,31,31,0.75); }
.hero__overlay-2 { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent, transparent, #1f1f1f); }

.hero__orb-aqua {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: #18f1e1;
  width: 600px; height: 600px;
  top: -10%; right: -8%;
  filter: blur(270px);
  opacity: 0.08;
}
.hero__orb-coral {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: #ff4f4f;
  width: 400px; height: 400px;
  bottom: 5%; left: -5%;
  filter: blur(180px);
  opacity: 0.07;
}
.hero__wave {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6rem;
  overflow: hidden;
  color: rgba(24,241,225,0.2);
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 72rem;
  margin: 0 auto;
  padding: 7rem 1rem 4rem;
  text-align: center;
}
@media (min-width: 640px) { .hero__content { padding: 7rem 1.5rem 4rem; } }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(24,241,225,0.3);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
}
.hero__badge-icon { width: 1rem; height: 1rem; color: #18f1e1; }
.hero__badge-rating {
  background: #ff4f4f;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}

.hero__h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(3rem, 10vw, 6rem);
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  color: #fff;
}
.hero__h1-aqua { color: #18f1e1; }
.hero__h1-sub {
  display: block;
  font-size: clamp(2rem, 6vw, 3.75rem);
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
}

.hero__sub {
  color: rgba(255,255,255,0.6);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) { .hero__ctas { flex-direction: row; } }

.hero__stats {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) { .hero__stats { grid-template-columns: repeat(4, 1fr); } }

.hero__stat {
  background: rgba(31,31,31,0.8);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  text-align: center;
}
.hero__stat-value {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.875rem;
}
.hero__stat-value--aqua { color: #18f1e1; }
.hero__stat-value--coral { color: #ff4f4f; }
.hero__stat-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
  z-index: 10;
  animation: bounce 1.5s ease-in-out infinite;
}
.hero__scroll:hover { color: rgba(255,255,255,0.6); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   FEATURED SERVICES
   ============================================================ */
.featured-services {
  padding: 6rem 1rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .featured-services { padding: 6rem 1.5rem; } }
.featured-services .dot-grid { color: rgba(255,79,79,0.08); }

.featured-services__corner {
  position: absolute;
  top: 0; right: 0;
  width: 16rem; height: 16rem;
  border-bottom-left-radius: 100%;
  opacity: 0.3;
  background: linear-gradient(225deg, rgba(255,79,79,0.06), transparent);
}

.featured-services__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .featured-services__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.featured-services__view-all {
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #ff4f4f;
}

.featured-cards {
  display: grid;
  gap: 1.5rem;
  position: relative;
}
@media (min-width: 768px) { .featured-cards { grid-template-columns: repeat(3, 1fr); } }

.featured-card {
  display: flex;
  flex-direction: column;
  background: #1f1f1f;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 320px;
  transition: transform 0.3s;
  position: relative;
}
.featured-card:hover { transform: translateY(-4px); }

.featured-card__visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5.625rem;
  padding: 2.5rem 0 1rem;
  position: relative;
}
.featured-card__circle {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  opacity: 0.2;
}
.featured-card__fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4rem;
  background: linear-gradient(to top, #1f1f1f, transparent);
}
.featured-card__emoji { position: relative; z-index: 10; user-select: none; line-height: 1; }

.featured-card__content { padding: 1.5rem 1.5rem 1.5rem; padding-top: 0.5rem; }
.featured-card__tag {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.625rem;
  padding: 0.125rem 0.625rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
  color: #1f1f1f;
}
.featured-card__name { font-family: 'Archivo Black', sans-serif; font-size: 1.25rem; color: #fff; margin-bottom: 0.5rem; }
.featured-card__desc { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.featured-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: gap 0.2s;
}
.featured-card:hover .featured-card__link { gap: 0.5rem; }
.featured-card__accent { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; }

/* ============================================================
   KEYWORD SECTION
   ============================================================ */
.keyword-section {
  padding: 5rem 1rem;
  background: #1f1f1f;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .keyword-section { padding: 5rem 1.5rem; } }
.keyword-section__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: #18f1e1;
  width: 500px; height: 500px;
  top: -20%; left: 40%;
  filter: blur(225px);
  opacity: 0.05;
}
.keyword-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .keyword-grid { grid-template-columns: repeat(3, 1fr); } }

.keyword-card {
  position: relative;
  background: #252525;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  transition: transform 0.3s;
}
.keyword-card:hover { transform: translateY(-4px); }
.keyword-card__bar {
  position: absolute;
  left: 0; top: 1.5rem; bottom: 1.5rem;
  width: 3px;
  border-radius: 9999px;
}
.keyword-card__icon { font-size: 2.25rem; }
.keyword-card__h2 { font-family: 'Archivo Black', sans-serif; font-size: 1.25rem; line-height: 1.3; color: #fff; }
.keyword-card__desc { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.6; }

/* ============================================================
   TRUSTED BY / MARQUEE
   ============================================================ */
.trusted-by {
  padding: 3.5rem 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.trusted-by__border-top { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: #e5e7eb; }
.trusted-by__border-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: #e5e7eb; }
.trusted-by__label {
  text-align: center;
  color: rgba(255,79,79,0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-family: 'Archivo Black', sans-serif;
  margin-bottom: 2.5rem;
}

.trusted-by__track-wrap { position: relative; overflow: hidden; }
.trusted-by__fade-left {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6rem;
  z-index: 10;
  background: linear-gradient(to right, white, transparent);
}
.trusted-by__fade-right {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 6rem;
  z-index: 10;
  background: linear-gradient(to left, white, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  margin: 0 2.5rem;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-section {
  padding: 6rem 1rem;
  background: #1f1f1f;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .services-section { padding: 6rem 1.5rem; } }
.services-section .dot-grid { color: rgba(255,255,255,0.03); }
.services-section__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: #ff4f4f;
  width: 500px; height: 500px;
  bottom: -10%; right: -5%;
  filter: blur(225px);
  opacity: 0.06;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(5, 1fr); } }

.service-card {
  position: relative;
  background: #252525;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: all 0.3s;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,79,79,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(255,79,79,0.12);
}
.service-card__tag {
  position: absolute;
  top: 0.5rem; right: 0.5rem;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.625rem;
  background: #ff4f4f;
  color: #1f1f1f;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}
.service-card__icon { font-size: 1.875rem; }
.service-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  line-height: 1.3;
}
.service-card:hover .service-card__name { color: #fff; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 6rem 1rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .how-it-works { padding: 6rem 1.5rem; } }
.how-it-works__bg-text {
  position: absolute;
  left: 0; right: 0; top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(80px, 18vw, 220px);
  color: #1f1f1f;
  opacity: 0.03;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.how-it-works__wave-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3rem; overflow: hidden;
  color: rgba(255,79,79,0.1);
}
.how-it-works__wave-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3rem; overflow: hidden;
  color: rgba(24,241,225,0.1);
}

.steps-grid {
  display: grid;
  gap: 2rem;
  position: relative;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 22%;
    right: 22%;
    border-top: 2px dashed #e5e7eb;
  }
}

.step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.25rem; }
@media (min-width: 768px) { .step { align-items: flex-start; text-align: left; } }

.step__icon-wrap { position: relative; }
.step__num {
  position: absolute;
  top: -1.5rem; left: -1rem;
  font-family: 'Archivo Black', sans-serif;
  font-size: 5rem;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  opacity: 0.12;
}
.step__icon {
  position: relative;
  z-index: 10;
  width: 3.5rem; height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.step__icon svg { width: 1.5rem; height: 1.5rem; color: #1f1f1f; }
.step__title { font-family: 'Archivo Black', sans-serif; font-size: 1.5rem; color: #1f1f1f; margin-bottom: 0.75rem; }
.step__desc { color: #555; font-size: 0.875rem; line-height: 1.6; }

/* ============================================================
   EVENT TYPES
   ============================================================ */
.event-types {
  padding: 6rem 1rem;
  background: #1f1f1f;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .event-types { padding: 6rem 1.5rem; } }
.event-types__orb-aqua {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: #18f1e1;
  width: 600px; height: 600px;
  top: -20%; left: -10%;
  filter: blur(270px);
  opacity: 0.05;
}
.event-types__orb-coral {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: #ff4f4f;
  width: 400px; height: 400px;
  bottom: -10%; right: 5%;
  filter: blur(180px);
  opacity: 0.06;
}

.event-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .event-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .event-grid { grid-template-columns: repeat(3, 1fr); } }

.event-card {
  position: relative;
  background: #252525;
  border-radius: 1.5rem;
  padding: 1.75rem;
  transition: all 0.3s;
  cursor: pointer;
  overflow: hidden;
}
.event-card:hover { transform: translateY(-4px); }
.event-card__glow {
  position: absolute;
  top: -2rem; right: -2rem;
  width: 8rem; height: 8rem;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s;
}
.event-card:hover .event-card__glow { opacity: 0.1; }
.event-card__accent-line {
  position: absolute;
  top: 0; left: 1.5rem; right: 1.5rem;
  height: 2px;
  border-radius: 9999px;
  opacity: 0;
  transition: opacity 0.3s;
}
.event-card:hover .event-card__accent-line { opacity: 1; }
.event-card__emoji { font-size: 2.25rem; margin-bottom: 1.25rem; }
.event-card__name { font-family: 'Archivo Black', sans-serif; font-size: 1.25rem; color: #fff; margin-bottom: 0.5rem; }
.event-card__desc { color: rgba(255,255,255,0.5); font-size: 0.875rem; margin-bottom: 1.25rem; }
.event-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0;
  transition: all 0.3s;
}
.event-card:hover .event-card__link { opacity: 1; gap: 0.5rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 6rem 1rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .testimonials { padding: 6rem 1.5rem; } }
.testimonials .dot-grid { color: rgba(255,79,79,0.06); }
.testimonials__quote-mark {
  position: absolute;
  top: 3rem; left: 2rem;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(120px, 20vw, 280px);
  color: #ff4f4f;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.testimonials__stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.testimonials__stars-row svg { width: 1.25rem; height: 1.25rem; color: #facc15; fill: #facc15; }
.testimonials__rating { color: #999; font-size: 0.875rem; margin-left: 0.25rem; }

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  position: relative;
  background: #1f1f1f;
  border-radius: 1.5rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
}
.testimonial-card__accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.testimonial-card__stars { display: flex; gap: 0.25rem; }
.testimonial-card__stars svg { width: 1rem; height: 1rem; color: #facc15; fill: #facc15; }
.testimonial-card__text { color: rgba(255,255,255,0.7); font-size: 0.875rem; line-height: 1.6; flex: 1; }
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 700;
  color: #1f1f1f;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; font-size: 0.875rem; color: #fff; }
.testimonial-card__role { color: rgba(255,255,255,0.4); font-size: 0.75rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 6rem 1rem;
  background: #1f1f1f;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .faq-section { padding: 6rem 1.5rem; } }
.faq-section__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: #18f1e1;
  width: 500px; height: 500px;
  top: 10%; right: -10%;
  filter: blur(225px);
  opacity: 0.05;
}
.faq-section__watermark {
  position: absolute;
  bottom: 0; left: 0;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(100px, 22vw, 300px);
  color: #18f1e1;
  opacity: 0.03;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 48rem; margin: 0 auto; }

.faq-item {
  background: #252525;
  border-radius: 1rem;
  overflow: hidden;
  transition: border-left-color 0.3s;
  border-left: 3px solid transparent;
}
.faq-item.open { border-left-color: #18f1e1; }

.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}
.faq-item__text { font-weight: 600; padding-right: 1rem; color: #fff; }
.faq-item__chevron {
  flex-shrink: 0;
  width: 1.25rem; height: 1.25rem;
  transition: transform 0.3s;
  color: #666;
}
.faq-item.open .faq-item__chevron { transform: rotate(180deg); color: #18f1e1; }

.faq-item__answer {
  display: none;
  padding: 1rem 1.5rem 1.25rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.faq-item.open .faq-item__answer { display: block; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { position: relative; overflow: hidden; }
.final-cta__bg-white { position: absolute; inset: 0; background: #fff; }
.final-cta__bg-dark {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: #1f1f1f;
}
@media (min-width: 768px) { .final-cta__bg-dark { left: 55%; } }

.final-cta__inner {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 6rem 1rem;
}
@media (min-width: 640px) { .final-cta__inner { padding: 6rem 1.5rem; } }

.final-cta__grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 768px) { .final-cta__grid { grid-template-columns: repeat(2, 1fr); } }

.final-cta__label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: 'Archivo Black', sans-serif;
  color: #ff4f4f;
  margin-bottom: 1rem;
}
.final-cta__h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.25rem, 4vw, 3rem);
  color: #1f1f1f;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.final-cta__h2 span { color: #ff4f4f; }
.final-cta__sub { color: #555; font-size: 1.125rem; margin-bottom: 2rem; line-height: 1.6; }

.final-cta__checklist { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.875rem; color: #777; }
.final-cta__check-item { display: flex; align-items: center; gap: 0.375rem; }
.final-cta__check-item svg { width: 1rem; height: 1rem; color: #ff4f4f; }

.final-cta__right { position: relative; display: flex; flex-direction: column; gap: 1.25rem; }
.final-cta__orb-aqua {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: #18f1e1;
  width: 300px; height: 300px;
  top: -20%; right: -10%;
  filter: blur(135px);
  opacity: 0.1;
}
.final-cta__orb-coral {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: #ff4f4f;
  width: 200px; height: 200px;
  bottom: -10%; left: 10%;
  filter: blur(90px);
  opacity: 0.08;
}

.final-cta__card {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(24,241,225,0.2);
  background: #252525;
}
.final-cta__limited {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #18f1e1;
  color: #18f1e1;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.75rem;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1.25rem;
}
.final-cta__card-text { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.6; margin-bottom: 2rem; }
.final-cta__btns { display: flex; flex-direction: column; gap: 0.75rem; }

.final-cta__stats { display: flex; gap: 1rem; }
.final-cta__stat {
  flex: 1;
  background: #252525;
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
}
.final-cta__stat-val { font-family: 'Archivo Black', sans-serif; font-size: 1.5rem; }
.final-cta__stat-val--aqua { color: #18f1e1; }
.final-cta__stat-val--coral { color: #ff4f4f; }
.final-cta__stat-label { color: rgba(255,255,255,0.4); font-size: 0.75rem; margin-top: 0.25rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #141414;
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.footer__inner { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .footer__inner { padding: 0 1.5rem; } }

.footer__grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer__logo img {
  height: 2.5rem;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.25rem;
}
.footer__tagline { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.25rem; }

.footer__socials { display: flex; gap: 0.75rem; }
.footer__social-link {
  width: 2.25rem; height: 2.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.footer__social-link:hover { color: #fff; border-color: rgba(255,79,79,0.5); }
.footer__social-link svg { width: 1rem; height: 1rem; }

.footer__col-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #18f1e1;
  margin-bottom: 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; list-style: none; }
.footer__link { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color 0.2s; }
.footer__link:hover { color: #ff4f4f; }

.footer__contact { display: flex; flex-direction: column; gap: 0.75rem; list-style: none; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 0.5rem; color: rgba(255,255,255,0.5); font-size: 0.875rem; }
.footer__contact-item svg { width: 1rem; height: 1rem; color: #ff4f4f; flex-shrink: 0; margin-top: 0.125rem; }
.footer__contact-item a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer__contact-item a:hover { color: #ff4f4f; }

.footer__map { margin-bottom: 2.5rem; border-radius: 1rem; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.footer__map iframe { display: block; width: 100%; height: 300px; border: 0; filter: grayscale(30%) invert(5%); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 640px) { .footer__bottom { flex-direction: row; justify-content: space-between; } }
.footer__copy { color: rgba(255,255,255,0.3); font-size: 0.75rem; }
.footer__legal { display: flex; gap: 1rem; font-size: 0.75rem; }
.footer__legal a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   BOOKING MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal-overlay.open { display: flex; }

.modal {
  background: #161616;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.5rem;
  width: 100%;
  max-width: 32rem;
  max-height: 90vh;
  overflow-y: auto;
}
.modal__inner { padding: 1.5rem; }
@media (min-width: 640px) { .modal__inner { padding: 2rem; } }

.modal__header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.5rem; }
.modal__title { font-size: 1.5rem; font-weight: 900; color: #fff; }
.modal__subtitle { color: #9ca3af; font-size: 0.875rem; margin-top: 0.25rem; }
.modal__close { background: none; border: none; cursor: pointer; color: #6b7280; transition: color 0.2s; margin-left: 1rem; padding: 0; }
.modal__close:hover { color: #fff; }
.modal__close svg { width: 1.5rem; height: 1.5rem; }

.modal__form { display: flex; flex-direction: column; gap: 1rem; }
.modal__row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .modal__row { grid-template-columns: repeat(2, 1fr); } }
.modal__field { display: flex; flex-direction: column; gap: 0.375rem; }
.modal__label { font-size: 0.75rem; color: #9ca3af; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }
.modal__input, .modal__select, .modal__textarea {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #fff;
  width: 100%;
  transition: border-color 0.2s;
  font-family: inherit;
}
.modal__input::placeholder, .modal__textarea::placeholder { color: #4b5563; }
.modal__input:focus, .modal__select:focus, .modal__textarea:focus {
  outline: none;
  border-color: rgba(249,115,22,0.5);
}
.modal__select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 2.5rem; }
.modal__textarea { resize: none; }

.modal__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(to right, #f97316, #ec4899);
  color: #fff;
  font-weight: 700;
  padding: 1rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
}
.modal__submit:hover { opacity: 0.9; }
.modal__submit svg { width: 1.25rem; height: 1.25rem; }
.modal__disclaimer { color: #4b5563; font-size: 0.75rem; text-align: center; }

.modal__success { text-align: center; padding: 2.5rem 0; display: none; }
.modal__success.active { display: block; }
.modal__success-icon {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #f97316, #ec4899);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.modal__success-icon svg { width: 2rem; height: 2rem; color: #fff; }
.modal__success-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; color: #fff; }
.modal__success-text { color: #9ca3af; font-size: 0.875rem; }
.modal__success-btn {
  display: inline-block;
  margin-top: 1.5rem;
  background: linear-gradient(to right, #f97316, #ec4899);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.modal__form-wrap { display: block; }
.modal__form-wrap.hidden { display: none; }

/* ============================================================
   SERVICE PAGE STYLES
   ============================================================ */
.sp-body { background: #0d0d0d !important; }

.sp-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sp-hero__ov1 { position: absolute; inset: 0; background: linear-gradient(to bottom, #000, #0d0d0d, #0d0d0d); }
.sp-hero__ov2 { position: absolute; inset: 0; background: linear-gradient(to top right, rgba(124,45,18,0.25), transparent, rgba(112,26,117,0.2)); }
.sp-hero__grid {
  position: absolute; inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 60px 60px;
}

.sp-hero__content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  padding: 8rem 1rem 5rem;
  text-align: center;
}
@media (min-width: 640px) { .sp-hero__content { padding: 8rem 1.5rem 5rem; } }

.sp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #d1d5db;
}
.sp-badge svg { width: 1rem; height: 1rem; color: #f97316; }

.sp-h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: #fff;
}
.sp-sub {
  color: #9ca3af;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.sp-ctas { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }
@media (min-width: 640px) { .sp-ctas { flex-direction: row; } }

.sp-stats { margin-top: 4rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .sp-stats { grid-template-columns: repeat(4, 1fr); } }
.sp-stat {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  transition: border-color 0.2s;
}
.sp-stat:hover { border-color: rgba(249,115,22,0.3); }
.sp-stat__val { font-family: 'Archivo Black', sans-serif; font-size: 1.875rem; }
.sp-stat__label { color: #9ca3af; font-size: 0.875rem; margin-top: 0.25rem; }

.sp-section { padding: 6rem 1rem; }
@media (min-width: 640px) { .sp-section { padding: 6rem 1.5rem; } }
.sp-section__inner { max-width: 80rem; margin: 0 auto; }
.sp-section--dark { background: #0a0a0a; }

.sp-label { color: #f97316; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 0.75rem; display: block; }
.sp-h2 { font-family: 'Archivo Black', sans-serif; font-size: clamp(2rem, 4vw, 3rem); color: #fff; }

.features-grid { display: grid; gap: 1.25rem; margin-top: 4rem; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
  background: #161616;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(249,115,22,0.3); }
.feature-card__icon { font-size: 1.875rem; margin-bottom: 1rem; }
.feature-card__title { font-weight: 700; font-size: 0.875rem; margin-bottom: 0.5rem; color: #fff; }
.feature-card__desc { color: #6b7280; font-size: 0.75rem; line-height: 1.6; }

.packages-grid { display: grid; gap: 1.5rem; align-items: start; }
@media (min-width: 768px) { .packages-grid { grid-template-columns: repeat(3, 1fr); } }

.package-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: #161616;
}
.package-card--highlight { background: linear-gradient(to bottom right, #1f1410, #1a1020); border-color: rgba(249,115,22,0.4); }
.package-card__badge {
  position: absolute;
  top: 0; right: 1.5rem;
  transform: translateY(-50%);
  background: linear-gradient(to right, #f97316, #ec4899);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
}
.package-card__tier { font-size: 0.75rem; color: #f97316; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 0.25rem; }
.package-card__duration { font-family: 'Archivo Black', sans-serif; font-size: 1.5rem; color: #fff; }
.package-card__features { display: flex; flex-direction: column; gap: 0.75rem; flex: 1; list-style: none; }
.package-card__feature { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: #d1d5db; }
.package-card__feature svg { width: 1rem; height: 1rem; color: #4ade80; flex-shrink: 0; margin-top: 0.0625rem; }
.package-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  padding: 0.875rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
  color: #fff;
  text-align: center;
}
.package-card__cta--highlight { background: linear-gradient(to right, #f97316, #ec4899); }
.package-card__cta--highlight:hover { opacity: 0.9; }
.package-card__cta--outline { border: 1px solid rgba(255,255,255,0.2); background: transparent; }
.package-card__cta--outline:hover { background: rgba(255,255,255,0.05); }
.package-card__cta svg { width: 1rem; height: 1rem; }

.addons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 32rem; margin: 3rem auto 0; }
@media (min-width: 640px) { .addons-grid { grid-template-columns: repeat(4, 1fr); max-width: none; } }
.addon-card {
  background: #161616;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: border-color 0.2s;
}
.addon-card:hover { border-color: rgba(249,115,22,0.3); }
.addon-card__icon { font-size: 1.875rem; }
.addon-card__label { font-size: 0.75rem; font-weight: 600; color: #d1d5db; line-height: 1.3; }

.specs-table {
  background: #161616;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.5rem;
  overflow: hidden;
  margin-top: 3rem;
}
.specs-row { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; }
.specs-row + .specs-row { border-top: 1px solid rgba(255,255,255,0.05); }
.specs-row__label { color: #9ca3af; font-size: 0.875rem; }
.specs-row__val { color: #fff; font-size: 0.875rem; font-weight: 600; text-align: right; max-width: 55%; }

.sp-cta-wrap { padding: 6rem 1rem; }
@media (min-width: 640px) { .sp-cta-wrap { padding: 6rem 1.5rem; } }
.sp-cta-inner { max-width: 56rem; margin: 0 auto; position: relative; }
.sp-cta-glow {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(249,115,22,0.2), rgba(236,72,153,0.2));
  border-radius: 1.5rem;
  filter: blur(2rem);
}
.sp-cta-box {
  position: relative;
  background: linear-gradient(to bottom right, #1f1410, #1a1020);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  text-align: center;
}
@media (min-width: 640px) { .sp-cta-box { padding: 4rem; } }
.sp-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #fdba74;
}
.sp-cta-badge svg { width: 1rem; height: 1rem; }
.sp-cta-h2 { font-family: 'Archivo Black', sans-serif; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; color: #fff; }
.sp-cta-sub { color: #9ca3af; font-size: 1.125rem; max-width: 28rem; margin: 0 auto 2.5rem; }
.sp-cta-btns { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }
@media (min-width: 640px) { .sp-cta-btns { flex-direction: row; } }
.sp-cta-checks { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 2rem; font-size: 0.875rem; color: #6b7280; }
.sp-cta-check { display: flex; align-items: center; gap: 0.375rem; }
.sp-cta-check svg { width: 1rem; height: 1rem; color: #4ade80; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
