/* P Digital Network Music - Professional Theme */
:root {
  --primary: #6c35de;
  --primary-dark: #5127b0;
  --primary-light: #9b6fea;
  --secondary: #e91e8c;
  --accent: #00d4ff;
  --dark: #0a0a0f;
  --dark2: #111118;
  --dark3: #1a1a24;
  --dark4: #22222e;
  --card-bg: #16161f;
  --border: rgba(255,255,255,0.08);
  --text: #e8e8f0;
  --text-muted: #8888aa;
  --text-light: #ffffff;
  --gradient: linear-gradient(135deg, #6c35de 0%, #e91e8c 100%);
  --gradient2: linear-gradient(135deg, #00d4ff 0%, #6c35de 100%);
  --shadow: 0 20px 60px rgba(108,53,222,0.2);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--primary-light); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* Typography */
h1, h2, h3, h4, h5, h6 { color: var(--text-light); font-weight: 700; line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
p { color: var(--text-muted); margin-bottom: 1rem; }

/* Gradient Text */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text2 {
  background: var(--gradient2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(108,53,222,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108,53,222,0.6);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(108,53,222,0.1);
  color: var(--primary-light);
}
.btn-secondary {
  background: var(--dark4);
  color: var(--text-light);
  border: 1px solid var(--border);
}
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-fluid { width: 100%; padding: 0 20px; }

/* Section */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(108,53,222,0.15);
  border: 1px solid rgba(108,53,222,0.3);
  border-radius: 50px;
  color: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ========== HEADER / NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.3s;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar.scrolled {
  background: rgba(10,10,15,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 50px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-text span:first-child {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.nav-logo-text span:last-child {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-menu a {
  padding: 8px 16px;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.92rem;
  border-radius: 8px;
  transition: all 0.2s;
  display: block;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--text-light);
  background: rgba(255,255,255,0.06);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  width: 100%;
}
.hero-video-wrap {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,15,0.55) 0%,
    rgba(10,10,15,0.35) 50%,
    rgba(10,10,15,0.85) 100%
  );
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 20% 50%, rgba(108,53,222,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(233,30,140,0.1) 0%, transparent 50%),
              radial-gradient(ellipse at 60% 80%, rgba(0,212,255,0.08) 0%, transparent 50%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 0.6; }
}
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 40px;
  box-sizing: border-box;
}
.hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(108,53,222,0.15);
  border: 1px solid rgba(108,53,222,0.3);
  border-radius: 50px;
  color: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-text .badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}
.hero-title { margin-bottom: 20px; font-size: 3.2rem; }
.hero-desc { font-size: 1.15rem; margin-bottom: 36px; line-height: 1.7; max-width: 640px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; justify-content: center; }
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.hero-stat-item { text-align: center; }
.hero-stat-item .number {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-stat-item .label { font-size: 0.8rem; color: var(--text-muted); }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
}
.music-player {
  background: var(--dark3);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.player-track {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.player-cover {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.player-info .title { font-weight: 600; font-size: 0.95rem; color: #fff; }
.player-info .artist { font-size: 0.8rem; color: var(--text-muted); }
.player-progress {
  height: 4px;
  background: var(--dark4);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}
.player-progress-fill {
  height: 100%;
  width: 65%;
  background: var(--gradient);
  border-radius: 2px;
  animation: progress 8s linear infinite;
}
@keyframes progress {
  0% { width: 0%; }
  100% { width: 100%; }
}
.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.player-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  background: transparent;
  transition: all 0.2s;
  font-size: 0.9rem;
}
.player-btn:hover { color: #fff; }
.player-btn.play {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(108,53,222,0.4);
}

.platform-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.platform-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}
.platform-pill img { width: 16px; height: 16px; border-radius: 3px; }

/* ========== PLATFORMS STRIP ========== */
.platforms-strip {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  overflow: hidden;
}
.platforms-scroll {
  display: flex;
  gap: 48px;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}
.platforms-scroll:hover { animation-play-state: paused; }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.platform-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  transition: opacity 0.3s;
  flex-shrink: 0;
  height: 44px;
}
.platform-item:hover { opacity: 1; }
.platform-item img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(108,53,222,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(108,53,222,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.service-card p { font-size: 0.9rem; line-height: 1.6; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--primary-light);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ========== STATS ========== */
.stats-section {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.stat-item {
  background: var(--dark2);
  padding: 48px 32px;
  text-align: center;
}
.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }

/* ========== PROCESS ========== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--gradient);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 72px;
  height: 72px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(108,53,222,0.4);
}
.process-step h4 { margin-bottom: 8px; font-size: 1rem; }
.process-step p { font-size: 0.85rem; }

/* ========== PRICING ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: all 0.3s;
}
.pricing-card.featured {
  background: linear-gradient(135deg, rgba(108,53,222,0.15), rgba(233,30,140,0.1));
  border-color: rgba(108,53,222,0.4);
  transform: scale(1.03);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-plan { font-size: 0.8rem; font-weight: 700; color: var(--primary-light); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.pricing-price { margin-bottom: 8px; }
.pricing-price .amount { font-size: 3rem; font-weight: 900; color: #fff; }
.pricing-price .currency { font-size: 1.5rem; font-weight: 700; color: var(--text-muted); vertical-align: top; margin-top: 12px; display: inline-block; }
.pricing-price .period { color: var(--text-muted); font-size: 0.9rem; }
.pricing-desc { margin-bottom: 28px; font-size: 0.9rem; }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: rgba(108,53,222,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--primary-light);
  flex-shrink: 0;
}
.pricing-features li.disabled { opacity: 0.4; }
.pricing-features li.disabled::before { content: '✕'; background: rgba(255,255,255,0.05); color: var(--text-muted); }

/* ========== FEATURES ========== */
.features-section { background: var(--dark2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
}
.feature-item:hover { border-color: rgba(108,53,222,0.3); }
.feature-icon { font-size: 1.6rem; flex-shrink: 0; }
.feature-item h4 { font-size: 0.95rem; margin-bottom: 6px; }
.feature-item p { font-size: 0.83rem; margin: 0; }

/* ========== CTA ========== */
.cta-section {
  background: linear-gradient(135deg, rgba(108,53,222,0.2), rgba(233,30,140,0.15));
  border-top: 1px solid rgba(108,53,222,0.2);
  border-bottom: 1px solid rgba(108,53,222,0.2);
  text-align: center;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { font-size: 1.1rem; margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== FOOTER ========== */
.footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px;
  height: 38px;
  background: var(--dark4);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { margin: 0; font-size: 0.85rem; color: var(--text-muted); }

/* ========== ABOUT PAGE ========== */
.about-hero { padding: 120px 0 60px; text-align: center; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}
.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(108,53,222,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text .label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.contact-item-text .value { font-weight: 600; color: var(--text-light); font-size: 0.95rem; }

/* ========== RADIO & CHECKBOX ========== */
.radio-group, .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.radio-option, .checkbox-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.88rem;
  color: var(--text);
  transition: all 0.2s;
  background: var(--dark3);
  user-select: none;
}
.radio-option:hover, .checkbox-option:hover {
  border-color: var(--primary);
  background: rgba(108,53,222,0.08);
}
.radio-option input, .checkbox-option input {
  display: none;
}
.radio-custom, .checkbox-custom {
  width: 16px;
  height: 16px;
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkbox-custom { border-radius: 4px; }
.radio-option input:checked ~ .radio-custom {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(108,53,222,0.2);
}
.checkbox-option input:checked ~ .checkbox-custom {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(108,53,222,0.2);
}
.checkbox-option input:checked ~ .checkbox-custom::after {
  content: '✓';
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}
.radio-option input:checked ~ span:last-child,
.checkbox-option input:checked ~ span:last-child {
  color: #fff;
  font-weight: 600;
}
.radio-option:has(input:checked),
.checkbox-option:has(input:checked) {
  border-color: var(--primary);
  background: rgba(108,53,222,0.12);
}

/* ========== FORMS ========== */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-light);
  font-size: 0.95rem;
  transition: all 0.2s;
  outline: none;
  font-family: inherit;
}
.form-control:focus {
  border-color: var(--primary);
  background: var(--dark4);
  box-shadow: 0 0 0 3px rgba(108,53,222,0.15);
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ========== PAGE HERO ========== */
.page-hero {
  background: linear-gradient(135deg, rgba(108,53,222,0.12), rgba(233,30,140,0.08));
  border-bottom: 1px solid var(--border);
  padding: 100px 0 60px;
  text-align: center;
  margin-top: 72px;
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.page-hero .breadcrumb a { color: var(--primary-light); }

/* Feature Image */
.feature-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 32px 0;
}
.feature-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ========== CARDS ========== */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.card-body { padding: 24px; }
.card-header { padding: 20px 24px; border-bottom: 1px solid var(--border); }

/* ========== ALERTS ========== */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #4ade80; }
.alert-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #f87171; }
.alert-warning { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3); color: #fbbf24; }
.alert-info { background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.3); color: #60a5fa; }

/* ========== DISTRIBUTIONS PAGE ========== */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}
.platform-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.platform-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(108,53,222,0.15);
}
.platform-card img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.3s;
}
.platform-card:hover img { opacity: 1; }
.platform-card .icon { font-size: 2rem; margin-bottom: 4px; }
.platform-card .name { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); }

/* ========== BREADCRUMB ========== */
nav.breadcrumb-nav ol {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
}
nav.breadcrumb-nav ol li + li::before { content: '/'; color: var(--text-muted); }
nav.breadcrumb-nav ol li a { color: var(--primary-light); }
nav.breadcrumb-nav ol li:last-child { color: var(--text-muted); }

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 999;
  padding: 24px 20px;
  display: none;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  display: block;
}

/* ========== LOADER ========== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-ring {
  width: 60px;
  height: 60px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-menu, .nav-actions .btn:not(.btn-sm) { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-stats { gap: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-steps { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-buttons { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 16px; }
.w-100 { width: 100%; }
.hidden { display: none !important; }
