/* ==========================================================================
   About Page - Comprehensive Styles
   ========================================================================== */

.whitespace-pre-line {
    white-space: pre-line;
}

/* --- Hero Section --- */
.about-hero {
    padding: 10rem 1rem 6rem;
    text-align: center;
    background-color: #f9fafb;
}

.about-hero .container {
    max-width: 800px;
}

.about-hero__tagline {
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.about-hero__headline {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #111827;
}

.about-hero__subheadline {
    margin: 1.5rem auto 0;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #374151;
    max-width: 650px;
}

.about-hero .btn {
    margin-top: 2.5rem;
}

/* --- Generic Section Styles --- */
.about-section {
    padding: 6rem 1rem;
}

.about-section--light {
    background-color: #f9fafb;
}

.about-section__container--narrow {
    max-width: 800px;
    margin: 0 auto;
}

.about-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-section__headline {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.about-section__headline--centered {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.about-section__intro {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.about-section__body {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
}

.about-section__body--centered {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
}

.about-section__cta {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 600;
    color: #111827;
    transition: color 0.2s ease;
}

.about-section__cta:hover {
    color: #d1fe17;
}

/* --- Mission Section (3 Pillars) --- */
.about-mission__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .about-mission__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-mission__item {
    text-align: center;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
}

.about-mission__item:hover {
    border-color: #d1fe17;
}

.about-mission__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-mission__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.about-mission__description {
    color: #374151;
    line-height: 1.6;
}

/* --- Highlights Section (6 items in 2x3 grid) --- */
.about-highlights__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .about-highlights__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-highlights__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-highlights__item {
    text-align: center;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
}

.about-highlights__item:hover {
    border-color: #d1fe17;
}

.about-highlights__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-highlights__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.about-highlights__description {
    color: #374151;
    line-height: 1.6;
}

/* --- Values Section (4 items in 2x2 grid) --- */
.about-values__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .about-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-values__item {
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
}

.about-values__item:hover {
    border-color: #d1fe17;
}

.about-values__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-values__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.about-values__description {
    color: #374151;
    line-height: 1.6;
}

/* --- Community Section (Dark CTA) --- */
.about-community {
    padding: 5rem 1rem;
    text-align: center;
    background-color: #000000;
}

.about-community .container {
    max-width: 800px;
}

.about-community__headline {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.about-community__body {
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d1d5db;
    max-width: 700px;
}

.about-community .btn {
    margin-top: 2rem;
}

/* --- FAQ Section --- */
.about-faq {
    padding: 6rem 1rem;
    background-color: #f9fafb;
}

/* Adjust bottom padding for last section before footer */
.about-faq--last-section {
    padding-bottom: 7rem;
}

.about-faq .container {
    max-width: 800px;
}

.about-faq__headline {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #111827;
}

.about-faq__accordion {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-faq__item {
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    background-color: #ffffff;
}

.about-faq__question {
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    list-style: none;
    color: #111827;
}

.about-faq__question::-webkit-details-marker {
    display: none;
}

.about-faq__icon {
    font-size: 1.5rem;
    color: #9ca3af;
    transition: transform 0.2s ease;
}

.about-faq__item[open] > .about-faq__question .about-faq__icon {
    transform: rotate(45deg);
}

.about-faq__answer {
    padding: 0 1.5rem 1.5rem;
    color: #4b5563;
    line-height: 1.6;
}


/* ==========================================================================
   RESPONSIVE DESIGN - Tablet (768px - 1024px)
   ========================================================================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .about-hero {
        padding: 8.5rem 1rem 5rem;
    }

    .about-section {
        padding: 5rem 1rem;
    }

    .about-community {
        padding: 4.5rem 1rem;
    }

    .about-faq {
        padding: 5rem 1rem;
    }

    .about-faq--last-section {
        padding-bottom: 6rem;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN - Mobile (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
    .about-hero {
        padding: 7rem 1rem 3rem;
    }

    .about-hero__tagline {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .about-hero__headline {
        font-size: clamp(1.625rem, 5vw, 2.5rem);
    }

    .about-hero__subheadline {
        font-size: 1rem;
        margin: 1.25rem auto 0;
    }

    .about-section {
        padding: 3rem 1rem;
    }

    .about-section__headline {
        font-size: 1.5rem;
    }

    .about-section__headline--centered {
        font-size: clamp(1.375rem, 4vw, 2.25rem);
    }

    .about-section__intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .about-section__body,
    .about-section__body--centered {
        font-size: 1rem;
    }

    .about-mission__grid {
        gap: 1.5rem;
    }

    .about-mission__item {
        padding: 1.5rem;
    }

    .about-mission__icon {
        font-size: 2.5rem;
    }

    .about-mission__title {
        font-size: 1.125rem;
    }

    .about-highlights__grid {
        gap: 1.5rem;
    }

    .about-highlights__item {
        padding: 1.5rem;
    }

    .about-highlights__icon {
        font-size: 2rem;
    }

    .about-highlights__title {
        font-size: 1.0625rem;
    }

    .about-values__grid {
        gap: 1.5rem;
    }

    .about-values__item {
        padding: 1.5rem;
    }

    .about-values__icon {
        font-size: 2rem;
    }

    .about-values__title {
        font-size: 1.125rem;
    }

    .about-community {
        padding: 3.5rem 1rem;
    }

    .about-community__headline {
        font-size: clamp(1.75rem, 4vw, 2.25rem);
    }

    .about-community__body {
        font-size: 1rem;
    }

    .about-faq {
        padding: 3rem 1rem;
    }

    .about-faq--last-section {
        padding-bottom: 4.5rem;
    }

    .about-faq__headline {
        font-size: clamp(1.375rem, 4vw, 2.25rem);
    }

    .about-faq__question {
        font-size: 1rem;
        padding: 1.25rem;
    }

    .about-faq__answer {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9375rem;
    }

    /* Full-width CTA buttons on mobile */
    .about-hero .btn,
    .about-community .btn,
    .btn-primary,
    .btn-secondary,
    .btn-large,
    .btn,
    .btn-hero-primary,
    .btn-cta-primary-black,
    .btn-cta-inverted,
    .btn-cta-primary-white,
    .pricing-cta,
    .cta-buttons .btn,
    .action-buttons .btn,
    .hero-cta .btn,
    .hero-buttons .btn {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        text-align: center !important;
    }

    .cta-buttons,
    .action-buttons,
    .hero-cta,
    .hero-buttons,
    .cta-buttons-group {
        flex-direction: column !important;
        width: 100% !important;
    }

    .cta-buttons > *,
    .action-buttons > *,
    .hero-cta > *,
    .hero-buttons > *,
    .cta-buttons-group > * {
        width: 100% !important;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN - Extra Small Mobile (max-width: 480px)
   ========================================================================== */
@media (max-width: 480px) {
    .about-hero {
        padding: 6.5rem 1rem 2.5rem;
    }

    .about-hero__tagline {
        font-size: 0.8125rem;
    }

    .about-hero__headline {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .about-hero__subheadline {
        font-size: 0.9375rem;
    }

    .about-section {
        padding: 2.5rem 1rem;
    }

    .about-section__headline {
        font-size: 1.375rem;
    }

    .about-section__headline--centered {
        font-size: clamp(1.25rem, 4vw, 2rem);
    }

    .about-section__intro {
        font-size: 0.9375rem;
    }

    .about-section__body,
    .about-section__body--centered {
        font-size: 0.9375rem;
    }

    .about-mission__item,
    .about-highlights__item,
    .about-values__item {
        padding: 1.25rem;
    }

    .about-mission__icon,
    .about-highlights__icon,
    .about-values__icon {
        font-size: 2rem;
    }

    .about-mission__title,
    .about-highlights__title,
    .about-values__title {
        font-size: 1rem;
    }

    .about-community {
        padding: 3rem 1rem;
    }

    .about-community__headline {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .about-community__body {
        font-size: 0.9375rem;
    }

    .about-faq {
        padding: 2.5rem 1rem;
    }

    .about-faq--last-section {
        padding-bottom: 4rem;
    }

    .about-faq__headline {
        font-size: clamp(1.25rem, 4vw, 2rem);
    }

    .about-faq__question {
        font-size: 0.9375rem;
        padding: 1.125rem;
    }

    .about-faq__answer {
        padding: 0 1.125rem 1.125rem;
        font-size: 0.875rem;
    }
}
