*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #000; --text: #fff;
  --muted: rgba(255,255,255,0.38);
  --muted2: rgba(255,255,255,0.18);
  --border: rgba(255,255,255,0.09);
  --ph: #141414;
  --accent: #6366f1;
  --accent-glow: rgba(99, 102, 241, 0.15);
  --f: "GT Walsheim Medium","GT Walsheim Medium Placeholder","Plus Jakarta Sans",sans-serif;
  --f-display: "Syne",var(--f);
}
html { scroll-behavior: smooth; }
body { 
  background: var(--bg); 
  color: var(--text); 
  font-family: var(--f); 
  overflow-x: hidden; 
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100vw;
}

/* Prevent text overflow */
p, h1, h2, h3, h4, h5, h6, span, div {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure all sections are contained */
section {
  max-width: 100%;
  overflow-x: hidden;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 60px;
  mix-blend-mode: difference;
}
nav.sc { /* прозрачный всегда */ }
.nav-logo {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.nav-logo:hover {
  transform: scale(1.05);
}
.nav-logo img { display: block; width: 36px; height: 36px; object-fit: contain; filter: brightness(100); }
.nav-links { position: absolute; left: 50%; transform: translateX(-50%); display: flex; gap: 32px; list-style: none; }
.nav-links a { 
  color: #fff; 
  font-size: 15px; 
  font-weight: 600; 
  text-decoration: none;
  transition: opacity 0.2s ease;
  position: relative;
}
.nav-links a:hover { opacity: .85; }
.nav-right { display: flex; gap: 10px; align-items: center; }
.btn-ghost { 
  padding: 8px 18px; 
  border-radius: 100px; 
  border: 1.5px solid #fff; 
  background: transparent; 
  color: #fff; 
  font-size: 14px; 
  font-weight: 700; 
  font-family: var(--f); 
  cursor: pointer; 
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-ghost:hover { 
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}
.btn-wh { 
  padding: 8px 18px; 
  border-radius: 100px; 
  background: #fff; 
  color: #000; 
  font-size: 14px; 
  font-weight: 800; 
  font-family: var(--f); 
  cursor: pointer; 
  text-decoration: none; 
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}
.btn-wh:hover { 
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* ── HERO ── */
.hero { 
  min-height: 100vh; 
  display: flex; 
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  padding: 60px 60px 80px; 
  position: relative;
  overflow: hidden;
}

/* Background decorations */
.hero-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}

.bg-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #6366f1, transparent);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.bg-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #8b5cf6, transparent);
  bottom: -50px;
  right: 10%;
  animation-delay: 2s;
}

.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black, transparent);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-container {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  margin-top: 60px;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
  min-height: 700px;
}
.hero-left { 
  display: flex; 
  flex-direction: column; 
  gap: 28px;
  align-items: flex-start;
  text-align: left;
  justify-self: start;
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-left h1 { 
  font-size: clamp(56px, 9vw, 110px); 
  font-weight: 900; 
  line-height: .88; 
  letter-spacing: -4px; 
  max-width: 860px;
  font-family: var(--f-display);
  margin-bottom: 0;
  position: relative;
  display: inline-block;
}

.gradient-text {
  color: #fff;
  display: inline-block;
  position: relative;
}

.title-club {
  position: relative;
  display: inline-block;
}
.hero-right {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  perspective: 1200px;
}

.hero-right::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08), transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.8; transform: translateY(-50%) scale(1.1); }
}

/* YouTube-style Player */
.yt-container {
  position: relative;
  width: 100%;
  animation: slideInRight 0.8s ease-out;
  z-index: 1;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.yt-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #181818;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Video Wrapper */
.yt-video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Logo */
.yt-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: blur(8px) contrast(0.5) brightness(0.6);
  image-rendering: pixelated;
  transition: all 1s ease;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.yt-logo.visible {
  opacity: 1;
}

/* Playback Status Text */
.yt-status-text {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--f);
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.yt-status-text.show {
  animation: statusTextAppear 0.5s ease-out forwards;
}

@keyframes statusTextAppear {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes statusTextPulse {
  0%, 100% {
    opacity: 0.8;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.8);
  }
}

.yt-logo.hq {
  filter: blur(0) contrast(1) brightness(1) drop-shadow(0 0 40px rgba(99, 102, 241, 0.8));
  image-rendering: auto;
}

@keyframes logoPlayingStatic {
  0%, 100% {
    filter: blur(0) contrast(1) brightness(1) drop-shadow(0 0 50px rgba(255, 255, 255, 0.8));
  }
}

/* Cursor fade out */
.yt-cursor.fade-out {
  animation: cursorFadeOut 0.8s ease-out forwards;
}

@keyframes cursorFadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.5);
  }
}

/* Loading Spinner */
.yt-spinner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

@keyframes fadeOut {
  to { opacity: 0; pointer-events: none; }
}

.spinner-circle {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Connect Button Overlay */
.yt-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  z-index: 3;
  opacity: 0;
  animation: fadeInOverlay 0.6s ease 3s forwards;
  transition: opacity 0.3s ease;
}

@keyframes fadeInOverlay {
  to { opacity: 1; }
}

.yt-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.yt-connect-btn {
  padding: 14px 32px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--f);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: buttonPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 3s both;
}

