/* ===== BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', 'Roboto', sans-serif;
    color: #1a1a2e;
    overflow-x: hidden;
}
a { text-decoration: none; }
section { position: relative; }

/* ===== NAVBAR ===== */
.navbar-custom {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 14px 0;
    transition: box-shadow 0.3s;
}
.navbar-custom.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar-custom .navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: #5434E5;
    display: flex;
    align-items: center;
    gap: 8px;
}
.navbar-custom .navbar-brand img { height: 32px; }
.navbar-custom .nav-link {
    font-weight: 500;
    color: #555;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.2s;
}
.navbar-custom .nav-link:hover {
    color: #5434E5;
    background: rgba(84,52,229,0.06);
}
.btn-get-started {
    background: #5434E5;
    color: #fff !important;
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-get-started:hover {
    background: #4326c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(84,52,229,0.35);
}

/* ===== HERO ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0edff 0%, #e8f4fd 50%, #fce4ff 100%);
    padding-top: 80px;
    overflow: hidden;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(84,52,229,0.1);
    color: #5434E5;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero-badge .dot {
    width: 8px; height: 8px;
    background: #5434E5;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #1a1a2e;
}
.hero-title .highlight {
    background: linear-gradient(135deg, #5434E5, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}
.hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.btn-hero-primary {
    background: #5434E5;
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-hero-primary:hover {
    background: #4326c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(84,52,229,0.35);
    color: #fff;
}
.btn-hero-secondary {
    background: #fff;
    color: #1a1a2e;
    border: 2px solid #e0e0e0;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}
.btn-hero-secondary:hover {
    border-color: #5434E5;
    color: #5434E5;
    transform: translateY(-2px);
}
.hero-stats {
    display: flex;
    gap: 32px;
}
.hero-stat h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #5434E5;
    margin-bottom: 2px;
}
.hero-stat p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-mockup {
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}
.hero-glow {
    position: absolute;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(84,52,229,0.15), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* ===== FEATURES ===== */
.features-section {
    padding: 100px 0;
    background: #fff;
}
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #5434E5;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1.05rem;
    color: #777;
    max-width: 550px;
    margin: 0 auto 60px;
    line-height: 1.7;
}
.feature-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}
.feature-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}
.feature-icon.purple { background: rgba(84,52,229,0.1); color: #5434E5; }
.feature-icon.blue { background: rgba(59,130,246,0.1); color: #3b82f6; }
.feature-icon.green { background: rgba(34,197,94,0.1); color: #22c55e; }
.feature-icon.orange { background: rgba(249,115,22,0.1); color: #f97316; }
.feature-icon.pink { background: rgba(236,72,153,0.1); color: #ec4899; }
.feature-icon.teal { background: rgba(20,184,166,0.1); color: #14b8a6; }
.feature-card h5 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #1a1a2e;
}
.feature-card p {
    color: #888;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== HOW IT WORKS ===== */
.how-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f7ff 0%, #fff 100%);
}
.step-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}
.step-number {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5434E5, #a855f7);
    color: #fff;
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.step-card h5 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #1a1a2e;
}
.step-card p {
    color: #888;
    font-size: 0.92rem;
    line-height: 1.6;
}
.step-connector {
    position: absolute;
    top: 48px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #5434E5, #a855f7);
    opacity: 0.3;
    z-index: 0;
}

/* ===== SOCIAL PROOF ===== */
.social-section {
    padding: 80px 0;
    background: #fff;
}
.platform-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.platform-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f8f8;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #444;
    transition: all 0.3s;
}
.platform-badge:hover {
    background: #5434E5;
    color: #fff;
    transform: scale(1.05);
}
.platform-badge i { font-size: 1.2rem; }

/* ===== TEMPLATES PREVIEW ===== */
.templates-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 100%);
    color: #fff;
}
.templates-section .section-label { color: #a78bfa; }
.templates-section .section-title { color: #fff; }
.templates-section .section-desc { color: rgba(255,255,255,0.6); }
.template-preview {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}
.template-preview:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-6px);
}
.template-mockup {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}
.template-mockup .mock-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}
.template-mockup .mock-link {
    width: 80%;
    height: 14px;
    border-radius: 7px;
    background: rgba(255,255,255,0.25);
}
.tmpl-1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.tmpl-2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.tmpl-3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.tmpl-4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.tmpl-5 { background: #0a0a1a; }
.tmpl-6 { background: linear-gradient(135deg, #1a3a8a, #2b52c4); }
.template-preview h6 {
    font-weight: 600;
    margin: 0;
    color: rgba(255,255,255,0.9);
}

/* ===== CTA ===== */
.cta-section {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}
.cta-box {
    background: linear-gradient(135deg, #5434E5, #7c3aed, #a855f7);
    border-radius: 28px;
    padding: 60px 40px;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}
.cta-box h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 16px;
}
.cta-box p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.btn-cta {
    background: #fff;
    color: #5434E5;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
}
.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: #4326c4;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1a2e;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}
.footer-brand {
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.footer-brand img { height: 28px; filter: brightness(10); }
.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 20px;
}
.footer h6 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: #a78bfa; }
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: #5434E5;
    color: #fff;
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-section { padding-top: 100px; text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-cta-group { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image-wrapper { margin-top: 40px; }
    .step-connector { display: none; }
}
@media (max-width: 575px) {
    .hero-stats { flex-direction: column; gap: 16px; }
    .cta-box { padding: 40px 20px; }
    .platform-badge { padding: 10px 18px; font-size: 0.85rem; }
}
