@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-black: #0b0211;
    --dark-bg: #121218;
    --purple-primary: #8b5cf6;
    --purple-dark: #6d28d9;
    --purple-light: #e5dcff;
    --gold: #fbbf24;
    --white: #ffffff;
    --gray-light: #e5e7eb;
    --gray-med: #9ca3af;
    --gray-dark: #4b5563;
}

body {
    font-family: manrope;
    background: var(--deep-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.urgency-strip {
    background: linear-gradient(90deg, rgb(21, 4, 49), rgb(82, 29, 133), rgb(21, 4, 49));
    text-align: center;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 1001;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
    }
}

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--purple-primary));
    z-index: 1002;
    box-shadow: 0 0 10px var(--purple-primary);
}

.navbar {
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 42px;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(139, 92, 246, 0.5);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.192);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple-primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, rgba(13, 4, 24, 0.15) 0%, transparent 70%),
        linear-gradient(180deg, rgb(10, 2, 19) 0%, rgb(10, 2, 19) 60%);
    padding: 100px 40px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(127, 2, 245, 0.3) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    filter: blur(100px);
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(119, 12, 241, 0.2) 0%, transparent 70%);
    bottom: 20%;
    right: 10%;
    filter: blur(100px);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

.hero-content {
    max-width: 1500px;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-family: Poppins;
    font-size: 6rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 30px;
    color: #ead8ff;
    margin-bottom: 5rem;
}

.hero-title>span {
    background: linear-gradient(0deg, rgb(220, 184, 255) 40%, rgb(181, 102, 255) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 7rem;
}

.hero-img{
    width: 90%;
    margin-bottom: 2rem;
    border-radius: 20px;
    border: 1px solid rgb(105, 50, 179);
    box-shadow: 0px 0px 30px rgb(65, 18, 128);
}

.hero-subtitle {
    font-size: 24px;
    color: var(--purple-light);
    margin-bottom: 20px;
    font-weight: 500;
    max-width: 1000px;
}

.hero-body {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 40px;
    max-width: 800px;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.section-cta {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    justify-content: center;
    margin-bottom: 20px;
}

.cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-primary {
    background: linear-gradient(135deg, rgb(109, 17, 196), rgb(62, 9, 122));
    color: var(--white);
    border: 2px solid rgb(156, 95, 255);
    padding: 22px 180px;
    border-radius: 50px;
    font-size: 23px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0px 15px rgba(129, 75, 255, 0.6);
}

.cta-primary.large {
    padding: 20px 50px;
    font-size: 18px;
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--purple-primary);
    padding: 18px 38px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    border-color: var(--purple-light);
}

.result-img{
    width: 100%;
}

.hero-tagline {
    font-size: 14px;
    color: var(--gray-med);
    margin-bottom: 30px;
}

.hero-stats {
    font-size: 14px;
    color: var(--purple-light);
    font-weight: 600;
}

.features {
    padding: 100px 40px;
    background: var(--dark-bg);
    position: relative;
    background-color: rgb(9, 2, 17);
}

.section-header {
    font-family: Poppins;
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-tagline {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 15px;
}

.section-title {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1;
    background: linear-gradient(160deg, var(--purple-light), var(--purple-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 20px;
    color: var(--purple-light);
    margin-bottom: 15px;
    max-width: 700px;
    line-height: 1.4;
}

.section-body {
    font-size: 16px;
    color: var(--gray-med);
    line-height: 1.8;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    position: relative;
    background: linear-gradient(145deg, rgba(24, 16, 44, 0.08) 0%, rgba(18, 4, 41, 0.4) 50%, rgba(26, 17, 46, 0.05) 100%);
    border: 1px solid rgb(33, 10, 68);
    border-radius: 28px;
    padding: 45px 40px 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    overflow: visible;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Animated border glow */
.feature-card::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(139, 92, 246, 0.6),
            transparent);
    border-radius: 2px;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.00);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(139, 92, 246, 0.04) 100%);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow:
        0 0px 10px rgba(139, 92, 246, 0.25),
        0 0px 10px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    opacity: 1;
}

/* Icon container with premium styling */
.feature-icon {
    font-size: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 24px;
    border: 1.5px solid rgba(139, 92, 246, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow:
        0 8px 32px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

/* Premium typography */
.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.2;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Optional: Add decorative element before heading */
.feature-card h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.8), rgba(167, 139, 250, 0.4));
    border-radius: 4px;
    flex-shrink: 0;
}

.feature-card p {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* Add a subtle number or badge (optional enhancement) */
.feature-card[data-number]::before {
    content: attr(data-number);
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 72px;
    font-weight: 900;
    color: rgba(139, 92, 246, 0.06);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

/* Subtle shimmer animation on hover */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.feature-card:hover {
    animation: none;
}

/* Add a subtle shine effect */
.feature-card:active {
    transform: translateY(-10px) scale(1.01);
    transition: all 0.1s ease;
}

.features-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-badge {
    font-family: manrope;
    background: rgba(150, 110, 0, 0.1);
    border: 1px solid rgb(117, 100, 0);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 200;
    color: rgb(255, 216, 87);
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

.section-cta button {
    margin: 10px;
}

.cta-tagline {
    font-size: 14px;
    color: var(--gray-med);
    margin-top: 15px;
}

.modules {
    padding: 100px 40px;
    background: var(--deep-black);
}

.modules-list {
    max-width: 1000px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.module-card {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.05), rgba(139, 92, 246, 0.25));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    box-shadow: 0 0 10px rgb(65, 24, 139);
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.section-body {
    max-width: 800px;
    color: #e0e0e0;
    font-weight: 200;
    line-height: 1.4;
}

.module-card:hover {
    background: rgba(139, 92, 246, 0.08);
    border-color: var(--purple-primary);
    transform: translateX(10px);
}

.module-card.locked {
    background: rgba(251, 191, 36, 0.05);
    border-color: rgba(251, 191, 36, 0.3);
}

.module-badge {
    font-size: 20px;
}

.module-content {
    flex: 1;
}

.module-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.module-subtitle {
    font-size: 14px;
    color: var(--purple-light);
    margin-bottom: 10px;
}

.module-desc {
    font-size: 15px;
    color: var(--gray-med);
    line-height: 1.6;
    margin-bottom: 15px;
}

.module-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--gray-dark);
}

.modules-tagline {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 30px;
}

.affiliate {
    padding: 100px 40px;
}

.calculator-container {
    max-width: 1100px;
    margin: 0 auto 40px;
}

.calculator-card {
    background: rgba(78, 53, 136, 0.08);
    border: 2px solid var(--purple-primary);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: inset 0px 0px 20px rgb(119, 14, 206);
}

.calculator-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.calculator-card>p {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 30px;
}

.slider-container {
    margin: 30px 0;
}

#referral-slider {
    width: 100%;
    height: 8px;
    background: rgba(139, 92, 246, 0.2);
    outline: none;
    border-radius: 10px;
    -webkit-appearance: none;
}

