:root{
  --bg0:#040816;
  --bg1:#070d22;
  --text:#eaf2ff;
  --muted:rgba(234,242,255,.72);

  --blue:#2b78ff;
  --blue2:#5aa7ff;

  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius2: 24px;
  --max: 1140px;

  --shineBorder: 1px solid rgba(110,180,255,.35);
  --shineGlow: 0 0 0 1px rgba(110,180,255,.22), 0 0 22px rgba(43,120,255,.22);
}

/* ✅ Scope everything inside podcast page */
.podcast-page,
.podcast-page *{ box-sizing:border-box; }

.podcast-page{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text) !important;
  position: relative;
  overflow-x: hidden;
}

/* ✅ Fixed background layer (no background-attachment:fixed lag) */
.podcast-page .bg-image{
  position: fixed;
  inset: 0;
  z-index: -60;
  background: url("../../assets/img/image-asset.webp") center/cover no-repeat;
  transform: translateZ(0);
}

/* ✅ Dark overlay + glow */
.podcast-page::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -50;
  pointer-events:none;
  background:
    radial-gradient(1200px 800px at 18% 25%, rgba(62,122,255,.18), transparent 60%),
    radial-gradient(900px 600px at 85% 20%, rgba(86,241,255,.10), transparent 65%),
    radial-gradient(800px 600px at 60% 85%, rgba(43,120,255,.12), transparent 60%),
    linear-gradient(180deg, rgba(4,8,22,.78), rgba(7,13,34,.88));
}

/* ✅ Bottom glow wave */
.podcast-page::after{
  content:"";
  position: fixed;
  left:-20%;
  bottom:-30%;
  width:140%;
  height:70%;
  z-index: -40;
  pointer-events:none;
  background:
    radial-gradient(closest-side at 30% 40%, rgba(86,241,255,.14), transparent 60%),
    radial-gradient(closest-side at 55% 55%, rgba(43,120,255,.22), transparent 62%),
    radial-gradient(closest-side at 80% 35%, rgba(90,167,255,.14), transparent 60%);
  filter: blur(22px);
  opacity:.55;
  transform: rotate(-2deg);
}

.podcast-page a{ color:inherit; }
.podcast-page .container{
  width:min(var(--max), calc(100% - 48px));
  margin-inline:auto;
  position:relative;
  z-index: 10; /* content always above overlays */
}

/* ✅ Glass boxes layer (visible now) */
.podcast-page .bg-glass{
  position: fixed;
  inset: 0;
  z-index: -30; /* above overlays, below content */
  pointer-events:none;
  opacity: .95;
}

.podcast-page .glass-box{
  position:absolute;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(140,190,255,.22);
  box-shadow:
    0 10px 40px rgba(0,0,0,.25),
    0 0 0 1px rgba(90,167,255,.10),
    0 0 18px rgba(43,120,255,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateZ(0);
  will-change: transform, opacity;
}

@keyframes drift {
  0%   { transform: translate(0,0) rotate(var(--r)); }
  50%  { transform: translate(10px,-12px) rotate(var(--r)); }
  100% { transform: translate(0,0) rotate(var(--r)); }
}

/* ✅ Lag fix: disable blur during scroll */
body.is-scrolling .podcast-page .glass-box{
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 10px 35px rgba(0,0,0,.22);
}

/* ✅ Beats */
.podcast-page .right-beats{
  position: fixed;
  right: 28px;
  top: 46%;
  transform: translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:16px;
  pointer-events:none;
  z-index: -10; /* still behind content */
  opacity:.55;
}

.podcast-page .beat,
.podcast-page .bars{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(7,10,24,.28);
  border: 1px solid rgba(120,190,255,.18);
  box-shadow: 0 0 0 1px rgba(110,180,255,.08) inset, 0 0 26px rgba(86,241,255,.10);
}
.podcast-page .beat{ width: 180px; height: 58px; }
.podcast-page .bars{ width: 140px; height: 52px; border-radius: 14px; }

.podcast-page .wave-svg{
  width: 100%;
  height: 100%;
  display:block;
}
.podcast-page .wave-svg rect{
  transform-box: fill-box;
  transform-origin: center;
  animation: wavePulse 1.6s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes wavePulse{
  0%,100%{ transform: scaleY(.62); }
  50%    { transform: scaleY(1); }
}

/* Top bar */
.podcast-page .topbar{ padding:22px 0 10px; }
.podcast-page .brand{
  display:flex; align-items:center; gap:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:700;
  font-size:13px;
  color:rgba(234,242,255,.78);
}
.podcast-page .brand .dot{
  width:10px;height:10px;border-radius:50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--blue));
  box-shadow: 0 0 16px rgba(43,120,255,.6);
}
.podcast-page .brand b{ color:rgba(90,167,255,.95); font-weight:800; }

