/* ===================================
   CSS VARIABLES & RESET
   =================================== */
:root {
    /* Color Palette - Optimized for WCAG Accessibility */
    --primary-color: #B8643D;        /* Darker Coral/Terracotta - Better contrast */
    --secondary-color: #5D6A4E;      /* Darker Sage Green - Better contrast */
    --accent-color: #4A5F63;         /* Darker Teal/Slate - Better contrast */
    --bg-beige: #E9E2D8;             /* Warm Beige - Backgrounds */
    --bg-sage: #C7CDBF;              /* Light Sage - Borders */
    --text-dark: #2c3e50;            /* Dark text */
    --text-light: #4a5568;           /* Darker light text for better contrast */
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.2);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 20px;
    --container-max: 1200px;
    
    /* Transitions */
    --transition: all 0.1s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: var(--section-padding);
}

/* Alternating section backgrounds */
section:nth-child(even) {
    background-color: var(--bg-beige);
}

section:nth-child(odd) {
    background-color: var(--white);
}

/* Centered content replacement for <center> tags */
.centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.centered-content img {
    width: 95%;
    max-width: 1350px;
    height: auto;
    margin: 5px;
    padding: 5px;
}

/* Video wrapper replacement for inline styles */
.video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.video-player-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    aspect-ratio: 16/9;
    border: 3px solid #000000;
    background-color: #000000;
    border-radius: 2%;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===================================
   NAVIGATION BAR
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #816803;
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px var(--shadow-hover);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
}

.nav-logo img {
    width: 32px;
    height: 32px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-body);
    font-weight: 500;
    color: #f1cd3f;
    transition: var(--transition);
    font-size: 1.2rem;
}

.nav-menu a:hover {
    color: #f9eaad;
}

.nav-cta {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 3px 12px 7px 12px;
    border-radius: 5px;
    font-weight: 600;
}

.nav-cta:hover {
    background: #e60000;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
	background: #d9d9d9;
    transition: var(--transition);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    padding-top: 70px;
    padding-bottom: 30px;
    background: linear-gradient(135deg, var(--bg-beige) 0%, var(--white) 100%);
    text-align: center;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: pulse-badge 2s infinite;
}

.badge-icon {
    font-size: 1.3rem;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.0rem;
    font-weight: 800;
	color: #b33109;
    line-height: 1.2;
	margin-bottom: 25px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 2.7rem;
    font-weight: 500;
    color: #412c03;
    margin-bottom: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
	line-height: 1.2;
}

.hero-cta {
    margin-bottom: 50px;
}

.cta-subtext {
    margin-top: 15px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.hero-image {
    width: 95%;
	max-width: 850px;
    margin: 0 auto;
	margin-top:10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

/* Product Showcase Image with Animation */
.maze-product-image {
    max-width: 850px;
    margin: 30px auto;
    text-align: center;
}

.product-showcase {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    animation: zoomBounce 1.2s ease-out;
}

@keyframes zoomBounce {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-5deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) rotate(2deg);
    }
    70% {
        transform: scale(0.95) rotate(-1deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Hover effect for product image */
.product-showcase:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}


/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
	font-size:1.3rem;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-hover);
}

.btn-secondary {
    background: #cb7a5c;
    color: var(--white);
	font-size: 1.9rem;
}

.btn-secondary:hover {
    background: #f6916b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-hover);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.3rem;
}

.btn-xl {
    padding: 20px 50px;
    font-size: 1.3rem;
}

.btn-mega {
    padding: 25px 60px;
    font-size: 1.3rem;
}

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

@keyframes pulse-button {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(184, 100, 61, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(184, 100, 61, 0);
    }
}

/* ===================================
   TYPOGRAPHY
   =================================== */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.9rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.9rem;
    margin-bottom: 40px;
}

.section-intro {
    text-align: center;
    font-size: 2.2rem;
    color: var(--text-light);
    max-width: 1100px;
    margin: 0 auto 50px;
	line-height: 1.3;
}

.lead-text {
    font-size: 2.1rem;
    color: #644032;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 40px;
    line-height: 1.3;
}

/* ===================================
   SOCIAL PROOF SECTION
   =================================== */
.social-proof {
    background: var(--white);
	margin-top: 10px;
	padding-top: 10px;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.earnings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 10px;
}

