/* ==============================================
   PRO PAGE — AI Pro Event Assistant & Business Profile
   Professional showcase page for Pro subscription
   ============================================== */

/* ── Variables ── */
:root {
    --pro-gold: #FFD700;
    --pro-gold-dark: #E6C200;
    --pro-orange: #FFA500;
    --pro-bg: #0F2A2A;
    --pro-surface: rgba(255, 255, 255, 0.04);
    --pro-border: rgba(255, 255, 255, 0.08);
    --pro-text: rgba(255, 255, 255, 0.85);
    --pro-text-muted: rgba(255, 255, 255, 0.55);
    --pro-green: #8BFF22;
    --pro-cyan: #00D9FF;
}

/* ── Hero Section ── */
.pro-hero {
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0a1e1e 0%, #0F2A2A 60%, rgba(255, 215, 0, 0.03) 100%);
}

.pro-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.pro-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--pro-gold);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pro-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.pro-hero h1 .gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pro-hero .hero-desc {
    font-size: 1.2rem;
    color: var(--pro-text-muted);
    max-width: 650px;
    margin: 0 auto 36px;
    line-height: 1.65;
}

.pro-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pro-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0F2A2A;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.25);
}
.pro-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.35);
}

.pro-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}
.pro-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* ── Status Banner (logged-in user) ── */
.pro-status-banner {
    background: rgba(255, 215, 0, 0.05);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    padding: 16px 0;
    text-align: center;
    display: none; /* shown by JS */
}

.pro-status-inner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.pro-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
}
.pro-status-badge.active {
    background: rgba(139, 255, 34, 0.15);
    color: var(--pro-green);
}
.pro-status-badge.starter {
    background: rgba(0, 217, 255, 0.12);
    color: var(--pro-cyan);
}
.pro-status-badge.none {
    background: rgba(255, 255, 255, 0.08);
    color: var(--pro-text-muted);
}

.pro-status-text {
    color: var(--pro-text-muted);
}
.pro-status-text a {
    color: var(--pro-gold);
    text-decoration: none;
    font-weight: 600;
}
.pro-status-text a:hover {
    text-decoration: underline;
}

/* ── AI Levels Section ── */
.pro-section {
    padding: 80px 0;
}

.pro-section-dark {
    background: rgba(0, 0, 0, 0.15);
}

.pro-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.pro-section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--pro-text-muted);
    margin: 0 0 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* AI Level Cards */
.pro-levels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .pro-levels-grid { grid-template-columns: 1fr; max-width: 450px; }
}

.pro-level-card {
    background: var(--pro-surface);
    border: 1px solid var(--pro-border);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.pro-level-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pro-level-card.level-standard {
    border-color: rgba(255, 255, 255, 0.12);
}
.pro-level-card.level-enhanced {
    border-color: rgba(0, 217, 255, 0.25);
}
.pro-level-card.level-pro {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.08);
}

.pro-level-card .level-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.level-badge.badge-standard {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
}
.level-badge.badge-enhanced {
    background: rgba(0, 217, 255, 0.15);
    color: var(--pro-cyan);
}
.level-badge.badge-pro {
    background: var(--pro-gold);
    color: #0F2A2A;
}

.pro-level-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.pro-level-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}

.pro-level-requirement {
    font-size: 0.85rem;
    color: var(--pro-text-muted);
    margin: 0 0 20px;
}

.pro-level-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pro-level-features li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--pro-text);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pro-level-features .check {
    flex-shrink: 0;
    margin-top: 2px;
}
.pro-level-features .check-green { color: var(--pro-green); }
.pro-level-features .check-cyan { color: var(--pro-cyan); }
.pro-level-features .check-gold { color: var(--pro-gold); }

/* ── Business Profile Modules ── */
.pro-bp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .pro-bp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .pro-bp-grid { grid-template-columns: 1fr; }
}

.pro-bp-card {
    background: var(--pro-surface);
    border: 1px solid var(--pro-border);
    border-radius: 14px;
    padding: 24px;
    transition: border-color 0.3s, transform 0.2s;
}
.pro-bp-card:hover {
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.pro-bp-card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.pro-bp-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
}

