/* About Us — public website, theme-aware */
.about-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #fafafa;
}

.about-hero {
    position: relative;
    min-height: clamp(200px, 28vw, 280px);
    background-color: color-mix(in srgb, var(--primary, #16a34a) 88%, #0f172a);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.about-hero--fallback {
    background-image: linear-gradient(120deg, var(--primary, #16a34a), var(--secondary, #15803d));
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        color-mix(in srgb, var(--primary, #16a34a) 58%, #0f172a) 0%,
        color-mix(in srgb, var(--secondary, #15803d) 42%, #0f172a) 100%
    );
    opacity: 0.88;
}

.about-hero--fallback .about-hero__overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.12) 0%, rgba(15, 23, 42, 0.35) 100%);
    opacity: 1;
}

.about-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: clamp(26px, 4vw, 44px) 0 clamp(28px, 4vw, 48px);
}

.about-hero__eyebrow {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}

.about-hero__title {
    margin: 0;
    font-size: clamp(34px, 4.6vw, 48px);
    font-weight: 800;
    line-height: 1.08;
    color: #fff;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.about-breadcrumb {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    padding: 11px 17px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.about-breadcrumb a {
    color: var(--button, #16a34a);
    text-decoration: none;
}

.about-breadcrumb a:hover {
    text-decoration: underline;
}

.about-breadcrumb span[aria-hidden="true"] {
    color: #94a3b8;
    font-weight: 500;
}

.about-breadcrumb__current {
    color: #0f172a;
}

.about-banner {
    margin: 0;
    line-height: 0;
}

.about-banner img {
    width: 100%;
    max-height: min(52vh, 420px);
    object-fit: cover;
    display: block;
}

.about-body {
    flex: 1;
}

.about-section {
    padding: clamp(40px, 5vw, 72px) 0;
}

.about-section--tight-top {
    padding-top: clamp(28px, 3vw, 40px);
}

.about-section__inner {
    max-width: 720px;
}

.about-section__inner--story {
    max-width: min(920px, 100%);
}

.about-story-head {
    margin-bottom: 8px;
}

.about-story-title {
    margin: 0 0 12px;
    font-size: clamp(1.2rem, 2.15vw, 1.65rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--button, #f17b43);
    letter-spacing: -0.015em;
}

.about-story-rule {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
}

.about-story-rule span:first-child {
    width: 44px;
    height: 4px;
    border-radius: 2px;
    background: var(--button, #f17b43);
}

.about-story-rule span:last-child {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: var(--primary, #0284c7);
}

.about-section h2:not(.about-story-title) {
    margin: 0 0 16px;
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.about-prose {
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: #374151;
}

.about-prose + .about-prose {
    margin-top: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 24px);
    margin-top: clamp(36px, 4vw, 48px);
}

.about-stat {
    background: #fff;
    border: 1px solid var(--border, #e4e4e7);
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

.about-stat__num {
    display: block;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    background: linear-gradient(120deg, var(--primary, #16a34a), var(--secondary, #15803d));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-stat__label {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

.about-stat--highlight .about-stat__num {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: var(--button, #16a34a);
    font-size: clamp(17px, 2.2vw, 26px);
    word-break: break-word;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 28px);
    margin-top: clamp(40px, 5vw, 56px);
}

.about-pillar {
    background: #fff;
    border: 1px solid var(--border, #e4e4e7);
    border-radius: 16px;
    padding: 26px 22px 28px;
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
}

.about-pillar__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary, #16a34a) 22%, #fff), color-mix(in srgb, var(--secondary, #15803d) 18%, #fff));
    color: var(--button, #16a34a);
}

.about-pillar h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

.about-pillar p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #4b5563;
}

.about-split {
    margin-top: clamp(44px, 5vw, 64px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
}

.about-split__visual {
    border-radius: 16px;
    min-height: 260px;
    background: linear-gradient(145deg, color-mix(in srgb, var(--primary, #16a34a) 12%, #fff), #f1f5f9);
    border: 1px solid var(--border, #e4e4e7);
    display: grid;
    place-items: center;
    padding: 24px;
}

.about-split__visual img {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    border-radius: 12px;
}

.about-split__content h2 {
    margin-top: 0;
}

.about-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.about-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
}

.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--button, #16a34a);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--button, #16a34a) 28%, transparent);
}

.about-cta {
    margin-top: clamp(48px, 6vw, 72px);
    border-radius: 18px;
    padding: clamp(28px, 4vw, 40px) clamp(22px, 4vw, 40px);
    background: linear-gradient(120deg, var(--primary, #16a34a), var(--secondary, #15803d));
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 16px 40px color-mix(in srgb, var(--primary, #16a34a) 35%, transparent);
}

.about-cta__copy h2 {
    margin: 0 0 8px;
    font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 800;
    color: #fff;
}

.about-cta__copy p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    max-width: 520px;
}

.about-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.about-cta__btn--light {
    background: #fff;
    color: #0f172a;
}

.about-cta__btn--light:hover {
    filter: brightness(1.04);
}

.about-cta__btn--ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.85);
}

.about-cta__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-pillars {
        grid-template-columns: 1fr;
    }

    .about-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .about-hero__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .about-cta__actions {
        width: 100%;
    }

    .about-cta__btn {
        flex: 1;
        min-width: 0;
    }
}

/* Floating chat / help */
.service-float {
    position: fixed;
    z-index: 60;
    font-family: 'Barlow', sans-serif;
}

.service-float--chat {
    left: max(16px, calc((100vw - 1180px) / 2 + 8px));
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px 12px 14px;
    border-radius: 10px;
    background: #16a34a;
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(22, 163, 74, 0.45);
}

.service-float--chat:hover {
    filter: brightness(1.05);
}

.service-float--chat-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.service-float--help {
    right: max(16px, calc((100vw - 1180px) / 2 + 8px));
    bottom: 24px;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 0;
    background: #1f2937;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.service-float--help:hover {
    background: #111827;
}

@media (max-width: 600px) {
    .service-float--chat {
        left: 12px;
        bottom: 16px;
        padding: 10px 14px;
        font-size: 13px;
    }

    .service-float--help {
        right: 12px;
        bottom: 16px;
        width: 48px;
        height: 48px;
    }
}