/* HERO */
.podcast-page .hero{ padding: 26px 0 44px; position:relative; }
.podcast-page .hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap:32px;
  align-items:center;
}

.podcast-page .kicker{
  font-size:14px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(90,167,255,.92);
  margin:0 0 12px;
  display:flex;
  align-items:center;
  gap:10px;
}
.podcast-page .kicker::before{
  content:"";
  width:46px; height:1px;
  background: linear-gradient(90deg, transparent, rgba(90,167,255,.85), transparent);
  opacity:.8;
}

.podcast-page h1{
  margin:0 0 14px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height:1.08;
  letter-spacing:-.02em;
}
.podcast-page h1 .accent{
  background: linear-gradient(90deg, #ffffff, #b8d7ff 40%, #5aa7ff);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.podcast-page .subhead{
  margin: 0 0 22px;
  color: var(--muted);
  line-height:1.6;
  font-size: 15.5px;
  max-width: 56ch;
}

.podcast-page .cta-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top: 14px;
}

.podcast-page .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 13px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration:none;
  border: 1px solid rgba(120,190,255,.28);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  user-select:none;
  white-space:nowrap;
}

.podcast-page .btn-primary{
  background: linear-gradient(180deg, rgba(90,167,255,.98), rgba(43,120,255,.95));
  box-shadow: 0 18px 40px rgba(43,120,255,.25), 0 0 0 1px rgba(255,255,255,.06) inset;
}
.podcast-page .btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 24px 55px rgba(43,120,255,.30), 0 0 0 1px rgba(255,255,255,.08) inset;
}

