* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --accent-orange: #ff6b35;
    --accent-gold: #ffd700;
    --bright-orange: #ff8c42;
    --dark-orange: #e55a2b;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
    --gradient-fire: linear-gradient(135deg, #ff6b35 0%, #e55a2b 50%, #ffd700 100%);
    --shadow-glow: 0 0 50px rgba(255, 107, 53, 0.3);
    --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(
            135deg, 
            rgba(10, 10, 10, 0.85) 0%, 
            rgba(26, 26, 26, 0.75) 25%,
            rgba(10, 10, 10, 0.8) 50%,
            rgba(26, 26, 26, 0.75) 75%,
            rgba(10, 10, 10, 0.85) 100%
        ),
        url('gold.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: -2;
    opacity: 0.6;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.02) 0%, transparent 50%),
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.4) 0%, 
            rgba(255, 107, 53, 0.05) 25%,
            rgba(255, 215, 0, 0.03) 50%,
            rgba(255, 107, 53, 0.05) 75%,
            rgba(0, 0, 0, 0.4) 100%
        );
    z-index: -1;
    animation: backgroundShimmer 15s ease-in-out infinite;
}

@keyframes backgroundShimmer {
    0%, 100% { opacity: 0.8; }
    25% { opacity: 0.9; }
    50% { opacity: 0.7; }
    75% { opacity: 0.95; }
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.logo i {
    font-size: 2rem;
    animation: spin 20s linear infinite;
}

.header-nav {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.primary-btn {
    background: var(--gradient-fire);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.secondary-btn {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.gold-btn {
    background: var(--gradient-gold);
    color: var(--primary-black);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.nav-btn::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 ease;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.gold-btn:hover {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.3) 0%, 
            rgba(255, 107, 53, 0.08) 25%,
            rgba(255, 215, 0, 0.06) 50%,
            rgba(255, 107, 53, 0.08) 75%,
            rgba(0, 0, 0, 0.3) 100%
        );
    overflow: hidden;
    backdrop-filter: blur(1px);
    padding-top: 100px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-left {
    z-index: 2;
}

.hero-right {
    z-index: 3;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, transparent 0%, rgba(255, 107, 53, 0.06) 100%);
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-fire);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
    display: block;
}

@keyframes shimmer {
    0% { filter: hue-rotate(0deg) brightness(1); }
    50% { filter: hue-rotate(20deg) brightness(1.2); }
    100% { filter: hue-rotate(0deg) brightness(1); }
}

.subtitle {
    display: block;
    font-size: 2rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-top: 1rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 600px;
    color: var(--light-gray);
    line-height: 1.8;
}

.hero-description strong {
    color: var(--accent-orange);
    text-transform: uppercase;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.cta-container {
    margin-bottom: 3rem;
}

.cta-button {
    background: var(--gradient-fire);
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.cta-button::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 ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button i {
    margin-right: 10px;
    font-size: 1.1em;
}

.urgency-text {
    margin-top: 1rem;
    color: var(--accent-gold);
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-item {
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
}

.stat-card {
    background: rgba(255, 107, 53, 0.1);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    min-width: 200px;
}

/* Hero Proof Section */
.hero-proof {
    margin-top: 3rem;
}

.proof-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.proof-main-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.proof-chart-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid var(--accent-orange);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.proof-main-image:hover,
.proof-chart-image:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.4);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-change {
    font-weight: 700;
    font-size: 1.1rem;
}

.stat-change.positive {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

/* Hero Lead Form */
.hero-lead-form {
    background: rgba(0, 0, 0, 0.9);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(255, 215, 0, 0.15);
}

.hero-lead-form::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 3px;
    background: var(--gradient-fire);
    border-radius: 25px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.hero-form-submit-btn {
    width: 100%;
    background: var(--gradient-fire);
    border: none;
    padding: 1.8rem 2rem;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    border-radius: 15px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.hero-form-submit-btn:hover .btn-shine {
    left: 100%;
}

.hero-form-submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.5);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-success-img {
    position: absolute;
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    opacity: 0.15;
    top: 15%;
    right: 15%;
    animation: floatSuccess 12s ease-in-out infinite;
}

@keyframes floatSuccess {
    0%, 100% { 
        transform: translateY(0) rotate(2deg);
        opacity: 0.15;
    }
    50% { 
        transform: translateY(-30px) rotate(-2deg);
        opacity: 0.2;
    }
}

/* Hero Money Images */
.hero-money-images {
    position: absolute;
    right: 5%;
    top: 15%;
    z-index: 1;
    width: 40%;
    height: 70%;
}

.money-image {
    position: absolute;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.money-image:hover {
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.4);
}

.floating-money-1 {
    width: 300px;
    height: 200px;
    top: 20%;
    right: 20%;
    animation: floatMoney1 8s ease-in-out infinite;
}

.floating-money-2 {
    width: 250px;
    height: 180px;
    top: 50%;
    right: 35%;
    animation: floatMoney2 10s ease-in-out infinite;
}

.floating-money-3 {
    width: 200px;
    height: 140px;
    top: 75%;
    right: 10%;
    animation: floatMoney3 7s ease-in-out infinite;
}

@keyframes floatMoney1 {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-20px) rotate(-1deg); }
}

@keyframes floatMoney2 {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes floatMoney3 {
    0%, 100% { transform: translateY(0) rotate(0.5deg); }
    50% { transform: translateY(-10px) rotate(-0.5deg); }
}

.floating-bitcoin {
    position: absolute;
    right: 15%;
    top: 35%;
    font-size: 15rem;
    color: var(--accent-gold);
    opacity: 0.05;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

/* Lead Capture Section */
.lead-capture-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95) 0%, 
        rgba(10, 10, 10, 0.9) 50%, 
        rgba(26, 26, 26, 0.95) 100%
    );
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(2px);
}

.lead-capture-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    animation: bgShimmer 10s ease-in-out infinite;
}

@keyframes bgShimmer {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

.capture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.capture-left {
    padding-right: 2rem;
}

.capture-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.highlight-text {
    display: block;
    background: var(--gradient-fire);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.capture-subtitle {
    display: block;
    font-size: 1.8rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-top: 1rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.proof-points {
    margin: 3rem 0;
}

.proof-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.proof-item i {
    color: var(--accent-orange);
    margin-right: 1rem;
    font-size: 1.3rem;
    width: 20px;
}

.testimonial-mini {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin-top: 3rem;
    position: relative;
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-fire);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--white);
    flex-shrink: 0;
}

.money-proof {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mini-money-img {
    width: 120px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
    opacity: 0.9;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    color: var(--white);
    line-height: 1.6;
}

.testimonial-content span {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.capture-right {
    position: relative;
}

.lead-form {
    background: rgba(0, 0, 0, 0.85);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 215, 0, 0.1);
}

.lead-form::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: var(--gradient-fire);
    border-radius: 25px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.form-header p {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.urgency-badge {
    background: var(--gradient-fire);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input {
    width: 100%;
    padding: 1.2rem 1.5rem 1.2rem 3.5rem;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    background: rgba(255, 107, 53, 0.05);
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder {
    color: rgba(245, 245, 245, 0.7);
    font-weight: 500;
}

.input-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-orange);
    font-size: 1.1rem;
}

.form-submit-btn {
    width: 100%;
    background: var(--gradient-fire);
    border: none;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--white);
    border-radius: 15px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.form-submit-btn::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 ease;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.5);
}

.form-submit-btn:hover::before {
    left: 100%;
}

.form-submit-btn i {
    margin-right: 10px;
}

.form-footer {
    text-align: center;
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-footer i {
    color: #00ff88;
}

.social-proof {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.proof-avatars {
    display: flex;
    justify-content: center;
    gap: -5px;
    margin-bottom: 1rem;
}

.avatar-mini {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--gradient-fire);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--white);
    border: 2px solid var(--primary-black);
    margin-left: -5px;
}

.avatar-mini:last-child {
    background: var(--gradient-gold);
    font-size: 1.2rem;
}

.social-proof span {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
}

/* FOMO Section */
.fomo-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.92) 0%, 
        rgba(10, 10, 10, 0.95) 100%
    );
    position: relative;
    backdrop-filter: blur(1px);
}