@keyframes buttonPop {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes buttonExplode {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    filter: brightness(1.5);
  }
  100% {
    opacity: 0;
    transform: scale(0.2) translateY(-20px);
    filter: brightness(0);
  }
}

.yt-connect-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* YouTube Controls Bar */
.yt-controls-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.9) 40%);
  padding: 8px 12px;
  opacity: 1;
  z-index: 5;
}

.yt-controls-bar.visible {
  opacity: 1;
}

/* Progress Bar */
.yt-progress {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin-bottom: 8px;
  cursor: pointer;
  position: relative;
}

.yt-progress:hover {
  height: 5px;
}

.yt-progress-filled {
  height: 100%;
  background: #f00;
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

/* Control Buttons */
.yt-controls-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.yt-controls-left,
.yt-controls-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.yt-btn {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border-radius: 4px;
}

.yt-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

#settingsBtn {
  pointer-events: none;
}

.yt-time {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--f);
}

/* Settings Menu */
.yt-settings-menu {
  position: absolute;
  bottom: 60px;
  right: 50px;
  background: rgba(28, 28, 28, 0.98);
  border-radius: 8px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  min-width: 180px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.yt-settings-menu.visible {
  display: flex;
  animation: menuPopIn 0.2s ease;
}

@keyframes menuPopIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.yt-settings-header {
  color: #aaa;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 4px;
  font-family: var(--f);
}

.yt-quality-option {
  background: transparent;
  border: none;
  color: #fff;
  padding: 10px 12px;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--f);
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
  pointer-events: none;
}

.yt-quality-option:hover {
  background: rgba(255, 255, 255, 0.1);
}

.yt-quality-option.active {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 600;
}

/* Animated Cursor */
.yt-cursor {
  position: absolute;
  width: 24px;
  height: 24px;
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  transition: all 0.05s linear;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

.yt-cursor.visible {
  opacity: 1;
}

/* YouTube Video Info Section */
.yt-video-info {
  margin-top: 20px;
  padding: 0 12px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.yt-video-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.4;
  font-family: var(--f);
}

.yt-video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.yt-channel-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.yt-channel-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  font-family: var(--f);
}

.yt-channel-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.yt-channel-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  font-family: var(--f);
}

.yt-channel-subs {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--f);
}

.yt-subscribe-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 10px 16px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--f);
  cursor: pointer;
  transition: all 0.2s ease;
}

.yt-subscribe-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}

.yt-subscribe-btn:active {
  transform: scale(0.98);
}

.yt-actions {
  display: flex;
  gap: 8px;
}

.yt-action-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 20px;
  padding: 10px 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--f);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.yt-action-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.yt-action-btn:active {
  transform: translateY(0);
}

.yt-video-stats {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  display: flex;
  gap: 6px;
  font-family: var(--f);
}

.yt-video-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-family: var(--f);
}

.yt-video-description p {
  margin-bottom: 8px;
}

.yt-show-more {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--f);
  cursor: pointer;
  padding: 0;
  text-transform: uppercase;
}

.yt-show-more:hover {
  color: #fff;
}

/* YouTube Recommendations */
.yt-recommendations {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding: 0 12px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.yt-rec-item {
  display: flex;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 8px;
  margin: -8px;
  border-radius: 8px;
}

.yt-rec-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.yt-rec-thumbnail {
  width: 168px;
  height: 94px;
  background: linear-gradient(135deg, #1c1c1c 0%, #0a0a0a 100%);
  border-radius: 8px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.yt-rec-thumbnail::before {
  content: 'W';
  font-size: 36px;
  font-weight: 800;
  color: rgba(99, 102, 241, 0.3);
  font-family: var(--f-display);
}

.yt-rec-duration {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 4px;
  border-radius: 2px;
  font-family: var(--f);
}

.yt-rec-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 0;
}

.yt-rec-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--f);
}

.yt-rec-channel {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--f);
}

.yt-rec-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--f);
}

.hero-desc { 
  font-size: 17px; 
  color: rgba(255, 255, 255, 0.55); 
  max-width: 520px; 
  line-height: 1.65; 
  font-weight: 500;
  margin-bottom: 4px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  margin: 8px 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--f-display);
  line-height: 1;
  white-space: nowrap;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.1), transparent);
}

.hero-features {
  display: none;
}

.hero-feature {
  display: none;
}
.hero-btns { 
  display: flex; 
  gap: 12px; 
  flex-shrink: 0;
  margin-top: 12px;
  width: fit-content;
}

.btn-h-wh { 
  padding: 14px 32px; 
  border-radius: 100px; 
  background: linear-gradient(135deg, #fff 0%, #f3f4f6 100%);
  color: #000; 
  font-size: 15px; 
  font-weight: 800; 
  font-family: var(--f); 
  text-decoration: none; 
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  width: auto;
}

.btn-h-wh::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s ease;
}

.btn-h-wh:hover::before {
  left: 100%;
}

.btn-h-wh:hover { 
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.25);
}

.btn-h-wh svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-h-wh:hover svg {
  transform: translateX(3px);
}
.btn-h-dk { 
  padding: 14px 32px; 
  border-radius: 100px; 
  background: transparent;
  color: #fff; 
  font-size: 15px; 
  font-weight: 700; 
  font-family: var(--f); 
  text-decoration: none; 
  transition: all 0.3s ease;
  border: 1.5px solid #fff;
}