.podcast-page .btn-secondary{
  background: rgba(12,18,44,.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.podcast-page .btn-secondary:hover{
  transform: translateY(-1px);
  border-color: rgba(120,190,255,.52);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.podcast-page .audio-bars{
  margin-top: 18px;
  display:flex;
  gap:14px;
  align-items:center;
  opacity:.95;
}

/* Shine */
.podcast-page .shine{
  border: var(--shineBorder);
  box-shadow: var(--shadow), var(--shineGlow);
}

/* Video */
.podcast-page .video-card{
  position:relative;
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(20,30,64,.58), rgba(10,14,34,.52));
  overflow:hidden;
}
.podcast-page .video-card::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(600px 260px at 50% 5%, rgba(90,167,255,.40), transparent 55%),
              radial-gradient(520px 260px at 15% 70%, rgba(86,241,255,.16), transparent 60%);
  opacity:.85;
  pointer-events:none;
}
.podcast-page .video-inner{
  position:relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: 0 0 0 1px rgba(120,190,255,.20), 0 0 26px rgba(43,120,255,.24);
  z-index:1;
}
.podcast-page .video-thumb{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: contrast(1.05) saturate(1.08);
  transform: scale(1.01);
}
.podcast-page .play-btn{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  background: radial-gradient(circle at 50% 50%, rgba(0,0,0,.28), rgba(0,0,0,.0) 55%);
  border:0;
  cursor:pointer;
  padding:0;
}
.podcast-page .play-btn .circle{
  width:84px;height:84px;
  border-radius:50%;
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(234,242,255,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 0 28px rgba(43,120,255,.35);
  display:grid;
  place-items:center;
}
.podcast-page .play-btn .triangle{
  width:0;height:0;
  border-left: 18px solid rgba(234,242,255,.95);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

/* Section title */
.podcast-page .section-title{
  margin: 44px 0 18px;
  text-align:center;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing:-.02em;
  position:relative;
}
.podcast-page .section-title::before,
.podcast-page .section-title::after{
  content:"";
  position:absolute;
  top:50%;
  width: min(220px, 20vw);
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(120,190,255,.55), transparent);
  opacity:.9;
}
.podcast-page .section-title::before{left:0}
.podcast-page .section-title::after{right:0}

.podcast-page .section{ padding: 10px 0 8px; }
.podcast-page .big-idea{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}

.podcast-page .panel{
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(16,26,54,.55), rgba(10,16,40,.42));
  padding: 20px;
  position:relative;
  overflow:hidden;
}
.podcast-page .panel::after{
  content:"";
  position:absolute; inset:-1px;
  background: radial-gradient(480px 220px at 18% 10%, rgba(90,167,255,.20), transparent 58%),
              radial-gradient(420px 220px at 90% 55%, rgba(86,241,255,.10), transparent 60%);
  pointer-events:none;
  opacity:.95;
}
.podcast-page .panel > *{position:relative}
.podcast-page .panel p{ color: var(--muted); line-height:1.65; font-size: 14.8px; margin:0 0 12px; }
.podcast-page .panel .quote{
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(120,190,255,.18);
  background: rgba(7,10,24,.35);
  color: rgba(234,242,255,.78);
  line-height:1.6;
}

.podcast-page ul.bullets{ margin:10px 0 0; padding:0; list-style:none; display:grid; gap:10px; }
.podcast-page ul.bullets li{
  display:flex; gap:10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(120,190,255,.16);
  background: rgba(7,10,24,.28);
}
.podcast-page .tick{
  width:22px;height:22px;
  border-radius: 8px;
  display:inline-grid;
  place-items:center;
  background: linear-gradient(180deg, rgba(86,241,255,.25), rgba(43,120,255,.35));
  border:1px solid rgba(120,190,255,.22);
  flex:0 0 22px;
}

.podcast-page .system-grid{ margin-top: 14px; display:grid; grid-template-columns: repeat(2, 1fr); gap:18px; }
.podcast-page .card{
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(16,26,54,.52), rgba(10,16,40,.40));
  padding: 18px;
  position:relative;
  overflow:hidden;
  min-height: 220px;
}
.podcast-page .card::before{
  content:"";
  position:absolute; inset:-1px;
  background: radial-gradient(420px 190px at 15% 0%, rgba(90,167,255,.22), transparent 60%),
              radial-gradient(420px 190px at 90% 70%, rgba(86,241,255,.10), transparent 62%);
  opacity:.95;
  pointer-events:none;
}
.podcast-page .card > *{position:relative}
.podcast-page .card-head{ display:flex; align-items:center; gap:10px; margin-bottom: 10px; }
.podcast-page .mini-list{ margin:0; padding:0; list-style:none; display:grid; gap:9px; }
.podcast-page .mini-list li{
  display:flex; gap:10px;
  color: rgba(234,242,255,.78);
  padding: 9px 10px;
  border-radius: 14px;
  background: rgba(7,10,24,.26);
  border: 1px solid rgba(120,190,255,.14);
}
.podcast-page .mini-list .dot{
  width:8px;height:8px;border-radius:50%;
  background: linear-gradient(180deg, rgba(86,241,255,.8), rgba(43,120,255,.9));
  margin-top: 6px;
  flex:0 0 8px;
}

.podcast-page .final-cta{
  margin: 28px 0 28px;
  padding: 22px;
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(16,26,54,.55), rgba(10,16,40,.40));
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.podcast-page .final-cta::before{
  content:"";
  position:absolute; inset:-1px;
  background: radial-gradient(520px 220px at 20% 20%, rgba(90,167,255,.24), transparent 60%),
              radial-gradient(520px 220px at 80% 80%, rgba(86,241,255,.10), transparent 62%);
  pointer-events:none;
  opacity:.95;
}
.podcast-page .final-cta > *{position:relative}
.podcast-page .final-cta .small{ margin:0; color: var(--muted); line-height:1.55; max-width: 60ch; font-size: 14px; }

