/* ================= PODCAST MARKETING HERO ================= */

.podcast-hero {
    position: relative;
    padding: 90px 0 85px;
    background: #f7faff;
    overflow: hidden;
}

.podcast-hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.podcast-hero-content {
    width: 55%;
}

.podcast-hero-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 16px;
    background: #e9f1ff;
    color: #1565d8;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.podcast-hero-content h2 {
    margin: 0 0 22px;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    color: #152238;
}

.podcast-hero-content p {
    max-width: 680px;
    margin: 0 0 32px;
    color: #5d6878;
    font-size: 17px;
    line-height: 1.75;
}

.podcast-hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.podcast-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.podcast-btn-primary {
    background: #1565d8;
    color: #fff;
    border: 1px solid #1565d8;
}

.podcast-btn-primary:hover {
    background: #0d4fae;
    border-color: #0d4fae;
    color: #fff;
}

.podcast-btn-secondary {
    background: #fff;
    color: #1565d8;
    border: 1px solid #1565d8;
}

.podcast-btn-secondary:hover {
    background: #1565d8;
    color: #fff;
}


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

.podcast-hero-visual {
    width: 42%;
    display: flex;
    justify-content: center;
}

.podcast-visual-card {
    position: relative;
    width: 100%;
    max-width: 450px;
    min-height: 360px;
    padding: 50px 35px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(21, 101, 216, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.podcast-visual-card:before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #edf4ff;
    top: -90px;
    right: -70px;
}

.podcast-visual-card:after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: #f3f7ff;
    bottom: -80px;
    left: -60px;
}

.podcast-mic-icon {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1565d8;
    color: #fff;
    font-size: 42px;
    box-shadow: 0 15px 35px rgba(21, 101, 216, 0.25);
}

.podcast-wave {
    position: relative;
    z-index: 2;
    height: 65px;
    margin: 25px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.podcast-wave span {
    display: block;
    width: 5px;
    height: 25px;
    border-radius: 10px;
    background: #1565d8;
}

.podcast-wave span:nth-child(2),
.podcast-wave span:nth-child(11) {
    height: 40px;
}

.podcast-wave span:nth-child(3),
.podcast-wave span:nth-child(10) {
    height: 55px;
}

.podcast-wave span:nth-child(4),
.podcast-wave span:nth-child(9) {
    height: 35px;
}

.podcast-wave span:nth-child(5),
.podcast-wave span:nth-child(8) {
    height: 50px;
}

.podcast-wave span:nth-child(6),
.podcast-wave span:nth-child(7) {
    height: 65px;
}

.podcast-visual-text {
    position: relative;
    z-index: 2;
    text-align: center;
}

.podcast-visual-text strong {
    display: block;
    margin-bottom: 6px;
    color: #152238;
    font-size: 22px;
}

.podcast-visual-text small {
    color: #697586;
    font-size: 13px;
}


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

@media (max-width: 991px) {

    .podcast-hero {
        padding: 70px 0;
    }

    .podcast-hero-wrapper {
        flex-direction: column;
        gap: 45px;
    }

    .podcast-hero-content,
    .podcast-hero-visual {
        width: 100%;
    }

    .podcast-hero-content {
        text-align: center;
    }

    .podcast-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .podcast-hero-visual {
        justify-content: center;
    }
}

@media (max-width: 767px) {

    .podcast-hero {
        padding: 55px 0;
    }

    .podcast-hero-content h1 {
        font-size: 34px;
    }

    .podcast-hero-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .podcast-btn {
        width: 100%;
    }

    .podcast-visual-card {
        min-height: 300px;
        padding: 35px 20px;
    }

    .podcast-mic-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
}
/* ================= WHY PODCAST MARKETING ================= */

.why-podcast-section {
    padding: 90px 0;
    background: #ffffff;
}

.why-podcast-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 16px;
    background: #e9f1ff;
    color: #1565d8;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.why-podcast-heading h2 {
    margin: 0 0 18px;
    color: #152238;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
}

