:root {
--primary-green: #25D366;
--primary-dark-green: #128C7E;
--primary-blue: #075E54;
--accent-yellow: #FFD700;
--accent-orange: #FF6B00;
--accent-red: #DC3545;
--dark: #0a0a1a;
--dark-light: #12122a;
--white: #FFFFFF;
--gray-light: rgba(255,255,255,0.7);
--gradient-hero: linear-gradient(135deg, #0a1628 0%, #0d2137 30%, #0a2a1a 60%, #1a0a28 100%);
--gradient-green: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
--gradient-red: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
--gradient-yellow: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
--shadow-glow-green: 0 0 40px rgba(37, 211, 102, 0.3);
--shadow-glow-red: 0 0 40px rgba(255, 68, 68, 0.3);
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
font-family: 'Inter', sans-serif;
background: var(--dark);
color: var(--white);
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Poppins', sans-serif;
}

/* ========== HEADER ========== */
.header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
padding: 16px 0;
transition: all 0.4s ease;
}

.header.scrolled {
background: rgba(10, 10, 26, 0.95);
backdrop-filter: blur(20px);
padding: 10px 0;
box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header-inner {
max-width: 1320px;
margin: 0 auto;
padding: 0 32px;
display: flex;
align-items: center;
justify-content: space-between;
}

.logo {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
}

.logo-icon {
width: 46px;
height: 46px;
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
flex-shrink: 0;
}

.logo-icon::before {
content: '';
position: absolute;
inset: 0;
background: var(--gradient-green);
border-radius: 14px;
}

.logo-icon svg {
position: relative;
z-index: 1;
width: 24px;
height: 24px;
}

.logo-text {
font-family: 'Poppins', sans-serif;
font-weight: 800;
font-size: 22px;
color: white;
letter-spacing: -0.5px;
}

.logo-text span.to {
color: white;
}

.logo-text span.kabola {
background: linear-gradient(90deg, #FFD700, #FF6B00);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.logo-text .api-badge {
background: var(--gradient-yellow);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-weight: 900;
}

.nav {
display: flex;
align-items: center;
gap: 32px;
}

.nav a {
text-decoration: none;
color: rgba(255,255,255,0.7);
font-weight: 500;
font-size: 14px;
transition: color 0.3s ease;
position: relative;
}

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

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

.header-actions {
display: flex;
align-items: center;
gap: 14px;
}

.btn-whatsapp-header {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 24px;
background: var(--gradient-green);
color: white;
text-decoration: none;
font-weight: 600;
font-size: 13px;
border-radius: 10px;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-whatsapp-header:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

.btn-whatsapp-header svg {
width: 16px;
height: 16px;
fill: white;
}

.mobile-toggle {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
padding: 8px;
background: none;
border: none;
}

.mobile-toggle span {
width: 24px;
height: 2px;
background: white;
border-radius: 2px;
transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO ========== */
.hero {
min-height: 100vh;
background: var(--gradient-hero);
position: relative;
display: flex;
align-items: center;
overflow: hidden;
}

.hero-bg-effects {
position: absolute;
inset: 0;
overflow: hidden;
pointer-events: none;
}

.hero-orb {
position: absolute;
border-radius: 50%;
filter: blur(80px);
}

.hero-orb-green {
width: 500px;
height: 500px;
background: rgba(37,211,102,0.12);
top: -100px;
right: -100px;
animation: orbFloat 15s ease-in-out infinite;
}

.hero-orb-blue {
width: 400px;
height: 400px;
background: rgba(18,140,126,0.1);
bottom: -50px;
left: -100px;
animation: orbFloat 12s ease-in-out infinite reverse;
}

.hero-orb-yellow {
width: 250px;
height: 250px;
background: rgba(255,215,0,0.08);
top: 40%;
left: 30%;
animation: orbFloat 10s ease-in-out infinite;
}

@keyframes orbFloat {
0%, 100% { transform: translate(0, 0) scale(1); }
33% { transform: translate(30px, -40px) scale(1.05); }
66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-particles {
position: absolute;
inset: 0;
}

.particle {
position: absolute;
width: 3px;
height: 3px;
background: rgba(37,211,102,0.5);
border-radius: 50%;
animation: particleFloat linear infinite;
}

@keyframes particleFloat {
0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
10% { opacity: 1; }
90% { opacity: 1; }
100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-grid-bg {
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(37,211,102,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(37,211,102,0.03) 1px, transparent 1px);
background-size: 60px 60px;
}

.hero-content {
max-width: 1320px;
margin: 0 auto;
padding: 120px 32px 60px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
position: relative;
z-index: 2;
width: 100%;
}

.hero-left {
animation: heroSlideIn 1s ease forwards;
opacity: 0;
}

@keyframes heroSlideIn {
from { opacity: 0; transform: translateY(40px); }
to { opacity: 1; transform: translateY(0); }
}

.hero-main-title {
margin-bottom: 20px;
}

.hero-title-top {
display: flex;
align-items: center;
gap: 6px;
flex-wrap: wrap;
}

.title-to {
font-family: 'Poppins', sans-serif;
font-size: clamp(48px, 6vw, 72px);
font-weight: 900;
color: white;
line-height: 1;
}

.title-kabola {
font-family: 'Poppins', sans-serif;
font-size: clamp(48px, 6vw, 72px);
font-weight: 900;
background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
}

.title-api {
font-family: 'Poppins', sans-serif;
font-size: clamp(48px, 6vw, 72px);
font-weight: 900;
color: var(--primary-green);
line-height: 1;
text-shadow: 0 0 30px rgba(37,211,102,0.5);
}

.title-exclamation {
font-family: 'Poppins', sans-serif;
font-size: clamp(48px, 6vw, 72px);
font-weight: 900;
color: var(--accent-yellow);
line-height: 1;
animation: pulseExcl 2s ease-in-out infinite;
}

@keyframes pulseExcl {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.1); }
}

.hero-tagline {
font-size: clamp(18px, 2.5vw, 26px);
font-weight: 300;
color: rgba(255,255,255,0.85);
margin-bottom: 32px;
line-height: 1.4;
max-width: 500px;
}

.hero-tagline strong {
color: var(--primary-green);
font-weight: 600;
}

.hero-description {
background: linear-gradient(135deg, rgba(37,211,102,0.1), rgba(18,140,126,0.1));
border: 1px solid rgba(37,211,102,0.2);
border-radius: 16px;
padding: 24px;
margin-bottom: 32px;
}

.hero-description h3 {
font-size: 18px;
font-weight: 700;
color: var(--primary-green);
margin-bottom: 8px;
}

.hero-description p {
font-size: 15px;
color: rgba(255,255,255,0.7);
line-height: 1.7;
}

.hero-cta-group {
display: flex;
gap: 16px;
flex-wrap: wrap;
}

.btn-hero-main {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 16px 32px;
background: var(--gradient-green);
color: white;
text-decoration: none;
font-weight: 700;
font-size: 16px;
border-radius: 14px;
box-shadow: 0 8px 30px rgba(37,211,102,0.35);
transition: all 0.3s ease;
border: none;
cursor: pointer;
}

.btn-hero-main:hover {
transform: translateY(-3px);
box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}

.btn-hero-secondary {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 16px 32px;
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.15);
color: white;
text-decoration: none;
font-weight: 600;
font-size: 16px;
border-radius: 14px;
transition: all 0.3s ease;
cursor: pointer;
}

.btn-hero-secondary:hover {
background: rgba(255,255,255,0.12);
transform: translateY(-3px);
}

.hero-right {
position: relative;
animation: heroSlideIn 1s ease 0.3s forwards;
opacity: 0;
}

/* ========== WHATSAPP MESSAGE BUBBLES ========== */
.message-bubbles-container {
position: relative;
width: 100%;
max-width: 480px;
margin: 0 auto;
}

.phone-mockup {
width: 280px;
height: 520px;
background: #0a0a0a;
border-radius: 36px;
border: 3px solid rgba(255,255,255,0.1);
position: relative;
margin: 0 auto;
overflow: hidden;
box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.phone-notch {
width: 120px;
height: 28px;
background: #0a0a0a;
border-radius: 0 0 16px 16px;
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
z-index: 10;
}

.phone-screen {
position: absolute;
inset: 3px;
border-radius: 33px;
overflow: hidden;
background: linear-gradient(180deg, #075E54 0%, #128C7E 40%, #25D366 100%);
}

.wa-header {
background: #075E54;
padding: 36px 16px 12px;
display: flex;
align-items: center;
gap: 10px;
}

.wa-header-avatar {
width: 32px;
height: 32px;
border-radius: 50%;
background: var(--gradient-green);
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
font-weight: 700;
color: white;
}

.wa-header-name {
font-size: 14px;
font-weight: 600;
color: white;
}

.wa-messages {
padding: 12px;
display: flex;
flex-direction: column;
gap: 8px;
height: 340px;
overflow: hidden;
}

.wa-msg {
max-width: 85%;
padding: 8px 12px;
border-radius: 12px;
font-size: 11px;
line-height: 1.4;
animation: msgAppear 0.5s ease forwards;
opacity: 0;
}

.wa-msg-in {
background: white;
color: #333;
align-self: flex-start;
border-top-left-radius: 4px;
}

.wa-msg-out {
background: #DCF8C6;
color: #333;
align-self: flex-end;
border-top-right-radius: 4px;
}

.wa-msg-time {
font-size: 9px;
color: #999;
text-align: right;
margin-top: 4px;
}

.wa-msg-check {
color: #34B7F1;
font-weight: bold;
}

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

.wa-msg:nth-child(1) { animation-delay: 0.5s; }
.wa-msg:nth-child(2) { animation-delay: 1.2s; }
.wa-msg:nth-child(3) { animation-delay: 2s; }
.wa-msg:nth-child(4) { animation-delay: 2.8s; }
.wa-msg:nth-child(5) { animation-delay: 3.5s; }
.wa-msg:nth-child(6) { animation-delay: 4.2s; }

.phone-input {
position: absolute;
bottom: 8px;
left: 8px;
right: 8px;
display: flex;
align-items: center;
gap: 8px;
}

.phone-input-bar {
flex: 1;
height: 36px;
background: rgba(255,255,255,0.15);
border-radius: 20px;
display: flex;
align-items: center;
padding: 0 14px;
font-size: 11px;
color: rgba(255,255,255,0.5);
}

.phone-input-send {
width: 36px;
height: 36px;
background: var(--primary-green);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.phone-input-send svg {
width: 16px;
height: 16px;
fill: white;
}

/* Floating elements around phone */
.float-element {
position: absolute;
animation: floatElement 6s ease-in-out infinite;
}

.float-wa-icon {
top: 20px;
right: 20px;
width: 60px;
height: 60px;
background: var(--gradient-green);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 8px 25px rgba(37,211,102,0.4);
animation-delay: 0s;
}

.float-wa-icon svg {
width: 30px;
height: 30px;
fill: white;
}

.float-msg-bubble {
top: 80px;
left: -20px;
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.15);
border-radius: 16px;
padding: 12px 16px;
display: flex;
align-items: center;
gap: 10px;
animation-delay: 1.5s;
}

.float-msg-bubble-icon {
width: 32px;
height: 32px;
background: rgba(37,211,102,0.2);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
}

.float-msg-bubble-icon svg {
width: 16px;
height: 16px;
fill: var(--primary-green);
}

.float-msg-bubble-text {
font-size: 12px;
color: rgba(255,255,255,0.8);
font-weight: 500;
}

.float-check-bubble {
bottom: 80px;
right: -10px;
background: rgba(52,183,241,0.15);
border: 1px solid rgba(52,183,241,0.3);
border-radius: 14px;
padding: 10px 16px;
display: flex;
align-items: center;
gap: 8px;
animation-delay: 3s;
}

.float-check-bubble svg {
width: 20px;
height: 20px;
stroke: #34B7F1;
fill: none;
}

.float-check-bubble span {
font-size: 12px;
color: rgba(255,255,255,0.8);
font-weight: 500;
}

@keyframes floatElement {
0%, 100% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-15px) rotate(3deg); }
}

/* ========== PRICING BANNER ========== */
.pricing-banner {
position: relative;
z-index: 2;
max-width: 1320px;
margin: -40px auto 0;
padding: 0 32px;
}

.pricing-card {
background: linear-gradient(135deg, #ff4444 0%, #cc0000 50%, #ff6644 100%);
border-radius: 28px;
padding: 40px;
text-align: center;
position: relative;
overflow: hidden;
box-shadow: 0 20px 60px rgba(255,68,68,0.3);
}

.pricing-card::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1), transparent 60%);
}

.pricing-card > * {
position: relative;
z-index: 1;
}

.pricing-card-inner {
display: flex;
align-items: center;
justify-content: center;
gap: 40px;
flex-wrap: wrap;
}

.pricing-price {
text-align: center;
}

.pricing-zero {
font-family: 'Poppins', sans-serif;
font-size: 80px;
font-weight: 900;
color: white;
line-height: 1;
text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.pricing-cdf {
font-family: 'Poppins', sans-serif;
font-size: 36px;
font-weight: 800;
color: rgba(255,255,255,0.9);
line-height: 1;
}

.pricing-days {
font-family: 'Poppins', sans-serif;
font-size: 24px;
font-weight: 700;
color: rgba(255,255,255,0.8);
line-height: 1;
}

.pricing-text {
font-size: 18px;
font-weight: 600;
color: rgba(255,255,255,0.95);
max-width: 400px;
line-height: 1.6;
}

.pricing-subtext {
font-size: 14px;
color: rgba(255,255,255,0.7);
margin-top: 8px;
}

/* ========== PAYMENT METHODS ========== */
.payment-section {
max-width: 1320px;
margin: 40px auto;
padding: 0 32px;
text-align: center;
}

.payment-label {
font-size: 16px;
color: var(--accent-yellow);
font-weight: 600;
margin-bottom: 24px;
}

.payment-methods {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}

.payment-badge {
display: flex;
align-items: center;
gap: 8px;
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 14px;
padding: 12px 20px;
transition: all 0.3s ease;
}

.payment-badge:hover {
background: rgba(255,255,255,0.12);
transform: translateY(-3px);
}

.payment-badge-icon {
width: 36px;
height: 36px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
font-weight: 700;
flex-shrink: 0;
}

.payment-orange { background: #FF7900; color: white; }
.payment-mpesa { background: #4CAF50; color: white; }
.payment-airtel { background: #ED1C24; color: white; }
.payment-moov { background: #0066B3; color: white; }
.payment-mtn { background: #FFCC00; color: #333; }

.payment-badge-name {
font-size: 13px;
font-weight: 600;
color: rgba(255,255,255,0.8);
white-space: nowrap;
}

/* ========== FEATURES SECTION ========== */
.features-section {
padding: 100px 0;
position: relative;
}

.container {
max-width: 1320px;
margin: 0 auto;
padding: 0 32px;
}

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

.section-label {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(37,211,102,0.1);
border: 1px solid rgba(37,211,102,0.2);
padding: 8px 20px;
border-radius: 50px;
margin-bottom: 20px;
}

.section-label span {
color: var(--primary-green);
font-size: 13px;
font-weight: 600;
letter-spacing: 0.5px;
text-transform: uppercase;
}

.section-title {
font-size: clamp(32px, 4vw, 48px);
font-weight: 800;
color: white;
line-height: 1.2;
margin-bottom: 16px;
}

.section-title .highlight {
color: var(--primary-green);
}

.section-title .highlight-yellow {
color: var(--accent-yellow);
}

.section-desc {
font-size: 17px;
color: rgba(255,255,255,0.5);
max-width: 600px;
margin: 0 auto;
line-height: 1.7;
}

.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 28px;
}

.feature-card {
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 20px;
padding: 36px;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}

.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: var(--gradient-green);
transform: scaleX(0);
transition: transform 0.4s ease;
}

.feature-card:hover::before {
transform: scaleX(1);
}

.feature-card:hover {
background: rgba(255,255,255,0.06);
border-color: rgba(37,211,102,0.3);
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-icon {
width: 56px;
height: 56px;
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
font-size: 26px;
margin-bottom: 20px;
background: rgba(37,211,102,0.1);
transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
background: var(--gradient-green);
transform: scale(1.1);
}

.feature-card h3 {
font-size: 20px;
font-weight: 700;
color: white;
margin-bottom: 10px;
}

.feature-card p {
font-size: 14px;
color: rgba(255,255,255,0.5);
line-height: 1.7;
}

/* ========== HOW IT WORKS ========== */
.how-section {
padding: 100px 0;
background: rgba(255,255,255,0.02);
}

.steps-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
position: relative;
}

.steps-grid::before {
content: '';
position: absolute;
top: 48px;
left: 15%;
right: 15%;
height: 2px;
background: linear-gradient(90deg, transparent, rgba(37,211,102,0.3), rgba(37,211,102,0.3), transparent);
}

.step-card {
text-align: center;
position: relative;
}

.step-number {
width: 64px;
height: 64px;
border-radius: 50%;
background: var(--gradient-green);
display: flex;
align-items: center;
justify-content: center;
font-family: 'Poppins', sans-serif;
font-size: 24px;
font-weight: 800;
color: white;
margin: 0 auto 20px;
position: relative;
z-index: 1;
box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}

.step-card h3 {
font-size: 17px;
font-weight: 700;
color: white;
margin-bottom: 8px;
}

.step-card p {
font-size: 13px;
color: rgba(255,255,255,0.45);
line-height: 1.6;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
padding: 100px 0;
}

.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.contact-info h2 {
font-size: 40px;
font-weight: 800;
color: white;
margin-bottom: 16px;
}

.contact-info h2 .highlight {
color: var(--primary-green);
}

.contact-info > p {
color: rgba(255,255,255,0.5);
font-size: 16px;
line-height: 1.7;
margin-bottom: 36px;
}

.contact-items {
display: flex;
flex-direction: column;
gap: 20px;
}

.contact-item {
display: flex;
align-items: center;
gap: 16px;
padding: 20px;
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 16px;
transition: all 0.3s ease;
text-decoration: none;
color: inherit;
}

.contact-item:hover {
background: rgba(37,211,102,0.08);
border-color: rgba(37,211,102,0.2);
transform: translateX(8px);
}

.contact-item-icon {
width: 48px;
height: 48px;
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.contact-item-icon.green { background: rgba(37,211,102,0.15); }
.contact-item-icon.yellow { background: rgba(255,215,0,0.15); }
.contact-item-icon.blue { background: rgba(59,130,246,0.15); }

.contact-item-text h4 {
font-size: 15px;
font-weight: 600;
color: white;
margin-bottom: 2px;
}

.contact-item-text p {
font-size: 13px;
color: rgba(255,255,255,0.5);
}

.contact-form-wrapper {
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 24px;
padding: 40px;
}

.contact-form-wrapper h3 {
font-size: 22px;
font-weight: 700;
color: white;
margin-bottom: 24px;
}

.form-group {
margin-bottom: 18px;
}

.form-group label {
display: block;
font-size: 13px;
font-weight: 600;
color: rgba(255,255,255,0.6);
margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 14px 18px;
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 12px;
color: white;
font-size: 14px;
font-family: 'Inter', sans-serif;
transition: all 0.3s ease;
outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
border-color: var(--primary-green);
box-shadow: 0 0 0 3px rgba(37,211,102,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
color: rgba(255,255,255,0.25);
}

.form-group textarea {
height: 100px;
resize: vertical;
}

.btn-submit {
width: 100%;
padding: 16px;
background: var(--gradient-green);
color: white;
font-weight: 700;
font-size: 16px;
border: none;
border-radius: 14px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 6px 25px rgba(37,211,102,0.3);
font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
transform: translateY(-2px);
box-shadow: 0 10px 35px rgba(37,211,102,0.4);
}

/* ========== FOOTER ========== */
.footer {
background: rgba(0,0,0,0.3);
border-top: 1px solid rgba(255,255,255,0.06);
padding: 60px 0 0;
}

.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 48px;
padding-bottom: 48px;
}

.footer-brand {
max-width: 340px;
}

.footer-logo {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 16px;
text-decoration: none;
}

.footer-logo-icon {
width: 40px;
height: 40px;
background: var(--gradient-green);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
}

.footer-logo-icon svg {
width: 20px;
height: 20px;
fill: white;
}

.footer-logo-text {
font-family: 'Poppins', sans-serif;
font-weight: 800;
font-size: 20px;
color: white;
}

.footer-logo-text span {
color: var(--accent-yellow);
}

.footer-brand p {
color: rgba(255,255,255,0.4);
font-size: 14px;
line-height: 1.8;
margin-bottom: 20px;
}

.footer-socials {
display: flex;
gap: 10px;
}

.footer-social {
width: 38px;
height: 38px;
border-radius: 10px;
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.1);
display: flex;
align-items: center;
justify-content: center;
color: rgba(255,255,255,0.5);
text-decoration: none;
transition: all 0.3s ease;
font-size: 15px;
}

.footer-social:hover {
background: var(--primary-green);
border-color: var(--primary-green);
color: white;
transform: translateY(-3px);
}

.footer-column h4 {
color: white;
font-family: 'Poppins', sans-serif;
font-size: 15px;
font-weight: 700;
margin-bottom: 20px;
}

.footer-column ul {
list-style: none;
display: flex;
flex-direction: column;
gap: 12px;
}

.footer-column ul a {
color: rgba(255,255,255,0.4);
text-decoration: none;
font-size: 14px;
transition: all 0.3s ease;
}

.footer-column ul a:hover {
color: var(--primary-green);
transform: translateX(4px);
display: inline-block;
}

.footer-bottom {
padding: 24px 0;
border-top: 1px solid rgba(255,255,255,0.06);
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 16px;
}

.footer-copyright {
color: rgba(255,255,255,0.3);
font-size: 13px;
}

.footer-copyright a {
color: var(--primary-green);
text-decoration: none;
}

.footer-bottom-links {
display: flex;
gap: 24px;
}

.footer-bottom-links a {
color: rgba(255,255,255,0.3);
font-size: 13px;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
color: var(--primary-green);
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
position: fixed;
bottom: 30px;
right: 30px;
width: 60px;
height: 60px;
background: var(--primary-green);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 6px 25px rgba(37,211,102,0.5);
z-index: 999;
transition: all 0.3s ease;
cursor: pointer;
text-decoration: none;
animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
transform: scale(1.1);
box-shadow: 0 10px 35px rgba(37,211,102,0.6);
}

.whatsapp-float svg {
width: 30px;
height: 30px;
fill: white;
}

@keyframes whatsappPulse {
0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.5); }
50% { box-shadow: 0 6px 25px rgba(37,211,102,0.5), 0 0 0 12px rgba(37,211,102,0.15); }
}

/* ========== BACK TO TOP ========== */
.back-to-top {
position: fixed;
bottom: 100px;
right: 34px;
width: 44px;
height: 44px;
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.15);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: white;
z-index: 998;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
cursor: pointer;
}

.back-to-top.visible {
opacity: 1;
visibility: visible;
}

.back-to-top:hover {
background: var(--primary-green);
border-color: var(--primary-green);
}

/* ========== SCROLL REVEAL ========== */
.reveal {
opacity: 0;
transform: translateY(30px);
transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
.hero-content {
grid-template-columns: 1fr;
text-align: center;
gap: 50px;
}

.hero-left {
display: flex;
flex-direction: column;
align-items: center;
}

.hero-tagline { margin: 0 auto 32px; }
.hero-description { text-align: left; }
.hero-cta-group { justify-content: center; }

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

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

.steps-grid {
grid-template-columns: repeat(2, 1fr);
gap: 32px;
}

.steps-grid::before { display: none; }
}

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

.nav {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: rgba(10,10,26,0.98);
backdrop-filter: blur(20px);
flex-direction: column;
padding: 24px;
gap: 16px;
border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav.open { display: flex; }

.header-actions { display: none; }
.mobile-toggle { display: flex; }

.hero-content { padding: 100px 20px 40px; }

.title-to, .title-kabola, .title-api, .title-exclamation {
font-size: clamp(36px, 10vw, 56px);
}

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

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

.pricing-card-inner {
flex-direction: column;
gap: 20px;
}

.pricing-zero { font-size: 60px; }
.pricing-cdf { font-size: 28px; }

.payment-methods {
gap: 12px;
}

.payment-badge {
padding: 10px 14px;
}

.contact-form-wrapper {
padding: 28px;
}

.footer-grid {
grid-template-columns: 1fr;
gap: 32px;
}

.footer-bottom {
flex-direction: column;
text-align: center;
}

.float-element { display: none; }

.section { padding: 70px 0; }
}

@media (max-width: 480px) {
.hero-cta-group {
flex-direction: column;
width: 100%;
}

.btn-hero-main, .btn-hero-secondary {
width: 100%;
justify-content: center;
}

.payment-badge-name {
font-size: 11px;
}
}











/* Styles isolés pour éviter tout conflit avec votre template */
#faq .faq-section { padding: 100px 0; }
#faq .faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
#faq .faq-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; overflow: hidden; transition: border-color 0.3s, background 0.3s; }
#faq .faq-item:hover { border-color: rgba(37,211,102,0.2); }
#faq .faq-item.active { border-color: rgba(37,211,102,0.3); background: rgba(37,211,102,0.04); }

#faq .faq-question { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 28px; cursor: pointer; background: none; border: none; width: 100%; text-align: left; color: white; font-family: 'Inter', sans-serif; }
#faq .faq-q-left { display: flex; align-items: center; gap: 16px; flex: 1; }
#faq .faq-q-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(37,211,102,0.1); display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 16px; color: #25D366; flex-shrink: 0; transition: all 0.3s ease; }
#faq .faq-item.active .faq-q-icon { background: #25D366; color: white; }
#faq .faq-question h3 { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 600; color: white; margin: 0; }

#faq .faq-toggle { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.4s ease; color: rgba(255,255,255,0.6); }
#faq .faq-item.active .faq-toggle { background: #25D366; color: white; transform: rotate(180deg); }

/* Animation d'ouverture/fermeture fiable */
#faq .faq-answer { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.4s ease, opacity 0.3s ease; }
#faq .faq-item.active .faq-answer { max-height: 500px; opacity: 1; }
#faq .faq-answer p { padding: 0 28px 24px 84px; font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 0; }
#faq .faq-answer strong { color: #25D366; }

@media (max-width: 768px) {
#faq .faq-question { padding: 20px; }
#faq .faq-answer p { padding: 0 20px 20px 72px; }
#faq .faq-q-icon { width: 36px; height: 36px; font-size: 14px; }
#faq .faq-question h3 { font-size: 14px; }
}











/* Documentation Section Styles */
.docs-section {
padding: 100px 0;
background: rgba(0,0,0,0.2);
}

.docs-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 32px;
}

.docs-header {
text-align: center;
margin-bottom: 60px;
}

.docs-wrapper {
display: grid;
grid-template-columns: 280px 1fr;
gap: 40px;
align-items: start;
}

/* Sidebar */
.docs-sidebar {
position: sticky;
top: 100px;
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 16px;
padding: 24px;
height: fit-content;
}

.docs-nav {
display: flex;
flex-direction: column;
gap: 8px;
}

.docs-nav-item {
display: flex;
align-items: center;
gap: 12px;
padding: 12px 16px;
border-radius: 10px;
color: rgba(255,255,255,0.6);
cursor: pointer;
transition: all 0.3s ease;
font-size: 14px;
font-weight: 500;
}

.docs-nav-item:hover {
background: rgba(255,255,255,0.05);
color: white;
}

.docs-nav-item.active {
background: rgba(37,211,102,0.1);
color: #25D366;
border-left: 3px solid #25D366;
}

.docs-sidebar-footer {
margin-top: 32px;
padding-top: 24px;
border-top: 1px solid rgba(255,255,255,0.08);
}

.btn-docs-support {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 12px;
background: linear-gradient(135deg, #25D366, #128C7E);
color: white;
text-decoration: none;
border-radius: 10px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
}

.btn-docs-support:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(37,211,102,0.3);
}

/* Main Content */
.docs-content {
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 16px;
padding: 40px;
}

.docs-section-content {
display: none;
}

.docs-section-content.active {
display: block;
animation: fadeIn 0.4s ease;
}

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

.docs-section-content h3 {
font-family: 'Poppins', sans-serif;
font-size: 28px;
font-weight: 700;
color: white;
margin-bottom: 20px;
}

.docs-section-content h4 {
font-family: 'Poppins', sans-serif;
font-size: 20px;
font-weight: 600;
color: white;
margin: 32px 0 16px;
}

.docs-section-content h5 {
font-family: 'Poppins', sans-serif;
font-size: 16px;
font-weight: 600;
color: white;
margin: 24px 0 12px;
}

.docs-section-content p {
color: rgba(255,255,255,0.6);
line-height: 1.8;
margin-bottom: 16px;
}

.docs-section-content ul {
list-style: none;
margin: 16px 0;
}

.docs-section-content ul li {
padding: 8px 0;
color: rgba(255,255,255,0.6);
padding-left: 24px;
position: relative;
}

.docs-section-content ul li::before {
content: '→';
position: absolute;
left: 0;
color: #25D366;
font-weight: 700;
}

/* Feature Box */
.docs-feature-box {
background: rgba(37,211,102,0.05);
border: 1px solid rgba(37,211,102,0.15);
border-radius: 12px;
padding: 24px;
margin: 24px 0;
}

.docs-feature-box h4 {
margin-top: 0;
color: #25D366;
}

.docs-feature-box ul {
margin: 16px 0 0;
}

/* Info Box */
.docs-info-box {
background: rgba(59,130,246,0.08);
border: 1px solid rgba(59,130,246,0.2);
border-radius: 12px;
padding: 20px;
margin: 24px 0;
}

.docs-info-box strong {
color: #3B82F6;
display: block;
margin-bottom: 8px;
}

.docs-info-box p {
margin: 0;
}

.docs-info-box a {
color: #3B82F6;
text-decoration: underline;
}

/* Code Block */
.code-block {
background: #0d1117;
border: 1px solid rgba(255,255,255,0.1);
border-radius: 12px;
overflow: hidden;
margin: 20px 0;
}

.code-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 16px;
background: rgba(255,255,255,0.03);
border-bottom: 1px solid rgba(255,255,255,0.05);
}