/* ✅ CTA Footer like screenshot */
.podcast-page .podcast-footer-cta{ padding: 12px 0 40px; }
.podcast-page .podcast-footer-card{
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(10,16,40,.62), rgba(6,10,28,.55));
  border: 1px solid rgba(120,190,255,.18);
  box-shadow: 0 18px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(110,180,255,.10);
  overflow: hidden;
  position: relative;
  padding: 26px 22px;
}
.podcast-page .podcast-footer-card::before{
  content:"";
  position:absolute; inset:-1px;
  background:
    radial-gradient(800px 220px at 50% -10%, rgba(90,167,255,.22), transparent 65%),
    radial-gradient(600px 200px at 10% 70%, rgba(86,241,255,.10), transparent 60%),
    radial-gradient(600px 200px at 90% 70%, rgba(43,120,255,.12), transparent 60%);
  pointer-events:none;
  opacity:.9;
}
.podcast-page .podcast-footer-top{
  position: relative;
  text-align:center;
  padding: 18px 14px 22px;
  border-bottom: 1px solid rgba(120,190,255,.14);
}
.podcast-page .podcast-footer-top h3{
  margin: 0 0 8px;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing:-.02em;
  color: rgba(234,242,255,.95);
}
.podcast-page .podcast-footer-top p{ margin: 0 0 14px; color: rgba(234,242,255,.72); line-height: 1.6; }
.podcast-page .podcast-footer-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 22px;
  min-width: 260px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration:none;
  color: #fff;
  background: linear-gradient(180deg, rgba(90,167,255,.98), rgba(43,120,255,.95));
  border: 1px solid rgba(120,190,255,.28);
  box-shadow: 0 18px 40px rgba(43,120,255,.25), 0 0 0 1px rgba(255,255,255,.06) inset;
}
.podcast-page .podcast-footer-cols{
  position: relative;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 22px;
}
.podcast-page .podcast-footer-col h5{
  margin: 0 0 12px;
  font-size: 18px;
  color: rgba(234,242,255,.92);
}
.podcast-page .podcast-footer-col ul{ margin:0; padding:0; list-style:none; display:grid; gap: 10px; }
.podcast-page .podcast-footer-col a{
  text-decoration:none;
  color: rgba(234,242,255,.70);
  display:inline-flex;
  align-items:center;
  gap: 10px;
  transition: color .15s ease, transform .15s ease;
}
.podcast-page .podcast-footer-col a::before{
  content:"•";
  color: rgba(90,167,255,.75);
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}
.podcast-page .podcast-footer-col a:hover{
  color: rgba(234,242,255,.92);
  transform: translateX(2px);
}

/* Modal */
.podcast-page .modal{
  position:fixed;
  inset:0;
  display:none;
  place-items:center;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index:9999;
  padding: 24px;
}
.podcast-page .modal.open{ display:grid; }
.podcast-page .modal-card{
  width:min(980px, 100%);
  border-radius: 22px;
  overflow:hidden;
  background: rgba(10,16,40,.92);
  border: 1px solid rgba(120,190,255,.25);
  box-shadow: 0 22px 70px rgba(0,0,0,.60);
  position:relative;
}
.podcast-page .modal-close{
  position:absolute;
  right:12px;
  top:12px;
  width:40px; height:40px;
  border-radius: 12px;
  border: 1px solid rgba(120,190,255,.22);
  background: rgba(7,10,24,.40);
  color: rgba(234,242,255,.9);
  cursor:pointer;
  z-index:2;
}
.podcast-page .modal-body{
  aspect-ratio: 16 / 9;
  width:100%;
  background:#000;
}
.podcast-page .modal-body iframe,
.podcast-page .modal-body video{
  width:100%;
  height:100%;
  display:block;
  border:0;
}

/* ===========================
   PODCAST CTA FOOTER (WHMCS Safe)
   =========================== */

.podcast-footer-cta,
.podcast-footer-cta *{
  box-sizing: border-box;
}

.podcast-footer-cta{
  position: relative;
  z-index: 20;
  padding: 18px 0 60px;
  margin-top: 26px;
}

