/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #374151;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

#header.scrolled {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 48px;
    width: auto;
}

.nav-desktop {
    display: none;
    gap: 32px;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #EA580C;
}

.header-cta {
    display: none;
    align-items: center;
    gap: 16px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #EA580C;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #374151;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid #E5E7EB;
}

.nav-mobile.active {
    display: flex;
}

.phone-mobile {
    color: #EA580C;
    font-weight: 600;
    text-decoration: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: #EA580C;
    color: white;
}

.btn-primary:hover {
    background: #C2410C;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.btn-outline {
    background: transparent;
    color: #EA580C;
    border: 2px solid #EA580C;
}

.btn-outline:hover {
    background: #FFF7ED;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #FFF7ED 0%, #FEF3C7 50%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: #FED7AA;
    color: #9A3412;
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.2;
}

.highlight {
    color: #EA580C;
}

.hero-subtitle {
    font-size: 20px;
    color: #4B5563;
    margin-bottom: 32px;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefit-item svg {
    flex-shrink: 0;
    color: #EA580C;
    margin-top: 2px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 32px;
}

.indicator {
    text-align: center;
}

.indicator-value {
    font-size: 32px;
    font-weight: 800;
    color: #EA580C;
}

.indicator-label {
    font-size: 14px;
    color: #6B7280;
}

.separator {
    width: 1px;
    height: 48px;
    background: #D1D5DB;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #FED7AA;
    color: #9A3412;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #6B7280;
}

/* Primes Section */
.primes-section {
    background: white;
}

.primes-region {
    margin-bottom: 64px;
}

.region-title {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.title-line {
    width: 48px;
    height: 4px;
    background: #EA580C;
    margin-right: 16px;
}

.region-title h3 {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
}

.cards-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 48px;
}

.card {
    background: white;
    border: 2px solid #FED7AA;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: #FDBA74;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.card-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.card-header svg {
    color: #EA580C;
}

.card-header.bg-orange {
    background: #FFF7ED;
    padding: 16px 24px;
    margin: -24px -24px 24px -24px;
    border-radius: 14px 14px 0 0;
}

.price-box {
    background: #FFF7ED;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.price-label {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 4px;
}

.price-value {
    font-size: 28px;
    font-weight: 800;
    color: #EA580C;
}

.price-note {
    font-size: 14px;
    color: #6B7280;
    margin-top: 4px;
}

.card-content p {
    color: #4B5563;
    line-height: 1.6;
}

/* Table */
.table-card {
    border: 2px solid #FDBA74;
}

.table-container {
    overflow-x: auto;
}

.revenue-table {
    width: 100%;
    border-collapse: collapse;
}

.revenue-table thead {
    background: #F9FAFB;
}

.revenue-table th {
    padding: 16px 24px;
    text-align: left;
    font-weight: 600;
    color: #111827;
    font-size: 14px;
}

.revenue-table td {
    padding: 16px 24px;
    color: #4B5563;
    border-top: 1px solid #E5E7EB;
}

.revenue-table tr:hover {
    background: #FFF7ED;
}

.badge-r1, .badge-r2, .badge-r3, .badge-r4, .badge-copro {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    color: white;
}

.badge-r1 { background: #EA580C; }
.badge-r2 { background: #F97316; }
.badge-r3 { background: #FB923C; }
.badge-r4 { background: #FDBA74; color: #9A3412; }
.badge-copro { background: #6B7280; }

.multiplier {
    font-size: 18px;
    color: #EA580C;
}

.multiplier-base {
    color: #6B7280;
}

/* Info Box */
.info-box {
    background: #FFFBEB;
    border-left: 4px solid #EA580C;
    padding: 24px;
    border-radius: 0 12px 12px 0;
}

.info-box h4 {
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.info-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-box li {
    color: #4B5563;
}

/* Avantages Section */
.avantages-section {
    background: linear-gradient(135deg, #FFF7ED 0%, #FEF3C7 50%, #FFFFFF 100%);
}

.avantages-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 64px;
}

.avantage-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.avantage-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.icon-box {
    width: 56px;
    height: 56px;
    background: #FED7AA;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.icon-box svg {
    color: #EA580C;
}

.avantage-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.avantage-card p {
    color: #6B7280;
    line-height: 1.6;
}

.urgency-box {
    background: linear-gradient(135deg, #EA580C 0%, #F97316 100%);
    padding: 48px;
    border-radius: 24px;
    text-align: center;
    color: white;
}

.urgency-box h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.urgency-box p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #FED7AA;
}

.urgency-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 24px 32px;
    border-radius: 12px;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
}

.stat-label {
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #F3F4F6;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #FDBA74;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #EA580C;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: #4B5563;
    line-height: 1.6;
}

.faq-cta-box {
    background: linear-gradient(135deg, #FFF7ED 0%, #FEF3C7 100%);
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    margin-top: 48px;
    border: 2px solid #FED7AA;
}

.faq-cta-box h3 {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
}

.faq-cta-box p {
    color: #4B5563;
    margin-bottom: 24px;
}

/* Devis Section */
.devis-section {
    background: linear-gradient(135deg, #FFF7ED 0%, #FEF3C7 50%, #FFFFFF 100%);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-badge svg {
    color: #EA580C;
}

.trust-badge span {
    color: #4B5563;
    font-weight: 600;
}

.form-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    background: linear-gradient(135deg, #EA580C 0%, #F97316 100%);
    padding: 32px;
    color: white;
}

.form-header h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-header p {
    color: #FED7AA;
}

.devis-form {
    padding: 32px;
}

.form-row {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #EA580C;
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: #6B7280;
    margin-top: 16px;
}

.success-message {
    padding: 48px;
    text-align: center;
}

.success-message svg {
    color: #10B981;
    margin-bottom: 24px;
}

.success-message h3 {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
}

.success-message p {
    color: #6B7280;
    font-size: 18px;
}

/* Footer */
.footer {
    background: #111827;
    color: #9CA3AF;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-col h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-go{
    height: 48px;
    width: auto;	
}

.footer-logo {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li {
    font-size: 14px;
}

.footer-col a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #EA580C;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-item svg {
    flex-shrink: 0;
    color: #EA580C;
    margin-top: 2px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1F2937;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #EA580C;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .header-cta {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .hero-cta {
        flex-direction: row;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .avantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row:has(.form-group:nth-child(3)) {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 56px;
    }
    
    .avantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}