.code-lang {
font-size: 12px;
color: rgba(255,255,255,0.4);
text-transform: uppercase;
font-weight: 600;
}

.code-copy {
background: none;
border: none;
color: rgba(255,255,255,0.5);
cursor: pointer;
font-size: 13px;
transition: color 0.3s;
}

.code-copy:hover {
color: #25D366;
}

.code-block pre {
margin: 0;
padding: 20px;
overflow-x: auto;
}

.code-block code {
font-family: 'Fira Code', 'Consolas', monospace;
font-size: 13px;
line-height: 1.7;
color: #e6edf3;
}

/* Endpoint Card */
.endpoint-card {
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 12px;
padding: 24px;
margin: 20px 0;
}

.endpoint-header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
}

.endpoint-method {
padding: 6px 12px;
border-radius: 6px;
font-weight: 700;
font-size: 12px;
text-transform: uppercase;
}

.endpoint-method.post {
background: rgba(37,211,102,0.15);
color: #25D366;
}

.endpoint-method.get {
background: rgba(59,130,246,0.15);
color: #3B82F6;
}

.endpoint-header code {
font-family: 'Fira Code', monospace;
color: #25D366;
font-size: 14px;
}

/* Table */
.docs-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
font-size: 14px;
}

.docs-table th,
.docs-table td {
padding: 12px 16px;
text-align: left;
border-bottom: 1px solid rgba(255,255,255,0.06);
}