#referral-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 25px;
    height: 25px;
    background: var(--purple-primary);
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

#referral-slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: var(--purple-primary);
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
    color: var(--gray-med);
}

#slider-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--purple-light);
}

.earnings-display {
    margin: 40px 0;
    padding: 30px;
    background: rgba(74, 21, 143, 0.1);
    border-radius: 15px;
    border: 1px solid rgb(78, 37, 143);
    box-shadow: 0 0px 10px rgb(119, 14, 206);
}

.earning-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

.earning-label {
    font-weight: 600;
    font-size: 2rem;
    color: var(--gray-light);
}

.earning-value {
    font-size: 32px;
    font-weight: 200;
    color: rgb(176, 255, 176);
}

.calculator-note {
    font-size: 14px;
    color: var(--gray-med);
    font-style: italic;
}

.affiliate-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-col {
    display: flex;
    flex-direction: column;
    margin-left: 6rem;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-item span {
    color: var(--purple-primary);
    font-size: 30px;
    min-width: 20px;
}

.benefit-item p {
    margin-top: 11px;
    font-size: 1.2rem;
    color: var(--gray-light);
    line-height: 1.6;
}

.affiliate-note {
    text-align: center;
    font-size: 15px;
    color: var(--gray-med);
    margin: 30px 0;
}

.comparison {
    padding: 100px 40px;
    background: var(--deep-black);
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 60px;
    align-items: stretch;
    padding: 20px;
}

.old-system {
    background: transparent;
    border: 1px solid rgba(255, 70, 70, 0.2);
    border-radius: 24px;
    border-top: 0px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset, ;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.old-system::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(18, 4, 34, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.old-system:hover {
    transform: translateY(-4px);
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset, ;
    border-color: rgba(255, 70, 70, 0.3);
}

/* Emoji styling */
.old-system .emoji {
    font-size: 64px;
    display: block;
    text-align: center;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 12px rgba(255, 200, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Title styling */
.old-system h3 {
    color: #ffffff;
    font-size: 40px !important;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* List items */
.old-system ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.old-system li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px !important;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.old-system li:last-child {
    border-bottom: none;
}

.old-system li:hover {
    color: rgba(255, 255, 255, 0.95);
    padding-left: 8px;
}

/* X icon styling */
.old-system li::before {
    content: '✕';
    color: #ff4646;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 70, 70, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(255, 70, 70, 0.25);
    box-shadow: 0 2px 8px rgba(255, 70, 70, 0.2);
}

/* Divider styling */
.comparison-container>div:nth-child(2) {
    background: linear-gradient(180deg, transparent, var(--purple-primary), transparent);
    height: 100%;
    width: 1px;
    position: relative;
}

.comparison-container>div:nth-child(2)::before {
    content: 'VS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

/* Responsive design */
@media (max-width: 768px) {
    .comparison-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .comparison-container>div:nth-child(2) {
        display: none;
    }

    .old-system {
        padding: 36px 28px;
    }
}

.comparison-side {
    padding: 40px;
    border-radius: 20px;
    min-height: 400px;
}


.new-system {
    background: transparent;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 20px 60px rgba(139, 92, 246, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.new-system::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            transparent,
            rgba(139, 92, 246, 0.5),
            rgba(99, 102, 241, 0.5),
            transparent);
    opacity: 0.6;
}

.new-system::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.new-system:hover {
    transform: translateY(-4px);
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 25px 70px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

/* Icon styling */
.new-system .emoji {
    font-size: 64px;
    display: block;
    text-align: center;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.4));
    animation: float 3s ease-in-out infinite;
}

/* Title styling */
.new-system h3 {
    color: #ffffff;
    font-size: 40px !important;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* List items */
.new-system ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.new-system li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px !important;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.new-system li:last-child {
    border-bottom: none;
}

.new-system li:hover {
    color: rgba(255, 255, 255, 0.95);
    padding-left: 8px;
}

/* Checkmark icon styling */
.new-system li::before {
    content: '✓';
    color: #10b981;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.25);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.comparison-icon>img {
    margin-top: -3rem;
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.comparison-icon {
    border-radius: 100%;
    width: 450px;
    height: 450px;
    background: radial-gradient(ellipse at center, rgba(255, 31, 31, 0.2) 0%, transparent 65%);
}

.old-system {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.new-system>.comparison-icon {
    background: radial-gradient(ellipse at center, rgba(128, 31, 255, 0.2) 0%, transparent 65%);
}

.comparison-icon {
    font-size: 64px;
    text-align: center;
    margin-bottom: 20px;
}

.comparison-side h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
}

.comparison-side ul {
    list-style: none;
}

.comparison-side li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin: 15px 0;
    font-size: 15px;
    line-height: 1.6;
}

.comparison-side .icon {
    font-size: 18px;
    min-width: 20px;
}

.comparison-tagline {
    text-align: center;
    font-size: 18px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 30px;
}

.who-for {
    padding: 100px 40px;
}

.who-for-grid {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.who-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.who-card:hover {
    transform: translateY(-10px);
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--purple-primary);
}

.who-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.who-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--purple-light);
}

.who-card p {
    font-size: 17px;
    color: var(--gray-light);
    line-height: 1.6;
}

.who-tagline {
    text-align: center;
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee {
    padding: 100px 40px;
    background: var(--deep-black);
}

.guarantee-card {
    max-width: 1000px;
    margin: 0 auto 60px;
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 32px;
    padding: 64px 56px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 30px 90px rgba(139, 92, 246, 0.25);
    animation: subtle-glow 4s ease-in-out infinite;
}

/* Animated border gradient */
.guarantee-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg,
            rgba(139, 92, 246, 0.8) 0%,
            rgba(99, 102, 241, 0.6) 25%,
            rgba(236, 72, 153, 0.6) 50%,
            rgba(99, 102, 241, 0.6) 75%,
            rgba(139, 92, 246, 0.8) 100%);
    border-radius: 32px;
    z-index: -1;
    animation: border-rotate 6s linear infinite;
    background-size: 300% 300%;
}

@keyframes border-rotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes subtle-glow {

    0%,
    100% {
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.6),
            0 0 0 1px rgba(255, 255, 255, 0.08) inset,
            0 30px 90px rgba(139, 92, 246, 0.25);
    }

    50% {
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.6),
            0 0 0 1px rgba(255, 255, 255, 0.1) inset,
            0 30px 90px rgba(139, 92, 246, 0.35);
    }
}

/* Top radial glow */
.guarantee-card::after {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Main heading */
.guarantee-card h3 {
    font-size: 52px;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, rgba(139, 92, 246, 1) 50%, rgba(236, 72, 153, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
    position: relative;
    z-index: 1;
    animation: title-shine 3s ease-in-out infinite;
}

@keyframes title-shine {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.2);
    }
}

/* Subtitle */
.guarantee-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: rgba(139, 92, 246, 1);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 12px rgba(139, 92, 246, 0.4);
    position: relative;
    z-index: 1;
}

/* Main intro paragraph */
.guarantee-intro {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.8;
    text-align: center;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Regular text */
.guarantee-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Section headings */
.guarantee-heading {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 40px 0 20px;
    position: relative;
    padding-left: 20px;
    z-index: 1;
}

.guarantee-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 1) 0%, rgba(236, 72, 153, 1) 100%);
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
}