/* Ensure bootstrap/WHMCS container doesn't mess */
.podcast-footer-cta .container{
  width: min(1140px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.podcast-footer-card{
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(10,16,40,.62), rgba(6,10,28,.55));
  border: 1px solid rgba(120,190,255,.18);
  box-shadow: 0 18px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(110,180,255,.10);
  overflow: hidden;
  position: relative;
  padding: 26px 22px;
}

.podcast-footer-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(800px 220px at 50% -10%, rgba(90,167,255,.22), transparent 65%),
    radial-gradient(600px 200px at 10% 70%, rgba(86,241,255,.10), transparent 60%),
    radial-gradient(600px 200px at 90% 70%, rgba(43,120,255,.12), transparent 60%);
  pointer-events:none;
  opacity:.9;
}

.podcast-footer-top{
  position: relative;
  text-align: center;
  padding: 18px 14px 22px;
  border-bottom: 1px solid rgba(120,190,255,.14);
}

.podcast-footer-top h3{
  margin: 0 0 8px !important;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -.02em;
  color: rgba(234,242,255,.95);
}

.podcast-footer-top p{
  margin: 0 0 14px !important;
  color: rgba(234,242,255,.72);
  line-height: 1.6;
}

.podcast-footer-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  min-width: 260px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none !important;
  color: #fff !important;
  background: linear-gradient(180deg, rgba(90,167,255,.98), rgba(43,120,255,.95));
  border: 1px solid rgba(120,190,255,.28);
  box-shadow: 0 18px 40px rgba(43,120,255,.25), 0 0 0 1px rgba(255,255,255,.06) inset;
}

.podcast-footer-btn:hover{
  transform: translateY(-1px);
}

/* Columns */
.podcast-footer-cols{
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 22px;
}

.podcast-footer-col h5{
  margin: 0 0 12px !important;
  font-size: 18px;
  letter-spacing: -.01em;
  color: rgba(234,242,255,.92);
}

/* Kill default UL styles from WHMCS theme */
.podcast-footer-col ul{
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.podcast-footer-col li{
  margin: 0 !important;
  padding: 0 !important;
}

/* Links */
.podcast-footer-col a{
  text-decoration: none !important;
  color: rgba(234,242,255,.70) !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .15s ease, transform .15s ease;
}

.podcast-footer-col a::before{
  content:"•";
  color: rgba(90,167,255,.75);
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

.podcast-footer-col a:hover{
  color: rgba(234,242,255,.92) !important;
  transform: translateX(2px);
}

/* =========================================
   ✅ FOOTER SECTION BACKGROUND (SEPARATE)
   - Podcast pages already have background
   - Other WHMCS pages need footer background
   ========================================= */

/* Base footer styles (works everywhere) */
.podcast-footer-cta{
  position: relative;
  z-index: 20;
  padding: 24px 0 70px;
  margin-top: 26px;
  overflow: hidden;
  color: #eaf2ff;
}

/* Default (NON-podcast pages): create its own background */
html:not(.podcast-page-hide-whmcs-footer) .podcast-footer-cta{
  background: linear-gradient(180deg, #040816, #070d22);
}

/* Add glow overlays ONLY on non-podcast pages */
html:not(.podcast-page-hide-whmcs-footer) .podcast-footer-cta::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(1200px 700px at 15% 20%, rgba(62,122,255,.18), transparent 60%),
    radial-gradient(900px 520px at 85% 25%, rgba(86,241,255,.10), transparent 62%),
    radial-gradient(800px 520px at 55% 95%, rgba(43,120,255,.14), transparent 62%),
    linear-gradient(180deg, rgba(4,8,22,.88), rgba(7,13,34,.96));
  opacity: 1;
  z-index: 0;
}

html:not(.podcast-page-hide-whmcs-footer) .podcast-footer-cta::after{
  content:"";
  position:absolute;
  left:-15%;
  bottom:-40%;
  width:130%;
  height:80%;
  pointer-events:none;
  background:
    radial-gradient(closest-side at 30% 40%, rgba(86,241,255,.14), transparent 60%),
    radial-gradient(closest-side at 55% 55%, rgba(43,120,255,.22), transparent 62%),
    radial-gradient(closest-side at 80% 35%, rgba(90,167,255,.14), transparent 60%);
  filter: blur(22px);
  opacity:.65;
  transform: rotate(-2deg);
  z-index: 0;
}

/* Make sure footer content is above overlay */
.podcast-footer-cta > .container{
  position: relative;
  z-index: 2;
}

/* Podcast pages: keep section background transparent (page already has bg) */
html.podcast-page-hide-whmcs-footer .podcast-footer-cta{
  background: transparent;
}
html.podcast-page-hide-whmcs-footer .podcast-footer-cta::before,
html.podcast-page-hide-whmcs-footer .podcast-footer-cta::after{
  display:none;
}

/* Card polish (works on all pages) */
.podcast-footer-card{
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(10,16,40,.62), rgba(6,10,28,.55));
  border: 1px solid rgba(120,190,255,.18);
  box-shadow: 0 18px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(110,180,255,.10);
  overflow: hidden;
  position: relative;
  padding: 26px 22px;
}

.podcast-footer-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(800px 220px at 50% -10%, rgba(90,167,255,.22), transparent 65%),
    radial-gradient(600px 200px at 10% 70%, rgba(86,241,255,.10), transparent 60%),
    radial-gradient(600px 200px at 90% 70%, rgba(43,120,255,.12), transparent 60%);
  pointer-events:none;
  opacity:.9;
}