.fomo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-fire);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.warning-text {
    color: var(--accent-orange);
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    animation: warning 2s ease-in-out infinite;
}

@keyframes warning {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; transform: scale(1.02); }
}

.missed-opportunities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.opportunity-card {
    background: rgba(255, 107, 53, 0.08);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
}

.opportunity-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: var(--gradient-fire);
    border-radius: 20px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
}

.opportunity-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.2);
}

.opportunity-card .year {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.opportunity-card .price {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.opportunity-card .arrow {
    font-size: 2rem;
    color: var(--accent-orange);
    margin: 1rem 0;
}

.opportunity-card .result {
    font-size: 1.8rem;
    font-weight: 900;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    margin-bottom: 1rem;
}

.opportunity-card .money {
    font-size: 1.2rem;
    color: var(--light-gray);
    font-weight: 600;
}

.fomo-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.fomo-cta h3 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.fomo-cta p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--light-gray);
}

/* Success Stories */
.success-stories {
    padding: 8rem 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(1px);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.story-card {
    background: rgba(255, 215, 0, 0.08);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.25);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.05);
}

.story-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-gold);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-card:hover::before {
    opacity: 1;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.story-image {
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.success-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-gold);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
    flex-shrink: 0;
}

.success-overlay {
    position: relative;
}

