/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

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

:root {
    --coffee-dark: #111827;
    --coffee-medium: #1f2937;
    --coffee-rich: #374151;
    --coffee-brown: #4b5563;
    --coffee-light: #d1d5db;
    --coffee-cream: #f9fafb;
    --coffee-gold: #f59e0b;
    --accent-orange: #ff6b35;
    --accent-red: #e53935;
    --accent-green: #43a047;
    --white: #ffffff;
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --gradient-gold: linear-gradient(135deg, #f59e0b, #fbbf24, #f59e0b);
    --gradient-coffee: linear-gradient(135deg, #374151, #4b5563);
    --gradient-hero: linear-gradient(180deg, #111827 0%, #1f2937 50%, #111827 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(245, 158, 11, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--coffee-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

/* ===== FLOATING CTA BAR ===== */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(245, 158, 11, 0.3);
    padding: 12px 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.floating-cta.visible {
    transform: translateY(0);
}

.floating-cta .price-mini {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.floating-cta .price-mini span {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--coffee-gold);
}

.floating-cta .btn-float {
    padding: 10px 24px;
    background: var(--gradient-gold);
    color: var(--coffee-dark);
    font-weight: 800;
    font-size: 0.9rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    animation: pulse-btn 2s infinite;
    white-space: nowrap;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: linear-gradient(90deg, var(--accent-red), #ff5722, var(--accent-red));
    background-size: 200% 100%;
    animation: shimmer-bg 3s ease infinite;
    padding: 10px 16px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

@keyframes shimmer-bg {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    background: var(--gradient-hero);
    padding: 0 0 60px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    animation: rotate-bg 20s linear infinite;
}

@keyframes rotate-bg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(transparent, var(--coffee-dark));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    margin-top: -60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--coffee-gold);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

.hero .subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-price-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(55, 65, 81, 0.6);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-lg);
    padding: 20px 40px;
    margin-bottom: 0px;
    backdrop-filter: blur(10px);
}

.hero-action-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

.hero-price-box .price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.hero-price-box .price-old {
    font-size: 1rem;
    color: var(--accent-red);
    text-decoration: line-through;
    margin-bottom: 2px;
}

.hero-price-box .price-new {
    font-size: 2.4rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-price-box .price-note {
    font-size: 0.75rem;
    color: var(--accent-green);
    font-weight: 600;
    margin-top: 4px;
}

/* ===== BUTTONS ===== */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--gradient-gold);
    color: var(--coffee-dark);
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 800;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    animation: pulse-btn 2s infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(245, 158, 11, 0.6);
}

@keyframes pulse-btn {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(245, 158, 11, 0.7);
    }
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: var(--coffee-gold);
    border: 2px solid var(--coffee-gold);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-1px);
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 800;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ===== SECTION BASE ===== */
section {
    padding: 60px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--coffee-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    background: var(--coffee-medium);
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--coffee-gold), transparent);
}

.problem-list {
    list-style: none;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    margin-bottom: 12px;
    background: rgba(17, 24, 39, 0.5);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent-orange);
    transition: transform 0.3s ease;
}

.problem-list li:hover {
    transform: translateX(4px);
}

.problem-list .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.problem-list .text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.problem-list .text strong {
    color: var(--coffee-cream);
}

/* ===== SOLUTION SECTION ===== */
.solution-section {
    background: var(--coffee-dark);
    text-align: center;
}

.solution-section .ebook-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* ===== ALASAN SECTION ===== */
.alasan-section {
    background: var(--coffee-medium);
}

.alasan-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.alasan-card {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.alasan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.alasan-card:hover::before {
    transform: scaleX(1);
}

.alasan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: var(--shadow-md);
}

.alasan-card .card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.alasan-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--coffee-cream);
}

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

/* ===== TARGET SECTION ===== */
.target-section {
    background: var(--coffee-dark);
}

.target-list {
    list-style: none;
}

