/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #ffb156;
    --primary-dark: #0a0a0a;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-card-hover: #252525;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --text-light: #d1d5db;
    --alert-red: #ff3344;
    --border-dark: #2a2a2a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    background-color: var(--bg-dark);
}

a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #e09a40;
}

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

.highlight {
    color: var(--primary-orange);
}

/* Header */
.header {
    background: var(--bg-dark);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--border-dark);
}

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

.logo img {
    height: 45px;
    width: auto;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: var(--text-light);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

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

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

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

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a::after {
    content: '';
    position: static;
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    margin-left: 10px;
    transition: transform 0.3s ease;
    vertical-align: middle;
    background: none;
}

.nav-dropdown:hover > a::after {
    transform: rotate(-135deg) translateY(2px);
    width: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-light);
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--bg-card-hover);
    color: var(--primary-orange);
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: url('webprime.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-white);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 10;
}

/* Gradient animé overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(255, 51, 68, 0.1) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    z-index: 1;
}

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

/* Lignes animées */
.hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.hero-lines::before,
.hero-lines::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.3), transparent);
    animation: lineMove 10s linear infinite;
}

.hero-lines::before {
    top: 30%;
    left: -50%;
    transform: rotate(-5deg);
}

.hero-lines::after {
    top: 70%;
    left: -50%;
    transform: rotate(3deg);
    animation-delay: -5s;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

@keyframes lineMove {
    0% { transform: translateX(0) rotate(-5deg); }
    100% { transform: translateX(50%) rotate(-5deg); }
}

/* Canvas particules */
#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

/* Animations texte hero */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 102, 0, 0.5), 0 0 20px rgba(255, 102, 0, 0.3), 0 0 30px rgba(255, 102, 0, 0.2);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 102, 0, 0.8), 0 0 40px rgba(255, 102, 0, 0.5), 0 0 60px rgba(255, 102, 0, 0.3);
    }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

.hero-welcome {
    font-size: 18px;
    color: var(--primary-orange);
    margin-bottom: 20px;
    font-weight: 500;
}

.typing-text {
    border-right: 2px solid var(--primary-orange);
    padding-right: 5px;
    animation: blink 0.7s step-end infinite;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-white);
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.hero-highlight-text {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 1.1s;
}

.hero-highlight-text strong {
    color: var(--primary-orange);
    animation: glowPulse 3s ease-in-out infinite;
    animation-delay: 1.9s;
}

.hero-seo-text {
    font-size: 16px;
    color: var(--text-gray);
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 1.4s;
}

.hero-seo-text a {
    color: var(--primary-orange);
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #111111;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    border: 1px solid var(--border-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(255,177,86,0.15);
    border-color: var(--primary-orange);
}

.testimonial-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    background: #000;
}

.testimonial-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-info {
    padding: 20px 25px;
    text-align: center;
}

.testimonial-stars {
    color: var(--primary-orange);
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.testimonial-name {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
}

.testimonial-title {
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 15px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: #e09a40;
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 177, 86, 0.4);
}

/* Offers Section */
.offers-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-top: -40px;
    margin-bottom: 50px;
}

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

.offer-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid var(--border-dark);
}

.offer-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    background: var(--bg-card-hover);
}

.offer-popular {
    border: 2px solid var(--primary-orange);
    overflow: visible;
    animation: cardGlow 3s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% { box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(249, 115, 22, 0.15); }
    50% { box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3), 0 0 30px rgba(249, 115, 22, 0.4), 0 0 60px rgba(249, 115, 22, 0.15); }
}

