/* Reset e Configurações Básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-main: #0D2010;
    --bg-secondary: #112A14;
    --bg-card: #1A3520;
    --neon: #7DFF3A;
    --neon-glow: rgba(125, 255, 58, 0.25);
    --neon-glow-strong: rgba(125, 255, 58, 0.15);
    --text-main: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.75);
    --text-dark: #0D2010;
    --shadow: 0 4px 30px rgba(0,0,0,0.4);
    --neon-shadow: 0 0 20px rgba(125, 255, 58, 0.4);
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-main);
    overflow-x: hidden;
}

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

/* ==============================
   URGENCY BANNER
============================== */
.urgency-banner {
    background: linear-gradient(90deg, #0D2010, #1A3A14, #0D2010);
    border-bottom: 1px solid var(--neon);
    color: var(--text-main);
    text-align: center;
    padding: 12px 0;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 2px 15px rgba(125, 255, 58, 0.2);
}

.urgency-text {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.date-highlight {
    color: var(--neon);
    text-shadow: 0 0 8px rgba(125, 255, 58, 0.6);
}

/* ==============================
   HERO SECTION
============================== */
.hero {
    padding: 60px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, #0D2010 0%, #112A14 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(125, 255, 58, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-main);
}

.hero-title .highlight {
    color: var(--neon);
    text-shadow: 0 0 15px rgba(125, 255, 58, 0.5);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.hero-video-wrapper {
    position: relative;
}

.hero-video-wrapper::after {
    content: '';
    position: absolute;
    inset: -15px;
    background: radial-gradient(circle, rgba(125, 255, 58, 0.12) 0%, transparent 70%);
    border-radius: 30px;
    pointer-events: none;
    z-index: -1;
}

.cta-button {
    background: var(--neon);
    color: var(--text-dark);
    border: none;
    padding: 18px 44px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(125, 255, 58, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(125, 255, 58, 0.6);
}

.social-proof-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    justify-content: center;
}

.social-proof-avatars {
    display: flex;
}

.social-proof-avatars img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--bg-main);
    object-fit: cover;
    margin-left: -8px;
}

.social-proof-avatars img:first-child {
    margin-left: 0;
}

.social-proof-bar p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

.social-proof-bar p strong {
    color: var(--neon);
    font-weight: 700;
}

/* ==============================
   SECTION TITLES
============================== */
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--text-main);
}

.section-title .highlight {
    color: var(--neon);
}

/* ==============================
   BENEFITS GRID
============================== */
.benefits {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: #0a1a0c;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: left;
    border: 1px solid rgba(125, 255, 58, 0.12);
    transition: border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-card:hover {
    border-color: rgba(125, 255, 58, 0.4);
    box-shadow: 0 0 20px rgba(125, 255, 58, 0.08);
}

.benefit-icon {
    font-size: 2.2rem;
    color: var(--neon);
    text-shadow: 0 0 10px rgba(125, 255, 58, 0.4);
}

.benefit-card h3 {
    color: var(--neon);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ==============================
   WHAT YOU GET
============================== */
.what-you-get {
    padding: 60px 0;
    background: var(--bg-main);
}

.feature-list-horizontal {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-main);
}

.feature-item i {
    color: var(--neon);
    font-size: 1.1rem;
    text-shadow: 0 0 8px rgba(125, 255, 58, 0.5);
}

/* ==============================
   BONUSES
============================== */
.bonuses {
    padding: 80px 0;
    background: var(--bg-main);
}

.bonuses-header {
    text-align: center;
    margin-bottom: 50px;
}

.bonus-price-tag {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(125, 255, 58, 0.06);
    border: 1px solid rgba(125, 255, 58, 0.3);
    border-radius: 50px;
    padding: 10px 24px;
    margin-top: -20px;
}

.bonus-old-price {
    color: rgba(255,255,255,0.35);
    font-size: 1rem;
    text-decoration: line-through;
    font-weight: 600;
}

.bonus-free {
    color: var(--neon);
    font-size: 1.4rem;
    font-weight: 800;
    text-shadow: 0 0 12px rgba(125, 255, 58, 0.5);
    letter-spacing: 1px;
}

.bonus-today {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-style: italic;
}

.bonuses-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 750px;
    margin: 0 auto;
}

