/**
 * BVA Assessment Public Styles
 *
 * @package PPS_BVA_Assessment
 */

/* Variables - PPS Design System */
:root {
    /* Import from PPS Core design system - CHANGE from dark blue to indigo */
    --bva-primary: var(--pps-primary, #4f46e5);
    --bva-primary-dark: var(--pps-primary-dark, #4338ca);
    --bva-primary-light: var(--pps-primary-light, #818cf8);
    --bva-success: var(--pps-success, #10b981);
    --bva-warning: var(--pps-warning, #f59e0b);
    --bva-danger: var(--pps-error, #ef4444);
    --bva-info: var(--pps-info, #3b82f6);

    /* Neutrals */
    --bva-gray-100: var(--pps-gray-100, #f3f4f6);
    --bva-gray-200: var(--pps-gray-200, #e5e7eb);
    --bva-gray-500: var(--pps-gray-500, #6b7280);
    --bva-gray-700: var(--pps-gray-700, #374151);

    /* Legacy compatibility */
    --bva-secondary: var(--bva-primary-light);
    --bva-light: var(--bva-gray-100);
    --bva-text: var(--bva-gray-700);
    --bva-text-light: var(--bva-gray-500);
    --bva-border: var(--bva-gray-200);

    /* Border Radius - standardize */
    --bva-radius: var(--pps-radius-md, 6px);
    --bva-radius-lg: var(--pps-radius-lg, 8px);
    --bva-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Focus States */
*:focus-visible {
    outline: 2px solid var(--bva-primary);
    outline-offset: 2px;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--bva-primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

/* Container */
.bva-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--bva-text);
    line-height: 1.6;
}

.bva-container * {
    box-sizing: border-box;
}

/* Language Toggle */
.bva-language-toggle {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    margin-bottom: 30px;
}

.bva-lang-btn {
    padding: 8px 16px;
    border: 2px solid var(--bva-border);
    background: white;
    color: var(--bva-text-light);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--bva-radius);
    transition: all 0.2s ease;
}

.bva-lang-btn:hover {
    border-color: var(--bva-primary);
    color: var(--bva-primary);
}

.bva-lang-btn.active {
    background: var(--bva-primary);
    border-color: var(--bva-primary);
    color: white;
}

/* Logo */
.bva-logo {
    text-align: center;
    margin-bottom: 30px;
}

.bva-logo img {
    max-width: 250px;
    height: auto;
}

/* Steps */
.bva-step {
    display: none;
}

.bva-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Introduction */
.bva-step-intro {
    text-align: center;
}

.bva-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--bva-primary);
    margin-bottom: 20px;
}

.bva-intro-text {
    font-size: 18px;
    color: var(--bva-text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.bva-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--bva-radius);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.bva-btn-primary {
    background: var(--bva-primary);
    color: white;
}

.bva-btn-primary:hover {
    background: var(--bva-secondary);
    transform: translateY(-2px);
    box-shadow: var(--bva-shadow);
}

.bva-btn-secondary {
    background: white;
    color: var(--bva-primary);
    border: 2px solid var(--bva-primary);
}

.bva-btn-secondary:hover {
    background: var(--bva-light);
}

.bva-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.bva-link-btn {
    background: none;
    border: none;
    color: var(--bva-secondary);
    cursor: pointer;
    text-decoration: underline;
    font-size: inherit;
}

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

/* Lead Form */
.bva-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--bva-primary);
    margin-bottom: 10px;
    text-align: center;
}

.bva-section-subtitle {
    color: var(--bva-text-light);
    text-align: center;
    margin-bottom: 30px;
}

.bva-lead-form {
    max-width: 500px;
    margin: 0 auto;
}

.bva-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 600px) {
    .bva-form-row {
        grid-template-columns: 1fr;
    }
}

.bva-form-group {
    margin-bottom: 20px;
}

.bva-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--bva-text);
}

.bva-form-group label .required {
    color: var(--bva-danger);
}

.bva-form-group input,
.bva-form-group select,
.bva-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--bva-border);
    border-radius: var(--bva-radius);
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.bva-form-group input:focus,
.bva-form-group select:focus,
.bva-form-group textarea:focus {
    outline: none;
    border-color: var(--bva-secondary);
}

.bva-form-group input.error,
.bva-form-group select.error {
    border-color: var(--bva-danger);
}

/* Checkboxes */
.bva-checkbox-group {
    margin-bottom: 15px;
}

.bva-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: normal !important;
}

.bva-checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.bva-checkbox-label span {
    font-size: 14px;
    color: var(--bva-text-light);
}

.bva-checkbox-label a {
    color: var(--bva-secondary);
}

/* Form Error */
.bva-form-error {
    background: #fee2e2;
    border: 1px solid var(--bva-danger);
    color: #991b1b;
    padding: 12px 16px;
    border-radius: var(--bva-radius);
    margin-bottom: 20px;
    font-size: 14px;
}

/* Progress Bar */
.bva-progress-container {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bva-light);
    border-radius: var(--bva-radius);
}

.bva-progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.bva-section-label {
    font-weight: 600;
    color: var(--bva-primary);
}

.bva-progress-percent {
    color: var(--bva-text-light);
}

.bva-progress-bar {
    height: 8px;
    background: white;
    border-radius: 4px;
    overflow: hidden;
}

.bva-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bva-secondary), var(--bva-primary));
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Questions */
.bva-section {
    display: none;
}

