:root {
    --primary: #f97316;
    --primary-glow: rgba(249, 115, 22, 0.25);
    --bg: #0a0a0c;
    --card-bg: rgba(255, 255, 255, 0.04);
    --text: #ffffff;
    --text-dim: #909090;
    --border: rgba(255, 255, 255, 0.08);
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Nav ──────────────────────────────────────────────────── */
.sticky-nav {
    height: 64px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
}

.sticky-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: cover;
}

.brand-accent { color: var(--primary); }

.nav-links {
    display: flex;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(255,255,255,0.05);
}

.nav-cta { white-space: nowrap; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    padding: 44px 0 36px;
    background: radial-gradient(ellipse at 15% 60%, rgba(249, 115, 22, 0.05) 0%, transparent 55%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.hero h1 span {
    color: var(--primary);
    text-shadow: 0 0 40px var(--primary-glow);
}

.hero p {
    font-size: 1rem;
    color: var(--text-dim);
    max-width: 460px;
    margin-bottom: 1rem;
}

.hero-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hero-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    color: var(--text-dim);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-btns { display: flex; gap: 1rem; }

.product-preview {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.product-preview img { width: 100%; display: block; }

/* ── Features ─────────────────────────────────────────────── */
.features {
    padding: 36px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.875rem;
    margin-bottom: 1.25rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1rem 1.1rem;
    transition: border-color 0.2s, background 0.2s;
}

.feature-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.02);
}

.feature-icon {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}

.feature-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.feature-card p {
    color: var(--text-dim);
    font-size: 0.8rem;
    line-height: 1.5;
}

/* Export chips */
.export-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    padding-top: 0.5rem;
}

.chip {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text-dim);
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.chip.chip-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.3rem 0.75rem 0.3rem 0.45rem;
}

.chip.chip-icon img {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    object-fit: cover;
    flex-shrink: 0;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials { padding: 60px 0; }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: border-color 0.2s;
}

.testimonial-card:hover {
    border-color: rgba(249, 115, 22, 0.25);
}

.stars { color: var(--primary); margin-bottom: 0.75rem; font-size: 0.95rem; }

.testimonial-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}

.user {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ── How it works ─────────────────────────────────────────── */
.how-it-works { padding: 36px 0; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.875rem;
}

.step {
    text-align: center;
    padding: 1.25rem 0.75rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.2s;
}

.step:hover { border-color: rgba(249, 115, 22, 0.3); }

.step-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-family: 'Outfit', sans-serif;
}

.step h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.step p {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* ── Pricing ──────────────────────────────────────────────── */
.pricing { padding: 36px 0; }

.single-price-wrap {
    display: flex;
    justify-content: center;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.price-card.featured {
    border-color: var(--primary);
    background: rgba(249, 115, 22, 0.03);
}

.price-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.1rem;
    line-height: 1.2;
}

.price span {
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 400;
}

.original-price {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dim);
    text-decoration: line-through;
    margin-bottom: 0.15rem;
}

.price-card .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 1.25rem;
}

.price-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 1rem;
}

.price-card li {
    color: var(--text-dim);
    font-size: 0.875rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.price-card li:last-child { border-bottom: none; }

.price-card li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

.price-note {
    color: var(--text-dim);
    font-size: 0.78rem;
    opacity: 0.7;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { padding: 36px 0 48px; }

.section-title {
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.25rem;
}

.faq-list {
    max-width: 680px;
    margin: 0 auto;
}

.faq-item {
    list-style: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.875rem;
    margin-bottom: 0.875rem;
}

.faq-item:last-child { border-bottom: none; margin-bottom: 0; }

.faq-item summary {
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { margin-bottom: 0.6rem; }

.faq-item p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
    border-top: 1px solid var(--border);
    padding: 2rem 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-logo { font-size: 1.1rem; }

.footer-links-row {
    display: flex;
    gap: 1.25rem;
}

.footer-links-row a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links-row a:hover { color: var(--text); }

.footer-copy {
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    padding: 0.75rem 1.4rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.25s;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
}

/* ── Cursor glow ──────────────────────────────────────────── */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: left 0.12s ease-out, top 0.12s ease-out;
}

/* ── Animations ───────────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(32px);
    animation: slideInRight 0.9s ease-out 0.3s forwards;
}

@keyframes slideInRight {
    to { opacity: 1; transform: translateX(0); }
}

/* ── Screen reader ────────────────────────────────────────── */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero p { max-width: 100%; }
    .hero-badges { justify-content: center; }
    .hero-btns { justify-content: center; }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    .hero h1 { font-size: 2.6rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links-row { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    .fade-up, .fade-in-right {
        opacity: 1; transform: none;
        animation: none; transition: none;
    }
    .fade-up.visible { opacity: 1; transform: none; }
    .btn-primary:hover { transform: none; }
    .cursor-glow { display: none; }
}
