/* ====================
   VARIABLES CSS
==================== */
:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gold: #F0C882;
    --color-gold-dark: #d4b570;
    --color-gray-light: #cccccc;
    --color-gray-dark: #1a1a1a;
    --color-gray-medium: #2a2a2a;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
    --border-radius: 4px;
}

/* ====================
   RESET & BASE
==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: radial-gradient(ellipse at center, rgba(240, 200, 130, 0.03) 0%, transparent 70%), 
                linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    color: var(--color-white);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
    letter-spacing: 0.2px;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: 0.8px;
}

h1 {
    font-size: clamp(3rem, 3vw, 3rem);
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1.2px;
}

h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    color: var(--color-gold);
    font-weight: 300;
    letter-spacing: 0.8px;
}

h3 {
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    font-weight: 300;
    letter-spacing: 0.8px;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    font-weight: 300;
    letter-spacing: 0.1px;
}

a {
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.responsive-image {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ====================
   HEADER & NAVIGATION
==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(-20px);
    animation: headerFadeIn 0.8s ease-out 0.2s forwards;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    opacity: 0;
    transform: translateY(-15px);
    animation: navItemFadeIn 0.8s ease-out 0.3s forwards;
}

.nav-logo a {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-gold);
    letter-spacing: 1.2px;
    display: block;
}

.nav-logo img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: var(--transition);
}

.nav-logo img:hover {
    transform: scale(1.05);
}

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

.nav-item {
    position: relative;
    opacity: 0;
    transform: translateY(-10px);
    animation: navItemFadeIn 0.6s ease-out forwards;
}

.nav-item:nth-child(1) { animation-delay: 0.4s; }
.nav-item:nth-child(2) { animation-delay: 0.5s; }
.nav-item:nth-child(3) { animation-delay: 0.6s; }
.nav-item:nth-child(4) { animation-delay: 0.7s; }
.nav-item:nth-child(5) { animation-delay: 0.8s; }
.nav-item:nth-child(6) { animation-delay: 0.9s; }
.nav-item:nth-child(7) { animation-delay: 1.0s; }
.nav-item:nth-child(8) { animation-delay: 1.1s; }

.nav-link {
    font-weight: 300;
    font-size: 1rem;
    color: var(--color-gray-light);
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.join-btn {
    background: transparent;
    border: 1px solid var(--color-gold);
    padding: 0.7rem 1.5rem !important;
    border-radius: var(--border-radius);
    color: var(--color-gold) !important;
    font-weight: 500;
    transition: var(--transition);
    font-family: var(--font-sans);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.join-btn:hover {
    background: var(--color-gold);
    color: var(--color-black) !important;
    transform: translateY(-1px);
}

.join-btn::after {
    display: none;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-black);
    list-style: none;
    padding: 1rem 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    min-width: 200px;
    border: 1px solid var(--color-gray-dark);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--color-gray-light);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    color: var(--color-gold);
    background: var(--color-gray-dark);
}

/* Menu Burger */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    opacity: 0;
    transform: translateY(-10px);
    animation: navItemFadeIn 0.6s ease-out 1.2s forwards;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: var(--color-white);
    transition: var(--transition);
}

.burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ====================
   MAIN CONTENT
==================== */
.main-content {
    min-height: 100vh;
    padding-top: 80px;
}

/* ====================
   HERO SECTION
==================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('../assets/home/home1.webp') center/cover;
}

.hero-video {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

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

/* Responsive video hero */
@media (max-width: 768px) {
    .hero-video video {
        /* Sur mobile, on centre la vidéo pour éviter les coupures */
        object-position: center center;
    }
    
    .hero-video .video-overlay {
        /* Overlay légèrement plus sombre sur mobile pour améliorer la lisibilité */
        background: rgba(0, 0, 0, 0.7);
    }
}


.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(3.5rem, 3vw, 3rem);
    margin-bottom: 2rem;
    color: var(--color-white);
    font-weight: 300;
    line-height: 1.1;
    font-family: var(--font-serif);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 2.8vw, 2rem);
    color: var(--color-gold);
    margin-bottom: 2.5rem;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.8px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    color: var(--color-gray-light);
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.4px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 1.2rem 3rem;
    border-radius: var(--border-radius);
    font-weight: 300;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: var(--font-sans);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-primary:hover {
    background: var(--color-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 200, 130, 0.3);
}

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

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-black);
    transform: translateY(-3px);
}

