:root {
  --midnight: #0a0e1a;
  --deep-blue: #0d1526;
  --navy: #141d33;
  --electric-cyan: #00d4ff;
  --soft-cyan: #5ce1e6;
  --rich-blue: #1e40af;
  --light-blue: #60a5fa;
  --accent-teal: #14b8a6;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glow-cyan: rgba(0, 212, 255, 0.35);
  --glow-blue: rgba(30, 64, 175, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

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

.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse 80% 50% at 20% -10%, var(--glow-blue), transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 10%, var(--glow-cyan), transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 80%, var(--glow-blue), transparent 50%),
    linear-gradient(180deg, var(--midnight) 0%, var(--deep-blue) 50%, var(--midnight) 100%);
  z-index: -1;
  pointer-events: none;
  animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  background: linear-gradient(135deg, var(--electric-cyan), var(--soft-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-cyan), var(--soft-cyan));
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--electric-cyan);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(10, 14, 26, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 20px;
  z-index: 99;
}

.mobile-nav.active {
  display: block;
  animation: slideDown 0.3s ease;
}

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

.mobile-nav a {
  display: block;
  padding: 16px 0;
  color: var(--gray-300);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--electric-cyan);
  padding-left: 10px;
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px var(--glow-cyan);
  border-color: rgba(0, 212, 255, 0.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

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

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--electric-cyan), var(--rich-blue));
  color: var(--white);
  box-shadow: 0 4px 25px var(--glow-cyan);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px var(--glow-cyan);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 2px solid var(--glass-border);
}

.btn-secondary:hover {
  border-color: var(--electric-cyan);
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 20px var(--glow-cyan);
}

.btn-large {
  padding: 20px 40px;
  font-size: 1.15rem;
}

.hero {
  padding: 180px 0 100px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--glow-cyan), transparent 60%);
  opacity: 0.3;
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.2; }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(30, 64, 175, 0.15));
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50px;
  font-size: 0.95rem;
  color: var(--soft-cyan);
  margin-bottom: 28px;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 20px transparent; }
  50% { box-shadow: 0 0 30px var(--glow-cyan); }
}

.hero-badge i {
  color: var(--electric-cyan);
  animation: iconSpin 10s linear infinite;
}

@keyframes iconSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-title {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--white) 0%, var(--soft-cyan) 50%, var(--white) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  letter-spacing: -2px;
}

@keyframes shimmer {
  from { background-position: 200% center; }
  to { background-position: -200% center; }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--gray-300);
  max-width: 750px;
  margin: 0 auto 16px;
  line-height: 1.7;
}

.highlight {
  color: var(--electric-cyan);
  font-weight: 700;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-cyan), transparent);
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--gray-400);
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

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

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

.stat {
  text-align: center;
  position: relative;
}

.stat::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--glass-border), transparent);
}

.stat:last-child::after {
  display: none;
}

.stat-value {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--electric-cyan), var(--soft-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--gray-400);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.services {
  padding: 120px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--electric-cyan), var(--rich-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--electric-cyan), var(--rich-blue));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 10px 30px var(--glow-cyan);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.service-card p {
  color: var(--gray-400);
  font-size: 1rem;
  line-height: 1.6;
}

.offers {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.02), transparent);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 36px;
  max-width: 900px;
  margin: 0 auto;
}

.offer-card {
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.5) 0%, rgba(10, 14, 26, 0.9) 100%);
  z-index: 1;
  transition: all 0.5s ease;
}

.offer-card:hover::before {
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.3) 0%, rgba(10, 14, 26, 0.85) 100%);
}

.offer-card > * {
  position: relative;
  z-index: 2;
}

.offer-card.featured {
  border-color: var(--electric-cyan);
  box-shadow: 0 0 50px var(--glow-cyan);
}

.offer-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--electric-cyan), var(--rich-blue));
  padding: 8px 24px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px var(--glow-cyan);
}

.offer-price {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--electric-cyan), var(--soft-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.offer-price .price-detail {
  font-size: 1rem;
  font-weight: 500;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--gray-400);
  background-clip: unset;
}

