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

:root {
    --pink: #ec4899;
    --pink-light: #f472b6;
    --pink-dark: #db2777;
    --magenta: #d946ef;
    --fuchsia: #a855f7;
    --rose: #fb7185;
    --bg-dark: #0f0515;
    --bg-card: #1a0a20;
    --bg-card-hover: #2a1535;
    --text: #fdf2f8;
    --text-muted: #d4a5c9;
    --border: rgba(236, 72, 153, 0.3);
    --glow: rgba(236, 72, 153, 0.5);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 10%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 90%, rgba(217, 70, 239, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Top Strip */
.top-strip {
    background: linear-gradient(90deg, var(--pink-dark), var(--magenta), var(--fuchsia), var(--magenta), var(--pink-dark));
    background-size: 200% 100%;
    animation: neonPulse 3s ease infinite;
    color: white;
    text-align: center;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

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

/* Header */
header {
    background: rgba(15, 5, 21, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--rose), var(--pink), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    text-shadow: 0 0 30px var(--glow);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

nav a:hover,
nav a.active {
    color: white;
    background: linear-gradient(135deg, var(--pink), var(--magenta));
    box-shadow: 0 0 20px var(--glow);
}

/* Hero */
.hero {
    padding: 80px 0;
}

.hero-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text .tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink), var(--magenta));
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px var(--glow);
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, var(--pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-visual img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid var(--border);
    box-shadow: 0 0 40px var(--glow);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink), var(--magenta));
    color: white;
    box-shadow: 0 0 25px var(--glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--glow);
}

.btn-outline {
    background: transparent;
    color: var(--pink-light);
    border: 2px solid var(--pink);
}

.btn-outline:hover {
    background: var(--pink);
    color: white;
    box-shadow: 0 0 20px var(--glow);
}

.btn-wrap {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 50px 0;
}

.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.stat-box:hover {
    box-shadow: 0 0 30px var(--glow);
    border-color: var(--pink);
}

.stat-box h3 {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--rose), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-box span {
    color: var(--text-muted);
    font-size: 14px;
}

/* Page Banner */
.page-banner {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(236, 72, 153, 0.1) 0%, transparent 100%);
}

.page-banner h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff, var(--pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-banner p {
    color: var(--text-muted);
    font-size: 18px;
}

/* Sections */
.section {
    padding: 70px 0;
}

.section-alt {
    background: linear-gradient(180deg, rgba(236, 72, 153, 0.05) 0%, transparent 100%);
}

.sec-head {
    text-align: center;
    margin-bottom: 50px;
}

.sec-head .label {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink), var(--magenta));
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sec-head h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sec-head p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Neon Cards */
.neon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.neon-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.neon-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--pink), var(--magenta), var(--fuchsia));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.neon-card:hover::before {
    opacity: 1;
}

.neon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.2);
}

.neon-card .card-ico {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--pink), var(--magenta));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 20px var(--glow);
}

.neon-card .card-ico img {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 4px;
}

.neon-card h4 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
}

.neon-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Two Column */
.dual-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dual-col.flip {
    direction: rtl;
}

.dual-col.flip > * {
    direction: ltr;
}

.col-info .label {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink), var(--magenta));
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.col-info h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.col-info p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.col-info ul {
    list-style: none;
    margin: 20px 0 30px;
}

.col-info ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-muted);
}

.col-info ul li::before {
    content: '♦';
    position: absolute;
    left: 0;
    color: var(--pink);
    font-size: 12px;
}

.col-visual img {
    width: 100%;
    border-radius: 16px;
    border: 2px solid var(--border);
    box-shadow: 0 0 30px var(--glow);
}

/* Steps */
.steps-flex {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.step-box:hover {
    box-shadow: 0 0 25px var(--glow);
}

.step-box .num {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--pink), var(--magenta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 18px;
    box-shadow: 0 0 20px var(--glow);
}

.step-box img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.step-box h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-box p {
    color: var(--text-muted);
    font-size: 14px;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--pink);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.15);
}

.faq-item h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--pink-light);
}

.faq-item p {
    color: var(--text-muted);
    font-size: 15px;
}

/* CTA */
.cta-block {
    background: linear-gradient(135deg, var(--pink-dark), var(--magenta));
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px var(--glow);
}

.cta-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
}

.cta-block h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-block p {
    opacity: 0.9;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cta-block .btn-wrap {
    justify-content: center;
    position: relative;
    z-index: 1;
}

.cta-block .btn-primary {
    background: white;
    color: var(--pink-dark);
}

.cta-block .btn-outline {
    border-color: white;
    color: white;
}

.cta-block .btn-outline:hover {
    background: white;
    color: var(--pink-dark);
}

/* Footer */
footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--rose), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--pink-light);
}

.footer-end {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    text-align: center;
}

.footer-end p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-flex,
    .dual-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dual-col.flip {
        direction: ltr;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-flex {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    .sec-head h2 {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-flex {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-block {
        padding: 40px 20px;
    }
}
