/* ── ABOUT ── */
#about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    border-top: 1px solid var(--border);
}
.about-left {
    position: sticky;
    top: 120px;
}
.about-left h2 {
    margin-bottom: 32px;
}
.about-stat {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}
.stat-row {
    display: flex;
    gap: 48px;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--white);
    line-height: 1;
}
.stat-num span {
    color: var(--accent);
}
.stat-desc {
    font-size: 13px;
    color: var(--white-dim);
    margin-top: 6px;
    line-height: 1.4;
    max-width: 140px;
}
.about-body {
    color: var(--white-dim);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
}
.about-body p {
    margin-bottom: 24px;
}
.about-body p:last-child {
    margin-bottom: 0;
}
.about-body strong {
    color: var(--white);
    font-weight: 500;
}

/* ── TEAM ── */
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}
.team-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    transition: border-color .2s, background .2s;
    position: relative;
}
.team-card:hover {
    border-color: var(--border-bright);
    background: var(--surface2);
}
.team-card:hover .team-li {
    opacity: 1;
    color: #0a66c2;
}
.team-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface2);
    border: 1px solid var(--border-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: .04em;
    flex-shrink: 0;
}
.team-info {
    flex: 1;
    min-width: 0;
}
.team-name {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.team-role {
    font-size: 11px;
    color: var(--white-muted);
    margin-top: 2px;
    letter-spacing: .02em;
}
.team-li {
    font-size: 16px;
    color: var(--white-muted);
    opacity: .4;
    transition: opacity .2s, color .2s;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ── SERVICES ── */
#services {
    background: var(--surface);
    border-top: 1px solid var(--border);
}
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
.service-card {
    background: var(--surface);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover {
    background: var(--surface2);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-num {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 32px;
}
.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--white);
    opacity: 0.6;
    display: block;
    font-size: 32px;
    line-height: 48px;
}
.service-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.2;
}
.service-desc {
    font-size: 14px;
    color: var(--white-dim);
    line-height: 1.7;
    font-weight: 300;
}

/* ── BLOG ── */
#blog {
    border-top: 1px solid var(--border);
}
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
.blog-card {
    background: var(--black);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
    overflow: hidden;
}
.blog-card:hover {
    background: var(--surface);
}
.blog-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--surface2);
    overflow: hidden;
    position: relative;
}
.blog-img-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(0.4);
    transition:
        transform 0.5s ease,
        filter 0.3s;
}
.blog-card:hover .blog-img-inner {
    transform: scale(1.04);
    filter: grayscale(0);
}
.blog-body {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-date {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-muted);
    margin-bottom: 14px;
}
.blog-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
    flex: 1;
}
.blog-arrow {
    margin-top: 24px;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    opacity: 0;
    transform: translateX(-8px);
    transition:
        opacity 0.2s,
        transform 0.2s;
}
.blog-card:hover .blog-arrow {
    opacity: 1;
    transform: translateX(0);
}