.bonus-card {
    background: #0a1a0c;
    border: 1px solid rgba(125, 255, 58, 0.18);
    border-radius: 14px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.bonus-card:hover {
    border-color: rgba(125, 255, 58, 0.45);
    box-shadow: 0 0 18px rgba(125, 255, 58, 0.08);
}

.bonus-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(125, 255, 58, 0.2);
    min-width: 52px;
    line-height: 1;
}

.bonus-info {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
}

.bonus-icon {
    font-size: 1.8rem;
    color: var(--neon);
    text-shadow: 0 0 10px rgba(125, 255, 58, 0.4);
    min-width: 32px;
}

.bonus-card h3 {
    color: var(--text-main);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.bonus-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .bonus-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .bonus-price-tag {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ==============================
   OFFER SECTION
============================== */
.offer-section {
    padding: 90px 0;
    background: var(--bg-secondary);
}

.offer-label {
    text-align: center;
    display: inline-block;
    width: 100%;
    color: var(--neon);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.offer-card {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 0;
    background: #0a1a0c;
    border: 1px solid rgba(125, 255, 58, 0.3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(125, 255, 58, 0.08);
    margin-top: 40px;
}

/* LEFT COLUMN */
.offer-left {
    padding: 44px 40px;
    border-right: 1px solid rgba(125, 255, 58, 0.15);
}

.offer-course-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--neon);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.offer-left h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 10px;
}

.offer-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.offer-divider {
    height: 1px;
    background: rgba(125, 255, 58, 0.12);
    margin: 24px 0;
}

.offer-includes-title {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.offer-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.offer-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.offer-features li i {
    color: var(--neon);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
    text-shadow: 0 0 6px rgba(125, 255, 58, 0.5);
}

.offer-features li strong {
    display: block;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.offer-features li span {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.offer-bonuses-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.offer-bonuses-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.offer-bonuses-list li i {
    color: var(--neon);
    font-size: 0.85rem;
    text-shadow: 0 0 6px rgba(125, 255, 58, 0.5);
}

.offer-bonuses-list li strong {
    color: var(--neon);
}

/* RIGHT COLUMN */
.offer-right {
    padding: 44px 32px;
    background: #071209;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.offer-badge {
    background: var(--neon);
    color: var(--text-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.offer-plan-name {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.offer-price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 28px;
}

.offer-old {
    color: rgba(255,255,255,0.3);
    font-size: 0.88rem;
    text-decoration: none;
}

.offer-by {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.offer-price-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.4rem;
    font-weight: 900;
    color: var(--neon);
    line-height: 1;
    text-shadow: 0 0 20px rgba(125, 255, 58, 0.4);
}

.offer-installment {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 4px;
}

.offer-cta-btn {
    display: block;
    width: 100%;
    background: var(--neon);
    color: var(--text-dark);
    text-decoration: none;
    padding: 18px 20px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(125, 255, 58, 0.35);
    margin-bottom: 18px;
}

.offer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(125, 255, 58, 0.55);
}

.offer-guarantee-note {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(125, 255, 58, 0.06);
    border: 1px solid rgba(125, 255, 58, 0.2);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 24px;
    text-align: left;
}

.offer-guarantee-note i {
    color: var(--neon);
    font-size: 1rem;
    flex-shrink: 0;
}

.offer-guarantee-note span {
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.4;
}

.offer-mini-list {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.offer-mini-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.offer-mini-list li i {
    color: var(--neon);
    font-size: 0.8rem;
    text-shadow: 0 0 6px rgba(125, 255, 58, 0.4);
}

@media (max-width: 860px) {
    .offer-card {
        grid-template-columns: 1fr;
    }
    .offer-left {
        border-right: none;
        border-bottom: 1px solid rgba(125, 255, 58, 0.15);
        padding: 32px 24px;
    }
    .offer-right {
        padding: 32px 24px;
    }
}

/* ==============================
   PLAN CARD (new style)
============================== */
.plan-card-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 24px;
    flex-wrap: wrap;
}

.plan-card-wrap.two-plans .plan-card-new {
    max-width: 440px;
    flex: 1 1 340px;
}

.premium-card {
    border-color: var(--neon) !important;
    box-shadow: 0 0 50px rgba(125, 255, 58, 0.18) !important;
    position: relative;
}

.premium-badge-top {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon);
    color: var(--text-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 5px 20px;
    border-radius: 20px;
    white-space: nowrap;
}

.plan-card-new {
    background: #0a1a0c;
    border: 1px solid rgba(125, 255, 58, 0.35);
    border-radius: 20px;
    padding: 44px 48px;
    width: 100%;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 0 50px rgba(125, 255, 58, 0.1);
}

.plan-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 28px;
}

.plan-card-price-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.plan-card-old-price {
    color: rgba(255,255,255,0.3);
    font-size: 1.1rem;
    text-decoration: line-through;
    font-weight: 600;
}

.plan-card-price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.6rem;
    font-weight: 900;
    color: var(--neon);
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(125, 255, 58, 0.4);
}

.plan-card-period {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 2px;
}

.plan-card-savings {
    color: var(--neon);
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 4px;
}

.plan-card-divider {
    height: 1px;
    background: rgba(125, 255, 58, 0.12);
    margin: 28px 0;
}

.plan-card-features {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.plan-card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.plan-card-features li i.fa-check {
    color: var(--neon);
    font-size: 0.85rem;
    text-shadow: 0 0 6px rgba(125, 255, 58, 0.5);
    flex-shrink: 0;
}

.plan-card-features li.bonus {
    color: var(--text-muted);
}

.plan-card-features li.bonus i {
    color: var(--neon);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.plan-card-btn {
    display: block;
    width: 100%;
    background: var(--neon);
    color: var(--text-dark);
    text-decoration: none;
    padding: 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.2s;
    box-shadow: 0 4px 25px rgba(125, 255, 58, 0.4);
}

.plan-card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(125, 255, 58, 0.6);
}

/* ==============================
   PRICING PLANS (legacy, kept for popup)
============================== */
.pricing-plans {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.plan-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid rgba(125, 255, 58, 0.2);
    transition: border-color 0.3s;
}

.plan-card.premium {
    border-color: var(--neon);
    box-shadow: 0 0 30px rgba(125, 255, 58, 0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon);
    color: var(--text-dark);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
}

.plan-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--neon);
    display: block;
    text-shadow: 0 0 15px rgba(125, 255, 58, 0.4);
}

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

.plan-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.plan-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.plan-features i.fa-check {
    color: var(--neon);
    text-shadow: 0 0 6px rgba(125, 255, 58, 0.5);
}

.plan-features i.fa-times {
    color: #555;
}

.plan-button {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.basic-button {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.2);
}

.basic-button:hover {
    border-color: rgba(125, 255, 58, 0.4);
    color: var(--text-main);
}

.premium-button {
    background: var(--neon);
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(125, 255, 58, 0.35);
}

.premium-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(125, 255, 58, 0.55);
}

.plan-card.premium .highlight-feature {
    color: var(--neon);
    font-weight: 700;
}

/* ==============================
   TESTIMONIALS
============================== */
.testimonials {
    padding: 80px 0;
    background: var(--bg-main);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(125, 255, 58, 0.15);
    transition: border-color 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(125, 255, 58, 0.4);
}

.stars {
    color: var(--neon);
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-shadow: 0 0 8px rgba(125, 255, 58, 0.5);
}

.testimonial-card p {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(125, 255, 58, 0.4);
    flex-shrink: 0;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--neon);
}

/* ==============================
   ABOUT AUTHOR
============================== */
.about-author {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.author-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    background: #0a1a0c;
    border: 1px solid rgba(125, 255, 58, 0.2);
    border-radius: 20px;
    padding: 44px 48px;
    align-items: start;
}

.author-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.author-avatar-inline {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px solid var(--neon);
    overflow: hidden;
    box-shadow: 0 0 25px rgba(125, 255, 58, 0.25);
    margin: 8px 0;
}

.author-avatar-inline img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-section-label {
    color: var(--neon);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.author-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 4px;
}

.author-role {
    color: var(--neon);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.author-bio {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 14px;
    font-style: italic;
}

.author-badge-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-top: 8px;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--neon);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(125, 255, 58, 0.25);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-avatar i {
    font-size: 4.5rem;
    color: rgba(125, 255, 58, 0.4);
}

.author-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.author-stat {
    text-align: center;
    background: rgba(125, 255, 58, 0.05);
    border: 1px solid rgba(125, 255, 58, 0.15);
    border-radius: 10px;
    padding: 12px 8px;
}

.stat-value {
    display: block;
    color: var(--neon);
    font-size: 1.3rem;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(125, 255, 58, 0.3);
}

.stat-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .author-card {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 28px;
    }
    .author-left {
        align-items: center;
    }
    .author-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .author-stat {
        flex: 1 1 100px;
    }
}

