/* Access Assurances - Styles partagés */

:root {
    --turquoise: #00C2A8;
    --turquoise-dark: #00a896;
    --navy: #0E2A47;
    --navy-light: #1a3a5c;
    --cream: #FAF5EB;
    --purple: #7c3aed;
    --purple-light: #c4b5fd;
    --white: #FFFFFF;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --light-gray: #F3F4F6;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Raleway', sans-serif;
    color: var(--navy);
    line-height: 1.6;
    background: var(--white);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Navigation */
.nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(14, 42, 71, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 20px;
    color: var(--navy);
}

.nav-logo img {
    height: 45px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--navy);
    transition: all 0.2s;
}

.nav-link:hover {
    background: rgba(0, 194, 168, 0.1);
    color: var(--turquoise);
}

.nav-link.active {
    background: rgba(0, 194, 168, 0.1);
    color: var(--turquoise);
}

.nav-cta {
    background: var(--turquoise);
    color: var(--white) !important;
    padding: 12px 24px !important;
    border-radius: 8px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--turquoise-dark) !important;
}

/* Mobile menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

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

.btn-primary:hover {
    background: var(--turquoise-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 194, 168, 0.4);
}

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

.btn-secondary:hover {
    background: var(--turquoise);
    color: var(--white);
}

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

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 17px;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 80px 24px;
    text-align: center;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 194, 168, 0.2);
    color: var(--turquoise);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--turquoise);
}

.hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 60px 24px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Sections */
.section {
    padding: 80px 24px;
}

.section-alt {
    background: var(--light-gray);
}

.section-cream {
    background: var(--cream);
}

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

.section-turquoise {
    background: var(--turquoise);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 194, 168, 0.1);
    color: var(--turquoise);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-navy .section-title,
.section-turquoise .section-title {
    color: var(--white);
}

.section-text {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(14, 42, 71, 0.08);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(14, 42, 71, 0.12);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.card-text {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-price {
    font-size: 14px;
    color: var(--turquoise);
    font-weight: 600;
    margin-bottom: 16px;
}

.card-link {
    color: var(--turquoise);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-link:hover {
    text-decoration: underline;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(14, 42, 71, 0.08);
    transition: all 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(14, 42, 71, 0.12);
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.3s;
}

.pricing-card.featured {
    border-color: var(--turquoise);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 194, 168, 0.2);
}

.pricing-badge {
    display: inline-block;
    background: var(--turquoise);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--navy);
}

.pricing-price span {
    font-size: 18px;
    font-weight: 600;
}

.pricing-period {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 24px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 24px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--navy);
}

.pricing-feature .check {
    color: var(--turquoise);
    font-weight: bold;
}

/* Info Boxes */
.info-box {
    background: linear-gradient(135deg, rgba(0, 194, 168, 0.05) 0%, rgba(0, 194, 168, 0.02) 100%);
    border-left: 4px solid var(--turquoise);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 24px 0;
}

.info-box-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--turquoise);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-box p {
    font-size: 14px;
    color: var(--navy);
    line-height: 1.7;
}

.tip-box {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(124, 58, 237, 0.02) 100%);
    border: 2px solid var(--purple-light);
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
}

.tip-box-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 12px;
}

.warning-box {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(245, 158, 11, 0.02) 100%);
    border-left: 4px solid var(--warning);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 24px 0;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Raleway', sans-serif;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-answer {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Benefits Banner */
.benefits-banner {
    background: var(--cream);
    padding: 20px 24px;
    border-bottom: 1px solid var(--light-gray);
}

.benefits-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-icon {
    color: var(--success);
    font-size: 18px;
}

.benefit-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

/* Trust Badges */
.trust-section {
    background: var(--navy);
    padding: 40px 24px;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    color: var(--white);
}

.trust-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.trust-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--turquoise);
}

.trust-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(14, 42, 71, 0.08);
}

.testimonial-stars {
    color: var(--warning);
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--navy);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--navy);
}

.testimonial-role {
    font-size: 14px;
    color: var(--gray);
}

/* Guarantees Grid */
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--cream);
    border-radius: 10px;
}

.guarantee-icon {
    width: 24px;
    height: 24px;
    background: var(--turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    flex-shrink: 0;
}

/* Definitions */
.definitions-box {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 32px;
}

.definition-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E7EB;
}

.definition-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.definition-term {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.definition-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: var(--turquoise);
    padding: 60px 24px;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 24px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 40px;
}

.footer-desc {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.2s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--turquoise);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Raleway', sans-serif;
    transition: all 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--turquoise);
    box-shadow: 0 0 0 3px rgba(0, 194, 168, 0.1);
    outline: none;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--light-gray);
    border-radius: 12px;
    margin-bottom: 16px;
}

.contact-info-icon {
    font-size: 24px;
}

.contact-info-title {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-info-text {
    font-size: 14px;
    color: var(--gray);
}

/* Wizard Container */
.wizard-container {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(14, 42, 71, 0.08);
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-list {
        gap: 20px;
    }
    
    .trust-grid {
        gap: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Utilities */
.text-center { text-align: center; }
.text-turquoise { color: var(--turquoise); }
.text-navy { color: var(--navy); }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
