@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@600;700;800;900&display=swap');

:root {
    --bg-dark: #071B2C;
    --bg-card: #0c253b;
    --primary: #0B4F8A;
    --primary-light: #1664a7;
    --solar-yellow: #FFC400;
    --accent-orange: #FF8A00;
    --economy-green: #18B66A;
    --white: #FFFFFF;
    --light-gray: #F4F6F8;
    --text-muted: #a0aec0;
    --border-color: rgba(255, 255, 255, 0.1);
    
    --font-title: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-call: 'Bebas Neue', sans-serif;

    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(255, 196, 0, 0.4);
    --shadow-green: 0 0 20px rgba(24, 182, 106, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography & Base Elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

p {
    font-size: 1rem;
    color: var(--light-gray);
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

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

.highlight {
    color: var(--solar-yellow);
}

.highlight-green {
    color: var(--economy-green);
}

/* Buttons & CTAs */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--solar-yellow) 0%, var(--accent-orange) 100%);
    color: #000000;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 196, 0, 0.7);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--bg-dark);
}

.btn-green {
    background: linear-gradient(135deg, var(--economy-green) 0%, #128f52 100%);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(24, 182, 106, 0.7);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

/* Header / Navbar */
header {
    background-color: rgba(7, 27, 44, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
}

.logo span {
    color: var(--solar-yellow);
}

.logo-icon {
    font-size: 1.8rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 80px 0;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(11, 79, 138, 0.3) 0%, transparent 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content p.subheadline {
    font-size: 1.25rem;
    color: var(--light-gray);
    margin-bottom: 32px;
    font-weight: 500;
}

.hero-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img {
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    border-radius: 12px;
    transform: rotate(2deg);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: rotate(0deg) scale(1.02);
}

@media (max-width: 992px) {
    .hero {
        padding: 60px 0;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p.subheadline {
        font-size: 1.1rem;
    }
    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto 30px auto;
    }
}

/* Problem Section */
.problem {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-title-wrapper {
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.problem-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
}

.problem-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.problem-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

@media (max-width: 992px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 10px;
    transition: var(--transition);
}

.benefit-item:hover {
    border-color: var(--solar-yellow);
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 1.8rem;
    color: var(--solar-yellow);
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--white);
}

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

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* eBook Chapters Section */
.chapters-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.chapter-accordion {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-card);
}

.chapter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.chapter-header:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.chapter-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.1rem;
}

.chapter-num {
    color: var(--solar-yellow);
    font-family: var(--font-call);
    font-size: 1.3rem;
}

.chapter-toggle {
    font-size: 1.2rem;
    transition: var(--transition);
    color: var(--text-muted);
}

.chapter-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: rgba(0, 0, 0, 0.15);
    border-top: 1px solid transparent;
}

.chapter-content {
    padding: 24px;
    font-size: 0.95rem;
    color: var(--light-gray);
}

.chapter-accordion.active .chapter-body {
    max-height: 300px; /* arbitrary height to fit contents */
    border-top: 1px solid var(--border-color);
}

.chapter-accordion.active .chapter-toggle {
    transform: rotate(180deg);
    color: var(--solar-yellow);
}

/* Authority Section */
.authority {
    background-color: rgba(11, 79, 138, 0.05);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.authority-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.auth-badge {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--primary) 100%);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
}

.auth-badge .shield-icon {
    font-size: 4rem;
    color: var(--solar-yellow);
    margin-bottom: 20px;
}

.auth-badge h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.auth-badge p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.auth-text h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.auth-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.auth-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
}

.stat-num {
    font-family: var(--font-call);
    font-size: 2.2rem;
    color: var(--solar-yellow);
    line-height: 1;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 5px;
}

@media (max-width: 768px) {
    .authority-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .auth-badge {
        order: 1;
    }
}