.why-podcast-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: #667085;
    font-size: 16px;
    line-height: 1.75;
}


/* ================= CARDS ================= */

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

.why-podcast-card {
    position: relative;
    padding: 32px 28px;
    background: #f8faff;
    border: 1px solid #e8eef7;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.why-podcast-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(21, 101, 216, 0.10);
    border-color: #d8e5f8;
}

.why-podcast-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #eaf2ff;
    color: #1565d8;
    font-size: 21px;
}

.why-podcast-card h3 {
    margin: 0 0 12px;
    color: #17253a;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
}

.why-podcast-card p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}


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

@media (max-width: 991px) {

    .why-podcast-section {
        padding: 70px 0;
    }

    .why-podcast-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-podcast-heading h2 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {

    .why-podcast-section {
        padding: 55px 0;
    }

    .why-podcast-heading {
        margin-bottom: 35px;
    }

    .why-podcast-heading h2 {
        font-size: 29px;
    }

    .why-podcast-heading p {
        font-size: 15px;
    }

    .why-podcast-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .why-podcast-card {
        padding: 26px 23px;
    }
}
/* ================= PODCAST MARKETING CHALLENGES ================= */

.podcast-challenges-section {
    position: relative;
    padding: 90px 0;
    background: #0f2f63;
    overflow: hidden;
}

.podcast-challenges-section:before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.035);
    top: -220px;
    right: -150px;
}

.podcast-challenges-section:after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.025);
    bottom: -160px;
    left: -120px;
}

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


/* ================= HEADING ================= */

.podcast-challenges-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.podcast-section-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 16px;
    background: #e9f1ff;
    color: #1565d8;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.podcast-challenges-heading h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
}

.podcast-challenges-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: #d7e3f5;
    font-size: 16px;
    line-height: 1.75;
}


/* ================= CHALLENGE GRID ================= */

.podcast-challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
}

.podcast-challenge-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 27px 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.podcast-challenge-card:hover {
    background: rgba(255, 255, 255, 0.13);
    transform: translateY(-4px);
}

.challenge-number {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #1565d8;
    font-size: 14px;
    font-weight: 700;
}

.podcast-challenge-card h3 {
    margin: 2px 0 9px;
    color: #ffffff;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
}

.podcast-challenge-card p {
    margin: 0;
    color: #d0dced;
    font-size: 14px;
    line-height: 1.65;
}


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

@media (max-width: 991px) {

    .podcast-challenges-section {
        padding: 70px 0;
    }

    .podcast-challenges-heading h2 {
        font-size: 34px;
    }

    .podcast-challenges-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {

    .podcast-challenges-section {
        padding: 55px 0;
    }

    .podcast-challenges-heading {
        margin-bottom: 35px;
    }

    .podcast-challenges-heading h2 {
        font-size: 29px;
    }

    .podcast-challenges-heading p {
        font-size: 15px;
    }

    .podcast-challenge-card {
        padding: 23px 20px;
        gap: 15px;
    }

    .challenge-number {
        width: 42px;
        height: 42px;
        font-size: 13px;
    }

    .podcast-challenge-card h3 {
        font-size: 17px;
    }

    .podcast-challenge-card p {
        font-size: 14px;
    }
}
/* ================= PODCAST MARKETING SERVICES ================= */

.podcast-services-section {
    padding: 90px 0;
    background: #f7faff;
}


/* ================= HEADING ================= */

.podcast-services-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.podcast-section-label-blue {
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 16px;
    background: #e9f1ff;
    color: #1565d8;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.podcast-services-heading h2 {
    margin: 0 0 18px;
    color: #152238;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
}

.podcast-services-heading p {
    max-width: 780px;
    margin: 0 auto;
    color: #667085;
    font-size: 16px;
    line-height: 1.75;
}


/* ================= SERVICE GRID ================= */

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


/* ================= SERVICE CARD ================= */

.podcast-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px 27px;
    background: #ffffff;
    border: 1px solid #e4eaf2;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.podcast-service-card:hover {
    transform: translateY(-6px);
    border-color: #cbdcf5;
    box-shadow: 0 18px 45px rgba(21, 101, 216, 0.10);
}