.target-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    margin-bottom: 10px;
    background: rgba(55, 65, 81, 0.4);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.target-list li:hover {
    background: rgba(55, 65, 81, 0.7);
    transform: translateX(4px);
}

.target-list .check {
    color: var(--accent-green);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.target-list .text {
    font-size: 0.95rem;
}

/* ===== MODULES SECTION ===== */
.modules-section {
    background: var(--coffee-medium);
    position: relative;
}

.module-card {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.module-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.module-card .module-num {
    position: absolute;
    top: -12px;
    left: 28px;
    background: var(--gradient-gold);
    color: var(--coffee-dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.module-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 12px;
    margin-top: 8px;
    color: var(--coffee-cream);
}

.module-card .module-price {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 10px;
}

.module-card ul {
    list-style: none;
}

.module-card ul li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 4px 0;
    padding-left: 22px;
    position: relative;
}

.module-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

/* ===== BONUS SECTION ===== */
.bonus-section {
    background: var(--coffee-dark);
    position: relative;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1), transparent);
    border-radius: 50%;
}

.bonus-card {
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.6), rgba(17, 24, 39, 0.8));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

.bonus-card .bonus-tag {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--coffee-cream);
}

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

.bonus-card .bonus-value {
    font-size: 0.8rem;
    color: var(--accent-red);
    text-decoration: line-through;
    margin-top: 6px;
}

/* ===== TESTIMONI SECTION ===== */
.testimoni-section {
    background: var(--coffee-medium);
}

.testimoni-card {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.testimoni-card:hover {
    border-color: rgba(245, 158, 11, 0.2);
}

.testimoni-card .stars {
    color: #ffb300;
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimoni-card .quote {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
    position: relative;
    padding-left: 16px;
    border-left: 3px solid var(--coffee-gold);
}

.testimoni-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimoni-card .avatar,
.testimoni-card .avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--coffee-dark);
    font-size: 1rem;
    object-fit: cover;
}

.testimoni-card .author-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--coffee-cream);
}

.testimoni-card .author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background: var(--coffee-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08), transparent 70%);
    border-radius: 50%;
}

.pricing-box {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.8), rgba(31, 41, 55, 0.9));
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.pricing-box .guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(67, 160, 71, 0.15);
    border: 1px solid rgba(67, 160, 71, 0.3);
    color: var(--accent-green);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.pricing-box .special-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--coffee-gold);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-box .price-big {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.pricing-box .price-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-box .btn-cta {
    width: 100%;
    padding: 18px 32px;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.pricing-box .btn-wa {
    width: 100%;
    padding: 16px 32px;
    font-size: 1rem;
}

.pricing-box .secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ===== ROI SECTION ===== */
.roi-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.roi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(75, 85, 99, 0.3);
}

.roi-item:nth-child(3) {
    border-bottom: none;
    padding-bottom: 0;
}

.roi-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.roi-value {
    font-size: 1.15rem;
    font-weight: 700;
}

.roi-divider {
    height: 2px;
    background: var(--gradient-gold);
    margin: 24px 0;
    border-radius: 2px;
}

/* ===== COUNTDOWN ===== */
.countdown-bar {
    background: linear-gradient(135deg, var(--accent-red), #c62828);
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: sweep 3s linear infinite;
}

@keyframes sweep {
    to {
        left: 100%;
    }
}

.countdown-bar .label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.countdown-timer .unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-timer .num {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: 1.8rem;
    font-weight: 900;
    min-width: 56px;
    text-align: center;
}

.countdown-timer .txt {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    opacity: 0.8;
}

/* ===== GUARANTEE SECTION ===== */
.guarantee-section {
    background: var(--coffee-medium);
    text-align: center;
}

.guarantee-box {
    background: rgba(67, 160, 71, 0.08);
    border: 2px solid rgba(67, 160, 71, 0.3);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    max-width: 500px;
    margin: 0 auto;
}

.guarantee-box .shield {
    font-size: 3rem;
    margin-bottom: 16px;
}

.guarantee-box h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--accent-green);
}

