/* =========================================================
   About Me Page — Jeyber.com
   ========================================================= */

.jeyber-clean-page {
    padding-top: 30px;
    padding-bottom: 30px;
}

.jeyber-about-page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

.jeyber-about-page > *:last-child {
    margin-bottom: 0;
}

/* Hero */

.jeyber-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    align-items: center;
    gap: 36px;
    border-radius: 26px;
    padding: 48px;
    margin-bottom: 24px;
    background:
        radial-gradient(circle at top left, rgba(0, 123, 255, 0.18), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255, 193, 7, 0.22), transparent 32%),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 48%, #f3f6fb 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.07);
}

.jeyber-hero::before {
    content: "";
    position: absolute;
    top: -85px;
    right: -85px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.11);
}

.jeyber-hero-content {
    position: relative;
    z-index: 2;
}

.jeyber-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0b5ed7;
    background: rgba(13, 110, 253, 0.10);
    border: 1px solid rgba(13, 110, 253, 0.16);
}

.jeyber-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.05;
    font-weight: 800;
    color: #111827;
}

.jeyber-hero-text {
    max-width: 780px;
    margin: 0;
    font-size: 21px;
    line-height: 1.6;
    color: #374151;
}

/* Photo */

.jeyber-hero-photo-wrap {
    position: relative;
    z-index: 2;
    width: 240px;
    height: 240px;
    justify-self: end;
    border-radius: 50%;
    padding: 8px;
    background:
        linear-gradient(135deg, rgba(13, 110, 253, 0.22), rgba(255, 193, 7, 0.28));
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.jeyber-hero-photo {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
    border: 5px solid #ffffff;
}

/* Cards */

.jeyber-about-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 22px;
    margin-bottom: 22px;
}

.jeyber-about-card {
    border-radius: 24px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.055);
}

.jeyber-main-card {
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.jeyber-about-card h2,
.jeyber-features-block h2,
.jeyber-timeline h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
}

.jeyber-about-card h2 i,
.jeyber-timeline h2 i {
    color: #0b5ed7;
}

.jeyber-about-card p {
    margin-top: 0;
    font-size: 17px;
    line-height: 1.75;
    color: #4b5563;
}

.jeyber-about-card p:last-child {
    margin-bottom: 0;
}

/* Dark features block */

.jeyber-features-block {
    margin: 22px 0;
    padding: 30px;
    border-radius: 26px;
    background: #111827;
    color: #ffffff;
    box-shadow: 0 16px 42px rgba(17, 24, 39, 0.22);
}

.jeyber-features-block h2 {
    color: #ffffff;
}

.jeyber-features-block h2 i {
    color: #ffc107;
}

.jeyber-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.jeyber-feature {
    padding: 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: transform 0.2s ease, background 0.2s ease;
}

.jeyber-feature:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
}

.jeyber-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
    border-radius: 17px;
    font-size: 24px;
    color: #ffc107;
    background: rgba(255, 193, 7, 0.12);
}

.jeyber-feature h3 {
    margin: 0 0 10px;
    font-size: 19px;
    color: #ffffff;
}

.jeyber-feature p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

/* Accent card */

.jeyber-accent-card {
    margin: 22px 0;
    background:
        radial-gradient(circle at top right, rgba(255, 193, 7, 0.26), transparent 30%),
        linear-gradient(135deg, #fffaf0 0%, #ffffff 55%, #f8fbff 100%);
}

/* Timeline */

.jeyber-timeline {
    margin-top: 22px;
    margin-bottom: 0;
    padding: 30px;
    border-radius: 26px;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.jeyber-timeline-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.jeyber-timeline-item:first-of-type {
    padding-top: 6px;
}

.jeyber-timeline-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.jeyber-timeline-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 17px;
    font-weight: 800;
    color: #0b5ed7;
    background: rgba(13, 110, 253, 0.10);
}

.jeyber-timeline-item h3 {
    margin: 0 0 8px;
    font-size: 21px;
    color: #111827;
}

.jeyber-timeline-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: #4b5563;
}

/* Tablets */

@media (max-width: 992px) {
    .jeyber-hero {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .jeyber-hero-photo-wrap {
        width: 210px;
        height: 210px;
        justify-self: start;
    }

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

    .jeyber-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Phones */

@media (max-width: 640px) {
    .jeyber-clean-page {
        padding-top: 22px;
        padding-bottom: 24px;
    }

    .jeyber-about-page {
        padding: 0 14px;
    }

    .jeyber-hero {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 36px 24px;
        border-radius: 22px;
        margin-bottom: 18px;
    }

    .jeyber-hero-photo-wrap {
        width: 180px;
        height: 180px;
        justify-self: center;
        order: -1;
    }

    .jeyber-hero-badge {
        margin-bottom: 18px;
        font-size: 12px;
    }

    .jeyber-hero h1 {
        font-size: 40px;
    }

    .jeyber-hero-text {
        font-size: 18px;
        line-height: 1.55;
    }

    .jeyber-about-grid {
        gap: 18px;
        margin-bottom: 18px;
    }

    .jeyber-about-card,
    .jeyber-features-block,
    .jeyber-timeline {
        padding: 22px;
        border-radius: 22px;
    }

    .jeyber-about-card h2,
    .jeyber-features-block h2,
    .jeyber-timeline h2 {
        font-size: 24px;
    }

    .jeyber-about-card p {
        font-size: 16px;
        line-height: 1.7;
    }

    .jeyber-features-block {
        margin: 18px 0;
    }

    .jeyber-features {
        grid-template-columns: 1fr;
    }

    .jeyber-feature {
        padding: 20px;
    }

    .jeyber-accent-card {
        margin: 18px 0;
    }

    .jeyber-timeline {
        margin-top: 18px;
    }

    .jeyber-timeline-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px 0;
    }

    .jeyber-timeline-item span {
        width: 46px;
        height: 46px;
    }
}