.bva-section.active {
    display: block;
}

.bva-section-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--bva-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bva-light);
}

.bva-question {
    display: none;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: var(--bva-radius);
    box-shadow: var(--bva-shadow);
}

.bva-question.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.bva-question-header {
    margin-bottom: 15px;
}

.bva-question-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--bva-secondary);
}

.bva-question-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--bva-text);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Options */
.bva-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bva-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border: 2px solid var(--bva-border);
    border-radius: var(--bva-radius);
    cursor: pointer;
    transition: all 0.2s ease;
}

.bva-option:hover {
    border-color: var(--bva-secondary);
    background: var(--bva-light);
}

.bva-option input[type="radio"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--bva-primary);
}

.bva-option input[type="radio"]:checked + .bva-option-text {
    font-weight: 600;
}

.bva-option:has(input:checked) {
    border-color: var(--bva-primary);
    background: var(--bva-light);
}

.bva-option-text {
    flex: 1;
    font-size: 15px;
}

/* Navigation */
.bva-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--bva-border);
}

/* Verification */
.bva-verification-message {
    text-align: center;
    padding: 40px 20px;
}

.bva-icon-email {
    margin-bottom: 30px;
}

.bva-icon-email svg {
    width: 80px;
    height: 80px;
    color: var(--bva-primary);
}

.bva-verification-message h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--bva-primary);
}

.bva-verification-text {
    font-size: 16px;
    color: var(--bva-text-light);
    margin-bottom: 20px;
}

.bva-verification-spam {
    font-size: 14px;
    color: var(--bva-text-light);
}

.bva-resend-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: var(--bva-radius);
    font-size: 14px;
}

.bva-resend-status.success {
    background: #d1fae5;
    color: #065f46;
}

.bva-resend-status.error {
    background: #fee2e2;
    color: #991b1b;
}

/* Loading */
.bva-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.bva-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bva-light);
    border-top-color: var(--bva-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Results Page */
.bva-results-container {
    text-align: center;
}

.bva-results-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--bva-primary);
    margin-bottom: 10px;
}

.bva-results-greeting {
    font-size: 18px;
    color: var(--bva-text-light);
    margin-bottom: 40px;
}

/* Score Card */
.bva-score-card {
    max-width: 400px;
    margin: 0 auto 40px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--bva-shadow);
    border: 4px solid;
    overflow: hidden;
}

.bva-score-main {
    padding: 40px 20px;
}

.bva-score-number {
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
}

.bva-score-percent {
    font-size: 40px;
    font-weight: 600;
}

.bva-score-label {
    font-size: 18px;
    color: var(--bva-text-light);
    margin-top: 10px;
}

.bva-score-tier {
    padding: 15px 20px;
    color: white;
    font-size: 20px;
    font-weight: 600;
}

/* Interpretation */
.bva-interpretation {
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
    padding: 30px;
    background: var(--bva-light);
    border-radius: var(--bva-radius);
}

.bva-interpretation-summary {
    font-size: 16px;
    margin-bottom: 20px;
}

