.gr-page-shell {
    background: #f8fafc;
}

.gr-page-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 74px;
    background:
        linear-gradient(135deg, rgba(102,126,234,.96), rgba(118,75,162,.96)),
        url("../images/dashboard-illustration.svg");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.gr-page-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 72px;
    background: linear-gradient(to top, #f8fafc, transparent);
}

.gr-page-hero .container {
    position: relative;
    z-index: 2;
}

.gr-page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.24);
    font-weight: 700;
    font-size: .86rem;
    margin-bottom: 18px;
}

.gr-page-title {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-size: clamp(2.15rem, 5vw, 4.3rem);
    line-height: 1.08;
    letter-spacing: -.03em;
    margin-bottom: 18px;
}

.gr-page-lead {
    max-width: 760px;
    font-size: 1.08rem;
    line-height: 1.8;
    color: rgba(255,255,255,.88);
}

.gr-page-section {
    padding: 72px 0;
}

.gr-ui-card {
    height: 100%;
    padding: 28px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 16px 42px rgba(15,23,42,.06);
}

.gr-ui-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--gr-gradient);
    font-size: 1.35rem;
    margin-bottom: 18px;
}

.gr-step-list {
    counter-reset: steps;
    display: grid;
    gap: 16px;
}

.gr-step {
    counter-increment: steps;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(15,23,42,.04);
}

.gr-step::before {
    content: counter(steps, decimal-leading-zero);
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--gr-gradient-light);
    color: var(--gr-primary);
    font-weight: 900;
}

.gr-price-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(15,23,42,.08);
}

.gr-price-card.featured {
    border-color: rgba(102,126,234,.35);
    box-shadow: 0 24px 70px rgba(102,126,234,.18);
}

.gr-price-card.featured::before {
    content: "Recommended";
    position: absolute;
    top: 18px;
    right: -36px;
    transform: rotate(35deg);
    width: 160px;
    text-align: center;
    background: #f59e0b;
    color: #111827;
    font-size: .72rem;
    font-weight: 900;
    padding: 6px 0;
}

.gr-price-value {
    font-family: "Poppins", sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -.04em;
}

.gr-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gr-check-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #475569;
}

.gr-check-list i {
    color: #10b981;
    margin-top: 2px;
}

.gr-guide-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gr-guide-nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    border: 1px solid #dbe3ee;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    color: #334155;
    background: #fff;
}

.gr-guide-nav a:hover,
.gr-guide-nav a.active {
    color: #fff;
    background: var(--gr-gradient);
    border-color: transparent;
}

@media (max-width: 767px) {
    .gr-page-hero {
        padding: 62px 0 54px;
    }

    .gr-page-section {
        padding: 48px 0;
    }

    .gr-ui-card {
        padding: 22px;
    }
}
