:root {
    --gold: #c9a227;
    --dark-gold: #a88a20;
    --black: #111111;
    --dark-gray: #222222;
    --light-gray: #f5f5f5;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, sans-serif;
}

body {
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Anton', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 *, h2 *, h3 *, h4 *, h5 * {
    font-family: 'Anton', sans-serif;
}

h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
}

h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
}

h3 {
    font-size: 1.8rem;
    color: var(--gold);
}

.chapter-text h3 {
    color: var(--white);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

section {
    padding: 80px 0;
    position: relative;
}

/* Header / Hero Section */
header {
    background-color: var(--black);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.tw {
    color: #fff;
}

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

.logo {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
}

.hero {
    background-color: var(--black);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: .5;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.problem {
    background-color: var(--dark-gray);
}

.authority {
    background-color: var(--black);
    position: relative;
}

.authority-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.authority-image {
    flex: 1;
}

.authority-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.authority-text {
    flex: 1.5;
}

.benefits {
    background-color: var(--dark-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 10px;
    border-left: 3px solid var(--gold);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.preview {
    background-color: var(--black);
}

.preview-chapter {
    background-color: rgba(201, 162, 39, 0.1);
    border-left: 4px solid var(--gold);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 0 8px 8px 0;
}

.chapter-number {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 10px;
}

.testimonials {
    background-color: var(--dark-gray);
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    margin-bottom: 15px;
}

.testimonial-name {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-info {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 15px;
}

.testimonial-quote {
    font-style: italic;
}

.offer {
    background-color: var(--black);
}

.offer-box {
    background-color: rgba(201, 201, 201, 0.1);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.price-tag {
    margin: 20px 0;
}

.original-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #aaa;
    margin-right: 15px;
}

.current-price {
    font-size: 3rem;
    color: var(--gold);
    font-weight: 700;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.guarantee img {
    width: 60px;
    margin-right: 15px;
}

.bonus {
    background-color: var(--dark-gray);
}

.bonus-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bonus-item {
    background-color: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 10px;
    border-top: 3px solid var(--gold);
}

.bonus-title {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.bonus-value {
    font-weight: 700;
    margin-top: 15px;
}

.faq {
    background-color: var(--black);
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
    padding-bottom: 20px;
}

.faq-question {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.final-cta {
    background-color: var(--dark-gray);
    text-align: center;
}

footer {
    background-color: var(--black);
    padding: 50px 0 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.footer-link {
    color: var(--white);
    opacity: 0.7;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
}

.footer-link:hover {
    opacity: 1;
    color: var(--gold);
}

.payment-methods {
    margin: 20px 0;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn:hover {
    background-color: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

header .btn {
    padding: 7px 20px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.2rem;
}

.btn-lg.x {
    font-size: 1.5rem; 
    padding: 20px 40px;
}

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

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--black);
}

.highlight {
    color: var(--gold);
}

.section-number {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(201, 162, 39, 0.1);
    z-index: 0;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: var(--gold);
    margin: 20px 0;
}

@media (max-width: 992px) {
    .hero {
        padding-top: 90px;
    }

    .hero-text {
        position: relative;
        z-index: 2;
        margin-top: -140px;
        background: linear-gradient(to bottom, #0f0f0f00 0%, #0f0f0f 70px, #0f0f0f 100%);
    }

    .hero-content, .authority-content {
        flex-direction: column-reverse;
        gap: 10px;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-number {
        font-size: 6rem;
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .chapter-content {
        flex-flow: column;
    }

    section {
        padding: 60px 0;
    }
    
    .benefits-grid, .testimonial-cards, .bonus-items {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section-number {
        font-size: 5rem;
    }
    
    .offer-box {
        padding: 20px;
    }

    .btn {        
        font-size: 0.9rem;
    }

    .btn-lg {        
        font-size: 1rem;
    }

    .btn-lg.x {
        font-size: 1rem; 
        padding: 10px 30px;
    }
}

.healthspan-chapter {
    background-color: var(--gold);
    color: var(--black);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.chapter-content {
    display: flex;
    gap: 30px;
}

.chapter-text {
    flex: 1.5;
    position: relative;
    z-index: 2;
}

.chapter-image {
    flex: 1;
}

.chapter-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.chapter-number-big {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 8rem;
    font-weight: 900;
    opacity: 0.15;
}

.countdown {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
}

.countdown-number {
    background-color: var(--black);
    color: var(--gold);
    font-size: 2rem;
    font-weight: 700;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.8rem;
}

.floating-cta {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 999;    
}

.floating-cta .btn {
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}