/* ============================================
   HAPPY POD - MAIN STYLESHEET
   Design System + All Sections
   ============================================ */

/* ---------- CSS Variables / Design Tokens ---------- */
:root {
  --primary-dark: #240046;
  --primary-accent: #B9B1FF;
  --highlight: #D1DE54;
  --soft-bg: #EFE8F8;
  --light-bg: #F9F5E9;
  --white: #ffffff;
  --black: #1a1a1a;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-500: #6c757d;
  --gray-700: #495057;
  --font-heading: 'Quando', serif;
  --font-body: 'Quattrocento', serif;
  --border-radius: 16px;
  --border-radius-sm: 10px;
  --border-radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(36, 0, 70, 0.06);
  --shadow-md: 0 8px 30px rgba(36, 0, 70, 0.1);
  --shadow-lg: 0 20px 60px rgba(36, 0, 70, 0.15);
  --transition: all 0.3s ease;
  --gradient-primary: linear-gradient(135deg, #240046 0%, #3c096c 50%, #5a189a 100%);
  --gradient-accent: linear-gradient(135deg, #B9B1FF 0%, #8B7FD4 100%);
  --gradient-highlight: linear-gradient(135deg, #D1DE54 0%, #B8C94A 100%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.3;
  color: var(--primary-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.35rem; }

p {
  color: var(--gray-700);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

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

.section-padding {
  padding: 100px 0;
}

.bg-soft {
  background: var(--soft-bg);
}

.bg-light-warm {
  background: var(--light-bg);
}

.bg-primary-dark {
  background: var(--gradient-primary);
}

/* ---------- Typography Utilities ---------- */
.text-highlight {
  color: var(--highlight);
  position: relative;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-accent);
  margin-bottom: 12px;
  position: relative;
  padding-left: 40px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  background: var(--primary-accent);
  transform: translateY(-50%);
}

.section-label-light {
  color: var(--highlight);
}

.section-label-light::before {
  background: var(--highlight);
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
}

.section-text {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  padding: 12px 28px;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-highlight {
  background: var(--highlight);
  color: var(--primary-dark);
}

.btn-highlight:hover {
  background: #bfcc4a;
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(209, 222, 84, 0.4);
}

.btn-accent {
  background: var(--primary-accent);
  color: var(--primary-dark);
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 50px;
}

.btn-accent:hover {
  background: #a89ef5;
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-primary-dark {
  background: var(--primary-dark);
  color: var(--white);
}

.btn-primary-dark:hover {
  background: #3c096c;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  padding: 16px 0;
  transition: var(--transition);
  z-index: 1050;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}

.navbar-logo {
  height: 40px;
  width: auto;
}

.navbar .nav-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  padding: 8px 16px;
  position: relative;
}

.navbar.scrolled .nav-link {
  color: var(--primary-dark);
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  width: 0;
  height: 2px;
  background: var(--highlight);
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: calc(100% - 32px);
}

.navbar .nav-link:hover {
  color: var(--highlight);
}

.navbar.scrolled .nav-link:hover {
  color: var(--primary-accent);
}

/* Hamburger Menu */
.navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
  box-shadow: none !important;
}

.toggler-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}

.toggler-icon span {
  display: block;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.navbar.scrolled .toggler-icon span {
  background: var(--primary-dark);
}

.toggler-icon.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.toggler-icon.active span:nth-child(2) {
  opacity: 0;
}

.toggler-icon.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--primary-accent);
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 250px;
  height: 250px;
  bottom: 10%;
  left: -80px;
}

.shape-3 {
  width: 120px;
  height: 120px;
  top: 30%;
  left: 15%;
  background: var(--highlight) !important;
  opacity: 0.12;
}

.shape-4 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  right: 20%;
  background: var(--highlight) !important;
  opacity: 0.1;
}

.shape-5 {
  width: 180px;
  height: 180px;
  top: 60%;
  right: 40%;
  opacity: 0.05;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 60px;
}

.hero-badge {
  display: inline-block;
  background: rgba(185, 177, 255, 0.15);
  color: var(--primary-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
  border: 1px solid rgba(185, 177, 255, 0.2);
}

.hero-title {
  color: var(--white);
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* Hero Visual / Podcast Card */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 60px;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.hero-image-bg {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(185, 177, 255, 0.2), rgba(209, 222, 84, 0.15));
  margin: 0 auto;
  position: relative;
}

.hero-image-bg::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px dashed rgba(185, 177, 255, 0.2);
}

.hero-image-bg::after {
  content: '\F287';
  font-family: 'bootstrap-icons';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  color: rgba(185, 177, 255, 0.3);
}

.hero-podcast-card {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius);
  padding: 20px 24px 12px;
  width: 320px;
}

.podcast-card-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.podcast-equalizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 30px;
}

.podcast-equalizer span {
  width: 4px;
  background: var(--highlight);
  border-radius: 4px;
  animation: equalize 1.2s ease-in-out infinite;
}

