/* =========================================================================
   PHAROLL - ABOUT PAGE STYLES
   ========================================================================= */

.about-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10rem 2rem 6rem;
}

.about-hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--text-color);
    flex: 1;
}

.about-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 350px;
    flex: none;
}

.about-hero-image {
    width: 100%;
    border-radius: 32px;
    height: auto;
    object-fit: cover;
    margin-bottom: 8rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* CONTENT SECTION */
.about-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 8rem;
    align-items: stretch;
}

.about-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3rem;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.about-network-image {
    width: 100%;
    border-radius: 32px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.about-content-right {
    flex: 1;
}

.about-card {
    background: var(--card-bg);
    border: 1px solid #D4E9CD;
    border-radius: 32px;
    padding: 3rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: rgba(101, 170, 81, 0.4);
}

[data-theme="dark"] .about-card {
    border-color: rgba(101, 170, 81, 0.2);
}

.card-subtitle-small {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.card-pharoll-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.card-pharoll-intro strong {
    font-weight: 700;
    color: var(--text-color); 
}

.card-detail-block {
    margin-bottom: 2rem;
}

.card-detail-block:last-child {
    margin-bottom: 0;
}

.card-detail-title {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.card-detail-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* BOTTOM CARDS */
.about-bottom-cards {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 6rem;
}

.bottom-card {
    flex: 1; /* Match width equally between the two cards */
    padding: 1.8rem 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    height: auto;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem; /* Title sizing matching closely */
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.about-cta-card {
    flex: 1.4;
    margin-left: auto;
    padding: 1rem 0 1rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-cta-card .cta-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem; /* Adjusted slightly but contained */
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.about-cta-card .cta-subtext {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.btn-early-access {
    display: inline-block;
    background: linear-gradient(90deg, #A8D1A3 0%, #65AA51 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    align-self: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
}

.btn-early-access:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(101, 170, 81, 0.3);
}

[data-theme="dark"] .btn-early-access {
    background: linear-gradient(90deg, #94C3C5 0%, #A6D394 100%);
    color: #1E4E50;
}

/* QUOTE SECTION */
.about-quote-section {
    width: 100%;
    background-color: #f6f8f6;
    padding: 6rem 5% 8rem;
    display: flex;
    justify-content: center;
    text-align: center;
}

[data-theme="dark"] .about-quote-section {
    background-color: #121814;
}

.about-quote-container {
    max-width: 850px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quote-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.25rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.quote-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3.5rem;
}

.quote-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 3.5rem;
    font-weight: 500;
}

.btn-start-growing {
    display: inline-block;
    background: linear-gradient(135deg, #a4cc9e 0%, #65aa51 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 24px rgba(101, 170, 81, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-start-growing:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(101, 170, 81, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .btn-start-growing {
    background: linear-gradient(135deg, #A8D1A3 0%, #65AA51 100%);
    color: #1E4E50;
    box-shadow: 0 10px 30px rgba(101, 170, 81, 0.15);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .about-content {
        gap: 2rem;
    }
    .about-bottom-cards {
        flex-wrap: wrap;
    }
    .about-cta-card {
        flex: 100%;
        padding: 2.5rem 0;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .about-hero-top {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .about-hero-subtitle {
        flex: none;
        width: 100%;
    }

    .about-content {
        flex-direction: column;
        gap: 4rem;
        margin-bottom: 6rem;
    }
    
    .about-card {
        padding: 2rem;
    }
    
    .bottom-card {
        flex: 100%;
    }
}