/* ====================
   SECTIONS
==================== */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-dark-aura {
    background: radial-gradient(ellipse at 50% 20%, rgba(240, 200, 130, 0.08) 0%, rgba(240, 200, 130, 0.02) 40%, transparent 70%), 
                linear-gradient(135deg, #111111 0%, #000000 100%);
    position: relative;
}

.section-dark-aura::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(240, 200, 130, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Category cards styling */
.category-card:hover > div {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 8px 30px rgba(240, 200, 130, 0.2);
    background: rgba(26, 26, 26, 0.9);
}

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

.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.section-content {
    max-width: 600px;
}

.section-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.section-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.section-image:hover img {
    transform: scale(1.05);
}

/* ====================
   GALLERY & SLIDER
==================== */
.gallery {
    padding: 3rem 0;
}

.gallery-slider {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 1rem 0;
    scroll-behavior: smooth;
}

.gallery-slider::-webkit-scrollbar {
    height: 8px;
}

.gallery-slider::-webkit-scrollbar-track {
    background: var(--color-gray-dark);
    border-radius: 2px;
}

.gallery-slider::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 2px;
}

.gallery-item {
    min-width: 300px;
    height: 400px;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: var(--color-white);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* ====================
   FORMS
==================== */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem;
    background: linear-gradient(145deg, var(--color-gray-dark) 0%, var(--color-gray-medium) 100%);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--color-gray-medium);
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-gold);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--color-gray-medium);
    border-radius: var(--border-radius);
    background: var(--color-black);
    color: var(--color-white);
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: var(--font-sans);
    letter-spacing: 0.3px;
}

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

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

.form-submit {
    width: 100%;
    background: var(--color-gold);
    color: var(--color-black);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 1.4rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-sans);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-submit:hover {
    background: var(--color-gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(240, 200, 130, 0.3);
}

/* ====================
   FOOTER
==================== */
.footer {
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-gray-dark) 50%, #0a0a0a 100%);
    padding: 6rem 0 3rem;
    /* margin-top: 5rem; */
    position: relative;
    border-top: 1px solid var(--color-gray-medium);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
    opacity: 0.3;
}

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

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

.footer-section h3,
.footer-section h4 {
    color: var(--color-gold);
    margin-bottom: 2rem;
    font-family: var(--font-serif);
    font-weight: 300;
    letter-spacing: 0.8px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.footer-logo p {
    color: var(--color-gray-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--color-gray-light);
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-medium);
    border-radius: var(--border-radius);
    color: var(--color-gray-light);
    transition: var(--transition);
    border: 1px solid var(--color-gray-dark);
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
    border-color: var(--color-gold);
    box-shadow: 0 4px 20px rgba(240, 200, 130, 0.2);
}

.footer-contact p {
    color: var(--color-gray-light);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray-dark);
    flex-wrap: wrap;
    gap: 1rem;
    min-height: 60px;
}

.footer-copyright p {
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

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

.legal-link {
    color: var(--color-gray-light);
    font-size: 0.9rem;
    transition: var(--transition);
    line-height: 1.5;
    margin: 0;
    white-space: nowrap;
}

.legal-link:hover {
    color: var(--color-gold);
}

/* ====================
   ANIMATIONS
==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====================
   RESPONSIVE DESIGN
==================== */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .gallery-item {
        min-width: 250px;
    }
}

@media (max-width: 973px) {
    .burger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--color-black);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: var(--transition);
        height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateY(0);
        animation: none;
    }
    
    .nav-logo img {
        height: 35px;
        max-width: 120px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding-left: 1rem;
    }
    
    .hero {
        height: 90vh;
        padding: 2rem 0;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        min-height: auto;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container,
    .section-container,
    .footer-container {
        padding: 0 1rem;
    }
    
    .form-container {
        padding: 2rem 1rem;
        margin: 0 1rem;
    }
    
    .gallery-item {
        min-width: 200px;
        height: 300px;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* ====================
   COLLABORATIONS RESPONSIVE
==================== */
.collaboration-card {
    background: rgba(26, 26, 26, 0.6);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-gray-medium);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.collaboration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 400px;
}

.collaboration-reverse {
    grid-template-columns: 1fr 1fr;
}

.collaboration-text {
    padding: 3rem;
}

.collaboration-image {
    height: 400px;
    background-size: cover !important;
    background-position: center !important;
}

.commercial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.audiovisual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    align-items: stretch;
}