.offer-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: var(--bg-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.sector-badges {
    position: absolute;
    top: 18px;
    right: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.sector-badge {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.sector-badge-amber {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.sector-badge-blue {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.sector-badge-green {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.offer-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--text-white);
}

.offer-icon-amber {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.offer-icon-blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.offer-icon-green {
    background: linear-gradient(135deg, #22c55e, #10b981);
}

.offer-icon-purple {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.offer-icon-gray {
    background: linear-gradient(135deg, #4b5563, #1f2937);
}

.offer-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.offer-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 5px;
}

.old-price {
    text-decoration: line-through;
    font-size: 0.65em;
    opacity: 0.6;
    margin-right: 6px;
    font-weight: 500;
}

.offer-period {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-gray);
}

.offer-description {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.offer-features {
    list-style: none;
    margin-bottom: 25px;
}

.offer-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

.offer-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

.btn-offer {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-white);
}

.btn-amber {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.btn-amber:hover {
    background: linear-gradient(135deg, #d97706, #ea580c);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
}

.btn-blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.btn-blue:hover {
    background: linear-gradient(135deg, #2563eb, #0891b2);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
}

.btn-green {
    background: linear-gradient(135deg, #22c55e, #10b981);
}

.btn-green:hover {
    background: linear-gradient(135deg, #16a34a, #059669);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.4);
}

.btn-purple {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.btn-purple:hover {
    background: linear-gradient(135deg, #9333ea, #db2777);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.4);
}

.btn-gray {
    background: linear-gradient(135deg, #4b5563, #1f2937);
}

.btn-gray:hover {
    background: linear-gradient(135deg, #374151, #111827);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(75, 85, 99, 0.4);
}

.offers-contact {
    text-align: center;
    font-size: 15px;
    color: var(--text-gray);
}

.offers-contact a {
    color: var(--primary-orange);
}

.offers-contact a:hover {
    text-decoration: underline;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #111111;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 60px;
}

.typing-title {
    min-height: 1.3em;
    border-right: 2px solid var(--primary-orange);
    padding-right: 5px;
    display: inline-block;
    width: 100%;
}

.typing-title.typed {
    border-right: none;
    animation: none;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.step {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-dark);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    background: var(--bg-card-hover);
}

.step-highlight {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ffc87a 100%);
    color: var(--bg-dark);
    border: none;
}

.step-highlight:hover {
    background: linear-gradient(135deg, #e09a40 0%, #f0b85a 100%);
}

.step-highlight .step-number {
    background: var(--bg-dark);
    color: var(--primary-orange);
}

.step-highlight h3 {
    color: #000000 !important;
}

.step-highlight p,
.step-highlight .step-content p {
    color: #000000;
}

.step-highlight .step-list li {
    color: #000000;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
}

.step-content {
    margin-bottom: 25px;
}

.step-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

.step-list {
    list-style: none;
    margin-top: 15px;
}

.step-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

.step-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

.step-highlight .step-list li::before {
    color: var(--bg-dark);
}

/* Progress Bar */
.progress-bar {
    background: #2a2a2a;
    border-radius: 10px;
    height: 12px;
    position: relative;
    overflow: hidden;
}

.progress {
    background: linear-gradient(90deg, var(--primary-orange), #ffc87a);
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease;
}

.progress-text {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Gallery Box */
.gallery-box {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-dark);
}

.gallery-box h3 {
    font-size: 28px;
    color: var(--text-white);
    margin-bottom: 20px;
}

.gallery-box p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-gray);
}

/* App Section */
.app-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.step-full {
    max-width: 600px;
    margin: 0 auto;
}

.cta-box {
    text-align: center;
    margin-top: 40px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #111111;
}

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

.contact-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-dark);
}

.contact-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 10px;
}

.contact-card a {
    font-size: 14px;
}

/* Footer */
.footer {
    background: #0d0d0d;
    color: var(--text-gray);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-dark);
}

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

.footer-col h4 {
    color: var(--text-white);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: var(--text-gray);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--primary-orange);
}

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

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

.social-links a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 8px 0;
    }

    .logo img {
        height: 55px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 71px;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
        border-bottom: 1px solid var(--border-dark);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .nav a {
        display: block;
        padding: 15px;
        text-align: center;
        background: var(--bg-card);
        border-radius: 10px;
    }

    /* Dropdown Mobile */
    .nav-dropdown > a::before {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .nav-dropdown.active > a::before {
        transform: translateY(-50%) rotate(-135deg);
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        margin-top: 10px;
        border: none;
        background: transparent;
        box-shadow: none;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 5px 0;
    }

    .dropdown-menu a {
        background: var(--bg-card-hover);
        margin: 5px 0;
        border-radius: 8px;
        font-size: 14px;
        padding: 12px;
        border-left: 3px solid var(--primary-orange);
    }

    .hero {
        padding: 130px 0 60px;
        background-position: 52% center;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-alert {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .offers-section {
        padding: 60px 0;
    }

    .section-subtitle {
        margin-top: -30px;
        margin-bottom: 40px;
        font-size: 16px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .offer-card {
        padding: 25px 20px;
        margin-bottom: 10px;
    }

    .process-section {
        padding: 60px 0 40px;
    }

    .gallery-box {
        padding: 30px 20px;
    }

    .gallery-box h3 {
        font-size: 22px;
    }

    .step {
        padding: 25px 20px;
    }

    .app-section {
        padding: 40px 0 60px;
    }

    .steps-container {
        margin-bottom: 30px;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 22px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Menu Toggle Animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Bouton Application */
.btn-install {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 177, 86, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 177, 86, 0);
    }
}

.install-fallback {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-gray);
}

.install-fallback strong {
    color: var(--primary-orange);
}

/* Warning Section - No-Code */
.warning-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #111 100%);
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.warning-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.warning-card:hover {
    background: var(--bg-card-hover);
    border-color: #ff4444;
    transform: translateY(-5px);
}

.warning-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 68, 68, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #ff4444;
}

.warning-card h3 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.warning-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.warning-conclusion {
    background: linear-gradient(135deg, rgba(255, 177, 86, 0.1) 0%, rgba(255, 177, 86, 0.05) 100%);
    border: 1px solid var(--primary-orange);
    border-radius: 16px;
    padding: 40px;
    margin-top: 50px;
    text-align: center;
}

.warning-conclusion h3 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.warning-conclusion p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Warning Section Responsive */
@media (max-width: 992px) {
    .warning-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .warning-grid {
        grid-template-columns: 1fr;
    }

    .warning-conclusion {
        padding: 25px;
    }

    .warning-conclusion h3 {
        font-size: 1.3rem;
    }

    .warning-conclusion p {
        font-size: 1rem;
    }
}

/* Prix mensuel */
.offer-price-monthly {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: -5px;
    margin-bottom: 10px;
}

/* Bloc Gestion Mensuelle dans les offres */
.offer-maintenance {
    background: rgba(255, 177, 86, 0.08);
    border: 1px solid rgba(255, 177, 86, 0.3);
    border-radius: 10px;
    padding: 18px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.maintenance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.maintenance-label {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.95rem;
}

.maintenance-price {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
}

.maintenance-info {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-bottom: 12px;
    font-style: italic;
}

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

.maintenance-features li {
    color: var(--text-gray);
    font-size: 0.85rem;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.maintenance-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-size: 0.8rem;
}

/* Inclut offre précédente */
.offer-includes {
    background: rgba(255, 177, 86, 0.15);
    color: var(--primary-orange);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
}

/* Inclut gestion précédente */
.maintenance-includes {
    background: rgba(255, 177, 86, 0.1);
    color: var(--primary-orange);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    text-align: center;
}

/* Roue de la fortune */
.wheel-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #FFB347, #FFCC70);
    color: #1a1a1a;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 5px 25px rgba(255, 179, 71, 0.5);
    z-index: 1000;
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
}

.wheel-trigger:hover {
    transform: scale(1.05);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(255, 179, 71, 0.5); }
    50% { box-shadow: 0 5px 35px rgba(255, 204, 112, 0.7); }
}

.wheel-icon {
    font-size: 24px;
}

.wheel-text {
    font-weight: 600;
    white-space: nowrap;
}

.wheel-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.wheel-modal.active {
    display: flex;
}

.wheel-modal-content {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
}

.wheel-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s;
}

.wheel-close:hover {
    color: var(--text-white);
}

.wheel-container h3 {
    color: var(--text-white);
    font-size: 24px;
    margin-bottom: 10px;
}

.wheel-subtitle {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.wheel-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.wheel-pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid var(--primary-orange);
    z-index: 10;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
}

#wheelCanvas {
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.3);
}

.wheel-spin-btn {
    background: linear-gradient(135deg, var(--primary-orange), #e09a40);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.wheel-spin-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
}

.wheel-spin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.wheel-form h3 {
    color: var(--primary-orange);
    font-size: 28px;
    margin-bottom: 15px;
}

.wheel-prize {
    color: var(--text-white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 10px;
    border: 1px solid var(--primary-orange);
}

.prize-note {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 15px;
    line-height: 1.5;
    text-align: left;
}

.wheel-form-text {
    color: var(--text-gray);
    margin-bottom: 20px;
}

#prizeForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#prizeEmail,
#prizePrice {
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--bg-dark);
    color: var(--text-white);
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

#prizeEmail:focus,
#prizePrice:focus {
    outline: none;
    border-color: var(--primary-orange);
}

#prizePrice {
    margin-top: 10px;
}

.wheel-submit-btn {
    background: linear-gradient(135deg, var(--primary-orange), #e09a40);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.wheel-submit-btn:hover {
    transform: scale(1.02);
}

.wheel-success h3 {
    color: #4CAF50;
    font-size: 28px;
    margin-bottom: 15px;
}

.wheel-success p {
    color: var(--text-gray);
    margin-bottom: 25px;
}

.wheel-close-btn {
    background: var(--bg-card-hover);
    color: var(--text-white);
    border: 1px solid var(--border-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.wheel-close-btn:hover {
    background: var(--border-color);
}

@media (max-width: 480px) {
    .wheel-trigger {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
        font-size: 14px;
    }

    .wheel-text {
        display: none;
    }

    .wheel-modal-content {
        padding: 30px 20px;
    }

    #wheelCanvas {
        width: 250px;
        height: 250px;
    }
}
