/* Elite Performance Mastery - Hybrid Pricing Styles (Cards + Table) */

:root {
    /* Navy & Copper Theme */
    --primary-navy: #1a237e;
    --navy: #1a237e;
    --deep-navy: #0d1854;
    --light-navy: #3949ab;
    --copper: #b87333;
    --copper-light: #d4985c;
    --copper-dark: #965c2a;
    --gold: #ffd700;
    --silver: #c0c0c0;
    --platinum: #4a148c;
    --purple: #6a1b9a;
    --purple-light: #8e24aa;
    --purple-dark: #4a148c;
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f5f5;
    --gray: #666666;
    --dark-gray: #1a1a1a;
    --green: #4caf50;
    --red: #f44336;
    
    /* Background colors */
    --bg-white: #ffffff;
    --bg-light-cream: #faf8f5;
    --text-dark: #333333;
    --text-gray: #666666;
    --primary-navy-dark: #0d1854;
}

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: var(--off-white);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-navy);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 0.5s ease-out 2s forwards;
}

.hexagon-loader {
    display: flex;
    gap: 10px;
}

.hexagon {
    width: 30px;
    height: 30px;
    background: var(--copper);
    animation: pulse 1.5s ease-in-out infinite;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.hexagon:nth-child(2) { animation-delay: 0.2s; }
.hexagon:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

@keyframes fadeOut {
    to { opacity: 0; visibility: hidden; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 35, 126, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--copper);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--copper);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--copper);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.cta-button {
    background: var(--copper);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--copper-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 115, 51, 0.3);
}

/* Hero Section */
.pricing-hero {
    margin-top: 80px;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--deep-navy) 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, var(--copper) 35px, var(--copper) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, var(--copper) 35px, var(--copper) 70px);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    color: var(--white);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--copper-light);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.8;
}

.scarcity-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--copper);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    margin: 0 auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 16px;
}

.pulse {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0 100px;
    background: var(--off-white);
}

/* Package Headers (Card Style) */
.package-headers {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin-bottom: 0;
    z-index: 100;
    background: var(--off-white);
    padding: 20px 0;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-collapse: separate;
    border-spacing: 23px 0;
}

.header-spacer {
    display: table-cell;
    width: 300px;
    /* Empty space for alignment with table */
}

.package-header-card {
    display: table-cell;
    background: var(--white);
    border-radius: 20px;
    padding: 30px 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    transform: translateY(0px);
    transition: all 0.3s;
    vertical-align: bottom;
}

.package-header-card:hover {
    transform: translateY(0px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.package-header-card.silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #808080 100%);
    color: var(--white);
}

.package-header-card.silver .package-name,
.package-header-card.silver .amount {
    color: var(--white);
}

.package-header-card.gold {
    background: linear-gradient(135deg, var(--navy) 0%, var(--deep-navy) 100%);
    color: var(--white);
    position: relative;
    border: 3px solid var(--copper);
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
    transform: scale(1.05);
}

.package-header-card.gold .package-name,
.package-header-card.gold .amount {
    color: var(--white);
}

.package-header-card.platinum {
    background: linear-gradient(135deg, var(--gold) 0%, #ffb700 100%);
    color: var(--dark-gray);
    border: 2px solid rgba(255, 215, 0, 0.6);
}

.package-header-card.platinum .package-name,
.package-header-card.platinum .amount {
    color: var(--dark-gray);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.package-header-card.platinum .package-badge {
    background: rgba(26, 26, 26, 0.9);
    color: var(--gold);
    font-weight: 600;
}

.package-header-card.featured {
    transform: translateY(-15px) scale(1.08);
    box-shadow:
            0 15px 50px rgba(0, 0, 128, 0.35),
            0 5px 20px rgba(0, 0, 128, 0.25);
    position: relative;
    overflow: visible;
    padding: 45px 18px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.5);
    border: 2px solid var(--white);
    animation: pulse-badge-desktop 3s infinite;
    z-index: 10;
}

@keyframes pulse-badge-desktop {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(243, 156, 18, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(243, 156, 18, 0.7);
    }
}

/* Mobile popular badge styling */
@media (max-width: 768px) {
    .mobile-header {
        padding: 40px 25px 30px 25px;
    }
    
    .mobile-header .popular-badge {
        position: absolute;
        top: 5px;
        right: 15px;
        background: linear-gradient(135deg, #e67e22, #d35400);
        color: var(--white);
        padding: 10px 22px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 900;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        box-shadow: 0 5px 18px rgba(230, 126, 34, 0.6);
        animation: pulse-badge-mobile 2.5s infinite;
        border: 3px solid var(--white);
        z-index: 10;
    }
    
    @keyframes pulse-badge-mobile {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 5px 18px rgba(230, 126, 34, 0.6);
        }
        50% {
            transform: scale(1.08);
            box-shadow: 0 7px 25px rgba(230, 126, 34, 0.8);
        }
    }
}

.package-badge {
    display: inline-block;
    background: var(--light-gray);
    color: var(--primary-navy);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.package-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-navy);
    margin: 10px 0;
}

.package-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin: 15px 0;
}

