/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%); */
    background: #f0f2f4;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 100, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 150, 255, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    background: linear-gradient(45deg, #00cc44, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(0, 204, 68, 0.4);
}

.free-guide-title {
   margin-bottom: 4rem;
   margin-top: 2rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666666;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.cta-primary {
    background: linear-gradient(45deg, #00cc44, #0066cc);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 204, 68, 0.4);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 204, 68, 0.6);
}

.cta-primary.large {
    padding: 20px 40px;
    font-size: 1.2rem;
    text-decoration: none;
}

.cta-secondary {
    background: transparent;
    color: #00cc44;
    border: 2px solid #00cc44;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.cta-secondary:hover {
    background: #00cc44;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-content h2 {
    color: #00cc44;
    margin-bottom: 1.5rem;
}

.problem-list {
    list-style: none;
    margin: 1.5rem 0;
}

.problem-list li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #555555;
}

.closing-line {
    font-weight: 600;
    color: #00aaff;
    font-size: 1.2rem;
    margin-top: 1.25em;
}

.placeholder-image {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 2px solid #00cc44;
    border-radius: 12px;
    /* height: 300px; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00cc44;
    font-weight: 600;
    text-align: center;
    padding: 0px;
    box-shadow: 0 4px 15px rgba(0, 204, 68, 0.2);
    overflow: hidden;
}

.placeholder-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.guide-image {
    text-align: center;
}

/* Value Section */
.value-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    text-align: center;
}

.value-section h2 {
    color: #00aaff;
    margin-bottom: 2rem;
}

.value-section p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.icons-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 3rem 0;
}

.guide-icons {
    flex-direction: column;
    gap: 40px;
}

.icons-row {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.icons-row-bottom {
    justify-content: center;
    gap: 120px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #00cc44, #0066cc);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 204, 68, 0.4);
}

.icon-item span {
    font-weight: 600;
    color: #555555;
}

.value-text {
    font-size: 1.3rem;
    color: #555555;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.subtext {
    font-size: 1.1rem;
    color: #777777;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

/* Guide Section */
.guide-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.guide-card {
    background: #fcfcfc;
    border: 2px solid #00cc44;
    border-radius: 16px;
    padding: 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 204, 68, 0.2);
}

.guide-card h2 {
    color: #00cc44;
    margin-bottom: 1.5rem;
}

.guide-features {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 2rem auto;
}

.guide-features li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555555;
}

.email-form {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.email-form input {
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid #dddddd;
    border-radius: 8px;
    background: #ffffff;
    color: #333333;
    transition: border-color 0.3s ease;
}

.email-form input:focus {
    outline: none;
    border-color: #00cc44;
    box-shadow: 0 0 10px rgba(0, 204, 68, 0.3);
}

.privacy-disclaimer {
    font-size: 0.9rem;
    color: #888888;
    margin-top: 15px;
    text-align: center;
    font-style: italic;
    line-height: 1.4;
}

.blue-text {
    color: #00aaff;
}

/* Show/hide image versions based on screen size */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
}

/* supplement Section */
.supplement-section {
    padding: 80px 0;
    background: #ffffff;
}

.two-column.reverse {
    grid-template-columns: 1fr 1fr;
}

.supplement-features {
    list-style: none;
    margin: 1.5rem 0;
}

.supplement-features li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #555555;
    position: relative;
    padding-left: 20px;
}

.supplement-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00cc44;
    font-weight: bold;
}

.product-image {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 2px solid #00aaff;
    border-radius: 12px;
    /* height: 300px; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00aaff;
    font-weight: 600;
    text-align: center;
    padding: 0px;
    box-shadow: 0 4px 15px rgba(0, 170, 255, 0.1);
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* Social Proof Section */
.social-proof-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.social-proof-section h2 {
    color: #00aaff;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    max-width: 600px;
    margin: 0 auto 2rem;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 12px;
    border-left: 4px solid #00cc44;
    box-shadow: 0 4px 15px rgba(0, 204, 68, 0.15);
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #555555;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #00cc44;
}

.social-proof-text {
    font-size: 1.2rem;
    color: #555555;
    margin-bottom: 2rem;
}

.guarantee {
    margin-top: 2rem;
}

.guarantee-badge {
    background: linear-gradient(45deg, #00cc44, #0066cc);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 204, 68, 0.4);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.guarantee-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 204, 68, 0.6);
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #00cc44, #0066cc);
    text-align: center;
    color: #ffffff;
}

.final-cta h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #ffffff;
}

.final-cta .cta-primary {
    background: #ffffff;
    color: #00cc44;
    border: 2px solid #ffffff;
}

.final-cta .cta-primary:hover {
    background: #00cc44;
    color: #ffffff;
    border-color: #00cc44;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #ffffff;
    text-align: center;
    border-top: 1px solid #dddddd;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #00cc44;
    text-decoration: none;
    margin: 0 20px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00aaff;
}

.disclaimer {
    font-size: 0.9rem;
    color: #888888;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #888888;
    max-width: 800px;
    margin: 0 auto;
}

/* Success Page Styles */
.success-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    text-align: center;
    color: #ffffff;
}