/* Checklist */
.guarantee-list {
    list-style: none;
    margin: 24px 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.guarantee-list li {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin: 16px 0;
    padding: 16px 20px 16px 56px;
    position: relative;
    background: rgba(139, 92, 246, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    line-height: 1.6;
}

.guarantee-list li:hover {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.4);
    padding-left: 60px;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.2);
}

/* Checkmark icon */
.guarantee-list li::before {
    content: '✓';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #10b981;
    font-size: 20px;
    font-weight: bold;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

/* Gold promise text */
.guarantee-promise {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 40px 0;
    text-align: center;
    padding: 24px;
    border-radius: 16px;
    background-color: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.3);
    box-shadow:
        0 4px 20px rgba(251, 191, 36, 0.15),
        0 0 40px rgba(251, 191, 36, 0.1) inset;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
    animation: gold-shimmer 2s ease-in-out infinite;
}

@keyframes gold-shimmer {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3);
    }
}

/* CTA Button */
.guarantee-card button {
    display: block;
    margin: 40px auto 0;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(139, 92, 246, 1) 0%, rgba(99, 102, 241, 1) 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow:
        0 8px 24px rgba(139, 92, 246, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s ease;
}

.guarantee-card button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.guarantee-card button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 12px 32px rgba(139, 92, 246, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.guarantee-card button:hover::before {
    opacity: 1;
}

.guarantee-card button:active {
    transform: translateY(0) scale(0.98);
}

/* Responsive design */
@media (max-width: 768px) {
    .guarantee-card {
        padding: 48px 32px;
        border-radius: 24px;
    }

    .guarantee-card h3 {
        font-size: 32px;
    }

    .guarantee-subtitle {
        font-size: 18px;
    }

    .guarantee-intro {
        font-size: 17px;
    }

    .guarantee-text {
        font-size: 15px;
    }

    .guarantee-list li {
        padding: 14px 16px 14px 52px;
        font-size: 16px;
    }

    .guarantee-promise {
        font-size: 18px;
        padding: 20px;
    }

    .guarantee-card button {
        padding: 16px 40px;
        font-size: 17px;
    }
}

.guarantee-trust {
    text-align: center;
    font-size: 16px;
    color: var(--gray-med);
    margin-bottom: 30px;
}

.results {
    padding: 100px 40px;
}

.results-carousel {
    max-width: 1400px;
    margin: 0 auto 40px;
    overflow: hidden;
}

.results-track {
    display: flex;
    gap: 20px;
    animation: scroll-carousel 20s linear infinite;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.result-card {
    min-width: 350px;
    height: 450px;
    background: #181414;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 10px rgb(76, 30, 163);
}

.result-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0f0f11;
}

.result-placeholder p {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.result-placeholder span {
    font-size: 14px;
    color: var(--gray-med);
}

.results-note {
    text-align: center;
    font-size: 16px;
    color: var(--gray-light);
    margin: 30px auto;
    max-width: 800px;
}

.results-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.results-tagline {
    text-align: center;
    font-size: 20px;
    color: var(--gold);
    font-weight: 600;
    margin: 30px 0;
}

.results-cta-heading {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

.timeline {
    padding: 100px 40px;
    background: var(--deep-black);
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto 50px;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--purple-primary), transparent);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin: 50px 0;
    position: relative;
}

.timeline-badge {
    min-width: 80px;
    height: 80px;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid var(--purple-primary);
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding: 25px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--purple-light);
}

.timeline-content p {
    font-size: 15px;
    color: var(--gray-med);
    line-height: 1.7;
}

.timeline-final {
    text-align: center;
    font-size: 20px;
    color: var(--gold);
    font-weight: 600;
    max-width: 800px;
    margin: 40px auto;
}

.pricing {
    padding: 100px 40px;
}

.pricing-tag {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-tag h2 {
    font-size: 65px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--purple-light), var(--purple-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.pricing-tag p {
    font-size: 18px;
    color: var(--purple-light);
}

.pricing-intro {
    text-align: center;
    font-size: 16px;
    color: var(--gray-med);
    max-width: 700px;
    margin: 0 auto 50px;
}

.pricing-card {
    max-width: 750px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(22, 8, 36, 0.98) 0%, rgb(12, 1, 26) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 32px;
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 35px 100px rgba(139, 92, 246, 0.3);
    animation: card-glow 4s ease-in-out infinite;
}

@keyframes card-glow {

    0%,
    100% {
        box-shadow:
            0 25px 70px rgba(0, 0, 0, 0.6),
            0 0 0 1px rgba(255, 255, 255, 0.1) inset,
            0 35px 100px rgba(139, 92, 246, 0.3);
    }

    50% {
        box-shadow:
            0 25px 70px rgba(0, 0, 0, 0.6),
            0 0 0 1px rgba(255, 255, 255, 0.12) inset,
            0 35px 100px rgba(139, 92, 246, 0.4);
    }
}

/* Animated gradient border */
.pricing-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg,
            rgba(139, 92, 246, 0.9) 0%,
            rgba(99, 102, 241, 0.7) 25%,
            rgba(16, 185, 129, 0.7) 50%,
            rgba(99, 102, 241, 0.7) 75%,
            rgba(139, 92, 246, 0.9) 100%);
    border-radius: 32px;
    z-index: -1;
    animation: border-spin 8s linear infinite;
    background-size: 400% 400%;
}

@keyframes border-spin {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Radial glow overlay */
.pricing-card::after {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: glow-breathe 4s ease-in-out infinite;
}

@keyframes glow-breathe {

    0%,
    100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

/* Heading with icon */
.pricing-card h3 {
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 21px;
    color: var(--purple-light);
    text-align: center;
    z-index: 1;
    gap: 12px;
    letter-spacing: -0.5px;
}

@keyframes icon-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* List styling */
.pricing-list {
    list-style: none;
    margin-bottom: 48px;
    padding: 0;
    position: relative;
    z-index: 1;
}

.pricing-list li {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    padding: 10px 24px 18px 60px;
    position: relative;
    border-radius: 14px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.6;
}

.badge>img {
    height: 30px;
}

.separator {
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(164, 85, 255, 0.2), transparent);
    margin: 2rem 0;
}

.pricing-list li:hover {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.35);
    padding-left: 64px;
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.2);
}

