/* ===== PODCAST HERO ===== */
.podcast-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--section-padding) 0;
    background: var(--black-bg);
    position: relative;
    overflow: hidden;
}

.podcast-hero-title {
    font-family: var(--font-heading) !important;
    font-size: clamp(3rem, 5vw, 4.5rem) !important;
    font-weight: 700 !important;
    color: var(--heading-color) !important;
    margin-bottom: 24px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.01em !important;
}

.podcast-hero-subtitle {
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    color: #b8b8b8 !important;
    max-width: 600px !important;
    margin: 0 auto 60px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}


/* ===== VIDEO GRID / STANDARD SECTION ===== */
.standard-section {
    padding: var(--section-padding) 0;
    background: var(--black-bg);
}

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

.section-title-lg {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

.video-grid {
    display: grid;
    gap: 40px;
    width: 100%;
}

.video-row {
    display: grid;
    gap: 30px;
    width: 100%;
    margin-bottom: 0;
}

.video-row.single {
    grid-template-columns: 1fr;
}

.video-row.double {
    grid-template-columns: repeat(2, 1fr);
}

/* ===== VIDEO CARD ===== */
.video-card {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background: #000;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.35s ease,
        box-shadow 0.35s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 175, 55, 0.15),
        0 0 1px rgba(212, 175, 55, 0.6);
}

.video-card:hover .video-meta {
    background: #111;
    border-top-color: rgba(212, 175, 55, 0.4);
}

.video-card:hover .video-desc {
    color: #aaa;
}

.video-card.large {
    width: 100%;
}

.video-card.small {
    width: 100%;
}

/* ===== VIDEO THUMBNAIL ===== */
.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto !important;
}

.video-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== VIDEO META (Stats + Description) — tight below video ===== */
.video-meta {
    padding: 14px 18px 18px;
    background: #0d0d0d;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Stats Row */
.video-stats-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    color: #d4af37;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.stat-icon {
    font-size: 12px;
    line-height: 1;
    color: #d4af37;
    width: 14px;
    text-align: center;
}

.stat-text {
    font-size: 13px;
    color: #d4af37;
}

/* Video Description */
.video-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: #888;
    line-height: 1.55;
    margin: 0;
    font-weight: 300;
    text-align: center;
}


/* ===== PODCAST HERO ANIMATIONS ===== */
#podcast-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

.animate-fade-up-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.5s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-stagger {
    opacity: 0;
    animation: staggerIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.8s;
}

@keyframes staggerIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.float-animation {
    opacity: 1;
    transform: translateY(20px) scale(0.9);
    animation: floatIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: calc(0.8s + var(--delay));
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }

    50% {
        transform: translateY(-5px) scale(1);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.platform-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    border-color: #d4af37;
}

.podcast-hero {
    position: relative;
    overflow: hidden;
}

.podcast-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: gradientPulse 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes gradientPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.podcast-hero .container {
    position: relative;
    z-index: 2;
}

/* ===== WHAT WE OFFER ===== */
.small-title {
    letter-spacing: 3px;
    font-size: 12px;
    color: #aaa;
    font-family: 'SF Pro Text', sans-serif;
}

.main-title {
    font-size: clamp(3rem, 5vw, 4.5rem) !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    color: var(--heading-color) !important;
}

.section-title-lg {
    font-size: clamp(2.5rem, 4vw, 3.5rem) !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    color: var(--heading-color) !important;
    text-align: center !important;
    margin-bottom: 40px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
}

.offer-item {
    display: flex;
    align-items: flex-start;
    padding: 35px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0.4;
    transition: all 0.4s ease;
    cursor: pointer;
    flex-wrap: wrap;
}

.offer-item .content-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.offer-item.active,
.offer-item:hover {
    opacity: 1;
    border-color: rgba(212, 175, 55, 0.3);
}

.offer-item span {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gold-base);
    margin-right: 25px;
    font-weight: 500;
    padding-top: 5px;
    letter-spacing: 1px;
}

.offer-item h5 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 10px 0;
}

.offer-item p {
    font-family: var(--font-body);
    font-size: 15px;
    color: #999;
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
    font-weight: 300;
}

.offer-image {
    width: 100%;
    max-width: 420px;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.offer-dots button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #222;
    color: #aaa;
    transition: 0.3s;
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 600;
    cursor: pointer;
}

.offer-dots button.active {
    background: #caa85c;
    color: #000;
}

.offer-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.offer-item:hover {
    opacity: 0.7 !important;
    transform: translateX(5px);
}

.offer-item.active {
    opacity: 1 !important;
    transform: translateX(0);
}

.offer-item.active:hover {
    opacity: 1 !important;
    transform: translateX(0);
}

#offerImage {
    transition: opacity 0.3s ease;
}

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

.offer-dots button:hover {
    transform: scale(1.1);
}

/* ===== SCALE CTA SECTION ===== */
.scale-cta-section {
    padding: var(--section-padding) 0;
    background: #000000;
    text-align: center;
}

.scale-cta-section .container {
    max-width: 600px !important;
    padding: 0 20px;
}

.scale-title {
    font-family: 'SF Pro Display', sans-serif;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.scale-title .italic {
    font-style: normal;
}

.scale-subtitle {
    font-family: 'SF Pro Text', sans-serif;
    font-size: 16px;
    color: #6d6d6d;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.btn-dark-cta {
    background: #d4af37 !important;
    color: #0b0b0b !important;
    border-radius: 50px !important;
    padding: 8px 20px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    font-family: 'SF Pro Text', sans-serif !important;
    border: none !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
}

.btn-dark-cta:hover {
    background: #c9a55c !important;
    color: #0b0b0b !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .video-row.double {
        grid-template-columns: 1fr;
    }

    .video-card.small {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --section-padding-mobile: 60px;
    }

    .podcast-hero {
        padding: 100px 20px 50px;
        min-height: 40vh;
    }

    .standard-section {
        padding: var(--section-padding-mobile) 0;
    }

    .video-grid {
        gap: 0;
    }

    .video-row.double {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-meta {
        padding: 12px 14px 16px;
    }

    .video-stats-row {
        gap: 14px;
    }

    .stat-item {
        font-size: 12px;
    }

    .video-desc {
        font-size: 12px;
    }

    .platform-icons {
        gap: 15px;
    }

    .platform-icon {
        width: 50px;
        height: 50px;
    }

    .main-title {
        font-size: 32px;
    }

    .offer-item h5 {
        font-size: 18px;
    }

    .offer-item p {
        margin-left: 0;
        font-size: 14px;
        max-width: 100%;
    }

    .offer-image {
        height: 300px;
    }

    .offer-dots button {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .offer-item {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 32px;
    }

    .offer-item p {
        margin-left: 0;
    }

    .offer-image {
        height: 300px;
    }
}