/*
 * Main stylesheet — extracted verbatim from the original index.html
 * Source: homewardla.org (single-file inline CSS in <head><style>)
 * Variables and class names preserved so the design matches exactly.
 */

:root {
    --primary: #7600C8;
    --primary-light: #A067DA;
    --primary-dark: #340C6F;
    --accent: #6625D1;
    --header-bg: #2F2171;
    --bg-dark: #191934;
    --bg-darker: #0f0f1f;
    --card-bg: #1e1e3f;
    --green: #21E418;
    --cyan: #31B6E9;
    --orange: #FD4D00;
    --red: #E43737;
    --text: #ECECEC;
    --text-dim: #929494;
    --text-muted: #6B6B8D;
    --gradient-brand: linear-gradient(135deg, #21E418 0%, #31B6E9 100%);
    --gradient-cta: linear-gradient(135deg, #7600C8 0%, #A067DA 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
    background: linear-gradient(180deg, var(--header-bg) 0%, var(--bg-dark) 100%);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(118,0,200,0.2);
}

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

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.site-logo-img {
    height: 60px;
    width: auto;
}

.primary-nav { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }

.primary-nav a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.primary-nav a:hover { color: var(--text); }
.primary-nav .current-menu-item > a { color: var(--text); }

.btn {
    background: var(--gradient-cta);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(118,0,200,0.4);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary-light);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* Hero */
.hero {
    padding: 70px 0 90px;
    background: radial-gradient(ellipse at 60% 0%, rgba(118,0,200,0.18) 0%, rgba(33,228,24,0.04) 40%, transparent 65%);
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(118,0,200,0.4), rgba(33,228,24,0.3), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 span {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 17px;
    color: var(--text-dim);
    margin-bottom: 28px;
    max-width: 520px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    gap: 35px;
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid rgba(118,0,200,0.2);
}

.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

.hero-card {
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(118,0,200,0.08) 100%);
    border: 1px solid rgba(118,0,200,0.25);
    border-radius: 18px;
    padding: 35px;
    text-align: center;
}

.hero-card-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-brand);
    border-radius: 16px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.hero-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-card p { color: var(--text-dim); font-size: 14px; }

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(33,228,24,0.12);
    border: 1px solid var(--green);
    color: var(--green);
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    margin-top: 20px;
}

/* Bonus Box */
.bonus-box {
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(118,0,200,0.15) 100%);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(118,0,200,0.3);
}

.bonus-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(33,228,24,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.bonus-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-cta);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-brand);
    border-radius: 18px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(33,228,24,0.3);
}

.bonus-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 900;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.bonus-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin: 5px 0;
}

.bonus-value {
    font-size: 18px;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 20px;
}

.bonus-features {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.bonus-feature {
    background: rgba(33,228,24,0.1);
    border: 1px solid rgba(33,228,24,0.3);
    color: var(--green);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.bonus-btn {
    display: inline-block;
    background: var(--gradient-brand);
    color: #000;
    padding: 14px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(33,228,24,0.3);
}

.bonus-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(33,228,24,0.4);
    color: #000;
}

/* TOC */
.toc {
    padding: 50px 0;
    background: var(--bg-darker);
}

.toc-box {
    background: var(--card-bg);
    border: 1px solid rgba(118,0,200,0.2);
    border-radius: 14px;
    padding: 28px 35px;
}

.toc-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

.toc-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px 25px;
    list-style: none;
    counter-reset: toc;
    margin: 0;
    padding: 0;
}

.toc-list li { counter-increment: toc; }

.toc-list a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    transition: color 0.3s;
}

.toc-list a::before {
    content: counter(toc);
    background: var(--primary-dark);
    color: var(--primary-light);
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
}

.toc-list a:hover { color: var(--text); }
.toc-list a:hover::before { background: var(--primary); }

/* Sections */
.section {
    padding: 70px 0;
}

.section.section-alt { background: var(--bg-darker); }

.section-head {
    margin-bottom: 35px;
}

.section-head h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-head h2 span {
    background: var(--gradient-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-head p {
    color: var(--text-dim);
    font-size: 17px;
    max-width: 650px;
}
.section-head h2::after {
    content: '';
    display: block;
    width: 52px;
    height: 3px;
    background: var(--gradient-brand);
    border-radius: 2px;
    margin-top: 14px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.content-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 28px 0 14px;
    color: var(--text);
}

.content-text h3:first-child { margin-top: 0; }

.content-text p {
    color: var(--text-dim);
    margin-bottom: 14px;
}

.content-text ul {
    list-style: none;
    margin: 18px 0;
    padding: 0;
}

.content-text li {
    padding: 9px 0 9px 28px;
    position: relative;
    color: var(--text-dim);
}

.content-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

/* Table */
.info-table {
    background: var(--card-bg);
    border: 1px solid rgba(118,0,200,0.2);
    border-radius: 14px;
    overflow: hidden;
}

.info-table table { width: 100%; border-collapse: collapse; }

.info-table tr { border-bottom: 1px solid rgba(118,0,200,0.1); }
.info-table tr:last-child { border-bottom: none; }

.info-table td { padding: 14px 20px; font-size: 14px; }

.info-table td:first-child {
    background: rgba(118,0,200,0.08);
    font-weight: 600;
    color: var(--primary-light);
    width: 42%;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(118,0,200,0.15) 0%, rgba(33,228,24,0.08) 100%);
    border: 1px solid var(--primary);
    border-radius: 14px;
    padding: 24px;
    margin-top: 24px;
}

.highlight-box h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--green);
}