/* Responsive pour les collaborations */
@media (max-width: 968px) {
    .collaboration-content,
    .collaboration-reverse {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .collaboration-image {
        height: 250px;
        order: -1; /* Image en premier sur mobile */
    }
    
    .collaboration-text {
        padding: 2rem;
    }
    
    .collaboration-reverse .collaboration-image {
        order: -1; /* Image toujours en premier sur mobile */
    }
    
    .commercial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .audiovisual-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .impact-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .collaboration-text {
        padding: 1.5rem;
    }
    
    .collaboration-image {
        height: 200px;
    }
    
    .collaboration-text h3 {
        font-size: 1.4rem !important;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ====================
   SPLASH SCREEN
==================== */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1.5s ease-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.splash-screen.fade-out {
    opacity: 0;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.splash-content {
    text-align: center;
    animation: splashFadeIn 2s ease-out;
}

.splash-title {
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: titleFadeIn 1s ease-out 0.5s forwards;
}

.splash-logo {
    opacity: 0;
    animation: logoFadeIn 1.5s ease-out 1s forwards;
}

.splash-logo-img {
    max-width: 450px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(240, 200, 130, 0.4));
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

@keyframes splashFadeIn {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes titleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateZ(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateZ(0);
    }
}

/* Responsive pour le splash screen */
@media (max-width: 768px) {
    .splash-logo-img {
        max-width: 280px;
    }
    
    .splash-title {
        font-size: clamp(1.2rem, 5vw, 2rem);
        letter-spacing: 2px;
    }
}

/* ====================
   STYLES POUR LA PAGE GUIDE MANNEQUIN
==================== */

/* Hero Section Simple */
.hero-section {
    padding: 8rem 0 6rem;
    padding-top: calc(8rem + 80px);
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(240, 200, 130, 0.08) 0%, transparent 70%);
    position: relative;
}

.hero-content-simple {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content-simple .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.hero-content-simple .hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--color-gray-light);
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.4s forwards;
}

.hero-content-simple .hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-white);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

/* Introduction */
.guide-intro {
    padding: 3rem 0;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.guide-intro h2 {
    color: var(--color-gold);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.guide-intro .intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-gray-light);
    margin-bottom: 2rem;
}

.intro-highlight {
    background: rgba(240, 200, 130, 0.1);
    border: 1px solid rgba(240, 200, 130, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    color: var(--color-white);
    font-weight: 400;
    font-style: italic;
}

/* Section avec fond clair */
.bg-light {
    background: rgba(240, 200, 130, 0.03);
    position: relative;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Purchase */
.purchase-section {
    max-width: 600px;
    margin: 0 auto;
}

.purchase-card {
    background: linear-gradient(135deg, rgba(44, 49, 65, 0.6), rgba(26, 29, 41, 0.8));
    border: 1px solid var(--color-gray-medium);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.purchase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(240, 200, 130, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.purchase-header {
    margin-bottom: 2rem;
}

.purchase-header h3 {
    color: var(--color-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-white);
    font-family: var(--font-serif);
}

.price-currency {
    font-size: 1.2rem;
    color: var(--color-gray-light);
}

.purchase-benefits {
    text-align: left;
    margin-bottom: 2rem;
}

.purchase-benefits h4 {
    color: var(--color-gold);
    margin-bottom: 1rem;
    text-align: center;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 0.8rem 0;
    color: var(--color-gray-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefits-list i {
    color: var(--color-gold);
    font-size: 1.1rem;
    width: 16px;
}

.purchase-btn {
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.purchase-note {
    font-size: 0.9rem;
    color: var(--color-gray-light);
    margin: 0;
    opacity: 0.8;
}

/* Formulaire d'achat */
.purchase-form {
    margin-bottom: 2rem;
}

.purchase-form .form-group {
    margin-bottom: 1.5rem;
}

.purchase-form label {
    display: block;
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.purchase-form input[type="email"] {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-gray-medium);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--color-white);
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-sans);
}

.purchase-form input[type="email"]:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 2px rgba(240, 200, 130, 0.2);
}

.purchase-form input[type="email"]::placeholder {
    color: var(--color-gray-light);
    opacity: 0.7;
}

/* Message d'erreur */
.error-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.8rem 1rem;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 6px;
    color: #ff6b6b;
    font-size: 0.9rem;
    animation: slideDown 0.3s ease-out;
}

.error-message i {
    color: #ff6b6b;
    font-size: 1rem;
}

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

/* Checkout Section */
.checkout-section {
    padding: 4rem 0;
}

.checkout-title {
    text-align: center;
    color: var(--color-gold);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.checkout-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Récapitulatif de commande */
.checkout-summary {
    background: rgba(44, 49, 65, 0.4);
    border: 1px solid var(--color-gray-medium);
    border-radius: 12px;
    padding: 2rem;
}

.order-details h2 {
    color: var(--color-gold);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.product-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-gray-medium);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

.product-image {
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    height: 200px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background: rgba(0, 0, 0, 0.2);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.product-image:hover img {
    transform: scale(1.05);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.product-header h3 {
    color: var(--color-white);
    margin: 0;
    font-size: 1.3rem;
}

.product-price {
    text-align: right;
}

.product-price .amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-gold);
    font-family: var(--font-serif);
}

.product-price .period {
    font-size: 0.9rem;
    color: var(--color-gray-light);
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--color-gray-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.product-features i {
    color: var(--color-gold);
    font-size: 0.9rem;
    width: 16px;
}

.order-total {
    border-top: 1px solid var(--color-gray-medium);
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--color-gray-light);
}

.total-row.total {
    border-top: 1px solid var(--color-gray-medium);
    padding-top: 1rem;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--color-white);
    font-size: 1.1rem;
}

.delivery-info {
    background: rgba(240, 200, 130, 0.1);
    border: 1px solid rgba(240, 200, 130, 0.3);
    border-radius: 6px;
    padding: 1rem;
}

.delivery-info p {
    margin: 0;
    color: var(--color-white);
    font-size: 0.9rem;
}

.delivery-info i {
    color: var(--color-gold);
    margin-right: 0.5rem;
}

/* Formulaire de checkout */
.checkout-form-container {
    background: rgba(44, 49, 65, 0.4);
    border: 1px solid var(--color-gray-medium);
    border-radius: 12px;
    padding: 2rem;
}

.checkout-form-container h2 {
    color: var(--color-gold);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.checkout-form .form-group {
    margin-bottom: 1.5rem;
}

.checkout-form label {
    display: block;
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.checkout-form input[type="email"],
.checkout-form input[type="text"] {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-gray-medium);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--color-white);
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-sans);
}

.checkout-form input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 2px rgba(240, 200, 130, 0.2);
}

.checkout-form input::placeholder {
    color: var(--color-gray-light);
    opacity: 0.7;
}

/* Formulaire de paiement intégré */
#payment-form-container {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--color-gray-medium);
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
}

#payment-element {
    margin-bottom: 1.5rem;
}

