@import url('tokens.css');

:root {
    --pr-primary: #001E62;
    --pr-primary-light: #0036b0;
    --pr-accent: #00c9a7;
    --pr-bg: #f8f9fa;
    --pr-surface: #ffffff;
    --pr-text: #2d3748;
    --pr-text-secondary: #718096;
    --pr-text-muted: #a0aec0;
    --pr-border: #e2e8f0;
    --pr-radius: 16px;
    --pr-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --pr-shadow-lg: 0 8px 32px rgba(0, 30, 98, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    font-family: var(--font-sans);
    background: var(--pr-bg);
    color: #212529;
    line-height: 1.5;
}

/* Header */
.pr-header {
    background: var(--pr-surface);
    box-shadow: var(--pr-shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.pr-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pr-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--pr-primary);
}

.pr-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--pr-primary);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.pr-logo-text {
    font-size: 18px;
    font-weight: 700;
}

.pr-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pr-link {
    color: var(--pr-text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.pr-link:hover { color: var(--pr-primary); }

.pr-btn-header {
    background: var(--pr-primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.pr-btn-header:hover {
    background: var(--pr-primary-light);
}

/* Hero */
.pr-hero {
    text-align: center;
    padding: 60px 24px 40px;
}

.pr-hero h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--pr-primary);
    margin-bottom: 12px;
}

.pr-hero p {
    font-size: 18px;
    color: var(--pr-text-secondary);
}

/* Cards */
.pr-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 0 24px 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.pr-card {
    flex: 1;
    max-width: 340px;
    background: var(--pr-surface);
    border-radius: var(--pr-radius);
    padding: 36px 28px;
    box-shadow: var(--pr-shadow);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pr-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pr-shadow-lg);
}

.pr-card-featured {
    border-color: var(--pr-primary);
    box-shadow: var(--pr-shadow-lg);
    transform: scale(1.03);
}

.pr-card-featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pr-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pr-primary);
    color: #fff;
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pr-card-header {
    text-align: center;
    margin-bottom: 28px;
}

.pr-card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--pr-text);
    margin-bottom: 12px;
}

.pr-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.pr-amount {
    font-size: 44px;
    font-weight: 800;
    color: var(--pr-primary);
}

.pr-period {
    font-size: 16px;
    color: var(--pr-text-muted);
}

.pr-desc {
    font-size: 14px;
    color: var(--pr-text-secondary);
}

/* Features */
.pr-features {
    list-style: none;
    flex: 1;
    margin-bottom: 28px;
}

.pr-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--pr-text);
    border-bottom: 1px solid #f1f3f5;
}

.pr-features li:last-child { border-bottom: none; }

.pr-features li i {
    font-size: 14px;
    color: var(--pr-accent);
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.pr-features li.disabled {
    color: var(--pr-text-muted);
}

.pr-features li.disabled i {
    color: #e2e8f0;
}

/* Buttons */
.pr-btn {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

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

.pr-btn-primary:hover {
    background: var(--pr-primary-light);
    box-shadow: 0 4px 16px rgba(0, 30, 98, 0.3);
}

.pr-btn-outline {
    background: transparent;
    color: var(--pr-primary);
    border: 2px solid var(--pr-border);
}

.pr-btn-outline:hover {
    border-color: var(--pr-primary);
    background: #f8f9ff;
}

/* FAQ */
.pr-faq {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

.pr-faq h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--pr-primary);
    margin-bottom: 32px;
}

.pr-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pr-faq-item {
    background: var(--pr-surface);
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: var(--pr-shadow);
}

.pr-faq-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--pr-text);
    margin-bottom: 8px;
}

.pr-faq-item p {
    font-size: 14px;
    color: var(--pr-text-secondary);
    line-height: 1.6;
}

/* Footer */
.pr-footer {
    text-align: center;
    padding: 24px;
    color: var(--pr-text-muted);
    font-size: 13px;
    border-top: 1px solid var(--pr-border);
}

/* Responsive */
@media (max-width: 900px) {
    .pr-cards {
        flex-direction: column;
        align-items: center;
    }

    .pr-card {
        max-width: 400px;
        width: 100%;
    }

    .pr-card-featured {
        transform: none;
        order: -1;
    }

    .pr-card-featured:hover {
        transform: translateY(-4px);
    }

    .pr-hero h1 { font-size: 30px; }

    .pr-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .pr-header-inner { padding: 10px 16px; }
    .pr-hero { padding: 40px 16px 24px; }
    .pr-hero h1 { font-size: 26px; }
    .pr-amount { font-size: 36px; }
}