/* ==============================
   GUARANTEE
============================== */
.guarantee {
    padding: 80px 0;
    text-align: center;
    background: var(--bg-secondary);
}

.guarantee-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.guarantee-content p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.guarantee-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid var(--neon);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 0 25px rgba(125, 255, 58, 0.3);
}

.guarantee-large-icon {
    font-size: 2.5rem;
    color: var(--neon);
}

/* ==============================
   FAQ
============================== */
.faq {
    padding: 80px 0;
    background: var(--bg-main);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: var(--bg-card);
    border-radius: 12px;
    padding: 25px 30px;
    border: 1px solid rgba(125, 255, 58, 0.12);
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(125, 255, 58, 0.35);
}

.faq-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==============================
   FINAL CTA
============================== */
.final-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #0D2010 0%, #1A3A14 50%, #0D2010 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(125, 255, 58, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta h2 {
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: var(--text-main);
    position: relative;
}

.final-cta p {
    margin-bottom: 40px;
    color: var(--text-muted);
    font-size: 1.1rem;
    position: relative;
}

/* ==============================
   FOOTER
============================== */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(125, 255, 58, 0.15);
    background: var(--bg-main);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==============================
   POPUP
============================== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.popup-overlay.active {
    display: flex;
}

.popup-card {
    background: var(--bg-card);
    padding: 28px 28px 24px;
    border-radius: 16px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    border: 1px solid var(--neon);
    box-shadow: 0 0 40px rgba(125, 255, 58, 0.2), 0 10px 50px rgba(0,0,0,0.6);
    animation: popupFadeIn 0.3s ease-out;
    max-height: 92vh;
    overflow-y: auto;
}

