/* MAIN CONTAINER */
.main-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
}

/* HERO SECTION */
.about-hero-section {
    text-align: center;
    margin-bottom: 4rem;
}

.about-hero-tagline {
    color: #4a9fb8;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.pg_about .hero-title-tagline-light {
    font-size: 3.3rem;
}
.pg_about .hero-title-tagline-bold {
    font-size: 3.2rem;
}
.lg-es.pg_about .hero-title-tagline-light {
    font-size: 3.3rem;
}
.lg-es.pg_about .hero-title-tagline-bold {
    font-size: 2.45rem;
}
.about-hero-description {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* VALUES SECTION */
.values-section {
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.value-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1.5rem;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.value-description {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* LEGAL SECTION */
.legal-section {
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4f8 100%);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    margin-bottom: 4rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.legal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.legal-header p {
    color: #5a6c7d;
    font-size: 0.95rem;
}

.legal-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.legal-link-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.legal-link-card:hover {
    background: white;
    border-color: #4a9fb8;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(74, 159, 184, 0.15);
}

.legal-link-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.2rem;
}

.legal-link-icon svg {
    width: 100%;
    height: 100%;
}

.legal-link-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.legal-link-description {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.6;
}

/* CTA SECTION - BASE */
.pg_about .cta-status {
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    margin-top: 3rem;
    border: 1px solid #e5e7eb;
}


.pg_about .cta-status p {
    color: #5a6c7d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* NOT LOGGED STATE */
.pg_about .cta-status.noplan {
    background: linear-gradient(135deg, #fcfdff 0%, #ebf6f9 100%);
}

/* TRIAL CRITICAL STATE */
.pg_about .cta-status.trial_1 {
    animation: none;
    background: linear-gradient(135deg, #faf3f4 0%, #ffdade 100%);
}
.pg_about .cta-status.trial_1 h3 {
    color: #2c3e50 !important;
}
.pg_about .cta-status p strong {
    color: #666 !important;
}

/* EXPIRED STATE */
.cta-expired {
    background: #f5f7fa;
}


/* RESPONSIVE */
@media (max-width: 1100px) {
    .pg_about .hero-title-tagline-light {
        font-size: 3.1rem;
    }
    .pg_about .hero-title-tagline-bold {
        font-size: 3rem;
    }
    .lg-es.pg_about .hero-title-tagline-light {
        font-size: 3.1rem;
    }
    .lg-es.pg_about .hero-title-tagline-bold {
        font-size: 2.3rem;
    }
}
@media (max-width: 768px) {
    .pg_about .hero-title-tagline-light {
        font-size: 3rem;
    }
    .pg_about .hero-title-tagline-bold {
        font-size: 2.9rem;
    }
    .lg-es.pg_about .hero-title-tagline-light {
        font-size: 3rem;
    }
    .lg-es.pg_about .hero-title-tagline-bold {
        font-size: 2.25rem;
    }
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .legal-links {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .about-hero-description {
        font-size: 1rem;
    }

    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-status {
        padding: 2rem 1.5rem;
    }

    .cta-status h2 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
}
@media (max-width: 555px) {
    .pg_about .hero-title-tagline-light {
        font-size: 2.8rem;
    }
    .pg_about .hero-title-tagline-bold {
        font-size: 2.7rem;
    }
    .lg-es.pg_about .hero-title-tagline-light {
        font-size: 2.8rem;
    }
    .lg-es.pg_about .hero-title-tagline-bold {
        font-size: 2.05rem;
    }
}
@media (max-width: 480px) {
    .cta-status h2 {
        font-size: 1.3rem;
    }
    .pg_about .cta-status p {
        font-size: 1rem;
    }
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    .main-container {
        padding: 2rem 1rem 4rem;
    }
    .legal-section {
        padding: 2rem;
    }
    .value-card {
        padding: 2.5rem 1.5rem;
    }
    .cta-status {
        padding: 2rem 1rem;
    }

}
@media (max-width: 400px) {
    .pg_about .hero-title-tagline-light {
        font-size: 2.6rem;
    }
    .pg_about .hero-title-tagline-bold {
        font-size: 2.5rem;
    }
    .lg-es.pg_about .hero-title-tagline-light {
        font-size: 2.45rem;
    }
    .lg-es.pg_about .hero-title-tagline-bold {
        font-size: 1.8rem;
    }
    .main-container {
        padding: 2rem 0.5rem 4rem;
    }

}