*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--primary-dark: #0a1628;
--primary-blue: #0d2137;
--accent-gold: #ffd700;
--accent-yellow: #ffb800;
--accent-red: #e63946;
--whatsapp-green: #25D366;
--text-white: #ffffff;
--text-light: #b0c4de;
--gradient-gold: linear-gradient(135deg, #ffd700, #ffb800, #ff9500);
--gradient-blue: linear-gradient(135deg, #0d2137, #1a3a5c);
--gradient-red: linear-gradient(135deg, #e63946, #c62828);
--shadow-lg: 0 25px 60px rgba(0,0,0,0.4);
--shadow-md: 0 15px 40px rgba(0,0,0,0.3);
--shadow-gold: 0 10px 30px rgba(255,215,0,0.3);
--radius-lg: 20px;
--radius-md: 12px;
--radius-sm: 8px;
}

html {
scroll-behavior: smooth;
font-size: 16px;
}

body {
font-family: 'Poppins', sans-serif;
background-color: var(--primary-dark);
color: var(--text-white);
overflow-x: hidden;
line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--primary-dark); }
::-webkit-scrollbar-thumb { background: var(--accent-gold); border-radius: 4px; }

/* ===== NAVBAR ===== */
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
padding: 15px 0;
transition: all 0.4s ease;
background: transparent;
}

.navbar.scrolled {
background: rgba(10, 22, 40, 0.95);
backdrop-filter: blur(20px);
box-shadow: 0 4px 30px rgba(0,0,0,0.3);
padding: 10px 0;
}

.nav-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 20px;
display: flex;
align-items: center;
justify-content: space-between;
}

.nav-logo {
display: flex;
align-items: center;
gap: 12px;
text-decoration: none;
}

.nav-logo img {
width: 50px;
height: 50px;
border-radius: 12px;
border: 2px solid var(--accent-gold);
}

.nav-logo-text {
font-family: 'Montserrat', sans-serif;
font-weight: 900;
font-size: 1.8rem;
background: var(--gradient-gold);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.nav-logo-text span {
font-weight: 700;
-webkit-text-fill-color: var(--text-white);
}

.nav-menu {
display: flex;
align-items: center;
gap: 8px;
list-style: none;
}

.nav-link {
color: var(--text-light);
text-decoration: none;
padding: 10px 18px;
border-radius: var(--radius-sm);
font-weight: 500;
font-size: 0.9rem;
transition: all 0.3s ease;
position: relative;
}

.nav-link:hover, .nav-link.active {
color: var(--accent-gold);
background: rgba(255, 215, 0, 0.1);
}

.nav-cta {
background: var(--gradient-gold);
color: var(--primary-dark) !important;
font-weight: 700 !important;
padding: 12px 28px !important;
border-radius: 50px !important;
box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
transform: translateY(-2px);
box-shadow: 0 15px 40px rgba(255,215,0,0.4);
background: var(--gradient-gold) !important;
}

.hamburger {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
padding: 10px;
z-index: 1001;
}

.hamburger span {
width: 28px;
height: 3px;
background: var(--accent-gold);
border-radius: 3px;
transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO SECTION ===== */
.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
overflow: hidden;
padding-top: 80px;
}

.hero-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
}

.hero-bg img {
width: 100%;
height: 100%;
object-fit: cover;
filter: brightness(0.3);
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(180deg, 
rgba(10,22,40,0.7) 0%, 
rgba(10,22,40,0.5) 40%, 
rgba(10,22,40,0.8) 80%,
rgba(10,22,40,1) 100%);
z-index: 1;
}

.hero-particles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
overflow: hidden;
}

.particle {
position: absolute;
width: 4px;
height: 4px;
background: var(--accent-gold);
border-radius: 50%;
opacity: 0;
animation: floatParticle 6s infinite;
}

