﻿@font-face {
    font-family: "Peyda";
    src: url("./fonts/PeydaWeb.woff2") format("woff2"), url("./fonts/PeydaWeb.woff") format("woff");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #f6f7fb;
    --card: #ffffff;
    --muted: #6b7280;
    --text: #0f172a;
    --primary: #f5a400;
    --primary-dark: #e39600;
    --navy: #05081b;
    --border: #e6eaf0;
    --shadow-sm: 0 6px 18px rgba(2, 6, 23, 0.06);
    --shadow-md: 0 18px 45px rgba(15,23,42,.30);
    --radius-lg: 18px;
    --radius-xl: 24px;
    --transition: 220ms cubic-bezier(.2,.8,.2,1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: "Peyda","Vazirmatn", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    direction: rtl;
}

.container {
    width: min(1180px, 92vw);
    margin-inline: auto;
}

/* =============== انیمیشن‌های کلی =============== */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 480ms var(--transition), transform 480ms var(--transition);
}

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* =============== HERO درباره ما =============== */
.about-hero {
    background: radial-gradient(900px 420px at 10% 85%, rgba(255,255,255,.08), transparent 60%), radial-gradient(700px 380px at 85% 10%, rgba(255,255,255,.10), transparent 60%), linear-gradient(135deg, #1b2145, #05081b);
    color: #fff;
    padding: 40px 0 60px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

.about-hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 26px;
    align-items: center;
}

@media (max-width: 900px) {
    .about-hero__inner {
        grid-template-columns: 1fr;
    }
}

.about-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15,23,42,.72);
    border: 1px solid rgba(148,163,184,.4);
    font-size: 11px;
    margin-bottom: 10px;
}

.about-hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34,197,94,.35);
}

.about-hero__title {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

    .about-hero__title span {
        color: var(--primary);
    }

.about-hero__subtitle {
    font-size: 13.5px;
    color: rgba(226,232,240,.9);
    max-width: 40rem;
    margin-bottom: 18px;
}

.about-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 18px;
}

.about-hero__stat {
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(15,23,42,.78);
    border: 1px solid rgba(148,163,184,.45);
    font-size: 11.5px;
    min-width: 130px;
}

.about-hero__stat-number {
    display: block;
    font-weight: 900;
    font-size: 17px;
    margin-bottom: 2px;
}

.about-hero__stat-label {
    color: #cbd5f5;
}

.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-primary {
    border: none;
    background: var(--primary);
    color: #111827;
    font-weight: 800;
    font-size: 13.2px;
    border-radius: 999px;
    padding: 10px 18px;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(245,164,0,.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
    }

.btn-ghost {
    border-radius: 999px;
    padding: 9px 16px;
    border: 1px solid rgba(148,163,184,.6);
    background: transparent;
    color: #e2e8f0;
    font-size: 12.8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-ghost:hover {
        background: rgba(15,23,42,.9);
    }

.about-hero__art {
    position: relative;
    height: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero__blob {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle at 20% 0%, rgba(245,164,0,.8), transparent 60%), radial-gradient(circle at 80% 100%, rgba(56,189,248,.7), transparent 60%), linear-gradient(135deg,#1f2937,#020617);
    filter: blur(6px);
    opacity: .9;
    animation: blobPulse 6s ease-in-out infinite alternate;
}

.about-hero__card {
    position: relative;
    z-index: 2;
    width: min(320px, 100%);
    border-radius: 20px;
    background: rgba(15,23,42,.92);
    border: 1px solid rgba(148,163,184,.5);
    padding: 16px 16px 12px;
    box-shadow: 0 18px 40px rgba(0,0,0,.75);
    backdrop-filter: blur(16px);
}

.about-hero__card-tag {
    font-size: 10.5px;
    display: inline-flex;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(15,23,42, .85);
    border: 1px solid rgba(148,163,184,.65);
    margin-bottom: 8px;
    color: #e5e7eb;
}

.about-hero__card-title {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 6px;
}

.about-hero__card-text {
    font-size: 11.5px;
    color: #cbd5f5;
    margin-bottom: 10px;
}

.about-hero__card-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10.5px;
    color: #9ca3af;
}

.about-hero__card-pill {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(15,23,42, .9);
    border: 1px solid rgba(148,163,184,.5);
    font-size: 10px;
    color: #e5e7eb;
}

@keyframes blobPulse {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(12px) scale(1.06);
    }
}

/* =============== نقشه راه جدید با خط اسکرول =============== */
.roadmap-pro {
    padding: 32px 0 30px;
}

.roadmap-pro__layout {
    display: grid;
    grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr);
    gap: 32px;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .roadmap-pro__layout {
        grid-template-columns: 1fr;
    }
}

