/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-deep: #07001a;
  --bg-mid: #12003a;
  --purple-1: #5a00cc;
  --purple-2: #7c2be8;
  --purple-3: #9d4edd;
  --purple-light: #c77dff;
  --accent: #bf00ff;
  --white: #ffffff;
  --white-60: rgba(255,255,255,0.6);
  --white-30: rgba(255,255,255,0.3);
  --white-10: rgba(255,255,255,0.08);
  --glass-bg: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.1);
  --glass-border-hover: rgba(200,150,255,0.35);
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-glow: 0 0 40px rgba(140,0,255,0.3);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lexend', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-deep);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--purple-2); border-radius: 4px; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(7,0,26,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

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

.logo-area { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.logo-img { height: 36px; width: auto; }
.logo-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}
.logo-text span { color: var(--purple-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--white-60);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: linear-gradient(135deg, var(--purple-1), var(--purple-2));
  color: white !important;
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 500 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 24px rgba(124,43,232,0.5) !important;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 20%, #2d0060 0%, #0d0020 50%, #07001a 100%);
}

/* SPHERES */
.spheres-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.sphere-1 {
  width: 520px; height: 520px;
  top: -140px; right: -120px;
  background: radial-gradient(circle at 35% 35%, #9d4edd 0%, #5a00cc 40%, #2d0060 70%, transparent 100%);
  animation: float1 8s ease-in-out infinite;
}
.sphere-2 {
  width: 380px; height: 380px;
  bottom: -80px; left: -100px;
  background: radial-gradient(circle at 40% 40%, #7c2be8 0%, #3d0090 50%, transparent 100%);
  animation: float2 10s ease-in-out infinite;
}
.sphere-3 {
  width: 240px; height: 240px;
  top: 55%; left: 60%;
  background: radial-gradient(circle at 40% 40%, #bf00ff 0%, #6600cc 50%, transparent 100%);
  opacity: 0.5;
  animation: float3 7s ease-in-out infinite;
}
.sphere-4 {
  width: 160px; height: 160px;
  top: 20%; left: 15%;
  background: radial-gradient(circle at 40% 40%, #c77dff 0%, #7000cc 60%, transparent 100%);
  opacity: 0.4;
  animation: float1 12s ease-in-out infinite reverse;
}
.sphere-5 {
  width: 100px; height: 100px;
  top: 70%; right: 20%;
  background: radial-gradient(circle at 40% 40%, #e040fb 0%, #9d00e0 50%, transparent 100%);
  opacity: 0.35;
  animation: float2 9s ease-in-out infinite reverse;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-30px) translateX(15px); }
  66% { transform: translateY(15px) translateX(-10px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(5deg); }
}
@keyframes float3 {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.1) translateY(-20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(157,78,221,0.2);
  border: 1px solid rgba(157,78,221,0.4);
  color: var(--purple-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--white);
}

.gradient-text {
  background: linear-gradient(135deg, #c77dff 0%, #e040fb 50%, #ff6ddf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--white-60);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--purple-1) 0%, var(--purple-2) 50%, var(--accent) 100%);
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 30px rgba(140,0,255,0.4);
  font-family: 'Lexend', sans-serif;
  letter-spacing: -0.2px;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(140,0,255,0.6); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white-60);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 400;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  color: white;
  border-color: var(--white-30);
  background: var(--white-10);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.stat strong {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat span { font-size: 0.75rem; color: var(--white-60); font-weight: 300; text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 40px; background: var(--glass-border); }

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white-30);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--white-30), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ========== SECTIONS SHARED ========== */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.section-label {
  display: inline-block;
  color: var(--purple-light);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 6px 16px;
  background: rgba(157,78,221,0.12);
  border-radius: 50px;
  border: 1px solid rgba(157,78,221,0.2);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--white);
}

.section-sub {
  color: var(--white-60);
  font-size: 1rem;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* ========== PLATFORMS ========== */
.platforms {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0f002e 50%, var(--bg-deep) 100%);
  position: relative;
}

.platforms-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-width: 130px;
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(157,78,221,0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.platform-card:hover {
  transform: translateY(-6px) scale(1.04);
  border-color: var(--glass-border-hover);
  box-shadow: 0 12px 40px rgba(140,0,255,0.25), 0 0 0 1px rgba(200,150,255,0.2);
}
.platform-card:hover::before { opacity: 1; }

.platform-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.platform-icon img { width: 40px; height: 40px; object-fit: contain; }

.netflix { background: linear-gradient(135deg, #1a0010, #3a0015); box-shadow: 0 4px 20px rgba(229,9,20,0.3); }
.spotify { background: linear-gradient(135deg, #001a0a, #003318); box-shadow: 0 4px 20px rgba(29,185,84,0.3); }
.youtube { background: linear-gradient(135deg, #1a0000, #330000); box-shadow: 0 4px 20px rgba(255,0,0,0.3); }
.canva { background: linear-gradient(135deg, #001a1b, #003335); box-shadow: 0 4px 20px rgba(0,196,204,0.3); }
.capcut { background: linear-gradient(135deg, #0a0a0a, #1a1a1a); box-shadow: 0 4px 20px rgba(255,255,255,0.15); }

.platform-card span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white-60);
  position: relative;
  z-index: 1;
}
.platform-card:hover span { color: var(--white); }

/* ========== BENEFITS ========== */
.benefits {
  padding: 100px 0;
  position: relative;
  background: radial-gradient(ellipse at center, #1a003a 0%, var(--bg-deep) 70%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 0;
  text-align: left;
}

.benefit-card {
  padding: 36px 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(157,78,221,0.15), transparent 70%);
  pointer-events: none;
}

.benefit-card.featured {
  background: linear-gradient(135deg, rgba(90,0,204,0.25) 0%, rgba(124,43,232,0.15) 100%);
  border-color: rgba(157,78,221,0.35);
  box-shadow: 0 0 60px rgba(157,78,221,0.15);
}

.benefit-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.benefit-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-1), var(--purple-2));
  margin-bottom: 24px;
  box-shadow: 0 4px 24px rgba(124,43,232,0.4);
}

.benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--white-60);
  font-weight: 300;
  line-height: 1.7;
}

/* ========== SUBSCRIBE SECTION ========== */
.subscribe {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #100030 50%, var(--bg-deep) 100%);
}

.selector-card {
  max-width: 520px;
  margin: 0 auto;
  background: rgba(20, 0, 50, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(30px);
  padding: 40px;
  box-shadow: var(--shadow-glow), var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.selector-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-2), var(--accent), transparent);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.selector-top { margin-bottom: 28px; }

.selector-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.custom-select-wrapper { position: relative; }

.custom-select {
  width: 100%;
  padding: 14px 48px 14px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  color: var(--white);
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.custom-select:focus {
  border-color: var(--purple-3);
  background: rgba(157,78,221,0.1);
}
.custom-select option { background: #1a003a; color: var(--white); }

.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--white-60);
}

.platform-info {
  border-top: 1px solid var(--glass-border);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.platform-info.hidden { display: none; }

.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 16px 18px;
}

.info-label {
  display: block;
  font-size: 0.7rem;
  color: var(--white-30);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-weight: 500;
}

.status-badge {
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.status-badge.available { color: #4ade80; }
.status-badge.unavailable { color: #f87171; }
.status-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.status-badge.available::before { background: #4ade80; box-shadow: 0 0 8px #4ade80; animation: pulse-green 2s infinite; }
.status-badge.unavailable::before { background: #f87171; }

@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.price-display {
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--white) 0%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pay-btn {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 16px 32px;
}

.selector-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--white-30);
  margin-top: 20px;
  font-weight: 300;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-deep);
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  padding: 32px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  text-align: center;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}
.step:hover { border-color: var(--glass-border-hover); transform: translateY(-4px); }

.step-num {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.step h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.step p {
  font-size: 0.85rem;
  color: var(--white-60);
  font-weight: 300;
  line-height: 1.6;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--white-30);
  align-self: center;
  flex-shrink: 0;
}

/* ========== FOOTER ========== */
.footer {
  background: #040010;
  border-top: 1px solid var(--glass-border);
  padding: 60px 24px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p {
  color: var(--white-60);
  font-size: 0.9rem;
  font-weight: 300;
  margin-top: 8px;
  max-width: 260px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white-60);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-links a svg { flex-shrink: 0; opacity: 0.7; }

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  text-align: center;
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--white-30);
  font-weight: 300;
}

/* ========== HAMBURGER BUTTON ========== */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
  z-index: 200;
  flex-shrink: 0;
}
.menu-btn:hover {
  background: rgba(157,78,221,0.2);
  border-color: rgba(157,78,221,0.4);
}
.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}

/* X state when open */
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; width: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay behind mobile menu */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-overlay.visible {
  display: block;
  opacity: 1;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
  .menu-btn { display: flex; }
  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: min(300px, 80vw);
    height: 100vh;
    background: rgba(12, 0, 35, 0.97);
    backdrop-filter: blur(30px);
    border-left: 1px solid var(--glass-border);
    padding: 90px 28px 40px;
    gap: 6px;
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 1.05rem;
    padding: 14px 16px;
    border-radius: 12px;
    color: var(--white-60);
    font-weight: 400;
    transition: background 0.2s, color 0.2s;
  }
  .nav-links a:hover { background: rgba(157,78,221,0.15); color: var(--white); }
  .nav-links .nav-cta {
    margin-top: 12px;
    background: linear-gradient(135deg, var(--purple-1), var(--purple-2));
    color: white !important;
    text-align: center;
    padding: 14px 16px !important;
  }
  .hero-title { font-size: 2.1rem; letter-spacing: -0.5px; }
  .hero-content { padding: 100px 20px 60px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-stats { gap: 20px; }
  .stat-divider { height: 28px; }
  .platforms-grid { gap: 12px; }
  .platform-card { min-width: 100px; padding: 20px 16px; }
  .platform-icon { width: 52px; height: 52px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .info-row { grid-template-columns: 1fr; }
  .selector-card { padding: 28px 20px; }
  .steps-grid { flex-direction: column; align-items: stretch; }
  .step-arrow { transform: rotate(90deg); align-self: center; }
  .step { max-width: 100%; min-width: unset; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .section-sub { margin-bottom: 36px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.7rem; }
  .hero-badge { font-size: 0.7rem; }
  .platforms-grid { justify-content: center; }
  .platform-card { min-width: 85px; padding: 16px 12px; }
  .platform-card span { font-size: 0.75rem; }
}
