/* ============================================================
   product.css - Ürün (GenRPA Detay) sayfasi modern bilesenleri
   home2.css tasarim sistemini tamamlar. .h2-page altinda.
   ============================================================ */

/* ---- Modul kartlari (Gen Studio / ControlRoom / GenBot) ---- */
.h2-page .h2p-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}

.h2-page .h2p-module {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .h2-page .h2p-module:hover {
        transform: translateY(-6px);
        box-shadow: 0 26px 50px rgba(15, 27, 45, .1);
        border-color: transparent;
    }

.h2p-module-ico {
    width: 56px;
    height: 56px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    font-size: 1.45rem;
    color: #fff;
    background: linear-gradient(135deg, var(--red), #ff7a5c);
    box-shadow: 0 12px 24px rgba(232, 69, 69, .26);
    margin-bottom: 20px;
}

.h2-page .h2p-module:nth-child(2) .h2p-module-ico {
    background: linear-gradient(135deg, var(--teal), #4fd1c5);
    box-shadow: 0 12px 24px rgba(38, 166, 154, .26);
}

.h2-page .h2p-module:nth-child(3) .h2p-module-ico {
    background: linear-gradient(135deg, #1b3a5b, #2c5b8f);
    box-shadow: 0 12px 24px rgba(27, 58, 91, .26);
}

.h2p-module h3 {
    font-size: 1.42rem;
    font-weight: 700;
    margin: 0 0 6px;
}

.h2p-tag {
    color: var(--ink);
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0 12px;
}

.h2p-desc {
    color: var(--slate);
    font-size: .96rem;
    line-height: 1.65;
    margin: 0 0 22px;
}

.h2p-feats-title {
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--ink);
    margin: 0 0 14px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.h2p-feats {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .h2p-feats li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 12px;
        font-size: .94rem;
        color: #3f4a60;
        line-height: 1.55;
    }

        .h2p-feats li::before {
            content: "\2713";
            position: absolute;
            left: 0;
            top: 2px;
            width: 19px;
            height: 19px;
            border-radius: 50%;
            background: rgba(38, 166, 154, .14);
            color: var(--teal);
            font-size: .68rem;
            font-weight: 700;
            display: grid;
            place-items: center;
        }

/* ---- Ekran goruntuleri galerisi ---- */
.h2p-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

    .h2p-gallery .h2-frame {
        transition: transform .3s ease, box-shadow .3s ease;
    }

        .h2p-gallery .h2-frame:hover {
            transform: translateY(-5px);
            box-shadow: 0 26px 50px rgba(15, 27, 45, .16);
        }

@media (max-width: 980px) {
    .h2-page .h2p-modules { grid-template-columns: 1fr; }
    .h2p-gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .h2p-gallery { grid-template-columns: 1fr; }
}

/* ---- Lisanslama: baslangic paketi karti ---- */
.h2p-plan-wrap {
    display: flex;
    justify-content: center;
}

    .h2p-plan-wrap .h2p-module {
        max-width: 640px;
        width: 100%;
        border: 2px solid var(--red);
        position: relative;
        box-shadow: 0 26px 54px rgba(232, 69, 69, .14);
    }

.h2p-plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    padding: 6px 20px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .02em;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(232, 69, 69, .3);
}

.h2p-feats li strong {
    color: var(--ink);
}

/* ---- Roadmap zaman cizelgesi ---- */
.h2r-timeline {
    position: relative;
    max-width: 840px;
    margin: 0 auto;
    padding-left: 46px;
}

    .h2r-timeline::before {
        content: "";
        position: absolute;
        left: 13px;
        top: 10px;
        bottom: 10px;
        width: 2px;
        background: linear-gradient(180deg, var(--red), var(--teal));
    }

.h2r-item {
    position: relative;
    margin-bottom: 30px;
}

.h2r-dot {
    position: absolute;
    left: -40px;
    top: 6px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--red);
    display: grid;
    place-items: center;
    z-index: 2;
}

    .h2r-dot i {
        font-size: .72rem;
        color: var(--red);
    }

.h2r-item.next .h2r-dot {
    border-color: var(--teal);
}

    .h2r-item.next .h2r-dot i {
        color: var(--teal);
    }

.h2r-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 14px 32px rgba(15, 27, 45, .06);
    transition: transform .22s ease, box-shadow .22s ease;
}

    .h2r-card:hover {
        transform: translateX(4px);
        box-shadow: 0 20px 40px rgba(15, 27, 45, .1);
    }

.h2r-top {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.h2r-ver {
    display: inline-flex;
    align-items: center;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    padding: 4px 12px;
    border-radius: 999px;
}

.h2r-item.next .h2r-ver {
    background: var(--teal);
}

.h2r-date {
    color: var(--slate);
    font-size: .85rem;
    font-weight: 500;
}

.h2r-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    margin: 0 0 12px;
}

.h2r-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.h2r-card li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 8px;
    font-size: .93rem;
    color: #3f4a60;
    line-height: 1.55;
}

    .h2r-card li::before {
        content: "\2713";
        position: absolute;
        left: 0;
        top: 1px;
        color: var(--teal);
        font-size: .78rem;
        font-weight: 700;
    }
