/* ====================================
   VARIABLES & RESET
   ==================================== */

:root {
    /* Couleurs principales - thème marocain premium */
    --or-sable: #D4AF37;
    --or-clair: #F4E4C1;
    --bleu-majorelle: #6050DC;
    --vert-palmier: #2D5F3F;
    --blanc-creme: #FAF8F3;
    --noir-profond: #1A1A1A;
    --gris-doux: #E8E4DC;
    
    /* Typographie */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--noir-profond);
    background-color: var(--blanc-creme);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* ====================================
   NAVIGATION
   ==================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    z-index: 1000;
    border-bottom: 2px solid var(--or-sable);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--or-sable), var(--bleu-majorelle));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--noir-profond);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--or-sable);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* ====================================
   HERO SECTION
   ==================================== */

.hero {
    margin-top: 80px;
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 3rem;
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.zellige-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    opacity: 0.05;
    background-image: 
        repeating-linear-gradient(45deg, var(--or-sable) 0px, var(--or-sable) 10px, transparent 10px, transparent 20px),
        repeating-linear-gradient(-45deg, var(--bleu-majorelle) 0px, var(--bleu-majorelle) 10px, transparent 10px, transparent 20px);
    pointer-events: none;
}

.hero-content {
    z-index: 2;
}

.hero-subtitle {
    font-family: var(--font-heading);
    color: var(--bleu-majorelle);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--noir-profond);
}

.hero-title .highlight {
    color: var(--or-sable);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: -10px;
    right: -10px;
    height: 20px;
    background: var(--or-clair);
    opacity: 0.4;
    z-index: -1;
    transform: skewX(-12deg);
}

.hero-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--or-sable), #B8941F);
    color: white;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.cta-button.secondary {
    background: var(--bleu-majorelle);
    color: white;
    box-shadow: 0 10px 30px rgba(96, 80, 220, 0.25);
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(96, 80, 220, 0.35);
    background: #7566e8;
}

.cta-button.full-width {
    width: 100%;
    text-align: center;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gris-doux);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--or-sable);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 0.5px;
}

.hero-image {
    position: relative;
    height: 600px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--or-clair), var(--gris-doux));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--or-sable);
    border-radius: 15px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="14" fill="%23D4AF37" opacity="0.3">📷 Votre image de couscous premium ici</text></svg>') center/contain no-repeat;
}

/* ====================================
   SECTIONS GÉNÉRIQUES
   ==================================== */

.section-header {
    text-align: left;
    margin-bottom: var(--spacing-lg);
}

.section-header.centered {
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--noir-profond);
    margin-bottom: 1rem;
}

.section-title.white {
    color: white;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.decorative-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--or-sable), var(--bleu-majorelle));
    margin: 1.5rem 0;
    position: relative;
}

.decorative-line::before,
.decorative-line::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--or-sable);
    border-radius: 50%;
    top: -4px;
}

.decorative-line::before {
    left: -20px;
}

.decorative-line::after {
    right: -20px;
}

.decorative-line.centered {
    margin: 1.5rem auto;
}

.decorative-line.white {
    background: linear-gradient(90deg, white, var(--or-clair));
}

.decorative-line.white::before,
.decorative-line.white::after {
    background: white;
}

/* ====================================
   PROBLÈME / SOLUTION
   ==================================== */

.problem-solution {
    padding: var(--spacing-xl) 0;
    background: white;
}

.ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: var(--spacing-md);
}

.problem-card,
.solution-card {
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.problem-card {
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    border: 2px solid #ddd;
}

.solution-card {
    background: linear-gradient(135deg, var(--or-clair), #fff8e7);
    border: 2px solid var(--or-sable);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.card-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.problem-icon {
    background: #ff4444;
    color: white;
}

.solution-icon {
    background: var(--or-sable);
    color: white;
}

.problem-card h3,
.solution-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.problem-list,
.solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.problem-list li,
.solution-list li {
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff4444;
    font-weight: bold;
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--or-sable);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ====================================
   PRODUCT SHOWCASE
   ==================================== */

.product-showcase {
    padding: var(--spacing-xl) 0;
    background: var(--blanc-creme);
    position: relative;
}

.moroccan-border-top,
.moroccan-border-bottom {
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        var(--or-sable) 0px,
        var(--or-sable) 30px,
        var(--bleu-majorelle) 30px,
        var(--bleu-majorelle) 60px,
        var(--vert-palmier) 60px,
        var(--vert-palmier) 90px
    );
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.image-placeholder.large {
    height: 500px;
}

.luxury-frame {
    position: absolute;
    inset: 15px;
    border: 4px double var(--or-sable);
    border-radius: 15px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="12" fill="%23D4AF37" opacity="0.3">🎁 KousBox Premium</text></svg>') center/contain no-repeat;
}

.product-label {
    font-family: var(--font-heading);
    color: var(--bleu-majorelle);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--noir-profond);
}

.product-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.product-includes {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--or-sable);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.product-includes h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--noir-profond);
}