.docs-table th {
background: rgba(255,255,255,0.03);
font-weight: 600;
color: white;
}

.docs-table td {
color: rgba(255,255,255,0.6);
}

.docs-table code {
background: rgba(255,255,255,0.06);
padding: 2px 8px;
border-radius: 4px;
font-family: 'Fira Code', monospace;
font-size: 13px;
color: #25D366;
}

/* SDKs Grid */
.sdks-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
margin: 24px 0;
}

.sdk-card {
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 12px;
padding: 24px;
transition: all 0.3s ease;
}

.sdk-card:hover {
border-color: rgba(37,211,102,0.3);
transform: translateY(-4px);
}

.sdk-icon {
font-size: 32px;
margin-bottom: 12px;
}

.sdk-card h4 {
margin: 0 0 8px;
font-size: 18px;
}

.sdk-card p {
font-size: 13px;
margin-bottom: 12px;
}

.sdk-card code {
display: block;
background: rgba(0,0,0,0.3);
padding: 8px 12px;
border-radius: 6px;
font-family: 'Fira Code', monospace;
font-size: 12px;
color: #25D366;
margin-bottom: 12px;
}

.btn-sdk {
display: inline-block;
color: #25D366;
text-decoration: none;
font-weight: 600;
font-size: 13px;
transition: gap 0.3s;
}

