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

body.landing-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.container-narrow { max-width: 800px; }

/* ==================== NAVBAR ==================== */
.nav-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 800;
    font-size: 17px;
    flex-shrink: 0;
}
.logo-box {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 18px;
    box-shadow: 0 4px 12px rgba(102,126,234,0.35);
}
.nav-links {
    display: flex;
    gap: 28px;
    flex: 1;
    justify-content: center;
}
.nav-links a {
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}
.nav-links a:hover { color: #667eea; }
.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}
.btn-ghost {
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
}
.btn-ghost:hover { color: #667eea; background: #f3f4f6; }
.btn-primary-sm {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(102,126,234,0.3);
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-primary-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(102,126,234,0.45);
}
.nav-toggle {
    display: none;
    background: none; border: none;
    font-size: 24px; cursor: pointer;
    color: #1a1a2e;
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f5f7ff 0%, #fff 60%, #faf5ff 100%);
    overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}
.shape-1 {
    width: 500px; height: 500px;
    background: #667eea;
    top: -200px; right: -100px;
    animation: float 20s ease-in-out infinite;
}
.shape-2 {
    width: 400px; height: 400px;
    background: #f093fb;
    bottom: -200px; left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}
.shape-3 {
    width: 300px; height: 300px;
    background: #4facfe;
    top: 40%; left: 30%;
    opacity: 0.25;
    animation: float 30s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}
.hero-content { position: relative; z-index: 1; text-align: center; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.live-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16,185,129,0.7);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.7); }
    70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

.hero-title {
    font-size: 54px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: #0f172a;
}
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-text-light {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    color: #4b5563;
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(102,126,234,0.4);
    transition: all 0.25s;
}
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(102,126,234,0.5);
}
.btn-hero-primary svg { transition: transform 0.2s; }
.btn-hero-primary:hover svg { transform: translateX(3px); }

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    padding: 15px 28px;
    background: #fff;
    color: #4b5563;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.25s;
}
.btn-hero-outline:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
    padding: 24px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(102,126,234,0.1);
}
.hero-stat { text-align: center; }
.hero-stat-value {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}
.hero-stat-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==================== TICKER ==================== */
.ticker {
    background: #0f172a;
    color: #fff;
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}
.ticker-track {
    display: inline-block;
    animation: scroll 30s linear infinite;
    font-size: 14px;
    font-weight: 600;
}
.ticker-track span {
    margin: 0 30px;
    display: inline-block;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==================== SECTION ==================== */
.section {
    padding: 80px 0;
}
.section-alt {
    background: linear-gradient(180deg, #f9fafb 0%, #fff 100%);
}
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: #667eea;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 6px 14px;
    background: #eef2ff;
    border-radius: 100px;
}
.section-tag.light {
    background: rgba(255,255,255,0.15);
    color: #fbbf24;
}
.section-header h2 {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 14px;
}
.section-header p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
}

/* ==================== BENEFIT ==================== */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.benefit-card {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.25s;
}
.benefit-card:hover {
    transform: translateY(-4px);
    border-color: #667eea;
    box-shadow: 0 20px 40px rgba(102,126,234,0.12);
}
.benefit-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}
.benefit-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}
.benefit-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.65;
}

/* ==================== SERVICES ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.service-card {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    text-align: center;
    transition: all 0.25s;
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: #667eea;
    box-shadow: 0 20px 40px rgba(102,126,234,0.15);
}
.service-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
    margin: 0 auto 16px;
}
.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}
.service-card p {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 16px;
}
.service-link {
    color: #667eea;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}
.service-link:hover { text-decoration: underline; }
.section-cta { text-align: center; }

/* ==================== TESTIMONIAL ==================== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}
.testimonial-card {
    padding: 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.25s;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.stars {
    color: #fbbf24;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.testimonial-card > p {
    font-size: 14px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}
.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: #0f172a;
}
.testimonial-author span {
    font-size: 12px;
    color: #9ca3af;
}

.testimonial-stats {
    text-align: center;
    padding: 40px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: #fff;
}
.testimonial-stats > p {
    font-size: 16px;
    margin-bottom: 28px;
    opacity: 0.95;
}
.live-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}
.live-stat-value {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
}
.live-stat-label {
    font-size: 12px;
    opacity: 0.85;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==================== FAQ ==================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
}
.faq-item.active {
    border-color: #667eea;
    box-shadow: 0 8px 24px rgba(102,126,234,0.1);
}
.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-icon {
    color: #9ca3af;
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #667eea;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}
.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 24px 20px;
}
.faq-answer p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
}

/* ==================== RESELLER ==================== */
.section-reseller {
    background: linear-gradient(135deg, #0f172a 0%, #1a1a2e 100%);
    color: #fff;
}
.reseller-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.reseller-content h2 {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 18px;
}
.reseller-content > p {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 28px;
}
.reseller-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}
.reseller-feature {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}
.check {
    color: #4ade80;
    font-weight: 800;
    flex-shrink: 0;
}
.reseller-cta .btn-hero-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 8px 24px rgba(251,191,36,0.4);
}

.reseller-visual { display: flex; justify-content: center; }
.mockup-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 20px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.mockup-header {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}
.mockup-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
}
.mockup-body { display: flex; flex-direction: column; gap: 12px; }
.mockup-line {
    height: 12px;
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
}
.mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 10px 0;
}
.mockup-stat {
    height: 60px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(102,126,234,0.4), rgba(118,75,162,0.4));
}

/* ==================== CTA FINAL ==================== */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7ff 0%, #faf5ff 100%);
    text-align: center;
}
.cta-final h2 {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #0f172a;
    margin-bottom: 16px;
}
.cta-final p {
    font-size: 16px;
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #0f172a;
    color: #fff;
    padding: 60px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col .nav-logo { color: #fff; margin-bottom: 16px; }
.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge {
    font-size: 12px;
    padding: 5px 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 100px;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}
.footer-col h4 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-col ul a:hover { color: #fbbf24; }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s;
}
.footer-social a:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
    .nav-links { display: none; }
    .nav-links.show {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .nav-toggle { display: block; }
    .hero-title { font-size: 36px; letter-spacing: -1px; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px; padding: 24px 16px; }
    .hero-stat-value { font-size: 22px; }
    .section-header h2 { font-size: 28px; }
    .reseller-box { grid-template-columns: 1fr; gap: 40px; }
    .reseller-content h2 { font-size: 28px; }
    .reseller-features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .cta-final h2 { font-size: 28px; }
    .live-stats { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 600px) {
    .hero { padding: 48px 0 40px; }
    .hero-title { font-size: 28px; }
    .hero-subtitle { font-size: 15px; }
    .hero-stats { grid-template-columns: 1fr; }
    .section { padding: 56px 0; }
    .section-header h2 { font-size: 24px; }
    .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
    .nav-actions .btn-ghost { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .container { padding: 0 16px; }
}