/* ================= ICON ================= */

.podcast-service-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf2ff;
    border-radius: 10px;
    color: #1565d8;
    font-size: 21px;
}

.podcast-service-card h3 {
    margin: 0 0 12px;
    color: #17253a;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
}

.podcast-service-card p {
    margin: 0 0 20px;
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
}


/* ================= SERVICE LINK ================= */

.podcast-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: #1565d8;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.podcast-service-link i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.podcast-service-link:hover {
    color: #0d4fae;
}

.podcast-service-link:hover i {
    transform: translateX(4px);
}


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

@media (max-width: 991px) {

    .podcast-services-section {
        padding: 70px 0;
    }

    .podcast-services-heading h2 {
        font-size: 34px;
    }

    .podcast-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {

    .podcast-services-section {
        padding: 55px 0;
    }

    .podcast-services-heading {
        margin-bottom: 35px;
    }

    .podcast-services-heading h2 {
        font-size: 29px;
    }

    .podcast-services-heading p {
        font-size: 15px;
    }

    .podcast-services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .podcast-service-card {
        padding: 25px 22px;
    }

    .podcast-service-card h3 {
        font-size: 18px;
    }
}
/* ================= PODCAST MARKETING CHANNELS ================= */

.podcast-channels-section {
    padding: 90px 0;
    background: #ffffff;
}


/* ================= HEADING ================= */

.podcast-channels-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.podcast-channels-heading h2 {
    margin: 0 0 18px;
    color: #152238;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
}

.podcast-channels-heading p {
    max-width: 780px;
    margin: 0 auto;
    color: #667085;
    font-size: 16px;
    line-height: 1.75;
}


/* ================= CHANNEL GRID ================= */

.podcast-channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


/* ================= CHANNEL CARD ================= */

.podcast-channel-card {
    display: flex;
    flex-direction: column;
    min-height: 215px;
    padding: 27px 23px;
    background: #f8faff;
    border: 1px solid #e5eaf2;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.podcast-channel-card:hover {
    background: #ffffff;
    border-color: #cbdcf5;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(21, 101, 216, 0.09);
}


/* ================= CHANNEL ICON ================= */

.channel-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #eaf2ff;
    color: #1565d8;
    font-size: 19px;
}