.btn-sdk:hover {
gap: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
.docs-wrapper {
grid-template-columns: 1fr;
}

.docs-sidebar {
position: relative;
top: 0;
}

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

@media (max-width: 768px) {
.docs-container {
padding: 0 20px;
}

.docs-content {
padding: 24px;
}

.docs-section-content h3 {
font-size: 22px;
}

.docs-table {
font-size: 12px;
}

.docs-table th,
.docs-table td {
padding: 8px 12px;
}
}











/* Styles isolés pour la section Mentions Légales */
#mentions-legales .legal-section {
padding: 100px 0;
background: rgba(0,0,0,0.15);
}

#mentions-legales .legal-header {
text-align: center;
margin-bottom: 60px;
}

#mentions-legales .legal-content {
max-width: 960px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 24px;
}

#mentions-legales .legal-card {
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 16px;
padding: 32px;
transition: all 0.3s ease;
}

#mentions-legales .legal-card:hover {
border-color: rgba(37,211,102,0.2);
background: rgba(255,255,255,0.04);
}

#mentions-legales .legal-card h3 {
font-family: 'Poppins', sans-serif;
font-size: 20px;
font-weight: 700;
color: white;
margin: 0 0 16px;
}

#mentions-legales .legal-card p {
font-size: 15px;
color: rgba(255,255,255,0.6);
line-height: 1.7;
margin-bottom: 12px;
}