.includes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.includes-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.includes-list .icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--or-sable);
}

.price-detail {
    font-size: 1rem;
    color: #666;
}

/* ====================================
   BÉNÉFICES
   ==================================== */

.benefits {
    padding: var(--spacing-xl) 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: var(--spacing-lg);
}

.benefit-card {
    background: var(--blanc-creme);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--or-sable), var(--bleu-majorelle));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--or-sable);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0.3);
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--noir-profond);
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* ====================================
   SECTION ÉQUIPE
   ==================================== */

.team-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--blanc-creme), #fff);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    pointer-events: none;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
    margin-top: var(--spacing-lg);
}

.team-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-image {
    position: relative;
    height: 600px;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.2);
    border: 8px solid white;
    outline: 4px solid var(--or-sable);
    transition: var(--transition-smooth);
    animation: fadeInScale 0.8s ease-out;
}

.team-img:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.3);
}

.team-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--or-sable), #B8941F);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 3px solid white;
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.team-quote {
    background: linear-gradient(135deg, var(--or-clair), #fff8e7);
    padding: 2rem 2.5rem;
    border-left: 5px solid var(--or-sable);
    border-radius: 15px;
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--noir-profond);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
    position: relative;
    margin-top: 0;
}

.team-quote::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--or-sable);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: 10px;
}

.team-story {
    padding: 2rem 0;
}

.story-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--noir-profond);
    margin-bottom: 1.5rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0 0 0;
}

.founder-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 2px solid var(--gris-doux);
    transition: var(--transition-smooth);
}

.founder-card:hover {
    transform: translateY(-8px);
    border-color: var(--or-sable);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.founder-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.founder-card h4 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--noir-profond);
    margin-bottom: 0.5rem;
}

.founder-role {
    font-size: 0.95rem;
    color: var(--bleu-majorelle);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.founder-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Responsive Team Section */
@media (max-width: 968px) {
    .team-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .team-image {
        height: 400px;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .team-image {
        height: 350px;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .team-quote {
        padding: 1.5rem 2rem;
        font-size: 1.05rem;
    }
    
    .team-quote::before {
        font-size: 3.5rem;
        top: -10px;
    }
}

/* ====================================
   TRUST SECTION
   ==================================== */

.trust-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    color: white;
}

.trust-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bleu-majorelle), #4a3db0);
    z-index: -1;
}

.trust-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,0.03) 35px, rgba(255,255,255,0.03) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255,255,255,0.03) 35px, rgba(255,255,255,0.03) 70px);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md) 0;
}

.trust-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.trust-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--or-sable);
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.5px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-md);
}

.testimonial-card {
    background: rgba(255,255,255,0.95);
    padding: 2.5rem;
    border-radius: 20px;
    color: var(--noir-profond);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.stars {
    color: var(--or-sable);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #444;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial-author strong {
    font-weight: 600;
    color: var(--noir-profond);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #666;
}

.partners-section {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.partners-title {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: rgba(255,255,255,0.6);
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.partner-logo:hover {
    color: white;
    background: rgba(255,255,255,0.15);
}

/* ====================================
   FINAL CTA + FORMULAIRE
   ==================================== */

.final-cta {
    padding: var(--spacing-xl) 0;
    background: var(--blanc-creme);
}

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

.cta-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--noir-profond);
    line-height: 1.2;
}

.cta-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.cta-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.check-icon {
    font-size: 1.5rem;
    color: var(--or-sable);
    font-weight: bold;
    min-width: 30px;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border-top: 5px solid var(--or-sable);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--noir-profond);
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--noir-profond);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid var(--gris-doux);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
    background: var(--blanc-creme);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--or-sable);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-group input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
}

.form-notice {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
}

/* ====================================
   FOOTER
   ==================================== */

.footer {
    background: var(--noir-profond);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
    position: relative;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        var(--or-sable) 0px,
        var(--or-sable) 20px,
        var(--bleu-majorelle) 20px,
        var(--bleu-majorelle) 40px
    );
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--or-sable);
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--or-sable);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--or-sable);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ====================================
   RESPONSIVE
   ==================================== */

@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .ps-grid {
        grid-template-columns: 1fr;
    }
    
    .product-content {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
/* ====================================
   STYLES POUR IMAGES RÉELLES
   ==================================== */

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 8px solid white;
    outline: 3px solid var(--or-sable);
}

.product-img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    border: 6px solid white;
    outline: 2px solid var(--or-sable);
    transition: var(--transition-smooth);
}

.product-img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

/* Animation d'entrée pour les images */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-img,
.product-img {
    animation: fadeInScale 0.8s ease-out;
}
