/* Pricing Plans Page Custom UI */

:root {
    --pp-primary: #ff9100;
    --pp-primary-dark: #ff6b35;
    --pp-panel-bg: #1f2329;
    --pp-border: #3a414a;
}

.product-hero-section {
    position: relative;
}

.product-hero-title {
    font-size: clamp(1.9rem, 2.5vw, 2.6rem);
    line-height: 1.15;
}

.product-hero-desc {
    font-size: 1rem;
    line-height: 1.7;
}

.hero-highlight-panel {
    border: 1px solid var(--pp-border);
    border-radius: 12px;
    padding: 14px 14px 12px;
    background: rgba(255, 255, 255, 0.02);
}

.hero-highlight-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #f4f7fa;
}

.hero-highlight-title i {
    color: var(--pp-primary);
}

.hero-highlight-list {
    list-style: none;
    padding-left: 0;
}

.hero-highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 7px;
    color: #c4ccd4;
    font-size: 0.88rem;
    line-height: 1.5;
}

.hero-highlight-list li i {
    margin-top: 3px;
    color: var(--pp-primary);
}

.hero-highlight-list li:last-child {
    margin-bottom: 0;
}

.hero-badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 145, 0, 0.35);
    background: rgba(255, 145, 0, 0.1);
    color: #ffc98b;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.hero-stat-box {
    height: 100%;
    min-height: 70px;
    border: 1px solid var(--pp-border);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.25s ease;
}

.hero-stat-box i {
    font-size: 20px;
    color: var(--pp-primary);
}

.hero-stat-box small {
    color: #b8c2cc;
    font-weight: 600;
    font-size: 0.78rem;
}

.hero-stat-box:hover {
    border-color: rgba(255, 145, 0, 0.65);
    transform: translateY(-2px);
}

.product-hero-image-wrap {
    position: relative;
    border-radius: 18px;
    padding: 16px;
    border: 1px solid rgba(255, 145, 0, 0.2);
    background: radial-gradient(circle at top right, rgba(255, 145, 0, 0.16), rgba(255, 255, 255, 0.02) 60%);
}

.product-hero-image {
    width: 100%;
    object-fit: contain;
}

.demo-access-panel .card {
    border: 1px solid rgba(255, 145, 0, 0.28) !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.demo-access-panel .card-body {
    background: transparent;
}

.demo-icon {
    background: linear-gradient(135deg, rgba(255, 145, 0, 0.22), rgba(255, 107, 53, 0.24)) !important;
}

.demo-icon i {
    color: var(--pp-primary) !important;
}

.demo-role-card {
    border: 1px solid var(--pp-border) !important;
    background: var(--pp-panel-bg) !important;
    transition: all 0.25s ease;
}

.demo-role-card:hover {
    border-color: rgba(255, 145, 0, 0.6) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 145, 0, 0.12);
}

.role-badge {
    background: linear-gradient(135deg, var(--pp-primary), var(--pp-primary-dark)) !important;
    color: #fff;
}

.demo-features h6 {
    color: #f4f7fa;
}

.demo-features small {
    color: #c4ccd4;
    line-height: 1.5;
}

.copy-btn {
    border-color: rgba(255, 145, 0, 0.6) !important;
    color: #ffc98b !important;
    background: rgba(255, 145, 0, 0.08) !important;
}

.copy-btn:hover {
    color: #ffffff !important;
    border-color: var(--pp-primary) !important;
    background: linear-gradient(135deg, var(--pp-primary), var(--pp-primary-dark)) !important;
    transform: translateY(-1px) !important;
}

.demo-stat {
    border: 1px solid var(--pp-border) !important;
    background: rgba(255, 255, 255, 0.02);
}

.demo-stat:hover {
    border-color: rgba(255, 145, 0, 0.55) !important;
}

@media (max-width: 1199.98px) {
    .demo-role-card {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .hero-badge-group {
        justify-content: center;
    }

    .product-hero-title,
    .product-hero-desc {
        text-align: center;
    }

    .hero-highlight-title {
        text-align: center;
    }

    .hero-stat-box {
        text-align: center;
        align-items: center;
    }
}