#mentions-legales .legal-card p:last-child {
margin-bottom: 0;
}

#mentions-legales .legal-card p strong {
color: rgba(255,255,255,0.85);
}

#mentions-legales .legal-card a {
color: #25D366;
text-decoration: none;
border-bottom: 1px dashed rgba(37,211,102,0.4);
transition: all 0.3s ease;
}

#mentions-legales .legal-card a:hover {
border-bottom-color: #25D366;
}

#mentions-legales .legal-card ul {
list-style: none;
padding: 0;
margin: 12px 0 0;
}

#mentions-legales .legal-card ul li {
padding: 6px 0;
color: rgba(255,255,255,0.6);
font-size: 15px;
}

#mentions-legales .legal-footer-note {
max-width: 960px;
margin: 40px auto 0;
text-align: center;
padding: 24px;
background: rgba(255,255,255,0.02);
border: 1px solid rgba(255,255,255,0.06);
border-radius: 12px;
}

#mentions-legales .legal-footer-note p {
font-size: 14px;
color: rgba(255,255,255,0.45);
margin: 0;
}

#mentions-legales .legal-footer-note strong {
color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
#mentions-legales .legal-card {
padding: 24px;
}
#mentions-legales .legal-card h3 {
font-size: 18px;
}
#mentions-legales .legal-card p,
#mentions-legales .legal-card ul li {
font-size: 14px;
}
}