.lifestyle-image {
    width: 140px;
    height: 90px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--accent-orange);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    opacity: 0.95;
    transition: all 0.3s ease;
}

.lifestyle-image:hover {
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-fire);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
}

/* Wealth Showcase */
.wealth-showcase {
    margin-top: 4rem;
    text-align: center;
}

.wealth-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.wealth-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.wealth-img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.4);
    opacity: 1;
}

.wealth-text h3 {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-fire);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.wealth-text p {
    font-size: 1.3rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 3rem;
}

.wealth-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.wealth-stat {
    text-align: center;
    background: rgba(255, 107, 53, 0.1);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.wealth-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.stat-big {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 1rem;
}

.stat-desc {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* New Story Image Styles */
.story-image-new {
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.main-success-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid var(--accent-gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.chart-success-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid var(--accent-orange);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.luxury-success-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid #00ff88;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.4);
    transition: all 0.3s ease;
}

.main-success-photo:hover,
.chart-success-photo:hover,
.luxury-success-photo:hover {
    transform: scale(1.03);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.5);
}

/* Proof Section Styles */
.proof-section {
    padding: 8rem 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(2px);
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.proof-card {
    position: relative;
}

.success-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 25px;
    border: 4px solid var(--accent-gold);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.4);
    margin-bottom: 2rem;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.proof-stat {
    text-align: center;
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.proof-stat .stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.proof-stat .stat-label {
    font-size: 0.9rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.testimonial-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card {
    background: rgba(255, 215, 0, 0.1);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.2);
}

.testimonial-card p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author {
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.profit-highlight {
    font-size: 1.5rem;
    font-weight: 900;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.story-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.story-location {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--light-gray);
}

.story-profit {
    font-size: 1.3rem;
    font-weight: 900;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

/* Chart Section */
.chart-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(26, 26, 26, 0.9) 100%
    );
    backdrop-filter: blur(1px);
}

.chart-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.chart-info h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.chart-info p {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.chart-highlights {
    list-style: none;
}

.chart-highlights li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
}

.chart-highlights i {
    color: #00ff88;
    margin-right: 1rem;
}

.chart-visual {
    position: relative;
    height: 400px;
}

.price-chart {
    position: relative;
    height: 100%;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.chart-line {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 200px;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255, 107, 53, 0.3) 20%, 
        rgba(255, 215, 0, 0.5) 50%, 
        rgba(0, 255, 136, 0.7) 80%, 
        #00ff88 100%);
    clip-path: polygon(0% 100%, 5% 85%, 25% 70%, 50% 40%, 75% 20%, 100% 10%, 100% 100%);
    animation: chartGrow 3s ease-in-out;
}

@keyframes chartGrow {
    0% { clip-path: polygon(0% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 100%); }
    100% { clip-path: polygon(0% 100%, 5% 85%, 25% 70%, 50% 40%, 75% 20%, 100% 10%, 100% 100%); }
}

.chart-points {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 200px;
}

.point {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.point:hover {
    transform: scale(1.5);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.point:nth-child(1) { bottom: 165px; left: 5%; }
.point:nth-child(2) { bottom: 140px; left: 25%; }
.point:nth-child(3) { bottom: 110px; left: 50%; }
.point:nth-child(4) { bottom: 50px; left: 75%; }
.point.future { 
    bottom: 20px; 
    right: 0%; 
    background: #00ff88;
    animation: futurePulse 2s ease-in-out infinite;
}

@keyframes futurePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Final CTA */
.final-cta {
    padding: 8rem 0;
    background: radial-gradient(ellipse at center, 
        rgba(26, 26, 26, 0.9) 0%, 
        rgba(10, 10, 10, 0.95) 70%
    );
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(2px);
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 107, 53, 0.1), transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-fire);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.cta-content p {
    font-size: 1.5rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.countdown-item {
    background: rgba(255, 107, 53, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    min-width: 120px;
}

.countdown-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cta-button.mega {
    font-size: 1.5rem;
    padding: 2rem 4rem;
    margin: 3rem 0;
    border-radius: 60px;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
}

.guarantee {
    margin-top: 2rem;
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 600;
}

.guarantee i {
    margin-right: 0.5rem;
    color: #00ff88;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9998;
    animation: whatsappFloat 4s ease-in-out infinite;
}

.whatsapp-float a {
    text-decoration: none;
    display: block;
}

.whatsapp-content {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: 1.2rem 1.5rem;
    border-radius: 30px;
    box-shadow: 
        0 20px 40px rgba(37, 211, 102, 0.4),
        0 0 30px rgba(37, 211, 102, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 280px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transform: translateX(0);
    transition: all 0.3s ease;
}

.whatsapp-content:hover {
    transform: translateX(10px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(37, 211, 102, 0.5),
        0 0 40px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    animation: whatsappSpin 8s linear infinite;
}

@keyframes whatsappSpin {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
}

.whatsapp-text {
    color: white;
    line-height: 1.3;
    font-weight: 700;
}

.whatsapp-title {
    display: block;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.whatsapp-desc {
    display: block;
    font-size: 0.85rem;
    opacity: 0.95;
    font-weight: 600;
}

.whatsapp-pulse {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 3px solid rgba(37, 211, 102, 0.6);
    border-radius: 30px;
    animation: whatsappPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes whatsappPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.7;
    }
}

@keyframes whatsappFloat {
    0%, 100% { 
        transform: translateY(0);
    }
    25% { 
        transform: translateY(-8px);
    }
    50% { 
        transform: translateY(0);
    }
    75% { 
        transform: translateY(-4px);
    }
}

/* Chat Module */
.chat-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    cursor: pointer;
    animation: chatBounce 3s ease-in-out infinite;
}

@keyframes chatBounce {
    0%, 50%, 100% { transform: scale(1); }
    25% { transform: scale(1.05); }
    75% { transform: scale(1.02); }
}

.bubble-content {
    background: var(--gradient-fire);
    padding: 1.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 280px;
    position: relative;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.bubble-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
    flex-shrink: 0;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.bubble-text {
    color: var(--white);
    line-height: 1.4;
}

.bubble-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.bubble-text span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.bubble-notification {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 25px;
    height: 25px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 900;
    animation: pulse 1.5s ease-in-out infinite;
}

.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 380px;
    height: 520px;
    background: var(--primary-black);
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    z-index: 10000;
    display: none;
    flex-direction: column;
    border: 2px solid rgba(255, 107, 53, 0.3);
    overflow: hidden;
}

.chat-widget.active {
    display: flex;
    animation: chatSlideIn 0.5s ease;
}

@keyframes chatSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chat-header {
    background: var(--gradient-fire);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
}

.chat-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-gold);
    animation: spin 15s linear infinite;
}

.chat-info {
    flex: 1;
}

.chat-name {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.chat-status {
    font-size: 0.85rem;
    opacity: 0.9;
}

.chat-toggle {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.chat-message {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: messageSlideIn 0.5s ease;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    color: var(--white);
}

.bot-message .message-avatar {
    background: var(--gradient-fire);
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-avatar {
    background: var(--gradient-gold);
    color: var(--primary-black);
}

.message-content {
    flex: 1;
    background: rgba(255, 107, 53, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.user-message .message-content {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.2);
}

.message-content p {
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
    color: var(--white);
}

.message-content p:last-child {
    margin-bottom: 0;
}

.chat-input-container {
    padding: 1.5rem;
    background: var(--secondary-black);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    display: flex;
    gap: 1rem;
    align-items: center;
}

.chat-input {
    flex: 1;
    background: rgba(255, 107, 53, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 25px;
    padding: 1rem 1.5rem;
    color: var(--white);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.chat-input:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.chat-input::placeholder {
    color: rgba(245, 245, 245, 0.6);
}

.chat-send {
    width: 45px;
    height: 45px;
    background: var(--gradient-fire);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-send:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.4);
}

.chat-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
    font-style: italic;
    padding: 0.5rem 0;
}

.typing-dots {
    display: flex;
    gap: 0.2rem;
}

.typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
    animation: typingDot 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
    0%, 60%, 100% { opacity: 0.3; transform: scale(1); }
    30% { opacity: 1; transform: scale(1.3); }
}

/* Form in Chat */
.chat-form {
    background: rgba(255, 107, 53, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin-top: 1rem;
}

.chat-form-group {
    margin-bottom: 1rem;
}

.chat-form-group:last-child {
    margin-bottom: 0;
}

.chat-form input {
    width: 100%;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 0.8rem;
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.chat-form input:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
}

.chat-form input::placeholder {
    color: rgba(245, 245, 245, 0.6);
}

.chat-form-submit {
    background: var(--gradient-fire);
    border: none;
    border-radius: 10px;
    padding: 0.8rem 1.5rem;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: 100%;
    margin-top: 1rem;
}

.chat-form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* Scroll Modal */
.scroll-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.scroll-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: rgba(0, 0, 0, 0.95);
    border: 3px solid transparent;
    border-radius: 30px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(255, 107, 53, 0.4);
    animation: modalSlideIn 0.5s ease;
}

.modal-content::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 3px;
    background: var(--gradient-fire);
    border-radius: 30px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    animation: modalBorderGlow 2s ease-in-out infinite;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes modalBorderGlow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 107, 53, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--accent-orange);
    transform: scale(1.1);
}

.modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.modal-header h3 {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-fire);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-transform: uppercase;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.modal-header p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.modal-urgency {
    background: rgba(255, 107, 53, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 2px solid var(--accent-orange);
    color: var(--accent-gold);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    animation: urgencyBlink 1.5s ease-in-out infinite;
}

@keyframes urgencyBlink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.7; }
}

.modal-form {
    margin-bottom: 1.5rem;
}

.modal-submit-btn {
    width: 100%;
    background: var(--gradient-fire);
    border: none;
    padding: 1.8rem 2rem;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    border-radius: 15px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.modal-submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.5);
}

.modal-footer {
    text-align: center;
    color: var(--light-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.modal-footer i {
    color: #00ff88;
}

/* Final CTA Urgency */
.final-urgency {
    margin: 2rem 0;
    text-align: center;
}

.urgency-text-big {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: urgencyShake 3s ease-in-out infinite;
}

@keyframes urgencyShake {
    0%, 96%, 100% { transform: translateX(0); }
    2% { transform: translateX(-2px); }
    4% { transform: translateX(2px); }
    6% { transform: translateX(-2px); }
}

.success-arrow {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: var(--primary-black);
    text-align: center;
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-right {
        order: 1;
    }
    
    .hero-left {
        order: 2;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .proof-images {
        grid-template-columns: 1fr;
    }
    
    .proof-main-image,
    .proof-chart-image {
        height: 150px;
    }
    
    .header-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero-lead-form {
        padding: 2rem 1.5rem;
    }
    
    .hero-form-submit-btn {
        font-size: 1.2rem;
        padding: 1.5rem;
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .capture-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .capture-left {
        padding-right: 0;
        order: 2;
    }
    
    .capture-right {
        order: 1;
    }
    
    .capture-title {
        font-size: 2.5rem;
    }
    
    .capture-subtitle {
        font-size: 1.4rem;
    }
    
    .lead-form {
        padding: 2rem;
    }
    
    .form-header h3 {
        font-size: 1.8rem;
    }
    
    .chart-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 100px;
        padding: 1.5rem;
    }
    
    .hero-money-images {
        display: none;
    }
    
    .floating-bitcoin {
        font-size: 10rem;
        opacity: 0.05;
        right: 5%;
        top: 20%;
    }
    
    .wealth-images {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .wealth-img {
        height: 150px;
    }
    
    .success-photo {
        width: 80px;
        height: 80px;
    }
    
    .lifestyle-image {
        width: 120px;
        height: 75px;
    }
    
    .testimonial-photo {
        width: 60px;
        height: 60px;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-button.mega {
        font-size: 1.2rem;
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .missed-opportunities {
        grid-template-columns: 1fr;
    }
    
    .wealth-images {
        grid-template-columns: 1fr;
    }
    
    .wealth-img {
        height: 180px;
    }
    
    .story-image {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .success-photo {
        width: 70px;
        height: 70px;
    }
    
    .lifestyle-image {
        width: 100px;
        height: 65px;
        margin-top: 0.5rem;
    }
    
    .testimonial-mini {
        flex-direction: column;
        text-align: center;
    }
    
    .mini-money-img {
        width: 100px;
        height: 60px;
    }
    
    /* Mobile background optimization */
    body::before {
        background-attachment: scroll;
        opacity: 0.4;
    }
    
    body::after {
        opacity: 0.9;
    }
    
    /* Modal Mobile Styles */
    .modal-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        width: 95%;
    }
    
    .modal-header h3 {
        font-size: 2rem;
    }
    
    .modal-submit-btn {
        font-size: 1.2rem;
        padding: 1.5rem;
    }
    
    .urgency-text-big {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* WhatsApp Mobile Styles */
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-content {
        padding: 1rem;
        max-width: 240px;
        border-radius: 25px;
    }
    
    .whatsapp-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .whatsapp-title {
        font-size: 0.9rem;
    }
    
    .whatsapp-desc {
        font-size: 0.75rem;
    }
}

/* Field Highlight Animation */
@keyframes fieldHighlight {
    0%, 100% { 
        border-color: #ffd700;
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
        transform: scale(1);
    }
    50% { 
        border-color: #ff6b35;
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.9);
        transform: scale(1.02);
    }
}
