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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

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

/* Bannière Promotionnelle */
.promo-banner {
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    color: #fff;
    padding: 8px 15px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(225, 29, 72, 0.3);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.promo-icon {
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.promo-text {
    font-size: 16px;
    font-weight: 500;
}

.promo-text strong {
    font-weight: 700;
    font-size: 18px;
}

.promo-timer {
    font-size: 14px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
}

/* Hero Section avec Vidéo */
.hero-video-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%; /* Décale la vidéo vers le bas pour voir les visages */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-content-overlay {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.logo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.logo-header i {
    font-size: 40px;
    color: #fbbf24;
}

.logo-header h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

.hero-main-message {
    font-family: 'Dancing Script', cursive;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-sub-message {
    font-family: 'Dancing Script', cursive;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-btn-hero {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    font-size: 22px;
    font-weight: 700;
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
    margin-bottom: 50px;
}

.cta-btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.6);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-num {
    font-size: 36px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #fff;
    opacity: 0.9;
}

.video-nav-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.video-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-dot.active {
    background: #fbbf24;
    width: 30px;
    border-radius: 6px;
}

/* Section Exemples de Musique */
.examples-music-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fef3f2 0%, #fff 100%);
}

.section-main-title {
    font-family: 'Dancing Script', cursive;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: #e11d48;
    margin-bottom: 15px;
}

.section-main-subtitle {
    font-size: 18px;
    text-align: center;
    color: #6b7280;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.music-player-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-bottom: 50px;
}

/* Lecteur Principal */
.main-music-player {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px dashed #e11d48;
}

.player-card-main {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.song-thumbnail-main {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.song-thumbnail-main i {
    font-size: 60px;
    color: #fff;
}

.song-info-main {
    text-align: center;
}

.song-info-main h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.song-info-main p {
    font-size: 16px;
    color: #6b7280;
}

.song-description {
    font-size: 14px;
    color: #e11d48;
    margin-top: 10px;
}

.player-controls-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.ctrl-btn {
    background: #f3f4f6;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ctrl-btn:hover {
    background: #e5e7eb;
    transform: scale(1.1);
}

.ctrl-btn i {
    font-size: 20px;
    color: #1f2937;
}

.play-btn-main {
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    border: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(225, 29, 72, 0.4);
}

.play-btn-main:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(225, 29, 72, 0.6);
}

.play-btn-main i {
    font-size: 28px;
    color: #fff;
}

.soundcloud-iframe-container {
    margin-top: 20px;
}

.soundcloud-iframe-container iframe {
    border-radius: 10px;
}

/* Liste des Chansons */
.songs-list-container {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-height: 700px;
    overflow-y: auto;
}

.songs-list-title {
    font-size: 20px;
    font-weight: 700;
    color: #e11d48;
    margin-bottom: 20px;
    text-align: center;
}

.song-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    border: 2px solid transparent;
}

.song-list-item:hover {
    background: #fef3f2;
    border-color: #e11d48;
}

.song-list-item.active {
    background: #fef3f2;
    border-color: #e11d48;
}

.song-list-thumb {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.song-list-thumb i {
    font-size: 24px;
    color: #fff;
}

.song-list-info {
    flex: 1;
}

.song-list-name {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 3px;
}

.song-list-cat {
    font-size: 13px;
    color: #6b7280;
}

.song-list-time {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 500;
}

.cta-examples-section {
    text-align: center;
    margin-top: 50px;
}

.cta-btn-secondary {
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(225, 29, 72, 0.3);
}

.cta-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(225, 29, 72, 0.5);
}

/* Section Comment ça marche */
.how-it-works-section {
    padding: 100px 0;
    background: #fff;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.step-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

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

.step-number-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.3);
}

.step-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fef3f2 0%, #fce7f3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon-box i {
    font-size: 36px;
    color: #e11d48;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

.step-arrow-icon {
    font-size: 30px;
    color: #e11d48;
}

.eternal-message {
    text-align: center;
    margin-top: 60px;
}

.eternal-text {
    font-size: 20px;
    color: #1f2937;
    margin-bottom: 10px;
}

.eternal-highlight {
    font-family: 'Dancing Script', cursive;
    font-size: 36px;
    font-weight: 700;
    color: #e11d48;
}

/* Section Pricing */
.pricing-valentine-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #fef3f2 100%);
}

.pricing-card-valentine {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid #e11d48;
    position: relative;
}

.pricing-badge-special {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.4);
}

.price-display {
    text-align: center;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.price-old {
    font-size: 36px;
    font-weight: 700;
    color: #9ca3af;
    text-decoration: line-through;
}

.price-new {
    font-size: 72px;
    font-weight: 900;
    color: #e11d48;
}

.price-currency {
    font-size: 24px;
    color: #6b7280;
    font-weight: 600;
}

.price-description {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 40px;
}

.features-included {
    margin-bottom: 40px;
}

.features-heading {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
}

.feature-line {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.feature-line i {
    font-size: 20px;
    color: #10b981;
}

.feature-line span {
    font-size: 16px;
    color: #1f2937;
}

.cta-btn-pricing {
    width: 100%;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 18px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.4);
    margin-bottom: 20px;
}

.cta-btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(225, 29, 72, 0.6);
}

.urgency-message {
    text-align: center;
    font-size: 14px;
    color: #e11d48;
    font-weight: 600;
    margin-bottom: 30px;
}

.payment-separator {
    text-align: center;
    font-size: 16px;
    color: #9ca3af;
    margin: 20px 0;
    position: relative;
}