/* Slider Section Styles - Encapsulé */
#slider-section {
padding: 80px 0;
background: rgba(0,0,0,0.2);
}

#slider-section .slider-wrapper {
max-width: 1200px;
margin: 0 auto;
padding: 0 32px;
position: relative;
}

/* Track container */
#slider-section .slider-track {
position: relative;
width: 100%;
border-radius: 20px;
overflow: hidden;
aspect-ratio: 16 / 7;
box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* Chaque slide */
#slider-section .slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 0.8s ease;
pointer-events: none;
}

#slider-section .slide.active {
opacity: 1;
pointer-events: auto;
}

#slider-section .slide img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

/* Overlay gradient */
#slider-section .slide-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
to right,
rgba(0,0,0,0.8) 0%,
rgba(0,0,0,0.4) 40%,
rgba(0,0,0,0.05) 70%,
transparent 100%
);
display: flex;
align-items: center;
}

#slider-section .slide-content {
padding: 48px;
max-width: 500px;
}

#slider-section .slide-content h3 {
font-family: 'Poppins', sans-serif;
font-size: clamp(24px, 3vw, 36px);
font-weight: 800;
color: white;
margin-bottom: 12px;
line-height: 1.2;
}

#slider-section .slide-content p {
font-size: clamp(14px, 1.5vw, 17px);
color: rgba(255,255,255,0.7);
line-height: 1.6;
}

