.about-container {
    width: min(1160px, calc(100% - 2rem));
    margin: 0 auto;
    min-width: 0;
}

.about-hero {
    padding: 4.5rem 0 3rem;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.16), transparent 24%),
        linear-gradient(180deg, #eff6ff 0%, #ffffff 75%);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 2rem;
    align-items: center;
    min-width: 0;
}

.about-copy,
.about-highlight-card,
.about-text-card,
.feature-card,
.step-card,
.cta-panel {
    min-width: 0;
}

.about-eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2563eb;
    margin-bottom: 1rem;
}

.about-copy h1 {
    margin: 0 0 1.2rem;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.08;
    color: #0f172a;
}

.about-lead,
.about-text-card p,
.feature-card p,
.step-card p,
.cta-panel p,
.about-highlight-card p {
    color: #334155;
    line-height: 1.75;
    font-size: 1.02rem;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.about-btn:hover {
    transform: translateY(-2px);
}

.about-btn.primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.2);
}

.about-btn.secondary {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #cbd5e1;
}

.about-highlight-card,
.about-text-card,
.feature-card,
.step-card,
.cta-panel {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.about-highlight-card {
    padding: 2rem;
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-highlight-card h2,
.section-heading h2,
.cta-panel h2 {
    margin: 0 0 1rem;
    color: #0f172a;
    font-family: 'Poppins', sans-serif;
}

.about-section {
    padding: 4rem 0;
}

.about-section.accent {
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.about-section.compact {
    padding-top: 2rem;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 1.8rem;
}

.section-heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.about-text-card {
    padding: 2rem;
}

.feature-grid,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 1.3rem;
}

.feature-card,
.step-card {
    padding: 1.6rem;
}

.feature-card i {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card h3,
.step-card h3 {
    margin: 0 0 0.9rem;
    color: #0f172a;
    font-family: 'Poppins', sans-serif;
}

.step-number {
    display: inline-block;
    margin-bottom: 0.9rem;
    color: #2563eb;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.about-cta {
    padding: 1rem 0 4.5rem;
}

.cta-panel {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    background:
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.16), transparent 28%),
        #ffffff;
}

.about-copy h1,
.about-lead,
.about-text-card p,
.feature-card p,
.step-card p,
.cta-panel p,
.about-highlight-card p {
    overflow-wrap: anywhere;
}

@media (max-width: 900px) {
    .about-hero-grid,
    .feature-grid,
    .steps-grid,
    .cta-panel {
        grid-template-columns: 1fr;
        display: grid;
    }

    .cta-panel {
        justify-content: start;
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding-top: 3rem;
    }

    .about-highlight-card,
    .about-text-card,
    .feature-card,
    .step-card,
    .cta-panel {
        border-radius: 20px;
        padding: 1.4rem;
    }

    .about-actions {
        flex-direction: column;
    }

    .about-btn {
        width: 100%;
    }
}
