/* =========================================================
   ABOUT PAGE — PROFESSIONAL CONSULTING + SAAS HYBRID STYLE
========================================================= */

/* ================= ABOUT HERO ================= */

.about-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f0f7fb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    text-align: left;
}

/* Soft decorative pattern (matches your TaxOps vibe) */
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 40%, rgba(118, 179, 218, 0.08) 0%, transparent 55%),
        radial-gradient(circle at 85% 75%, rgba(47, 94, 155, 0.05) 0%, transparent 55%);
    pointer-events: none;
}

/* Center content but keep consulting feel */
.about-hero-content {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Main headline */
.about-hero h1 {
    font-family: var(--font-serif);
    font-size: 44px;
    line-height: 1.2;
    color: var(--medical-navy);
    margin-bottom: 16px;
    font-weight: 700;
}

/* Subtext under headline */
.about-hero p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--cool-slate);
    max-width: 720px;
}

/* ================= MAIN SECTIONS ================= */

.about-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Alternate background for visual rhythm */
.about-section.alt {
    background: #f7f9fb;
}

/* Centered content container */
.about-container {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
}

/* Section headings */
.about-section h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--medical-navy);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    padding-bottom: 16px;
}

/* Subtle underline accent (like your TaxOps page) */
.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--clinical-blue) 0%, var(--sterile-sky) 100%);
    border-radius: 2px;
}

/* Body text */
.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal-ink);
    margin-bottom: 16px;
}

/* ================= CTA SECTION ================= */

.about-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, #f0f7fb 0%, #ffffff 100%);
    text-align: left;
    border-top: 1px solid rgba(118, 179, 218, 0.2);
}

/* CTA heading */
.about-cta h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--medical-navy);
    margin-bottom: 14px;
}

/* CTA text */
.about-cta p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--cool-slate);
    max-width: 640px;
    margin-bottom: 24px;
}

/* CTA Button */
.about-cta .btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--clinical-blue) 0%, var(--medical-navy) 100%);
    color: #ffffff;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    box-shadow: 0 4px 12px rgba(47, 94, 155, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
}

.about-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 94, 155, 0.35);
    background: linear-gradient(135deg, var(--medical-navy) 0%, var(--clinical-blue) 100%);
}

/* ================= RESPONSIVE DESIGN ================= */

/* Tablet */
@media (max-width: 900px) {
    .about-hero {
        padding: 70px 0 60px;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .about-section {
        padding: 70px 0;
    }

    .about-section h2 {
        font-size: 32px;
    }

    .about-cta {
        padding: 70px 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0 50px;
    }

    .about-hero h1 {
        font-size: 30px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-section h2 {
        font-size: 28px;
    }

    .about-cta {
        padding: 60px 0;
    }

    .about-cta .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 26px;
    }

    .about-section h2 {
        font-size: 24px;
    }
}
