/* ══════════════════════════════
   ABOUT PAGE
══════════════════════════════ */

/* ── Page Header Overrides ── */
.page-header {
    padding: 80px 40px 88px;
    text-align: left;
}

.page-header::after {
    bottom: -200px;
    right: -100px;
    top: auto;
    left: auto;
    transform: none;
}

.page-header-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.page-eyebrow { margin-bottom: 20px; }

.page-header h1 {
    font-size: clamp(28px, 4vw, 46px);
    margin-bottom: 16px;
}

.page-header h1 span {
    background: linear-gradient(90deg, #5ca0ff, #7fd4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    margin-bottom: 32px;
    max-width: 460px;
}

.header-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    padding: 13px 28px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .15s, transform .15s, box-shadow .15s;
    box-shadow: 0 4px 20px rgba(26,110,245,.4);
    display: inline-block;
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(26,110,245,.5);
    color: #fff;
    text-decoration: none;
}

.btn-ghost {
    background: transparent;
    color: rgba(255,255,255,.75);
    border: 1.5px solid rgba(255,255,255,.2);
    padding: 13px 28px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .15s;
    display: inline-block;
}

.btn-ghost:hover {
    border-color: rgba(255,255,255,.45);
    color: #fff;
    background: rgba(255,255,255,.07);
    text-decoration: none;
}

/* Header stat cards */
.header-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.header-stat-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 20px 24px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 16px;
}

.hs-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: rgba(26,110,245,.2);
    border: 1px solid rgba(26,110,245,.3);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hs-icon svg {
    width: 20px;
    height: 20px;
    stroke: #7fb5ff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hs-val {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1;
    margin-bottom: 2px;
}

.hs-val span { color: var(--blue); }

.hs-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.4);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* ── Shared section ── */
.section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 88px 40px;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.02em;
    line-height: 1.15;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 15.5px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 560px;
}

/* ── What is ── */
#what-section { background: #fff; }

.what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.what-text .section-sub { max-width: 100%; }

.what-text p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    margin-top: 18px;
}

.what-visual {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 32px;
}

.wv-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #b0b8cc;
    margin-bottom: 20px;
}

.wv-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
}

.wv-step:last-child { border-bottom: 1px solid var(--border); }

.wv-num {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: var(--blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
}

.wv-step-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}

.wv-step-desc {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.5;
}

/* ── How it works ── */
#how-section { background: var(--bg); }

.how-header { margin-bottom: 56px; }

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.how-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s;
}

.how-card:hover {
    box-shadow: 0 12px 40px rgba(26,110,245,.1);
    transform: translateY(-4px);
}

.how-card::before {
    content: attr(data-n);
    position: absolute;
    top: -10px;
    right: 18px;
    font-size: 72px;
    font-weight: 900;
    color: var(--border);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.hc-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #eef3fe;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.hc-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hc-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.hc-desc {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
}

/* ── Benefits ── */
#benefits-section { background: #fff; }

.benefits-header {
    margin-bottom: 56px;
    max-width: 560px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.benefit-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 16px;
    padding: 22px 0;
    border-top: 1px solid var(--border);
    align-items: start;
    transition: background .15s;
}

.benefits-grid .benefit-item:nth-child(odd)  { padding-right: 48px; }
.benefits-grid .benefit-item:nth-child(even) { padding-left: 48px; border-left: 1px solid var(--border); }

.benefit-item:last-child,
.benefit-item:nth-last-child(2):nth-child(odd) { border-bottom: 1px solid var(--border); }

.bi-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: #eef3fe;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.bi-icon svg {
    width: 17px;
    height: 17px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bi-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.bi-desc {
    font-size: 13px;
    color: #6b748f;
    line-height: 1.55;
}

/* ── Mission Strip ── */
.mission-strip {
    background: var(--navy);
    padding: 72px 40px;
    position: relative;
    overflow: hidden;
}

.mission-strip::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,110,245,.2) 0%, transparent 70%);
    pointer-events: none;
}

.mission-inner {
    position: relative;
    z-index: 1;
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-label {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
    font-weight: 700;
    color: #5ca0ff;
    margin-bottom: 12px;
}

.mission-title {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.mission-text {
    font-size: 14.5px;
    color: rgba(255,255,255,.5);
    line-height: 1.75;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mv-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 16px 18px;
    transition: background .2s;
}

.mv-item:hover { background: rgba(255,255,255,.08); }

.mv-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
    margin-top: 5px;
}

.mv-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.mv-desc {
    font-size: 12.5px;
    color: rgba(255,255,255,.45);
    line-height: 1.55;
}

/* ── CTA ── */
.cta-wrap {
    background: var(--bg);
    padding: 80px 40px;
    text-align: center;
}

.cta-wrap h2 {
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.02em;
    margin-bottom: 14px;
}

.cta-wrap p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.65;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .page-header { padding: 64px 20px 72px; text-align: center; }
    .page-header-inner { grid-template-columns: 1fr; gap: 48px; }
    .header-stats { flex-direction: row; flex-wrap: wrap; }
    .header-stat-card { flex: 1; min-width: 160px; }
    .section { padding: 64px 20px; }
    .what-grid { grid-template-columns: 1fr; gap: 40px; }
    .how-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .benefits-grid .benefit-item:nth-child(odd)  { padding-right: 0; }
    .benefits-grid .benefit-item:nth-child(even) { padding-left: 0; border-left: none; }
    .mission-inner { grid-template-columns: 1fr; gap: 40px; }
    .mission-strip { padding: 64px 20px; }
    .cta-wrap { padding: 64px 20px; }
}

@media (max-width: 560px) {
    .header-actions { flex-direction: column; }
}