.offer-card h3 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.offer-card p {
  color: var(--gray-400);
  margin-bottom: 28px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.podcast {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.03), transparent);
  position: relative;
}

.podcast-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.podcast-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--electric-cyan), var(--rich-blue));
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px var(--glow-cyan);
}

.podcast-description {
  font-size: 1.2rem;
  color: var(--gray-300);
  margin-bottom: 28px;
  line-height: 1.7;
}

.podcast-benefits {
  list-style: none;
  margin-bottom: 36px;
}

.podcast-benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  color: var(--gray-300);
  font-size: 1.05rem;
  border-bottom: 1px solid var(--glass-border);
}

.podcast-benefits li:last-child {
  border-bottom: none;
}

.podcast-benefits i {
  color: var(--electric-cyan);
  font-size: 1.1rem;
}

.podcast-room {
  padding: 50px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(30, 64, 175, 0.08));
  border-color: var(--electric-cyan);
  position: relative;
  overflow: hidden;
}

.podcast-room::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1), transparent 60%);
  animation: roomPulse 4s ease-in-out infinite;
}

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

.room-header {
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}

.room-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--gray-300);
  font-weight: 500;
}

.status-dot {
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

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

.room-content {
  position: relative;
  z-index: 1;
}

.room-content .mic-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--electric-cyan), var(--rich-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 0 60px var(--glow-cyan), inset 0 0 30px rgba(255,255,255,0.1);
  animation: glow 3s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.room-content .mic-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--electric-cyan);
  border-radius: 50%;
  opacity: 0.3;
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.1; }
}

.room-content .mic-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 80px var(--glow-cyan);
}

.room-content .mic-icon.active {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  animation: pulse-active 1s ease-in-out infinite;
}

@keyframes pulse-active {
  0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(34, 197, 94, 0.5); }
  50% { transform: scale(1.05); box-shadow: 0 0 80px rgba(34, 197, 94, 0.7); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 40px var(--glow-cyan); }
  50% { box-shadow: 0 0 80px var(--glow-cyan); }
}

.room-content p {
  color: var(--gray-300);
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.proof {
  padding: 120px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.proof-card {
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.proof-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--electric-cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.proof-card:hover::before {
  opacity: 1;
}

.proof-value {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--electric-cyan), var(--soft-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
}

.proof-label {
  color: var(--gray-400);
  font-size: 1.05rem;
  line-height: 1.5;
}

.brands {
  padding: 120px 0;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-bottom: 50px;
}

.brand-card {
  padding: 40px;
  text-decoration: none;
  color: var(--white);
  display: block;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 280px;
}

.brand-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.5) 0%, rgba(10, 14, 26, 0.88) 100%);
  z-index: 1;
  transition: all 0.3s ease;
}

.brand-card:hover::before {
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.35) 0%, rgba(10, 14, 26, 0.8) 100%);
}

.brand-card > * {
  position: relative;
  z-index: 2;
}

.brand-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--glow-cyan), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.brand-card:hover::after {
  opacity: 0.5;
}

.brand-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--electric-cyan), var(--rich-blue));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px var(--glow-cyan);
  transition: all 0.3s ease;
}

.brand-card:hover .brand-icon {
  transform: scale(1.1) rotate(-5deg);
}

.brand-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.brand-card p {
  color: var(--gray-400);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.brand-link {
  color: var(--electric-cyan);
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.brand-card:hover .brand-link {
  gap: 12px;
}

.video-section {
  max-width: 650px;
  margin: 0 auto;
}

.video-card {
  padding: 50px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(30, 64, 175, 0.05));
}

.video-card h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact {
  padding: 120px 0;
}

.contact-content {
  padding: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.03), rgba(30, 64, 175, 0.03));
}

.contact-info .section-title {
  text-align: left;
}

.contact-methods {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  color: var(--gray-300);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--electric-cyan);
  color: var(--white);
  transform: translateX(8px);
}

.contact-method i {
  font-size: 1.35rem;
  color: var(--electric-cyan);
  width: 28px;
}

.contact-cta {
  text-align: center;
  padding: 40px;
  background: var(--glass-bg);
  border-radius: 24px;
}

