:root {
    --bg: #060611;
    --surface: rgba(15, 15, 30, 0.6);
    --glass-border: rgba(255, 255, 255, 0.07);
    --text: #f0f0f5;
    --text-muted: #8888a4;
    --accent: #7928ca;
    --accent2: #ff0080;
    --gradient: linear-gradient(135deg, var(--accent), var(--accent2));
    --success: #00df89;
    --font: 'Inter', system-ui, sans-serif;
    --mono: 'Fira Code', monospace;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: .3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Blobs */
.blob-bg {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: .12;
    z-index: 0;
    pointer-events: none;
}

.blob-bg:first-of-type {
    background: var(--accent);
    top: -150px;
    left: -150px;
    animation: bfloat 20s infinite ease-in-out alternate;
}

.blob-2 {
    background: var(--accent2);
    top: 50%;
    right: -150px;
    left: auto;
    animation: bfloat 20s infinite ease-in-out alternate-reverse;
}

@keyframes bfloat {
    to {
        transform: translate(80px, 60px) scale(1.15);
    }
}

.grid-overlay {
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(6, 6, 17, .7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: background .3s;
}

.navbar.scrolled {
    background: rgba(6, 6, 17, .95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -.5px;
    z-index: 101;
}

.logo-icon {
    font-size: 1.2rem;
}

.logo-accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: .95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: .3s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-cta {
    background: var(--gradient) !important;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(121, 40, 202, .4);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: .3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all .3s;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(121, 40, 202, .35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(121, 40, 202, .5);
}

.btn-secondary {
    background: rgba(255, 255, 255, .05);
    color: var(--text);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, .15);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: #fff;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 820px;
}

.hero-badge {
    display: inline-block;
    background: rgba(121, 40, 202, .15);
    border: 1px solid rgba(121, 40, 202, .3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat span {
    font-size: .85rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* Tech Strip */
.tech-strip {
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 15vh;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.tech-strip-inner {
    display: flex;
    gap: 48px;
    animation: scroll 25s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.tech-strip-inner span {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes scroll {
    to {
        transform: translateX(-50%);
    }
}

/* Sections Common */
.pricing-section,
.why-section,
.process-section,
.faq-section,
.contact-section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(121, 40, 202, .12);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header>p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Cards */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px 28px;
    backdrop-filter: blur(8px);
    transition: transform .4s, box-shadow .4s, border-color .4s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4), 0 0 20px rgba(121, 40, 202, .1);
    border-color: rgba(255, 255, 255, .15);
}

.pricing-card.popular {
    border-color: rgba(121, 40, 202, .4);
    background: linear-gradient(180deg, rgba(121, 40, 202, .1), var(--surface));
    box-shadow: 0 0 30px rgba(121, 40, 202, .15), 0 0 60px rgba(255, 0, 128, .05);
}

.pricing-card.popular:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4), 0 0 40px rgba(121, 40, 202, .25);
    transform: translateY(-10px);
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.card-header {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--glass-border);
}

.card-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    font-size: 2.6rem;
    font-weight: 800;
    font-family: var(--mono);
    line-height: 1;
    margin-bottom: 8px;
}

.price-period {
    font-size: .9rem;
    font-weight: 400;
    color: var(--text-muted);
    font-family: var(--font);
}

.subtitle {
    font-weight: 600;
    color: #fff;
    font-size: .95rem;
}

.card-body {
    flex: 1;
}

.card-body .desc {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.5;
}

.features {
    margin-bottom: 24px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: .9rem;
}

.features li.disabled {
    color: var(--text-muted);
    opacity: .45;
    text-decoration: line-through;
}

.icon-check::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    font-size: .8rem;
}

.icon-cross::before {
    content: '✕';
    color: #ff3366;
    font-size: .75rem;
}

.delivery-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(121, 40, 202, .1);
    padding: 10px;
    border-radius: 8px;
    font-family: var(--mono);
    font-size: .85rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.revisions {
    text-align: center;
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.card-footer {
    margin-top: auto;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    color: var(--text-muted);
    font-size: .95rem;
}

.pricing-note a {
    color: var(--accent);
    text-decoration: underline;
}

/* Why Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px 24px;
    transition: transform .3s, border-color .3s;
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(121, 40, 202, .3);
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.6;
}

/* Process */
.process-timeline {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--accent2));
    opacity: .3;
}

.process-step {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent);
    z-index: 1;
}

.step-content h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.step-content p {
    color: var(--text-muted);
    font-size: .9rem;
}

/* FAQ */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .3s;
}

.faq-item.active {
    border-color: rgba(121, 40, 202, .3);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--accent);
    transition: transform .3s;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
}

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.7;
}

/* Contact */
.glass-panel {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    overflow: hidden;
}

.contact-info {
    padding: 48px 36px;
    background: rgba(0, 0, 0, .25);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info h3 {
    font-size: 1.3rem;
}

.contact-detail-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.3rem;
    margin-top: 2px;
}

.contact-detail-item strong {
    display: block;
    font-size: .9rem;
    margin-bottom: 2px;
}

.contact-detail-item p {
    color: var(--text-muted);
    font-size: .9rem;
    margin: 0;
}

.contact-form-wrapper {
    padding: 48px 36px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: .85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, .3);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font);
    font-size: .95rem;
    transition: border-color .3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group option {
    background: var(--bg);
}

.submit-btn {
    height: 50px;
    position: relative;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-disclaimer {
    text-align: center;
    margin-top: 14px;
    font-size: .8rem;
    color: var(--text-muted);
}

.form-error {
    text-align: center;
    margin-top: 10px;
    font-size: .85rem;
    color: #ff3366;
    background: rgba(255, 51, 102, .08);
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 51, 102, .2);
}

.form-success {
    text-align: center;
    padding: 48px 24px;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.form-success h3 {
    color: var(--success);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.form-success p {
    color: var(--text-muted);
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 24px 0;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 12px;
    font-size: .9rem;
    max-width: 300px;
}

.footer-links h4 {
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: .9rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 20px 0;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: .85rem;
}

/* Responsive */
@media(max-width:968px) {
    .hero {
        min-height: auto;
        padding: 140px 24px 60px;
    }

    .hero-actions {
        flex-direction: column;
        margin-bottom: 60px;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions a {
        width: 100%;
    }

    .tech-strip {
        margin-bottom: 80px;
    }

    .pricing-table,
    .why-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .glass-panel {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        transform: translateX(100%);
        transition: transform .35s cubic-bezier(.4, 0, .2, 1);
        z-index: 100;
        padding: 0;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.3rem !important;
        color: var(--text) !important;
        font-weight: 600 !important;
    }

    .nav-links .nav-cta {
        margin-top: 12px;
        padding: 14px 36px;
        font-size: 1.1rem !important;
    }

    .hamburger {
        display: flex;
        z-index: 101;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat strong {
        font-size: 1.4rem;
    }
}

@media(max-width:480px) {
    .hero {
        padding: 100px 16px 60px;
    }

    .pricing-section,
    .why-section,
    .process-section,
    .faq-section,
    .contact-section {
        padding: 60px 16px;
    }

    .stat-divider {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
}