/**
 * Podcast Landing Page Styles
 *
 * Minimal, conversion-focused landing page
 * Brand: Navy #020051, Coral #FF6048, Purple #6248FF
 * Fonts: Source Serif 4 (headings), DM Sans (body)
 */

/* ============================================
   BASE STYLES
   ============================================ */

.page-podcast {
    background: #fff;
    color: #020051;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.page-podcast *,
.page-podcast *::before,
.page-podcast *::after {
    box-sizing: border-box;
}

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

/* Typography */
.page-podcast h1,
.page-podcast h2,
.page-podcast h3,
.page-podcast h4 {
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 1rem;
    color: #020051;
}

.page-podcast h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

.page-podcast h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 2.5rem;
}

.page-podcast h3 {
    font-size: 1.25rem;
}

.page-podcast p {
    margin: 0 0 1rem;
}

/* ============================================
   SECTION 1: HERO
   ============================================ */

.podcast-hero {
    background: #020051;
    color: #fff;
    padding: 24px 24px 4rem;
    min-height: auto;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .podcast-hero {
        max-height: none;
        padding-bottom: 3rem;
    }
}

/* Arc decorations */
.podcast-hero-arcs,
.podcast-testimonials-arcs,
.podcast-guarantee-arcs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.podcast-hero-arcs svg,
.podcast-testimonials-arcs svg,
.podcast-guarantee-arcs svg {
    width: 100%;
    height: 100%;
}

.podcast-logo {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.podcast-logo img {
    max-width: 160px;
    height: auto;
}

.podcast-hero-content {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.podcast-hero-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.podcast-eyebrow {
    display: inline-block;
    background: rgba(255, 96, 72, 0.15);
    color: #FF6048;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.podcast-hero h1 {
    color: #fff;
    margin-bottom: 1.25rem;
}

.podcast-hero-text > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Grid: Form + Mockup */
.podcast-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .podcast-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Form Styles */
.podcast-form-wrap {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
}

#shq-podcast-form {
    display: flex;
    flex-direction: column;
}

#shq-podcast-form input[type="text"],
#shq-podcast-form input[type="email"] {
    margin-bottom: 12px;
    padding: 14px 16px;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    color: #020051;
    transition: border-color 0.2s ease;
}

#shq-podcast-form input[type="text"]:focus,
#shq-podcast-form input[type="email"]:focus {
    outline: none;
    border-color: #6248FF;
}

#shq-podcast-form input::placeholder {
    color: #9ca3af;
}

#shq-podcast-form button[type="submit"] {
    background: #FF6048;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 16px 32px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s ease, transform 0.1s ease;
}

#shq-podcast-form button[type="submit"]:hover {
    background: #e8553e;
}

#shq-podcast-form button[type="submit"]:active {
    transform: scale(0.98);
}