.cta-note {
  margin-top: 20px;
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer {
  padding: 50px 0;
  border-top: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.2);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-content p {
  color: var(--gray-400);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--electric-cyan);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero {
    padding: 140px 0 80px;
  }
  
  .hero-title {
    font-size: 2.8rem;
    letter-spacing: -1px;
  }
  
  .hero-subtitle {
    font-size: 1.15rem;
  }
  
  .hero-stats {
    gap: 40px;
  }
  
  .stat::after {
    display: none;
  }
  
  .stat-value {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .offers-grid {
    grid-template-columns: 1fr;
  }
  
  .podcast-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .brands-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 50px;
  }
  
  .contact-info .section-title {
    text-align: center;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }
  
  .hero-photo-container {
    margin-bottom: 20px;
  }
  
  .hero-photo-flip {
    width: 140px;
    height: 140px;
  }
  
  .photo-front img,
  .photo-back img {
    width: 140px;
    height: 140px;
  }
}

.hero-photo-container {
  margin-bottom: 32px;
  perspective: 1000px;
}

.hero-photo-flip {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-photo-container:hover .hero-photo-flip {
  transform: rotateY(180deg);
}

.photo-front,
.photo-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 
    0 0 40px var(--glow-cyan),
    0 0 80px rgba(0, 212, 255, 0.2),
    inset 0 0 30px rgba(255, 255, 255, 0.1);
  border: 3px solid var(--electric-cyan);
}

.photo-front img,
.photo-back img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center top;
}

.photo-back {
  transform: rotateY(180deg);
}

.photo-label {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--gray-400);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.hero-photo-container:hover .photo-label {
  color: var(--electric-cyan);
  opacity: 1;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: linear-gradient(135deg, var(--electric-cyan), var(--rich-blue));
  border-color: var(--electric-cyan);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--glow-cyan);
}

.forerunner-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706) !important;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4) !important;
}

.industries {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.02), transparent);
}

.industry-group {
  margin-bottom: 60px;
}

.industry-group:last-child {
  margin-bottom: 0;
}

.industry-group-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.industry-group-title i {
  color: var(--electric-cyan);
}

.industry-group-subtitle {
  color: var(--gray-400);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.industry-card {
  padding: 24px;
  text-decoration: none;
  color: var(--white);
  display: block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  background-size: cover;
  background-position: center;
}

.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.6) 0%, rgba(10, 14, 26, 0.85) 100%);
  z-index: 1;
  transition: all 0.3s ease;
}

.industry-card:hover::before {
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.4) 0%, rgba(10, 14, 26, 0.75) 100%);
}

.industry-card > * {
  position: relative;
  z-index: 2;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.industry-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--white);
}

.industry-icon.cannabis {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

.industry-icon.solar {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.industry-icon.electrical {
  background: linear-gradient(135deg, #eab308, #ca8a04);
  box-shadow: 0 6px 20px rgba(234, 179, 8, 0.3);
}

.industry-icon.hvac {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.industry-icon.energy {
  background: linear-gradient(135deg, var(--electric-cyan), var(--rich-blue));
  box-shadow: 0 6px 20px var(--glow-cyan);
}

.industry-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.industry-card p {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.5;
}

.jv-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.jv-card {
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s ease;
}

.jv-card:hover {
  transform: translateY(-5px);
}

.jv-card.featured {
  border-color: var(--electric-cyan);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(30, 64, 175, 0.08));
}

.jv-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, var(--electric-cyan), var(--rich-blue));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 25px var(--glow-cyan);
}

.jv-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.jv-content p {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.podcast-platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
}

.platforms-label {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--gray-300);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.platform-link:hover {
  background: linear-gradient(135deg, var(--electric-cyan), var(--rich-blue));
  border-color: var(--electric-cyan);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
  
  .jv-cards {
    grid-template-columns: 1fr;
  }
  
  .jv-card {
    flex-direction: column;
    text-align: center;
  }
  
  .jv-icon {
    margin: 0 auto;
  }
  
  .social-links {
    gap: 12px;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .podcast-platforms {
    flex-direction: column;
    align-items: flex-start;
  }
}