.podcast-footer-card > *{
  position: relative;
  z-index: 1;
}

/* Footer bottom copyright */
.podcast-footer-bottom{
  position: relative;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(120,190,255,.14);
}

.podcast-footer-bottom-inner{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  text-align:center;
  font-size: 13px;
  color: rgba(234,242,255,.72);
}

.podcast-footer-bottom-inner a{
  color: rgba(90,167,255,.92) !important;
  text-decoration: none !important;
  font-weight: 700;
}

.podcast-footer-bottom-inner a:hover{
  color: rgba(234,242,255,.92) !important;
  text-decoration: underline !important;
}

.podcast-footer-bottom-inner .sep{
  opacity:.6;
}


/* ===== AI AUTOMATION PAGE (only affects .ai-page) ===== */
.ai-page .ai-bg{
  /* If your bg-image uses background-image via CSS already, you can ignore this.
     Otherwise you can set a new bg here: */
  /* background-image: url("../img/ai-automation-bg.jpg"); */
}

/* replace beats area with AI icons */
.ai-page .right-beats.ai-icons{
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items:flex-end;
}

.ai-page .ai-icon-card{
  position:relative;
  width:140px;
  height:140px;
  border-radius:24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  overflow:hidden;
  animation: aiFloat 5.5s ease-in-out infinite;
}

.ai-page .ai-icon-card-2{
  width:132px;
  height:132px;
  opacity:0.95;
  animation-delay: .7s;
}

.ai-page .ai-icon-glow{
  position:absolute;
  inset:-40px;
  background: radial-gradient(circle at 35% 35%, rgba(71,245,255,0.22), transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(255,79,216,0.16), transparent 60%);
  filter: blur(6px);
  pointer-events:none;
}

.ai-page .ai-icon-svg{
  position:absolute;
  inset:22px;
  width: calc(100% - 44px);
  height: calc(100% - 44px);
  opacity:1;
}

@keyframes aiFloat{
  0%,100%{ transform: translateY(0px); }
  50%{ transform: translateY(-8px); }
}

/* mini icon under buttons */
.ai-page .audio-bars.ai-mini{
  margin-top:18px;
  display:flex;
  align-items:center;
  gap:10px;
  opacity:0.9;
}

.ai-page .ai-mini-chip{
  width:44px;
  height:18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.14);
  background: linear-gradient(90deg, rgba(71,245,255,0.18), rgba(138,92,255,0.14), rgba(255,79,216,0.12));
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.ai-page .ai-mini-line{
  width:90px;
  height:2px;
  border-radius:2px;
  background: linear-gradient(90deg, rgba(71,245,255,0.6), rgba(90,167,255,0.45), rgba(255,79,216,0.4));
  filter: blur(.0px);
}

/* ===== DIGITAL MARKETING PAGE (only affects .dm-page) ===== */
.dm-page .right-beats.dm-icons{
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items:flex-end;
}

.dm-page .dm-icon-card{
  position:relative;
  width:140px;
  height:140px;
  border-radius:24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  overflow:hidden;
  animation: dmFloat 5.8s ease-in-out infinite;
}

