/* Value Proposition Page Styles */

/* Hero - Problem-focused */
.vp-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 60%, #805AD5 100%);
    color: white;
    padding: var(--spacing-2xl) 0 6rem;
    position: relative;
    overflow: hidden;
}

.vp-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--bg-white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 60%);
}

.vp-hero .container {
    position: relative;
    z-index: 1;
}

.vp-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    margin-bottom: var(--spacing-md);
}

.vp-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    max-width: 700px;
}

.vp-hero h1 em {
    font-style: normal;
    color: var(--secondary-color);
}

.vp-hero-sub {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.92;
    max-width: 600px;
    margin-bottom: var(--spacing-lg);
}

.vp-hero-stats {
    display: flex;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.vp-stat {
    text-align: left;
}

.vp-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    display: block;
    line-height: 1.1;
    color: var(--secondary-color);
}

.vp-stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 0.25rem;
    display: block;
}

/* Problem Section */
.vp-problem {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-white);
}

.vp-problem h2 {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.vp-problem-subtitle {
    text-align: center;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    font-size: 1.05rem;
}

.vp-pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.vp-pain-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border-left: 4px solid #E53E3E;
    transition: transform 0.2s;
}

.vp-pain-card:hover {
    transform: translateY(-2px);
}

.vp-pain-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.vp-pain-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.vp-pain-card .pain-stat {
    display: inline-block;
    background: #FED7D7;
    color: #C53030;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    margin-top: 0.5rem;
}

/* Solution Section */
.vp-solution {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light);
}

.vp-solution h2 {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.vp-solution-subtitle {
    text-align: center;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    font-size: 1.05rem;
}

.vp-agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-md);
}

.vp-agent-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.25s;
}

.vp-agent-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.vp-agent-icon {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-xs);
}

.vp-agent-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

.vp-agent-card p {
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.5;
}

/* Comparison Section */
.vp-comparison {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-white);
}

.vp-comparison h2 {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.vp-comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.vp-comparison-table thead th {
    background: var(--primary-dark);
    color: white;
    padding: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.vp-comparison-table thead th:first-child {
    text-align: left;
}

.vp-comparison-table thead th.highlight {
    background: var(--primary-color);
    position: relative;
}

.vp-comparison-table thead th.highlight::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--text-dark);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    letter-spacing: 0.05em;
}

.vp-comparison-table tbody td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.vp-comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

.vp-comparison-table tbody td.highlight {
    background: #FAF5FF;
    font-weight: 600;
    color: var(--primary-dark);
}

.vp-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Tiers Section */
.vp-tiers {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light);
}

.vp-tiers h2 {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.vp-tiers-subtitle {
    text-align: center;
    color: var(--text-medium);
    max-width: 500px;
    margin: 0 auto var(--spacing-xl);
}

.vp-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    max-width: 960px;
    margin: 0 auto;
}

.vp-tier-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 2px solid var(--border-color);
    transition: all 0.2s;
    position: relative;
}

.vp-tier-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.vp-tier-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    white-space: nowrap;
}

.vp-tier-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.vp-tier-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.vp-tier-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
}

.vp-tier-desc {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.vp-tier-features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-md);
}

.vp-tier-features li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-medium);
    padding-left: 1.5rem;
    position: relative;
}

.vp-tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* Data Sources */
.vp-data {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-white);
}

.vp-data h2 {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.vp-data-subtitle {
    text-align: center;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
}

.vp-data-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    max-width: 800px;
    margin: 0 auto;
}

.vp-data-badge {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.vp-data-badge .badge-flag {
    font-size: 1.1rem;
}

/* CTA Section */
.vp-cta {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

.vp-cta h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.vp-cta p {
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.05rem;
}

.vp-cta .btn-primary {
    background: var(--secondary-color);
    color: var(--text-dark);
    font-weight: 700;
}

.vp-cta .btn-primary:hover {
    background: #ED8936;
}

.vp-cta .btn-secondary {
    border-color: rgba(255,255,255,0.5);
    color: white;
}

.vp-cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .vp-hero-stats {
        gap: var(--spacing-lg);
    }
    .vp-comparison-table {
        font-size: 0.8rem;
    }
    .vp-comparison-table td, .vp-comparison-table th {
        padding: 0.6rem 0.5rem;
    }
    .vp-tiers-grid {
        grid-template-columns: 1fr;
    }
}