.bva-interpretation h3 {
    font-size: 18px;
    color: var(--bva-primary);
    margin-bottom: 15px;
}

.bva-meaning-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.bva-meaning-list li {
    margin-bottom: 10px;
}

.bva-interpretation-cta {
    color: var(--bva-text-light);
}

/* Section Scores */
.bva-section-scores {
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
}

.bva-section-scores h3 {
    text-align: center;
    font-size: 22px;
    color: var(--bva-primary);
    margin-bottom: 25px;
}

.bva-sections-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bva-section-item {
    padding: 15px 20px;
    background: white;
    border-radius: var(--bva-radius);
    box-shadow: var(--bva-shadow);
}

.bva-section-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.bva-section-name {
    font-weight: 600;
}

.bva-section-score {
    color: var(--bva-text-light);
}

.bva-section-bar {
    height: 8px;
    background: var(--bva-light);
    border-radius: 4px;
    overflow: hidden;
}

.bva-section-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* Actions */
.bva-results-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

/* Calendly */
.bva-calendly-section {
    max-width: 100%;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--bva-border);
}

.bva-calendly-section h3 {
    font-size: 24px;
    color: var(--bva-primary);
    margin-bottom: 20px;
}

/* Section Breakdown Accordion */
.bva-section-breakdown {
    max-width: 700px;
    margin: 0 auto 40px;
}

.bva-section-breakdown h3 {
    text-align: center;
    font-size: 22px;
    color: var(--bva-primary);
    margin-bottom: 25px;
}

.bva-sections-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bva-section-accordion-item {
    background: white;
    border-radius: var(--bva-radius);
    box-shadow: var(--bva-shadow);
    overflow: hidden;
    border-left: 4px solid var(--bva-gray-200);
}

.bva-section-accordion-item.bva-section-tier-critical {
    border-left-color: var(--bva-danger);
}

.bva-section-accordion-item.bva-section-tier-needs_work {
    border-left-color: var(--bva-warning);
}

.bva-section-accordion-item.bva-section-tier-strong {
    border-left-color: var(--bva-success);
}

.bva-section-accordion-header {
    width: 100%;
    padding: 16px 20px;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    transition: background-color 0.2s ease;
}

.bva-section-accordion-header:hover {
    background: var(--bva-gray-100);
}

.bva-section-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.bva-section-bar-wrapper {
    flex: 1;
    width: 100%;
}

.bva-accordion-icon {
    color: var(--bva-gray-500);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: auto;
    margin-top: -30px;
}

.bva-section-accordion-header[aria-expanded="true"] .bva-accordion-icon {
    transform: rotate(180deg);
}

.bva-section-accordion-content {
    padding: 0 20px 20px 20px;
    color: var(--bva-text);
    line-height: 1.7;
}

.bva-section-accordion-content p {
    margin-bottom: 12px;
}

.bva-section-accordion-content p:last-child {
    margin-bottom: 0;
}

/* Section Fill Colors by Tier */
.bva-section-tier-critical .bva-section-fill {
    background: linear-gradient(90deg, var(--bva-danger), #f87171);
}

.bva-section-tier-needs_work .bva-section-fill {
    background: linear-gradient(90deg, var(--bva-warning), #fbbf24);
}

.bva-section-tier-strong .bva-section-fill {
    background: linear-gradient(90deg, var(--bva-success), #34d399);
}

/* Recommended Actions */
.bva-recommended-actions {
    max-width: 700px;
    margin: 0 auto 40px;
}

.bva-recommended-actions h3 {
    text-align: center;
    font-size: 22px;
    color: var(--bva-primary);
    margin-bottom: 25px;
}

.bva-actions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bva-action-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: var(--bva-radius);
    box-shadow: var(--bva-shadow);
}

.bva-action-number {
    flex-shrink: 0;
    width: 80px;
    padding: 8px 12px;
    background: var(--bva-primary);
    color: white;
    border-radius: var(--bva-radius);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    height: fit-content;
}

.bva-action-content {
    flex: 1;
}

.bva-action-section {
    font-size: 16px;
    font-weight: 600;
    color: var(--bva-primary);
    margin-bottom: 8px;
}

.bva-action-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--bva-text);
    margin: 0;
}