/* ستون چپ – کارت عکس استیکی */
.roadmap-pro__visual {
    position: sticky;
    top: 120px;
}

.roadmap-pro__card {
    background: #0b1220;
    color: #e5e7eb;
    border-radius: 22px;
    border: 1px solid rgba(148,163,184,.5);
    box-shadow: 0 18px 45px rgba(15,23,42,.65);
    overflow: hidden;
}

.roadmap-pro__tag {
    font-size: 10.5px;
    padding: 6px 12px 4px;
    background: rgba(15,23,42,.9);
    border-bottom: 1px solid rgba(148,163,184,.35);
}

.roadmap-pro__image-wrap {
    position: relative;
    overflow: hidden;
}

    .roadmap-pro__image-wrap img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        transition: transform 400ms var(--transition), opacity 400ms var(--transition);
    }

.roadmap-pro__card:hover .roadmap-pro__image-wrap img {
    transform: scale(1.04);
    opacity: 1;
}

.roadmap-pro__image-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0 0, rgba(245,164,0,.34), transparent 60%), linear-gradient(to top, rgba(15,23,42,.95), transparent);
    pointer-events: none;
}

.roadmap-pro__caption {
    padding: 10px 12px 12px;
}

.roadmap-pro__caption-year {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 4px;
}

.roadmap-pro__caption-text {
    font-size: 11.8px;
    color: #cbd5f5;
}

/* ستون راست – لیست سال‌ها + خط پیشرفت */
.roadmap-pro__list {
    position: relative;
    padding-right: 44px;
}

.roadmap-pro__track {
    position: absolute;
    inset-block: 4px 8px;
    inset-inline-end: 18px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(to bottom, rgba(148,163,184,.6), rgba(226,232,240,.4));
    overflow: hidden;
}

.roadmap-pro__fill {
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 0%;
    background: linear-gradient(to bottom, var(--primary), rgba(245,164,0,.15));
    border-radius: 999px;
    transition: height 280ms var(--transition);
}

/* آیتم‌ها */
.roadmap-pro__item {
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 4px;
    border-radius: 16px;
    padding-inline-start: 12px;
    padding-inline-end: 18px;
    padding-top: 6px;
    transition: background 200ms var(--transition), box-shadow 200ms var(--transition), transform 200ms var(--transition);
}

    .roadmap-pro__item:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
    }

.roadmap-pro__dot {
    position: absolute;
    inset-inline-end: -7px;
    top: 10px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #fff;
    border: 3px solid #cbd5f5;
    box-shadow: 0 0 0 3px rgba(226,232,240,.9);
    transition: border-color 220ms var(--transition), box-shadow 220ms var(--transition), transform 220ms var(--transition), background 220ms var(--transition);
}

.roadmap-pro__year {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 4px;
}

.roadmap-pro__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #fef9c3;
    color: #854d0e;
    margin-bottom: 4px;
}

.roadmap-pro__goal {
    font-size: 12.5px;
    margin-bottom: 3px;
}

.roadmap-pro__result {
    font-size: 12px;
    color: var(--muted);
}

