@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg: #0a0a0c;
    --bg2: #111116;
    --accent: #9d4edd;
    --accent-glow: rgba(157, 78, 221, 0.35);
    --accent-hover: #b366ff;
    --gold: #f5c518;
    --gold-glow: rgba(245, 197, 24, 0.25);
    --green: #00c46a;
    --green-glow: rgba(0, 196, 106, 0.2);
    --red: #ff4757;
    --card-bg: rgba(255,255,255,0.03);
    --card-border: rgba(255,255,255,0.08);
    --text-main: #ffffff;
    --text-dim: #858899;
    --text-mid: #c2c5d6;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* ── STICKY CTA BAR ────────────────────────────────── */
.sticky-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10,10,12,0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(157,78,221,0.3);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar p { font-size: 0.95rem; color: var(--text-mid); }
.sticky-bar p strong { color: #fff; }
.btn-sticky {
    background: var(--green);
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    padding: 0.9rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s;
    box-shadow: 0 0 30px var(--green-glow);
}
.btn-sticky:hover { transform: scale(1.04); box-shadow: 0 0 50px var(--green-glow); }

/* ── HERO ───────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
}
.hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(157,78,221,0.15) 0%, transparent 70%),
                radial-gradient(ellipse 60% 40% at 80% 100%, rgba(157,78,221,0.08) 0%, transparent 60%);
}
.hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black, transparent);
}
.hero .container { position: relative; z-index: 1; text-align: center; }
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(157,78,221,0.1);
    color: var(--accent);
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(157,78,221,0.3);
    margin-bottom: 2rem;
}
.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    color: #fff;
}
.hero h1 em {
    font-style: normal;
    color: var(--accent);
    background: linear-gradient(135deg, #c77dff, #9d4edd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 1.3rem;
    color: var(--text-mid);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 400;
}
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--green);
    color: #000;
    font-weight: 800;
    font-size: 1.15rem;
    padding: 1.1rem 3rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 0 40px var(--green-glow);
    margin-bottom: 1rem;
}
.btn-hero:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 0 70px var(--green-glow); }
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
    font-size: 0.9rem;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s;
}
.btn-secondary:hover { color: #fff; }
.hero-note { margin-top: 1rem; color: var(--text-dim); font-size: 0.85rem; }

/* ── PAIN SECTION ───────────────────────────────────── */
.pain-section {
    padding: 6rem 0;
    border-top: 1px solid var(--card-border);
}
.pain-section .section-label {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.pain-section h2 {
    font-family: 'Outfit', sans-serif;
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.pain-section .intro-text {
    text-align: center;
    color: var(--text-mid);
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
}
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.pain-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
}
.pain-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.pain-icon { font-size: 2rem; margin-bottom: 1rem; }
.pain-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; font-weight: 700; }
.pain-card p { color: var(--text-dim); font-size: 0.95rem; }

/* ── SOLUTION SECTION ───────────────────────────────── */
.solution-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(157,78,221,0.05) 0%, transparent 100%);
    border-top: 1px solid var(--card-border);
}
.solution-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.solution-section h2 em {
    font-style: normal;
    color: var(--accent);
}
.solution-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.solution-text p { color: var(--text-mid); font-size: 1.05rem; margin-bottom: 2rem; }
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1rem;
    color: var(--text-mid);
}
.benefit-list li i { color: var(--green); margin-top: 3px; flex-shrink: 0; }
.benefit-list li strong { color: #fff; }

/* ── PHOTO TABS ─────────────────────────────────────── */
.gallery-section { padding: 4rem 0; }
.gallery-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2.5rem;
}
.photo-tabs {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
}
.tabs-nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.tab-btn {
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-dim);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    transition: all 0.25s;
    font-size: 0.9rem;
    border-radius: 100px;
}
.tab-btn.active { color: #fff; background: var(--accent); border-color: var(--accent); }
.tab-btn:hover:not(.active) { color: #fff; border-color: rgba(255,255,255,0.3); }
.tab-content { display: none; animation: fadeIn 0.4s ease; }
.tab-content.active { display: block; }
.product-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    display: block;
}

/* ── SPECS ──────────────────────────────────────────── */
.specs-section {
    padding: 5rem 0;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}
.specs-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
}
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
}
.spec-item {
    padding: 1.5rem;
    border-bottom: 1px solid var(--card-border);
    border-right: 1px solid var(--card-border);
    transition: background 0.2s;
}
.spec-item:hover { background: rgba(157,78,221,0.05); }
.spec-item strong {
    display: block;
    color: var(--accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}
.spec-item span { font-size: 1rem; font-weight: 600; }

/* ── PROOF SECTION ──────────────────────────────────── */
.proof-section { padding: 6rem 0; }
.proof-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}
.stat-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.3s;
}
.stat-box:hover { border-color: var(--accent); }
.stat-box .number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-box p { color: var(--text-dim); font-size: 0.95rem; }
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
}
.testimonial::before {
    content: '"';
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: -0.5rem;
    left: 1.5rem;
    line-height: 1;
}
.testimonial p { color: var(--text-mid); margin-bottom: 1.5rem; font-style: italic; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #5a189a);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem;
}
.author-info strong { display: block; font-size: 0.9rem; }
.author-info span { font-size: 0.8rem; color: var(--text-dim); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.8rem; }

/* ── FAQ ────────────────────────────────────────────── */
.faq-section { padding: 5rem 0; border-top: 1px solid var(--card-border); }
.faq-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}
.faq-item {
    border-bottom: 1px solid var(--card-border);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 1.5rem 0;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    user-select: none;
}
.faq-question:hover { color: var(--accent); }
.faq-question i { transition: transform 0.3s; flex-shrink: 0; color: var(--accent); }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer p { color: var(--text-dim); padding-bottom: 1.5rem; line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ── FINAL CTA ──────────────────────────────────────── */
.final-cta {
    padding: 7rem 0;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(157,78,221,0.08) 50%, transparent 100%);
    border-top: 1px solid var(--card-border);
}
.final-cta h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}
.final-cta p { color: var(--text-mid); font-size: 1.1rem; margin-bottom: 3rem; }
.btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--green);
    color: #000;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 1.2rem 3.5rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 0 60px var(--green-glow);
}
.btn-cta-main:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 0 100px var(--green-glow); }
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
    font-size: 0.85rem;
}
.trust-badge i { color: var(--green); }

/* ── FOOTER ─────────────────────────────────────────── */
footer {
    padding: 2.5rem;
    text-align: center;
    border-top: 1px solid var(--card-border);
}
footer p { color: #333; font-size: 0.85rem; }

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeIn {
    from { opacity:0; transform:translateY(10px); }
    to { opacity:1; transform:translateY(0); }
}
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 768px) {
    .solution-inner { grid-template-columns: 1fr; gap: 2rem; }
    .stats-row { grid-template-columns: 1fr; }
    .hero h1 { letter-spacing: -1px; }
    .sticky-bar p { display: none; }
    .tabs-nav { flex-wrap: wrap; }
    .trust-badges { gap: 1rem; }
}
