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

:root {
    --primary: #6c5ce7;
    --primary-glow: rgba(108, 92, 231, 0.35);
    --accent: #f5a623;
    --bg: #08080e;
    --bg-alt: #0c0c14;
    --bg-dark: #06060a;
    --card: #111119;
    --card-hover: #16161f;
    --border: #1a1a28;
    --text: #c8c8d4;
    --muted: #7a7a90;
    --white: #f0f0f4;
    --green: #2ecc71;
    --radius: 16px;
    --radius-sm: 10px;
}

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;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: inherit; background: none; }

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

/* ===== NAV ===== */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 8, 14, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 3px;
}

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

.nav-pills {
    display: flex;
    gap: 6px;
}

.nav-pills a {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    padding: 7px 16px;
    border-radius: 50px;
    transition: all 0.25s;
}

.nav-pills a:hover {
    color: var(--white);
    background: rgba(108, 92, 231, 0.1);
}

/* ===== TAGS ===== */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    padding: 6px 16px;
    background: rgba(108, 92, 231, 0.08);
    border: 1px solid rgba(108, 92, 231, 0.15);
    border-radius: 50px;
    margin-bottom: 18px;
}

.tag-light {
    color: var(--accent);
    background: rgba(245, 166, 35, 0.06);
    border-color: rgba(245, 166, 35, 0.15);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(108, 92, 231, 0.12);
    top: -150px;
    right: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(245, 166, 35, 0.06);
    bottom: -100px;
    left: -100px;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(108, 92, 231, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 92, 231, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 20%, transparent 70%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(245, 166, 35, 0); }
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 22px;
}

.hero-gradient {
    background: linear-gradient(135deg, #a78bfa, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 480px;
}

/* Avatars */
.hero-avatars {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar-stack { display: flex; }

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    margin-right: -10px;
    object-fit: cover;
}

.avatar-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 13px;
    color: var(--muted);
}

.avatar-stars { color: var(--accent); font-size: 14px; }

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    max-width: 420px;
}

.hero-img {
    border-radius: 20px;
    width: 100%;
    height: 480px;
    object-fit: cover;
    border: 1px solid var(--border);
}

.hero-float-card {
    position: absolute;
    background: rgba(17, 17, 25, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    animation: floatCard 3s ease-in-out infinite;
    z-index: 3;
}

.float-1 { top: 30px; left: -40px; animation-delay: 0s; }
.float-2 { bottom: 50px; right: -50px; animation-delay: 1.5s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.float-icon { font-size: 24px; }

.hero-float-card strong {
    font-size: 13px;
    color: var(--white);
    display: block;
}

.hero-float-card span {
    font-size: 11px;
    color: var(--muted);
}

/* Hero Stats Bar */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 40px;
    position: relative;
    z-index: 2;
}

.hstat { text-align: center; }

.hstat-num {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.hstat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
}

.hstat-div {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-dark); }

.section-head {
    text-align: center;
    margin-bottom: 56px;
}

.section-head h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 14px;
}

.section-sub {
    font-size: 15px;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== PROBLEM ===== */
.problem-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.problem-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.problem-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(8, 8, 14, 0.8) 100%);
    border-radius: 20px;
}

.problem-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 20px;
}

.problem-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pcard {
    display: flex;
    gap: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color 0.3s, transform 0.2s;
}

.pcard:hover {
    border-color: rgba(239, 68, 68, 0.25);
    transform: translateX(4px);
}

.pcard-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.06);
    border-radius: 12px;
}

.pcard h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.pcard p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

/* ===== STEPS (How It Works) ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.step {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s, transform 0.25s;
}

.step:hover {
    border-color: rgba(108, 92, 231, 0.3);
    transform: translateY(-6px);
}

.step-visual {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.step-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.step:hover .step-visual img { transform: scale(1.06); }

.step-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(108, 92, 231, 0.9);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.step h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    padding: 18px 18px 8px;
}

.step p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    padding: 0 18px 22px;
}

/* ===== INGREDIENTS ===== */
.ing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.ing-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color 0.3s, transform 0.25s;
}

.ing-card:hover {
    border-color: rgba(108, 92, 231, 0.3);
    transform: translateY(-4px);
}

.ing-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.ing-pill {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    background: rgba(108, 92, 231, 0.1);
    padding: 5px 14px;
    border-radius: 50px;
}

.ing-thumb {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--border);
}

.ing-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.ing-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

.cert-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cert {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    padding: 8px 18px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 50px;
}

.cert span { color: var(--green); font-weight: 800; }

/* ===== QUOTE ===== */
.quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.04), rgba(245, 166, 35, 0.03));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.big-quote {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.big-quote p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(20px, 3.5vw, 30px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.5;
    font-style: italic;
}

.big-quote p::before { content: '\201C'; color: var(--primary); }
.big-quote p::after { content: '\201D'; color: var(--primary); }

/* ===== REVIEWS ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 50px;
}

.review {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.3s;
}

.review:hover { border-color: rgba(108, 92, 231, 0.25); }

.review.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(108, 92, 231, 0.06), var(--card));
    box-shadow: 0 0 40px rgba(108, 92, 231, 0.08);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.review-top strong {
    font-size: 14px;
    color: var(--white);
    display: block;
}

.review-top span {
    font-size: 12px;
    color: var(--muted);
}

.review-stars { color: var(--accent); font-size: 16px; }

.review p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    flex: 1;
}

.review-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.5px;
}

/* Trust Bar */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 40px;
}

.trust-num {
    text-align: center;
}

.trust-num strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    display: block;
    line-height: 1;
}

.trust-num span { font-size: 14px; color: var(--muted); }
.trust-stars { color: var(--accent); font-size: 18px; margin-top: 4px; }

.trust-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-meta div {
    font-size: 14px;
    color: var(--muted);
}

.trust-meta strong {
    color: var(--white);
    font-weight: 800;
    margin-right: 4px;
}

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

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

.faq-q {
    width: 100%;
    padding: 22px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-q::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--muted);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-q::after { content: '\2212'; color: var(--primary); }
.faq-q:hover { color: var(--primary); }

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

.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

.faq-a p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
    padding: 50px 0;
    border-top: 1px solid var(--border);
}

.footer-inner { text-align: center; }
.footer .logo { display: block; margin-bottom: 16px; }

.footer-disc {
    font-size: 11px;
    color: #3a3a4a;
    max-width: 480px;
    margin: 0 auto 8px;
    line-height: 1.6;
}

.footer-copy {
    font-size: 11px;
    color: #2a2a3a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-avatars { justify-content: center; }
    .hero-img { height: 360px; }
    .float-1 { left: 10px; }
    .float-2 { right: 10px; }
    .hero-stats { flex-wrap: wrap; gap: 24px; padding: 24px; }
    .hstat-div { display: none; }
    .problem-layout { grid-template-columns: 1fr; }
    .problem-img { height: 300px; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .ing-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .trust-bar { flex-direction: column; gap: 20px; }
    .nav-pills { display: none; }
}

@media (max-width: 600px) {
    .steps-grid { grid-template-columns: 1fr; }
    .ing-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); display: grid; }
    .cert-row { flex-direction: column; align-items: center; }
}