/* حالت فعال هر سال */
.roadmap-pro__item.is-active {
    background: #fff;
    box-shadow: 0 14px 30px rgba(15,23,42,.12);
    transform: translateY(-1px);
}

    .roadmap-pro__item.is-active .roadmap-pro__dot {
        border-color: var(--primary);
        background: #fff7e5;
        box-shadow: 0 0 0 4px rgba(245,164,0,.22);
        transform: scale(1.05);
    }

    .roadmap-pro__item.is-active .roadmap-pro__year {
        color: #111827;
    }

@media (max-width: 640px) {
    .roadmap-pro__list {
        padding-right: 34px;
    }

    .roadmap-pro__dot {
        inset-inline-end: -9px;
    }
}


/* =============== بخش ویدیو درباره آژانس =============== */
.about-video {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    align-items: center;
}

@media (max-width: 900px) {
    .about-video {
        grid-template-columns: 1fr;
    }
}

.about-video__text-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
}

.about-video__text-body {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 14px;
}

.about-video__bullets {
    display: grid;
    gap: 8px;
    font-size: 12.5px;
    color: #374151;
}

.about-video__bullet {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

    .about-video__bullet span:first-child {
        margin-top: 3px;
        font-size: 16px;
    }

.about-video__card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #020617;
    box-shadow: 0 20px 42px rgba(15,23,42,.45);
    cursor: pointer;
}

.about-video__thumb {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    opacity: .93;
    transition: transform 400ms var(--transition), opacity 400ms var(--transition);
}

.about-video__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 0%, rgba(245,164,0,.45), transparent 55%),linear-gradient(to top, rgba(15,23,42,.95), rgba(15,23,42,.05));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px 16px;
    color: #f9fafb;
}

.about-video__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.about-video__play-btn {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    border: none;
    background: rgba(15,23,42,.8);
    box-shadow: 0 14px 32px rgba(0,0,0,.65);
    display: grid;
    place-items: center;
}

    .about-video__play-btn svg {
        margin-right: 3px;
    }

.about-video__overlay-title {
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 3px;
}

.about-video__overlay-caption {
    font-size: 11px;
    color: #cbd5f5;
}

.about-video__card:hover .about-video__thumb {
    transform: scale(1.04);
    opacity: 1;
}

/* ویدیو مودال */
.about-video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(15,23,42,.78);
    backdrop-filter: blur(8px);
}

    .about-video-modal.is-open {
        display: flex;
    }

.about-video-modal__inner {
    width: min(920px, 92vw);
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.75);
    position: relative;
}

.about-video-modal__close {
    position: absolute;
    top: 10px;
    left: 12px;
    border: none;
    background: rgba(15,23,42,.8);
    color: #f9fafb;
    font-size: 13px;
    border-radius: 999px;
    padding: 4px 10px;
    cursor: pointer;
    z-index: 2;
}

.about-video-modal iframe,
.about-video-modal video {
    width: 100%;
    height: 100%;
}

/* =============== بخش ویژگی‌ها =============== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 14px;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    position: relative;
    background: var(--card);
    border-radius: 18px;
    padding: 14px 14px 12px;
    border: 1px solid rgba(226,232,240, 0.9);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 200ms var(--transition), box-shadow 200ms var(--transition), border-color 200ms var(--transition);
}

    .feature-card::before {
        content: "";
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle at 0 0, rgba(245,164,0,.2), transparent 60%), radial-gradient(circle at 100% 100%, rgba(56,189,248,.16), transparent 55%);
        opacity: 0;
        transition: opacity 220ms var(--transition);
        pointer-events: none;
    }

    .feature-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(15,23,42,.14);
        border-color: rgba(59,130,246,.4);
    }

        .feature-card:hover::before {
            opacity: 1;
        }

.feature-card__icon {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: #f1f5f9;
    display: grid;
    place-items: center;
    margin-bottom: 8px;
    font-size: 17px;
}

.feature-card__title {
    font-size: 13.5px;
    font-weight: 800;
    margin-bottom: 4px;
}

.feature-card__text {
    font-size: 11.8px;
    color: var(--muted);
}

.about-footer-note {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 12px;
    text-align: center;
}
