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

:root {
    --bg: #0a0a14;
    --bg2: #0d0d1a;
    --purple: #9b59b6;
    --pink: #e91e8a;
    --grad: linear-gradient(135deg, #9b59b6, #e91e8a);
    --text: #e8e8f0;
    --text2: #9a9ab0;
    --card: rgba(255,255,255,0.04);
    --card-border: rgba(255,255,255,0.08);
    --radius: 16px;
}

html { scroll-behavior: smooth; }

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

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

h2 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
}

/* ── Buttons ─────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 4px 24px rgba(155, 89, 182, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(155, 89, 182, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--card-border);
}
.btn-outline:hover {
    border-color: var(--purple);
    background: rgba(155, 89, 182, 0.1);
}

.btn-sm { padding: 10px 24px; font-size: 14px; }
.btn-lg { padding: 18px 40px; font-size: 18px; }

/* ── Hero ────────────────────────────────────────────── */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.webp') center/cover no-repeat;
    opacity: 0.5;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 24px 80px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(155, 89, 182, 0.15);
    border: 1px solid rgba(155, 89, 182, 0.3);
    color: var(--purple);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(36px, 7vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 30%, var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text2);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

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

.hero-note {
    font-size: 13px;
    color: var(--text2);
    opacity: 0.7;
}

/* ── Features ────────────────────────────────────────── */

.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(155, 89, 182, 0.3);
}

.feature-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.5;
}

/* ── Steps ───────────────────────────────────────────── */

.steps {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.steps-bg {
    position: absolute;
    inset: 0;
    background: url('images/steps-bg.webp') center/cover no-repeat;
    opacity: 0.4;
}

.steps .container { position: relative; z-index: 1; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin: 0 auto 16px;
}

.step-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 12px rgba(155, 89, 182, 0.4));
}
.step:first-child .step-img {
    margin-top: 8px;
    margin-bottom: 8px;
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step p {
    font-size: 15px;
    color: var(--text2);
}

.steps-cta {
    text-align: center;
    margin-top: 48px;
}

/* ── Pricing ─────────────────────────────────────────── */

.pricing {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.pricing-bg {
    position: absolute;
    inset: 0;
    background: url('images/pricing-bg.webp') center/cover no-repeat;
    opacity: 0.6;
}

.pricing .container { position: relative; z-index: 1; }

.pricing-sub {
    text-align: center;
    color: var(--text2);
    font-size: 17px;
    margin-bottom: 48px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.pricing-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}
.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.popular {
    border-color: var(--purple);
    background: rgba(155, 89, 182, 0.08);
    box-shadow: 0 0 40px rgba(155, 89, 182, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad);
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-period {
    font-size: 16px;
    color: var(--text2);
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 4px;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pricing-price span {
    font-size: 24px;
}

.pricing-per {
    font-size: 13px;
    color: var(--text2);
    margin-bottom: 24px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-card li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text2);
}

.pricing-card li::before {
    content: '✓ ';
    color: var(--purple);
    font-weight: 700;
}

.pricing-intro {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-bottom: 32px;
    font-size: 15px;
    color: var(--text2);
    line-height: 1.55;
}

.payment-methods {
    text-align: center;
    margin-top: 32px;
}

.trial-link {
    color: var(--purple);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s;
}
.trial-link:hover { color: var(--pink); }

/* ── FAQ ──────────────────────────────────────────────── */

.faq {
    padding: 100px 0;
}

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

.faq-item {
    border-bottom: 1px solid var(--card-border);
}

.faq-item summary {
    padding: 20px 0;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 24px;
    color: var(--purple);
    font-weight: 400;
    transition: transform 0.3s;
}

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

.faq-item summary:hover { color: var(--purple); }

.faq-item p {
    padding: 0 0 20px;
    color: var(--text2);
    font-size: 15px;
    line-height: 1.6;
}

/* ── CTA ─────────────────────────────────────────────── */

.cta {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(155, 89, 182, 0.1), transparent 70%);
}

.cta p {
    color: var(--text2);
    font-size: 18px;
    margin-bottom: 32px;
}

/* ── Footer ──────────────────────────────────────────── */

footer {
    padding: 48px 0;
    border-top: 1px solid var(--card-border);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text2);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text2);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--purple); }

.footer-copy {
    font-size: 13px;
    color: var(--text2);
    opacity: 0.5;
}

/* ── Mobile ──────────────────────────────────────────── */

@media (max-width: 768px) {
    .hero-content { padding: 100px 16px 60px; }
    .features, .steps, .pricing, .faq, .cta { padding: 64px 0; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 320px; }
}