.currency {
    font-size: 18px;
    margin-right: 3px;
    color: var(--copper);
}

.amount {
    font-size: 36px;
    font-weight: bold;
    color: var(--copper);
}

.payment-option {
    font-size: 13px;
    color: var(--gray);
    margin: 8px 0;
}

.package-tagline {
    font-size: 14px;
    color: var(--dark-gray);
    font-style: italic;
    margin: 10px 0;
}

.spots-left {
    background: var(--copper);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    margin-top: 10px;
    display: inline-block;
    font-weight: 600;
}

/* Comparison Container & Table */
.comparison-container {
    background: var(--white);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.08);
    overflow: visible;
    margin-top: -1px;
    position: relative;
}

/* Top and bottom borders for gold column */
.comparison-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(300px + 23px + ((100% - 300px - 46px) / 3));
    width: calc((100% - 300px - 46px) / 3);
    height: 2px;
    background: rgba(255, 215, 0, 0.4);
    z-index: 10;
}

.comparison-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(300px + 23px + ((100% - 300px - 46px) / 3));
    width: calc((100% - 300px - 46px) / 3);
    height: 2px;
    background: rgba(255, 215, 0, 0.4);
    z-index: 10;
}

.hybrid-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 23px 0;
    background: var(--white);
    table-layout: fixed;
}

/* Section Headers */
.section-header {
    background: var(--light-gray);
}

.section-header td {
    padding: 25px 20px 15px;
    height: 50px !important;
    vertical-align: middle !important;
    line-height: 1.2;
    text-align: center;
    border-bottom: 2px solid var(--copper);
    background: var(--light-gray) !important;
}

.section-title {
    width: 100%;
}

.section-header .section-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Ensure package headers display correctly */
.package-headers {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.package-header-card {
    display: table-cell;
    text-align: center;
}

.section-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: var(--copper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-divider {
    background: var(--light-gray) !important;
    height: 50px !important;
    vertical-align: middle !important;
    padding: 0 !important;
    border: none !important;
}

.section-divider.silver-col {
    border-bottom: 2px solid rgba(192, 192, 192, 0.6);
}

.section-divider.gold-col {
    border-bottom: 2px solid rgba(255, 215, 0, 0.6);
}

.section-divider.platinum-col {
    border-bottom: 2px solid rgba(229, 228, 226, 0.6);
}

/* Column Styling - White content with colored headers only */
.silver-col {
    background: var(--white);
    position: relative;
    transition: all 0.3s ease;
}

.gold-col {
    /*background: linear-gradient(135deg, var(--navy) 0%, var(--deep-navy) 100%);*/
    /*color: var(--white);*/
    color: var(--dark-gray);
    position: relative;
    transition: all 0.3s ease;
    /*border-left: 2px solid var(--copper);*/
    /*border-right: 2px solid var(--copper);*/
}

.gold-col.featured {
    /*background: linear-gradient(135deg, var(--navy) 0%, var(--deep-navy) 100%);*/
    /*color: var(--white);*/
    color: var(--dark-gray);
    /*border-left: 2px solid var(--copper);*/
    /*border-right: 2px solid var(--copper);*/
    /*box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);*/
}

.platinum-col {
    /*background: linear-gradient(135deg, var(--gold) 0%, #ffb700 100%);*/
    color: var(--dark-gray);
    position: relative;
    transition: all 0.3s ease;
    /*border-left: 2px solid rgba(255, 215, 0, 0.6);*/
    /*border-right: 2px solid rgba(255, 215, 0, 0.6);*/
}

/* Feature Rows */
.feature-row {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
}

.feature-row:hover {
    background: rgba(184, 115, 51, 0.02);
}

.feature-row:hover .silver-col {
    background: var(--white);
}

.feature-row:hover .gold-col {
    background: rgba(255, 215, 0, 0.02);
}

.feature-row:hover .platinum-col {
    background: var(--white);
}

.feature-name {
    padding: 12px 20px;
    text-align: left;
    vertical-align: top;
    width: 300px;
}

.feature-name strong {
    font-size: 15px;
    color: var(--primary-navy);
    display: block;
    margin-bottom: 3px;
}

.feature-desc {
    font-size: 12px;
    color: var(--gray);
    font-style: italic;
}

.feature-value {
    padding: 12px 15px;
    text-align: center;
    vertical-align: middle;
}

.value {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-gray);
    display: block;
    line-height: 1.3;
}

.value.highlight {
    color: var(--copper);
    font-size: 15px;
}

.sub-value {
    font-size: 11px;
    color: var(--gray);
    display: block;
    margin-top: 2px;
}

.included {
    color: var(--green);
    font-weight: 700;
    font-size: 14px;
}

.not-included {
    color: red;
    font-size: 18px;
    font-weight: bold;
}

/* Total Value Row */
.total-value-row {
    background: var(--light-gray);
    border-top: 3px solid var(--copper);
    border-bottom: 3px solid var(--copper);
}

.total-label {
    padding: 25px 20px;
    text-align: left;
    width: 300px;
}

.total-label strong {
    font-size: 18px;
    color: var(--primary-navy);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.total-value {
    padding: 25px 15px;
    text-align: center;
}

.total-value.silver-col {
    background: var(--white);
}

.total-value.gold-col {
    background: rgba(255, 215, 0, 0.05);
    position: relative;
    border-left: 2px solid rgba(255, 215, 0, 0.4);
    border-right: 2px solid rgba(255, 215, 0, 0.4);
}

.total-value.gold-col::before {
    content: '★ BESTE WAARDE ★';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, #ffb700 100%);
    color: var(--dark-gray);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.5);
}

.total-value.platinum-col {
    background: var(--white);
}

.total-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--copper);
}

