﻿.hero {
    padding: 130px 0 90px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 30px auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
}

.hero-stats {
    margin-top: 70px;
}

.stat-card {
    text-align: center;
    padding: 25px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-text {
    color: var(--gray-500);
}


/* Features */

.features {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}
/* ==========================================================
   Features Section
========================================================== */

.pf-features {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.pf-features__container {
    position: relative;
    z-index: 2;
}

.pf-features__header {
    max-width: 720px;
    margin: 0 auto 72px;
    text-align: center;
}

.pf-features__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 18px;
    border: 1px solid var(--pf-border);
    border-radius: 999px;
    background: rgba(255,255,255,.03);
    color: var(--pf-primary);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pf-features__title {
    margin-bottom: 20px;
    font-size: clamp(2rem,5vw,3.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--pf-text-primary);
}

.pf-features__description {
    max-width: 620px;
    margin: 0 auto;
    color: var(--pf-text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}
/* ==========================================================
   Features Grid
========================================================== */

.pf-features__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

/* ==========================================================
   Feature Card
========================================================== */

.pf-feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 32px;
    border: 1px solid var(--pf-border);
    border-radius: 24px;
    background: var(--pf-surface);
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

    .pf-feature-card:hover {
        transform: translateY(-8px);
        border-color: var(--pf-primary);
        box-shadow: 0 24px 48px rgba(0,0,0,.18);
    }

.pf-feature-card__icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 28px;
    border-radius: 18px;
    background: rgba(99,102,241,.12);
    color: var(--pf-primary);
    font-size: 1.6rem;
}

.pf-feature-card__title {
    margin-bottom: 16px;
    color: var(--pf-text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.pf-feature-card__description {
    margin: 0;
    color: var(--pf-text-secondary);
    line-height: 1.8;
    flex: 1;
}
/* ==========================================================
   Feature Card Glow
========================================================== */

.pf-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient( circle at top right, rgba(99,102,241,.18), transparent 45% );
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
}

.pf-feature-card:hover::before {
    opacity: 1;
}

/* ==========================================================
   Icon Animation
========================================================== */

.pf-feature-card__icon {
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.pf-feature-card:hover
.pf-feature-card__icon {
    transform: translateY(-4px) scale(1.08);
    background: var(--pf-primary);
    color: #fff;
}

/* ==========================================================
   Title
========================================================== */

.pf-feature-card__title {
    transition: color .25s ease;
}

.pf-feature-card:hover
.pf-feature-card__title {
    color: var(--pf-primary);
}
/* ==========================================================
   Responsive
========================================================== */

@media (max-width: 991.98px) {

    .pf-features {
        padding: 96px 0;
    }

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

@media (max-width: 767.98px) {

    .pf-features {
        padding: 72px 0;
    }

    .pf-features__grid {
        grid-template-columns: 1fr;
    }

    .pf-feature-card {
        padding: 28px;
    }
}
/* ==========================================================
   Packages Section
========================================================== */

.pf-packages {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.pf-packages__container {
    position: relative;
    z-index: 2;
}

.pf-packages__header {
    max-width: 720px;
    margin: 0 auto 72px;
    text-align: center;
}

.pf-packages__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 18px;
    border: 1px solid var(--pf-border);
    border-radius: 999px;
    background: rgba(255,255,255,.03);
    color: var(--pf-primary);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pf-packages__title {
    margin-bottom: 20px;
    color: var(--pf-text-primary);
    font-size: clamp(2rem,5vw,3.25rem);
    font-weight: 800;
    line-height: 1.15;
}

.pf-packages__description {
    max-width: 620px;
    margin: 0 auto;
    color: var(--pf-text-secondary);
    line-height: 1.8;
}

.pf-packages__grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 28px;
}
/* ==========================================================
   Package Card
========================================================== */

.pf-package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
    border: 1px solid var(--pf-border);
    border-radius: 24px;
    background: var(--pf-surface);
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

    .pf-package-card:hover {
        transform: translateY(-8px);
        border-color: var(--pf-primary);
        box-shadow: 0 24px 48px rgba(0,0,0,.18);
    }

    .pf-package-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: radial-gradient( circle at top right, rgba(99,102,241,.18), transparent 45% );
        opacity: 0;
        transition: opacity .25s ease;
        pointer-events: none;
    }

    .pf-package-card:hover::before {
        opacity: 1;
    }
.pf-package-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.pf-package-card__icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(99,102,241,.12);
    color: var(--pf-primary);
    font-size: 1.7rem;
    transition: all .25s ease;
}

.pf-package-card:hover
.pf-package-card__icon {
    transform: scale(1.08);
    background: var(--pf-primary);
    color: #fff;
}

.pf-package-card__version {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(99,102,241,.12);
    color: var(--pf-primary);
    font-size: .85rem;
    font-weight: 700;
}
.pf-package-card__body {
    flex: 1;
}

.pf-package-card__name {
    margin-bottom: 14px;
    color: var(--pf-text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    transition: color .25s ease;
}

.pf-package-card:hover
.pf-package-card__name {
    color: var(--pf-primary);
}

.pf-package-card__description {
    color: var(--pf-text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
}
.pf-package-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.pf-package-card__downloads {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--pf-text-secondary);
    font-size: .92rem;
}

.pf-package-card__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: none;
    border-radius: 12px;
    background: var(--pf-primary);
    color: #fff;
    cursor: pointer;
    transition: transform .2s ease, opacity .2s ease;
}

    .pf-package-card__button:hover {
        opacity: .92;
        transform: translateY(-2px);
    }
@media (max-width:991.98px) {

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

@media (max-width:767.98px) {

    .pf-packages {
        padding: 72px 0;
    }

    .pf-packages__grid {
        grid-template-columns: 1fr;
    }

    .pf-package-card {
        padding: 24px;
    }
}
/* ==========================================================
   Statistics Section
========================================================== */

.pf-statistics {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.pf-statistics__container {
    position: relative;
    z-index: 2;
}

.pf-statistics__header {
    max-width: 720px;
    margin: 0 auto 80px;
    text-align: center;
}

.pf-statistics__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 18px;
    border: 1px solid var(--pf-border);
    border-radius: 999px;
    background: rgba(255,255,255,.03);
    color: var(--pf-primary);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pf-statistics__title {
    margin-bottom: 18px;
    color: var(--pf-text-primary);
    font-size: clamp(2rem,5vw,3.2rem);
    font-weight: 800;
    line-height: 1.15;
}

.pf-statistics__description {
    max-width: 620px;
    margin: 0 auto;
    color: var(--pf-text-secondary);
    line-height: 1.8;
}
/* ==========================================================
   Statistics Grid
========================================================== */

.pf-statistics__grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 48px;
    align-items: center;
    text-align: center;
}
/* ==========================================================
   Statistic Item
========================================================== */

.pf-statistic {
    position: relative;
}

.pf-statistic__value {
    margin-bottom: 14px;
    color: var(--pf-primary);
    font-size: clamp(2.8rem,5vw,4.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.03em;
}

.pf-statistic__label {
    color: var(--pf-text-secondary);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .08em;
}
/* ==========================================================
   Statistic Hover
========================================================== */

.pf-statistic {
    transition: transform .25s ease, color .25s ease;
}

    .pf-statistic:hover {
        transform: translateY(-4px);
    }

        .pf-statistic:hover

        .pf-statistic__value {
            color: var(--pf-primary-hover);
        }
@media (max-width:991.98px) {

    .pf-statistics__grid {
        grid-template-columns: repeat(2,1fr);
        gap: 40px;
    }
}

@media (max-width:767.98px) {

    .pf-statistics {
        padding: 72px 0;
    }

    .pf-statistics__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
/* ==========================================================
   CTA Section
========================================================== */

.pf-cta {
    position: relative;
    padding: 140px 0;
}

.pf-cta__wrapper {
    position: relative;
    overflow: hidden;
    padding: 80px 48px;
    border: 1px solid var(--pf-border);
    border-radius: 32px;
    background: linear-gradient( 135deg, rgba(99,102,241,.10), rgba(99,102,241,.03) );
    text-align: center;
}

    .pf-cta__wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( circle at top, rgba(99,102,241,.18), transparent 60% );
        pointer-events: none;
    }

.pf-cta__eyebrow {
    display: inline-flex;
    padding: 8px 18px;
    margin-bottom: 24px;
    border-radius: 999px;
    border: 1px solid var(--pf-border);
    background: rgba(255,255,255,.03);
    color: var(--pf-primary);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pf-cta__title {
    margin-bottom: 24px;
    color: var(--pf-text-primary);
    font-size: clamp(2.4rem,5vw,4rem);
    font-weight: 800;
    line-height: 1.1;
}

.pf-cta__description {
    max-width: 720px;
    margin: 0 auto 40px;
    color: var(--pf-text-secondary);
    font-size: 1.08rem;
    line-height: 1.9;
}
.pf-cta__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pf-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all .25s ease;
}

.pf-btn--primary {
    background: var(--pf-primary);
    color: #fff;
}

    .pf-btn--primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(99,102,241,.30);
    }

.pf-btn--secondary {
    border: 1px solid var(--pf-border);
    color: var(--pf-text-primary);
    background: rgba(255,255,255,.02);
}

    .pf-btn--secondary:hover {
        border-color: var(--pf-primary);
        color: var(--pf-primary);
        transform: translateY(-3px);
    }
@media(max-width:768px) {

    .pf-cta {
        padding: 80px 0;
    }

    .pf-cta__wrapper {
        padding: 56px 28px;
    }

    .pf-cta__actions {
        flex-direction: column;
    }

    .pf-btn {
        width: 100%;
        justify-content: center;
    }
}
/* ==========================================================
   Reveal Animation
========================================================== */

.pf-reveal {
    opacity: 0;
    transform: translateY(42px);
    transition: opacity .8s ease, transform .8s ease;
    will-change: opacity, transform;
}

    .pf-reveal.is-visible {
        opacity: 1;
        transform: none;
    }
/* ==========================================================
   Reveal Delay
========================================================== */

.pf-reveal {
    opacity: 0;
    transform: translateY(42px);
    transition: opacity .75s ease, transform .75s ease;
    transition-delay: var(--pf-reveal-delay,0ms);
    will-change: opacity, transform;
}

    .pf-reveal.is-visible {
        opacity: 1;
        transform: none;
    }