/* About + Contact — professional layout & type */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap');

.ac-page {
    --ac-primary: #166088;
    --ac-secondary: #4a6fa5;
    --ac-accent: #4fc3f7;
    --ac-dark: #0f172a;
    --ac-text: #334155;
    --ac-muted: #64748b;
    --ac-surface: #f8fafc;
    --ac-line: #e2e8f0;
    --ac-white: #ffffff;
    --ac-content: 920px;
    --ac-wide: 1040px;
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    color: var(--ac-text);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.ac-page h1,
.ac-page h2,
.ac-page h3,
.ac-page h4,
.ac-page .ac-brand,
.ac-page .ac-stat-num,
.ac-page .ac-btn {
    font-family: Manrope, 'Segoe UI', sans-serif;
}

/* ---------- Hero ---------- */
.ac-hero {
    position: relative;
    overflow: hidden;
    padding: 44px 0 40px;
    background: linear-gradient(135deg, #0a1128 0%, #124e6e 50%, #166088 100%);
    color: var(--ac-white);
    text-align: center;
}

.ac-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 24px;
    background: linear-gradient(to top, var(--ac-white), transparent);
    pointer-events: none;
}

.ac-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.ac-brand {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ac-accent);
    margin-bottom: 12px;
}

.ac-hero h1 {
    font-size: clamp(1.5rem, 3.2vw, 2.05rem);
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 12px;
    letter-spacing: -0.025em;
    color: #fff;
}

.ac-hero p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0 auto 20px;
    max-width: 520px;
    font-weight: 400;
}

.ac-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.ac-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.65rem 1.3rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border: 2px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ac-btn:hover {
    text-decoration: none;
}

.ac-btn-primary {
    background: var(--ac-accent);
    color: var(--ac-dark);
}

.ac-btn-primary:hover {
    background: #7dd3fc;
    color: var(--ac-dark);
}

.ac-btn-ghost {
    background: transparent;
    color: var(--ac-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.ac-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--ac-white);
    border-color: rgba(255, 255, 255, 0.75);
}

/* ---------- Sections ---------- */
.ac-section {
    padding: 36px 0;
}

.ac-section-alt {
    background: var(--ac-surface);
}

.ac-section-head {
    max-width: var(--ac-content);
    margin: 0 auto 22px;
    text-align: center;
}

.ac-section-head h2 {
    font-size: clamp(1.25rem, 2.2vw, 1.45rem);
    font-weight: 800;
    color: var(--ac-dark);
    margin: 0 0 10px;
    letter-spacing: -0.02em;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

.ac-section-head h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 40px;
    height: 3px;
    border-radius: 2px;
    background: var(--ac-primary);
    transform: translateX(-50%);
}

.ac-section-head p {
    margin: 0 auto;
    color: var(--ac-muted);
    font-size: 0.98rem;
    line-height: 1.55;
    max-width: 540px;
    font-weight: 400;
}

/* ---------- Story ---------- */
.ac-story {
    max-width: 720px;
    margin: 0 auto;
}

.ac-story p {
    margin: 0 0 12px;
    color: var(--ac-text);
    font-size: 0.98rem;
    line-height: 1.7;
    text-align: left;
}

.ac-story p:last-child {
    margin-bottom: 0;
}

/* ---------- Audience ---------- */
.ac-audience {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: var(--ac-content);
    margin: 0 auto;
}

.ac-audience-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    background: var(--ac-white);
    border: 1px solid var(--ac-line);
    border-radius: 10px;
}

.ac-section:not(.ac-section-alt) .ac-audience-item {
    background: var(--ac-surface);
}

.ac-audience-item i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(22, 96, 136, 0.1);
    color: var(--ac-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.ac-audience-item strong {
    display: block;
    font-family: Manrope, sans-serif;
    color: var(--ac-dark);
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 3px;
    letter-spacing: -0.01em;
}

.ac-audience-item span {
    display: block;
    color: var(--ac-muted);
    font-size: 0.88rem;
    line-height: 1.45;
}

/* ---------- Founder ---------- */
.ac-founder {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px 24px;
    align-items: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 20px 22px;
    background: var(--ac-white);
    border: 1px solid var(--ac-line);
    border-radius: 12px;
}

.ac-founder-photo {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--ac-line);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
    user-select: none;
    pointer-events: none;
}

.ac-founder h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ac-dark);
    margin: 0 0 4px;
    letter-spacing: -0.02em;
}

.ac-founder-role {
    color: var(--ac-muted);
    margin: 0 0 12px;
    font-size: 0.88rem;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--ac-line);
}

.ac-founder-vision h4 {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--ac-primary);
    margin: 0 0 6px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ac-founder-vision p {
    margin: 0 0 8px;
    color: var(--ac-text);
    line-height: 1.6;
    font-size: 0.92rem;
}

.ac-founder-vision p:last-child {
    margin-bottom: 0;
}

