/* ==========================
   CSS VARIABLES & DESIGN SYSTEM
   ========================== */
:root {
    /* Color Palette */
    --primary: #10b981;
    /* Emerald */
    --primary-dark: #059669;
    --primary-light: #d1fae5;
    --secondary: #0f172a;
    /* Slate Dark */
    --secondary-light: #1e293b;
    --accent: #f59e0b;
    /* Gold/Orange for CTA */
    --accent-dark: #d97706;
    --danger: #ef4444;
    /* Red for 'Not For' */
    --danger-light: #fee2e2;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --text-main: #334155;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --white: #ffffff;

    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.4);
    --shadow-glow-accent: 0 0 25px rgba(245, 158, 11, 0.5);
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================
   RESET & BASE STYLES
   ========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-primary {
    color: var(--primary);
}

.text-warning {
    color: var(--accent);
}

.text-white {
    color: var(--white);
}

.text-dark {
    color: var(--secondary);
}

.text-muted {
    color: var(--text-muted);
}

.text-light-gray {
    color: #cbd5e1;
}

.gold-text {
    color: #fbbf24;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.w-100 {
    width: 100%;
}

.d-inline-block {
    display: inline-block;
}

.flex-row {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gap-3 {
    gap: 1rem;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-gray {
    background-color: var(--bg-gray);
}

.bg-primary-light {
    background-color: var(--primary-light);
}

.bg-light-green {
    background-color: #ecfdf5;
}

.bg-dark {
    background-color: var(--secondary);
}

.bg-gradient-dark {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
}

.relative {
    position: relative;
}

.z-index-1 {
    z-index: 1;
}

.border-radius-lg {
    border-radius: var(--radius-lg);
}

.section {
    padding: 5rem 0;
}

.lead {
    font-size: 1.25rem;
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

/* ==========================
   BUTTONS
   ========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

.btn-xl {
    padding: 1.2rem 2rem;
    font-size: 1.25rem;
    border-radius: var(--radius-lg);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Base Animations */
.pulse {
    animation: pulse-soft 2s infinite;
}

.pulse-slow {
    animation: pulse-soft 3s infinite;
}

@keyframes pulse-soft {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/* ==========================
   NAVBAR
   ========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.logo span {
    color: var(--primary);
}

/* ==========================
   HERO SECTION
   ========================== */
.hero {
    padding-top: 120px;
    padding-bottom: 4rem;
    background: radial-gradient(circle at 80% 20%, var(--primary-light) 0%, var(--white) 50%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.badge {
    display: inline-block;
    background: var(--bg-light);
    color: var(--secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero h1 span {
    color: var(--primary);
}

.hero .subheadline {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.hero-highlight {
    background: rgba(255, 255, 255, 0.7);
    border-left: 4px solid var(--primary);
    padding: 1rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 1.05rem;
    backdrop-filter: blur(4px);
}

.security-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Mockup */
.mockup-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.mockup {
    width: 100%;
    border-radius: var(--radius-md);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.mockup:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    backdrop-filter: blur(5px);
}

.badge-1 {
    top: 10%;
    left: -20px;
    animation: float-up-down 4s ease-in-out infinite;
}

.badge-2 {
    bottom: 20%;
    right: -30px;
    animation: float-up-down 5s ease-in-out infinite reverse;
}

@keyframes float-up-down {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.shadow-float {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ==========================
   PAIN POINTS
   ========================== */
.warning-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.pain-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--danger-light);
    color: var(--danger);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.alert-box.border-green {
    border: 2px solid var(--primary);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.9);
}

/* ==========================
   TRUTH SECTION
   ========================== */
.truth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.truth h2 span {
    color: var(--primary);
}

.check-list-light li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.highlight-box {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid var(--primary);
    padding: 1rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 1.1rem;
}

.rounded-image {
    border-radius: var(--radius-xl);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

/* ==========================
   DELIVERABLES & BONUSES
   ========================== */
.section-title h2 {
    font-size: 2.5rem;
}

.section-title span {
    color: var(--primary);
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
}

.main-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid #e2e8f0;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
}

.badge-primary {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.tags-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: #f1f5f9;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
}

.card-icon-big {
    font-size: 8rem;
    opacity: 0.8;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.bonus-box {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

/* ==========================
   AUDIENCE SECTION
   ========================== */
.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.audience-card {
    padding: 3rem;
    border-radius: var(--radius-xl);
    color: var(--white);
}

.audience-card h3 {
    color: inherit;
    font-size: 1.8rem;
}

.green-card {
    background: var(--primary);
}

.red-card {
    background: var(--danger);
}

.icon-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.icon-list.check-green i {
    color: #fff;
    background: rgba(0, 0, 0, 0.1);
    padding: 5px;
    border-radius: 50%;
}

.icon-list.check-red i {
    color: #fff;
    background: rgba(0, 0, 0, 0.1);
    padding: 5px;
    border-radius: 50%;
}

/* ==========================
   VISION/IMAGINE (Parallax)
   ========================== */
.vision {
    background: url('https://images.unsplash.com/photo-1546069901-ba9599a7e63c?auto=format&fit=crop&w=1200&q=80') center/cover fixed;
    min-height: 400px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
}

.shadow-text {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 2.5rem;
}

.bubble-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.vision-bubble {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.vision-bubble:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* ==========================
   OFFER / PRICING
   ========================== */
.offer {
    margin-top: -50px;
}

.offer-box {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    max-width: 600px;
    border: 2px solid var(--accent);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--danger);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.pricing-badge {
    background: #fffbeb;
    border: 1px solid #fde68a;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: inline-block;
    color: var(--secondary);
}

.pricing-badge .old {
    text-decoration: line-through;
    display: block;
    font-size: 1.1rem;
}

.pricing-badge .new {
    font-size: 1.5rem;
    display: block;
}

.pricing-badge .new span {
    font-size: 3rem;
    color: var(--accent);
    font-weight: 800;
    line-height: 1;
}

.payment-perks li {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* ==========================
   GUARANTEE & FOOTER
   ========================== */
.guarantee-wrapper {
    background: #ecfdf5;
    border: 2px dashed var(--primary);
    max-width: 800px;
    margin: 0 auto;
}

.seal-image {
    width: 120px;
}

.guarantee-text h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.footer {
    padding: 4rem 0 2rem;
}

.footer-logo {
    font-size: 2rem;
}

.footer-logo span {
    color: var(--primary);
}

.sec-badge {
    font-weight: 600;
}

/* ==========================
   ANIMATIONS & EFFECTS
   ========================== */
/* Initial states for intersection observer classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.appear {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* ==========================
   RESPONSIVE
   ========================== */
@media (max-width: 992px) {

    .hero-container,
    .truth-container,
    .audience-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero {
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-highlight,
    .truth-highlight {
        border-left: none;
        border-bottom: 4px solid var(--primary);
        border-radius: var(--radius-md);
    }

    .truth-text {
        margin-bottom: 2rem;
    }

    .check-list-light li {
        justify-content: center;
    }

    .reverse-mobile {
        flex-direction: column-reverse;
        text-align: center;
    }

    .card-icon-big {
        margin: 0 auto;
    }

    .guarantee-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subheadline {
        font-size: 1.1rem;
    }

    .card-icon-big {
        font-size: 4rem;
    }

    .main-card {
        padding: 1.5rem;
    }

    .offer-box {
        padding: 2rem 1.5rem;
    }

    .pricing-badge .new span {
        font-size: 2.2rem;
    }

    .flex-row {
        flex-direction: column;
    }

    .audience-card {
        padding: 1.5rem;
    }

    .vision-bubble {
        width: 100%;
        text-align: center;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .btn-xl {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }
}

/* ==========================
   CAROUSEL SHOWCASE
   ========================== */
.recipe-showcase h2 span {
    color: var(--primary);
}

.overflow-hidden {
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    position: relative;
    padding: 0;
    margin: 2rem 0;
}

.carousel-track {
    display: flex;
    width: calc(250px * 8 + 2rem * 8);
    /* Width of all items + gap */
    animation: scroll-continuous 20s linear infinite;
    gap: 2rem;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    width: 250px;
    height: 300px;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.carousel-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
    color: white;
    padding: 2.5rem 1rem 1rem;
    font-weight: 700;
    font-size: 1.3rem;
    text-align: center;
    font-family: var(--font-heading);
}

@keyframes scroll-continuous {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 4 - 2rem * 4));
    }
}

@media (max-width: 768px) {
    .carousel-item {
        width: 220px;
        height: 280px;
    }

    .carousel-track {
        width: calc(220px * 8 + 1rem * 8);
        gap: 1rem;
        animation: scroll-continuous-mobile 15s linear infinite;
    }

    @keyframes scroll-continuous-mobile {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-220px * 4 - 1rem * 4));
        }
    }
}