.podcast-equalizer span:nth-child(1) { height: 10px; animation-delay: 0s; }
.podcast-equalizer span:nth-child(2) { height: 20px; animation-delay: 0.15s; }
.podcast-equalizer span:nth-child(3) { height: 15px; animation-delay: 0.3s; }
.podcast-equalizer span:nth-child(4) { height: 25px; animation-delay: 0.45s; }
.podcast-equalizer span:nth-child(5) { height: 12px; animation-delay: 0.6s; }

@keyframes equalize {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

.podcast-card-info h4 {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.podcast-card-info p {
  font-size: 0.9rem;
  color: var(--white);
  margin: 0;
  font-weight: 700;
}

.podcast-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--highlight);
  border: none;
  color: var(--primary-dark);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}

.podcast-play-btn:hover {
  transform: scale(1.1);
}

.podcast-progress {
  margin-top: 12px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
}

.podcast-progress-bar {
  height: 100%;
  width: 35%;
  background: var(--highlight);
  border-radius: 3px;
}

.hero-floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}

.badge-listeners {
  top: 60px;
  left: 0;
}

.badge-listeners i {
  color: var(--highlight);
}

.badge-rating {
  top: 120px;
  right: 0;
}

.badge-rating i {
  color: #ffd700;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--highlight);
  border-radius: 4px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-down 1.5s ease-in-out infinite;
}

@keyframes scroll-down {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 22px; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-image-wrapper {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.about-image-shape {
  width: 320px;
  height: 320px;
  background: var(--gradient-accent);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.2;
  margin: 0 auto;
}

.about-image-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-mic-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.about-mic-icon i {
  font-size: 2rem;
  color: var(--white);
}

.sound-waves {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 30px;
}

.sound-waves span {
  width: 4px;
  border-radius: 4px;
  background: var(--primary-accent);
  animation: soundWave 1s ease-in-out infinite;
}

.sound-waves span:nth-child(1) { height: 8px; animation-delay: 0s; }
.sound-waves span:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.sound-waves span:nth-child(3) { height: 24px; animation-delay: 0.2s; }
.sound-waves span:nth-child(4) { height: 30px; animation-delay: 0.3s; }
.sound-waves span:nth-child(5) { height: 24px; animation-delay: 0.4s; }
.sound-waves span:nth-child(6) { height: 16px; animation-delay: 0.5s; }
.sound-waves span:nth-child(7) { height: 8px; animation-delay: 0.6s; }

@keyframes soundWave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.3); }
}

.about-floating-card {
  position: absolute;
  bottom: 20px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: var(--border-radius-sm);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
}

.about-floating-card strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--primary-dark);
}

.about-floating-card small {
  color: var(--gray-500);
  font-size: 0.8rem;
}

.about-features {
  margin-top: 30px;
}

.about-feature-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.about-feature-item:last-child {
  margin-bottom: 0;
}

.feature-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--soft-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-circle i {
  font-size: 1.3rem;
  color: var(--primary-dark);
}

.about-feature-item h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.about-feature-item p {
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================
   FEATURES / CATEGORIES SECTION
   ============================================ */
.feature-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 36px 28px;
  height: 100%;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--border-radius-sm);
  background: var(--soft-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card-icon i {
  font-size: 1.6rem;
  color: var(--primary-dark);
}

.feature-card-icon.highlight {
  background: var(--highlight);
}

.feature-card-icon.highlight i {
  color: var(--primary-dark);
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.feature-card-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.feature-card-link:hover {
  color: var(--primary-accent);
  gap: 10px;
}

/* ============================================
   EPISODES SECTION
   ============================================ */
.episode-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.episode-tab {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-500);
  cursor: pointer;
  transition: var(--transition);
}

.episode-tab:hover {
  border-color: var(--primary-accent);
  color: var(--primary-dark);
}

.episode-tab.active {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.episode-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  height: 100%;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.episode-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.episode-number {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: rotate(180deg);
  background: var(--gradient-primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  padding: 20px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
}

.episode-body {
  padding: 24px;
  flex: 1;
}

.episode-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  align-items: center;
}

.episode-tag {
  background: var(--soft-bg);
  color: var(--primary-dark);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.episode-tag.tag-growth {
  background: rgba(209, 222, 84, 0.2);
  color: #6b7520;
}

.episode-tag.tag-stories {
  background: rgba(185, 177, 255, 0.2);
  color: #4a3f9f;
}

.episode-date,
.episode-duration {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.episode-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.episode-desc {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.episode-play-btn {
  background: var(--highlight);
  color: var(--primary-dark);
  border: none;
  border-radius: 50px;
  padding: 8px 20px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.episode-play-btn:hover {
  background: #bfcc4a;
  transform: translateY(-2px);
}

/* ============================================
   HOST SECTION
   ============================================ */
.host-image-wrapper {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.host-image-bg {
  position: absolute;
  inset: -10px;
  border-radius: var(--border-radius-lg);
  background: var(--gradient-accent);
  opacity: 0.2;
  transform: rotate(-3deg);
}

.host-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  width: 100%;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

.host-social-float {
  position: absolute;
  bottom: 20px;
  right: -20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.host-social-float a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.host-social-float a:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: scale(1.1);
}

.host-highlights {
  margin-top: 30px;
}

.host-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--soft-bg);
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

.host-highlight-item:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.host-highlight-item:hover i {
  color: var(--highlight);
}

.host-highlight-item i {
  font-size: 1.2rem;
  color: var(--primary-accent);
}

.host-highlight-item span {
  font-weight: 700;
  font-size: 0.9rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
}

.testimonial-card.featured {
  background: rgba(209, 222, 84, 0.1);
  border-color: rgba(209, 222, 84, 0.3);
}

.testimonial-stars {
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: #ffd700;
  font-size: 0.9rem;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-accent);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-author small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

/* ============================================
   PLATFORMS SECTION
   ============================================ */
.platform-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-accent);
}

.platform-card i {
  font-size: 2.4rem;
  color: var(--primary-dark);
  display: block;
  margin-bottom: 10px;
}

.platform-card span {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gray-700);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--gradient-primary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg-shapes .cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.cta-shape-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-accent);
  top: -200px;
  right: -100px;
}

.cta-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--highlight);
  bottom: -100px;
  left: -80px;
}