@keyframes floatParticle {
0% { opacity: 0; transform: translateY(100vh) scale(0); }
20% { opacity: 0.8; }
80% { opacity: 0.3; }
100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

.hero-content {
position: relative;
z-index: 2;
max-width: 1400px;
margin: 0 auto;
padding: 0 20px;
width: 100%;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.hero-text {
animation: slideInLeft 1s ease;
}

@keyframes slideInLeft {
from { opacity: 0; transform: translateX(-60px); }
to { opacity: 1; transform: translateX(0); }
}

.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(37, 211, 102, 0.15);
border: 1px solid var(--whatsapp-green);
padding: 8px 20px;
border-radius: 50px;
font-size: 0.85rem;
font-weight: 600;
color: var(--whatsapp-green);
margin-bottom: 24px;
}

.hero-badge svg {
width: 18px;
height: 18px;
}

.hero-title {
font-family: 'Montserrat', sans-serif;
font-size: 4.5rem;
font-weight: 900;
line-height: 1.05;
margin-bottom: 10px;
}

.hero-title .title-ba {
color: var(--text-white);
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-title .title-sambue {
background: var(--gradient-gold);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
filter: drop-shadow(2px 2px 4px rgba(255,184,0,0.4));
}

.hero-subtitle {
font-size: 2rem;
font-weight: 300;
font-style: italic;
color: var(--text-light);
margin-bottom: 8px;
}

.hero-subtitle-highlight {
font-size: 1.6rem;
font-weight: 700;
color: var(--text-white);
background: var(--gradient-red);
padding: 4px 20px;
border-radius: var(--radius-sm);
display: inline-block;
margin-bottom: 20px;
}

.hero-subtitle-highlight .wa-text {
color: var(--whatsapp-green);
}

.hero-desc {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 30px;
max-width: 500px;
}

.hero-phone {
display: flex;
align-items: center;
gap: 16px;
background: var(--gradient-gold);
padding: 16px 30px;
border-radius: 60px;
margin-bottom: 30px;
box-shadow: var(--shadow-gold);
cursor: pointer;
transition: transform 0.3s ease;
text-decoration: none;
width: fit-content;
}

.hero-phone:hover { transform: scale(1.05); }

.hero-phone-label {
font-size: 0.85rem;
font-weight: 600;
color: var(--primary-dark);
opacity: 0.8;
}

.hero-phone-number {
font-size: 1.4rem;
font-weight: 800;
color: var(--primary-dark);
}

.hero-buttons {
display: flex;
gap: 16px;
flex-wrap: wrap;
}

.btn-primary {
background: var(--gradient-gold);
color: var(--primary-dark);
padding: 16px 36px;
border-radius: 50px;
font-weight: 700;
font-size: 1rem;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 10px;
transition: all 0.3s ease;
box-shadow: var(--shadow-gold);
border: none;
cursor: pointer;
}

.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 20px 50px rgba(255,215,0,0.4);
}

.btn-secondary {
background: transparent;
color: var(--text-white);
padding: 16px 36px;
border-radius: 50px;
font-weight: 600;
font-size: 1rem;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 10px;
transition: all 0.3s ease;
border: 2px solid rgba(255,255,255,0.3);
cursor: pointer;
}

.btn-secondary:hover {
border-color: var(--accent-gold);
color: var(--accent-gold);
background: rgba(255,215,0,0.1);
}

.hero-image {
position: relative;
animation: slideInRight 1s ease;
}

@keyframes slideInRight {
from { opacity: 0; transform: translateX(60px); }
to { opacity: 1; transform: translateX(0); }
}

.hero-image img {
width: 100%;
max-width: 600px;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg);
}

.hero-float-card {
position: absolute;
background: rgba(10,22,40,0.9);
backdrop-filter: blur(20px);
border: 1px solid rgba(255,215,0,0.3);
border-radius: var(--radius-md);
padding: 16px 24px;
display: flex;
align-items: center;
gap: 12px;
animation: floatCard 3s ease-in-out infinite;
}

.hero-float-card.card-1 {
top: 10%;
right: -20px;
animation-delay: 0s;
}

.hero-float-card.card-2 {
bottom: 15%;
left: -30px;
animation-delay: 1.5s;
}

@keyframes floatCard {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}

.float-icon {
width: 45px;
height: 45px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
}

.float-icon.green { background: rgba(37,211,102,0.2); }
.float-icon.gold { background: rgba(255,215,0,0.2); }

.float-text strong {
display: block;
font-size: 0.85rem;
color: var(--text-white);
}

.float-text small {
font-size: 0.75rem;
color: var(--text-light);
}

/* ===== SECTION COMMON ===== */
.section {
padding: 100px 20px;
position: relative;
}

.section-container {
max-width: 1400px;
margin: 0 auto;
}

.section-header {
text-align: center;
margin-bottom: 60px;
}

.section-label {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(255,215,0,0.1);
border: 1px solid rgba(255,215,0,0.3);
padding: 6px 20px;
border-radius: 50px;
font-size: 0.85rem;
font-weight: 600;
color: var(--accent-gold);
margin-bottom: 16px;
}

.section-title {
font-family: 'Montserrat', sans-serif;
font-size: 3rem;
font-weight: 800;
margin-bottom: 16px;
line-height: 1.2;
}

.section-title .highlight {
background: var(--gradient-gold);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.section-desc {
font-size: 1.1rem;
color: var(--text-light);
max-width: 600px;
margin: 0 auto;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
background: var(--primary-dark);
position: relative;
}

.how-it-works::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.steps-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
position: relative;
}

.steps-grid::before {
content: '';
position: absolute;
top: 60px;
left: 15%;
right: 15%;
height: 3px;
background: linear-gradient(90deg, var(--accent-gold), var(--whatsapp-green), var(--accent-gold));
border-radius: 3px;
z-index: 0;
}

.step-card {
text-align: center;
position: relative;
z-index: 1;
padding: 40px 20px;
background: rgba(13,33,55,0.5);
border: 1px solid rgba(255,215,0,0.15);
border-radius: var(--radius-lg);
transition: all 0.4s ease;
}

.step-card:hover {
transform: translateY(-10px);
border-color: var(--accent-gold);
box-shadow: 0 20px 60px rgba(255,215,0,0.1);
}

.step-number {
width: 70px;
height: 70px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
font-size: 1.5rem;
font-weight: 800;
position: relative;
}