/* ---------- Pillars ---------- */
.ac-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: var(--ac-wide);
    margin: 0 auto;
}

.ac-pillar {
    text-align: left;
    padding: 18px 16px;
    background: var(--ac-surface);
    border: 1px solid var(--ac-line);
    border-radius: 10px;
}

.ac-section-alt .ac-pillar {
    background: var(--ac-white);
}

.ac-pillar-icon {
    width: 38px;
    height: 38px;
    margin: 0 0 12px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 96, 136, 0.1);
    color: var(--ac-primary);
    font-size: 0.95rem;
}

.ac-pillar h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--ac-dark);
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}

.ac-pillar p {
    margin: 0;
    color: var(--ac-muted);
    line-height: 1.5;
    font-size: 0.88rem;
}

/* ---------- Gallery ---------- */
.ac-gallery-track-wrap {
    overflow: hidden;
    max-width: var(--ac-wide);
    margin: 0 auto;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.ac-gallery-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: ac-scroll 40s linear infinite;
}

.ac-gallery-track:hover {
    animation-play-state: paused;
}

.ac-gallery-item {
    flex: 0 0 200px;
    height: 138px;
    border-radius: 10px;
    overflow: hidden;
    background: #cbd5e1 center / cover no-repeat;
}

@keyframes ac-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- Stats ---------- */
.ac-stats {
    background: linear-gradient(135deg, var(--ac-dark) 0%, var(--ac-primary) 100%);
    color: var(--ac-white);
    padding: 26px 0;
}

.ac-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    text-align: center;
    max-width: var(--ac-wide);
    margin: 0 auto;
}

.ac-stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--ac-accent);
    letter-spacing: -0.02em;
}

.ac-stat-label {
    font-size: 0.85rem;
    opacity: 0.88;
    font-weight: 500;
}

/* ---------- Contact ---------- */
.ac-contact {
    scroll-margin-top: 88px;
    background: var(--ac-surface);
    padding: 40px 0 44px;
}

.ac-contact .ac-section-head {
    margin-bottom: 24px;
}

.ac-contact-wrap {
    max-width: var(--ac-wide);
    margin: 0 auto;
}

.ac-contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
    align-items: stretch;
}

.ac-panel {
    background: var(--ac-white);
    border: 1px solid var(--ac-line);
    border-radius: 12px;
    padding: 22px 22px 20px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
    display: flex;
    flex-direction: column;
}

.ac-panel h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ac-dark);
    margin: 0 0 16px;
    letter-spacing: -0.015em;
    text-align: left;
}

.ac-panel .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ac-dark);
    margin-bottom: 4px;
}

.ac-panel .form-control {
    border-radius: 8px;
    border-color: #cbd5e1;
    font-size: 0.92rem;
    font-family: inherit;
    padding: 0.5rem 0.75rem;
}

.ac-panel .form-control:focus {
    border-color: var(--ac-primary);
    box-shadow: 0 0 0 0.2rem rgba(22, 96, 136, 0.12);
}

.ac-panel .mb-3 {
    margin-bottom: 0.85rem !important;
}

.ac-submit {
    background: var(--ac-primary);
    border-color: var(--ac-primary);
    font-family: Manrope, sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.55rem 1.25rem;
    border-radius: 8px;
    align-self: flex-start;
    margin-top: 4px;
}

.ac-submit:hover {
    background: #124e6e;
    border-color: #124e6e;
}

.ac-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.ac-info-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.ac-info-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(22, 96, 136, 0.1);
    color: var(--ac-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.ac-info-item h4 {
    margin: 0 0 2px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ac-dark);
    letter-spacing: 0.02em;
}

.ac-info-item p,
.ac-info-item a {
    margin: 0;
    font-size: 0.9rem;
    color: var(--ac-muted);
    line-height: 1.4;
    text-decoration: none;
}

.ac-info-item a:hover {
    color: var(--ac-primary);
}

.ac-map {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--ac-line);
    margin-top: auto;
}

.ac-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
    display: block;
}

@media (max-width: 991.98px) {
    .ac-pillars,
    .ac-audience,
    .ac-contact-grid {
        grid-template-columns: 1fr;
    }

    .ac-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 12px;
    }
}

@media (max-width: 767.98px) {
    .ac-hero {
        padding: 32px 0 28px;
    }

    .ac-section,
    .ac-contact {
        padding: 28px 0;
    }

    .ac-founder {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        padding: 18px 16px;
    }

    .ac-founder-photo {
        width: 92px;
        height: 92px;
    }

    .ac-founder-role {
        border-bottom: none;
        padding-bottom: 0;
    }

    .ac-gallery-item {
        flex: 0 0 168px;
        height: 112px;
    }

    .ac-panel {
        padding: 18px 16px;
    }

    .ac-submit {
        width: 100%;
        align-self: stretch;
    }
}
