/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif!important;
    min-height: 100vh;
    background: linear-gradient(to bottom right, #0f172a, #1e3a8a, #0f172a);
    color: white;
    overflow-x: hidden;
}
body::before { background:none;}
/* Utility Classes */
.hidden {
    display: none !important;
}

.page-header-1 {
    overflow: unset;
}

h1, h2, h3, h4, h5, h6, .heading {
    margin-top: 0;
    font-family: inherit;
    text-transform: math-auto;
    font-weight: 700;
    color: #fff;
}

/* Background Effects */
.background-effects {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(96px);
    animation: pulse 4s ease-in-out infinite;
}

.bg-blur-1 {
    top: 0;
    right: 25%;
    width: 384px;
    height: 384px;
    background: rgba(59, 130, 246, 0.1);
}

.bg-blur-2 {
    bottom: 0;
    left: 25%;
    width: 384px;
    height: 384px;
    background: rgba(16, 185, 129, 0.1);
}

.bg-blur-3 {
    top: 50%;
    left: 33.333%;
    width: 288px;
    height: 288px;
    background: rgba(168, 85, 247, 0.1);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 14px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.online-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.icon {
    width: 16px;
    height: 16px;
    color: #10b981;
}

.flame-icon {
    color: #fb923c;
}

.clock-icon {
    color: #fbbf24;
}

.count {
    font-weight: bold;
    color: white;
}

.label {
    color: #bfdbfe;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 35px;
    right: 100px;
    z-index: 50;
    background: linear-gradient(to right, #22c55e, #16a34a);
    color: white;
    padding: 16px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    background: linear-gradient(to right, #16a34a, #15803d);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
}
[dir='rtl'] .whatsapp-icon {
    transform: rotate(270deg);
}
.whatsapp-ping {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    background: #ef4444;
    border-radius: 50%;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Exit Popup */
.exit-popup {
    position: fixed;
    inset: 0;
    z-index: 1090;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    padding: 16px;
    text-align: center;
}

.exit-popup-content {
    position: relative;
    max-width: 700px;
    width: 100%;
    backdrop-filter: blur(40px);
    background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.95), rgba(30, 58, 138, 0.95));
    border-radius: 24px;
    border: 2px solid rgba(52, 211, 153, 0.5);
    box-shadow: 0 20px 25px -5px rgba(52, 211, 153, 0.2);
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.scroll-y {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 90vh;
}
.scroll-y::-webkit-scrollbar {
  width: 8px;
}

.scroll-y::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 10px;
}

.scroll-y::-webkit-scrollbar-thumb {
  background: #20428a;
  border-radius: 10px;
}

.scroll-y::-webkit-scrollbar-thumb:hover {
  background: #152654;
}

.exit-popup-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 40px;
    height: 40px;
    background: #ef4444;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.exit-popup-close:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.exit-popup-body {
    padding: 20px;
}

.warning-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.2);
    padding: 8px 24px;
    border-radius: 9999px;
    margin-bottom: 16px;
    animation: pulse 2s ease-in-out infinite;
}

.emoji {
    font-size: 24px;
}

.warning-text {
    color: #fca5a5;
    font-weight: bold;
    }
.exit-popup-title {
font-size: 30px;
font-weight: bold;
margin-bottom: 16px;
line-height: 1.36;
}
.title-line-1, .title-line-3 {
color: white;
}
.title-gradient {
background: linear-gradient(to right, #34d399, #60a5fa);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.title-highlight {
color: #34d399;
}
.exit-popup-subtitle {
font-size: 20px;
color: #bfdbfe;
margin-bottom: 24px;
}
.exit-popup-features {
background: linear-gradient(to right, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.2));
border: 1px solid rgba(52, 211, 153, 0.3);
border-radius: 24px;
padding: 15px 24px;
margin-bottom: 24px;
}
.feature-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
text-align: center;
}
.feature-value {
font-size: 28px;
font-weight: bold;
color: #34d399;
margin:0;
}