/* CTA Row */
.cta-row {
    background: var(--white);
    border: none;
}

.cta-spacer {
    padding: 30px 20px;
    width: 300px;
}

.cta-cell {
    padding: 30px 15px;
    text-align: center;
}

.cta-cell.silver-col {
    background: var(--white);
}

.cta-cell.gold-col {
    background: var(--white);
    position: relative;
    border-left: 2px solid rgba(255, 215, 0, 0.4);
    border-right: 2px solid rgba(255, 215, 0, 0.4);
}

.cta-cell.platinum-col {
    background: var(--white);
}

.cta-btn {
    display: inline-block;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s;
    min-width: 180px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.btn-text {
    display: block;
    margin-bottom: 3px;
}

.btn-price {
    display: block;
    font-size: 16px;
    font-weight: 800;
}

.silver-btn {
    background: linear-gradient(135deg, #808080, #a8a8a8);
    color: var(--white);
    font-weight: 700;
}

.gold-btn {
    background: linear-gradient(135deg, var(--gold), #ffb700, var(--gold));
    color: var(--dark-gray);
    transform: scale(1.08);
    border: 2px solid rgba(255, 215, 0, 0.8);
    box-shadow:
        0 0 25px rgba(255, 215, 0, 0.45),
        0 8px 30px rgba(255, 215, 0, 0.35),
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
    font-weight: 800;
    position: relative;
    overflow: hidden;
}

.gold-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.gold-btn:hover::before {
    left: 100%;
}

.platinum-btn {
    background: linear-gradient(135deg, var(--platinum), #8ba2b8, var(--platinum));
    color: var(--dark-gray);
    border: 2px solid rgba(44, 62, 80, 0.4);
    font-weight: 700;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.gold-btn:hover {
    transform: scale(1.10) translateY(-5px);
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.65),
        0 15px 45px rgba(255, 215, 0, 0.45);
    border: 2px solid rgba(255, 215, 0, 1);
}

/* On-Page Navigation */
.page-navigation {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    border-bottom: 1px solid rgba(184, 115, 51, 0.1);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.nav-btn {
    display: inline-block;
    padding: 18px 35px;
    background: var(--white);
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.5s;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.3);
}

.nav-btn.active {
    background: var(--copper);
    border-color: var(--copper);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(184, 115, 51, 0.4);
    transform: translateY(-2px);
}

.nav-btn.active:hover {
    background: var(--copper-light);
    border-color: var(--copper-light);
    box-shadow: 0 8px 25px rgba(184, 115, 51, 0.5);
}

/* Guarantee Section - Moved to garantie-styles.css */

/* Testimonials Preview Section */
.testimonials-preview {
    padding: 80px 0;
    background: var(--off-white);
}

.testimonials-title {
    font-size: 42px;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 50px;
    font-weight: 400;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.testimonial-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--copper), var(--copper-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-navy), var(--copper));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    overflow: hidden;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.testimonial-info h4 {
    margin: 0;
    color: var(--primary-navy);
    font-size: 18px;
    font-weight: 600;
}

.testimonial-info .profession {
    font-size: 14px;
    color: var(--gray);
    margin-top: 2px;
}

.stars {
    color: #ffd700;
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 15px 0;
    font-size: 16px;
}

.result-highlight {
    background: linear-gradient(135deg, rgba(184, 115, 51, 0.1), rgba(184, 115, 51, 0.05));
    border: 2px solid var(--copper);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    font-size: 14px;
}

.result-highlight strong {
    color: var(--copper);
    font-weight: 600;
    margin-right: 5px;
}

.testimonials-cta {
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
}

/* Intake Disclaimer Section */
.intake-disclaimer {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--light-navy) 100%);
}

.disclaimer-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.disclaimer-box h3 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
}

