body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f5f5f7;
    color: #1d1d1f;
}

.about-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 44px 20px 72px;
}

.about-hero,
.about-card,
.about-stat-card,
.about-value-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.about-hero {
    padding: 42px 36px;
    margin-bottom: 26px;
    text-align: center;
}

.about-eyebrow {
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #006edc;
    margin-bottom: 14px;
}

.about-hero h1,
.about-section-heading h2,
.about-card h3,
.about-value-card h3 {
    margin: 0;
    letter-spacing: -0.04em;
}

.about-hero h1 {
    font-size: clamp(42px, 6vw, 66px);
    line-height: 1.03;
}

.about-hero p {
    max-width: 780px;
    margin: 18px auto 0;
    font-size: 18px;
    line-height: 1.8;
    color: #6e6e73;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    margin-bottom: 24px;
}

.about-card {
    padding: 28px;
}

.about-card p,
.about-card li,
.about-value-card p,
.about-stat-card p {
    color: #6e6e73;
    line-height: 1.8;
}

.about-card p {
    margin: 14px 0 0;
    font-size: 15px;
}

.about-side-stack {
    display: grid;
    gap: 24px;
}

.about-stat-card {
    padding: 24px;
}

.about-stat-card strong {
    display: block;
    font-size: 36px;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
    color: #111111;
}

.about-stat-card span {
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6e6e73;
    margin-bottom: 10px;
}

.about-section {
    margin-top: 14px;
}

.about-section-heading {
    margin-bottom: 18px;
}

.about-section-heading h2 {
    font-size: 34px;
}

.about-section-heading p {
    margin: 10px 0 0;
    color: #6e6e73;
    line-height: 1.8;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.about-value-card {
    padding: 24px;
}

.about-value-card .value-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #f5f8ff;
    color: #006fdc;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    padding: 2px 8px;
}

.about-value-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.about-timeline {
    margin-top: 24px;
    display: grid;
    gap: 18px;
}

.about-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 20px;
    padding: 22px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
    align-items: center;
    overflow: hidden;
}

.about-timeline-item::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 50%;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f5f8ff 0%, #e8f0ff 100%);
    transform: translateY(-50%);
    box-shadow: inset 0 0 0 1px rgba(0, 113, 227, 0.08);
}

.about-timeline-item::after {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    line-height: 1;
}

.about-timeline-item:nth-child(1)::after {
    content: "🛍️";
}

.about-timeline-item:nth-child(2)::after {
    content: "👤";
}

.about-timeline-item:nth-child(3)::after {
    content: "🔐";
}

.about-timeline-item:nth-child(4)::after {
    content: "📦";
}

.about-timeline-item:nth-child(5)::after {
    content: "📊";
}

.about-timeline-item strong {
    color: #111111;
    font-size: 16px;
    font-weight: 700;
    display: block;
    line-height: 1.4;
    word-break: break-word;
    padding-left: 72px;
}

.about-timeline-item p {
    margin: 0;
    color: #6e6e73;
    line-height: 1.75;
    word-break: break-word;
    font-size: 15px;
}

@media (max-width: 960px) {
    .about-grid,
    .about-values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .about-page {
        padding: 28px 16px 60px;
    }

    .about-hero,
    .about-card,
    .about-stat-card,
    .about-value-card {
        border-radius: 24px;
    }

    .about-hero,
    .about-card,
    .about-stat-card,
    .about-value-card {
        padding: 22px 18px;
    }

    .about-timeline-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px 18px;
    }

    .about-timeline-item::before {
        left: 18px;
        top: 22px;
        width: 46px;
        height: 46px;
        transform: none;
    }

    .about-timeline-item::after {
        left: 41px;
        top: 45px;
        transform: translate(-50%, -50%);
        font-size: 16px;
    }

    .about-timeline-item strong {
        padding-left: 62px;
        min-height: 46px;
        display: flex;
        align-items: center;
    }
}