/* 
    =======================================================================
    Project: AI Money Making Kit - Stylesheet
    Author: MA Software (masoftware.in)
    Type: Hand-crafted Vanilla CSS
    Description: Performance-optimized custom design system. 
    NOTE: All styles are manually written. No frameworks like Tailwind 
    or Bootstrap were used to maintain maximum control and speed.
    =======================================================================
*/

:root {
    /* Color Palette - Manually curated for luxury brand feel */
    --bg-color: #050505;
    --card-bg: #111111;
    --primary-color: #ffcc00;
    /* Gold/Yellow - Custom hex for better contrast */
    --secondary-color: #ff4d4d;
    /* Red - Used for urgency elements */
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --accent-glow: rgba(255, 204, 0, 0.2);
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 50px;
    /* Base padding for top banner */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    scroll-margin-top: 70px;
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--primary-color);
}

/* Top Banner */
.top-banner {
    background: var(--primary-color);
    color: #000;
    text-align: center;
    padding: 12px 20px;
    font-weight: 800;
    font-size: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#timer {
    background: #000;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 5px;
    font-family: monospace;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--secondary-color), #d43f3f);
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 12px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 77, 77, 0.3);
    position: relative;
    z-index: 15;
}

/* Custom Button Design - No generic framework buttons here */
.btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 77, 77, 0.5);
}