.guarantee-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--coffee-dark);
}

.faq-item {
    background: rgba(55, 65, 81, 0.4);
    border: 1px solid rgba(75, 85, 99, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: rgba(245, 158, 11, 0.3);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 18px 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--coffee-gold);
}

.faq-question .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question .arrow {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 18px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    background: linear-gradient(180deg, var(--coffee-dark), var(--coffee-medium));
    text-align: center;
    padding: 80px 0;
}

.final-cta-section h2 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.final-cta-section .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-section p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--coffee-dark);
    border-top: 1px solid rgba(75, 85, 99, 0.2);
    padding: 30px 0 100px;
    text-align: center;
}

.footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.footer a {
    color: var(--coffee-gold);
}

/* ===== URGENCY BADGE ===== */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(229, 57, 53, 0.15);
    border: 1px solid rgba(229, 57, 53, 0.3);
    color: var(--accent-red);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    animation: blink-badge 1.5s ease infinite;
}

@keyframes blink-badge {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}



@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== STATS BAR ===== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
    padding: 16px;
    background: rgba(55, 65, 81, 0.4);
    border-radius: var(--radius-md);
    border: 1px solid rgba(75, 85, 99, 0.2);
}

.stat-item .stat-num {
    font-size: 1.6rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item .stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger>* {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger.visible>*:nth-child(1) {
    transition-delay: 0.05s;
    opacity: 1;
    transform: translateY(0);
}

.stagger.visible>*:nth-child(2) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.stagger.visible>*:nth-child(3) {
    transition-delay: 0.15s;
    opacity: 1;
    transform: translateY(0);
}

.stagger.visible>*:nth-child(4) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.stagger.visible>*:nth-child(5) {
    transition-delay: 0.25s;
    opacity: 1;
    transform: translateY(0);
}

.stagger.visible>*:nth-child(6) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.stagger.visible>*:nth-child(7) {
    transition-delay: 0.35s;
    opacity: 1;
    transform: translateY(0);
}

.stagger.visible>*:nth-child(8) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

.stagger.visible>*:nth-child(9) {
    transition-delay: 0.45s;
    opacity: 1;
    transform: translateY(0);
}

.stagger.visible>*:nth-child(10) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .pricing-box .price-big {
        font-size: 2.8rem;
    }

    .stats-bar {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .stat-item .stat-num {
        font-size: 1.3rem;
    }

    .countdown-timer .num {
        font-size: 1.4rem;
        padding: 6px 10px;
        min-width: 44px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-price-box {
        padding: 16px 20px;
    }

    .hero-price-box .price-new {
        font-size: 2rem;
    }

    .btn-cta,
    .btn-wa {
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .floating-cta {
        flex-direction: column;
        gap: 8px;
        padding: 10px 16px;
    }

    .pricing-box {
        padding: 24px 16px;
    }

    .roi-box {
        padding: 24px 16px;
    }

    .guarantee-box {
        padding: 24px 16px;
    }

    .stats-bar {
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
    }

    .stat-item {
        padding: 12px;
    }

    .value-stack-box {
        padding: 12px;
    }
}

/* ===== DIVIDER ===== */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--coffee-brown), transparent);
    margin: 0;
}

/* ===== TEXT UTILITIES ===== */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--coffee-gold);
}

.text-red {
    color: var(--accent-red);
}

.text-green {
    color: var(--accent-green);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

/* ===== AUTHOR SECTION ===== */
.author-section {
    background: var(--coffee-dark);
    position: relative;
    overflow: hidden;
}

.author-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -20%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.author-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.95));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .author-card {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 40px;
    }
}

.author-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--coffee-gold);
    box-shadow: var(--shadow-glow);
    flex-shrink: 0;
}

.author-content h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--coffee-cream);
    margin-bottom: 4px;
}

.author-title {
    font-size: 1rem;
    color: var(--coffee-gold);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.author-bio {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

.author-bio strong {
    color: var(--white);
}