.step-number.blue {
background: linear-gradient(135deg, #1a5fb4, #3584e4);
color: white;
}

.step-number.green {
background: linear-gradient(135deg, #25D366, #128C7E);
color: white;
}

.step-number.orange {
background: linear-gradient(135deg, #ff9500, #e63946);
color: white;
}

.step-number.whatsapp {
background: linear-gradient(135deg, #25D366, #075e54);
color: white;
}

.step-icon {
font-size: 2rem;
margin-bottom: 10px;
}

.step-title {
font-weight: 700;
font-size: 1.1rem;
margin-bottom: 8px;
color: var(--text-white);
}

.step-desc {
font-size: 0.9rem;
color: var(--text-light);
line-height: 1.6;
}

/* ===== FEATURES ===== */
.features {
background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-blue) 50%, var(--primary-dark) 100%);
}

.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.feature-card {
background: rgba(13,33,55,0.6);
border: 1px solid rgba(255,215,0,0.1);
border-radius: var(--radius-lg);
padding: 40px 30px;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}

.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: var(--gradient-gold);
transform: scaleX(0);
transition: transform 0.4s ease;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
transform: translateY(-8px);
border-color: rgba(255,215,0,0.3);
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.feature-icon {
width: 70px;
height: 70px;
border-radius: 18px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
margin-bottom: 20px;
}

.feature-icon.icon-shield { background: rgba(37,211,102,0.15); }
.feature-icon.icon-lock { background: rgba(255,215,0,0.15); }
.feature-icon.icon-speed { background: rgba(255,149,0,0.15); }
.feature-icon.icon-analytics { background: rgba(59,130,246,0.15); }
.feature-icon.icon-global { background: rgba(168,85,247,0.15); }
.feature-icon.icon-support { background: rgba(236,72,153,0.15); }

.feature-title {
font-size: 1.3rem;
font-weight: 700;
margin-bottom: 12px;
}

.feature-desc {
font-size: 0.95rem;
color: var(--text-light);
line-height: 1.7;
}

/* ===== PRICING ===== */
.pricing {
background: var(--primary-dark);
position: relative;
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
align-items: stretch;
}

.pricing-card {
background: rgba(13,33,55,0.6);
border: 2px solid rgba(255,255,255,0.1);
border-radius: var(--radius-lg);
padding: 40px 30px;
text-align: center;
position: relative;
transition: all 0.4s ease;
display: flex;
flex-direction: column;
}

.pricing-card:hover {
transform: translateY(-10px);
border-color: var(--accent-gold);
}

.pricing-card.featured {
border-color: var(--accent-gold);
background: linear-gradient(180deg, rgba(255,215,0,0.08) 0%, rgba(13,33,55,0.6) 100%);
transform: scale(1.05);
}

.pricing-card.featured:hover {
transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
position: absolute;
top: -14px;
left: 50%;
transform: translateX(-50%);
background: var(--gradient-gold);
color: var(--primary-dark);
padding: 6px 24px;
border-radius: 50px;
font-size: 0.8rem;
font-weight: 700;
}

.pricing-icon {
width: 80px;
height: 80px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 24px;
font-size: 2.2rem;
}

.pricing-icon.red { background: linear-gradient(135deg, #e63946, #c62828); }
.pricing-icon.blue { background: linear-gradient(135deg, #3584e4, #1a5fb4); }
.pricing-icon.gold { background: linear-gradient(135deg, #ffd700, #ffb800); }

.pricing-name {
font-size: 1.2rem;
font-weight: 700;
margin-bottom: 4px;
}

.pricing-sub {
font-size: 0.85rem;
color: var(--text-light);
margin-bottom: 20px;
}

.pricing-amount {
font-family: 'Montserrat', sans-serif;
font-size: 3.5rem;
font-weight: 900;
margin-bottom: 4px;
}

.pricing-amount .currency { font-size: 1.5rem; vertical-align: super; }
.pricing-amount.free { color: var(--whatsapp-green); }
.pricing-amount.import { color: var(--accent-gold); }
.pricing-amount.commission { color: var(--accent-red); }

.pricing-label {
font-size: 0.8rem;
font-weight: 600;
padding: 4px 16px;
border-radius: 50px;
display: inline-block;
margin-bottom: 24px;
}

.pricing-label.green { background: rgba(37,211,102,0.15); color: var(--whatsapp-green); }
.pricing-label.blue-label { background: rgba(53,132,228,0.15); color: #3584e4; }
.pricing-label.red-label { background: rgba(230,57,70,0.15); color: var(--accent-red); }

.pricing-features {
list-style: none;
text-align: left;
margin-bottom: 30px;
flex-grow: 1;
}

.pricing-features li {
padding: 10px 0;
font-size: 0.9rem;
color: var(--text-light);
display: flex;
align-items: flex-start;
gap: 10px;
border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li .check {
color: var(--whatsapp-green);
font-weight: 700;
font-size: 1.1rem;
flex-shrink: 0;
}

.pricing-btn {
width: 100%;
padding: 16px;
border-radius: 50px;
font-weight: 700;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: block;
text-align: center;
border: none;
}

.pricing-btn.gold-btn {
background: var(--gradient-gold);
color: var(--primary-dark);
box-shadow: var(--shadow-gold);
}

.pricing-btn.gold-btn:hover {
transform: translateY(-3px);
box-shadow: 0 20px 50px rgba(255,215,0,0.4);
}

.pricing-btn.outline-btn {
background: transparent;
color: var(--text-white);
border: 2px solid rgba(255,255,255,0.2);
}

.pricing-btn.outline-btn:hover {
border-color: var(--accent-gold);
color: var(--accent-gold);
}

/* ===== CTA WHATSAPP ===== */
.cta-section {
padding: 80px 20px;
position: relative;
overflow: hidden;
}

.cta-bg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(37,211,102,0.15) 0%, rgba(10,22,40,0.9) 50%, rgba(255,215,0,0.1) 100%);
}

.cta-content {
position: relative;
z-index: 2;
max-width: 900px;
margin: 0 auto;
text-align: center;
}

.cta-title {
font-family: 'Montserrat', sans-serif;
font-size: 2.2rem;
font-weight: 800;
margin-bottom: 16px;
}

.cta-desc {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 30px;
}

.cta-phone-box {
display: inline-flex;
align-items: center;
gap: 16px;
background: linear-gradient(135deg, #25D366, #128C7E);
padding: 20px 40px;
border-radius: 60px;
box-shadow: 0 20px 60px rgba(37,211,102,0.3);
transition: transform 0.3s ease;
text-decoration: none;
color: white;
}

.cta-phone-box:hover { transform: scale(1.05); }

.cta-phone-box svg { width: 30px; height: 30px; }

.cta-phone-text {
font-size: 0.85rem;
opacity: 0.9;
}

.cta-phone-num {
font-size: 1.5rem;
font-weight: 800;
}

/* ===== PAYMENT ===== */
.payment-section {
background: linear-gradient(180deg, var(--primary-dark), var(--primary-blue));
padding: 80px 20px;
}

.payment-logos {
display: flex;
justify-content: center;
align-items: center;
gap: 60px;
flex-wrap: wrap;
margin-top: 40px;
}

.payment-logo {
width: 180px;
height: 80px;
background: rgba(255,255,255,0.95);
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
padding: 15px 25px;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.payment-logo:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.payment-logo img {
max-width: 100%;
max-height: 50px;
object-fit: contain;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
background: var(--primary-dark);
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.testimonial-card {
background: rgba(13,33,55,0.5);
border: 1px solid rgba(255,255,255,0.08);
border-radius: var(--radius-lg);
padding: 30px;
transition: all 0.3s ease;
}

.testimonial-card:hover {
border-color: rgba(255,215,0,0.2);
transform: translateY(-5px);
}

.testimonial-stars {
color: var(--accent-gold);
font-size: 1.1rem;
margin-bottom: 16px;
}

.testimonial-text {
font-size: 0.95rem;
color: var(--text-light);
line-height: 1.7;
margin-bottom: 20px;
font-style: italic;
}

.testimonial-author {
display: flex;
align-items: center;
gap: 12px;
}

.testimonial-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
background: var(--gradient-gold);
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
color: var(--primary-dark);
font-size: 1.1rem;
}

.testimonial-name {
font-weight: 600;
font-size: 0.95rem;
}

.testimonial-role {
font-size: 0.8rem;
color: var(--text-light);
}

/* ===== CONTACT ===== */
.contact-section {
background: linear-gradient(180deg, var(--primary-dark), var(--primary-blue));
}

.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: start;
}

.contact-info {
display: flex;
flex-direction: column;
gap: 30px;
}

.contact-item {
display: flex;
align-items: flex-start;
gap: 20px;
padding: 24px;
background: rgba(13,33,55,0.5);
border: 1px solid rgba(255,255,255,0.08);
border-radius: var(--radius-md);
transition: all 0.3s ease;
}

.contact-item:hover {
border-color: rgba(255,215,0,0.2);
transform: translateX(5px);
}

.contact-icon {
width: 55px;
height: 55px;
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
flex-shrink: 0;
}

.contact-icon.icon-web { background: rgba(53,132,228,0.15); }
.contact-icon.icon-mail { background: rgba(230,57,70,0.15); }
.contact-icon.icon-phone { background: rgba(37,211,102,0.15); }
.contact-icon.icon-loc { background: rgba(168,85,247,0.15); }

.contact-label {
font-size: 0.85rem;
color: var(--text-light);
margin-bottom: 4px;
}

.contact-value {
font-size: 1.05rem;
font-weight: 600;
color: var(--text-white);
}

.contact-value a {
color: var(--text-white);
text-decoration: none;
transition: color 0.3s;
}

.contact-value a:hover { color: var(--accent-gold); }

.contact-form {
background: rgba(13,33,55,0.5);
border: 1px solid rgba(255,255,255,0.1);
border-radius: var(--radius-lg);
padding: 40px;
}

.form-title {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 24px;
}

.form-group {
margin-bottom: 20px;
}

.form-label {
display: block;
font-size: 0.85rem;
font-weight: 600;
margin-bottom: 8px;
color: var(--text-light);
}

.form-input, .form-textarea, .form-select {
width: 100%;
padding: 14px 18px;
background: rgba(10,22,40,0.8);
border: 1px solid rgba(255,255,255,0.1);
border-radius: var(--radius-sm);
color: var(--text-white);
font-family: 'Poppins', sans-serif;
font-size: 0.95rem;
transition: all 0.3s ease;
outline: none;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
border-color: var(--accent-gold);
box-shadow: 0 0 0 3px rgba(255,215,0,0.1);
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-select option { background: var(--primary-dark); }

.form-submit {
width: 100%;
padding: 16px;
background: var(--gradient-gold);
color: var(--primary-dark);
border: none;
border-radius: 50px;
font-weight: 700;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
font-family: 'Poppins', sans-serif;
}

.form-submit:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-gold);
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
background: linear-gradient(135deg, rgba(255,215,0,0.08) 0%, var(--primary-dark) 50%, rgba(37,211,102,0.08) 100%);
padding: 80px 20px;
}

.newsletter-container {
max-width: 700px;
margin: 0 auto;
text-align: center;
}

.newsletter-title {
font-family: 'Montserrat', sans-serif;
font-size: 2.2rem;
font-weight: 800;
margin-bottom: 12px;
}

.newsletter-desc {
font-size: 1rem;
color: var(--text-light);
margin-bottom: 30px;
}

.newsletter-form {
display: flex;
gap: 12px;
max-width: 550px;
margin: 0 auto;
}

.newsletter-input {
flex: 1;
padding: 16px 24px;
background: rgba(10,22,40,0.8);
border: 2px solid rgba(255,255,255,0.1);
border-radius: 50px;
color: var(--text-white);
font-family: 'Poppins', sans-serif;
font-size: 0.95rem;
outline: none;
transition: all 0.3s ease;
}

.newsletter-input:focus {
border-color: var(--accent-gold);
}

.newsletter-btn {
padding: 16px 36px;
background: var(--gradient-gold);
color: var(--primary-dark);
border: none;
border-radius: 50px;
font-weight: 700;
font-size: 0.95rem;
cursor: pointer;
transition: all 0.3s ease;
white-space: nowrap;
font-family: 'Poppins', sans-serif;
}

.newsletter-btn:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-gold);
}

/* ===== LEGAL ===== */
.legal-section {
background: var(--primary-dark);
border-top: 1px solid rgba(255,255,255,0.05);
}

.legal-content {
max-width: 800px;
margin: 0 auto;
}

.legal-block {
margin-bottom: 30px;
}

.legal-block h3 {
font-size: 1.2rem;
font-weight: 700;
color: var(--accent-gold);
margin-bottom: 12px;
}

.legal-block p {
font-size: 0.9rem;
color: var(--text-light);
line-height: 1.8;
}

.legal-tabs {
display: flex;
gap: 8px;
margin-bottom: 30px;
flex-wrap: wrap;
justify-content: center;
}

.legal-tab {
padding: 10px 24px;
border-radius: 50px;
font-size: 0.85rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.1);
color: var(--text-light);
}

.legal-tab.active {
background: var(--gradient-gold);
color: var(--primary-dark);
border-color: var(--accent-gold);
}

.legal-tab:hover:not(.active) {
border-color: var(--accent-gold);
color: var(--accent-gold);
}

.legal-panel { display: none; }
.legal-panel.active { display: block; }

/* ===== FAQ ===== */
.faq-section {
background: linear-gradient(180deg, var(--primary-dark), var(--primary-blue));
}

.faq-list {
max-width: 800px;
margin: 0 auto;
}

.faq-item {
background: rgba(13,33,55,0.5);
border: 1px solid rgba(255,255,255,0.08);
border-radius: var(--radius-md);
margin-bottom: 12px;
overflow: hidden;
transition: all 0.3s ease;
}

.faq-item:hover { border-color: rgba(255,215,0,0.2); }

.faq-question {
padding: 20px 24px;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
font-weight: 600;
font-size: 1rem;
transition: color 0.3s;
}

.faq-question:hover { color: var(--accent-gold); }

.faq-toggle {
font-size: 1.5rem;
color: var(--accent-gold);
transition: transform 0.3s ease;
flex-shrink: 0;
margin-left: 16px;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease;
}

.faq-answer-inner {
padding: 0 24px 20px;
font-size: 0.9rem;
color: var(--text-light);
line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 300px; }

/* ===== FOOTER ===== */
.footer {
background: linear-gradient(180deg, var(--primary-blue), #050d18);
padding: 80px 20px 30px;
position: relative;
}

.footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.footer-grid {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 40px;
margin-bottom: 60px;
}

.footer-brand {
max-width: 350px;
}

.footer-logo {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 20px;
}

.footer-logo img {
width: 45px;
height: 45px;
border-radius: 10px;
border: 2px solid var(--accent-gold);
}

.footer-logo-text {
font-family: 'Montserrat', sans-serif;
font-size: 1.5rem;
font-weight: 900;
background: var(--gradient-gold);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.footer-desc {
font-size: 0.9rem;
color: var(--text-light);
line-height: 1.7;
margin-bottom: 24px;
}

.footer-social {
display: flex;
gap: 12px;
}

.social-link {
width: 42px;
height: 42px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.1);
color: var(--text-light);
text-decoration: none;
font-size: 1.1rem;
transition: all 0.3s ease;
}

.social-link:hover {
background: var(--accent-gold);
color: var(--primary-dark);
border-color: var(--accent-gold);
transform: translateY(-3px);
}

.footer-heading {
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 20px;
color: var(--text-white);
}

.footer-links {
list-style: none;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
color: var(--text-light);
text-decoration: none;
font-size: 0.9rem;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 8px;
}

.footer-links a:hover {
color: var(--accent-gold);
transform: translateX(5px);
}

.footer-bottom {
max-width: 1400px;
margin: 0 auto;
padding-top: 30px;
border-top: 1px solid rgba(255,255,255,0.05);
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 16px;
}

.footer-copyright {
font-size: 0.85rem;
color: var(--text-light);
}

.footer-bottom-links {
display: flex;
gap: 24px;
}

.footer-bottom-links a {
font-size: 0.85rem;
color: var(--text-light);
text-decoration: none;
transition: color 0.3s;
}

.footer-bottom-links a:hover { color: var(--accent-gold); }

/* ===== STATS ===== */
.stats-section {
background: linear-gradient(135deg, rgba(255,215,0,0.05), var(--primary-dark));
padding: 60px 20px;
}

.stats-grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
}

.stat-item {
text-align: center;
padding: 30px 20px;
}

.stat-number {
font-family: 'Montserrat', sans-serif;
font-size: 3rem;
font-weight: 900;
background: var(--gradient-gold);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 8px;
}

.stat-label {
font-size: 0.9rem;
color: var(--text-light);
font-weight: 500;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
position: fixed;
top: 0;
right: -100%;
width: 300px;
height: 100vh;
background: rgba(10,22,40,0.98);
backdrop-filter: blur(20px);
z-index: 999;
padding: 80px 30px 30px;
transition: right 0.4s ease;
border-left: 1px solid rgba(255,215,0,0.2);
}

.mobile-menu.open { right: 0; }

.mobile-menu-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
z-index: 998;
opacity: 0;
pointer-events: none;
transition: opacity 0.4s ease;
}

.mobile-menu-overlay.open {
opacity: 1;
pointer-events: all;
}

.mobile-nav-link {
display: block;
padding: 14px 0;
color: var(--text-light);
text-decoration: none;
font-size: 1.1rem;
font-weight: 500;
border-bottom: 1px solid rgba(255,255,255,0.05);
transition: color 0.3s;
}

.mobile-nav-link:hover { color: var(--accent-gold); }

.mobile-cta {
display: block;
text-align: center;
padding: 16px;
background: var(--gradient-gold);
color: var(--primary-dark);
font-weight: 700;
border-radius: 50px;
text-decoration: none;
margin-top: 24px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 50px;
height: 50px;
border-radius: 50%;
background: var(--gradient-gold);
color: var(--primary-dark);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
cursor: pointer;
z-index: 100;
opacity: 0;
transform: translateY(20px);
transition: all 0.3s ease;
box-shadow: var(--shadow-gold);
border: none;
}

.back-to-top.visible {
opacity: 1;
transform: translateY(0);
}

.back-to-top:hover {
transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
opacity: 0;
transform: translateY(40px);
transition: all 0.7s ease;
}

.animate-on-scroll.animated {
opacity: 1;
transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
.hero-title { font-size: 3.5rem; }
.hero-content { gap: 40px; }
.features-grid { grid-template-columns: repeat(2, 1fr); }
.footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

@media (max-width: 1024px) {
.nav-menu { display: none; }
.hamburger { display: flex; }
.hero-content { grid-template-columns: 1fr; text-align: center; }
.hero-image { order: -1; }
.hero-image img { max-width: 500px; margin: 0 auto; }
.hero-phone { margin: 0 auto 30px; }
.hero-buttons { justify-content: center; }
.hero-float-card { display: none; }
.steps-grid { grid-template-columns: repeat(2, 1fr); }
.steps-grid::before { display: none; }
.pricing-grid { grid-template-columns: repeat(2, 1fr); }
.pricing-card.featured { transform: scale(1); }
.pricing-card.featured:hover { transform: translateY(-10px); }
.testimonials-grid { grid-template-columns: repeat(2, 1fr); }
.contact-grid { grid-template-columns: 1fr; }
.stats-grid { grid-template-columns: repeat(2, 1fr); }
.footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
.hero-title { font-size: 2.8rem; }
.hero-subtitle { font-size: 1.4rem; }
.section-title { font-size: 2.2rem; }
.steps-grid { grid-template-columns: 1fr 1fr; }
.features-grid { grid-template-columns: 1fr; }
.pricing-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
.testimonials-grid { grid-template-columns: 1fr; }
.newsletter-form { flex-direction: column; }
.newsletter-btn { width: 100%; }
.footer-grid { grid-template-columns: 1fr; }
.footer-bottom { flex-direction: column; text-align: center; }
.payment-logos { gap: 24px; }
.payment-logo { width: 140px; height: 65px; }
.cta-phone-box { flex-direction: column; gap: 8px; padding: 20px 30px; }
.cta-phone-num { font-size: 1.2rem; }
}

@media (max-width: 480px) {
html { font-size: 14px; }
.hero-title { font-size: 2.2rem; }
.hero-subtitle { font-size: 1.2rem; }
.hero-subtitle-highlight { font-size: 1.1rem; }
.section { padding: 60px 16px; }
.section-title { font-size: 1.8rem; }
.steps-grid { grid-template-columns: 1fr; }
.step-card { padding: 30px 20px; }
.pricing-card { padding: 30px 20px; }
.contact-form { padding: 24px; }
.hero-buttons { flex-direction: column; align-items: center; }
.btn-primary, .btn-secondary { width: 100%; justify-content: center; }
.stat-number { font-size: 2.2rem; }
.stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
.payment-logos { gap: 16px; }
.payment-logo { width: 120px; height: 55px; }
}

@media (min-width: 2560px) {
html { font-size: 20px; }
.section-container { max-width: 2000px; }
.hero-title { font-size: 5.5rem; }
.section-title { font-size: 4rem; }
.nav-container { max-width: 2000px; }
.footer-grid { max-width: 2000px; }
}

@media (min-width: 3840px) {
html { font-size: 28px; }
.section-container { max-width: 3000px; }
.hero-title { font-size: 7rem; }
.section-title { font-size: 5rem; }
}

/* ===== LOADING ===== */
.loader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--primary-dark);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
opacity: 0;
visibility: hidden;
}

.loader-content {
text-align: center;
}

.loader-logo {
font-family: 'Montserrat', sans-serif;
font-size: 2.5rem;
font-weight: 900;
background: var(--gradient-gold);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 20px;
}

.loader-bar {
width: 200px;
height: 4px;
background: rgba(255,255,255,0.1);
border-radius: 4px;
overflow: hidden;
margin: 0 auto;
}

.loader-bar-fill {
width: 0%;
height: 100%;
background: var(--gradient-gold);
border-radius: 4px;
animation: loadBar 1.5s ease forwards;
}

@keyframes loadBar {
to { width: 100%; }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(10,22,40,0.95);
backdrop-filter: blur(20px);
border-top: 1px solid rgba(255,215,0,0.2);
padding: 20px;
z-index: 900;
transform: translateY(100%);
transition: transform 0.5s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
flex-wrap: wrap;
}

.cookie-text {
font-size: 0.9rem;
color: var(--text-light);
flex: 1;
}

.cookie-buttons {
display: flex;
gap: 12px;
}

.cookie-accept {
padding: 10px 24px;
background: var(--gradient-gold);
color: var(--primary-dark);
border: none;
border-radius: 50px;
font-weight: 700;
cursor: pointer;
font-family: 'Poppins', sans-serif;
}

.cookie-decline {
padding: 10px 24px;
background: transparent;
color: var(--text-light);
border: 1px solid rgba(255,255,255,0.2);
border-radius: 50px;
font-weight: 600;
cursor: pointer;
font-family: 'Poppins', sans-serif;
}












<!-- =============================================
     CSS DU SLIDER
     ============================================= -->
/* ── Variables locales ─── */
:root {
    --s-gold: #ffd700;
    --s-gold-dark: #ffb800;
    --s-green: #25D366;
    --s-green-dark: #128C7E;
    --s-dark: #0a1628;
    --s-blue: #0d2137;
    --s-light: #b0c4de;
}

/* ─── Section wrapper ─── */
.slider-section {
    position: relative;
    padding: 90px 20px 80px;
    background: linear-gradient(180deg, var(--s-dark) 0%, var(--s-blue) 50%, var(--s-dark) 100%);
    overflow: hidden;
}

.slider-section::before,
.slider-section::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--s-gold), transparent);
    z-index: 2;
}
.slider-section::before { top: 0; }
.slider-section::after  { bottom: 0; }