.highlight-box p {
    color: var(--text-dim);
    font-size: 14px;
    margin: 0;
}

/* Side panel for tables */
.side-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 35px;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid rgba(118,0,200,0.2);
    border-radius: 14px;
    padding: 28px;
    position: relative;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(118,0,200,0.2);
}

.step-num {
    position: absolute;
    top: -12px;
    left: 28px;
    background: var(--gradient-cta);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 14px;
}

.step-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 8px 0 10px;
}

.step-card p { color: var(--text-dim); font-size: 13px; }

/* Warning */
.warning-box {
    background: linear-gradient(135deg, rgba(228,55,55,0.08) 0%, rgba(253,77,0,0.04) 100%);
    border: 1px solid var(--red);
    border-radius: 14px;
    padding: 24px;
    margin: 30px 0;
}

.warning-box h4 {
    color: var(--red);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.warning-box p { color: var(--text-dim); font-size: 14px; }

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 35px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(118,0,200,0.2);
    border-radius: 14px;
    padding: 26px;
    transition: border-color 0.3s;
}

.feature-card:hover { border-color: var(--primary); }

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-cta);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p { color: var(--text-dim); font-size: 14px; }

/* Pros/Cons */
.pros-cons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.content-grid > .pros-cons,
.side-panel > .pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.pros-box, .cons-box {
    background: var(--card-bg);
    border-radius: 14px;
    padding: 24px;
}

.pros-box { border: 1px solid var(--green); }
.cons-box { border: 1px solid var(--orange); }

.pros-box h4 { color: var(--green); margin-bottom: 14px; font-size: 16px; }
.cons-box h4 { color: var(--orange); margin-bottom: 14px; font-size: 16px; }

.pros-box li::before { content: '✓'; color: var(--green); }
.cons-box li::before { content: '✗'; color: var(--orange); }

.pros-box ul, .cons-box ul { list-style: none; margin: 0; padding: 0; }
.pros-box li, .cons-box li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: var(--text-dim);
    font-size: 14px;
}
.pros-box li::before, .cons-box li::before {
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* FAQ */
.faq-container { max-width: 780px; margin: 0 auto; }

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(118,0,200,0.2);
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-q {
    padding: 18px 22px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

.faq-q:hover { color: var(--primary-light); }

.faq-toggle {
    width: 26px;
    height: 26px;
    background: var(--primary-dark);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-toggle {
    background: var(--primary);
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-a {
    padding: 0 22px 18px;
    max-height: 400px;
}

.faq-a p { color: var(--text-dim); font-size: 14px; }

/* Footer */
.site-footer {
    background: var(--bg-darker);
    padding: 55px 0 25px;
    border-top: 1px solid rgba(118,0,200,0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 35px;
    margin-bottom: 35px;
}

.footer-brand p {
    color: var(--text-dim);
    margin-top: 14px;
    font-size: 13px;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }

.footer-col a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 13px;
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
}

.footer-col a:hover { color: var(--primary-light); }

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(118,0,200,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p { color: var(--text-muted); font-size: 13px; flex: 1; margin: 0; }

.age-badge {
    background: var(--red);
    color: #fff;
    padding: 7px 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid rgba(118,0,200,0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Payment Section */
.payment-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(118,0,200,0.2);
    text-align: center;
}

.payment-title {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 16px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-icon {
    border-radius: 6px;
    overflow: hidden;
    opacity: 0.85;
    transition: all 0.3s;
}

.payment-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-cta);
    border: none;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 99;
    box-shadow: 0 5px 20px rgba(118,0,200,0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(118,0,200,0.5);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* WordPress-specific overrides */
.alignwide { max-width: 1180px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100%; }

/* Inner-page (non-front) layouts */
.page-hero {
    padding: 60px 0 30px;
    background: radial-gradient(ellipse at 60% 0%, rgba(118,0,200,0.18) 0%, rgba(33,228,24,0.04) 40%, transparent 65%);
}
.page-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}
.page-content { padding: 30px 0 70px; }

/* Responsive */
@media (max-width: 968px) {
    .hero-grid, .content-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 34px; }
    .primary-nav { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .content-grid > .pros-cons,
    .side-panel > .pros-cons { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 28px; }
    .section-head h2 { font-size: 26px; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .social-links { justify-content: center; }
    .back-to-top { bottom: 20px; right: 20px; width: 45px; height: 45px; }
}
