/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0e1a;
  color: #c8cdd8;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== CSS VARIABLES ===== */
:root {
  --accent: #f97316;
  --accent-2: #fb923c;
  --accent-glow: rgba(249, 115, 22, 0.25);
  --bg-dark: #0a0e1a;
  --bg-card: #111827;
  --bg-card-2: #1a2236;
  --border: rgba(255,255,255,0.06);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --gradient-1: linear-gradient(135deg, #f97316, #ef4444, #ec4899);
  --gradient-2: linear-gradient(135deg, #0a0e1a 0%, #1e1b4b 50%, #0a0e1a 100%);
  --gradient-hero: radial-gradient(ellipse at 50% 0%, rgba(249,115,22,0.15) 0%, transparent 60%);
  --section-pad: 100px 0;
  --container: 1200px;
}

/* ===== UTILITY ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 48px;
}
.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--gradient-1);
  color: #fff;
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes count-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.animate-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FAKE COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111827;
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { max-width: 800px; }
.cookie-banner strong { color: var(--text-primary); }
.cookie-btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  border: none;
  font-family: inherit;
  white-space: nowrap;
  background: var(--accent);
  color: #fff;
}
.cookie-btn:hover { opacity: 0.9; }

/* ===== STATUS BAR ===== */
.status-bar {
  position: fixed;
  bottom: 80px;
  right: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.status-bar.show { opacity: 1; }
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-glow 2s infinite;
}

/* ===== STICKY NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}
.nav.scrolled {
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo .logo-icon {
  width: 32px;
  height: 32px;
  background: var(--gradient-1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  padding: 9px 22px !important;
  font-size: 0.82rem !important;
  border-radius: 9px !important;
}
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: rgba(249, 115, 22, 0.08);
  top: -200px; right: -200px;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: rgba(139, 92, 246, 0.06);
  bottom: -150px; left: -200px;
}
.hero-content {
  position: relative;
  text-align: center;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -2px;
}
.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-countdown {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.countdown-block {
  text-align: center;
}
.countdown-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 4px;
}
.countdown-sep {
  font-size: 2rem;
  color: var(--text-muted);
  align-self: flex-start;
  padding-top: 4px;
}

/* Floating cards (hero decoration) */
.hero-float-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.float-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.72rem;
  color: var(--text-secondary);
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.float-card-1 {
  top: 22%; left: 4%;
  animation-delay: 0s;
}
.float-card-2 {
  top: 35%; right: 3%;
  animation-delay: 2s;
}
.float-card-3 {
  bottom: 20%; left: 8%;
  animation-delay: 4s;
}
.float-card .fc-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
}
.float-card .fc-green { color: #22c55e; }
.float-card .fc-label {
  color: var(--text-muted);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}
.trust-strip::before, .trust-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
}
.trust-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-dark), transparent);
}
.trust-strip::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-dark), transparent);
}
.trust-ticker {
  display: flex;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
}

/* ===== METRICS ===== */
.metrics {
  padding: var(--section-pad);
  background: var(--gradient-2);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.metric-card:hover {
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.metric-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.metric-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== PROBLEM / SOLUTION ===== */
.problem-solution {
  padding: var(--section-pad);
  background: var(--bg-dark);
}
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.ps-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.ps-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.ps-card.legacy::before { background: linear-gradient(90deg, #ef4444, #f97316); }
.ps-card.modern::before { background: linear-gradient(90deg, #22c55e, #3b82f6); }
.ps-card-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.ps-card.legacy .ps-card-badge {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.ps-card.modern .ps-card-badge {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}
.ps-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.ps-card p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 0.92rem;
}
.ps-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.ps-list .icon-x { color: #ef4444; font-weight: 700; }
.ps-list .icon-check { color: #22c55e; font-weight: 700; }

/* ===== PRODUCT STACK ===== */
.product-stack {
  padding: var(--section-pad);
  background: var(--gradient-2);
}
.ps-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-4px);
}
.feature-card.coming-soon { opacity: 0.6; }
.feature-card.coming-soon:hover { opacity: 0.8; }
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.feature-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent);
  margin-top: 12px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: var(--section-pad);
  background: var(--bg-dark);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #ec4899, #8b5cf6, #3b82f6);
  opacity: 0.3;
}
.step-card { text-align: center; position: relative; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}
.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== PHOTO GALLERY ===== */
.gallery {
  padding: var(--section-pad);
  background: var(--gradient-2);
  overflow: hidden;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

/* ===== EVENT DETAILS ===== */
.event-details {
  padding: var(--section-pad);
  background: var(--bg-dark);
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.detail-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.detail-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.detail-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.detail-highlight {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
}

/* ===== PRICING TIERS ===== */
.pricing {
  padding: var(--section-pad);
  background: var(--gradient-2);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.price-card:hover {
  transform: translateY(-4px);
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 60px var(--accent-glow);
}
.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 31px;
  right: -40px;
  background: var(--gradient-1);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 5px 40px;
  transform: rotate(45deg);
}
.price-card-tier {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 8px;
}
.price-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.price-card .price-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.price-card .price-features {
  margin-bottom: 32px;
}
.price-card .price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.price-card .price-features .pf-check { color: #22c55e; font-weight: 700; }
.price-card .price-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.price-card .price-btn-primary {
  background: var(--gradient-1);
  color: #fff;
}
.price-card .price-btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-primary);
}
.price-card .price-btn:hover { transform: translateY(-2px); }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-pad);
  background: var(--bg-dark);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-primary);
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq {
  padding: var(--section-pad);
  background: var(--gradient-2);
}
.faq-list {
  max-width: 768px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question:hover { color: var(--accent); }
.faq-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: var(--text-muted);
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 0 24px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-answer a {
  transition: color 0.3s;
  text-decoration: underline;
}
.faq-answer a:hover {
  color: var(--accent);
}

/* ===== LEADERSHIP ===== */
.leadership {
  padding: var(--section-pad);
  background: var(--bg-dark);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}
.team-card:hover {
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-4px);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 2px solid var(--border);
}
.team-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.team-card .team-role {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(249,115,22,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
}
.final-cta p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 40px;
  position: relative;
}
.final-cta .hero-buttons { position: relative; }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}
.footer p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer a { color: var(--accent); }
.footer .footer-series {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(249,115,22,0.08);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 12px;
}

/* ===== POPUP ===== */
.user-popup {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-120px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}
.user-popup.show {
  transform: translateX(-50%) translateY(0);
}
.user-popup .popup-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .ps-features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .float-card { display: none; }
}
@media (max-width: 768px) {
  :root { --section-pad: 72px 0; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.98);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .hero { min-height: auto; padding: 140px 24px 60px; }
  .hero h1 { letter-spacing: -1px; }
  .ps-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .ps-features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .details-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .countdown-num { font-size: 1.8rem; }
  .hero-countdown { gap: 16px; }
  .status-bar { display: none; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .price-card { padding: 28px 20px; }
}