.pro-bp-card-desc {
    font-size: 0.88rem;
    color: var(--pro-text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ── How It Works ── */
.pro-steps {
    display: flex;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

@media (max-width: 768px) {
    .pro-steps { flex-direction: column; gap: 24px; }
}

.pro-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.pro-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.pro-step-number.step-1 {
    background: rgba(139, 255, 34, 0.15);
    color: var(--pro-green);
    border: 2px solid rgba(139, 255, 34, 0.3);
}
.pro-step-number.step-2 {
    background: rgba(0, 217, 255, 0.12);
    color: var(--pro-cyan);
    border: 2px solid rgba(0, 217, 255, 0.25);
}
.pro-step-number.step-3 {
    background: rgba(255, 215, 0, 0.12);
    color: var(--pro-gold);
    border: 2px solid rgba(255, 215, 0, 0.25);
}

.pro-step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
}

.pro-step p {
    font-size: 0.9rem;
    color: var(--pro-text-muted);
    line-height: 1.55;
    margin: 0;
}

/* Step connector arrows */
.pro-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.15);
    font-size: 1.5rem;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .pro-step-arrow {
        transform: rotate(90deg);
        padding: 0;
    }
}

/* ── Comparison Table ── */
.pro-comparison {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.pro-comparison table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.pro-comparison th,
.pro-comparison td {
    padding: 14px 20px;
    text-align: left;
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pro-comparison thead th {
    color: var(--pro-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    padding-bottom: 18px;
}

.pro-comparison th.col-pro {
    color: var(--pro-gold);
}

.pro-comparison td:first-child {
    color: var(--pro-text);
    font-weight: 500;
}

.pro-comparison td:not(:first-child) {
    text-align: center;
}

.pro-comparison .val-standard {
    color: var(--pro-text-muted);
}

.pro-comparison .val-pro {
    color: var(--pro-gold);
    font-weight: 600;
}

.pro-comparison .val-check {
    color: var(--pro-green);
    font-size: 1.1rem;
}

.pro-comparison .val-cross {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1rem;
}

.pro-comparison tbody tr:hover {
    background: rgba(255, 215, 0, 0.02);
}

/* ── Testimonial / Quote ── */
.pro-quote {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: var(--pro-surface);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    position: relative;
}

.pro-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 5rem;
    color: rgba(255, 215, 0, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.pro-quote p {
    font-size: 1.15rem;
    color: var(--pro-text);
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 16px;
}

.pro-quote cite {
    font-size: 0.9rem;
    color: var(--pro-text-muted);
    font-style: normal;
}

/* ── CTA Section ── */
.pro-cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--pro-bg) 0%, rgba(255, 215, 0, 0.04) 100%);
}

.pro-cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}

.pro-cta-section p {
    font-size: 1.1rem;
    color: var(--pro-text-muted);
    margin: 0 0 36px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.pro-cta-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.pro-cta-price-card {
    background: var(--pro-surface);
    border: 1px solid var(--pro-border);
    border-radius: 14px;
    padding: 20px 32px;
    text-align: center;
}
.pro-cta-price-card.highlight {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.05);
}

.pro-cta-price-label {
    font-size: 0.85rem;
    color: var(--pro-text-muted);
    margin: 0 0 4px;
}
.pro-cta-price-value {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}
.pro-cta-price-value .currency {
    font-size: 1rem;
    color: var(--pro-text-muted);
    vertical-align: super;
}
.pro-cta-price-value .period {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--pro-text-muted);
}
.pro-cta-price-card.highlight .pro-cta-price-value {
    color: var(--pro-gold);
}

/* ── Footer minimal ── */
.pro-footer {
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid var(--pro-border);
}
.pro-footer p {
    color: var(--pro-text-muted);
    font-size: 0.85rem;
    margin: 0;
}
.pro-footer a {
    color: var(--pro-gold);
    text-decoration: none;
}
.pro-footer a:hover {
    text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .pro-hero h1 { font-size: 2.2rem; }
    .pro-hero .hero-desc { font-size: 1.05rem; }
    .pro-section-title { font-size: 1.6rem; }
    .pro-section { padding: 60px 0; }
    .pro-cta-section h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .pro-hero h1 { font-size: 1.8rem; }
    .pro-hero-actions { flex-direction: column; }
    .pro-btn-primary, .pro-btn-secondary { width: 100%; justify-content: center; }
}

/* ── Nav PRO link styling ── */
.nav-pro-link {
    color: #FFD700 !important;
    font-weight: 700 !important;
    letter-spacing: 0.03em;
}
.nav-pro-link .nav-icon {
    stroke: #FFD700 !important;
    fill: rgba(255, 215, 0, 0.15);
}
.nav-pro-link:hover {
    color: #FFA500 !important;
    border-bottom-color: #FFD700 !important;
}
.nav-pro-link:hover .nav-icon {
    stroke: #FFA500 !important;
    fill: rgba(255, 165, 0, 0.25);
}