/* Boutons navigation */
#slider-section .slider-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 50px;
height: 50px;
border-radius: 50%;
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.15);
color: white;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
z-index: 10;
}

#slider-section .slider-btn:hover {
background: rgba(37,211,102,0.3);
border-color: rgba(37,211,102,0.5);
transform: translateY(-50%) scale(1.1);
}

#slider-section .slider-prev {
left: -20px;
}

#slider-section .slider-next {
right: -20px;
}

/* Indicateurs (dots) */
#slider-section .slider-dots {
display: flex;
justify-content: center;
gap: 12px;
margin-top: 24px;
}

#slider-section .slider-dot {
width: 12px;
height: 12px;
border-radius: 50%;
background: rgba(255,255,255,0.2);
border: 2px solid rgba(255,255,255,0.1);
cursor: pointer;
transition: all 0.3s ease;
padding: 0;
}

#slider-section .slider-dot.active {
background: #25D366;
border-color: #25D366;
transform: scale(1.2);
box-shadow: 0 0 12px rgba(37,211,102,0.5);
}

#slider-section .slider-dot:hover:not(.active) {
background: rgba(255,255,255,0.4);
transform: scale(1.1);
}

/* Compteur */
#slider-section .slider-counter {
text-align: center;
margin-top: 16px;
font-family: 'Poppins', sans-serif;
font-size: 14px;
color: rgba(255,255,255,0.4);
}

#slider-section .slider-counter span {
color: #25D366;
font-weight: 700;
}

/* Progress bar */
#slider-section .slider-progress {
position: absolute;
bottom: 0;
left: 0;
height: 3px;
background: linear-gradient(90deg, #25D366, #128C7E);
transition: width 0.3s ease;
z-index: 10;
border-radius: 0 3px 0 0;
}

/* Responsive */
@media (max-width: 1024px) {
#slider-section .slider-wrapper {
padding: 0 20px;
}
#slider-section .slider-prev {
left: 10px;
}
#slider-section .slider-next {
right: 10px;
}
#slider-section .slide-content {
padding: 32px;
}
}

@media (max-width: 768px) {
#slider-section {
padding: 40px 0;
}
#slider-section .slider-track {
border-radius: 14px;
aspect-ratio: 4 / 3;
}
#slider-section .slider-btn {
width: 40px;
height: 40px;
}
#slider-section .slider-prev {
left: 8px;
}
#slider-section .slider-next {
right: 8px;
}
#slider-section .slide-overlay {
background: linear-gradient(
to top,
rgba(0,0,0,0.85) 0%,
rgba(0,0,0,0.4) 50%,
rgba(0,0,0,0.1) 100%
);
}
#slider-section .slide-content {
padding: 24px;
max-width: 100%;
position: absolute;
bottom: 0;
left: 0;
right: 0;
}
#slider-section .slide-content h3 {
font-size: 22px;
margin-bottom: 8px;
}
#slider-section .slide-content p {
font-size: 14px;
}
#slider-section .slider-dots {
margin-top: 16px;
gap: 10px;
}
#slider-section .slider-dot {
width: 10px;
height: 10px;
}
}

@media (max-width: 480px) {
#slider-section .slider-track {
border-radius: 10px;
}
#slider-section .slider-btn {
width: 36px;
height: 36px;
}
#slider-section .slider-btn svg {
width: 18px;
height: 18px;
}
}













/* Pricing Section Styles - Encapsulé */
#pricing-section {
padding: 100px 0;
background: rgba(0,0,0,0.15);
}

#pricing-section .pricing-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
align-items: start;
}

#pricing-section .pricing-card {
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 20px;
padding: 32px;
position: relative;
transition: all 0.4s ease;
display: flex;
flex-direction: column;
height: 100%;
}

#pricing-section .pricing-card:hover {
transform: translateY(-8px);
border-color: rgba(37,211,102,0.3);
box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

#pricing-section .pricing-card.featured {
border-color: rgba(37,211,102,0.4);
background: rgba(37,211,102,0.05);
transform: scale(1.03);
}

#pricing-section .pricing-card.featured:hover {
transform: scale(1.03) translateY(-8px);
}

#pricing-section .pricing-badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: linear-gradient(135deg, #25D366, #128C7E);
color: white;
font-family: 'Poppins', sans-serif;
font-size: 12px;
font-weight: 700;
padding: 6px 16px;
border-radius: 20px;
box-shadow: 0 4px 15px rgba(37,211,102,0.4);
white-space: nowrap;
}

#pricing-section .pricing-header {
text-align: center;
margin-bottom: 24px;
padding-bottom: 24px;
border-bottom: 1px solid rgba(255,255,255,0.08);
}

#pricing-section .pricing-header h3 {
font-family: 'Poppins', sans-serif;
font-size: 22px;
font-weight: 700;
color: white;
margin-bottom: 8px;
}

#pricing-section .pricing-header p {
font-size: 14px;
color: rgba(255,255,255,0.5);
margin: 0;
}

#pricing-section .pricing-price {
text-align: center;
margin-bottom: 28px;
}

#pricing-section .currency {
font-size: 16px;
font-weight: 600;
color: rgba(255,255,255,0.6);
vertical-align: super;
margin-right: 4px;
}

#pricing-section .amount {
font-family: 'Poppins', sans-serif;
font-size: 42px;
font-weight: 800;
color: white;
line-height: 1;
}

#pricing-section .period {
font-size: 15px;
color: rgba(255,255,255,0.5);
margin-left: 4px;
}

#pricing-section .pricing-features {
list-style: none;
padding: 0;
margin: 0 0 32px;
flex: 1;
}

#pricing-section .pricing-features li {
display: flex;
align-items: center;
gap: 12px;
padding: 10px 0;
font-size: 14px;
color: rgba(255,255,255,0.7);
border-bottom: 1px solid rgba(255,255,255,0.04);
}