/* ─── Décorations flottantes ─── */
.slider-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.slider-deco-1 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(255,215,0,.06) 0%, transparent 70%);
    top: -120px; right: -120px;
    animation: decoPulse 6s ease-in-out infinite;
}
.slider-deco-2 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(37,211,102,.05) 0%, transparent 70%);
    bottom: -80px; left: -80px;
    animation: decoPulse 6s ease-in-out 3s infinite;
}
@keyframes decoPulse {
    0%, 100% { transform: scale(1); opacity: .6; }
    50%      { transform: scale(1.15); opacity: 1; }
}

/* ─── Header ─── */
.slider-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}
.slider-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,215,0,.1);
    border: 1px solid rgba(255,215,0,.3);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--s-gold);
    margin-bottom: 14px;
}
.slider-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.2;
}
.slider-title .gold {
    background: linear-gradient(135deg, var(--s-gold), var(--s-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.slider-desc {
    font-size: 1.05rem;
    color: var(--s-light);
    max-width: 580px;
    margin: 0 auto;
}

/* ─── Wrapper & Viewport ─── */
.slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}
.slider-viewport {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.5);
    border: 2px solid rgba(255,215,0,.18);
    position: relative;
}
/* Bordure lumineuse animée */
.slider-viewport::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--s-gold), transparent 40%, var(--s-green) 60%, transparent, var(--s-gold));
    background-size: 200% 200%;
    z-index: -1;
    animation: borderShine 5s linear infinite;
    opacity: .45;
}
@keyframes borderShine {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ─── Track & Slides ─── */
.slider-track {
    display: flex;
    transition: transform .65s cubic-bezier(.25,.46,.45,.94);
    will-change: transform;
}
.slider-track.dragging { transition: none; cursor: grabbing; }

.slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16 / 7;
    overflow: hidden;
}
.slide-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}
.slide.active .slide-img { transform: scale(1.04); }

