/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --navy-900: #0a1628;
    --navy-800: #152a47;
    --navy-700: #1e3a5f;
    --gold-500: #c9a35b;
    --gold-400: #d4b170;
    --grey-50: #f8f9fa;
    --grey-100: #e9ecef;
    --grey-200: #dee2e6;
    --grey-700: #495057;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--navy-900);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== HERO ==================== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px 0 70px;
    background: linear-gradient(180deg, var(--grey-50) 0%, var(--white) 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    margin: 32px 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(10, 22, 40, 0.15);
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.2;
    margin-bottom: 0;
}

.hero .subline {
    font-size: 20px;
    color: var(--grey-700);
    margin-bottom: 32px;
    max-width: 600px;
}

.cta-button {
    background: var(--navy-800);
    color: white;
    border: none;
    padding: 18px 48px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(10, 22, 40, 0.15);
}

.cta-button:hover {
    background: var(--navy-900);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 22, 40, 0.25);
}

.micro-text {
    font-size: 15px;
    color: var(--grey-700);
    margin-top: 20px;
}

/* ==================== SECTIONS ==================== */
section {
    padding: 70px 0;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 40px;
    text-align: center;
}

/* ==================== WHY CHECK ==================== */
.why-check {
    background: var(--white);
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.question-card {
    background: var(--grey-50);
    padding: 28px;
    border-radius: 8px;
    border-left: 3px solid var(--gold-500);
    transition: all 0.3s ease;
}

.question-card:hover {
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.question-card p {
    font-size: 17px;
    color: var(--navy-900);
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.conclusion {
    text-align: center;
    font-size: 18px;
    color: var(--grey-700);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==================== VALUE ==================== */
.value {
    background: var(--navy-900);
    color: white;
}

.value h2 {
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.value-card {
    background: var(--navy-800);
    padding: 28px;
    border-radius: 8px;
    border-left: 3px solid var(--gold-500);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: var(--navy-700);
    transform: translateY(-2px);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.value-card h3 {
    color: white;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
}

.value-card p {
    font-size: 17px;
    color: white;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* ==================== TRUST ==================== */
.trust {
    background: var(--grey-50);
    text-align: center;
    padding: 60px 0;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-badge {
    text-align: center;
}

.trust-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(21, 42, 71, 0.15);
    color: white;
}

.trust-badge p {
    font-size: 16px;
    color: var(--navy-900);
    font-weight: 600;
    margin: 0;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
}

.cta-section .cta-button {
    background: white;
    color: var(--navy-800);
}

.cta-section .cta-button:hover {
    background: var(--gold-400);
    color: var(--navy-900);
}

.cta-section .micro-text {
    color: rgba(255, 255, 255, 0.8);
}

/* ==================== FINAL CTA ==================== */
.final-cta {
    background: var(--white);
    text-align: center;
    padding: 80px 0;
}

.final-cta h2 {
    margin-bottom: 32px;
}

.final-cta-image {
    max-width: 550px;
    height: auto;
    margin: 40px auto;
    display: block;
    opacity: 0.9;
}

.final-cta .cta-button {
    margin: 0 auto;
}

/* ==================== FAQ ==================== */
.faq {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: var(--grey-50);
    padding: 28px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    color: var(--navy-900);
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}

.faq-item p {
    font-size: 16px;
    color: var(--grey-700);
    line-height: 1.6;
    margin: 0;
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--navy-900);
    color: white;
    padding: 40px 0;
    text-align: center;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 20px;
    font-size: 15px;
    transition: color 0.2s;
}

footer a:hover {
    color: white;
}

/* ==================== STICKY CTA ==================== */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 16px 20px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
    z-index: 1000;
}

.sticky-cta .cta-button {
    width: 100%;
}

/* ==================== QUIZ ==================== */
.quiz-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.quiz-content {
    background: white;
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.quiz-header {
    margin-bottom: 48px;
}

.progress-bar {
    height: 6px;
    background: var(--grey-200);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--navy-800) 0%, var(--gold-500) 100%);
    transition: width 0.4s ease;
}

.progress-text {
    font-size: 14px;
    color: var(--grey-700);
    text-align: center;
    font-weight: 500;
}

.quiz-question h3 {
    font-size: 24px;
    color: var(--navy-900);
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 600;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.quiz-option {
    background: var(--grey-100);
    border: 2px solid var(--grey-200);
    padding: 18px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
    color: var(--navy-900);
}

.quiz-option:hover {
    border-color: var(--gold-500);
    background: white;
}

.quiz-option.selected {
    background: var(--navy-800);
    color: white;
    border-color: var(--navy-800);
}

.quiz-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
}

.quiz-nav button {
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-back {
    background: transparent;
    border: 2px solid var(--grey-200);
    color: var(--navy-900);
}

.btn-back:hover {
    border-color: var(--navy-800);
}

.btn-next {
    background: var(--navy-800);
    border: none;
    color: white;
}

.btn-next:hover {
    background: var(--navy-900);
}

.btn-next:disabled {
    background: var(--grey-200);
    cursor: not-allowed;
    opacity: 0.6;
}

/* ==================== FORM INPUTS (GRAU!) ==================== */
input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--grey-200);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.2s;
    background: var(--grey-100);
    color: var(--navy-900);
}

input:focus {
    outline: none;
    border-color: var(--navy-800);
    background: white;
    box-shadow: 0 0 0 3px rgba(21, 42, 71, 0.1);
}

input::placeholder {
    color: var(--grey-700);
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--navy-900);
    font-size: 15px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-image {
        max-width: 400px;
        margin: 24px 0;
    }
    
    .final-cta-image {
        max-width: 450px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .questions-grid,
    .value-grid,
    .faq-grid,
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .sticky-cta {
        display: block;
    }
    
    section {
        padding: 60px 0;
    }
    
    .quiz-content {
        padding: 32px 24px;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero {
        min-height: 70vh;
        padding: 80px 0 60px;
    }
    
    .hero-image {
        max-width: 320px;
    }
    
    .hero .subline {
        font-size: 18px;
    }
    
    .final-cta-image {
        max-width: 320px;
    }
    
    .cta-button {
        padding: 16px 36px;
        font-size: 16px;
    }
}
/* Force refresh v2 */