/* Checkmark icons */
.pricing-list li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

/* CTA Button */
.pricing-card button,
.pricing-card .cta-button {
    display: block;
    width: 100%;
    max-width: 680px;
    margin: 0 auto 32px;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, rgb(91, 43, 204) 0%, rgb(86, 22, 170) 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow:
        0 10px 30px rgba(139, 92, 246, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: button-pulse 3s ease-in-out infinite;
}

@keyframes button-pulse {

    0%,
    100% {
        box-shadow:
            0 10px 30px rgba(139, 92, 246, 0.5),
            0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    }

    50% {
        box-shadow:
            0 12px 40px rgba(139, 92, 246, 0.6),
            0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    }
}

.pricing-card button::before,
.pricing-card .cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card button:hover,
.pricing-card .cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 16px 50px rgba(139, 92, 246, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset,
        0 0 80px rgba(139, 92, 246, 0.3);
}

.pricing-card button:hover::before,
.pricing-card .cta-button:hover::before {
    opacity: 1;
}

.pricing-card button:active,
.pricing-card .cta-button:active {
    transform: translateY(-1px) scale(0.98);
}

/* Secure text */
.pricing-secure {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 28px 0 24px;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Payment badges */
.payment-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
    position: relative;
    z-index: 1;
}

.badge {
    background: rgba(15, 4, 34, 0.8) !important;
    border: 1.5px solid rgba(139, 92, 246, 0.3);
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.badge:hover {
    background: rgba(40, 40, 55, 0.9);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.25);
}

/* Icon styling for badges */
.badge::before {
    font-size: 18px;
}

/* Responsive design */
@media (max-width: 768px) {
    .pricing-card {
        padding: 44px 32px;
        border-radius: 24px;
    }

    .pricing-card h3 {
        font-size: 26px;
        margin-bottom: 32px;
    }

    .pricing-list li {
        font-size: 16px;
        padding: 16px 20px 16px 56px;
    }

    .pricing-card button,
    .pricing-card .cta-button {
        font-size: 18px;
        padding: 18px 36px;
    }

    .badge {
        padding: 10px 20px;
        font-size: 14px;
    }
}

.pricing-footer {
    text-align: center;
    font-size: 18px;
    color: var(--gold);
    font-weight: 600;
    margin-top: 40px;
}

.faq {
    padding: 100px 40px;
    background: var(--deep-black);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    margin: 20px 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--purple-primary);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 18px;
    color: var(--white);
    flex: 1;
}

.faq-toggle {
    font-size: 24px;
    color: var(--purple-primary);
    font-weight: 700;
    min-width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--gray-med);
    line-height: 1.7;
    margin: 10px 0;
}

.final-cta {
    padding: 100px 40px;
}

.urgency-strip-final {
    text-align: center;
    padding: 15px;
    background: linear-gradient(90deg, var(--purple-dark), var(--purple-primary));
    border-radius: 50px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
}

.final-title {
    font-size: 6rem;
    text-align: center;
    margin-bottom: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 800;
}

.final-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    text-align: center;
    color: var(--gray-light);
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Main comparison grid */
.final-comparison {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    padding: 20px;
}

/* Base card styles - matching your comparison boxes */
.final-side {
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Top gradient border */
.final-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            transparent,
            rgba(139, 92, 246, 0.5),
            rgba(99, 102, 241, 0.5),
            transparent);
    opacity: 0.6;
}

/* Radial glow overlay */
.final-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* DON'T JOIN side - red theme */
.final-side.dont {
    border-color: rgba(255, 70, 70, 0.3);
}

.final-side.dont::before {
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 70, 70, 0.5),
            rgba(255, 100, 100, 0.5),
            transparent);
}

.final-side.dont::after {
    background: radial-gradient(circle at 50% 0%, rgba(255, 70, 70, 0.08) 0%, transparent 60%);
}

