/* Agent Swarm - Dark Cyberpunk Sales Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a0f;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.3;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.4;
}

.highlight {
    color: #8b5cf6;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* Hello Bar - Position 1 */
.hello-bar {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 12px 0;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.hello-text {
    margin: 0 15px;
}

.scarcity-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Hero Section - Position 2 */
.hero {
    background: 
        radial-gradient(circle at center, rgba(139, 92, 246, 0.2) 0%, rgba(10, 10, 15, 0.6) 70%), 
        linear-gradient(135deg, rgba(10, 10, 15, 0.7) 0%, rgba(26, 26, 46, 0.7) 100%),        url('https://remotionlambda-useast1-y1y0k894hq.s3.amazonaws.com/websiteswarm/sites/agent-swarm-1764683964217/images/dark-cyberpu-9023.jpg');
    background-size: cover, cover, cover;
    background-position: center, center, center;
    background-attachment: scroll;
    background-repeat: no-repeat, no-repeat, no-repeat;
    padding: 40px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 60px);
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.animated-badge {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.purple-shape {
    width: 200px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 40px;
    position: relative;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
    animation: shapeAppear 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    opacity: 0;
    transform: scale(0);
}

.animated-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 15px;
}

.text-get, .text-ai {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: rotateY(-90deg);
}

.text-get {
    animation: textAppear 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1s forwards;
}

.text-ai {
    animation: textAppear 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 2s forwards;
}

@keyframes shapeAppear {
    0% {
        opacity: 0;
        transform: scale(0) rotateZ(-180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateZ(0deg);
    }
}

@keyframes textAppear {
    0% {
        opacity: 0;
        transform: rotateY(-90deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: rotateY(0deg) scale(1);
    }
}

.purple-shape::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7, #8b5cf6);
    border-radius: 42px;
    z-index: -1;
    animation: glow 3s ease-in-out infinite alternate;
    opacity: 0.6;
}

@keyframes glow {
    from { box-shadow: 0 0 30px rgba(139, 92, 246, 0.4); }
    to { box-shadow: 0 0 40px rgba(139, 92, 246, 0.8); }
}

.hero-headline {
    margin-bottom: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline {
    font-size: 1.3rem;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-subtext {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Buttons */
.cta-btn {
    display: inline-block;
    padding: 26px 48px;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 70px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-btn::before {
    display: none;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
}

.cta-btn.success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.cta-btn.warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.cta-btn.large {
    font-size: 1.4rem;
    padding: 22px 50px;
}

.cta-btn.massive {
    font-size: 1.6rem;
    padding: 25px 60px;
}

/* Section Divider Utility */
.section-divider {
    position: relative;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #8b5cf6 50%, transparent 100%);
    z-index: 10;
}

.section-divider::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #a855f7 50%, transparent 100%);
    z-index: 10;
}

/* Product Showcase - Position 3 */
.product-showcase {
    padding: 80px 0;
    background: 
        radial-gradient(2px 2px at 20px 30px, #8b5cf6, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(168, 85, 247, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #8b5cf6, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(139, 92, 246, 0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #a855f7, transparent),
        radial-gradient(1px 1px at 200px 60px, rgba(139, 92, 246, 0.8), transparent),
        radial-gradient(2px 2px at 250px 90px, #8b5cf6, transparent),
        radial-gradient(1px 1px at 300px 20px, rgba(168, 85, 247, 0.7), transparent),
        linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(26, 26, 46, 0.8) 50%, rgba(139, 92, 246, 0.1) 100%);
    background-repeat: repeat;
    background-size: 350px 200px, 350px 200px, 350px 200px, 350px 200px, 350px 200px, 350px 200px, 350px 200px, 350px 200px, 100% 100%;
    position: relative;
    overflow: hidden;
    animation: starsMove 20s linear infinite;
}

.product-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center, rgba(139, 92, 246, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes starsMove {
    0% { background-position: 0px 0px, 0px 0px, 0px 0px, 0px 0px, 0px 0px, 0px 0px, 0px 0px, 0px 0px, 0% 0%; }
    100% { background-position: 350px 200px, -350px -200px, 350px -200px, -350px 200px, 350px 200px, -350px -200px, 350px -200px, -350px 200px, 0% 0%; }
}

.product-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product-box {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    max-width: 200px;
    position: relative;
    overflow: hidden;
}

.product-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.product-box:hover::before {
    animation: shimmer 1.5s infinite;
    opacity: 1;
}

.product-box:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.product-box.featured {
    transform: scale(1.1);
    border-color: #8b5cf6;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

.product-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.product-box h3 {
    color: #8b5cf6;
    font-size: 1rem;
    margin: 0;
}

/* Logo and CTA Section - Position 4 */
.logo-cta {
    padding: 60px 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0f 0%, #12121a 50%, #0a0a0f 100%);
}

.brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2rem;
    font-weight: 700;
    color: #8b5cf6;
}

.logo-text {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price-display {
    text-align: center;
}

.price-large {
    font-size: 6rem;
    font-weight: 900;
    color: #ffd700;
    display: block;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.price-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.activate-main {
    font-size: 2rem !important;
    padding: 30px 70px !important;
    margin: 20px 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: visible;
}

.activate-main::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #10b981, #059669, #10b981, #059669);
    border-radius: 53px;
    z-index: -1;
    animation: activateGlow 2s ease-in-out infinite alternate;
    opacity: 0.6;
}

@keyframes activateGlow {
    from { 
        box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
        transform: scale(1);
    }
    to { 
        box-shadow: 0 0 50px rgba(16, 185, 129, 0.8);
        transform: scale(1.02);
    }
}

.payment-card-preview {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-card-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.payment-card-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

/* Revolution Section - Position 5 */
.revolution {
    padding: 80px 0;
    text-align: center;
}

.revolution-headline {
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.revolution-text {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Stats Section - Position 6 */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(16, 185, 129, 0.03) 50%, rgba(245, 158, 11, 0.03) 100%);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.02), transparent);
    animation: statsGlow 8s ease-in-out infinite;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.05));
    border-radius: 15px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::after {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.6);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #8b5cf6;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Urgency Banner - Position 7 */
.urgency-banner {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(10, 10, 15, 0.9));
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    position: relative;
    z-index: 10;
}

@keyframes urgencyPulse {
    0%, 100% { background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(10, 10, 15, 0.9)); }
    50% { background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(10, 10, 15, 0.8)); }
}

.urgency-content {
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.urgency-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Features Section - Position 8 */
.features {
    padding: 80px 0;
    background: 
        linear-gradient(rgba(139, 92, 246, 0.85), rgba(10, 10, 15, 0.9)),
        url('b3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mockup-image {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    border: 3px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mockup-image:hover {
    transform: scale(1.02);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
}

.features-list h3 {
    color: #8b5cf6;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.features-list ul {
    list-style: none;
    space-y: 15px;
}

.features-list li {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.features-list li:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('tick.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 15px;
    vertical-align: middle;
}

/* Guarantee Section - Position 9 */
.guarantee {
    padding: 80px 0;
    text-align: center;
    background: rgba(139, 92, 246, 0.05);
}

.guarantee-badge {
    margin-bottom: 30px;
}

.guarantee-badge-img {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
    transition: transform 0.3s ease;
}

.guarantee-badge-img:hover {
    transform: scale(1.05);
}

.guarantee-description {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Product Discovery Section - Position 10 */
.product-discovery {
    padding: 80px 0;
}

.discovery-headline {
    text-align: center;
    margin-bottom: 50px;
    color: #8b5cf6;
}

.discovery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stack-image {
    width: 100%;
    border-radius: 15px;
    border: 3px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stack-image:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
}

.discovery-text p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Mid CTA Section - Position 11 */
.mid-cta {
    padding: 60px 0;
    text-align: center;
    background: rgba(139, 92, 246, 0.05);
}

/* Comparison Table - Position 12 */
.comparison {
    padding: 80px 0;
}

.comparison h3 {
    text-align: center;
    margin-bottom: 40px;
    color: #8b5cf6;
}

.comparison-table {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
}

.comparison-header {
    background: rgba(139, 92, 246, 0.3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-header > div,
.comparison-row > div {
    padding: 20px;
    text-align: center;
}

.comparison-row:nth-child(even) {
    background: rgba(139, 92, 246, 0.05);
}

.feature-col {
    text-align: left !important;
    font-weight: 600;
}

.agent-swarm-col {
    color: #10b981;
    font-size: 1.5rem;
}

.others-col {
    color: #dc2626;
    font-size: 1.2rem;
}

/* Bonus Features - Position 13 */
.bonus-features {
    padding: 80px 0;
background-image: linear-gradient(rgba(30, 15, 60, 0.92), rgba(20, 10, 45, 0.95)), url('b3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.bonus-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.bonus-features h3 {
    text-align: center;
    margin-bottom: 40px;
    color: #8b5cf6;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
    border-radius: 10px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.6s ease;
}

.bonus-item:hover::before {
    left: 100%;
}

.bonus-item:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 92, 246, 0.6);
}

.bonus-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.bonus-text {
    font-weight: 600;
    color: #cccccc;
    font-size: 1.1rem;
}

/* Final CTA - Position 14 */
.final-cta {
    padding: 60px 0;
    text-align: center;
}

/* FAQ Section - Position 15 */
.faq {
    padding: 80px 0;
    background: rgba(139, 92, 246, 0.05);
}

.faq h3 {
    text-align: center;
    margin-bottom: 50px;
    color: #8b5cf6;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-item {
    background: rgba(139, 92, 246, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.faq-item h4 {
    color: #8b5cf6;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* Order Form Section */
.order-form {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.order-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.order-content h2 {
    color: #10b981;
    margin-bottom: 50px;
    font-size: 2.5rem;
    animation: neonGlow 2s ease-in-out infinite alternate;
}

.order-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
    background: rgba(139, 92, 246, 0.1);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.product-summary h3 {
    color: #8b5cf6;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.order-includes {
    list-style: none;
    text-align: left;
    padding: 0;
}

.order-includes li {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.pricing-summary {
    text-align: center;
}

.regular-price {
    font-size: 1.2rem;
    color: #888888;
    margin-bottom: 10px;
}

.crossed {
    text-decoration: line-through;
    color: #dc2626;
}

.founder-price {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price-big {
    font-size: 3rem;
    font-weight: 900;
    color: #10b981;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.savings {
    font-size: 1.3rem;
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 30px;
}

.save-amount {
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.payment-options {
    margin: 30px 0;
}

.payment-btn {
    display: block;
    width: 100%;
    padding: 18px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.payment-btn.unlock-ai {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: white;
    font-size: 1.4rem;
    padding: 22px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.payment-card-preview {
    margin-top: 20px;
    text-align: center;
}

.payment-card {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.secure-notice,
.guarantee-notice {
    font-size: 0.9rem;
    color: #10b981;
    margin: 10px 0;
}

.urgency-footer {
    background: rgba(220, 38, 38, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(220, 38, 38, 0.3);
}

.urgency-footer p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.remaining-spots {
    color: #dc2626;
    font-weight: 900;
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

/* Last Chance Section - Position 16 */
.last-chance {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
}

.last-chance h2 {
    color: #8b5cf6;
    margin-bottom: 20px;
}

.last-chance p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
}

/* Footer - Position 17 */
.footer {
    background: #000000;
    padding: 60px 0 30px;
    text-align: center;
    border-top: 2px solid rgba(139, 92, 246, 0.3);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.disclaimer {
    font-size: 0.9rem;
    color: #888888;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.copyright {
    font-size: 0.8rem;
    color: #666666;
}

.copyright a {
    color: #8b5cf6;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

/* Scroll-triggered animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Number animation */
@keyframes countUp {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-number {
    animation: countUp 2s ease-out;
}

/* Enhanced hover effects */
.product-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .product-stack {
        gap: 20px;
    }
    
    .product-box {
        max-width: 160px;
    }
    
    .brand-section {
        gap: 20px;
    }
    
    .price-large {
        font-size: 3rem;
    }
    
    .features-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .discovery-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-header > div,
    .comparison-row > div {
        padding: 15px;
        border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .cta-btn.large {
        padding: 18px 35px;
        font-size: 1.2rem;
    }
    
    .cta-btn.massive {
        padding: 20px 40px;
        font-size: 1.3rem;
    }
    
    .order-summary {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .order-content h2 {
        font-size: 2rem;
    }
    
    .price-big {
        font-size: 2.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: rgba(139, 92, 246, 0.3);
    color: #ffffff;
}

/* Focus styles for accessibility */
.cta-btn:focus {
    outline: 3px solid rgba(139, 92, 246, 0.5);
    outline-offset: 2px;
}

/* Image styling */
img {
    transition: opacity 0.3s ease;
    max-width: 100%;
    height: auto;
}

img:not([src]) {
    opacity: 0;
}

.logo-image {
    border-radius: 10px;
    box-shadow: none;
}

.dashboard-mockup, .product-stack-image {
    border-radius: 15px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.dashboard-mockup:hover, .product-stack-image:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
}

.product-ecover, .hardware-pin {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.product-ecover:hover, .hardware-pin:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}


.guarantee-seal {
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

/* Additional animations */
.stat-number {
    animation: countUp 2s ease-out;
}

/* Scroll reveal animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-box:nth-child(1) { animation-delay: 0.1s; }
.product-box:nth-child(2) { animation-delay: 0.2s; }
.product-box:nth-child(3) { animation-delay: 0.3s; }
.product-box:nth-child(4) { animation-delay: 0.4s; }
.product-box:nth-child(5) { animation-delay: 0.5s; }

/* Floating animation for featured product */
.product-box.featured {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: scale(1.1) translateY(0px); }
    50% { transform: scale(1.1) translateY(-10px); }
}

/* Pulse animation for urgency elements */
.urgency-banner {
    animation: urgencyPulse 4s ease-in-out infinite;
}

.last-chance h2 {
    animation: neonGlow 2s ease-in-out infinite alternate;
}

@keyframes neonGlow {
    from {
        text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(139, 92, 246, 0.8), 0 0 30px rgba(139, 92, 246, 0.6);
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes statsGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Section dividers */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
}

.urgency-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

/* Enhanced CTA button effects */
.cta-btn {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-btn:hover {
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-btn.success {
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-btn.success:hover {
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-btn.warning {
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-btn.warning:hover {
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Sticky Navigation Enhancement */
.hello-bar.scrolled {
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95), rgba(255, 237, 78, 0.95));
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.4);
}

/* Enhanced particle effects */
.hero::before {
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateX(-10px) translateY(-10px); opacity: 0.3; }
    50% { transform: translateX(10px) translateY(10px); opacity: 0.6; }
    100% { transform: translateX(-10px) translateY(-10px); opacity: 0.3; }
}

/* Glassmorphism effect for order form */
.order-summary {
    backdrop-filter: blur(15px);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Removed conflicting hero background rule to allow parallax image to show */

/* Removed bgShift animation as it's no longer needed */

/* Floating particles CSS for browsers that don't have GSAP */
.floating-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #8b5cf6, #06b6d4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
    animation: floatUp 15s linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Enhanced glow effects */
.cta-btn.primary {
    position: relative;
    overflow: hidden;
}

.cta-btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-btn.primary:hover::before {
    left: 100%;
}

/* Enhanced product box hover effects */
.product-box {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

/* Smooth scaling for images */
.product-box img, .features-image img, .footer-logo-img {
    transition: transform 0.3s ease;
}

.product-box:hover img {
    transform: scale(1.1);
}

/* Enhanced unlock button glow */
.unlock-btn {
    animation: unlockGlow 3s ease-in-out infinite alternate;
}

@keyframes unlockGlow {
    0% {
        box-shadow: 
            0 0 20px rgba(139, 92, 246, 0.5),
            0 0 40px rgba(139, 92, 246, 0.3),
            0 0 60px rgba(139, 92, 246, 0.1);
    }
    100% {
        box-shadow: 
            0 0 30px rgba(139, 92, 246, 0.7),
            0 0 60px rgba(139, 92, 246, 0.5),
            0 0 90px rgba(139, 92, 246, 0.3);
    }
}

.guarantee-headline {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

h3 {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.urgency-banner::after { content: none !important; }