@keyframes popupFadeIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.popup-tag {
    display: inline-block;
    background: rgba(125, 255, 58, 0.12);
    border: 1px solid rgba(125, 255, 58, 0.4);
    color: var(--neon);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.popup-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--text-main);
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 800;
    line-height: 1.3;
}

.popup-highlight {
    color: var(--neon);
    text-shadow: 0 0 10px rgba(125, 255, 58, 0.4);
}

.popup-subtitle {
    font-size: 0.85rem;
    margin-bottom: 16px;
    color: var(--text-muted);
    line-height: 1.5;
}

.popup-offer {
    background: rgba(125, 255, 58, 0.05);
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    border: 1px dashed rgba(125, 255, 58, 0.35);
    text-align: left;
}

.popup-offer-label {
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.popup-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.popup-features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.83rem;
}

.popup-features-list li i {
    color: var(--neon);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.popup-price-block {
    text-align: center;
    border-top: 1px solid rgba(125, 255, 58, 0.12);
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.popup-price-from {
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
}

.popup-price-value {
    color: var(--neon);
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 0 12px rgba(125, 255, 58, 0.4);
}

.popup-price-note {
    color: var(--text-muted);
    font-size: 0.72rem;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-btn {
    padding: 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s;
}

.accept-btn {
    background: var(--neon);
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(125, 255, 58, 0.4);
}

.accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(125, 255, 58, 0.6);
}

.decline-btn {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 14px;
    transition: all 0.2s;
}

.decline-btn:hover {
    border-color: rgba(255,255,255,0.4);
    color: var(--text-main);
    background: rgba(255,255,255,0.05);
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .feature-list-horizontal {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .final-cta h2 {
        font-size: 1.9rem;
    }
}