/* Bridge Section */
.bva-bridge-section {
    max-width: 700px;
    margin: 0 auto 40px;
    padding: 30px;
    background: var(--bva-gray-100);
    border-radius: var(--bva-radius-lg);
}

.bva-bridge-section p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.bva-bridge-intro {
    font-size: 16px;
}

.bva-bridge-offer {
    font-size: 15px;
}

.bva-bridge-value {
    font-size: 14px;
    color: var(--bva-text-light);
    font-style: italic;
}

.bva-bridge-cta {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--bva-gray-200);
}

.bva-bridge-cta h4 {
    font-size: 18px;
    color: var(--bva-primary);
    margin-bottom: 12px;
}

.bva-bridge-cta p {
    margin-bottom: 0;
}

/* Error */
.bva-error {
    text-align: center;
    padding: 60px 20px;
}

.bva-error p {
    font-size: 18px;
    color: var(--bva-text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .bva-container {
        padding: 20px 15px;
    }

    .bva-title,
    .bva-results-title {
        font-size: 26px;
    }

    .bva-score-number {
        font-size: 60px;
    }

    .bva-question {
        padding: 20px 15px;
    }

    .bva-question-text {
        font-size: 16px;
    }

    .bva-option {
        padding: 12px;
    }

    .bva-option-text {
        font-size: 14px;
    }

    .bva-navigation {
        flex-direction: column;
    }

    .bva-results-actions {
        flex-direction: column;
    }

    .bva-results-actions .bva-btn {
        width: 100%;
    }

    .bva-action-item {
        flex-direction: column;
        gap: 12px;
    }

    .bva-action-number {
        width: fit-content;
    }

    .bva-bridge-section {
        padding: 20px;
    }

    .bva-section-accordion-header {
        padding: 14px 16px;
    }
}

/* ============================================================================
   LANDING PAGE STYLES
   ============================================================================ */

.bva-landing {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.bva-hero {
    text-align: center;
    padding: 60px 20px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.bva-hero-logo {
    margin-bottom: 30px;
}

.bva-hero-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
}

.bva-hero-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.2;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bva-hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.bva-btn-large {
    padding: 18px 50px;
    font-size: 18px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bva-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.bva-hero .bva-btn-primary {
    background: white;
    color: #667eea;
}

.bva-hero .bva-btn-primary:hover {
    background: #f8f8f8;
}

.bva-hero-meta {
    margin: 25px 0 0;
    font-size: 14px;
    opacity: 0.85;
    letter-spacing: 0.5px;
}

/* Section Headings */
.bva-section-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 50px;
    color: var(--bva-text);
}

/* What You'll Discover */
.bva-discover {
    padding: 80px 20px;
    background: white;
}

.bva-discover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.bva-discover-card {
    text-align: center;
    padding: 30px 25px;
    border-radius: 12px;
    background: var(--bva-gray-100);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bva-discover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bva-discover-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bva-discover-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.bva-discover-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--bva-text);
}

.bva-discover-card p {
    font-size: 15px;
    color: var(--bva-text-light);
    margin: 0;
    line-height: 1.6;
}

/* Report Preview Section */
.bva-preview {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

.bva-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.bva-preview-card {
    text-align: center;
}

.bva-preview-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 8px;
    color: var(--bva-text);
}

.bva-preview-card p {
    font-size: 14px;
    color: var(--bva-text-light);
    margin: 0;
}

/* Mockup Styles */
.bva-preview-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.bva-preview-card:hover .bva-preview-mockup {
    transform: scale(1.02);
}

.bva-mockup-header {
    background: #e5e7eb;
    padding: 10px 15px;
    display: flex;
    gap: 6px;
}

.bva-mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
}

.bva-mockup-dot:first-child {
    background: #ef4444;
}

.bva-mockup-dot:nth-child(2) {
    background: #f59e0b;
}

.bva-mockup-dot:nth-child(3) {
    background: #10b981;
}

.bva-mockup-content {
    padding: 25px 20px;
}

/* Score Mockup */
.bva-preview-score .bva-mockup-content {
    padding: 30px 20px;
}

.bva-mockup-score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 8px solid #F39C12;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.bva-mockup-score-num {
    font-size: 42px;
    font-weight: 700;
    color: #F39C12;
}

