/* Erakneed Sales Page Styles - Version 1.1 */
.erakneed-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    box-sizing: border-box;
}

.erakneed-container * {
    box-sizing: border-box;
}

/* Section Hero */
.erakneed-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    margin-bottom: 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.erakneed-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(30deg);
}

.erakneed-hero-content {
    flex: 1;
    z-index: 2;
}

.erakneed-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.erakneed-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0.95;
    font-weight: 700;
    color: white;
}

.white-text {
    color: #FFFFFF;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.erakneed-hero-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px;
}

.erakneed-cta {
    margin-top: 30px;
}

.erakneed-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
}

.erakneed-btn-primary {
    background: #FFD700;
    color: #333;
    font-size: 1.2rem;
    margin-right: 20px;
}

.erakneed-btn-primary:hover {
    background: #FFC400;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.erakneed-btn-large {
    font-size: 1.4rem;
    padding: 25px 50px;
    background: #FFD700;
    color: #333;
    margin-top: 20px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.erakneed-btn-large:hover {
    background: #FFC400;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.erakneed-btn-text {
    font-size: 1.2em;
    font-weight: 700;
}

.erakneed-btn-subtext {
    font-size: 0.8em;
    opacity: 0.9;
    margin-top: 5px;
    font-weight: 500;
}

.erakneed-guarantee {
    margin-top: 15px;
    font-size: 1rem;
    opacity: 0.9;
}

.erakneed-hero-visual {
    flex: 0 0 40%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.erakneed-visual-element {
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: erakneed-float 6s ease-in-out infinite;
}

.erakneed-visual-element::before {
    content: "📦";
    font-size: 120px;
}

@keyframes erakneed-float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Section How It Works */
.erakneed-how-it-works {
    margin-bottom: 80px;
}

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

.erakneed-section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.erakneed-section-header p {
    font-size: 1.2rem;
    color: #666;
}

.erakneed-works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.erakneed-work-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.erakneed-work-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.erakneed-work-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.erakneed-work-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.erakneed-work-content p {
    color: #666;
    line-height: 1.6;
}

/* Section Benefits */
.erakneed-benefits {
    margin-bottom: 80px;
}

.erakneed-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.erakneed-benefit-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #f8f9fa;
    position: relative;
    overflow: hidden;
}

.erakneed-benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.erakneed-benefit-card:hover::before {
    left: 100%;
}

.erakneed-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.erakneed-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.erakneed-benefit-card:hover .erakneed-icon {
    transform: scale(1.2);
}

.erakneed-benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.erakneed-benefit-card p {
    color: #666;
}

/* Section Security */
.erakneed-security {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 20px;
    margin-bottom: 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.erakneed-security::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.erakneed-security-content {
    display: flex;
    align-items: center;
    padding: 60px 40px;
    position: relative;
    z-index: 1;
}

.erakneed-security-text {
    flex: 1;
}

.erakneed-security-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.erakneed-security-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.erakneed-security-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.erakneed-check {
    font-size: 1.3rem;
}

.erakneed-security-visual {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.erakneed-shield {
    font-size: 120px;
    opacity: 0.8;
    animation: shield-rotate 4s ease-in-out infinite;
}

@keyframes shield-rotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

/* Section Testimonials */
.erakneed-testimonials {
    margin-bottom: 80px;
}

.erakneed-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.erakneed-testimonial {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.erakneed-testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
    position: relative;
}

.erakneed-testimonial-content::before {
    content: "❝";
    font-size: 3rem;
    color: #667eea;
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}

.erakneed-testimonial-author {
    text-align: right;
}

.erakneed-testimonial-author strong {
    display: block;
    color: #333;
}

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

.erakneed-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-top: 5px;
}

/* Section Final CTA */
.erakneed-final-cta {
    margin-bottom: 60px;
}

.erakneed-cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 60px 40px;
    color: white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.erakneed-cta-box::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: cta-glow 8s ease-in-out infinite;
}

@keyframes cta-glow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5%, 5%) rotate(90deg); }
    50% { transform: translate(0, 10%) rotate(180deg); }
    75% { transform: translate(-5%, 5%) rotate(270deg); }
}

.erakneed-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.erakneed-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.erakneed-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.erakneed-cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.erakneed-cta-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.2);
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.erakneed-cta-benefit:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.3);
}

.erakneed-cta-icon {
    font-size: 1.5rem;
}

.erakneed-cta-action {
    margin-top: 40px;
}

.erakneed-cta-guarantee {
    margin-top: 25px;
}

.erakneed-guarantee-badge {
    background: rgba(255,255,255,0.2);
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

.erakneed-guarantee-badge:hover {
    background: rgba(255,255,255,0.3);
}

.erakneed-guarantee-icon {
    font-size: 1.2rem;
}

/* Animation d'apparition */
.erakneed-benefit-card, .erakneed-work-step, .erakneed-testimonial {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.erakneed-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .erakneed-hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .erakneed-title {
        font-size: 2.2rem;
    }
    
    .erakneed-subtitle {
        font-size: 1.2rem;
    }
    
    .erakneed-hero-desc {
        margin: 0 auto 30px;
    }
    
    .erakneed-hero-visual {
        margin-top: 30px;
    }
    
    .erakneed-btn-primary {
        margin-right: 0;
        margin-bottom: 15px;
        display: block;
    }
    
    .erakneed-work-step {
        flex-direction: column;
        text-align: center;
    }
    
    .erakneed-security-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .erakneed-cta-benefits {
        grid-template-columns: 1fr;
    }
    
    .erakneed-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .erakneed-btn-large {
        padding: 20px 30px;
        font-size: 1.2rem;
    }
    
    .white-text {
        display: block;
        margin-top: 5px;
    }
}

@media (max-width: 480px) {
    .erakneed-container {
        padding: 10px;
    }
    
    .erakneed-hero-content,
    .erakneed-security-content {
        padding: 0 20px;
    }
    
    .erakneed-title {
        font-size: 1.8rem;
    }
    
    .erakneed-section-header h2 {
        font-size: 2rem;
    }
    
    .erakneed-cta-benefit {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}