.final-side.dont:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 70, 70, 0.4);
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 25px 70px rgba(255, 70, 70, 0.15);
}

/* DO JOIN side - purple/green theme */
.final-side.do {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 20px 60px rgba(139, 92, 246, 0.2);
}

.final-side.do::before {
    background: linear-gradient(90deg,
            transparent,
            rgba(139, 92, 246, 0.6),
            rgba(99, 102, 241, 0.6),
            transparent);
}

.final-side.do:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 25px 70px rgba(139, 92, 246, 0.25);
}

.salc {
    text-align: center;
    margin-top: -1rem;
    margin-bottom: 1rem;
    font-size: 20px;
    color: rgb(187, 187, 187)
}

/* Heading styles */
.final-side h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    color: #ffffff;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* List styles */
.final-side ul {
    list-style: none;
    margin-bottom: 32px;
    padding: 0;
    position: relative;
    z-index: 1;
}

.final-side li {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    padding: 16px 0 16px 48px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.unlockk {
    margin-left: 1.4rem;
    color: var(--purple-light)
}

.final-side li:last-child {
    border-bottom: none;
}

.final-side li:hover {
    color: rgba(255, 255, 255, 0.95);
    padding-left: 52px;
}

/* Red X icons for DON'T side */
.final-side.dont li::before {
    content: '✕';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff4646;
    font-size: 20px;
    font-weight: bold;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 70, 70, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(255, 70, 70, 0.25);
    box-shadow: 0 2px 8px rgba(255, 70, 70, 0.2);
}

/* Green checkmarks for DO side */
.final-side.do li::before {
    content: '✓';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #10b981;
    font-size: 20px;
    font-weight: bold;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.25);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

/* Quote section */
.final-quote {
    font-size: 15px;
    font-style: italic;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    margin-top: 8px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* CTA Card */
.final-cta-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgb(12, 4, 27) 0%, rgb(6, 1, 14) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 28px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 30px 90px rgba(139, 92, 246, 0.25);
}

/* Animated gradient border for CTA */
.final-cta-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg,
            rgba(139, 92, 246, 0.8) 0%,
            rgba(99, 102, 241, 0.6) 50%,
            rgba(139, 92, 246, 0.8) 100%);
    border-radius: 28px;
    z-index: -1;
    animation: border-glow 4s linear infinite;
    background-size: 200% 200%;
}

@keyframes border-glow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Radial glow for CTA */
.final-cta-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

/* CTA Button inside card */
.final-cta-card button,
.final-cta-card .cta-button {
    display: inline-block;
    margin: 24px auto;
    padding: 20px 48px;
    font-size: 16px !important;
    font-weight: 500;
    color: #ffffff;
    background: linear-gradient(135deg, rgb(108, 45, 209) 0%, rgb(62, 20, 158) 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow:
        0 0px 10px rgba(88, 38, 204, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.final-cta-card button::before,
.final-cta-card .cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.final-cta-card button:hover,
.final-cta-card .cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 0px 10px rgba(139, 92, 246, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset,
        0 0 20px rgba(139, 92, 246, 0.3);
}

.final-cta-card button:hover::before,
.final-cta-card .cta-button:hover::before {
    opacity: 1;
}

/* Price text */
.final-price {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin: 24px 0;
    position: relative;
    z-index: 1;
}

/* Payment badges in CTA card */
.final-cta-card .payment-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
    position: relative;
    z-index: 1;
}

.final-cta-card .badge {
    background: rgba(30, 30, 45, 0.8);
    border: 1.5px solid rgba(139, 92, 246, 0.3);
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.final-cta-card .badge:hover {
    background: rgba(40, 40, 55, 0.9);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.25);
}

/* Responsive design */
@media (max-width: 768px) {
    .final-comparison {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 16px;
    }

    .final-side {
        padding: 40px 32px;
    }

    .final-side h3 {
        font-size: 24px;
    }

    .final-side li {
        font-size: 15px;
        padding: 14px 0 14px 44px;
    }

    .final-cta-card {
        padding: 40px 28px;
    }

    .final-cta-card button,
    .final-cta-card .cta-button {
        padding: 18px 40px;
        font-size: 17px;
    }
}

.final-tagline {
    text-align: center;
    font-size: 20px;
    color: var(--gold);
    font-weight: 600;
    margin-top: 50px;
}

.nav-logo>h2 {
    width: 0;
    height: 1;
}

h2>img {
    width: 50px;
    margin: 0;
    padding: 0;
    margin-bottom: -1rem;
}

.footer {
    padding: 80px 40px 40px;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

/* Top glow effect */
.footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(139, 92, 246, 0.6) 25%,
            rgba(99, 102, 241, 0.6) 50%,
            rgba(139, 92, 246, 0.6) 75%,
            transparent);
    animation: border-shimmer 4s linear infinite;
    background-size: 200% 100%;
}

@keyframes border-shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Radial glow from top */
.footer::after {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Header section */
.footer-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.lt {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.t2wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.t2 {
    max-width: 500px;
    color: #a0a0a0 !important;
    margin-top: -1rem;
}

.lt>img {
    height: 50px;
    margin-top: -10px;
}

/* Logo styling */
.footer-logo h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
    text-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
    animation: logo-glow 3s ease-in-out infinite;
}

@keyframes logo-glow {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.2);
    }
}

/* Stats line */
.footer-stats {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    font-weight: 500;
}

.footer-stats span {
    margin: 0 8px;
    color: rgba(139, 92, 246, 0.8);
}

/* Tagline */
.footer-tagline {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    font-weight: 500;
}

/* Secure text */
.footer-secure {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-secure::before {
    content: '🔒';
    font-size: 16px;
}

.payment-badges {
    margin-top: -2rem;
    padding-bottom: 1rem;
}

/* Payment badges in footer */
.footer-header .payment-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.footer-header .badge {
    background: rgba(30, 30, 45, 0.6);
    border: 1.5px solid rgba(139, 92, 246, 0.25);
    padding: 10px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.footer-header .badge:hover {
    background: rgba(40, 40, 55, 0.8);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.2);
}

/* Footer links grid */
.footer-links {
    max-width: 1100px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

/* Column headings */
.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: rgba(139, 92, 246, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 1) 0%, transparent 100%);
}