.btn-h-dk:hover { 
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ── HERO IMAGES ── */
.hero-img-row { display: none; }
.hero-img-main { height: 440px; display: block; width: 100%; border-radius: 16px; object-fit: cover; }
.hero-img-side { display: flex; flex-direction: column; gap: 6px; }
.hero-img-side img { flex: 1; width: 100%; min-height: 0; border-radius: 16px; object-fit: cover; display: block; }

/* ── PLACEHOLDER ── */
.ph-block {
  background: var(--ph); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px;
  color: rgba(255,255,255,0.15); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  position: relative; overflow: hidden;
}
.ph-block::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(255,255,255,.022) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px);
  background-size: 28px 28px;
}
.ph-icon { font-size: 26px; opacity: .18; position: relative; z-index: 1; }
.ph-label { position: relative; z-index: 1; }

/* ── DIVIDER ── */
hr.dv { border: none; border-top: 1px solid var(--border); margin: 0 48px; }

/* ════════════════════════════════════════
   FEATURES GRID SECTION
════════════════════════════════════════ */
.features-grid {
  padding: 100px 48px;
}
.features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.feature-card:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
.feature-card:nth-child(2) { grid-column: 3 / 4; grid-row: 1; }
.feature-card:nth-child(3) { grid-column: 2 / 4; grid-row: 2; }
.feature-card:nth-child(4) { grid-column: 1 / 2; grid-row: 2; }
.feature-card { 
  background: linear-gradient(135deg, #0c0c0c 0%, #050505 100%);
  border: 1px solid rgba(255, 255, 255, 0.08); 
  border-radius: 20px; 
  padding: 32px 28px; 
  transition: all 0.8s cubic-bezier(0.35, 0, 0.15, 1);
  display: flex; 
  flex-direction: column; 
  min-height: 240px;
  position: relative;
  overflow: hidden;
}

.feature-card:hover { 
  background: linear-gradient(135deg, #141414 0%, #0a0a0a 100%);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.05);
}
.feature-tag { 
  font-size: 11px; 
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800; 
  letter-spacing: 1.5px; 
  margin-bottom: 20px; 
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-tag {
  color: #fff;
}

.feature-title { 
  font-size: 22px; 
  font-weight: 800; 
  letter-spacing: -.5px; 
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.feature-desc { 
  font-size: 14px; 
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7; 
  font-weight: 500;
}
.feature-link { display: none; }

/* ── 3 CARDS ── */
.cards-s { padding: 100px 48px; }
.cards-s h2 { font-size: clamp(36px, 5vw, 72px); font-weight: 800; letter-spacing: -2px; line-height: .93; margin-bottom: 40px; }
.c3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

.cc { 
  background: linear-gradient(135deg, #0c0c0c 0%, #050505 100%);
  border: 1px solid rgba(255, 255, 255, 0.08); 
  border-radius: 20px; 
  padding: 40px 32px; 
  transition: all 0.8s cubic-bezier(0.35, 0, 0.15, 1);
  position: relative;
  overflow: hidden;
}

.cc:hover { 
  background: linear-gradient(135deg, #141414 0%, #0a0a0a 100%);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.1);
}

.cc-n { 
  display: none;
}

.cc-name { 
  font-size: 24px; 
  font-weight: 800; 
  letter-spacing: -.6px; 
  margin-bottom: 14px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cc-desc { 
  font-size: 14px; 
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7; 
  font-weight: 500;
}

/* ── PRICING ── */
.price-s { padding: 100px 48px; }
.ph2 { margin-bottom: 40px; }
.ph2 h2 { font-size: clamp(40px, 5.5vw, 76px); font-weight: 800; letter-spacing: -2px; line-height: .93; margin-bottom: 12px; }
.ph2 p { font-size: 15px; color: var(--muted); line-height: 1.65; max-width: none; font-weight: 500; }
.p4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

.pc { 
  border: 1px solid rgba(255, 255, 255, 0.08); 
  border-radius: 20px; 
  padding: 36px 28px; 
  background: linear-gradient(135deg, #0c0c0c 0%, #050505 100%);
  display: flex; 
  flex-direction: column; 
  position: relative; 
  transition: all 0.8s cubic-bezier(0.35, 0, 0.15, 1);
  overflow: hidden;
}

.pc::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.35, 0, 0.15, 1);
}

.pc:hover { 
  background: linear-gradient(135deg, #141414 0%, #0a0a0a 100%);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.1);
}

.pc:hover::before {
  opacity: 1;
}

.pc.hot { 
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, #0a0a0a 100%);
  box-shadow: 0 4px 30px rgba(255, 255, 255, 0.08);
}

.pc.hot:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 50px rgba(255, 255, 255, 0.12);
}
.hbadge { 
  position: absolute; 
  top: 20px; 
  right: 20px; 
  font-size: 10px; 
  font-weight: 800; 
  letter-spacing: .5px; 
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px; 
  border-radius: 100px; 
  text-transform: uppercase;
  z-index: 10;
}

.pc.hot .hbadge {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.pn { font-size: 11px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 24px; }
.pp { font-size: 54px; font-weight: 800; letter-spacing: -2px; line-height: 1; margin-bottom: 4px; }
.pp small { font-size: 26px; letter-spacing: 0; font-weight: 700; }
.pper { font-size: 13px; color: var(--muted); margin-bottom: 28px; font-weight: 600; }
.pdv { border: none; border-top: 1px solid var(--border); margin-bottom: 20px; }
.pf { list-style: none; display: flex; flex-direction: column; gap: 11px; flex: 1; margin-bottom: 28px; }
.pf li { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 9px; font-weight: 600; }
.pf li::before { content: '—'; color: rgba(255,255,255,.18); font-size: 11px; }
.pbtn { 
  display: block; 
  text-align: center; 
  text-decoration: none; 
  padding: 14px 24px; 
  border-radius: 100px; 
  font-size: 14px; 
  font-weight: 800; 
  font-family: var(--f); 
  background: linear-gradient(135deg, #1e1e1e 0%, #141414 100%);
  color: #fff; 
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer; 
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.pbtn:hover { 
  background: linear-gradient(135deg, #272727 0%, #1a1a1a 100%);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.pc.hot .pbtn { 
  background: linear-gradient(135deg, #fff 0%, #f3f4f6 100%);
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
  border: none;
}

.pc.hot .pbtn:hover { 
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* ── BIG CTA ── */
.cta-s { 
  padding: 160px 48px; 
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-s::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-s h2 { 
  font-family: var(--f-display); 
  font-size: clamp(40px, 7vw, 88px); 
  font-weight: 900; 
  letter-spacing: -2px; 
  line-height: 1.05; 
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

/* ── FOOTER ── */
footer { padding: 28px 48px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 32px; }
.fl { display: flex; align-items: center; gap: 28px; }
.flogo { font-size: 15px; font-weight: 800; text-decoration: none; color: #fff; }
.fcopy { font-size: 13px; color: var(--muted); font-weight: 500; position: absolute; left: 48px; }
.footer-links { display: flex; gap: 24px; align-items: center; }
.footer-links a { 
  font-size: 13px; 
  color: var(--muted); 
  text-decoration: none; 
  font-weight: 600; 
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a:hover { 
  color: #fff;
}

.ftg { 
  font-size: 13px; 
  color: var(--muted); 
  text-decoration: none; 
  font-weight: 600; 
  transition: all 0.3s ease; 
  position: absolute; 
  right: 48px;
}

.ftg:hover { 
  color: var(--muted);
}

/* ── REVEAL ── */
.r { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.r.on { opacity: 1; transform: none; }

.trial-pill {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  background: rgba(99, 102, 241, 0.1); 
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 100px; 
  padding: 7px 16px;
  font-size: 13px; 
  font-weight: 700; 
  color: rgba(99, 102, 241, 1);
  margin-bottom: 32px; 
  letter-spacing: -0.1px;
  transition: all 0.3s ease;
  animation: glow 2s ease-in-out infinite;
}

.trial-pill:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.4);
  transform: scale(1.02);
}

.trial-banner {
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  background: linear-gradient(135deg, #0f0f0f 0%, #0a0a0a 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 16px;
  padding: 28px 36px;
  margin-bottom: 16px;
  gap: 24px; 
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.trial-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #6366f1, #8b5cf6);
}

.trial-banner:hover {
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.1);
}

/* ── VIDEO PLAYER CONTAINER ── */
.video-player-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  position: relative;
}

.video-player {
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(99, 102, 241, 0.2),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  position: relative;
}

/* Loading State */
.loading-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  animation: fadeInUp 0.6s ease-out;
}

.pixelated-logo {
  font-size: 120px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  animation: pixelPulse 2s ease-in-out infinite;
  letter-spacing: 4px;
}

@keyframes pixelPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.loading-progress {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #6366f1);
  border-radius: 2px;
  animation: loadingProgress 2.5s ease-in-out forwards;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

@keyframes loadingProgress {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

.loading-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

/* Video Content */
.video-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.video-area {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #1a1a1a, #0f0f0f);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent 70%);
  animation: videoPulse 3s ease-in-out infinite;
}

@keyframes videoPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

/* Connect Button */
.connect-button {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 14px 32px;
  background: linear-gradient(135deg, #fff 0%, #f3f4f6 100%);
  color: #000;
  border: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 800;
  font-family: var(--f);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  z-index: 10;
  animation: buttonAppear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 2.8s both;
}

@keyframes buttonAppear {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

.connect-button:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}

.connect-button:active {
  transform: translateX(-50%) scale(0.98);
}

.button-text {
  transition: all 0.3s ease;
}

.button-icon {
  transition: transform 0.3s ease;
}

.connect-button:hover .button-icon {
  transform: translateY(4px);
}

/* Video Controls */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: controlsSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 5;
  padding-bottom: 30px;
}

@keyframes controlsSlideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.controls-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.settings-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quality-selector {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.quality-btn {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--f);
  cursor: pointer;
  transition: all 0.3s ease;
}

.quality-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.quality-btn.active {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* ── DEMO ANIMATION (Vertical Windows - YouTube Shorts style) ── */
.vertical-windows {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 900px;
  perspective: 1200px;
}

.vertical-window {
  width: 520px;
  height: 720px;
  background: linear-gradient(135deg, #1e1e1e 0%, #1a1a1a 100%);
  border-radius: 20px;
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(99, 102, 241, 0.2),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  transform-style: preserve-3d;
  cursor: pointer;
  transform: none;
}

.vertical-window:nth-child(2) {
  animation-delay: 0s;
}

.vertical-window:hover {
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(99, 102, 241, 0.6),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.1),
    0 0 40px rgba(99, 102, 241, 0.5);
  transform: scale(1.02);
}

.Desktop-bg {
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0.95;
  display: none;
}

/* Window Styles */
.vertical-window .window-titlebar {
  height: 32px;
  background: linear-gradient(180deg, #2d2d2d 0%, #262626 100%);
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.vertical-window .window-content {
  background: #1e1e1e;
  height: calc(100% - 32px);
  overflow-y: auto;
  overflow-x: hidden;
}

.vertical-window .window-content::-webkit-scrollbar {
  width: 6px;
}

.vertical-window .window-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.vertical-window .window-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

.vertical-window .window-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

.window-buttons {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.window-buttons span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: all 0.2s ease;
  cursor: pointer;
}

.vertical-window:hover .window-buttons span {
  transform: scale(1.1);
}

.btn-close { 
  background: linear-gradient(135deg, #ff6b6b 0%, #ff5f56 100%);
  box-shadow: 0 2px 4px rgba(255, 95, 86, 0.3);
}
.btn-minimize { 
  background: linear-gradient(135deg, #ffd93d 0%, #ffbd2e 100%);
  box-shadow: 0 2px 4px rgba(255, 189, 46, 0.3);
}
.btn-maximize { 
  background: linear-gradient(135deg, #6bcf7f 0%, #27c93f 100%);
  box-shadow: 0 2px 4px rgba(39, 201, 63, 0.3);
}

.window-title {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  padding-right: 52px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.window-content {
  background: #1e1e1e;
  height: calc(100% - 32px);
  overflow-y: auto;
}

.window-content::-webkit-scrollbar {
  width: 8px;
}

.window-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.window-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.window-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Background Windows */
.bg-window {
  display: none;
}

.bg-window-1 {
  width: 35%;
  height: 45%;
  top: 8%;
  left: 3%;
}

.bg-window-2 {
  width: 30%;
  height: 38%;
  top: 12%;
  right: 5%;
}

.bg-window-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
}

.terminal-bg {
  background: #0d1117;
  padding: 12px;
  font-family: 'Monaco', monospace;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
}

.terminal-bg::before {
  content: '$ npm install\\A$ npm run dev\\A> wisp-vpn@1.0.0 dev\\A> vite\\A\\A  VITE v5.0.0  ready in 234 ms\\A\\A  ➜  Local:   http://localhost:5173/\\A  ➜  Network: use --host to expose';
  white-space: pre;
  line-height: 1.5;
}

/* YouTube Window */
.youtube-window {
  width: 50%;
  height: 60%;
  top: 18%;
  left: 6%;
  z-index: 10;
  animation: float-window 6s ease-in-out infinite;
}

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

.youtube-window .window-content {
  overflow: hidden;
}

.youtube-window .youtube-player {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.youtube-player {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yt-spinner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f0f0f;
  z-index: 2;
  animation: ytFadeOut 0.8s 3.5s forwards;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes ytFadeOut {
  to { opacity: 0; }
}

.yt-loaded {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: ytFadeIn 0.8s 4.3s forwards;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

@keyframes ytFadeIn {
  to { opacity: 1; }
}

.yt-thumbnail {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.4),
    0 0 0 4px rgba(255, 255, 255, 0.1);
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.yt-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 
    0 6px 25px rgba(0, 0, 0, 0.5),
    0 0 0 6px rgba(255, 255, 255, 0.15);
}

.yt-play-btn svg {
  width: 24px;
  height: 28px;
}

.yt-quality {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 3px 7px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

/* YouTube Info Section */
.yt-info {
  padding: 12px;
  background: #0f0f0f;
  color: #fff;
  opacity: 0;
  animation: ytFadeIn 0.8s 4.3s forwards;
}

/* Skeleton placeholders */
.yt-title-skeleton {
  height: 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  margin-bottom: 6px;
}

.yt-title-skeleton.short {
  width: 70%;
}

.yt-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 12px;
}

.yt-meta-skeleton {
  width: 140px;
  height: 10px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

.yt-actions-skeleton {
  display: flex;
  gap: 6px;
}

.yt-action-skeleton {
  width: 60px;
  height: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.yt-channel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 12px;
}

.yt-avatar-skeleton {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.yt-channel-info {
  flex: 1;
}

.yt-channel-name-skeleton {
  width: 100px;
  height: 10px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  margin-bottom: 4px;
}

.yt-subscribers-skeleton {
  width: 80px;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.yt-subscribe-skeleton {
  width: 80px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  flex-shrink: 0;
}

.yt-description-skeleton {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.yt-desc-line {
  height: 9px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.yt-desc-line.short {
  width: 60%;
}

/* VPN Vertical Window */
.vpn-vertical {
  position: relative;
  transform-style: preserve-3d;
}

.vpn-vertical .vpn-app {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
}

/* VPN Menu Profile */
.vpn-menu-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 8px;
  transform-style: preserve-3d;
}

.vpn-profile-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
  transform-style: preserve-3d;
  transform: translateZ(15px);
}

.vpn-profile-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vpn-profile-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.vpn-profile-status {
  font-size: 11px;
  color: #888;
}

/* Status Header */
.vpn-status-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.vpn-status-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
  opacity: 0;
  transition: opacity 0.5s ease;
  transform-style: preserve-3d;
}

.vpn-status-header:hover::before {
  opacity: 1;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b6b, #ff5f56);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  animation: statusChange 0.5s 3.8s forwards;
  box-shadow: 0 0 8px rgba(255, 95, 86, 0.5);
}

@keyframes statusChange {
  to { 
    background: linear-gradient(135deg, #6bcf7f, #27c93f);
    box-shadow: 0 0 12px rgba(39, 201, 63, 0.7), 0 0 0 3px rgba(39, 201, 63, 0.2);
  }
}

.status-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 1;
}

.status-label {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.status-label::after {
  content: 'Отключено';
  animation: statusLabelChange 0.1s 3.8s forwards;
}

@keyframes statusLabelChange {
  to { content: 'Подключено'; }
}

.status-time {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.status-time::after {
  content: '';
  animation: statusTimeChange 0.1s 3.8s forwards;
}

@keyframes statusTimeChange {
  to { content: 'Подключено 5с'; }
}

/* Protocols */
.vpn-protocols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  transform-style: preserve-3d;
}

.protocol-item {
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: translateZ(15px);
}

.protocol-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.protocol-item:hover {
  transform: translateZ(25px);
}

.protocol-item:hover::before {
  opacity: 1;
}

.protocol-item.active {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(139, 92, 246, 0.15));
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 
    0 0 20px rgba(99, 102, 241, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateZ(20px);
}

.protocol-name {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
  position: relative;
  z-index: 1;
}

.protocol-type {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* Regions */
.vpn-regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  transform-style: preserve-3d;
}

.region-btn {
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--f);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  transform-style: preserve-3d;
  transform: translateZ(12px);
}

.region-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  opacity: 0;
  border-radius: 10px;
  transition: opacity 0.3s ease;
}

.region-btn:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateZ(20px);
}

.region-btn:hover::before {
  opacity: 1;
}

.region-btn.active {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.15));
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.25);
  transform: translateZ(18px);
}

.region-btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Spacer */
.vpn-spacer {
  flex: 1;
  min-height: 20px;
}

/* Info Panel */
.vpn-info-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
}

.vpn-info-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}

.info-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.info-value {
  font-size: 11px;
  color: #fff;
  font-weight: 700;
}

/* Disconnect Button */
.vpn-action-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  color: #000;
  border: none;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  font-family: var(--f);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  animation: btnPress 0.3s 3.3s forwards;
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 0 0 2px rgba(99, 102, 241, 0.2);
  position: relative;
  overflow: hidden;
  transform: translateZ(40px);
  transform-style: preserve-3d;
}

.vpn-action-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  transition: left 0.5s ease;
}

.vpn-action-btn:hover::before {
  left: 100%;
}

@keyframes btnPress {
  0% { transform: translateZ(40px) scale(1); }
  50% { 
    transform: translateZ(50px) scale(0.96); 
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    box-shadow: 
      0 12px 30px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.6),
      0 0 0 2px rgba(99, 102, 241, 0.3);
  }
  100% { transform: translateZ(40px) scale(1); }
}

.vpn-action-btn::after {
  content: 'Подключиться';
  animation: btnTextChange 0.1s 3.8s forwards;
}

@keyframes btnTextChange {
  to { content: 'Отключить'; }
}

.vpn-action-btn:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #f3f4f6 100%);
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 0 2px rgba(99, 102, 241, 0.3);
  transform: translateZ(50px) translateY(-2px);
}

/* Custom Cursor */
.custom-cursor {
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  animation: cursorMove 2.2s 1.5s forwards;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

@keyframes cursorMove {
  0% {
    opacity: 0;
    left: 15%;
    top: 30%;
  }
  10% {
    opacity: 1;
  }
  60% {
    left: 78%;
    top: 78%;
  }
  75%, 100% {
    opacity: 1;
    left: 78%;
    top: 78%;
  }
}

.trial-banner-left { display: flex; align-items: center; gap: 24px; }
.trial-days {
  font-size: 72px; font-weight: 800; line-height: 1;
  letter-spacing: -3px; color: #fff;
  flex-shrink: 0;
}
.trial-text { display: flex; flex-direction: column; gap: 4px; }
.trial-text strong { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; color: #fff; }
.trial-text span { font-size: 14px; color: var(--muted); font-weight: 500; }
/* ── RESPONSIVE ── */

/* Tablet and below */
@media(max-width:960px){
  nav { padding: 0 32px; }
  .nav-links { display: none; }
  
  .hero { padding: 80px 32px 60px; }
  .hero-content { 
    grid-template-columns: 1fr; 
    gap: 48px; 
    min-height: auto;
  }
  .hero-left { 
    max-width: 100%; 
    text-align: left; 
    align-items: flex-start;
  }
  .hero-left h1 { 
    font-size: clamp(48px, 10vw, 80px); 
    letter-spacing: -3px;
  }
  .hero-desc { 
    font-size: 16px; 
    max-width: 100%;
  }
  .hero-stats { 
    gap: 20px; 
    padding: 20px 0;
  }
  .stat-value { font-size: 24px; }
  .stat-divider { height: 32px; }
  
  .hero-right { justify-content: center; width: 100%; }
  .yt-container { max-width: 100%; }
  .yt-video-info { padding: 0; margin-top: 16px; }
  .yt-video-title { font-size: 16px; }
  .yt-video-meta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .yt-actions { flex-wrap: wrap; }
  .yt-action-btn { font-size: 13px; padding: 8px 14px; }
  
  .hero-btns { 
    flex-direction: row; 
    width: 100%;
    gap: 10px;
  }
  .btn-h-wh, .btn-h-dk { 
    padding: 12px 24px; 
    font-size: 14px;
  }
  
  .demo-container { max-width: 100%; }
  .youtube-window { width: 55%; height: 58%; }
  .yt-layout { grid-template-columns: 1fr; padding: 8px; }
  .yt-sidebar { display: none; }
  .vpn-window { width: 24%; height: 65%; right: 6%; }
  .hero-img-row { grid-template-columns: 1fr; padding: 0 32px 60px; }
  .hero-img-main { height: 280px; }
  .hero-img-side { flex-direction: row; }
  .sticky-section { grid-template-columns: 1fr; padding: 0 32px; }
  .sticky-left { display: none; }
  .sticky-panel { height: auto; padding: 40px 0; }
  .panel-card { transform: none; opacity: 1; }
  
  .features-grid { padding: 80px 32px; }
  .features-container { grid-template-columns: 1fr; }
  .feature-card:nth-child(1),
  .feature-card:nth-child(2),
  .feature-card:nth-child(3),
  .feature-card:nth-child(4) { 
    grid-column: 1; 
    grid-row: auto; 
  }
  
  .cards-s { padding: 80px 32px; }
  .c3 { grid-template-columns: 1fr; gap: 12px; }
  
  .price-s { padding: 80px 32px; }
  .p4 { grid-template-columns: 1fr 1fr; gap: 12px; }
  
  .steps-s { padding-left: 32px; padding-right: 32px; }
  .steps-columns { grid-template-columns: 1fr; gap: 40px; }
  .steps-col:last-child { margin-top: 0; }
  
  .cta-s { padding: 100px 32px; }
  .cta-s h2 { font-size: clamp(36px, 8vw, 64px); }
  
  footer { 
    padding: 24px 32px; 
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .fcopy { position: static; order: 2; }
  .ftg { position: static; order: 3; }
  .footer-links { order: 1; flex-direction: column; gap: 16px; }
}

/* Mobile devices */
@media(max-width:768px){
  nav { padding: 0 20px; height: 56px; }
  .nav-logo { width: 32px; height: 32px; }
  .nav-logo img { width: 32px; height: 32px; }
  .btn-wh { 
    padding: 8px 16px; 
    font-size: 13px;
  }
  
  .hero-bg-decoration {
    display: none;
  }
  
  .hero { 
    padding: 70px 20px 40px; 
    min-height: auto;
  }
  .hero-content { 
    gap: 32px;
    display: flex;
    flex-direction: column;
  }
  .hero-left { 
    gap: 20px;
  }
  .hero-left h1 { 
    font-size: clamp(40px, 12vw, 56px); 
    letter-spacing: -2px;
    line-height: 0.95;
  }
  .hero-desc { 
    font-size: 15px; 
    line-height: 1.6;
    margin-bottom: 0;
  }
  .hero-stats { 
    flex-wrap: wrap;
    gap: 16px; 
    padding: 16px 0;
    margin: 0;
  }
  .stat-item { 
    flex: 1;
    min-width: calc(33.333% - 16px);
  }
  .stat-value { font-size: 20px; }
  .stat-label { font-size: 11px; }
  .stat-divider { display: none; }
  
  .hero-btns { 
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
    align-items: flex-start;
  }
  .btn-h-wh {
    display: none;
  }
  .btn-h-dk { 
    padding: 11px 16px; 
    font-size: 14px;
    width: auto;
  }
  
  .hero-right { 
    width: 100%;
    margin: 0;
  }
  
  .hero-right::before {
    display: none;
  }
  
  .yt-container { width: 100%; }
  .yt-player { border-radius: 10px; }
  .yt-logo { width: 120px; height: 120px; }
  .yt-connect-btn { 
    padding: 12px 24px; 
    font-size: 14px;
    bottom: 20px;
  }
  .yt-controls-bar { padding: 6px 10px; }
  .yt-time { font-size: 11px; }
  .yt-btn { padding: 3px; }
  .yt-btn svg { width: 20px; height: 20px; }
  .yt-settings-menu { 
    right: 10px; 
    bottom: 50px;
    min-width: 140px;
  }
  .yt-quality-option { 
    padding: 8px 10px; 
    font-size: 13px;
  }
  
  .yt-video-info { 
    margin-top: 12px; 
    padding: 0;
    display: none;
  }
  .yt-video-title { 
    font-size: 15px; 
    margin-bottom: 10px;
  }
  .yt-video-meta { 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 12px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .yt-channel-info { gap: 10px; }
  .yt-channel-avatar { width: 36px; height: 36px; font-size: 16px; }
  .yt-channel-name { font-size: 13px; }
  .yt-channel-subs { font-size: 11px; }
  .yt-subscribe-btn { 
    padding: 8px 14px; 
    font-size: 13px;
  }
  .yt-actions { 
    flex-wrap: wrap; 
    gap: 6px;
    width: 100%;
  }
  .yt-action-btn { 
    font-size: 12px; 
    padding: 8px 12px;
    flex: 1;
  }
  .yt-action-btn svg { width: 16px; height: 16px; }
  .yt-video-stats { font-size: 13px; margin-bottom: 10px; }
  .yt-video-description { font-size: 13px; line-height: 1.5; }
  .yt-show-more { font-size: 13px; }
  
  .hero-img-row { padding: 0 20px 40px; }
  .hero-img-main { height: 200px; border-radius: 12px; }
  .hero-img-side { gap: 6px; }
  .hero-img-side img { border-radius: 12px; }
  
  .features-grid { padding: 60px 20px; }
  .features-container { 
    grid-template-columns: 1fr; 
    gap: 10px;
  }
  .feature-card { 
    padding: 24px 20px; 
    min-height: auto;
    border-radius: 16px;
  }
  .feature-tag { 
    font-size: 10px; 
    margin-bottom: 14px;
  }
  .feature-title { 
    font-size: 20px; 
    margin-bottom: 10px;
  }
  .feature-desc { 
    font-size: 13px; 
    line-height: 1.6;
  }
  
  .cards-s { padding: 60px 20px; }
  .cards-s h2 { 
    font-size: clamp(32px, 8vw, 48px); 
    margin-bottom: 32px;
  }
  .c3 { gap: 10px; }
  .cc { 
    padding: 28px 24px; 
    border-radius: 16px;
  }
  .cc-name { 
    font-size: 20px; 
    margin-bottom: 10px;
  }
  .cc-desc { font-size: 13px; line-height: 1.6; }
  
  .price-s { padding: 60px 20px; }
  .p4 { 
    grid-template-columns: 1fr; 
    gap: 10px;
  }
  .pc { 
    padding: 28px 24px; 
    border-radius: 16px;
  }
  .hbadge { 
    top: 16px; 
    right: 16px; 
    font-size: 9px; 
    padding: 5px 12px;
  }
  .pn { 
    font-size: 10px; 
    margin-bottom: 20px;
  }
  .pp { 
    font-size: 48px; 
    letter-spacing: -1.5px;
  }
  .pp small { font-size: 22px; }
  .pper { 
    font-size: 12px; 
    margin-bottom: 24px;
  }
  .pdv { margin-bottom: 16px; }
  .pf { 
    gap: 10px; 
    margin-bottom: 24px;
  }
  .pf li { font-size: 12px; }
  .pbtn { 
    padding: 12px 20px; 
    font-size: 13px;
  }
  
  .cta-s { 
    padding: 80px 20px; 
    background: transparent;
  }
  .cta-s h2 { 
    font-size: clamp(32px, 10vw, 56px); 
    margin-bottom: 32px;
    line-height: 1.1;
  }
  .cta-s::before {
    display: none;
  }
  
  footer { 
    padding: 24px 20px; 
    flex-direction: column;
    gap: 16px;
  }
  .fcopy { 
    font-size: 12px;
    position: static;
    order: 2;
  }
  .footer-links { 
    flex-direction: column; 
    gap: 12px;
    order: 1;
  }
  .footer-links a { font-size: 12px; }
  .ftg { 
    font-size: 12px;
    position: static;
    order: 3;
  }
}

/* Extra small mobile */
@media(max-width:480px){
  nav { padding: 0 16px; }
  
  .hero { padding: 60px 16px 32px; }
  .hero-left h1 { 
    font-size: clamp(36px, 13vw, 48px); 
    letter-spacing: -1.5px;
  }
  .hero-desc { font-size: 14px; }
  .hero-stats { 
    gap: 12px;
    padding: 12px 0;
  }
  .stat-item {
    min-width: 100%;
  }
  .stat-value { font-size: 18px; }
  .stat-label { font-size: 10px; }
  
  .btn-h-wh, .btn-h-dk { 
    padding: 12px 18px; 
    font-size: 13px;
    width: auto;
  }
  
  .yt-logo { width: 100px; height: 100px; }
  .yt-connect-btn { 
    padding: 10px 20px; 
    font-size: 13px;
    bottom: 16px;
  }
  .yt-video-title { font-size: 14px; }
  .yt-channel-avatar { width: 32px; height: 32px; font-size: 14px; }
  .yt-channel-name { font-size: 12px; }
  .yt-subscribe-btn { padding: 7px 12px; font-size: 12px; }
  .yt-action-btn { 
    font-size: 11px; 
    padding: 6px 10px;
  }
  .yt-video-stats { font-size: 12px; }
  .yt-video-description { font-size: 12px; }
  
  .features-grid { padding: 48px 16px; }
  .feature-card { padding: 20px 16px; border-radius: 14px; }
  .feature-title { font-size: 18px; }
  .feature-desc { font-size: 12px; }
  
  .cards-s { padding: 48px 16px; }
  .cc { padding: 24px 20px; border-radius: 14px; }
  .cc-name { font-size: 18px; }
  .cc-desc { font-size: 12px; }
  
  .price-s { padding: 48px 16px; }
  .pc { padding: 24px 20px; border-radius: 14px; }
  .pp { font-size: 42px; }
  .pp small { font-size: 20px; }
  
  .cta-s { padding: 64px 16px; }
  .cta-s h2 { 
    font-size: clamp(28px, 11vw, 44px);
    margin-bottom: 28px;
  }
  
  footer { padding: 20px 16px; }
}