.channel-content h3 {
    margin: 0 0 9px;
    color: #17253a;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}

.channel-content p {
    margin: 0;
    color: #667085;
    font-size: 13.5px;
    line-height: 1.65;
}


/* ================= BOTTOM MESSAGE ================= */

.podcast-channels-bottom {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 20px 25px;
    text-align: center;
    background: #edf4ff;
    border-radius: 8px;
}

.podcast-channels-bottom p {
    margin: 0;
    color: #506176;
    font-size: 15px;
    line-height: 1.6;
}

.podcast-channels-bottom strong {
    color: #1565d8;
}


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

@media (max-width: 1100px) {

    .podcast-channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {

    .podcast-channels-section {
        padding: 70px 0;
    }

    .podcast-channels-heading h2 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {

    .podcast-channels-section {
        padding: 55px 0;
    }

    .podcast-channels-heading {
        margin-bottom: 35px;
    }

    .podcast-channels-heading h2 {
        font-size: 29px;
    }

    .podcast-channels-heading p {
        font-size: 15px;
    }

    .podcast-channels-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .podcast-channel-card {
        min-height: auto;
        padding: 23px 20px;
    }

    .podcast-channels-bottom {
        margin-top: 28px;
        padding: 18px 20px;
    }
}
/* ================= PODCAST GROWTH FUNNEL ================= */

.podcast-funnel-section {
    padding: 90px 0;
    background: #f7faff;
}


/* ================= HEADING ================= */

.podcast-funnel-heading {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.podcast-funnel-heading h2 {
    margin: 0 0 18px;
    color: #152238;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
}

.podcast-funnel-heading p {
    max-width: 780px;
    margin: 0 auto;
    color: #667085;
    font-size: 16px;
    line-height: 1.75;
}


/* ================= FUNNEL ================= */

.podcast-funnel {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
}


/* ================= FUNNEL STAGE ================= */

.podcast-funnel-stage {
    flex: 1;
    position: relative;
    min-width: 0;
    padding: 27px 20px;
    background: #ffffff;
    border: 1px solid #e1e8f2;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.podcast-funnel-stage:hover {
    transform: translateY(-6px);
    border-color: #cbdcf5;
    box-shadow: 0 15px 40px rgba(21, 101, 216, 0.10);
}

.podcast-funnel-final {
    background: #1565d8;
    border-color: #1565d8;
}

.podcast-funnel-final h3 {
    color: #ffffff;
}

.podcast-funnel-final p {
    color: #dbe8fb;
}

.podcast-funnel-final .funnel-stage-label {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}


/* ================= TOP ================= */

.funnel-stage-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.funnel-stage-number {
    position: absolute;
    top: -5px;
    left: 0;
    color: #a4afbf;
    font-size: 11px;
    font-weight: 700;
}

.podcast-funnel-final .funnel-stage-number {
    color: #c7dcfa;
}

.funnel-stage-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf2ff;
    color: #1565d8;
    font-size: 20px;
}

.podcast-funnel-final .funnel-stage-icon {
    background: #ffffff;
    color: #1565d8;
}


/* ================= CONTENT ================= */

.podcast-funnel-stage h3 {
    margin: 0 0 11px;
    color: #17253a;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
}

.podcast-funnel-stage p {
    min-height: 105px;
    margin: 0 0 20px;
    color: #667085;
    font-size: 13px;
    line-height: 1.65;
}

.funnel-stage-label {
    display: inline-block;
    padding: 6px 11px;
    border-radius: 20px;
    background: #edf4ff;
    color: #1565d8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.7px;
}


/* ================= ARROWS ================= */

.funnel-arrow {
    flex: 0 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ba8ba;
    font-size: 19px;
}


/* ================= BOTTOM ================= */

.podcast-funnel-bottom {
    max-width: 850px;
    margin: 40px auto 0;
    padding: 22px 30px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e1e8f2;
    border-radius: 8px;
}

.podcast-funnel-bottom strong {
    display: block;
    margin-bottom: 8px;
    color: #1565d8;
    font-size: 18px;
}

.podcast-funnel-bottom p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.6;
}


/* ================= TABLET ================= */

@media (max-width: 1100px) {

    .podcast-funnel {
        flex-wrap: wrap;
    }

    .podcast-funnel-stage {
        flex: 0 0 calc(50% - 25px);
    }

    .funnel-arrow {
        display: none;
    }
}


/* ================= MOBILE ================= */

@media (max-width: 767px) {

    .podcast-funnel-section {
        padding: 55px 0;
    }

    .podcast-funnel-heading {
        margin-bottom: 35px;
    }

    .podcast-funnel-heading h2 {
        font-size: 29px;
    }

    .podcast-funnel-heading p {
        font-size: 15px;
    }

    .podcast-funnel {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .podcast-funnel-stage {
        flex: none;
        width: 100%;
        text-align: left;
    }

    .funnel-stage-top {
        justify-content: flex-start;
    }

    .funnel-stage-number {
        right: 0;
        left: auto;
    }

    .funnel-stage-icon {
        width: 48px;
        height: 48px;
    }

    .podcast-funnel-stage p {
        min-height: auto;
    }

    .podcast-funnel-bottom {
        margin-top: 25px;
        padding: 20px;
    }

    .podcast-funnel-bottom strong {
        font-size: 16px;
    }
}