#payment-errors {
    margin-bottom: 1rem;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--color-black);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

#submit-payment:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Styles Stripe Elements */
#payment-element {
    margin-bottom: 1.5rem;
}

#payment-element .StripeElement {
    box-sizing: border-box;
    height: 50px;
    padding: 12px 16px;
    border: 1px solid var(--color-gray-medium);
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

#payment-element .StripeElement--focus {
    box-shadow: 0 0 0 2px rgba(240, 200, 130, 0.2);
    border-color: var(--color-gold);
}

#payment-element .StripeElement--invalid {
    border-color: #ff6b6b;
}

#payment-element .StripeElement--webkit-autofill {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

/* Styles spécifiques pour les éléments Stripe */
#payment-element iframe {
    background: transparent !important;
}

#payment-element .__PrivateStripeElement {
    background: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid var(--color-gray-medium) !important;
    border-radius: 6px !important;
    color: var(--color-white) !important;
}

#payment-element .__PrivateStripeElement:focus-within {
    border-color: var(--color-gold) !important;
    box-shadow: 0 0 0 2px rgba(240, 200, 130, 0.2) !important;
}

/* Override des styles Stripe par défaut */
#payment-element * {
    font-family: var(--font-sans) !important;
}

#payment-element input {
    background: transparent !important;
    color: var(--color-white) !important;
    border: none !important;
    outline: none !important;
}

#payment-element input::placeholder {
    color: var(--color-gray-light) !important;
    opacity: 0.7 !important;
}

/* Styles supplémentaires pour le formulaire Stripe */
#payment-element .Tab {
    background: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid var(--color-gray-medium) !important;
    color: var(--color-white) !important;
    border-radius: 6px !important;
    margin-right: 0.5rem !important;
}

#payment-element .Tab:hover {
    background: rgba(240, 200, 130, 0.1) !important;
    color: var(--color-gold) !important;
}

#payment-element .Tab--selected {
    background: rgba(240, 200, 130, 0.2) !important;
    border-color: var(--color-gold) !important;
    color: var(--color-gold) !important;
}

#payment-element .Input {
    background: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid var(--color-gray-medium) !important;
    color: var(--color-white) !important;
    border-radius: 6px !important;
    padding: 12px 16px !important;
    font-size: 16px !important;
}

#payment-element .Input:focus {
    border-color: var(--color-gold) !important;
    box-shadow: 0 0 0 2px rgba(240, 200, 130, 0.2) !important;
}