.success-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(45deg, #00cc44, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(0, 204, 68, 0.4);
}

.success-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.success-subtitle-guide {
    font-size: 1.5rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 600;
}

.success-subtitle-inbox {
    font-size: 1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.transition-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.transition-section h2 {
    color: #00cc44;
    margin-bottom: 2rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.transition-section p {
    font-size: 1.2rem;
    color: #555555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.supplement-offer-section {
    padding: 80px 0;
    background: #ffffff;
}

.supplement-offer-section .text-content h2 {
    color: #00cc44;
    margin-bottom: 2rem;
}

.supplement-benefits {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.supplement-benefits li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #555555;
}

.supplement-offer-section .subtext {
    font-size: 1.1rem;
    color: #777777;
    font-style: italic;
    margin: 2rem 0;
}

.success-footer {
    padding: 40px 0;
    background: #0a0a0a;
    text-align: center;
    border-top: 1px solid #333333;
}

.success-footer .disclaimer {
    font-size: 0.8rem;
    color: #888888;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Direct CTA Section */
.direct-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    text-align: center;
    color: #ffffff;
}

.direct-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(45deg, #00cc44, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(0, 204, 68, 0.4);
}

.direct-subtitle {
    font-size: 1.4rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* Product Showcase Section */
.product-showcase {
    padding: 80px 0;
    background: #ffffff;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.benefits-list li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #555555;
    font-weight: 500;
}

.benefit-text {
    font-size: 1.2rem;
    color: #555555;
    margin: 2rem 0;
    font-style: italic;
}

.button-container {
    text-align: center;
    margin-top: 2rem;
}

/* How It Works Section */
.how-it-works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.step {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 12px;
    border: 2px solid #00cc44;
    box-shadow: 0 4px 15px rgba(0, 204, 68, 0.1);
}

.step h3 {
    color: #00cc44;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step p {
    color: #555555;
    line-height: 1.6;
}

/* Mobile styles for success page */
@media (max-width: 768px) {
    .success-hero {
        padding: 60px 0;
    }
    
    .transition-section {
        padding: 60px 0;
    }
    
    .supplement-offer-section {
        padding: 60px 0;
    }
    
    .supplement-benefits {
        text-align: center;
    }
    
    .supplement-benefits li {
        text-align: center;
    }
    
    .supplement-offer-section .text-content h2 {
        text-align: center;
    }
    
    .supplement-offer-section .subtext {
        text-align: center;
    }
    
    .supplement-offer-section .text-content {
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .how-it-works {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step {
        padding: 15px;
    }
    
    .direct-cta-section {
        padding: 60px 0;
    }
    
    .product-showcase {
        padding: 60px 0;
    }
    
    .benefits-list {
        text-align: center;
    }
    
    .benefits-list li {
        text-align: center;
    }
    
    .benefit-text {
        text-align: center;
    }
    
    .product-showcase .text-content h2 {
        text-align: center;
    }
    
    .button-container {
        text-align: center;
    }
    
    .final-cta .cta-primary.large {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .cta-primary.large {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    
    .cta-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .product-showcase .text-content {
        text-align: center;
    }
    
    
}


/* Responsive Design */
@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .two-column.reverse {
        grid-template-columns: 1fr;
    }
    
    .two-column .image-content {
        order: -1;
    }
    
    .guide-image img {
        max-height: 300px;
        object-fit: contain;
    }
    
    .icons-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .guide-icons {
        gap: 30px;
    }
    
    .icons-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .icons-row-bottom {
        gap: 30px;
    }
    
    .guide-card {
        padding: 40px 20px;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    
    .closing-line {
        text-align: center;
    }
    
    .supplement-section .text-content h2 {
        text-align: center;
    }
    
    .problem-section .text-content h2 {
        text-align: center;
    }
}

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