.earnings-card {
    background: linear-gradient(135deg, #fde4c0, #fdf8c0);
    color: var(--white);
    padding: 30px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
	color: #000000;
}

.earnings-img {
	width:97%;
	max-width:210px;
	height:auto;
	border:0px;
	margin:auto;
}

.earnings-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.earnings-amount {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.earnings-period {
    font-size: 1.0rem;
	font-weight: bold;
    opacity: 0.9;
    margin-bottom: 5px;
}

.earnings-desc {
    font-size: 1.0rem;
    opacity: 0.8;
}

.cta-inline {
    text-align: center;
    margin-top: 30px;
}

/* ===================================
   PROBLEM SECTION
   =================================== */
.problem-list {
    max-width: 900px;
    margin: 40px auto;
}

.problem-item {
    font-size: 1.9rem;
    padding: 15px 15px;
    margin-bottom: 15px;
    background: var(--white);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    box-shadow: 0 2px 10px var(--shadow);
}

.solution-text {
    font-family: var(--font-heading);
    font-size: 2.9rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary-color);
    margin-top: 20px;
	margin-bottom: 5px;
	padding-bottom: 5px;
	line-height: 1.3;
}

/* ===================================
   INTRODUCTION SECTION
   =================================== */
.intro-highlight {
    background: #fece89;
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 20px auto;
    max-width: 800px;
}

.intro-highlight h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.intro-highlight p {
    font-size: 1.90rem;
    line-height: 1.3;
	color: #3d3c3a;
	margin-bottom:20px;
}

.video-container {
    position: relative;
    max-width: 90vw;
    width: 100%;
    max-width: 1000px;
    height: 50vw;
    max-height: 400px;
    margin: 40px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(184, 100, 61, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.video-play-button:hover {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: #1d1b1b;
    line-height: 1.5;
    font-size: 1.0rem;
}

/* ===================================
   BENEFITS SECTION
   =================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
	background-color: #fedada;
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.25rem;
}

.highlight-box {
    background: var(--accent-color);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin: 50px 0;
    text-align: center;
}

.highlight-box p {
    font-size: 1.9rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

/* ===================================
   INCOME STREAMS SECTION
   =================================== */
.income-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.income-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.income-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.income-number {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 3px 10px var(--shadow);
}

.income-card {
    position: relative;
}

.income-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.income-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    padding: 25px 25px 15px;
    color: var(--text-dark);
}

.income-card p {
    padding: 0 25px 25px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ===================================
   MARKETPLACES SECTION
   =================================== */
.marketplace-list {
    max-width: 900px;
    margin: 50px auto;
}

.marketplace-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 3px 15px var(--shadow);
    transition: var(--transition);
}

.marketplace-item:hover {
    box-shadow: 0 8px 30px var(--shadow-hover);
    transform: translateX(10px);
}

.marketplace-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.marketplace-number {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.marketplace-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.marketplace-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin-left: 65px;
    font-size: 1.05rem;
}

.marketplace-bonus {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 35px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 8px 30px var(--shadow-hover);
}

.bonus-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.marketplace-bonus h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.marketplace-bonus p {
    line-height: 1.8;
    margin-left: 0;
    font-size: 1.05rem;
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.step-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.step-card img {
    width: 100%;
    height: 60px;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    padding: 25px 20px 15px;
    color: var(--text-dark);
}

.step-card p {
    padding: 0 20px 30px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.50rem;
}

.success-message {
    background: var(--secondary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 50px auto;
    max-width: 1100px;
}

.success-message h3 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 600;
}

/* ===================================
   PROBLEMS SOLVED SECTION
   =================================== */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.problem-solution {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.problem-solution:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.problem-header {
    margin-bottom: 20px;
}

.problem-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.problem-solution h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.solution {
    background: var(--bg-beige);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.solved-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.solution p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ===================================
   MAZE TYPES SECTION
   =================================== */
.maze-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.maze-type-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.maze-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.maze-type-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.maze-type-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    padding: 20px 15px 10px;
    color: var(--text-dark);
}

.maze-type-card p {
    padding: 0 15px 20px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.highlight-text {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #d27c0d;
	margin: auto;
    margin-top: 30px;
	max-width: 1000px;
	line-height:1.3;
}

.mazeimages {
    width: 97%;
	max-width: 800px;
 	height:auto;
	border: solid #e69900 1px;
	border-radius:10px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;	
}



/* ===================================
   WHAT MAKES IT DIFFERENT SECTION
   =================================== */
.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.different-item {
    background: #f2f2f2;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 3px 15px var(--shadow);
    transition: var(--transition);
}

.different-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.different-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.different-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-card {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.stats-conclusion {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 40px;
}

/* ===================================
   WHAT YOU GET SECTION
   =================================== */
.includes-list {
    max-width: 900px;
    margin: 50px auto;
}

.include-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--shadow);
    transition: var(--transition);
}

.include-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.check-icon {
    font-size: 1.8rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.include-content h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.include-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.05rem;
}


/* ===================================
   PRICING SECTION
   =================================== */
.pricing {
    background: linear-gradient(135deg, var(--bg-beige) 0%, var(--bg-sage) 100%);
}

.pricing-box {
    max-width: 700px;
    margin: 50px auto;
    background: var(--white);
    border-radius: 15px;
    padding: 50px 40px;
    box-shadow: 0 10px 50px var(--shadow-hover);
    text-align: center;
    position: relative;
}

.pricing-box img {
    margin: auto;
    width: 95%;
    max-width: 500px;
    border: 0px;
}

.pricing-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.6rem;
    box-shadow: 0 5px 15px var(--shadow);
}

.pricing-regular {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.strike {
    text-decoration: line-through;
    color: #e74c3c;
}

.pricing-special {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pricing-savings {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
	background-color: #ffff99;
}

.pricing-features {
    text-align: left;
    margin: 20px 0;
}

.pricing-features > p {
    margin-bottom: 25px;
    line-height: 1.7;
}

.pricing-list {
    margin: 25px 0;
}

.pricing-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.pricing-cta {
    margin: 40px 0;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: var(--bg-beige);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.guarantee-icon {
    font-size: 3rem;
}

.guarantee-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.guarantee-text p {
    color: var(--text-light);
    margin: 0;
}

.urgency-box {
    max-width: 800px;
    margin: 50px auto 0;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 20px var(--shadow);
}

.urgency-box h3 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.urgency-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.urgency-highlight {
    font-weight: 600;
    color: var(--primary-color);
}


/* ===================================
   PS SECTION
   =================================== */
.ps-section {
    background: var(--bg-beige);
}

.ps-content {
    max-width: 800px;
    margin: 0 auto;
}

.ps-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.ps-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 20px 30px;
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.footer-logo img {
    width: 32px;
    height: 32px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
}

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

.footer-links a {
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: left;
    opacity: 0.7;
	line-height:1.2;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ===================================
   ANIMATIONS
   =================================== */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-fade-in:nth-child(3) {
    animation-delay: 0.4s;
}

.animate-fade-in:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.1s ease, transform 0.1s ease;
}


.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE DESIGN  (BEFORE max-width: 768px)
   =================================== */
@media (max-width: 1024px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: 0 5px 20px var(--shadow);
    }

    .nav-menu a {
        color: #c45003;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Typography */
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.9rem;
    }

    .section-intro {
        font-size: 1.6rem;
    }

    .lead-text {
        font-size: 1.7rem;
    }
    
	.intro-highlight h3 {
        font-size: 1.5rem;
	}
	
    .intro-highlight p {
       font-size: 1.30rem;
	}
	
    /* Buttons */
    .btn-large {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .btn-primary {
	   font-size:1.0rem;
    }


    .btn-secondary {
	   font-size: 1.2rem;
    }
    
    .btn-xl {
        padding: 16px 35px;
        font-size: 1.25rem;
    }
    
    .btn-mega {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
    
    /* Grids */
    .features-grid,
    .income-grid,
    .steps-container,
    .problems-grid,
    .maze-types-grid,
    .different-grid,
    .stats-grid,
    .benefits-grid,
    .earnings-grid,
    .risk-grid {
        grid-template-columns: 1fr;
    }
    
    /* Video Container */
    .video-container {
        height: 56vw;
        max-height: none;
    }

    .problem-item {
       font-size: 1.2rem;
    }
    
    /* Pricing */
    .pricing-box {
        padding: 40px 25px;
    }
    
    .pricing-amount {
        font-size: 3.5rem;
    }

    .highlight-box p {
       font-size: 1.2rem;
       line-height: 1.4;
    }
    
    /* Decision */
    .decision-options {
        flex-direction: column;
    }
    
    .option-divider {
        transform: rotate(90deg);
        margin: 20px 0;
    }

    .solution-text {
       font-size: 2.0rem;
    }

    .success-message h3 {
       font-size: 1.5rem;
    }
    
    /* Final CTA */
    .final-cta-box {
        padding: 40px 25px;
    }
    
    .final-guarantee {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-description {
        text-align: center;
    }
    
    .section-subtitle {
       font-size: 1.3rem;
    }

   .pricing-badge {
       font-size: 1.0rem;
	   padding: 10px 22px;
       border-radius: 20px;
       font-weight: 600;
	   width: 60%;
    }

    .urgency-box h3 {
       font-size: 1.9rem;
    }
	
    /* Marketplace items */
    .marketplace-item p {
        margin-left: 0;
        margin-top: 15px;
    }
    
    /* Footer */
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    /* Section padding */
    section {
        padding: 50px 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
       font-size: 1.5rem; 
    }
	
    .section-title {
        font-size: 1.4rem;
    }
    
    .pricing-amount {
        font-size: 3rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
	.btn-secondary {
	   font-size: 1.0rem;
	}

    .problem-item {
       font-size: 1.0rem;
    }

    .solution-text {
       font-size: 1.2rem;
	}

    .lead-text {
        font-size: 1.2rem;
    }

	.intro-highlight h3 {
        font-size: 1.2rem;
	}
	
    .intro-highlight p {
       font-size: 1.00rem;
	}	

    .btn-primary {
	   font-size:0.9rem;
    }

    .btn-large {
       padding: 10px 20px;
	   font-size: 0.9rem;
    }

    .section-subtitle {
       font-size: 1.3rem;
    }
	
	.btn btn-primary btn-large{
	   font-size: 0.9rem;	
	}

   .pricing-badge {
       font-size: 1.0rem;
	   padding: 10px 22px;
       border-radius: 15px;
       font-weight: 600;
	   width: 70%;
    }

    .urgency-box h3 {
       font-size: 1.5rem;
    }
	
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .navbar,
    .hamburger,
    .btn,
    .cta-inline,
    .video-play-button {
        display: none;
    }
    
    section {
        page-break-inside: avoid;
    }
}

/* ===================================
   ACCESSIBILITY ENHANCEMENTS
   =================================== */
.keyboard-nav *:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-main:focus {
    top: 0;
}