#payment-element .Input::placeholder {
    color: var(--color-gray-light) !important;
    opacity: 0.7 !important;
}

#payment-element .Label {
    color: var(--color-gold) !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    margin-bottom: 0.5rem !important;
}

#payment-element .Error {
    color: #ff6b6b !important;
    font-size: 0.9rem !important;
    margin-top: 0.5rem !important;
}

/* Boutons */
.btn-block {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    border-radius: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-actions {
    margin-top: 2rem;
}

/* Informations de sécurité */
.secure-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(240, 200, 130, 0.05);
    border: 1px solid rgba(240, 200, 130, 0.2);
    border-radius: 6px;
    overflow: hidden;
}

.secure-info p {
    margin: 0;
    color: var(--color-gray-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.secure-info i {
    color: var(--color-gold);
    flex-shrink: 0;
}

.stripe-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-left: auto;
}

.stripe-info img {
    height: 20px;
    opacity: 0.7;
    max-width: 100%;
}

/* Témoignages spécifiques */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(44, 49, 65, 0.4);
    border: 1px solid var(--color-gray-medium);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    border-color: var(--color-gold);
    box-shadow: 0 8px 25px rgba(240, 200, 130, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar i {
    color: var(--color-black);
    font-size: 1.2rem;
}

.testimonial-info h4 {
    color: var(--color-gold);
    margin: 0 0 0.3rem 0;
    font-size: 1.2rem;
}

.testimonial-info span {
    color: var(--color-gray-light);
    font-size: 0.9rem;
}

.testimonial-card blockquote {
    color: var(--color-white);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* À propos LuxAura */
.about-luxaura {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content {
    text-align: center;
    margin-bottom: 3rem;
}

.about-intro {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 2rem;
    font-weight: 400;
}

.services-luxaura {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
    background: rgba(44, 49, 65, 0.3);
    border: 1px solid var(--color-gray-medium);
    border-radius: 12px;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-3px);
    border-color: var(--color-gold);
}

.service-item .service-icon {
    width: 60px;
    height: 60px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.service-item .service-icon i {
    color: var(--color-black);
    font-size: 1.5rem;
}

.service-item h4 {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-item p {
    color: var(--color-gray-light);
    margin: 0;
}

.about-conclusion {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-white);
}

/* FAQ */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--color-gray-medium);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 1.5rem;
    background: rgba(44, 49, 65, 0.4);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h4 {
    color: var(--color-gold);
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--color-gold);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(26, 29, 41, 0.6);
}

.faq-answer p {
    padding: 1.5rem 0;
    margin: 0;
    color: var(--color-gray-light);
    line-height: 1.6;
}

/* CTA Final */
.final-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-btn {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

/* Section CTA */
.cta-section {
    padding: 4rem 0;
}

.cta-content {
    background: linear-gradient(135deg, rgba(44, 49, 65, 0.6), rgba(26, 29, 41, 0.8));
    border: 1px solid var(--color-gray-medium);
    border-radius: 16px;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(240, 200, 130, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content h2 {
    color: var(--color-gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--color-gray-light);
}

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

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-white);
    font-weight: 400;
}

.cta-feature i {
    color: var(--color-gold);
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Success */
.success-icon {
    margin-bottom: 2rem;
}

.success-icon i {
    font-size: 4rem;
    color: #28a745;
}

.success-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.info-card, .contact-card {
    background: rgba(44, 49, 65, 0.4);
    border: 1px solid var(--color-gray-medium);
    border-radius: 12px;
    padding: 2rem;
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--color-gold);
    color: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--color-gray-light);
    margin: 0;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-method:hover {
    color: var(--color-gold);
}

.contact-method i {
    color: var(--color-gold);
    width: 20px;
}

.success-cta {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Responsive pour Guide Mannequin */
@media (max-width: 1024px) {
    .success-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-luxaura {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .checkout-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .checkout-summary,
    .checkout-form-container {
        padding: 1.5rem;
    }
    
    .product-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .product-price {
        text-align: center;
    }
    
    .product-image {
        height: 150px;
        margin: -1.5rem -1.5rem 1rem -1.5rem;
    }
    
    .secure-info p {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .stripe-info {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    #payment-form-container {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 4rem;
        padding-top: calc(6rem + 80px);
    }
    
    .hero-content-simple {
        padding: 0 1rem;
    }
    
    .guide-intro h2 {
        font-size: 2rem;
    }
    
    .purchase-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .services-luxaura {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        padding: 3rem 2rem;
        margin: 0 1rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .success-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .success-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .steps {
        gap: 2rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
} 