/* ============================================
   home.css — SkipTV Homepage Sections
   ============================================ */

/* ==========================================
   HERO
   ========================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(0, 174, 239, 0.12), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(255, 107, 0, 0.08), transparent 50%),
    var(--bg-primary);
  z-index: 0;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-badge {
  margin-bottom: 24px;
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero-title span {
  color: var(--accent-blue);
}

.hero-title .highlight-orange {
  color: var(--accent-orange);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: floatY 2s ease infinite;
  text-decoration: none;
  transition: color var(--transition);
}

.scroll-indicator:hover {
  color: var(--accent-blue);
  text-decoration: none;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
}

/* ==========================================
   STATS STRIP
   ========================================== */

.stats-strip {
  background: var(--bg-secondary);
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 16px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--accent-blue);
  line-height: 1;
  display: block;
}

.stat-number.orange {
  color: var(--accent-orange);
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 8px;
  font-weight: 600;
  display: block;
}

/* ==========================================
   HOW IT WORKS
   ========================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-orange));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-blue-dim);
  border: 2px solid var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-blue);
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.step-card:hover .step-number {
  background: var(--accent-blue);
  color: #ffffff;
  box-shadow: var(--glow-blue);
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.step-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================
   CHANNEL COUNT / FEATURES STRIP
   ========================================== */

.channels-highlight {
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.08), rgba(255, 107, 0, 0.05));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.channels-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-orange));
}

.channels-number {
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 700;
  color: var(--accent-blue);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

/* ==========================================
   DEVICES SECTION
   ========================================== */

.devices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.device-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.device-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--glow-blue);
}

.device-icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
}

.device-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  display: block;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow-blue);
}

.stars {
  color: #FFB800;
  letter-spacing: 2px;
  font-size: 18px;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-blue-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--accent-blue);
  flex-shrink: 0;
  border: 1px solid rgba(0, 174, 239, 0.3);
}

.author-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
  display: block;
}

.author-location {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
}

/* ==========================================
   FINAL CTA BANNER
   ========================================== */

.cta-banner {
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.1) 0%, rgba(255, 107, 0, 0.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0, 174, 239, 0.06), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(255, 107, 0, 0.04), transparent 60%);
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   CHANNEL LOGOS / PARTNER STRIP
   ========================================== */

.channel-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 40px;
  padding: 40px 0;
}

.channel-logo-item {
  opacity: 0.5;
  filter: grayscale(1);
  transition: var(--transition);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
}

.channel-logo-item:hover {
  opacity: 1;
  filter: grayscale(0);
  color: var(--text-primary);
  border-color: var(--border-hover);
}

/* ==========================================
   GUARANTEE SECTION
   ========================================== */

.guarantee-box {
  background: rgba(0, 200, 100, 0.05);
  border: 1px solid rgba(0, 200, 100, 0.2);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.guarantee-icon {
  font-size: 56px;
  margin-bottom: 20px;
  display: block;
}

.guarantee-box h3 {
  font-size: 28px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.guarantee-box p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}
