/* HerbalHelp — Dark Bold Editorial */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

:root {
    --bg: #0c0c0c;
    --bg-elevated: #141414;
    --bg-card: #1a1a1a;
    --accent: #e8b86d;
    --accent-dim: #c99a4a;
    --text: #f5f5f5;
    --text-muted: #8a8a8a;
    --border: #2a2a2a;
    --white: #ffffff;
}

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

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Marquee Banner */
.marquee-wrap {
    overflow: hidden;
    background: var(--accent);
    color: var(--bg);
    padding: 10px 0;
}

.marquee {
    display: flex;
    gap: 2rem;
    animation: marquee 20s linear infinite;
}

.marquee span {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    white-space: nowrap;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(12, 12, 12, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 24px;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: var(--accent);
}

.btn-order {
    padding: 0.6rem 1.5rem;
    background: var(--accent);
    color: var(--bg);
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    transition: background 0.2s;
}

.btn-order:hover {
    background: var(--accent-dim);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
}

/* Hero */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

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

.hero-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-price {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--bg);
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    transition: background 0.2s;
}

.btn-hero:hover {
    background: var(--accent-dim);
}

.hero-rating {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-visual {
    position: relative;
}

.hero-image-wrap {
    aspect-ratio: 1;
    max-width: 420px;
    margin-left: auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats Bar */
.stats-bar {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Bento Section */
.bento-section {
    padding: 5rem 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
}

.bento-image {
    grid-row: span 2;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.product-thumbnails {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    gap: 0.75rem;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all 0.2s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--accent);
    opacity: 1;
}

.bento-specs h3,
.bento-features h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.bento-specs ul {
    list-style: none;
}

.bento-specs li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.bento-specs li:last-child {
    border-bottom: none;
}

.bento-features .features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bento-features .feature {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.feature-icon {
    color: var(--accent);
    margin-right: 0.5rem;
}

.bento-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-price {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.btn-bento {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--bg);
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    transition: background 0.2s;
}

.btn-bento:hover {
    background: var(--accent-dim);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.important-notice {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(232, 184, 109, 0.08);
    border-left: 4px solid var(--accent);
}

.important-notice p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.important-notice strong {
    color: var(--text);
}

/* Description Block */
.desc-block {
    padding: 4rem 0;
    background: var(--bg-elevated);
}

.desc-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
}

.desc-two-col p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* Benefits */
.benefits-section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.benefits-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-tile {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: border-color 0.2s;
}

.benefit-tile:hover {
    border-color: var(--accent);
}

.benefit-num {
    display: block;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.benefit-tile h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-tile p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* Timeline */
.timeline-section {
    padding: 5rem 0;
    background: var(--bg-elevated);
}

.timeline-intro,
.timeline-outro {
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2rem;
}

.timeline-outro {
    margin-top: 2rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: var(--accent);
    flex-shrink: 0;
}

.timeline-item p {
    color: var(--text);
    font-size: 1rem;
}

/* Guarantee Strip */
.guarantee-strip {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}

.guarantee-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.guarantee-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.g-icon {
    font-size: 1rem;
}

/* FAQ */
.faq-section {
    padding: 5rem 0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.75rem 2rem;
}

.faq-block h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.faq-block p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: var(--accent);
    color: var(--bg);
    text-align: center;
}

.final-cta h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.final-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-final {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--bg);
    color: var(--accent);
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    transition: opacity 0.2s;
}

.btn-final:hover {
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--bg-elevated);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: var(--accent);
}

.footer-contact a {
    color: var(--accent);
    text-decoration: none;
    display: block;
    margin-bottom: 0.25rem;
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

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

.legal-block h4 {
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.legal-block p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-block a {
    color: var(--accent);
    text-decoration: none;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
    min-height: 60vh;
    background: var(--bg);
}

.legal-page h1 {
    font-family: 'Syne', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
}

.legal-page section {
    margin-bottom: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
}

.legal-page h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent);
}

.legal-page h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.legal-page p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.legal-page a {
    color: var(--accent);
    text-decoration: underline;
}

.withdrawal-form {
    background: var(--bg-elevated);
    padding: 2rem;
    border: 1px solid var(--border);
    margin: 2rem 0;
}

.withdrawal-form p {
    margin-bottom: 1rem;
}

/* Legacy footer for legal pages */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-section h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.footer-section p,
.footer-section ul {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--accent);
    text-decoration: none;
}

.legal-info p,
.health-notice p,
.contact-info-footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.health-notice {
    background: var(--bg-card);
    padding: 1.5rem;
    border: 1px solid var(--border);
    margin: 1.5rem 0;
}

.contact-info-footer {
    margin-top: 1.5rem;
}

/* Legacy header support for legal pages */
.top-banner {
    background: var(--accent);
    color: var(--bg);
    padding: 10px 0;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header .container:has(.header-content) {
    display: block;
}

.header-content .logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
}

.header-content .logo a {
    color: var(--text);
    text-decoration: none;
}

.header-actions .btn-order {
    padding: 0.6rem 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-wrap {
        margin: 0 auto;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-image {
        grid-row: auto;
        min-height: 350px;
    }

    .benefits-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .legal-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--bg-elevated);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        display: none;
        border-bottom: 1px solid var(--border);
    }

    .main-nav.active {
        display: flex;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .desc-two-col {
        grid-template-columns: 1fr;
    }

    .benefits-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }
}

img {
    max-width: 100%;
    height: auto;
}