.payment-separator::before,
.payment-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e5e7eb;
}

.payment-separator::before {
    left: 0;
}

.payment-separator::after {
    right: 0;
}

.payment-info-text {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 15px;
}

.paypal-btn-custom {
    width: 100%;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.paypal-btn-custom:hover {
    background: linear-gradient(135deg, #be123c 0%, #9f1239 100%);
    transform: translateY(-2px);
}

/* Section Témoignages */
.testimonials-valentine-section {
    padding: 100px 0;
    background: #fff;
}

.testimonials-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card-item {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #fef3f2;
    transition: all 0.3s ease;
}

.testimonial-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #e11d48;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.8;
    color: #1f2937;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.author-name-text {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
}

.author-location-text {
    font-size: 14px;
    color: #6b7280;
}

/* Section Formulaire */
.form-order-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fef3f2 0%, #fff 100%);
}

.order-form-main {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-row-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

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

.form-field-group label {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
}

.form-field-group input,
.form-field-group select,
.form-field-group textarea {
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-field-group input:focus,
.form-field-group select:focus,
.form-field-group textarea:focus {
    outline: none;
    border-color: #e11d48;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

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

.cta-btn-form-submit {
    width: 100%;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 18px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.4);
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-btn-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(225, 29, 72, 0.6);
}

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

/* Section Garantie */
.guarantee-promise-section {
    padding: 100px 0;
    background: #fff;
}

.guarantee-card-box {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fef3f2 0%, #fce7f3 100%);
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
    border: 3px solid #e11d48;
}

.guarantee-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.guarantee-icon-large i {
    font-size: 50px;
    color: #fff;
}

.guarantee-main-text {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.4;
}

.guarantee-sub-text {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
}

/* Section FAQ */
.faq-questions-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fef3f2 0%, #fff 100%);
}

.faq-accordion-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-question-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question-header:hover {
    background: #fef3f2;
}

.faq-question-header span {
    font-size: 17px;
    font-weight: 600;
    color: #1f2937;
}

.faq-question-header i {
    font-size: 18px;
    color: #e11d48;
    transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-question-header i {
    transform: rotate(180deg);
}

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

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

.faq-answer-content p {
    padding: 0 25px 20px;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.8;
}

/* Section CTA Final */
.final-cta-valentine-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    text-align: center;
    color: #fff;
}

.final-cta-main-title {
    font-family: 'Dancing Script', cursive;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.final-cta-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-btn-final-large {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    font-size: 22px;
    font-weight: 700;
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.cta-btn-final-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
}

.final-urgency-text {
    margin-top: 30px;
    font-size: 16px;
    opacity: 0.9;
}

/* Footer */
.footer-main {
    background: #1f2937;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fbbf24;
}

.footer-column p {
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fbbf24;
}

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

.social-links-footer a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links-footer a:hover {
    background: #e11d48;
    transform: translateY(-3px);
}

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

.footer-bottom-bar p {
    font-size: 14px;
    color: #9ca3af;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.show {
    display: flex;
}

.modal-content-box {
    background: #fff;
    border-radius: 25px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close-btn:hover {
    color: #1f2937;
}

.modal-icon-success {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.modal-icon-success i {
    font-size: 40px;
    color: #fff;
}

.modal-content-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.modal-content-box p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-btn-modal {
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(225, 29, 72, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .music-player-layout {
        grid-template-columns: 1fr;
    }
    
    .songs-list-container {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-main-message {
        font-size: 42px;
    }
    
    .hero-sub-message {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-box {
        padding: 15px 20px;
    }
    
    .section-main-title {
        font-size: 36px;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow-icon {
        transform: rotate(90deg);
    }
    
    .form-row-group {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .final-cta-main-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .promo-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .promo-text {
        font-size: 14px;
    }
    
    .logo-header h1 {
        font-size: 36px;
    }
    
    .hero-main-message {
        font-size: 32px;
    }
    
    .hero-sub-message {
        font-size: 24px;
    }
    
    .cta-btn-hero {
        font-size: 18px;
        padding: 14px 30px;
    }
    
    .section-main-title {
        font-size: 28px;
    }
    
    .main-music-player {
        padding: 25px;
    }
    
    .songs-list-container {
        padding: 20px;
    }
    
    .pricing-card-valentine {
        padding: 40px 25px;
    }
    
    .price-new {
        font-size: 56px;
    }
    
    .order-form-main {
        padding: 35px 25px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Section Notre Histoire d'Amour (2 chansons vedettes) */
.featured-songs-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f7 0%, #ffe6eb 100%);
}

.featured-songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.featured-song-card {
    background: white;
    border: 3px dashed #e11d48;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(225, 29, 72, 0.1);
}

.featured-song-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(225, 29, 72, 0.2);
}

.featured-song-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.featured-song-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e11d48, #be123c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(225, 29, 72, 0.3);
}

.featured-song-icon i {
    font-size: 40px;
    color: white;
}

.featured-song-title {
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
    color: #e11d48;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
}

.featured-song-category {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
    font-style: italic;
}

.featured-song-description {
    text-align: center;
    color: #333;
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.featured-song-duration {
    text-align: center;
    font-weight: 700;
    color: #e11d48;
    font-size: 20px;
    margin-bottom: 20px;
}

.featured-song-card .soundcloud-iframe-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .featured-songs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .featured-song-card {
        padding: 20px;
    }
    
    .featured-song-title {
        font-size: 24px;
    }
    
    .featured-song-description {
        font-size: 16px;
    }
}
