/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== UTILITY CLASSES ===== */
.highlight {
    color: #0066cc;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: #0066cc;
    color: white;
}

.btn-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-secondary:hover {
    background: #f0f7ff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-cta-primary {
    background: #0066cc;
    color: white;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 700;
}

.btn-cta-primary:hover {
    background: #0052a3;
    transform: translateY(-3px);
}

.btn-cta-secondary {
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
    padding: 18px 36px;
    font-size: 18px;
}

.btn-cta-secondary:hover {
    background: #f0f7ff;
    transform: translateY(-3px);
}

.section-label {
    display: block;
    text-align: center;
    color: #0066cc;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

/* ===== LOADER ===== */
#app-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.passport-loader {
    position: relative;
    width: 120px;
    height: 120px;
}

.passport-loader img:first-child {
    width: 100%;
    height: 100%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1;
    }
    50% { 
        transform: scale(1.05); 
        opacity: 0.9;
    }
}

.plane {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    animation: simpleFly 3s ease-in-out infinite;
}

.plane img {
    width: 100%;
    height: 100%;
}

@keyframes simpleFly {
    0% { 
        transform: translate(-50%, -50%) rotate(0deg); 
    }
    25% { 
        transform: translate(-50%, -60%) rotate(90deg); 
    }
    50% { 
        transform: translate(-50%, -50%) rotate(180deg); 
    }
    75% { 
        transform: translate(-50%, -40%) rotate(270deg); 
    }
    100% { 
        transform: translate(-50%, -50%) rotate(360deg); 
    }
}

.loader-text {
    margin-top: 24px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

/* ===== HEADER ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1000;
    padding: 16px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #0066cc;
}

.cta-button {
    background: #0066cc;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    font-size: 24px;
    color: #333;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 12px 0;
    display: block;
}

.mobile-cta {
    background: #0066cc;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 8px;
    text-align: center;
    margin-top: 16px !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 140px 0 80px;
    background: #f8fafc;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.badge {
    display: inline-block;
    background: rgba(0, 102, 204, 0.1);
    color: #0066cc;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 100px 0;
    background: white;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.3;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #f8fafc;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 100px 0;
    background: #f8fafc;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.step {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: inline-flex;
    width: 60px;
    height: 60px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.step p {
    color: #666;
    line-height: 1.8;
}

.center-button {
    text-align: center;
}

/* ===== INCLUDED SECTION ===== */
.included-section {
    padding: 100px 0;
    background: white;
}

.included-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.included-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid #e2e8f0;
}

.included-card.positive {
    border-color: #c6f6d5;
    background: #f0fff4;
}

.included-card.negative {
    border-color: #fed7d7;
    background: #fff5f5;
}

.included-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.included-card ul {
    list-style: none;
    padding: 0;
}

.included-card li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.included-card li:last-child {
    border-bottom: none;
}

.transparency-note {
    text-align: center;
    padding: 20px;
    background: #f0f7ff;
    border-radius: 12px;
    border-left: 4px solid #0066cc;
}

.transparency-note p {
    color: #333;
    margin: 0;
    font-size: 1rem;
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: 100px 0;
    background: #f8fafc;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.trust-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.trust-card p {
    color: #666;
    line-height: 1.6;
}

/* ===== COMPARISON SECTION ===== */
.comparison-section {
    padding: 100px 0;
    background: white;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.comparison-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid #e2e8f0;
}

.comparison-card.highlight {
    border-color: #0066cc;
    background: #f0f7ff;
}

.comparison-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-card li:last-child {
    border-bottom: none;
}

/* ===== NOTICE ===== */
.notice {
    background: #fffaf0;
    padding: 40px 0;
    border-top: 2px solid #ffd700;
    border-bottom: 2px solid #ffd700;
}

.notice .container {
    max-width: 800px;
}

.notice p {
    color: #333;
    font-size: 1.125rem;
    line-height: 1.8;
    text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 100px 0;
    background: #f8fafc;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: #0066cc;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-card blockquote {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 24px;
    font-style: italic;
    padding-top: 20px;
}

.author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar {
    width: 48px;
    height: 48px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.author-info strong {
    display: block;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info span {
    display: block;
    color: #666;
    font-size: 0.875rem;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: white;
    border: 2px solid #e2e8f0;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    border-color: #0066cc;
    background: #f0f7ff;
}

.faq-icon {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    background: white;
    border: 2px solid #e2e8f0;
    border-top: none;
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 24px;
    max-height: 500px;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 100px 20px;
    background: #0066cc;
    color: white;
    text-align: center;
}

.final-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.cta-subtitle {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 48px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.final-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.guarantee {
    display: inline-block;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.guarantee p {
    color: white;
    font-size: 1rem;
    margin: 0;
}

/* ===== FOOTER ===== */
.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding-top: 60px;
}

.footer-top {
    background: #0052a3;
    padding: 40px 20px;
    text-align: center;
}

.footer-top p {
    font-size: 1.125rem;
    margin-bottom: 0;
}

.footer-top a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding: 60px 0;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #999;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    width: fit-content;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-column h4 {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.link-column ul {
    list-style: none;
    padding: 0;
}

.link-column li {
    margin-bottom: 12px;
}

.link-column a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.link-column a:hover {
    color: #0066cc;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 40px 0;
    text-align: center;
    color: #666;
    font-size: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-bottom a {
    color: #0066cc;
    text-decoration: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    /* Header */
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        display: none;
    }
    
    .cta-button {
        display: none;
    }
    
    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    /* Sections */
    .benefits-section h2,
    .process-section h2,
    .included-section h2,
    .trust-section h2,
    .comparison-section h2,
    .testimonials-section h2,
    .faq-section h2,
    .final-cta h3 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .benefits-section h2,
    .process-section h2,
    .included-section h2,
    .trust-section h2,
    .comparison-section h2,
    .testimonials-section h2,
    .faq-section h2,
    .final-cta h3 {
        font-size: 1.5rem;
    }
    
    .subtitle,
    .section-subtitle,
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}