/* Links */
.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin: 14px 0;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-col a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: rgba(139, 92, 246, 1);
    transition: width 0.3s ease;
}

.footer-col a:hover {
    color: rgba(255, 255, 255, 0.95);
    padding-left: 16px;
}

.footer-col a:hover::before {
    width: 8px;
}

/* Disclaimer section */
.footer-disclaimer {
    max-width: 900px;
    margin: 50px auto 30px;
    padding-top: 40px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
    z-index: 1;
}

.footer-disclaimer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(139, 92, 246, 0.5),
            transparent);
}

.footer-disclaimer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* Copyright */
.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 24px;
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Responsive design */
@media (max-width: 768px) {
    .footer {
        padding: 60px 24px 30px;
    }

    .footer-logo h2 {
        font-size: 32px;
    }

    .footer-stats {
        font-size: 14px;
    }

    .footer-tagline {
        font-size: 16px;
    }

    .footer-links {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 40px;
        margin: 50px auto;
    }

    .footer-col h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-col a {
        font-size: 14px;
        margin: 12px 0;
    }

    .footer-header .badge {
        padding: 8px 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col a::before {
        display: none;
    }

    .footer-col a:hover {
        padding-left: 0;
    }
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    z-index: 999;
    border-top: 2px solid var(--purple-primary);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.sticky-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.sticky-button {
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
    white-space: nowrap;
}

.sticky-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
}

.live-notification {
    position: fixed;
    bottom: 100px;
    left: 20px;
    max-width: 350px;
    background: rgba(2, 15, 3, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid green;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 0px 10px rgba(17, 255, 29, 0.315);
    z-index: 998;
    opacity: 0;
    transform: translateX(-400px);
    transition: all 0.5s ease;
}

.nn{
    background: linear-gradient(135deg, lightgreen, green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-container {
    padding-bottom: 15px;
}

.nav-logo>h2 {
    display: inline;
}

.nav-logo>h2>img {
    display: inline;
}

.nav-logo>h3 {
    display: inline;
    margin-left: 0.5rem;
}

.banner-text {
    color: white !important;
}

.live-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.notification-icon {
    font-size: 32px;
    min-width: 40px;
}

.notification-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.notification-text strong {
    font-size: 15px;
    color: var(--white);
}

.notification-text span {
    font-size: 13px;
    color: var(--gray-med);
}

.notification-time {
    font-size: 12px;
    color: var(--purple-light);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .hero {
        padding: 80px 20px 40px;
    }

    .features,
    .modules,
    .affiliate,
    .comparison,
    .who-for,
    .guarantee,
    .results,
    .timeline,
    .pricing,
    .faq,
    .final-cta,
    .footer {
        padding: 60px 20px;
    }

    .features-grid,
    .modules-list,
    .affiliate-benefits,
    .who-for-grid,
    .final-comparison {
        grid-template-columns: 1fr;
    }

    .comparison-container {
        grid-template-columns: 1fr;
    }

    .comparison-divider {
        height: 2px;
        width: 100%;
        background: linear-gradient(90deg, transparent, var(--purple-primary), transparent);
    }

    .timeline-container::before {
        left: 20px;
    }

    .timeline-badge {
        min-width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .sticky-content {
        flex-direction: column;
        gap: 10px;
    }

    .sticky-text {
        font-size: 14px;
        text-align: center;
    }

    .sticky-button {
        width: 100%;
        padding: 14px;
    }

    .live-notification {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }
}



















/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .hero-title>span {
        font-size: 5rem;
    }

    .section-title {
        font-size: 4.5rem;
    }

    .nav-container {
        padding: 15px 30px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {

    /* Navigation */
    .nav-links {
        display: none;
    }

    .nav-container {
        padding: 12px 20px;
    }

    .nav-logo h2 {
        font-size: 24px;
    }

    .nav-cta {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 80px 24px 50px;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 3rem;
        margin-top: 3rem;
    }

    .hero-title>span {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .hero-body {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        padding: 14px 30px;
        font-size: 15px;
    }

    /* Section Headers */
    .section-title {
        font-size: 3rem;
        line-height: 1.1;
    }

    .section-subtitle {
        font-size: 17px;
    }

    .section-body {
        font-size: 15px;
    }

    /* All Sections Padding */
    .features,
    .modules,
    .affiliate,
    .comparison,
    .who-for,
    .guarantee,
    .results,
    .timeline,
    .pricing,
    .faq,
    .final-cta,
    .footer {
        padding: 60px 20px;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        padding: 36px 28px;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 48px;
    }

    .feature-card h3 {
        font-size: 21px;
    }

    .feature-card p {
        font-size: 14.5px;
    }

    /* Modules */
    .modules-list {
        gap: 16px;
    }

    .module-card {
        padding: 20px;
        gap: 16px;
    }

    .module-content h3 {
        font-size: 18px;
    }

    .module-desc {
        font-size: 14px;
    }

    /* Affiliate Calculator */
    .calculator-card {
        padding: 32px 24px;
    }

    .calculator-card h3 {
        font-size: 24px;
    }

    .earning-value {
        font-size: 28px;
    }

    .affiliate-benefits {
        grid-template-columns: 1fr;
    }

    .benefit-col {
        margin-left: 0;
    }

    /* Comparison */
    .comparison-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .comparison-divider {
        display: none;
    }

    .comparison-side {
        padding: 32px 24px;
    }

    .comparison-icon {
        font-size: 52px;
    }

    .comparison-side h3 {
        font-size: 22px;
    }

    .comparison-side li {
        font-size: 14px;
    }

    /* Who For Cards */
    .who-for-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .who-card {
        padding: 32px 24px;
    }

    .who-icon {
        font-size: 56px;
    }

    .who-card h3 {
        font-size: 20px;
    }

    .who-card p {
        font-size: 14px;
    }

    /* Guarantee Card */
    .guarantee-card {
        padding: 40px 28px;
    }

    .guarantee-card h3 {
        font-size: 28px;
    }

    .guarantee-subtitle {
        font-size: 17px;
    }

    .guarantee-intro,
    .guarantee-text {
        font-size: 15px;
    }

    .guarantee-list li {
        font-size: 15px;
    }

    /* Results Carousel */
    .result-card {
        min-width: 280px;
        height: 380px;
    }

    /* Timeline */
    .timeline-container::before {
        left: 30px;
    }

    .timeline-item {
        gap: 20px;
    }

    .timeline-badge {
        min-width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content h3 {
        font-size: 18px;
    }

    .timeline-content p {
        font-size: 14px;
    }

    /* Pricing */
    .pricing-tag h2 {
        font-size: 32px;
    }

    .pricing-tag p {
        font-size: 16px;
    }

    .pricing-card {
        padding: 40px 28px;
    }

    .pricing-card h3 {
        font-size: 22px;
    }

    .pricing-list li {
        font-size: 15px;
    }

    /* FAQ */
    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    /* Final CTA */
    .final-comparison {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .final-side {
        padding: 32px 24px;
    }

    .final-side h3 {
        font-size: 20px;
    }

    .final-side li {
        font-size: 14px;
    }

    .final-cta-card {
        padding: 32px 24px;
    }

    .final-price {
        font-size: 16px;
    }

    /* Footer */
    .footer {
        padding: 60px 20px 30px;
    }

    .footer-logo h2 {
        font-size: 28px;
    }

    .footer-links {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 32px;
    }

    .footer-col h4 {
        font-size: 16px;
    }

    .footer-col a {
        font-size: 13px;
    }

    /* Sticky CTA */
    .sticky-content {
        flex-direction: column;
        gap: 12px;
    }

    .sticky-text {
        font-size: 15px;
        text-align: center;
    }

    .sticky-button {
        width: 100%;
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Live Notification */
    .live-notification {
        left: 10px;
        right: 10px;
        bottom: 100px;
        max-width: calc(100% - 20px);
    }

    .notification-content {
        gap: 12px;
    }

    .notification-icon {
        font-size: 28px;
        min-width: 36px;
    }

    .notification-text strong {
        font-size: 14px;
    }

    .notification-text span {
        font-size: 12px;
    }

    /* Stats Badges */
    .features-stats,
    .results-stats {
        gap: 12px;
    }

    .stat-badge {
        padding: 8px 18px;
        font-size: 12px;
    }

    /* Payment Badges */
    .payment-badges {
        gap: 10px;
    }

    .badge {
        padding: 8px 16px;
        font-size: 12px;
    }

    /* Urgency Strip */
    .urgency-strip {
        font-size: 12px;
        padding: 8px 16px;
    }

    .calculator-card {
        box-shadow: inset 0px 0px 5px rgb(119, 14, 206);
    }

    .earnings-display {
        padding-top: 5px;
        padding-bottom: 5px;
        line-height: 1 !important;
    }

    .section-cta {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -2rem;
    }

    section {
        padding-top: 0 !important;
    }

    .affiliate-benefits {
        gap: 0px;
    }

    .benefit-col {
        gap: 0;
    }

    .i400 {
        width: 250px !important;
    }

    .comparison-icon {
        width: 250px;
        height: 250px;
        margin-bottom: 0;
    }

    .old-system>h3 {
        margin-top: -2rem;
        margin-bottom: 0px;
    }

    .old-system>ul>li {
        padding-left: 0px;
        margin: 0px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .i280 {
        width: 150px !important;
        margin-top: -1rem !important;
        margin-right: -2rem;
    }

    .new-system>h3 {
        font-size: 2rem !important;
    }

    .old-system>h3 {
        font-size: 2rem !important;
    }

    .comparison {
        padding-left: 0;
        padding-right: 0;
    }

    .final-comparison {
        padding-left: 0;
        padding-right: 0;
    }

    .new-system>ul>li {
        padding-left: 0px;
        margin: 0px;
        padding-top: 15px;
        padding-bottom: 10px;
    }

    .new-system>h3 {
        margin-top: -2rem;
        margin-bottom: 0px;
    }

    .pcta{
        margin-top: -2rem !important;
    }

    @keyframes scroll-carousel {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-300%);
        }
    }

    .pricing-intro {
        font-size: 15px;
        margin-bottom: 0px;
    }

    .pricing-list>li {
        padding-bottom: 5px;
        padding-top: 5px;
        line-height: 1.5;
    }

    .pricing-list > li::before{
        font-size: 15px;
    }

    .pricing-card>.cta-primary {
        font-size: 15px;
        padding: 10px 20px;
    }

    .pricing-card{
        padding-bottom: 0px !important;
    }

    .pricing-secure{
        margin-top: -15px;
        margin-bottom: 5px;
    }

    .pricing-card > h3{
        margin-bottom: 15px;
    }

    .salc{
        line-height: 1;
        margin-top: 10;
        margin-bottom: 10px;
    }

    .separator{
        margin: 1rem auto;
    }

    .payment-badges {
        margin-top: 1rem;
        margin-bottom: 0;
    }

    .faq-grid {
        gap: 0px !important;
    }

    .faq-item {
        margin-top: -5px;
    }

    .pricing {
        padding-left: 15px;
        padding-right: 15px;
    }

    .urgency-strip-final {
        padding-left: 4px !important;
        padding-right: 4px !important;
        padding-top: 4px !important;
        padding-bottom: 4px !important;
    }

    .cta-primary.large.ext {
        padding-left: 5px;
        padding-right: 5px;
        padding-top: 5px;
        padding-bottom: 5px;
        font-size: 15px !important;
    }

    .smb {
        padding-top: 3px !important;
        padding-bottom: 3px !important;
        padding-right: 5px !important;
        padding-left: 5px !important;
    }

    .sticky-cta {
        padding-top: 8px;
    }

    .sticky-content {
        gap: 5px;
    }

    .navbar.scrolled {
        padding-bottom: 0;
        padding-top: 5px;
    }

    .nav-container {
        padding-top: 0;
    }

    .urgency-strip {
        padding-bottom: 13px;
        padding-top: 13px;
    }

    .live-notification {
        bottom: 95px !important;
    }

    .nav-logo>h2>img {
        width: 40px;
    }

    .nav-logo>h3{
        font-size: 16px;
        margin-left: 2px;
    }

    .nav-cta{
        margin-bottom: -12px;
    }

    .feature-icon{
        width: 50px !important;
        height: 50px !important;
        border-radius: 15px;
        font-size: 25px !important;
    }

    .feature-card{
        gap: 10px;
    }

    .features-grid{
        gap: 10px;
    }

    .live-notification{
        max-width: 250px;
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

    .notification-icon{
        font-size: 20px;
    }

    .notification-content{
        gap: 0px;
    }

    .notification-text{
        gap: 0px;
    }

    .nlh{
        line-height: 1.2;
    }

    .banner-text{
        margin-left: 0px;
        font-size: 15px;
        margin-bottom: -1rem;
    }

    .hero-img{
        width: 100%;
    }
}

.i400 {
    width: 400px;
}

.i280 {
    width: 280px;
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {

    /* Hero */
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
        margin-top: 2rem;
    }

    .hero-title>span {
        font-size: 2.6rem;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-body {
        font-size: 14px;
    }

    .hero-stats {
        font-size: 12px;
    }

    /* Section Titles */
    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .section-body {
        font-size: 14px;
    }

    /* Feature Cards */
    .feature-card {
        padding: 28px 20px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 42px;
    }

    .feature-card h3 {
        font-size: 19px;
    }

    .feature-card h3::before {
        display: none;
    }

    /* Module Cards */
    .module-card {
        flex-direction: column;
        text-align: center;
    }

    .module-meta {
        justify-content: center;
    }

    /* Calculator */
    .calculator-card {
        padding: 28px 20px;
    }

    .calculator-card h3 {
        font-size: 20px;
    }

    .earning-label {
        font-size: 16px;
    }

    .earning-value {
        font-size: 24px;
    }

    /* Comparison */
    .comparison-side {
        padding: 28px 20px;
    }

    .comparison-icon {
        font-size: 48px;
    }

    .comparison-side h3 {
        font-size: 20px;
    }

    .comparison-side li {
        font-size: 13px;
        padding-left: 40px;
    }

    /* Who Cards */
    .who-card {
        padding: 28px 20px;
    }

    .who-icon {
        font-size: 48px;
    }

    /* Guarantee */
    .guarantee-card {
        padding: 32px 20px;
    }

    .guarantee-card h3 {
        font-size: 24px;
    }

    .guarantee-subtitle {
        font-size: 16px;
    }

    .guarantee-intro,
    .guarantee-text {
        font-size: 14px;
    }

    .guarantee-heading {
        font-size: 17px;
    }

    .guarantee-list li {
        font-size: 14px;
    }

    .guarantee-promise {
        font-size: 16px;
    }

    /* Results */
    .result-card {
        min-width: 260px;
        height: 350px;
    }

    /* Timeline */
    .timeline-container::before {
        left: 20px;
    }

    .timeline-badge {
        min-width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .timeline-content {
        padding: 16px;
    }

    .timeline-content h3 {
        font-size: 17px;
    }

    .timeline-content p {
        font-size: 13px;
    }

    .timeline-final {
        font-size: 17px;
    }

    /* Pricing */
    .pricing-tag h2 {
        font-size: 26px;
    }

    .pricing-card {
        padding: 32px 20px;
    }

    .pricing-card h3 {
        font-size: 20px;
    }

    .pricing-list li {
        font-size: 14px;
    }

    /* FAQ */
    .faq-question {
        padding: 16px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 16px;
    }

    /* Final CTA */
    .urgency-strip-final {
        font-size: 13px;
        padding: 12px 16px;
    }

    .final-title {
        font-size: 24px;
    }

    .final-subtitle {
        font-size: 15px;
    }

    .final-side {
        padding: 28px 20px;
    }

    .final-side h3 {
        font-size: 19px;
    }

    .final-cta-card {
        padding: 28px 20px;
    }

    .final-cta-card button {
        font-size: 15px;
        padding: 16px 28px;
    }

    /* Footer */
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
    }

    .footer-col h4 {
        font-size: 15px;
    }

    .footer-col a {
        font-size: 13px;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Sticky CTA */
    .sticky-text {
        font-size: 13px;
    }

    .sticky-button {
        font-size: 13px;
        padding: 10px 20px;
    }

    /* Notification */
    .live-notification {
        bottom: 80px;
        padding: 12px;
    }
}

/* Very Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-title>span {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-primary,
    .cta-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .feature-card {
        padding: 24px 16px;
    }

    .guarantee-card,
    .pricing-card,
    .final-cta-card {
        padding: 28px 16px;
    }
}

/* Landscape Mode Optimizations */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 60px 24px 40px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        margin-top: 1.5rem;
    }

    .hero-title>span {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .hero-body {
        font-size: 14px;
        margin-bottom: 24px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {

    /* Increase touch targets */
    .nav-links a,
    .footer-col a,
    .faq-question {
        padding: 12px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    button,
    .cta-primary,
    .cta-secondary,
    .nav-cta {
        min-height: 44px;
    }

    /* Remove hover effects on touch devices */
    .feature-card:hover,
    .module-card:hover,
    .who-card:hover,
    .final-side:hover {
        transform: none;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    /* Optimize for retina displays */
    .feature-icon,
    .comparison-icon,
    .who-icon,
    .timeline-badge {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .urgency-strip,
    .sticky-cta,
    .live-notification,
    #scroll-progress,
    .cta-primary,
    .cta-secondary {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero,
    .features,
    .modules,
    section {
        page-break-inside: avoid;
    }
}

/* Starfield Background - Scrolls with page */
.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  animation: twinkle 3s infinite ease-in-out;
}

.star.small {
  width: 1px;
  height: 1px;
  opacity: 0.5;
}

.star.medium {
  width: 2px;
  height: 2px;
  opacity: 0.7;
}

.star.large {
  width: 3px;
  height: 3px;
  opacity: 0.9;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