.shq-form-note {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Success State */
.shq-form-success {
    text-align: center;
    padding: 1rem 0;
}

.shq-form-success h3 {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 1.5rem;
    color: #020051;
    margin-bottom: 0.75rem;
}

.shq-form-success p {
    font-size: 1rem;
    color: #4b5563;
    margin: 0;
}

.shq-form-success a {
    color: #6248FF;
    text-decoration: underline;
}

.shq-form-success a:hover {
    color: #FF6048;
}

/* Guide Image */
.podcast-guide-mockup {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.podcast-guide-mockup .guide-image {
    max-width: 280px;
    width: auto;
    height: auto;
    border-radius: 4px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.podcast-guide-mockup .guide-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
}

@media (max-width: 768px) {
    .podcast-guide-mockup .guide-image {
        max-width: 200px;
    }
}

/* ============================================
   SECTION 2: VALUE PROPS
   ============================================ */

.podcast-value-props {
    padding: 4rem 24px;
    background: #fff;
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .value-props-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.value-prop {
    text-align: center;
}

.value-prop-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(98, 72, 255, 0.1), rgba(255, 96, 72, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.value-prop-icon svg {
    width: 28px;
    height: 28px;
    stroke: #6248FF;
}

.value-prop h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.value-prop p {
    font-size: 0.9375rem;
    color: #4b5563;
    margin: 0;
}

/* ============================================
   SECTION 3: TESTIMONIALS
   ============================================ */

.podcast-testimonials {
    position: relative;
    overflow: hidden;
    background: #f9fafb;
}

/* Override the template part's section padding */
.podcast-testimonials .testimonials-section {
    padding: 4rem 24px;
    background: transparent;
}

.podcast-testimonials .testimonials-header {
    margin-bottom: 2rem;
}

.podcast-testimonials .container {
    position: relative;
    z-index: 1;
}

/* Ensure cards have hover lift effect */
.podcast-testimonials .testimonial-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.podcast-testimonials .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* ============================================
   SECTION 4: GUIDE BENEFITS
   ============================================ */

.podcast-guide-benefits {
    padding: 5rem 24px;
    background: #fff;
}

.podcast-guide-benefits h2 {
    color: #020051;
}

.benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.benefits-list svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    stroke: #FF6048;
    stroke-width: 2.5;
    margin-top: 2px;
}

.benefits-list span {
    font-size: 1.0625rem;
    color: #020051;
}

/* ============================================
   SECTION 5: HOW IT WORKS
   ============================================ */

.podcast-how-it-works {
    padding: 5rem 24px;
    background: #f9fafb;
}

.podcast-how-it-works h2 {
    color: #020051;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.step {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #020051;
    color: #fff;
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.step p {
    font-size: 0.9375rem;
    color: #4b5563;
    margin: 0;
}

/* ============================================
   SECTION 6: FAQ
   ============================================ */

.podcast-faq {
    padding: 5rem 24px;
    background: #fff;
}

.podcast-faq h2 {
    color: #020051;
}

.podcast-faq .faq-grid {
    max-width: 700px;
    margin: 0 auto;
}

.podcast-faq .faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.podcast-faq .faq-item:last-child {
    border-bottom: none;
}

.podcast-faq .faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    cursor: pointer;
    user-select: none;
}

.podcast-faq .faq-q h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.podcast-faq .faq-q svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: #9ca3af;
    transition: transform 0.2s ease;
}

.podcast-faq .faq-item.open .faq-q svg {
    transform: rotate(180deg);
}

.podcast-faq .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.podcast-faq .faq-item.open .faq-a {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.podcast-faq .faq-a p {
    font-size: 0.9375rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   SECTION 7: GUARANTEE CTA
   ============================================ */

.podcast-guarantee {
    padding: 4rem 24px;
    background: #020051;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.podcast-guarantee .podcast-container {
    position: relative;
    z-index: 1;
}

.podcast-guarantee .guarantee-badge {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.podcast-guarantee .guarantee-badge svg {
    width: 32px;
    height: 32px;
    stroke: #FF6048;
}

.podcast-guarantee h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.podcast-guarantee > .podcast-container > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    margin: 0 auto 2rem;
}

.podcast-guarantee .btn-coral {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #FF6048;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.1s ease;
}

.podcast-guarantee .btn-coral:hover {
    background: #e54f3a;
}

.podcast-guarantee .btn-coral:active {
    transform: scale(0.98);
}

/* ============================================
   MINIMAL FOOTER
   ============================================ */

.podcast-footer {
    padding: 2rem 24px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.podcast-footer p {
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 0 0 0.5rem;
}

.footer-links {
    font-size: 0.8125rem;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #020051;
}

.footer-links .divider {
    color: #d1d5db;
    margin: 0 0.5rem;
}

/* ============================================
   CF7 OVERRIDES
   ============================================ */

.podcast-form-wrap .wpcf7-response-output {
    margin: 1rem 0 0;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
}

.podcast-form-wrap .wpcf7-mail-sent-ok {
    background: #ecfdf5;
    border-color: #10b981;
    color: #065f46;
}

.podcast-form-wrap .wpcf7-validation-errors,
.podcast-form-wrap .wpcf7-acceptance-missing {
    background: #fef2f2;
    border-color: #ef4444;
    color: #991b1b;
}

.podcast-form-wrap .wpcf7-not-valid-tip {
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 0.25rem;
}

.podcast-form-wrap .wpcf7-spinner {
    margin: 0.5rem auto 0;
}

/* Hide labels if using placeholder approach */
.podcast-form-wrap .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