.dm-page .dm-icon-card-2{
  width:132px;
  height:132px;
  opacity:0.95;
  animation-delay: .8s;
}

.dm-page .dm-icon-glow{
  position:absolute;
  inset:-40px;
  background: radial-gradient(circle at 35% 35%, rgba(71,245,255,0.22), transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(255,79,216,0.16), transparent 60%);
  filter: blur(6px);
  pointer-events:none;
}

.dm-page .dm-icon-svg{
  position:absolute;
  inset:22px;
  width: calc(100% - 44px);
  height: calc(100% - 44px);
}

@keyframes dmFloat{
  0%,100%{ transform: translateY(0px); }
  50%{ transform: translateY(-8px); }
}

.dm-page .audio-bars.dm-mini{
  margin-top:18px;
  display:flex;
  align-items:center;
  gap:10px;
  opacity:0.9;
}

.dm-page .dm-mini-chip{
  width:44px;
  height:18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.14);
  background: linear-gradient(90deg, rgba(71,245,255,0.18), rgba(138,92,255,0.14), rgba(255,79,216,0.12));
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.dm-page .dm-mini-line{
  width:90px;
  height:2px;
  border-radius:2px;
  background: linear-gradient(90deg, rgba(71,245,255,0.6), rgba(90,167,255,0.45), rgba(255,79,216,0.4));
}

/* ===== SOCIAL MEDIA MARKETING PAGE (only affects .smm-page) ===== */
.smm-page .right-beats.smm-icons{
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items:flex-end;
}

.smm-page .smm-icon-card{
  position:relative;
  width:140px;
  height:140px;
  border-radius:24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  overflow:hidden;
  animation: smmFloat 5.6s ease-in-out infinite;
}
.smm-page .smm-icon-card-2{
  width:132px;
  height:132px;
  opacity:0.95;
  animation-delay:.75s;
}

.smm-page .smm-icon-glow{
  position:absolute;
  inset:-40px;
  background: radial-gradient(circle at 35% 35%, rgba(71,245,255,0.22), transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(255,79,216,0.16), transparent 60%);
  filter: blur(6px);
  pointer-events:none;
}

.smm-page .smm-icon-svg{
  position:absolute;
  inset:22px;
  width: calc(100% - 44px);
  height: calc(100% - 44px);
}

@keyframes smmFloat{
  0%,100%{ transform: translateY(0px); }
  50%{ transform: translateY(-8px); }
}

.smm-page .audio-bars.smm-mini{
  margin-top:18px;
  display:flex;
  align-items:center;
  gap:10px;
  opacity:0.9;
}
.smm-page .smm-mini-chip{
  width:44px;
  height:18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.14);
  background: linear-gradient(90deg, rgba(71,245,255,0.18), rgba(138,92,255,0.14), rgba(255,79,216,0.12));
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.smm-page .smm-mini-line{
  width:90px;
  height:2px;
  border-radius:2px;
  background: linear-gradient(90deg, rgba(71,245,255,0.6), rgba(90,167,255,0.45), rgba(255,79,216,0.4));
}

/* Responsive */
@media (max-width: 980px){
  .podcast-footer-cols{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px){
  .podcast-footer-cols{
    grid-template-columns: 1fr;
  }
  .podcast-footer-btn{
    width: 100%;
    min-width: 0;
  }
}

/* Responsive */
@media (max-width: 980px){
  .podcast-page .hero-grid{grid-template-columns:1fr; gap:18px;}
  .podcast-page .big-idea{grid-template-columns:1fr;}
  .podcast-page .system-grid{grid-template-columns:1fr;}
  .podcast-page .section-title::before,
  .podcast-page .section-title::after{display:none;}
  .podcast-page .right-beats{display:none;}
  .podcast-page .glass-box{display:none;}
  .podcast-page .podcast-footer-cols{grid-template-columns:1fr 1fr;}
}
@media (max-width: 520px){
  .podcast-page .podcast-footer-cols{grid-template-columns:1fr;}
  .podcast-page .podcast-footer-btn{width:100%; min-width:0;}
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .podcast-page .wave-svg rect{ animation:none !important; }
  .podcast-page .glass-box{ animation:none !important; }
}