/* Reset et variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0891b2;
    --primary-light: #06b6d4;
    --accent: #10b981;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

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

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.3rem 0;
}

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

.logo-img {
    height: 120px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.btn-phone {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-phone:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-full {
    width: 100%;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0891b2 0%, #10b981 50%, #06b6d4 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}



.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}
.price {
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--text-dark);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.social-proof {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.proof-item {
    text-align: center;
}

.proof-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.proof-item span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Sections */
section {
    position: relative;
    z-index: 1;
    transform: none;
    will-change: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
    transform: none;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.testimonial {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.author strong {
    color: var(--text-dark);
    font-weight: 600;
}

.author span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Offer */
.offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
    position: relative;
    z-index: 1;
}

.offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(8, 145, 178, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    will-change: transform;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
}

/* Process */
.process {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step p {
    color: var(--text-gray);
}

/* Plans */
.plans {
    padding: 80px 0;
    background: var(--bg-gray);
    position: relative;
    z-index: 1;
}

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

.plan {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 20px;
}

.plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: var(--primary);
}

.plan:active {
    transform: translateY(-2px);
}

.plan.featured {
    border-color: var(--primary);
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.15);
}

.plan.featured:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(8, 145, 178, 0.2);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 20;
    transition: none;
    white-space: nowrap;
}

.plan h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.plan:hover .plan-price {
    color: var(--accent);
}

.plan p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.plan ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.plan li {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

/* Contact */
.contact {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.contact-method.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.contact-method:hover {
    transform: translateX(5px);
}

.method-icon {
    font-size: 1.5rem;
}

.contact-method strong {
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-method span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.guarantees {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

/* Form */
.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1rem;
    text-align: center;
}

.success-message {
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-message h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 1.5rem 0 1rem;
}

.footer-content {
    text-align: center;
    margin-bottom: 1rem;
}

.footer-main {
    max-width: 400px;
    margin: 0 auto;
}

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

.footer-tagline {
    color: var(--primary-light);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-contact {
    margin-bottom: 1rem;
}

.contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-name {
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
}

.contact-icon {
    font-size: 1rem;
}

.contact-row a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-row a:hover {
    color: var(--white);
}

.footer-services {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    color: #9ca3af;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}

.footer-services span:not(:last-child):not(:nth-child(even)) {
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.8rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto 2.5rem auto;
    }
    
    .feature {
        background: rgba(8, 145, 178, 0.1);
        padding: 8px 12px;
        border-radius: 8px;
        font-size: 0.9rem;
        text-align: center;
        border-left: 3px solid #0891b2;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo {
        height: 140px;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
    
    .footer-services {
        gap: 0.5rem;
        font-size: 0.7rem;
    }
    
    .contact-row {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .testimonials-grid,
    .features-grid,
    .process-steps,
    .plans-grid {
        grid-template-columns: 1fr;
    }
}



/* Responsive pour le nom du site */
@media (max-width: 768px) {
    .site-name {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .site-name {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
}

/* Centrer la section contact sur mobile */
@media (max-width: 768px) {
    .contact-info h2 {
        text-align: center !important;
    }
    
    .contact-info p {
        text-align: center !important;
    }
    
    /* Réduire l'espace en haut de la section hero sur mobile */
    .hero {
        padding: 40px 0 80px 0 !important;
    }
}

/* Portfolio */
.portfolio {
    padding: 80px 0;
    background: white;
}

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

.portfolio-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
/* Thank You Page Styles */
.thank-you {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    min-height: 60vh;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.thank-you .success-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
}

.thank-you h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.thank-you .lead {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.next-steps {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.contact-urgent {
    background: var(--primary);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.contact-urgent p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-urgent .btn {
    margin: 0 0.5rem;
}

.back-home {
    margin-top: 2rem;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    text-decoration: none;
}

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

/* Mobile responsive for thank you page */
@media (max-width: 768px) {
    .thank-you h1 {
        font-size: 2rem;
    }
    
    .contact-urgent .btn {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
    }
}
