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

:root {
    --purple-deep: #ff9822;
    --purple-dark: #ff6c55;
    --purple-mid:  #dde2ef;
    --purple-card: #ffffff;
    --purple-border: rgba(255,152,34,0.18);
    --purple-primary: #ff9822;
    --purple-light: #ff6c55;
    --purple-glow: rgba(255,152,34,0.18);
    --text-main: #1a1a2e;
    --text-muted: rgba(60,60,100,0.6);
    --green: #16a34a;
    --orange: #d97706;
    --red: #dc2626;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f4f6fb;
    color: var(--text-main);
    min-height: 100vh;
    overflow-y: scroll;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255,152,34,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(255,152,34,0.05) 0%, transparent 60%);
}

/* ── Navbar ── */
.site-nav {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,152,34,0.15);
    box-shadow: 0 1px 12px rgba(0,0,0,0.07);
    padding: 0 2rem;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 100;
    gap: 1.5rem;
}
.site-nav .brand {
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-decoration: none;
    background: linear-gradient(90deg, #ff9822, #ff6c55);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.site-nav .nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.2s;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    color: var(--purple-primary);
    border-color: var(--purple-border);
    background: rgba(99,102,241,0.06);
}

/* ── Hero ── */
.hero {
    text-align: center;
    padding: 4.5rem 1.5rem 2.5rem;
    position: relative;
}
.hero-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--purple-primary), var(--purple-light));
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99,102,241,0.3); }
    50% { box-shadow: 0 0 0 8px rgba(99,102,241,0); }
}
.hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    line-height: 1.15;
}
.hero h1 .gradient {
    background: linear-gradient(90deg, #ff9822, #ff6c55, #ff9822);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 2rem;
    padding: 14px 32px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(90deg, var(--purple-primary), var(--purple-light));
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 24px var(--purple-glow);
    letter-spacing: 0.3px;
}
.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(99,102,241,0.3);
}

/* ── Trust bar ── */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem 1rem 2rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}
.trust-item span:first-child { font-size: 1.2rem; }

/* ── Section ── */
.section-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem 3rem;
}
.section-wrap.pb-0 {
    padding-bottom: 0;
}
.section-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: center;
}
.section-title::before,
.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--purple-border);
}

/* ── Categories Grid ── */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.category-card {
    background: #ffffff;
    border: 1px solid rgba(255,152,34,0.15);
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.35s, border-color 0.35s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99,102,241,0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s;
}
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(99,102,241,0.18), 0 0 0 1px rgba(99,102,241,0.25);
    border-color: rgba(99,102,241,0.35);
}
.category-card:hover::before { opacity: 1; }
.category-icon {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}
.category-card:hover .category-icon { transform: scale(1.08); }
.category-icon.og { background: linear-gradient(135deg, #f59e0b, #f97316); box-shadow: 0 8px 24px rgba(245,158,11,0.3); }
.category-icon.stacked { background: linear-gradient(135deg, #ff9822, #ff6c55); box-shadow: 0 8px 24px rgba(255,152,34,0.3); }
.category-icon.vbucks { background: linear-gradient(135deg, #16a34a, #22c55e); box-shadow: 0 8px 24px rgba(34,197,94,0.3); }
.category-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}
.category-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}
.category-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--purple-primary);
    position: relative;
    z-index: 1;
    transition: gap 0.2s;
}
.category-card:hover .category-cta { gap: 10px; }
.category-cta .arrow {
    transition: transform 0.2s;
    font-size: 1rem;
}
.category-card:hover .category-cta .arrow { transform: translateX(3px); }

/* ── Feedback Marquee ── */
.feedback-marquee-wrap {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0 2rem;
    position: relative;
}
.feedback-marquee-wrap::before,
.feedback-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.feedback-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #f4f6fb, transparent);
}
.feedback-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #f4f6fb, transparent);
}
@keyframes feedbackScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.feedback-marquee-content {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: feedbackScroll 45s linear infinite;
}
.feedback-marquee-wrap:hover .feedback-marquee-content {
    animation-play-state: paused;
}
.feedback-card {
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid rgba(255,152,34,0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(255,152,34,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 280px;
}
.feedback-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(255,152,34,0.15);
}
.feedback-media {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f0f2ff;
}
.feedback-media img,
.feedback-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.feedback-media video::-webkit-media-controls { display: none !important; }
.feedback-media video::-webkit-media-controls-enclosure { display: none !important; }
.feedback-info {
    padding: 0.9rem 1rem 1rem;
}
.feedback-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.feedback-title {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 6px;
}
.feedback-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.feedback-user {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
}
.feedback-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}
.feedback-avatar.green { background: #16a34a; }
.feedback-avatar.blue { background: #3b82f6; }
.feedback-avatar.purple { background: #ff9822; }
.feedback-avatar.orange { background: #f59e0b; }
.feedback-avatar.red { background: #ef4444; }
.feedback-avatar.teal { background: #14b8a6; }

/* ── FAQ Accordion ── */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border: 1px solid rgba(255,152,34,0.15);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: 0 4px 18px rgba(255,152,34,0.08); }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.15rem 1.5rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s;
}
.faq-question:hover { background: rgba(99,102,241,0.03); }
.faq-chevron {
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: transform 0.35s;
    flex-shrink: 0;
}
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}
.faq-answer-inner strong { color: var(--purple-primary); }

/* ── Footer ── */
.site-footer {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-muted);
    font-size: 0.78rem;
    border-top: 1px solid rgba(255,152,34,0.12);
    background: #fff;
}
.site-footer a { color: var(--purple-primary); text-decoration: none; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .categories-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .hero h1 { font-size: 2rem; }
}
@media (max-width: 600px) {
    .hero h1 { font-size: 1.6rem; }
    .hero { padding: 3rem 1rem 2rem; }
    .trust-bar { gap: 1rem; }
    .site-nav { padding: 0 1rem; gap: 0.75rem; }
}