.disclaimer-box p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.disclaimer-box .btn-primary {
    background: var(--copper);
    color: var(--white);
    border: none;
    padding: 20px 50px;
    font-size: 20px;
}

.disclaimer-box .btn-primary:hover {
    background: var(--copper-light);
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta-buttons .btn-secondary {
    background: var(--white);
    border: 2px solid var(--copper);
    color: var(--copper);
}

.cta-buttons .btn-secondary:hover {
    background: var(--copper);
    color: var(--white);
}

.final-cta h2 {
    font-size: 48px;
    color: var(--primary-navy);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.qualification-box {
    max-width: 600px;
    margin: 0 auto 60px;
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.qualification-box h3 {
    font-size: 24px;
    color: var(--primary-navy);
    margin-bottom: 25px;
}

.qualification-box ul {
    list-style: none;
    text-align: left;
}

.qualification-box li {
    padding: 10px 0;
    font-size: 17px;
    color: var(--dark-gray);
}

.cta-buttons {
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 20px 60px;
    background: var(--copper);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(184, 115, 51, 0.3);
}

.btn-primary:hover {
    background: var(--copper-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(184, 115, 51, 0.4);
}

.urgency-text {
    margin-top: 20px;
    color: var(--copper);
    font-size: 16px;
    font-weight: 600;
    animation: pulse-text 2s infinite;
}

@keyframes pulse-text {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.contact-info {
    margin-top: 40px;
}

.contact-info p {
    font-size: 16px;
    color: var(--gray);
    margin: 5px 0;
}

.office-hours {
    font-size: 14px !important;
    color: var(--gray) !important;
}

/* Footer */
.footer {
    background: var(--deep-navy);
    padding: 40px 0;
    text-align: center;
}

.footer p {
    color: var(--white);
    font-size: 14px;
    margin: 10px 0;
}

.footer-tagline {
    color: var(--copper-light) !important;
    font-style: italic;
    font-size: 16px !important;
}

/* Mobile Package Selector */
.mobile-package-selector {
    display: none;
    text-align: center;
    margin-bottom: 30px;
}

.mobile-package-selector h2 {
    color: var(--primary-navy);
    margin-bottom: 20px;
    font-size: 28px;
}

.package-tabs {
    display: flex;
    background: var(--white);
    border-radius: 50px;
    padding: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 300px;
    margin: 0 auto;
}

.tab-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--gray);
}

.tab-btn.active {
    background: var(--copper);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(184, 115, 51, 0.3);
}

/* Mobile Cards */
.mobile-cards {
    display: none;
}

.mobile-card {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    display: none;
}

.mobile-card.active {
    display: block;
}

.mobile-header {
    padding: 30px 25px;
    text-align: center;
    position: relative;
}

.mobile-header.silver {
    background: linear-gradient(135deg, var(--silver), #a8a8a8);
}

.mobile-header.gold {
    background: linear-gradient(135deg, var(--navy) 0%, var(--deep-navy) 100%);
    color: var(--white);
    border: 3px solid var(--copper);
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
}

.mobile-header.gold h3 {
    color: var(--white);
}

.mobile-header.gold .mobile-price {
    color: var(--white);
}

.mobile-header.gold p {
    color: var(--white);
    opacity: 0.9;
}

.mobile-header.platinum {
    background: linear-gradient(135deg, var(--gold) 0%, #ffb700 100%);
    color: var(--dark-gray);
    border: 2px solid rgba(255, 215, 0, 0.6);
}

.mobile-header.platinum h3 {
    color: var(--dark-gray);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.mobile-header.platinum .mobile-price {
    color: var(--dark-gray);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.mobile-header h3 {
    font-size: 22px;
    margin: 10px 0;
    color: var(--dark-gray);
    font-weight: 700;
}

.mobile-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-gray);
    margin: 10px 0;
}

.mobile-header p {
    font-size: 14px;
    color: var(--dark-gray);
    opacity: 0.9;
    margin: 5px 0;
}

.spots-mobile {
    background: rgba(255,255,255,0.3);
    padding: 4px 12px;
    border-radius: 15px;
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
}

.mobile-features {
    padding: 25px;
}

.mobile-feature-group {
    margin-bottom: 25px;
}

.mobile-feature-group h4 {
    font-size: 16px;
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--copper);
}

.mobile-feature-group ul {
    list-style: none;
}

.mobile-feature-group li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--dark-gray);
}

.mobile-feature-group li span:first-child {
    margin-right: 10px;
    min-width: 20px;
    text-align: center;
    font-size: 16px;
}

.mobile-value {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px dashed var(--copper);
}

.mobile-value p {
    font-size: 16px;
    color: var(--gray);
}

.mobile-value strong {
    color: var(--copper);
    font-size: 20px;
    font-weight: 800;
}

.mobile-cta {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 18px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    font-size: 16px;
}

.mobile-cta.silver-btn {
    background: linear-gradient(135deg, var(--silver), #a8a8a8);
    color: var(--dark-gray);
}

.mobile-cta.gold-btn {
    background: var(--copper);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.3);
}

.mobile-cta.platinum-btn {
    background: linear-gradient(135deg, var(--gold), #ffb700);
    color: var(--dark-gray);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .feature-name {
        width: 280px;
    }
    
    .total-label, .cta-spacer {
        width: 280px;
    }
}

@media (max-width: 992px) {
    .package-header-card {
        padding: 25px 15px;
    }
    
    .feature-name {
        width: 250px;
        padding: 15px;
    }
    
    .feature-value {
        padding: 15px 10px;
    }
    
    .total-label, .cta-spacer {
        width: 250px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    /* Guarantee styles moved to garantie-styles.css */
}

@media (max-width: 768px) {
    /* Hide desktop elements */
    .package-headers {
        display: none !important;
    }
    
    .hybrid-comparison-table {
        display: none !important;
    }
    
    /* Show mobile documentary addon */
    .mobile-documentary-addon {
        display: block !important;
    }
    
    .comparison-container {
        display: none !important;
    }
    
    .nav-links {
        display: none;
    }
    
    /* Show mobile elements */
    .mobile-package-selector {
        display: block;
    }
    
    .mobile-cards {
        display: block;
    }
    
    /* Mobile typography adjustments */
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Guarantee styles moved to garantie-styles.css */
    
    /* Testimonials mobile */
    .testimonial-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonials-title {
        font-size: 32px;
        padding: 0 20px;
    }
    
    .testimonials-subtitle {
        font-size: 16px;
        padding: 0 20px;
        margin-bottom: 30px;
    }
    
    .testimonial-avatar {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .testimonial-info h4 {
        font-size: 16px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .result-highlight {
        font-size: 13px;
        padding: 12px;
    }
    
    /* Disclaimer mobile */
    .disclaimer-box h3 {
        font-size: 28px;
    }
    
    .disclaimer-box p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .disclaimer-box .btn-primary {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    /* CTA mobile */
    .cta-buttons {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    /* Page Navigation mobile */
    .page-navigation {
        padding: 30px 0;
        position: relative;
    }
    
    .nav-buttons {
        gap: 20px;
        padding: 0 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .nav-btn {
        padding: 15px 30px;
        min-width: 200px;
        font-size: 16px;
    }
    
    .final-cta h2 {
        font-size: 36px;
    }
    
    .btn-primary {
        padding: 15px 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    /* Overflow prevention */
    body {
        overflow-x: hidden;
    }
    
    .container, * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Touch target improvements */
    a, button, .btn-primary, .btn-secondary, .nav-btn {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .scarcity-badge {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    /* Improved mobile spacing */
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 2rem 0;
    }
}

@media (max-width: 375px) {
    /* Very small mobile adjustments */
    .hero-title {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .nav-btn {
        min-width: auto;
        width: 100%;
        max-width: 250px;
    }
}