.btn-yellow {
    background: linear-gradient(135deg, var(--primary-color), #ccaa00);
    color: #000;
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
}

.btn-yellow:hover {
    box-shadow: 0 15px 30px rgba(255, 204, 0, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 50px;
    display: flex;
    position: relative;
    overflow: hidden;
}

/* Main Layout Structure - Custom Split Hero Implementation */
.split-hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

.hero-left,
.hero-right {
    flex: 1;
    height: 100vh;
    min-height: 600px;
}

.hero-left {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-track {
    display: flex;
    width: 600%;
    /* 6 images */
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 0 60px 60px 0;
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.5);
}

.hero-right {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
    background: radial-gradient(circle at right, #111, var(--bg-color));
}

.hero-content {
    max-width: 650px;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    margin-bottom: 30px;
    animation: badgePulse 2s infinite;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 12px rgba(255, 204, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
    }
}

.hero h1 {
    font-size: 4.2rem;
    line-height: 1;
    margin-bottom: 30px;
    text-align: left;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero .subheadline {
    font-size: 1.4rem;
    text-align: left;
    margin-bottom: 40px;
    color: #ddd;
    line-height: 1.4;
}

/* Urgent Offer Box - Complex glassmorphism for modern feel */
.hero-offer-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 204, 0, 0.3);
    padding: 40px;
    border-radius: 30px;
    margin-bottom: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-offer-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.price-context {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.old-price {
    color: var(--text-muted);
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-decoration: none; /* Remove static line */
}

.old-price::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 3px;
    background: #ff4d4d;
    transform: translateY(-50%);
    animation: drawLine 2.5s infinite;
}

.discount-tag {
    background: #ff4d4d;
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.new-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
}

.hero-trust {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #bbb;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-color), transparent);
    z-index: 3;
    pointer-events: none;
}

/* Features Grid */
.features-strip {
    background: #111;
    padding: 25px 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.features-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

/* Checklist */
.checklist {
    list-style: none;
}

.checklist li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Tool Cards */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.tool-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #222;
    transition: all 0.3s ease;
    text-align: center;
}

.tool-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.tool-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Bonuses */
.bonus-banner {
    background: linear-gradient(135deg, var(--primary-color), #ccaa00);
    color: #000;
    padding: 80px 20px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(255, 204, 0, 0.2);
}

.bonus-badge {
    background: #000;
    color: var(--primary-color);
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bonus-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: var(--font-heading);
    text-shadow: 2px 2px 15px rgba(0,0,0,0.2);
}

.bonus-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-white {
    background: #000;
    color: #fff;
    padding: 0 15px;
    display: inline-block;
    transform: skewX(-10deg);
    position: relative;
}

/* Strikethrough line animation */
.highlight-white::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 4px;
    background: #ff4d4d;
    transform: translateY(-50%);
    animation: drawLine 3s infinite;
    z-index: 1;
}

@keyframes drawLine {
    0% { width: 0; }
    30% { width: 100%; }
    100% { width: 100%; }
}

.free-tag {
    text-decoration: none;
    font-style: italic;
    font-weight: 900;
    margin-left: 10px;
    display: inline-block;
    animation: freePulse 3s infinite;
}

@keyframes freePulse {
    0%, 30% { transform: scale(1); opacity: 0.7; color: inherit; }
    40% { transform: scale(1.3) rotate(-5deg); opacity: 1; color: #d40000; text-shadow: 0 0 10px rgba(212, 0, 0, 0.3); }
    50% { transform: scale(1); opacity: 1; color: #000; }
    100% { transform: scale(1); opacity: 1; }
}

/* Add a shine effect */
.bonus-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

/* Animated Price Cut */
.animated-cut {
    position: relative;
    display: inline-block;
}

.animated-cut::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 3px;
    background: #ff4d4d;
    transform: translateY(-50%);
    animation: drawLine 2.5s infinite;
}

@keyframes drawLine {
    0% { width: 0; }
    40% { width: 100%; }
    100% { width: 100%; }
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-box {
    background: #000;
    border: 2px dashed var(--primary-color);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-box:hover {
    background: #080808;
    transform: scale(1.03);
}

/* FAQ */
.faq-container {
    max-width: 850px;
    margin: 40px auto 0;
}

.faq-item {
    background: #111;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #1a1a1a;
}

.faq-question {
    padding: 22px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #999;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 0 22px 22px;
}

/* Testimonials */
.testimonial-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-track img {
    flex: 0 0 calc(33.333% - 20px);
    width: calc(33.333% - 20px);
    height: auto;
    border-radius: 20px;
    border: 3px solid #1a1a1a;
    transition: all 0.4s ease;
}

.testimonial-track img:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Animations Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-right {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .split-hero {
        flex-direction: column;
    }

    .hero-left {
        width: 100%;
        height: 50vh;
        min-height: 450px;
        flex: none;
    }

    .hero-slide {
        border-radius: 0;
    }

    .hero-right {
        width: 100%;
        padding: 60px 20px;
        flex: none;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.8rem;
        text-align: center;
    }

    .hero .subheadline {
        text-align: center;
    }

    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
    }

    .testimonial-track img {
        flex: 0 0 calc(50% - 15px);
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .features-grid {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
        gap: 15px;
    }

    .testimonial-track img {
        flex: 0 0 100%;
        width: 100%;
    }

    .bonus-title {
        font-size: 2.2rem;
    }

    position: relative;
    display: inline-block;
}

.animated-cut::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 3px;
    background: #ff4d4d;
    transform: translateY(-50%);
    animation: drawLine 2.5s infinite;
}

@keyframes drawLine {
    0% { width: 0; }
    40% { width: 100%; }
    100% { width: 100%; }
}

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

.bonus-box {
    background: #000;
    border: 2px dashed var(--primary-color);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-box:hover {
    background: #080808;
    transform: scale(1.03);
}

/* FAQ */
.faq-container {
    max-width: 850px;
    margin: 40px auto 0;
}

.faq-item {
    background: #111;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #1a1a1a;
}

.faq-question {
    padding: 22px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #999;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 0 22px 22px;
}

/* Testimonials */
.testimonial-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-track img {
    flex: 0 0 calc(33.333% - 20px);
    width: calc(33.333% - 20px);
    height: auto;
    border-radius: 20px;
    border: 3px solid #1a1a1a;
    transition: all 0.4s ease;
}

.testimonial-track img:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Animations Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-right {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .split-hero {
        flex-direction: column;
    }

    .hero-left {
        width: 100%;
        height: 50vh;
        min-height: 450px;
        flex: none;
    }

    .hero-slide {
        border-radius: 0;
    }

    .hero-right {
        width: 100%;
        padding: 60px 20px;
        flex: none;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.8rem;
        text-align: center;
    }

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

    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
    }

    .testimonial-track img {
        flex: 0 0 calc(50% - 15px);
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .features-grid {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
        gap: 15px;
    }

    .testimonial-track img {
        flex: 0 0 100%;
        width: 100%;
    }

    .bonus-title {
        font-size: 2.2rem;
    }

    .bonus-subtitle {
        font-size: 1.1rem;
    }
}

/* Sales Notification Popup Styling */
.sales-notification {
    position: fixed;
    top: 25px;
    right: 25px;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateX(150%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 350px;
    font-family: 'Inter', sans-serif;
}

.sales-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.sales-notification .notif-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.2);
}

.sales-notification .notif-content {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.4;
    text-align: left;
}

.sales-notification .notif-text {
    margin-bottom: 4px;
}

.sales-notification .notif-name {
    font-weight: 800;
    color: #111;
}

.sales-notification .notif-time {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

@media (max-width: 480px) {
    .sales-notification {
        top: 15px;
        right: 15px;
        left: 15px;
        max-width: none;
        transform: translateY(-150%);
    }
    .sales-notification.show {
        transform: translateY(0);
    }
}