/* ─── Overlay ─── */
.slide-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(10,22,40,.88) 0%, rgba(10,22,40,.35) 45%, transparent 70%),
        linear-gradient(0deg, rgba(10,22,40,.75) 0%, transparent 35%);
    display: flex;
    align-items: center;
    padding: 0 55px;
}
.slide-body {
    max-width: 520px;
    opacity: 0;
    transform: translateY(35px);
    transition: all .6s ease .25s;
}
.slide.active .slide-body {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Contenu du slide ─── */
.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,215,0,.18);
    border: 1px solid rgba(255,215,0,.45);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--s-gold);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
}
.slide-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 14px;
    text-shadow: 2px 2px 10px rgba(0,0,0,.4);
}
.slide-heading .gold {
    background: linear-gradient(135deg, var(--s-gold), var(--s-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.slide-text {
    font-size: .97rem;
    color: var(--s-light);
    line-height: 1.7;
    margin-bottom: 22px;
}

/* ─── Boutons CTA ─── */
.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
    transition: all .3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
}
.slide-cta {
    background: linear-gradient(135deg, var(--s-gold), var(--s-gold-dark));
    color: var(--s-dark);
    box-shadow: 0 8px 30px rgba(255,215,0,.3);
}
.slide-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(255,215,0,.45);
}
.slide-cta span { transition: transform .3s ease; }
.slide-cta:hover span { transform: translateX(4px); }

.slide-cta.green {
    background: linear-gradient(135deg, var(--s-green), var(--s-green-dark));
    color: #fff;
    box-shadow: 0 8px 30px rgba(37,211,102,.3);
}
.slide-cta.green:hover { box-shadow: 0 15px 45px rgba(37,211,102,.45); }

/* ─── Flèches ─── */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(10,22,40,.65);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255,215,0,.25);
    color: var(--s-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
    z-index: 10;
}
.slider-arrow:hover {
    background: rgba(255,215,0,.15);
    border-color: var(--s-gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(255,215,0,.2);
}
.slider-prev { left: -26px; }
.slider-next { right: -26px; }

/* ─── Dots ─── */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}
.slider-dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    border: 2px solid rgba(255,255,255,.18);
    cursor: pointer;
    transition: all .4s ease;
    position: relative;
    padding: 0;
}
.slider-dot::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--s-gold);
    transform: scale(0);
    transition: transform .4s ease;
}
.slider-dot.active {
    border-color: var(--s-gold);
    background: rgba(255,215,0,.12);
    transform: scale(1.25);
}
.slider-dot.active::after { transform: scale(1); }
.slider-dot:hover:not(.active) {
    border-color: rgba(255,215,0,.4);
    background: rgba(255,215,0,.08);
}