.feature-label {
font-size: 14px;
color: #bfdbfe;
margin:0;
}
.exit-popup-benefits {
display: flex;
flex-direction: column;
gap: 16px;
margin-bottom: 32px;
}
.benefit-item {
display: flex;
align-items: center;
gap: 12px;
background: rgba(255, 255, 255, 0.05);
padding: 0 15px;
border-radius: 12px;
}
.check-icon {
width: 24px;
height: 24px;
color: #34d399;
flex-shrink: 0;
}
.benefit-item p {
text-align: left;
color: #dbeafe;
margin: 10px 0;
}
.exit-popup-form {
display: flex;
flex-direction: column;
gap: 16px;
}
.popup-email-input {
width: 100%;
padding: 16px 24px;
border-radius: 12px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.3);
color: white;
font-size: 16px;
}
.popup-email-input::placeholder {
color: #bfdbfe;
}
.popup-email-input:focus {
outline: none;
ring: 2px solid #34d399;
}
.popup-submit-btn {
width: 100%;
background: linear-gradient(to right, #10b981, #3b82f6);
color: white;
font-weight: bold;
padding: 20px 32px;
border-radius: 12px;
border: none;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
font-size: 18px;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.popup-submit-btn:hover {
background: linear-gradient(to right, #059669, #2563eb);
transform: scale(1.05);
}
.popup-whatsapp-btn {
width: 100%;
background: linear-gradient(to right, #22c55e, #16a34a);
color: white;
font-weight: bold;
padding: 16px 32px;
border-radius: 12px;
border: none;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
font-size: 16px;
}
.popup-whatsapp-btn:hover {
background: linear-gradient(to right, #16a34a, #15803d);
transform: scale(1.05);
}
.arrow-icon {
width: 24px;
height: 24px;
}
.popup-privacy {
text-align: center;
font-size: 14px;
color: #93c5fd;
margin:0;
}
.popup-warning {
text-align: center;
padding-top: 0;
margin:0;
}
.popup-warning p {
font-size: 16px;
color: #fca5a5;
font-weight: 600;
margin:0;
animation: pulse 2s ease-in-out infinite;
}
.exit-popup-footer {
background: linear-gradient(to right, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding: 15px;
border-radius: 0 0 24px 24px;
}
.footer-stats {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 24px;
font-size: 14px;
}
.footer-stat {
display: flex;
align-items: center;
gap: 8px;
color: #bfdbfe;
}
.stat-icon {
width: 16px;
height: 16px;
color: #34d399;
}
/* Hero Section */
.hero-section {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 96px 16px 128px;
margin-top: 0;
}
@media (max-width:576px){
   .hero-section {
    padding: 128px 16px 128px;
    } 
}
.hero-content {
max-width: 1152px;
margin: 0 auto;
text-align: center;
display: flex;
flex-direction: column;
gap: 32px;
z-index: 10;
position: relative;
}
/* Limited Offer Badge - Adjusted Size */
.limited-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(to right, rgba(239, 68, 68, 0.2), rgba(249, 115, 22, 0.2));
    border: 2px solid rgba(248, 113, 113, 0.6);
    padding: 16px 32px;
    border-radius: 9999px;
    animation: pulse 2s ease-in-out infinite;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.limited-offer-badge .flame-icon {
    width: 24px;
    height: 24px;
}

.limited-offer-badge span {
    color: white;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .limited-offer-badge {
        padding: 12px 24px;
        gap: 8px;
    }
    
    .limited-offer-badge .flame-icon {
        width: 20px;
        height: 20px;
    }
    
    .limited-offer-badge span {
        font-size: 14px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .limited-offer-badge {
        padding: 14px 28px;
        gap: 10px;
    }
    
    .limited-offer-badge .flame-icon {
        width: 22px;
        height: 22px;
    }
    
    .limited-offer-badge span {
        font-size: 16px;
    }
}
.hero-title {
font-size: 48px;
font-weight: bold;
line-height: 1.36;
background: linear-gradient(to right, #60a5fa, #34d399, #60a5fa);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-subtitle {
font-size: 24px;
color: #bfdbfe;
max-width: 768px;
margin: 0 auto;
line-height: 1.6;
}
.hero-reviews {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 8px;
margin-bottom: 16px;
}

[dir="rtl"] .hero-reviews{ gap: 25px; }


/* Avatar Group - Controlled Overlap */
.avatar-group {
    display: flex;
    margin-inline-start: 0;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #60a5fa, #34d399);
    border: 3px solid #0f172a;
    margin-inline-start: -12px; /* Chevauchement contrÃ´lÃ© */
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.avatar:first-child {
    margin-inline-start: 0; /* Premier avatar sans chevauchement */
}

.avatar:hover {
    transform: translateY(-4px);
    z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
    .avatar {
        width: 32px;
        height: 32px;
        margin-inline-start: -8px;
        border: 2px solid #0f172a;
    }
    
    .avatar:first-child {
        margin-inline-start: 0;
    }
}
.review-info {
text-align: left;
margin-inline-start: 12px;
}
.stars {
display: flex;
gap: 4px;
margin-bottom: 4px;
}
.star {
width: 16px;
height: 16px;
fill: #fbbf24;
color: #fbbf24;
}
.review-text ,.review-text p{
font-size: 14px;
color: #bfdbfe;
margin: 0;
display: initial;
}
.hero-form {
max-width: 448px;
margin: 0 auto;
width: 100%;
}
.form-card {
backdrop-filter: blur(40px);
background: rgba(255, 255, 255, 0.1);
padding: 32px;
border-radius: 24px;
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.email-input {
width: 100%;
padding: 16px 24px;
border-radius: 12px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.3);
color: white;
font-size: 16px;
margin-bottom: 16px;
}
.email-input::placeholder {
color: #bfdbfe;
}
.email-input:focus {
outline: none;
ring: 2px solid #34d399;
}
.submit-btn {
width: 100%;
background: linear-gradient(to right, #10b981, #3b82f6);
color: white;
font-weight: bold;
padding: 16px 32px;
border-radius: 12px;
border: none;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
font-size: 16px;
}
.submit-btn:hover {
background: linear-gradient(to right, #059669, #2563eb);
transform: scale(1.05);
}
.privacy-text {
font-size: 14px;
color: #bfdbfe;
margin-top: 12px;
}
.success-message {
margin-top: 16px;
padding: 16px;
background: rgba(16, 185, 129, 0.2);
border: 1px solid rgba(52, 211, 153, 0.5);
border-radius: 8px;
color: #6ee7b7;
}
.whatsapp-btn {
width: 100%;
background: linear-gradient(to right, #22c55e, #16a34a);
color: white;
font-weight: bold;
padding: 16px 32px;
border-radius: 12px;
border: none;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
font-size: 16px;
margin-top: 16px;
}
.whatsapp-btn:hover {
background: linear-gradient(to right, #16a34a, #15803d);
transform: scale(1.05);
}
.hero-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
max-width: 672px;
margin: 0 auto;
}
.stat-card {
backdrop-filter: blur(40px);
background: rgba(255, 255, 255, 0.05);
padding: 16px;
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-value {
font-size: 24px;
font-weight: bold;
color: #34d399;
}
.stat-label {
font-size: 12px;
color: #bfdbfe;
}
/* Reviews Section */
.reviews-section {
position: relative;
padding: 80px 16px;
background: rgba(0, 0, 0, 0.3);
}
.section-container {
max-width: 1152px;
margin: 0 auto;
}
.page-header-1 .rd-navbar-modern.rd-navbar-static {
    margin-top: 45px;
}
.header-login-register-style1{ border-top:none; }
.section-header {
text-align: center;
margin-bottom: 48px;
}
.section-title {
font-size: 48px;
font-weight: bold;
margin-bottom: 16px;
background: linear-gradient(to right, #60a5fa, #34d399);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.review-rating {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}
.rating-text {
font-size: 20px;
color: #bfdbfe;
}
.reviews-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 24px;
}
.review-card {
backdrop-filter: blur(40px);
background: rgba(255, 255, 255, 0.05);
padding: 24px;
border-radius: 24px;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}
.review-card:hover {
border-color: rgba(52, 211, 153, 0.5);
}
.review-header {
display: flex;
align-items: flex-start;
justify-content: space-between;
margin-bottom: 16px;
}
.reviewer-name {
font-size: 20px;
font-weight: bold;
color: white;
}
.reviewer-country {
font-size: 14px;
color: #93c5fd;
}
.review-right {
text-align: right;
}
.review-stars {
display: flex;
gap: 4px;
margin-bottom: 4px;
justify-content: flex-end;
}
.star-small {
width: 16px;
height: 16px;
fill: #fbbf24;
color: #fbbf24;
}
.profit {
color: #34d399;
font-weight: bold;
font-size: 14px;
}
.review-text ,.review-text p{
font-size: 16px;
color: #dbeafe;
line-height: 1.6;
font-style: italic;
margin: 0;
}
/* Video Testimonials Section */
.video-testimonials-section {
position: relative;
padding: 80px 16px;
background: rgba(0, 0, 0, 0.4);
}
.video-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(239, 68, 68, 0.2);
padding: 8px 24px;
border-radius: 9999px;
margin-bottom: 16px;
}
.play-icon {
width: 20px;
height: 20px;
color: #f87171;
}
.video-badge span {
color: #fca5a5;
font-weight: bold;
}
.white-title {
color: white !important;
background: none !important;
-webkit-text-fill-color: white !important;
}
.section-subtitle {
font-size: 20px;
color: #bfdbfe;
}
.video-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 24px;
}
.video-card {
backdrop-filter: blur(40px);
background: rgba(255, 255, 255, 0.05);
border-radius: 24px;
border: 1px solid rgba(255, 255, 255, 0.1);
overflow: hidden;
transition: all 0.3s ease;
cursor: pointer;
}
.video-card:hover {
border-color: rgba(52, 211, 153, 0.5);
transform: scale(1.05);
}
.video-thumbnail {
position: relative;
aspect-ratio: 16 / 9;
background: linear-gradient(to bottom right, #1e293b, #0f172a);
display: flex;
align-items: center;
justify-content: center;
}
.thumbnail-emoji {
font-size: 64px;
margin-bottom: 16px;
}
.video-overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.4);
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}
.video-card:hover .video-overlay {
background: rgba(0, 0, 0, 0.2);
}
.play-button {
width: 64px;
height: 64px;
background: #10b981;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.3s ease;
}
.video-card:hover .play-button {
transform: scale(1.1);
}
.play-icon-large {
width: 32px;
height: 32px;
margin-inline-start: 4px;
}
.video-duration {
position: absolute;
bottom: 12px;
right: 12px;
background: rgba(0, 0, 0, 0.7);
padding: 4px 12px;
border-radius: 9999px;
font-size: 14px;
}
.video-info {
padding: 24px;
}
.video-header {
display: flex;
align-items: flex-start;
justify-content: space-between;
margin-bottom: 12px;
}
.video-name {
font-size: 18px;
font-weight: bold;
color: white;
}
.video-country {
font-size: 14px;
color: #93c5fd;
}
.video-profit {
color: #34d399;
font-weight: bold;
font-size: 18px;
}
.video-title {
color: #bfdbfe;
font-size: 14px;
}
.success-stats {
margin-top: 48px;
text-align: center;
}
.success-badge {
display: inline-flex;
align-items: center;
gap: 12px;
backdrop-filter: blur(40px);
background: rgba(16, 185, 129, 0.1);
border: 1px solid rgba(52, 211, 153, 0.3);
padding: 16px 32px;
border-radius: 24px;
}
.trending-icon {
width: 24px;
height: 24px;
color: #34d399;
}
.success-text {
text-align: left;
}
.success-count {
color: white;
font-weight: bold;
}
.success-subtitle {
font-size: 14px;
color: #bfdbfe;
}
/* Learn Section */
.learn-section {
    position: relative;
    padding: 80px 16px;
    background: rgba(0, 0, 0, 0.2);
}
.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.learn-card {
    backdrop-filter: blur(40px);
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.learn-card:hover {
    border-color: rgba(52, 211, 153, 0.5);
    transform: scale(1.05);
}
.learn-icon {
    width: 48px;
    height: 48px;
    color: #34d399;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}
.learn-card:hover .learn-icon {
    transform: scale(1.1);
}
.learn-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
    color: white;
}
.learn-description {
    font-size: 16px;
    color: #bfdbfe;
    line-height: 1.6;
}
/* Warning Section */
.warning-section {
    position: relative;
    padding: 48px 16px;
    background: linear-gradient(to right, rgba(127, 29, 29, 0.3), rgba(120, 53, 15, 0.3));
    border-top: 1px solid rgba(239, 68, 68, 0.3);
    border-bottom: 1px solid rgba(239, 68, 68, 0.3);
}
.warning-container {
    max-width: 896px;
    margin: 0 auto;
    text-align: center;
}
.warning-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}
.warning-icon {
    width: 32px;
    height: 32px;
    color: #fb923c;
    animation: pulse 2s ease-in-out infinite;
}
.warning-title {
    font-size: 28px;
    font-weight: bold;
    color: white;
}
.warning-text {
    font-size: 18px;
    color: #fed7aa;
    margin-bottom: 8px;
}
.warning-stats {
    font-size: 14px;
    color: #fdba74;
}
/* About Section */
.about-section {
    position: relative;
    padding: 80px 16px;
}
.about-container {
    max-width: 896px;
    margin: 0 auto;
}
.about-card {
    backdrop-filter: blur(40px);
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 64px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.about-header {
    text-align: center;
    margin-bottom: 32px;
}
.award-icon {
    width: 64px;
    height: 64px;
    color: #34d399;
    margin: 0 auto 16px;
}
.about-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 16px;
}
.about-intro {
    font-size: 20px;
    color: #dbeafe;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: center;
}
.highlight {
    color: #34d399;
    font-weight: bold;
}
.quote-box {
    background: linear-gradient(to right, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.2));
    border: 2px solid rgba(52, 211, 153, 0.3);
    border-radius: 24px;
    padding: 32px;
    margin: 32px 0;
    --tw-shadow-color: rgb(16 185 129/0.1);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-shadow: 0 20px 25px -5pxvar(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);
    --tw-ring-shadow: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
}
.quote-text,.quote-box p {
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    color: white;
    line-height: 1.625;
}
.quote-box p:last-child {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.625;
}
.quote-highlight {
color: #34d399;
}
.truth-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}
.truth-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.truth-emoji {
    font-size: 32px;
    margin-top: 4px;
}
.truth-box h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #34d399;
}
.truth-box p {
    margin-top:0;
    color: #dbeafe;
    line-height: 1.6;
}
.why-free-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.why-free-box h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: white;
}
.why-free-box p {
    margin-top:0;
    color: #dbeafe;
    line-height: 1.6;
}
/* Content Section */
.content-section {
position: relative;
padding: 80px 16px;
background: rgba(0, 0, 0, 0.2);
}
.content-header {
text-align: center;
margin-bottom: 48px;
}
.content-subtitle {
font-size: 20px;
color: #bfdbfe;
}
.white-text {
color: white;
font-weight: bold;
}
.content-list {
display: flex;
flex-direction: column;
gap: 24px;
}
.content-item {
backdrop-filter: blur(40px);
background: rgba(255, 255, 255, 0.05);
padding: 32px;
border-radius: 24px;
border: 1px solid rgba(255, 255, 255, 0.1);
display: flex;
align-items: flex-start;
gap: 24px;
transition: all 0.3s ease;
}
.content-item:hover {
border-color: rgba(52, 211, 153, 0.5);
}
@media (max-width:768px){
    .content-item {
        align-items: center;
        flex-direction: column;
        padding: 32px 10px;
    }
    .content-title-row {
        text-align: center;
        flex-direction: column;
    }
    .content-details {
        width: 100%;
    }
}
.content-icon-wrapper {
flex-shrink: 0;
}
.content-icon {
width: 64px;
height: 64px;
background: linear-gradient(to bottom right, #10b981, #3b82f6);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.play-icon-content {
width: 32px;
height: 32px;
margin-inline-start: 4px;
}
.content-details {
flex: 1;
}
.content-title-row {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 16px;
}
.video-number {
background: rgba(16, 185, 129, 0.2);
color: #34d399;
padding: 4px 16px;
border-radius: 9999px;
font-weight: bold;
width:100px;
}
.content-title {
    font-size: 24px;
    font-weight: bold;
    color: white;
    width: calc(100% - 100px);
}
.content-points ul {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.content-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: inherit;
    color: #dbeafe;
    padding-left: 0;
}
.check-icon-small {
    width: 20px;
    height: 20px;
    color: #34d399;
    flex-shrink: 0;
    margin-top: 2px;
}
/* Bonus Section */
.bonus-section {
    position: relative;
    padding: 80px 16px;
}
.bonus-container {
    max-width: 896px;
    margin: 0 auto;
}
.bonus-card {
backdrop-filter: blur(40px);
    background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.2));
    padding: 40px;
    border-radius: 32px;
    border: 1px solid rgba(52, 211, 153, 0.3);
}
.bonus-header {
    text-align: center;
    margin-bottom: 32px;
}
.bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.3);
    padding: 8px 24px;
    border-radius: 9999px;
    margin-bottom: 16px;
}
.gift-emoji {
    font-size: 24px;
}
.bonus-badge span {
    color: #6ee7b7;
    font-weight: bold;
}
.bonus-title {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 16px;
}
.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bonus-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 12px;
}
.bonus-check {
    width: 24px;
    height: 24px;
    color: #34d399;
    flex-shrink: 0;
    margin-top: 4px;
}
.bonus-item-title {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-bottom: 8px;
}

.bonus-item-text {
    color: #bfdbfe;
}
/* Final CTA Section */
.final-cta-section {
    position: relative;
    padding: 80px 16px;
}
.cta-container {
    max-width: 896px;
    margin: 0 auto;
    text-align: center;
}
.cta-card {
    backdrop-filter: blur(40px);
    background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.2));
    padding: 64px;
    border-radius: 32px;
    border: 1px solid rgba(52, 211, 153, 0.3);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.cta-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 24px;
    color: white;
    line-height: 1.36;
}
.cta-gradient {
    background: linear-gradient(to right, #34d399, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-subtitle {
    font-size: 20px;
    color: #dbeafe;
    margin-bottom: 32px;
}
.cta-form {
    max-width: 448px;
    margin: 0 auto;
}
.cta-email-input {
    width: 100%;
    padding: 20px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 16px;
    margin-bottom: 16px;
}
.cta-email-input::placeholder {
    color: #bfdbfe;
}
.cta-email-input:focus {
    outline: none;
    ring: 2px solid #34d399;
}
.cta-submit-btn {
    width: 100%;
    background: linear-gradient(to right, #10b981, #3b82f6);
    color: white;
    font-weight: bold;
    padding: 20px 32px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.cta-submit-btn:hover {
    background: linear-gradient(to right, #059669, #2563eb);
    transform: scale(1.05);
}
.cta-success {
    margin-top: 16px;
    padding: 16px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(52, 211, 153, 0.5);
    border-radius: 8px;
    color: #6ee7b7;
}
/* Footer */
.footer {
    position: relative;
    padding: 32px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-content {
    max-width: 1152px;
    margin: 0 auto;
    text-align: center;
    color: #bfdbfe;
}
/* Responsive Design */
@media (max-width: 768px) {
.hero-title {
font-size: 32px;
}
.hero-subtitle {
    font-size: 18px;
}
.section-title {
    font-size: 32px;
}
.exit-popup-body {
    padding: 24px;
}
.exit-popup-title {
    font-size: 24px;
}
.exit-popup-subtitle {
    font-size: 16px;
}
.feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.feature-value {
    font-size: 20px;
}
.feature-label {
    font-size: 12px;
}
.about-card {
    padding: 24px;
}
.cta-card {
    padding: 32px 24px;
}
.cta-title {
    font-size: 32px;
}
.hero-stats {
    gap: 8px;
}
.stat-value {
    font-size: 20px;
}
.top-bar-content {
    gap: 8px;
    font-size: 12px;
}
.floating-whatsapp {
    bottom: 16px;
    right: 16px;
    padding: 12px;
}
.whatsapp-icon {
    width: 24px;
    height: 24px;
}
}
@media (min-width: 768px) {
.exit-popup-content {
border-radius: 32px;
}
.exit-popup-close {
    top: -16px;
    right: -16px;
    width: 40px;
    height: 40px;
}
.hero-reviews {
    flex-direction: row;
}
}

/*  reviews */
/* Reviews Carousel */


/*.reviews-carousel-container {*/
/*    position: relative;*/
/*    max-width: 100%;*/
/*    overflow: hidden;*/
/*    padding: 0 60px;*/
/*}*/

.reviews-carousel-container {
    position: relative;
    width: 100%;
}

.reviews-carousel {
    overflow: hidden;
    display: flex;
    transition: transform 0.5s ease-in-out;
    margin: 0 60px;
}

/*.reviews-carousel-wrapper {*/
/*    display: flex;*/
/*    gap: 20px;*/
/*    transition: transform 0.5s ease-in-out;*/
/*    will-change: transform;*/
/*    width: 100%;*/
/*}*/

.reviews-carousel-wrapper {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    width: 100%;
}


/*.review-card {*/
/*    flex: 0 0 33.333%; */
/*    backdrop-filter: blur(40px);*/
/*    background: rgba(255, 255, 255, 0.05);*/
/*    padding: 24px;*/
/*    border-radius: 24px;*/
/*    border: 1px solid rgba(255, 255, 255, 0.1);*/
/*    transition: all 0.3s ease;*/
/*}*/

.review-card {
    flex: 0 0 calc((100% - 40px) / 3);
    /* 2 gaps × 20px = 40px */
    box-sizing: border-box;
    backdrop-filter: blur(40px);
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(52, 211, 153, 0.5);
    transform: translateY(-4px);
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(16, 185, 129, 0.8);
    border: 2px solid rgba(52, 211, 153, 0.5);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(16, 185, 129, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

/* Carousel Dots Indicator */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #34d399;
    width: 32px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: rgba(52, 211, 153, 0.6);
}

/* Responsive Design for Carousel */
@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 calc((100% - 20px) / 2); /* 1 gap */
    }
    
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 100%;
    }
    .reviews-carousel {
        margin: 0 20px;
    }
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
}

.video-carousel {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.video-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    margin: 0 60px;
}
.video-carousel-viewport {
    width: 100%;
}

.video-grid {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

/* 3 cards visibles */
.video-card {
    flex: 0 0 calc((100% - 40px) / 3);
}

/* Responsive */
@media (max-width: 1024px) {
    .video-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }
}

@media (max-width: 768px) {
    .video-card {
        flex: 0 0 100%;
    }
    .video-carousel-wrapper {
        margin: 0 20px;
    }
}

#videoModal {
    z-index: 1081;
}