#pricing-section .pricing-features li:last-child {
border-bottom: none;
}

#pricing-section .pricing-btn {
display: block;
text-align: center;
padding: 14px;
border-radius: 12px;
font-weight: 700;
font-size: 15px;
text-decoration: none;
transition: all 0.3s ease;
}

#pricing-section .pricing-btn.outline {
background: transparent;
border: 1px solid rgba(37,211,102,0.4);
color: #25D366;
}

#pricing-section .pricing-btn.outline:hover {
background: rgba(37,211,102,0.1);
border-color: #25D366;
transform: translateY(-2px);
}

#pricing-section .pricing-btn.filled {
background: linear-gradient(135deg, #25D366, #128C7E);
border: none;
color: white;
box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

#pricing-section .pricing-btn.filled:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}

#pricing-section .pricing-footer-note {
text-align: center;
margin-top: 40px;
padding: 20px;
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.06);
border-radius: 12px;
}

#pricing-section .pricing-footer-note p {
font-size: 14px;
color: rgba(255,255,255,0.5);
margin: 0;
}

#pricing-section .pricing-footer-note strong {
color: rgba(255,255,255,0.8);
}

/* Responsive */
@media (max-width: 1024px) {
#pricing-section .pricing-grid {
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
#pricing-section .pricing-card.featured {
transform: scale(1);
}
#pricing-section .pricing-card.featured:hover {
transform: translateY(-8px);
}
}

@media (max-width: 768px) {
#pricing-section .pricing-grid {
grid-template-columns: 1fr;
max-width: 420px;
margin: 0 auto;
}
#pricing-section .pricing-card {
padding: 28px;
}
#pricing-section .amount {
font-size: 36px;
}
}











/* Newsletter Section Styles - Encapsulé */
#newsletter-section {
padding: 80px 0;
background: rgba(0,0,0,0.2);
}

#newsletter-section .newsletter-card {
max-width: 800px;
margin: 0 auto;
background: linear-gradient(135deg, rgba(37,211,102,0.08), rgba(18,140,126,0.08));
border: 1px solid rgba(37,211,102,0.2);
border-radius: 24px;
padding: 48px;
text-align: center;
position: relative;
overflow: hidden;
}

#newsletter-section .newsletter-card::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle at 30% 30%, rgba(37,211,102,0.1), transparent 40%);
pointer-events: none;
}

#newsletter-section .newsletter-card > * {
position: relative;
z-index: 1;
}

#newsletter-section .newsletter-icon {
width: 72px;
height: 72px;
background: linear-gradient(135deg, #25D366, #128C7E);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 24px;
box-shadow: 0 8px 25px rgba(37,211,102,0.3);
animation: whatsappPulse 3s ease-in-out infinite;
}

@keyframes whatsappPulse {
0%, 100% { box-shadow: 0 8px 25px rgba(37,211,102,0.3); }
50% { box-shadow: 0 8px 25px rgba(37,211,102,0.3), 0 0 0 12px rgba(37,211,102,0.1); }
}

#newsletter-section .newsletter-icon svg {
width: 36px;
height: 36px;
fill: white;
}

#newsletter-section .newsletter-title {
font-family: 'Poppins', sans-serif;
font-size: clamp(28px, 3vw, 36px);
font-weight: 800;
color: white;
margin-bottom: 12px;
}

#newsletter-section .newsletter-desc {
font-size: 16px;
color: rgba(255,255,255,0.7);
line-height: 1.6;
margin-bottom: 32px;
max-width: 500px;
margin-left: auto;
margin-right: auto;
}

#newsletter-section .newsletter-form {
width: 100%;
}

#newsletter-section .newsletter-input-wrapper {
display: flex;
gap: 12px;
max-width: 520px;
margin: 0 auto 16px;
}

#newsletter-section .newsletter-input-wrapper input {
flex: 1;
padding: 16px 20px;
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.15);
border-radius: 12px;
color: white;
font-size: 15px;
font-family: 'Inter', sans-serif;
outline: none;
transition: all 0.3s ease;
}

#newsletter-section .newsletter-input-wrapper input::placeholder {
color: rgba(255,255,255,0.35);
}

#newsletter-section .newsletter-input-wrapper input:focus {
border-color: #25D366;
box-shadow: 0 0 0 3px rgba(37,211,102,0.15);
background: rgba(255,255,255,0.08);
}

#newsletter-section .newsletter-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 16px 28px;
background: linear-gradient(135deg, #25D366, #128C7E);
color: white;
border: none;
border-radius: 12px;
font-weight: 700;
font-size: 15px;
cursor: pointer;
transition: all 0.3s ease;
white-space: nowrap;
font-family: 'Inter', sans-serif;
}

#newsletter-section .newsletter-btn:hover:not(:disabled) {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

#newsletter-section .newsletter-btn:disabled {
opacity: 0.7;
cursor: not-allowed;
}

#newsletter-section .btn-loader svg {
animation: spin 1s linear infinite;
}

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

#newsletter-section .newsletter-message {
min-height: 24px;
font-size: 14px;
font-weight: 500;
margin-top: 8px;
opacity: 0;
transform: translateY(-5px);
transition: all 0.3s ease;
}

#newsletter-section .newsletter-message.show {
opacity: 1;
transform: translateY(0);
}

#newsletter-section .newsletter-message.success {
color: #25D366;
}

#newsletter-section .newsletter-message.error {
color: #ff6b6b;
}

#newsletter-section .newsletter-note {
font-size: 13px;
color: rgba(255,255,255,0.4);
margin-top: 16px;
}

/* Responsive */
@media (max-width: 768px) {
#newsletter-section .newsletter-card {
padding: 36px 24px;
}
#newsletter-section .newsletter-input-wrapper {
flex-direction: column;
}
#newsletter-section .newsletter-btn {
width: 100%;
}
}

@media (max-width: 480px) {
#newsletter-section {
padding: 50px 0;
}
#newsletter-section .newsletter-card {
padding: 28px 20px;
border-radius: 18px;
}
#newsletter-section .newsletter-icon {
width: 60px;
height: 60px;
}
#newsletter-section .newsletter-icon svg {
width: 30px;
height: 30px;
}
}
