:root {
    --cyan: #00f2fe;
    --magenta: #fe0979;
    --gold: #d4a853;
    --dark-bg: #0b0b12;
    --card-bg: #13131f;
    --card-border: #1f1f35;
    --text-primary: #f0f0f5;
    --text-secondary: #9ca3af;
    --whatsapp: #25d366;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Cairo', 'Cairo Fallback', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

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

.hero {
    position: relative;
    padding: 60px 20px 50px;
    text-align: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,242,254,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(212,168,83,0.12);
    border: 1px solid rgba(212,168,83,0.3);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 16px;
}
.hero h1 span {
    background: linear-gradient(to left, var(--cyan), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 28px;
    max-width: 360px;
    margin-inline: auto;
}
.hero-img {
    border-radius: 16px;
    margin: 0 auto 30px;
    max-width: 320px;
    width: 100%;
    height: auto;
    aspect-ratio: 560 / 374;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--whatsapp);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 50px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 0 12px rgba(37,211,102,0.4);
    animation: glow 2.5s ease-in-out infinite;
    will-change: opacity;
}
.wa-btn:hover { transform: scale(1.04); box-shadow: 0 0 20px rgba(37,211,102,0.6); }
.wa-btn svg { width: 22px; height: 22px; fill: currentColor; }
@keyframes glow {
    0%,100% { opacity: 1; }
    50% { opacity: 0.85; }
}

.section { padding: 50px 20px; }
.section-title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}
.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 32px;
}

.pain-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 14px;
}
.pain-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}
.pain-icon-1 { background: rgba(0,242,254,0.1); color: var(--cyan); }
.pain-icon-2 { background: rgba(254,9,121,0.1); color: var(--magenta); }
.pain-icon-3 { background: rgba(212,168,83,0.1); color: var(--gold); }
.pain-icon-4 { background: rgba(139,92,246,0.1); color: #8b5cf6; }
.pain-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.pain-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 20px 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    height: 2px;
    background: linear-gradient(to left, var(--cyan), var(--magenta));
}
.feature-card img {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 8px;
}
.feature-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 24px 20px;
    background: var(--card-bg);
    border-radius: 14px;
    border: 1px solid var(--card-border);
    margin: 40px 20px;
    max-width: 440px;
    margin-inline: auto;
}
.stat-item { text-align: center; }
.stat-num { font-size: 24px; font-weight: 800; color: var(--gold); }
.stat-label { font-size: 11px; color: var(--text-secondary); }

.testimonial {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 14px;
}
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--card-border);
}
.testimonial-name { font-size: 14px; font-weight: 700; }
.testimonial-city { font-size: 12px; color: var(--text-secondary); }
.testimonial-stars { margin-inline-start: auto; color: var(--gold); font-size: 12px; letter-spacing: 2px; }
.testimonial p { font-size: 13px; color: #d1d5db; line-height: 1.7; }

.process-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}
.step-content h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.step-content p { font-size: 13px; color: var(--text-secondary); }

.cta-mid {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(0,242,254,0.03) 50%, transparent 100%);
}
.cta-mid h2 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.cta-mid p { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }

.footer {
    background: #0a0a10;
    border-top: 1px solid var(--card-border);
    padding: 40px 20px 100px;
}
.footer-contact { text-align: center; margin-bottom: 24px; }
.footer-contact h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.footer-contact p { font-size: 13px; color: var(--text-secondary); }
.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.footer-links a { font-size: 13px; color: var(--cyan); }
.footer-links a:hover { text-decoration: underline; }
.disclaimer {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 20px;
}
.disclaimer h4 { font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.disclaimer p { font-size: 11px; color: var(--text-secondary); line-height: 1.8; }
.copyright { text-align: center; font-size: 11px; color: #9ca3af; }

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px;
    background: linear-gradient(to top, var(--dark-bg) 60%, transparent);
    z-index: 999;
}
.sticky-cta .wa-btn {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    font-size: 15px;
    padding: 13px 24px;
}

.top-bar {
    background: rgba(0,242,254,0.06);
    border-bottom: 1px solid rgba(0,242,254,0.1);
    padding: 8px 16px;
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.top-bar-inner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.availability-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(34,197,94,0.06);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 12px;
    padding: 14px 18px;
    margin: 24px auto;
    max-width: 340px;
}
.availability-icon {
    color: #22c55e;
    flex-shrink: 0;
}
.availability-text {
    font-size: 13px;
    text-align: start;
}
.availability-text strong {
    display: block;
    color: #22c55e;
    font-size: 13px;
    margin-bottom: 4px;
}
.availability-text span {
    font-size: 12px;
    color: var(--text-secondary);
}

.cta-sub {
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 20px 16px;
    max-width: 440px;
    margin: 0 auto;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 11px;
    color: var(--text-secondary);
}
.trust-badge svg {
    color: var(--cyan);
    flex-shrink: 0;
}

.guarantee-section {
    padding: 40px 20px;
}
.guarantee-box {
    background: var(--card-bg);
    border: 1px solid rgba(0,242,254,0.15);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    max-width: 440px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.guarantee-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--cyan), var(--magenta));
}
.guarantee-icon {
    color: var(--cyan);
    margin-bottom: 14px;
}
.guarantee-icon svg {
    display: inline-block;
}
.guarantee-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.guarantee-box p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.edu-section {
    padding-bottom: 30px;
}
.edu-block {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 16px;
}
.edu-block h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--cyan);
}
.edu-block p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
}
.edu-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}
.edu-list li {
    position: relative;
    padding-inline-start: 20px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 6px;
}
.edu-list li::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
}
.faq-item {
    border-top: 1px solid var(--card-border);
    padding-top: 14px;
    margin-top: 14px;
}
.faq-item:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}
.faq-item h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}
.faq-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.affiliation-notice {
    background: rgba(212,168,83,0.06);
    border: 1px solid rgba(212,168,83,0.2);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 20px;
    text-align: center;
}
.affiliation-notice p {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.affiliation-notice strong {
    color: var(--gold);
}
