/* =========================================
   CONTENT PAGE STYLES
   ========================================= */

.page-content {
    background: var(--bg-light);
}

/* --- HERO SECTION --- */
.content-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5%;
    text-align: center;
}

.hero-container {
    max-width: 900px;
}

.content-hero .hero-title {
    font-size: var(--h1-fs);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1;
}

.content-hero .hero-subtitle {
    font-size: var(--subtitle-fs);
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 3.5rem;
    line-height: 1.4;
    font-weight: 500;
}

.content-hero .btn-primary {
    background: var(--white);
    color: var(--primary-pink);
    /* Dark Teal */
    font-weight: 700;
    font-size: var(--btn-fs);
}

.content-hero .btn-primary:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* --- INSIGHT PATHS (Cards) --- */
.insight-paths {
    padding: 6rem 5% 10rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.insight-card {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 28px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.insight-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(7, 57, 59, 0.08);
}

.insight-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.insight-card h3 {
    font-size: var(--card-title-fs);
    color: var(--secondary-purple);
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.insight-card p {
    font-size: var(--card-body-fs);
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.insight-link {
    color: var(--primary-pink);
    font-weight: 800;
    text-decoration: none;
    font-size: var(--body-lg-fs);
    border-bottom: 2px solid transparent;
    display: inline-block;
    width: fit-content;
    transition: all 0.3s ease;
}

.insight-link:hover {
    border-color: var(--primary-pink);
    padding-left: 5px;
}

/* --- SPEAKING FROM THE FIELD --- */
.speaking-field {
    background: var(--white);
    padding: 10rem 5%;
}


.grid-2 {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 8rem;
    align-items: center;
    /* Center vertically */
}

/* ... keep other styles ... */

/* --- FEATURED TOPICS GRID --- */
.featured-topics-box {
    background: transparent;
    padding: 0;
    border: none;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
    /* Lower the cards position */
}

.featured-topics-box h4 {
    font-size: 1.25rem;
    color: var(--secondary-purple);
    margin-bottom: 4rem;
    /* Increased spacing to push cards down */
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    text-align: center;
    /* Centered title */
    padding-left: 0;
}

.topics-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0;
    list-style: none;
    margin: 0;
    width: 100%;
    height: auto;
    min-height: 0;
    perspective: none;
}

.topics-list li {
    position: relative;
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.topics-list li:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Card Content Styling */
.topics-list li i {
    font-size: 2rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
    background: rgba(7, 57, 59, 0.05);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.topics-list li span {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-dark);
}

/* Responsive Grid */
@media (max-width: 500px) {
    .topics-list {
        grid-template-columns: 1fr;
    }
}


.section-title {
    font-size: var(--h2-fs);
    color: var(--secondary-purple);
    margin-bottom: 3rem;
    line-height: 1;
}

.section-title span {
    color: var(--primary-pink);
}

.speaking-body p {
    font-size: var(--body-fs);
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.core-themes {
    margin: 4rem 0;
}

.core-themes h4 {
    font-size: var(--body-lg-fs);
    color: var(--secondary-purple);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 800;
}

.core-themes ul {
    list-style: none;
    padding: 0;
}

.core-themes li {
    margin-bottom: 1rem;
    font-size: var(--card-body-fs);
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.core-themes li span {
    color: var(--primary-pink);
    margin-right: 18px;
    font-weight: 900;
}

/* Old definitions removed */


/* Old definitions removed */

/* --- HOW I THINK ABOUT THE WORK --- */
.thinking-work {
    padding: 12rem 5%;
    color: var(--white);
}

.centered {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.thinking-work .section-title {
    color: var(--white);
}

.thinking-body .lead {
    font-size: var(--subtitle-fs);
    line-height: 1.5;
    margin-bottom: 4rem;
    opacity: 1;
    font-weight: 500;
}

.key-question {
    font-size: 3rem;
    font-weight: 800;
    font-style: italic;
    margin: 5rem 0;
    color: var(--teal);
    line-height: 1.2;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-top: 6rem;
}

.principle h4 {
    font-size: 1.4rem;
    font-weight: 600;
}

.p-line {
    width: 60px;
    height: 3px;
    background: var(--teal);
    margin: 0 auto 1.5rem;
}

/* --- BEYOND THE WORK --- */
.beyond-work {
    padding: 10rem 5%;
    background: var(--white);
    position: relative;
}

.beyond-content-wrapper {
    max-width: 600px;
    margin-right: auto;
    /* Empujamos todo a la izquierda */
    text-align: left;
}

.beyond-work .section-title {
    margin-bottom: 2rem;
}

.beyond-body p {
    font-size: var(--body-fs);
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.beyond-body {
    border-left: none;
    /* Quitamos el borde para que el título esté sobre el texto */
    padding-left: 0;
}

.final-note {
    font-weight: 700;
    color: var(--secondary-purple) !important;
    margin-top: 3rem;
}

/* --- SUBSCRIPTION SECTION --- */
.subscription-section {
    padding: 8rem 5%;
    background: var(--bg-light);
}

.subscription-section .section-subtitle {
    margin-bottom: 4rem;
    font-size: var(--subtitle-fs);
    color: var(--text-light);
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.email-form input {
    padding: 1.5rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    font-size: var(--body-fs);
    width: 100%;
    transition: all 0.3s ease;
    background: var(--white);
}

.email-form input:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(7, 57, 59, 0.1);
}

.email-form .btn {
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: var(--btn-fs);
}

/* --- FINAL CTA CONTENT --- */
.final-cta-content {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 8rem 5% 10rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.5rem;
    color: var(--secondary-purple);
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: var(--header-font);
    /* Ensure it uses the main header font */
    letter-spacing: -0.02em;
}

.cta-role {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-pink);
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-divider {
    width: 60px;
    height: 4px;
    background: var(--secondary-purple);
    margin: 0 auto 2.5rem;
    border-radius: 2px;
}

.cta-desc {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 4rem;
    font-weight: 500;
}

.btn-large {
    padding: 1.2rem 3rem !important;
    font-size: 1.1rem !important;
}

/* --- RESPONSIVE --- */
@media (max-width: 968px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .beyond-body {
        border-left: none;
        border-top: 5px solid var(--primary-pink);
        padding-left: 0;
        padding-top: 3rem;
    }

    .email-form {
        max-width: 100%;
    }

    .hero-title {
        font-size: var(--h1-fs);
    }
}

@media (max-width: 576px) {
    .content-hero {
        padding: 6rem 5%;
    }

    .key-question {
        font-size: var(--body-lg-fs);
    }

    .thinking-body .lead {
        font-size: var(--body-fs);
    }
}