:root {
    --primary: #1a4731;          /* Deep Forest Green */
    --primary-vibrant: #2e7d32;  /* Healthy Green */
    --accent: #8cc63f;           /* Lime/Fresh Green */
    --secondary: #ff9800;        /* Warning/Orange for focus */
    --dark: #121212;
    --light: #f9fbf9;
    --white: #ffffff;
    --text: #333333;
    --text-muted: #666666;
    --gold: #d4af37;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
}

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

h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    cursor: pointer;
}

li {
    list-style: none;
}

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
}

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

.logo {
    height: 60px;
    filter: drop-shadow(0 2px 5px rgba(255,255,255,0.2));
}

.live-counter {
    background: rgba(255,255,255,0.9);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow);
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #ff0000;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px #ff0000;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #1a4731 0%, #0d261a 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
    z-index: 1;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.badge {
    background: var(--accent);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 500px;
}

.mockup-img {
    width: 100%;
    max-width: 550px;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    transition: var(--transition);
    border: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent), #76ae34);
    color: var(--primary);
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(140, 198, 63, 0.4);
}

.btn-secondary {
    background: linear-gradient(45deg, var(--secondary), #e65100);
    color: var(--white);
    padding: 22px 45px;
    font-size: 20px;
}

.btn-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 152, 0, 0.4);
}

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

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

.cta-wrapper {
    margin-bottom: 20px;
}

.cta-sub {
    font-size: 13px;
    margin-top: 10px;
    opacity: 0.7;
    font-style: italic;
}

/* PROBLEM SECTION */
.problem {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.divider {
    height: 4px;
    width: 60px;
    background: var(--accent);
    margin: 0 auto;
    border-radius: 2px;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.problem-item {
    background: var(--light);
    padding: 40px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.problem-item i {
    font-size: 40px;
    color: var(--primary-vibrant);
}

.highlight-item {
    background: linear-gradient(135deg, var(--primary) 0%, #2e7d32 100%);
    color: var(--white);
}

.highlight-item i {
    color: var(--accent);
}

/* BOOK DETAILS SECTION */
.book-details {
    padding: 100px 0;
    background: var(--white);
}

.book-details-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.book-details-img {
    flex: 1;
}

.book-details-img img {
    width: 100%;
    max-width: 450px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
}

.book-details-img img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.book-details-info {
    flex: 1.2;
}

.book-details-info h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.info-meta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.meta-item {
    background: var(--light);
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-vibrant);
}

/* TESTIMONIALS SECTION */
.testimonials {
    padding: 100px 0;
    background: var(--light);
}

.chat-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.chat-card {
    background: white;
    border-radius: 30px;
    padding: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.chat-card:hover {
    transform: translateY(-10px) rotate(2deg);
}

.chat-card img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

/* EXPERT NOTE */
.expert-note {
    margin-top: 60px;
    background: var(--primary);
    color: var(--white);
    padding: 40px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.expert-note::before {
    content: '"';
    position: absolute;
    right: 40px;
    bottom: -40px;
    font-size: 200px;
    font-family: serif;
    opacity: 0.1;
    line-height: 1;
}

.expert-img img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid var(--accent);
    object-fit: cover;
}

.expert-text p {
    font-size: 1.4rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 10px;
}

.expert-text span {
    font-size: 14px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

/* FEATURES SECTION (MOVED DOWN) */
.features {
    padding: 100px 0;
    background: var(--white);
}

.pre-title {
    color: var(--primary-vibrant);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--primary);
    color: var(--white);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--primary-vibrant);
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background: var(--accent);
    color: var(--primary);
}

/* AUDIENCE SECTION */
.audience {
    padding: 100px 0;
    background-color: var(--white);
}

.audience-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #fdfdfd;
    border-radius: 40px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.audience-image {
    flex: 1;
}

.audience-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.audience-content {
    flex: 1;
}

.audience-content h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.check-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-list i {
    color: var(--accent);
    font-size: 1.3rem;
}

/* RESULTS SECTION */
.results {
    padding: 100px 0;
}

.results-card {
    background: linear-gradient(135deg, white 0%, #f0f7f4 100%);
    padding: 60px;
    border-radius: 50px;
    box-shadow: var(--shadow);
}

.results-header {
    text-align: center;
    margin-bottom: 50px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.result-box {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.result-box .number {
    font-size: 40px;
    font-weight: 900;
    color: var(--accent);
    display: block;
    margin-bottom: 15px;
    opacity: 0.3;
}

/* BONUS SECTION */
.bonus {
    padding: 100px 0;
    background: var(--primary);
    color: var(--white);
}

.bonus .section-header h2 {
    color: var(--white);
}

.bonus-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.bonus-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 40px;
    border-radius: 30px;
    flex: 1;
    max-width: 450px;
    text-align: center;
    position: relative;
}

.bonus-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 14px;
}

.bonus-img img {
    height: 180px;
    margin-bottom: 20px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bonus-card:hover .bonus-img img {
    transform: rotate(5deg) scale(1.1);
}

.value {
    display: block;
    margin-top: 20px;
    font-weight: 800;
    color: var(--accent);
    text-decoration: line-through;
}

.bonus-alert {
    text-align: center;
    margin-top: 40px;
    background: rgba(140, 198, 63, 0.2);
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid var(--accent);
}

/* FINAL CTA */
.final-cta {
    padding: 120px 0;
    background: url('https://images.unsplash.com/photo-1450778869180-41d0601e046e?q=80&w=2186&auto=format&fit=crop') no-repeat center center/cover;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 71, 49, 0.85);
}

.cta-box {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    padding: 60px;
    border-radius: 40px;
}

.glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
}

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

.old-price {
    display: block;
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.current-price {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent);
    margin-top: -5px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.access-info {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.payment-methods {
    margin-top: 40px;
}

.payment-methods img {
    height: 30px;
    margin: 10px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.payment-methods p {
    font-size: 13px;
    opacity: 0.6;
}

/* FOOTER */
footer {
    background: #0d261a;
    color: var(--white);
    padding: 60px 0 30px;
}

.disclaimer {
    background: rgba(0,0,0,0.3);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 5px solid var(--secondary);
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-links a {
    color: var(--white);
    margin-left: 20px;
    opacity: 0.7;
    font-size: 14px;
}

/* SOCIAL PROOF CSS */
#social-proof-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.social-popup {
    background: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    animation: slideIn 0.5s ease forwards;
    width: 320px;
}

@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.social-popup img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.social-info p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: var(--text);
}

.social-info span {
    font-size: 11px;
    color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .hero-wrapper { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .hero-image { order: -1; }
    .book-details-wrapper { flex-direction: column; text-align: center; }
    .book-details-img { margin-bottom: 40px; }
    .book-details-img img { transform: none; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .expert-note { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .results-grid { grid-template-columns: 1fr; }
    .price-tag .current-price { font-size: 2.5rem; }
}