/* Pricing Section */
.pricing {
    background: radial-gradient(circle at bottom, rgba(11, 79, 138, 0.2) 0%, transparent 60%);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0c253b 0%, #071522 100%);
    border: 2px solid var(--solar-yellow);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--shadow-glow);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -40px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.pricing-features {
    list-style: none;
    max-width: 400px;
    margin: 30px auto;
    text-align: left;
}

.pricing-features li {
    font-size: 1.05rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pricing-features li .check {
    color: var(--solar-yellow);
    font-weight: bold;
}

.price-box {
    margin: 30px 0;
}

.price-old {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.price-new {
    font-size: 3.5rem;
    font-family: var(--font-title);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.price-new span {
    font-size: 1.5rem;
    font-weight: 600;
}

.pricing-guarantee-note {
    margin-top: 25px;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 576px) {
    .pricing-card {
        padding: 40px 20px;
    }
    .price-new {
        font-size: 2.8rem;
    }
}

/* Guarantee / FAQ */
.guarantee-box {
    max-width: 800px;
    margin: 0 auto 60px auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.guarantee-badge-img {
    font-size: 4.5rem;
    color: var(--solar-yellow);
    flex-shrink: 0;
}

.guarantee-text h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

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

@media (max-width: 768px) {
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}

/* Checkout Page Styles */
.checkout-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-top: 40px;
}

.checkout-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.checkout-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-step {
    background-color: var(--solar-yellow);
    color: #000000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--light-gray);
}

.form-control {
    width: 100%;
    background-color: rgba(7, 27, 44, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 12px 16px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--solar-yellow);
    box-shadow: 0 0 10px rgba(255, 196, 0, 0.2);
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.payment-method-card {
    border: 1px solid var(--border-color);
    background-color: rgba(7, 27, 44, 0.4);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.payment-method-card.active {
    border-color: var(--solar-yellow);
    background-color: rgba(255, 196, 0, 0.05);
}

.payment-method-card .icon {
    font-size: 1.5rem;
}

/* Order Summary Box */
.order-summary {
    background-color: rgba(11, 79, 138, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    position: sticky;
    top: 100px;
}

.product-mini {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.product-mini img {
    width: 70px;
    border-radius: 6px;
}

.product-mini h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

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

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.price-row.total {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: 15px;
}

.security-seals {
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.security-seal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.security-seal i {
    font-size: 1.2rem;
    color: var(--economy-green);
}

@media (max-width: 992px) {
    .checkout-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Thank You & Upsell Page */
.thankyou-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    padding: 40px 20px;
}

.thankyou-box .check-icon {
    font-size: 4.5rem;
    color: var(--economy-green);
    margin-bottom: 20px;
}

.thankyou-box h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.thankyou-box p {
    font-size: 1.1rem;
    color: var(--light-gray);
}

.upsell-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0f304e 0%, #071B2C 100%);
    border: 2px dashed var(--solar-yellow);
    border-radius: 16px;
    padding: 50px 40px;
    position: relative;
}

.upsell-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--solar-yellow);
    color: #000000;
    padding: 6px 20px;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 30px;
    text-transform: uppercase;
}

.upsell-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.upsell-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 30px 0;
}

.upsell-form {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
}

.file-upload-box {
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 20px;
}

.file-upload-box:hover {
    border-color: var(--solar-yellow);
    background-color: rgba(255, 196, 0, 0.02);
}

.file-upload-box i {
    font-size: 2rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.file-upload-box input[type="file"] {
    display: none;
}

.upsell-offer-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.upsell-price {
    font-size: 1.5rem;
    font-weight: 700;
}

.no-thanks-link {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: underline;
    cursor: pointer;
}

.no-thanks-link:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .upsell-box {
        padding: 40px 20px;
    }
    .upsell-title {
        font-size: 1.6rem;
    }
}

/* Footer styling */
footer {
    background-color: #030d16;
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

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

.footer-links a:hover {
    color: var(--solar-yellow);
}

/* Modal and Simulation Styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-close:hover {
    color: var(--white);
}

/* Floating widgets or conversion tags */
.conversion-pill {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--solar-yellow);
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow);
    z-index: 99;
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
