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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Alexandria', sans-serif;
    direction: rtl;
    background-color: #ffffff;
    color: #1f2937;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Force Alexandria font on ALL elements */
button, input, select, textarea, 
button span, .faq-section, .faq-section *,
h1, h2, h3, h4, h5, h6, p, a, span, div, li {
    font-family: 'Alexandria', sans-serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ==================== */
/* UTILITY CLASSES */
/* ==================== */
.text-amber {
    color: #fbbf24;
}

.font-bold {
    font-weight: 700;
}

.hide-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hide-mobile {
        display: block;
    }
}

/* ==================== */
/* ANIMATIONS */
/* ==================== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in-right {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(251, 191, 36, 0.4); }
    50% { box-shadow: 0 0 40px rgba(251, 191, 36, 0.8); }
}

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

.animate-float { animation: float 3s ease-in-out infinite; }
.animate-float-slow { animation: float-slow 4s ease-in-out infinite; }
.animate-bounce-slow { animation: bounce-slow 2s ease-in-out infinite; }
.animate-fade-in-up { animation: fade-in-up 0.8s ease-out forwards; }
.animate-fade-in-right { animation: fade-in-right 0.8s ease-out forwards; }
.animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }

/* ==================== */
/* WHATSAPP FLOAT BUTTON */
/* ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 1000;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: bounce-slow 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20ba5a;
}

/* ==================== */
/* NAVBAR */
/* ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.5s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

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

.logo img {
    height: 3rem;
    transition: height 0.3s ease;
}

.navbar.scrolled .logo img {
    height: 2.5rem;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a:hover {
    color: white;
}

.navbar.scrolled .nav-links a {
    color: #374151;
}

.navbar.scrolled .nav-links a:hover {
    color: #059669;
}

.nav-whatsapp {
    color: #86efac !important;
}

.navbar.scrolled .nav-whatsapp {
    color: #16a34a !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-download-nav {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    background: #fbbf24;
    color: #064e3b;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .btn-download-nav {
        display: flex;
    }
}

.btn-download-nav:hover {
    transform: scale(1.05);
}

.navbar.scrolled .btn-download-nav {
    background: linear-gradient(to right, #10b981, #14b8a6);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.navbar.scrolled .mobile-menu-btn {
    color: #374151;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
}

.mobile-menu.active {
    display: flex;
}

.navbar.scrolled .mobile-menu {
    background: #f9fafb;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .mobile-menu a {
    color: #374151;
}

.navbar.scrolled .mobile-menu a:hover {
    background: #f3f4f6;
}

.btn-mobile-download {
    background: linear-gradient(to right, #10b981, #14b8a6) !important;
    color: white !important;
    justify-content: center;
    border-radius: 0.75rem !important;
    padding: 1rem !important;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #059669, #0d9488, #047857);
    background-size: 200% 200%;
    animation: gradient 15s ease infinite;
}

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

.hero-blob-1 {
    top: 5rem;
    right: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

.hero-blob-2 {
    bottom: 5rem;
    left: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(52, 211, 153, 0.2);
    animation: float-slow 4s ease-in-out infinite;
}

.hero-blob-3 {
    top: 50%;
    right: 25%;
    width: 12rem;
    height: 12rem;
    background: rgba(251, 191, 36, 0.2);
    animation: bounce-slow 2s ease-in-out infinite;
}

.hero-decoration {
    position: absolute;
    opacity: 0.8;
}

.hero-moon {
    top: 2.5rem;
    left: 25%;
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
}

.hero-star-1 {
    top: 8rem;
    right: 33%;
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero-star-2 {
    bottom: 33%;
    left: 5rem;
    font-size: 2.5rem;
    animation: bounce-slow 2s ease-in-out infinite;
}

.hero-star-3 {
    top: 25%;
    right: 5rem;
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite 0.3s;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 5rem 0;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: fit-content;
}

.hero-badge i {
    color: #fcd34d;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #d1fae5;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

.hero-points {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: fade-in-up 0.8s ease-out forwards;
}

.hero-point:nth-child(1) { animation-delay: 0s; }
.hero-point:nth-child(2) { animation-delay: 0.1s; }
.hero-point:nth-child(3) { animation-delay: 0.2s; }
.hero-point:nth-child(4) { animation-delay: 0.3s; }

.point-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-icon i {
    font-size: 0.75rem;
    color: #064e3b;
}

.hero-point span {
    font-size: 1.125rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #fbbf24;
    color: #064e3b;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: #fcd34d;
    transform: scale(1.05);
}

.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn-shine:hover::before {
    left: 100%;
}

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.badge i {
    color: #fcd34d;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
}

.guide-card-wrapper {
    position: relative;
}

.guide-card-glow {
    position: absolute;
    inset: 0;
    background: rgba(251, 191, 36, 0.3);
    border-radius: 1.5rem;
    filter: blur(60px);
    animation: pulse 3s ease-in-out infinite;
}

.guide-card {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    padding: 2rem;
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
}

.guide-card:hover {
    transform: scale(1.05) rotateY(-5deg);
}

.guide-card-header {
    background: linear-gradient(135deg, #10b981, #0d9488);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.guide-card-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.guide-card-moon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce-slow 2s ease-in-out infinite;
}

.guide-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
}

.guide-card-header p {
    color: #d1fae5;
    margin-bottom: 1rem;
    position: relative;
}

.guide-card-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
}

.guide-card-logo img {
    height: 1.5rem;
}

.guide-card-body {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guide-card-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #6b7280;
}

.info-value {
    font-weight: 700;
    color: #059669;
}

.info-value.price {
    color: #f59e0b;
    font-size: 1.25rem;
}

.guide-card-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.guide-card-rating i {
    color: #fbbf24;
    font-size: 1.25rem;
}

.guide-card-rating span {
    color: #9ca3af;
    margin-right: 0.5rem;
}

.guide-card-badge {
    position: absolute;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.free-badge {
    top: -1.5rem;
    right: -1.5rem;
    background: #fbbf24;
    color: #064e3b;
    animation: bounce-slow 2s ease-in-out infinite;
}

.download-badge {
    bottom: -1rem;
    left: -1rem;
    background: #10b981;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.scroll-indicator a:hover {
    color: white;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ==================== */