.cta-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta-form {
  max-width: 520px;
  margin: 0 auto;
}

.cta-input-group {
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 60px;
  padding: 6px;
}

.cta-input-group .form-control {
  background: transparent;
  border: none;
  color: var(--white);
  padding: 12px 20px;
  font-family: var(--font-body);
}

.cta-input-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cta-input-group .form-control:focus {
  box-shadow: none;
}

.cta-input-group .btn {
  border-radius: 50px;
  padding: 12px 28px;
  white-space: nowrap;
}

.cta-note {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  margin-top: 16px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-info {
  margin: 30px 0;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--soft-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.2rem;
  color: var(--primary-dark);
}

.contact-info-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 2px;
}

.contact-info-item p {
  margin: 0;
  font-size: 0.9rem;
}

.contact-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--soft-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form .form-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.contact-form .form-control {
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  transition: var(--transition);
}

.contact-form .form-control:focus {
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 3px rgba(185, 177, 255, 0.15);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer-logo {
  height: 36px;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--highlight);
  color: var(--primary-dark);
}

.footer-heading {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--highlight);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  font-size: 0.85rem;
}

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.footer-bottom-links a:hover {
  color: var(--highlight);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: var(--white);
  border: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--highlight);
  color: var(--primary-dark);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet: 768px - 1199px */
@media (max-width: 1199.98px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }

  .hero-title { font-size: 3.2rem; }
  .section-padding { padding: 80px 0; }
  .cta-title { font-size: 2.4rem; }
}

@media (max-width: 991.98px) {
  .hero-title { font-size: 2.8rem; }

  .hero-visual {
    padding-top: 20px;
    padding-bottom: 60px;
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 20px;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .navbar-collapse {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 16px;
    box-shadow: var(--shadow-lg);
  }

  .navbar-collapse .nav-link {
    color: var(--primary-dark) !important;
    padding: 10px 16px;
  }

  .navbar-collapse .nav-link::after {
    display: none;
  }

  .contact-form-wrapper {
    padding: 28px;
  }
}

/* Mobile: ≤767px */
@media (max-width: 767.98px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.2rem; }

  .section-padding { padding: 60px 0; }

  .hero-title { font-size: 2.2rem; }
  .hero-content { padding-top: 100px; }

  .hero-image-bg {
    width: 240px;
    height: 240px;
  }

  .hero-podcast-card {
    width: 260px;
    padding: 16px 18px 8px;
  }

  .hero-floating-badge {
    display: none;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .episode-card {
    flex-direction: column;
  }

  .episode-number {
    writing-mode: horizontal-tb;
    transform: none;
    padding: 12px 20px;
    min-width: auto;
  }

  .cta-title { font-size: 2rem; }

  .cta-input-group {
    flex-direction: column;
    border-radius: var(--border-radius);
    gap: 8px;
  }

  .cta-input-group .btn {
    border-radius: var(--border-radius-sm);
  }

  .hero-scroll-indicator {
    display: none;
  }

  .about-image-shape {
    width: 240px;
    height: 240px;
  }

  .host-social-float {
    right: 10px;
    bottom: 10px;
  }

  .contact-form-wrapper {
    padding: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Small Mobile: ≤480px */
@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .btn-lg { padding: 12px 24px; font-size: 0.9rem; }
}

/* ============================================
   LOADING / PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(185, 177, 255, 0.2);
  border-top-color: var(--highlight);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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