/* ─── Compteur ─── */
.slider-counter {
    text-align: center;
    margin-top: 14px;
    font-size: .88rem;
    color: var(--s-light);
    font-weight: 600;
    letter-spacing: .5px;
}
.counter-current {
    color: var(--s-gold);
    font-size: 1.15rem;
    font-weight: 800;
}
.counter-sep { margin: 0 8px; opacity: .35; }

/* ─── Barre de progression ─── */
.slider-progress-track {
    width: 100%;
    max-width: 380px;
    height: 4px;
    background: rgba(255,255,255,.08);
    border-radius: 4px;
    margin: 18px auto 0;
    overflow: hidden;
}
.slider-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--s-gold), var(--s-gold-dark));
    border-radius: 4px;
    width: 0%;
    transition: width .05s linear;
}

/* ─── Miniatures ─── */
.slider-thumbs {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.slider-thumb {
    width: 130px; height: 78px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .35s ease;
    opacity: .45;
    position: relative;
}
.slider-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.slider-thumb .thumb-overlay {
    position: absolute; inset: 0;
    background: rgba(10,22,40,.5);
    transition: background .35s ease;
}
.slider-thumb.active {
    border-color: var(--s-gold);
    opacity: 1;
    transform: scale(1.07);
    box-shadow: 0 8px 28px rgba(255,215,0,.25);
}
.slider-thumb.active .thumb-overlay { background: transparent; }
.slider-thumb:hover:not(.active) {
    opacity: .75;
    border-color: rgba(255,215,0,.35);
}


/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

/* Tablette */
@media (max-width: 1024px) {
    .slide { aspect-ratio: 16 / 8; }
    .slide-overlay { padding: 0 40px; }
    .slide-heading { font-size: 1.9rem; }
    .slider-arrow { width: 46px; height: 46px; }
    .slider-prev { left: 10px; }
    .slider-next { right: 10px; }
    .slider-thumb { width: 110px; height: 66px; }
}

/* Mobile */
@media (max-width: 768px) {
    .slider-section { padding: 60px 16px 50px; }
    .slide { aspect-ratio: 16 / 10; }
    .slide-overlay {
        padding: 0 24px;
        align-items: flex-end;
        justify-content: flex-start;
        background:
            linear-gradient(0deg, rgba(10,22,40,.92) 0%, rgba(10,22,40,.5) 50%, transparent 100%);
    }
    .slide-heading { font-size: 1.45rem; }
    .slide-text { font-size: .88rem; margin-bottom: 16px; }
    .slide-cta { padding: 12px 24px; font-size: .84rem; }
    .slider-viewport { border-radius: 16px; }
    .slider-thumb { width: 80px; height: 52px; border-radius: 8px; }
    .slider-thumbs { gap: 10px; }
    .slider-arrow { width: 38px; height: 38px; }
    .slider-prev { left: 6px; }
    .slider-next { right: 6px; }
    .slider-arrow svg { width: 16px; height: 16px; }
}

/* Petit mobile */
@media (max-width: 480px) {
    .slide { aspect-ratio: 4 / 5; }
    .slide-overlay {
        padding: 0 20px 28px;
        background:
            linear-gradient(0deg, rgba(10,22,40,.96) 0%, rgba(10,22,40,.7) 55%, transparent 100%);
    }
    .slide-tag { font-size: .64rem; padding: 4px 12px; }
    .slide-heading { font-size: 1.25rem; }
    .slide-text { font-size: .8rem; }
    .slide-cta { padding: 10px 20px; font-size: .78rem; }
    .slider-thumb { width: 60px; height: 40px; }
    .slider-title { font-size: 1.5rem; }
}

/* 4K */
@media (min-width: 2560px) {
    .slider-wrapper { max-width: 2000px; }
    .slide { aspect-ratio: 16 / 6; }
    .slide-overlay { padding: 0 100px; }
    .slide-heading { font-size: 3.5rem; }
    .slide-text { font-size: 1.3rem; }
    .slider-thumb { width: 200px; height: 110px; }
}

/* 8K */
@media (min-width: 3840px) {
    .slider-wrapper { max-width: 3000px; }
    .slide { aspect-ratio: 16 / 5; }
    .slide-overlay { padding: 0 150px; }
    .slide-heading { font-size: 5rem; }
    .slide-text { font-size: 1.6rem; }
}