.bva-mockup-score-pct {
    font-size: 20px;
    font-weight: 600;
    color: #F39C12;
}

.bva-mockup-score-label {
    font-size: 13px;
    color: var(--bva-text-light);
    margin-bottom: 12px;
}

.bva-mockup-tier {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.bva-mockup-tier-high {
    background: #27AE60;
}

.bva-mockup-tier-mid {
    background: #F39C12;
}

.bva-mockup-tier-low {
    background: #E74C3C;
}

/* Breakdown Mockup */
.bva-mockup-section {
    margin-bottom: 12px;
}

.bva-mockup-section:last-child {
    margin-bottom: 0;
}

.bva-mockup-section-header {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    margin-bottom: 4px;
    color: var(--bva-text);
}

.bva-mockup-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.bva-mockup-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.bva-mockup-bar-high {
    background: #27AE60;
}

.bva-mockup-bar-mid {
    background: #F39C12;
}

.bva-mockup-bar-low {
    background: #E74C3C;
}

/* PDF Mockup */
.bva-preview-pdf .bva-preview-mockup {
    background: transparent;
    box-shadow: none;
}

.bva-mockup-pdf {
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 25px 20px;
    position: relative;
    min-height: 200px;
}

.bva-mockup-pdf-header {
    height: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    margin-bottom: 20px;
}

.bva-mockup-pdf-score {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.bva-mockup-pdf-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid #F39C12;
    background: #FFF9E6;
}

.bva-mockup-pdf-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bva-mockup-pdf-line {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
}

.bva-mockup-pdf-line-short {
    width: 60%;
}

.bva-mockup-pdf-line-med {
    width: 80%;
}

.bva-mockup-pdf-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: #E74C3C;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}

.bva-mockup-pdf-icon svg {
    width: 16px;
    height: 16px;
}

/* Benefits Section */
.bva-benefits {
    padding: 80px 20px;
    background: white;
}

.bva-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.bva-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: var(--bva-gray-100);
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.bva-benefit-item:hover {
    transform: translateX(5px);
}

.bva-benefit-item svg {
    width: 24px;
    height: 24px;
    stroke: #667eea;
    flex-shrink: 0;
}

.bva-benefit-item span {
    font-size: 15px;
    color: var(--bva-text);
    line-height: 1.4;
}

/* How It Works */
.bva-how {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

.bva-how-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.bva-how-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
}

.bva-how-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.bva-how-step h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--bva-text);
}

.bva-how-step p {
    font-size: 14px;
    color: var(--bva-text-light);
    margin: 0;
    line-height: 1.5;
}

.bva-how-arrow {
    padding-top: 15px;
    color: #667eea;
    opacity: 0.5;
}

.bva-how-arrow svg {
    width: 30px;
    height: 30px;
}

/* Final CTA */
.bva-final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.bva-final-cta h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px;
}

.bva-final-cta p {
    font-size: 18px;
    margin: 0 0 35px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.bva-final-cta .bva-btn-primary {
    background: white;
    color: #667eea;
}

.bva-final-cta .bva-btn-primary:hover {
    background: #f8f8f8;
}

.bva-final-meta {
    margin: 20px 0 0;
    font-size: 14px;
    opacity: 0.8;
}

/* Landing Page Responsive */
@media (max-width: 900px) {
    .bva-discover-grid,
    .bva-preview-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .bva-benefits-grid {
        grid-template-columns: 1fr;
    }

    .bva-how-grid {
        flex-direction: column;
        align-items: center;
    }

    .bva-how-arrow {
        transform: rotate(90deg);
        padding: 0;
    }
}

@media (max-width: 600px) {
    .bva-hero {
        padding: 40px 20px 60px;
    }

    .bva-hero-title {
        font-size: 28px;
    }

    .bva-hero-subtitle {
        font-size: 16px;
    }

    .bva-section-heading {
        font-size: 24px;
    }

    .bva-discover,
    .bva-preview,
    .bva-benefits,
    .bva-how,
    .bva-final-cta {
        padding: 50px 20px;
    }

    .bva-btn-large {
        padding: 16px 35px;
        font-size: 16px;
    }

    .bva-final-cta h2 {
        font-size: 24px;
    }

    .bva-final-cta p {
        font-size: 15px;
    }
}