/* STATS SECTION */
/* ==================== */
.stats-section {
    padding: 4rem 0;
    background: #f9fafb;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #e5e7eb 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #34d399, #14b8a6);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #059669;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

/* ==================== */
/* PROBLEM & SOLUTION */
/* ==================== */
.problem-solution {
    padding: 5rem 0;
    background: white;
}

.problem-solution .container {
    max-width: 56rem;
}

.problem-card,
.solution-card {
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .problem-card,
    .solution-card {
        padding: 3rem;
    }
}

.problem-card {
    background: linear-gradient(135deg, #fef2f2, #fff7ed);
}

.solution-card {
    background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
    border: 2px solid #a7f3d0;
}

.problem-emoji,
.solution-emoji {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 4rem;
    opacity: 0.2;
}

@media (min-width: 768px) {
    .solution-emoji {
        left: 1rem;
        right: auto;
    }
}

.problem-card h2,
.solution-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .problem-card h2,
    .solution-card h2 {
        font-size: 1.875rem;
    }
}

.problem-list p,
.solution-list p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.x-mark {
    color: #ef4444;
    font-size: 1.25rem;
}

.check-mark {
    color: #10b981;
    font-size: 1.25rem;
}

.btn-solution {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(to right, #10b981, #14b8a6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.btn-solution:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
}

.btn-solution i:first-child {
    animation: bounce 1s ease-in-out infinite;
}

/* ==================== */
/* SECTION STYLES */
/* ==================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.light {
    color: white;
}

.section-header.light p {
    color: #a7f3d0;
}

.section-badge {
    display: inline-block;
    background: #d1fae5;
    color: #047857;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.badge-amber {
    background: #fef3c7;
    color: #b45309;
}

.badge-blue {
    background: #dbeafe;
    color: #1d4ed8;
}

.badge-pink {
    background: #fce7f3;
    color: #be185d;
}

.badge-purple {
    background: #ede9fe;
    color: #7c3aed;
}

.badge-white {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    color: white;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

.section-header.light h2 {
    color: white;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
}

/* ==================== */
/* FEATURES SECTION */
/* ==================== */
.features-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f9fafb, white);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: #d1fae5;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: #fef3c7;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.features-grid {
    display: grid;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.gradient-amber { background: linear-gradient(135deg, #fbbf24, #f97316); }
.gradient-emerald { background: linear-gradient(135deg, #34d399, #14b8a6); }
.gradient-blue { background: linear-gradient(135deg, #60a5fa, #6366f1); }
.gradient-purple { background: linear-gradient(135deg, #a78bfa, #ec4899); }
.gradient-red { background: linear-gradient(135deg, #f87171, #fb7185); }
.gradient-green { background: linear-gradient(135deg, #4ade80, #10b981); }

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* ==================== */
/* BONUSES SECTION */
/* ==================== */
.bonuses-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fffbeb, #fff7ed);
}

.bonuses-grid {
    display: grid;
    gap: 2rem;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .bonuses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bonus-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid #fde68a;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bonus-icon {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.bonus-icon.icon-emerald {
    color: #10b981;
}

.bonus-icon.icon-green {
    color: #22c55e;
}

.bonus-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.bonus-card p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* ==================== */
/* PROCESS SECTION */
/* ==================== */
.process-section {
    padding: 5rem 0;
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-card {
    background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #a7f3d0;
    transition: all 0.3s ease;
    position: relative;
}

.process-card:hover {
    border-color: #6ee7b7;
}

.process-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.process-icon {
    color: #059669;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.process-card h3 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.process-card p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* ==================== */
/* TRUST SECTION */
/* ==================== */
.trust-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #064e3b, #0f766e);
    color: white;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.trust-section::after {
    content: '';
    position: absolute;
    top: 5rem;
    right: 5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    filter: blur(100px);
}

.trust-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.trust-logo img {
    height: 4rem;
}

.trust-grid {
    display: grid;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.trust-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 2rem;
    color: #fcd34d;
    margin-bottom: 1rem;
}

.trust-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trust-card p {
    color: #a7f3d0;
    font-size: 0.875rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
}

.trust-badge i {
    color: #fcd34d;
}

/* ==================== */
/* TESTIMONIALS SECTION */
/* ==================== */
.testimonials-section {
    padding: 5rem 0;
    background: #f9fafb;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#e5e7eb 1px, transparent 1px),
                      linear-gradient(90deg, #e5e7eb 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.testimonial-main {
    max-width: 56rem;
    margin: 0 auto 3rem;
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .testimonial-main {
        padding: 3rem;
    }
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 4rem;
    color: #d1fae5;
}

.testimonial-content {
    position: relative;
}

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

.testimonial-avatar {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #34d399, #14b8a6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.testimonial-info h4 {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.125rem;
}

.testimonial-info p {
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.testimonial-info i {
    color: #10b981;
}

.testimonial-rating {
    margin-right: auto;
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.25rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-result {
    display: inline-block;
    background: #ecfdf5;
    padding: 1rem;
    border-radius: 0.75rem;
}

.testimonial-result span {
    color: #047857;
    font-weight: 500;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: #9ca3af;
}

.dot.active {
    background: #10b981;
    width: 2rem;
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
    position: relative;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.testimonial-card-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #34d399, #14b8a6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.testimonial-card-header h4 {
    font-weight: 700;
    color: #1f2937;
}

.stars {
    display: flex;
    gap: 0.125rem;
}

.stars i {
    color: #fbbf24;
    font-size: 0.875rem;
}

.testimonial-card p {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==================== */
/* FAQ SECTION */
/* ==================== */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-list {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #f9fafb;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #a7f3d0;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: right;
    font-family: 'Alexandria', sans-serif;
}

.faq-question span {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.125rem;
    font-family: 'Alexandria', sans-serif;
}

.faq-question i {
    width: 2.5rem;
    height: 2.5rem;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-family: 'Alexandria', sans-serif;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #4b5563;
    line-height: 1.8;
    font-family: 'Alexandria', sans-serif;
}

/* ==================== */
/* FINAL CTA SECTION */
/* ==================== */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #059669, #0d9488, #047857);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.cta-decoration {
    position: absolute;
    opacity: 0.1;
}

.cta-decoration.moon {
    top: 2.5rem;
    right: 2.5rem;
    font-size: 5rem;
    animation: float 3s ease-in-out infinite;
}

.cta-decoration.star {
    bottom: 2.5rem;
    left: 2.5rem;
    font-size: 4rem;
    animation: bounce-slow 2s ease-in-out infinite;
}

.cta-decoration.heart {
    top: 50%;
    left: 25%;
    font-size: 2.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 3rem;
    }
}

.cta-content > p {
    font-size: 1.25rem;
    color: #d1fae5;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #fbbf24;
    color: #064e3b;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #fcd34d;
    transform: scale(1.05);
}

.cta-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    font-size: 0.875rem;
}

.cta-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-badges i {
    color: #fcd34d;
}

/* ==================== */
/* FOOTER */
/* ==================== */
.footer {
    background: #111827;
    color: white;
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 3.5rem;
}

.footer-about p {
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    background: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.1);
}

.social-instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-tiktok:hover {
    background: #374151;
}

.social-snapchat:hover {
    background: #fffc00;
    color: #111827;
}

.footer-links h4,
.footer-contact h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-contact a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #34d399;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
}

.footer-contact i {
    width: 1.25rem;
}

.footer-contact .fa-whatsapp {
    color: #25d366;
}

.footer-contact .fa-globe {
    color: #60a5fa;
}

.footer-contact .fa-map-marker-alt {
    color: #f87171;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 2rem;
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-bottom p:last-child {
    margin-top: 0.5rem;
}

/* ==================== */
/* RESPONSIVE */
/* ==================== */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-point span {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
}
