/* PDF Page Redesign Styles - Complete */

/* Global Styles */
.pdf-page-redesigned {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.hero-split {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f0f3f7 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge-row {
    margin-bottom: 1rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(13, 124, 102, 0.1);
    color: #0D7C66;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.text-gradient {
    background: linear-gradient(135deg, #0F4C81 0%, #1E6BA8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.value-props {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.value-item svg {
    color: #0D7C66;
    flex-shrink: 0;
}

.hero-cta-section {
    margin-bottom: 2rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0F4C81 0%, #1E6BA8 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(15, 76, 129, 0.25);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 76, 129, 0.35);
    text-decoration: none;
}

.price-teaser {
    margin-top: 0.75rem;
    color: #666;
}

.social-proof-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-avatars {
    display: flex;
    align-items: center;
}

.customer-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -10px;
}

.customer-avatars img:first-child {
    margin-left: 0;
}

.more-customers {
    margin-left: 0.5rem;
    background: #0F4C81;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.customer-text {
    color: #666;
    font-size: 0.875rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.pdf-preview-stack {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pdf-page-preview {
    position: absolute;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 1.5rem;
    width: 250px;
    height: 320px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid #e0e0e0;
}

.pdf-page-preview.page-1 {
    top: 20px;
    left: 20px;
    z-index: 3;
    transform: rotate(-8deg) translateZ(0);
    animation: floatSlow 6s ease-in-out infinite;
}

.pdf-page-preview.page-2 {
    top: 60px;
    left: 100px;
    z-index: 2;
    transform: rotate(-3deg) translateZ(0);
    animation: floatSlow 6s ease-in-out infinite 2s;
}

.pdf-page-preview.page-3 {
    top: 100px;
    left: 180px;
    z-index: 1;
    transform: rotate(2deg) translateZ(0);
    animation: floatSlow 6s ease-in-out infinite 4s;
}

.pdf-page-preview:hover {
    transform: rotate(0deg) scale(1.08) translateZ(0);
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

@keyframes floatSlow {
    0%, 100% { transform: rotate(var(--rotation)) translateY(0px) translateZ(0); }
    50% { transform: rotate(var(--rotation)) translateY(-8px) translateZ(0); }
}

.pdf-page-preview.page-1 {
    --rotation: -8deg;
}

.pdf-page-preview.page-2 {
    --rotation: -3deg;
}

.pdf-page-preview.page-3 {
    --rotation: 2deg;
}

.pdf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
    font-size: 0.875rem;
    color: #666;
}

.pdf-content h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #333;
}

.pattern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.pattern-box {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: 2px solid #ddd;
    border-radius: 4px;
}

.pattern-box.filled {
    background: #0F4C81;
    border-color: #0F4C81;
}

.explanation-lines .line {
    height: 8px;
    background: #e0e0e0;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.explanation-lines .line.short {
    width: 60%;
}

.tip-list .tip-item {
    height: 8px;
    background: #e0e0e0;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.success-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.success-badge.floating {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.success-badge svg {
    color: #0D7C66;
}

.success-badge strong {
    display: block;
    font-size: 0.875rem;
    color: #666;
}

.success-badge span {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0D7C66;
}

/* Results Bar */
.results-bar {
    background: #0F4C81;
    color: white;
    padding: 40px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.result-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Sample Section */
.sample-section {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #666;
    font-size: 1.125rem;
}

.sample-interactive {
    max-width: 800px;
    margin: 0 auto;
}

.question-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: #0F4C81;
    color: #0F4C81;
}

.tab-btn.active {
    background: #0F4C81;
    color: white;
    border-color: #0F4C81;
}

.question-panel {
    display: none;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.question-panel.active {
    display: block;
}

.question-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.question-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.answer-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.answer-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.answer-option:hover {
    border-color: #0F4C81;
    background: white;
}

.answer-option input[type="radio"] {
    width: 20px;
    height: 20px;
}

.option-text {
    flex: 1;
}

.check-answer-btn {
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    background: #0D7C66;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.check-answer-btn:hover {
    background: #0a6354;
    transform: translateY(-1px);
}

.answer-feedback {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f0f9ff;
    border: 1px solid #b3e5fc;
    border-radius: 8px;
}

.correct-answer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #0D7C66;
}

.explanation {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.upgrade-prompt {
    font-weight: 600;
    color: #0F4C81;
}

/* Spatial Sequence Styles */
.spatial-sequence {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.shape-item {
    font-size: 2rem;
    padding: 0.5rem;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
}

/* What's Included Section */
.included-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.included-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8f4fd 0%, #dbeafe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon svg {
    color: #0F4C81;
}

.included-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.included-card p {
    color: #666;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #0F4C81 0%, #1E6BA8 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(15, 76, 129, 0.2);
}

.quote-icon {
    font-size: 3rem;
    color: rgba(15, 76, 129, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-card.featured .quote-icon {
    color: rgba(255, 255, 255, 0.2);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-card.featured .testimonial-text {
    color: white;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: #666;
}

.testimonial-card.featured .testimonial-author span {
    color: rgba(255, 255, 255, 0.8);
}

/* Pricing Section */
.pricing-modern {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: #666;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.limited-time-offer {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff3cd;
    color: #856404;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
}

.limited-time-offer svg {
    animation: rotate 4s linear infinite;
}

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

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.price-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.price-card.popular {
    border-color: #0F4C81;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(15, 76, 129, 0.2);
}

.popular-ribbon {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #0F4C81;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.savings-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #0D7C66;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.package-name {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.price-display {
    text-align: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0F4C81;
}

.cents {
    font-size: 1.5rem;
    vertical-align: top;
}

.original-price {
    text-align: center;
    color: #999;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-list svg {
    color: #0D7C66;
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    border: 2px solid #0F4C81;
    background: white;
    color: #0F4C81;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    background: #0F4C81;
    color: white;
    text-decoration: none;
}

.btn-buy.btn-popular {
    background: #0F4C81;
    color: white;
}

.btn-buy.btn-popular:hover {
    background: #0a3660;
}

.delivery-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #666;
}

.money-back-guarantee {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 600px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: #f0f9ff;
    border-radius: 12px;
    border: 1px solid #b3e5fc;
}

.money-back-guarantee h4 {
    margin-bottom: 0.5rem;
}

.money-back-guarantee p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #0F4C81 0%, #1E6BA8 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-final-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #0F4C81;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-final-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    text-decoration: none;
}

.final-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .spatial-sequence {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .shape-item {
        font-size: 1.5rem;
        min-width: 50px;
        min-height: 50px;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .question-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .included-grid,
    .testimonials-carousel {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.featured {
        transform: none;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .price-card.popular {
        transform: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .money-back-guarantee {
        flex-direction: column;
        text-align: center;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .result-number {
        font-size: 2rem;
    }
}