/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #dc143c;
}

.logo-badge {
    background: #dc143c;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4ecdc4;
}

.nav-cta {
    background: #dc143c;
    border: 2px solid #dc143c;
    padding: 0.7rem 1.4rem;
    border-radius: 6px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-cta:hover {
    background: #b91c3c;
    border-color: #b91c3c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hide mobile video on desktop */
.hero-video-mobile {
    display: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.badge-text {
    background: #dc143c;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    color: #dc143c;
    font-weight: 700;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-highlight {
    color: #4ecdc4;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #4ecdc4;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-cta {
    margin-top: 2rem;
}

.cta-primary {
    background: #dc143c;
    border: 2px solid #dc143c;
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.2);
}

.cta-primary:hover {
    background: #b91c3c;
    border-color: #b91c3c;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(220, 20, 60, 0.3);
}

.cta-primary small {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 400;
}

.cta-subtitle {
    margin-top: 0.8rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: white;
    opacity: 0.9;
    text-align: left;
    font-weight: 500;
    max-width: 400px;
}

.cta-guarantee {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}

/* Hide mobile guarantee on desktop */
.mobile-guarantee {
    display: none;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-preview {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.video-thumbnail {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 0;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.play-button {
    width: 80px;
    height: 80px;
    background: #dc143c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

.play-button:hover {
    transform: scale(1.1);
}

.video-overlay {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem 1.5rem;
    text-align: center;
    border-radius: 0 0 12px 12px;
    margin-top: 0.5rem;
}

.video-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.problem .container {
    padding-bottom: 0 !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.text-red {
    color: #dc143c;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(78, 205, 196, 0.3);
}

.card-header-image {
    width: 100%; /* Full width */
    height: 150px;
    object-fit: cover;
    object-position: center center;
    border-radius: 15px 15px 0 0; /* Only round top corners */
    margin: 0; /* No margin */
    padding: 0; /* No padding */
    display: block;
    background: transparent;
    background: none;
}

.problem-card:first-child {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 0;
    overflow: hidden; /* Hide overflow for clean edges */
    position: relative;
    transition: transform 0.3s ease;
    min-height: 250px;
}

.problem-card:first-child .card-header-image {
    margin-bottom: 0;
    border-radius: 15px 15px 0 0;
}

.problem-card:first-child h3 {
    padding: 0 2rem !important;
    margin: 1.5rem 0 1rem 0 !important;
    color: #4ecdc4 !important; /* Use the site's teal accent color */
    font-size: 1.4rem !important; /* Slightly larger font size */
    font-weight: 700 !important; /* Bold font weight */
    position: static !important;
    background: none !important;
    text-shadow: none !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    z-index: auto !important;
}

.problem-card:first-child p {
    padding: 0 2rem 2rem 2rem !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.9) !important; /* Slightly transparent white for better readability */
    line-height: 1.6 !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    position: static !important;
    background: none !important;
    text-shadow: none !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    z-index: auto !important;
}

.problem-card:first-child:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(78, 205, 196, 0.3) !important;
}

.problem-card:first-child::before {
    display: none !important;
}

.problem-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.problem-icon-regular {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

/* Card 2 - exact same as card 1 */
.problem-card:nth-child(2) {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    padding: 0 !important;
    overflow: hidden !important; /* Hide overflow for clean edges */
    position: relative !important;
    transition: transform 0.3s ease !important;
    min-height: 250px !important;
}

.problem-card:nth-child(2) .card-header-image {
    width: 100% !important; /* Full width */
    height: 150px !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 15px 15px 0 0 !important; /* Only round top corners */
    margin: 0 !important; /* No margin */
    display: block !important;
    background: none !important;
}

.problem-card:nth-child(2) .problem-icon {
    display: none !important;
}

.problem-card:nth-child(2) h3 {
    padding: 0 2rem !important;
    margin: 1.5rem 0 1rem 0 !important;
    color: #4ecdc4 !important; /* Use the site's teal accent color */
    font-size: 1.4rem !important; /* Slightly larger font size */
    font-weight: 700 !important; /* Bold font weight */
    position: static !important;
    background: none !important;
    text-shadow: none !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    z-index: auto !important;
}

.problem-card:nth-child(2) p {
    padding: 0 2rem 2rem 2rem !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.9) !important; /* Slightly transparent white for better readability */
    line-height: 1.6 !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    position: static !important;
    background: none !important;
    text-shadow: none !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    z-index: auto !important;
}

.problem-card:nth-child(2):hover {
    transform: translateY(-5px) !important;
    border-color: rgba(78, 205, 196, 0.3) !important;
}

.problem-card:nth-child(2)::before {
    display: none !important;
}

.problem-card:nth-child(2) .problem-icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    height: 100%;
    z-index: 1;
}

.problem-card:nth-child(2) h3,
.problem-card:nth-child(2) p {
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 1), 1px 1px 3px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.6);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    margin: 1rem 0;
    backdrop-filter: blur(3px);
    font-weight: 600;
}

.problem-card:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(220, 20, 60, 0.05), rgba(99, 102, 241, 0.05));
    z-index: 1;
    border-radius: 15px;
}

/* Card 4 - 200 View Prison - force identical styling to other cards */
.problem-card:nth-child(4) {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: relative !important;
    transition: transform 0.3s ease !important;
    min-height: 250px !important;
}

.problem-card:nth-child(4) .card-header-image {
    width: 120% !important; /* Oversized to crop built-in padding */
    height: 180px !important; /* Taller to ensure full coverage */
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 15px 15px 0 0 !important;
    margin: -15px -10% 0 -10% !important; /* Negative margins to center and crop */
    padding: 0 !important;
    display: block !important;
    background: transparent !important;
    transform: scale(1.1) !important; /* Larger scale to crop padding */
}

.problem-card:nth-child(4) h3 {
    font-size: 1.3rem !important;
    color: #4ecdc4 !important;
    margin: 1.5rem !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.problem-card:nth-child(4) p {
    padding: 0 1.5rem 1.5rem 1.5rem !important;
    margin: 0 !important;
    line-height: 1.6 !important;
    font-size: 0.95rem !important;
    opacity: 0.9 !important;
    text-align: center !important;
}

/* Card 3 - exact same as card 1 */
.problem-card:nth-child(3) {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: relative !important;
    transition: transform 0.3s ease !important;
    min-height: 250px !important;
}

.problem-card:nth-child(3) .card-header-image {
    width: 100% !important;
    height: 150px !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 15px 15px 0 0 !important;
    margin: 0 !important;
    display: block !important;
    background: none !important;
}

.problem-card:nth-child(3) .problem-icon {
    display: none !important;
}

.problem-card:nth-child(3) h3 {
    padding: 0 2rem !important;
    margin: 1.5rem 0 1rem 0 !important;
    color: #4ecdc4 !important; /* Use the site's teal accent color */
    font-size: 1.4rem !important; /* Slightly larger font size */
    font-weight: 700 !important; /* Bold font weight */
    position: static !important;
    background: none !important;
    text-shadow: none !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    z-index: auto !important;
}

.problem-card:nth-child(3) p {
    padding: 0 2rem 2rem 2rem !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.9) !important; /* Slightly transparent white for better readability */
    line-height: 1.6 !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    position: static !important;
    background: none !important;
    text-shadow: none !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    z-index: auto !important;
}

.problem-card:nth-child(3):hover {
    transform: translateY(-5px) !important;
    border-color: rgba(78, 205, 196, 0.3) !important;
}

.problem-card:nth-child(3)::before {
    display: none !important;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #4ecdc4;
}

.problem-callout {
    background: none;
    padding: 1rem 0; /* Reduced from 3rem to 1rem */
    border-radius: 0;
    text-align: center;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -1rem; /* Pull it closer to the section above */
}

.problem-callout h3 {
    color: #dc143c;
    margin-bottom: 1rem;
}

/* Video Showcase Section */
.video-showcase {
    margin: 1rem 0 !important; /* Reduced spacing */
    padding: 0 !important;
    text-align: center;
    background: transparent;
    display: block;
    position: relative;
}

.video-showcase h3 {
    font-size: 1.8rem;
    color: #4ecdc4;
    margin: 0 0 0.5rem 0 !important; /* Tighter spacing */
    padding: 0;
    background: transparent;
    line-height: 1.2;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 10px 0 0 0; /* Very small top margin only */
    padding: 0;
    background: transparent;
    position: relative;
}

.video-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin: 0;
    padding: 0;
}

.video-item::before {
    content: '';
    display: block;
    padding-bottom: 75%; /* 4:3 aspect ratio */
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border: 2px solid rgba(78, 205, 196, 0.3);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.video-placeholder video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 10px;
    margin: 0;
    padding: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 0.5rem;
    text-align: center;
    z-index: 2;
}

.video-placeholder:hover {
    border-color: #4ecdc4;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.video-placeholder .play-button {
    font-size: 2rem;
    color: #4ecdc4;
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
    background: #4ecdc4;
    color: white;
    transform: scale(1.1);
}

.video-placeholder .video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 0.5rem; /* Reduced padding */
    text-align: center;
    z-index: 1; /* Ensure it's above the video */
}

.video-placeholder .video-overlay span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Solution Section */
.solution {
    padding: 80px 0;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    opacity: 0.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #4ecdc4;
}

.benefit-list {
    list-style: none;
    space-y: 1rem;
}

.benefit-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-demo {
    display: flex;
    justify-content: center;
}

.demo-screen {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

.demo-header {
    color: #dc143c;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.demo-input, .demo-output {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pipeline-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    margin: 0.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: #dc143c;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.3);
}

.step-content {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.demo-arrow {
    text-align: center;
    font-size: 1.5rem;
    color: #4ecdc4;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
    padding: 0;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(78, 205, 196, 0.3);
}

.testimonial-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    margin: 0;
    padding: 0;
    transition: transform 0.3s ease;
}

.testimonial-image:hover {
    transform: scale(1.02);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: #dc143c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    box-shadow: 0 3px 10px rgba(220, 20, 60, 0.3);
}

.testimonial-info h4 {
    margin-bottom: 0.2rem;
}

.testimonial-info span {
    opacity: 0.7;
    font-size: 0.9rem;
}

.testimonial-earnings {
    margin-left: auto;
    color: #4ecdc4;
    font-weight: 700;
}

.testimonial-card p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.proof-badge {
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(78, 205, 196, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #4ecdc4;
}

.feature-list {
    list-style: none;
    margin-top: 1rem;
}

.feature-list li {
    padding: 0.3rem 0;
    opacity: 0.8;
}

.feature-list li:before {
    content: "✓ ";
    color: #4ecdc4;
    font-weight: bold;
}

/* Modules Section */
.modules {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.module-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.module-number {
    background: #dc143c;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(220, 20, 60, 0.3);
}

.module-header h3 {
    color: #4ecdc4;
}

.module-lessons {
    margin-top: 1rem;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Bonuses Section */
.bonuses {
    padding: 80px 0;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: rgba(220, 20, 60, 0.08);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(220, 20, 60, 0.3);
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-badge {
    background: #dc143c;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.3);
}

.bonus-card h3 {
    color: #4ecdc4;
    margin-bottom: 0.5rem;
}

.bonus-value {
    color: #dc143c;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.single-pricing {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.pricing-card.single-offer {
    max-width: 600px;
    width: 100%;
}

.pricing-cta.mega {
    font-size: 1.3rem;
    padding: 1.5rem 2rem;
}

.value-stack {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-stack h3 {
    color: #4ecdc4;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.value-items {
    max-width: 400px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.value-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 2px solid rgba(78, 205, 196, 0.3);
    border-bottom: 2px solid rgba(78, 205, 196, 0.3);
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.value-today {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    font-weight: 800;
    font-size: 1.3rem;
}

.value-price.special {
    color: #dc143c;
    font-size: 1.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: #4ecdc4;
    transform: scale(1.05);
    background: rgba(220, 20, 60, 0.08);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc143c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(220, 20, 60, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4ecdc4;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #4ecdc4;
}

.price-period {
    font-size: 1rem;
    opacity: 0.7;
}

.price-original {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-cta {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.pricing-cta.primary {
    background: #dc143c;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(78, 205, 196, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.guarantee-icon {
    font-size: 3rem;
}

.guarantee-content h3 {
    color: #4ecdc4;
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h3 {
    color: #4ecdc4;
    margin-bottom: 1rem;
}

/* Urgency Section */
.urgency {
    padding: 80px 0;
    background: rgba(220, 20, 60, 0.05);
    text-align: center;
}

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #dc143c;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 100px;
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #4ecdc4;
}

.countdown-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #4ecdc4;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.cta-primary.large {
    font-size: 1.2rem;
    padding: 1.5rem 2rem;
    max-width: 500px;
}

.cta-secondary {
    background: transparent;
    border: 2px solid #4ecdc4;
    color: #4ecdc4;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #4ecdc4;
    color: #0a0a0a;
}

.final-guarantee {
    opacity: 0.8;
}

.final-urgency {
    background: rgba(220, 20, 60, 0.08);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border: 1px solid rgba(220, 20, 60, 0.3);
    text-align: center;
}

.final-urgency p {
    margin-bottom: 1rem;
}

.final-urgency p:last-child {
    margin-bottom: 0;
}

/* Urgency Badges */
.urgency-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.urgency-badge {
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.4);
    color: #dc143c;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

/* Enhanced Guarantee Section */
.guarantee-section {
    margin-bottom: 3rem;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.guarantee-item {
    background: rgba(78, 205, 196, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(78, 205, 196, 0.2);
    text-align: center;
}

.guarantee-icon-small {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.guarantee-item h4 {
    color: #4ecdc4;
    margin-bottom: 0.5rem;
}

/* Social Proof Mini */
.social-proof-mini {
    margin-top: 1rem;
    text-align: center;
}

.proof-avatars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.avatar {
    width: 30px;
    height: 30px;
    background: #dc143c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: white;
    box-shadow: 0 2px 6px rgba(220, 20, 60, 0.3);
}

.social-proof-mini p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Risk Reversal Section */
.risk-reversal {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.risk-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.risk-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.risk-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.risk-item h3 {
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.risk-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.comparison-side {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-side h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.comparison-side ul {
    list-style: none;
    padding: 0;
}

.comparison-side li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-side:first-child {
    border-color: rgba(220, 20, 60, 0.3);
}

.comparison-side:last-child {
    border-color: rgba(78, 205, 196, 0.3);
}

/* Legal Pages Styles */
.legal-page, .contact-page, .support-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.legal-content, .contact-content, .support-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content h1, .contact-content h1, .support-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #4ecdc4;
}

.last-updated, .contact-subtitle, .support-subtitle {
    opacity: 0.7;
    margin-bottom: 2rem;
}

.legal-content h2, .contact-content h2, .support-content h2 {
    color: #4ecdc4;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.legal-content ul, .contact-content ul, .support-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li, .contact-content li, .support-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.back-to-home {
    margin-top: 3rem;
    text-align: center;
}

.back-link {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #ff6b6b;
}

/* Contact Page Specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
    font-size: 2rem;
}

.contact-details h3 {
    color: #4ecdc4;
    margin-bottom: 0.5rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4ecdc4;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ecdc4;
    box-shadow: 0 0 0 2px rgba(78, 205, 196, 0.2);
}

.contact-submit {
    background: linear-gradient(45deg, #dc143c, #6366f1);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.contact-submit:hover {
    transform: translateY(-2px);
}

.faq-preview {
    margin-top: 3rem;
}

.faq-items {
    display: grid;
    gap: 1rem;
}

/* Support Page Specific */
.support-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.support-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-category h3 {
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.support-category ul {
    list-style: none;
    padding: 0;
}

.support-category li {
    margin-bottom: 0.5rem;
}

.support-category a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-category a:hover {
    color: #4ecdc4;
}

.support-faq {
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.support-contact {
    text-align: center;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-option {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.contact-option h3 {
    color: #4ecdc4;
    margin: 1rem 0 0.5rem;
}

/* Order Page Styles */
.order-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.order-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.order-summary {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary h2 {
    color: #4ecdc4;
    margin-bottom: 1.5rem;
}

.product-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #dc143c, #6366f1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon {
    font-size: 2rem;
}

.product-info h3 {
    color: #4ecdc4;
    margin-bottom: 0.5rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.product-features li {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    opacity: 0.9;
}

.price-breakdown {
    margin-bottom: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
}

.price-item.discount {
    color: #ff6b6b;
}

.price-item.total {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 1rem;
    padding-top: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.7;
}

.discount-price {
    color: #ff6b6b;
    font-weight: 600;
}

.final-price {
    color: #4ecdc4;
    font-weight: 800;
    font-size: 1.3rem;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(78, 205, 196, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(78, 205, 196, 0.3);
    margin-bottom: 2rem;
}

.guarantee-icon {
    font-size: 2rem;
}

.guarantee-text strong {
    color: #4ecdc4;
}

.urgency-timer {
    text-align: center;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.urgency-timer h4 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.mini-countdown {
    font-size: 2rem;
    font-weight: 800;
    color: #4ecdc4;
    margin-bottom: 0.5rem;
}

.payment-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-form h2 {
    color: #4ecdc4;
    margin-bottom: 0.5rem;
}

.security-notice {
    opacity: 0.8;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4ecdc4;
    box-shadow: 0 0 0 2px rgba(78, 205, 196, 0.2);
}

.form-group input.error {
    border-color: #dc143c;
}

.form-group small {
    display: block;
    margin-top: 0.3rem;
    opacity: 0.7;
    font-size: 0.8rem;
}

.payment-methods {
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.card-icon {
    font-size: 1.5rem;
}

.card-type {
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    font-size: 0.8rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.card-type.active {
    opacity: 1;
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
}

.card-error,
.field-error {
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

.order-button {
    width: 100%;
    background: linear-gradient(45deg, #dc143c, #6366f1);
    border: none;
    padding: 1.5rem;
    border-radius: 25px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.order-button:hover {
    transform: translateY(-2px);
}

.order-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.button-subtext {
    font-size: 0.9rem;
    opacity: 0.9;
}

.order-footer {
    text-align: center;
}

.security-badges {
    margin-bottom: 1rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

.terms-text {
    font-size: 0.8rem;
    opacity: 0.7;
}

.terms-text a {
    color: #4ecdc4;
    text-decoration: none;
}

.terms-text a:hover {
    text-decoration: underline;
}

.trust-signals {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-icon {
    font-size: 2rem;
}

.trust-text strong {
    color: #4ecdc4;
}

/* Modal Styles */
.success-modal,
.timeout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal-content.success,
.modal-content.timeout {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    animation: slideIn 0.3s ease;
}

.success-icon,
.timeout-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.modal-content h2 {
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.success-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.success-button,
.timeout-button {
    background: linear-gradient(45deg, #dc143c, #6366f1);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-top: 1rem;
}

.success-button:hover,
.timeout-button:hover {
    transform: translateY(-2px);
}

/* Slots Full Modal Styles */
.slots-full-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal-content.slots-full {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    animation: slideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.slots-full-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ff6b6b;
}

.modal-content.slots-full h2 {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 800;
}

.modal-content.slots-full p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.waitlist-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(78, 205, 196, 0.3);
    position: relative;
}

.waitlist-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #4ecdc4;
}

.waitlist-info p {
    margin-bottom: 0.5rem;
}

.waitlist-info p:last-child {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.primary-button {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.secondary-button {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.secondary-button:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .modal-content.slots-full {
        padding: 2rem;
        margin: 1rem;
    }
    
    .waitlist-info {
        padding: 1.5rem;
    }
    
    .modal-actions {
        gap: 0.8rem;
    }
    
    .primary-button,
    .secondary-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #dc143c;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification.notification-error {
    background: #dc143c;
}

.notification.notification-success {
    background: #4ecdc4;
}

/* Responsive Design for Order Page */
@media (max-width: 768px) {
    .order-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .order-summary {
        position: static;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-signals {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-item {
        width: 100%;
        max-width: 300px;
    }
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4ecdc4;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

.disclaimer {
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .solution-showcase {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .cta-buttons {
        width: 100%;
    }
    
    .cta-primary {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .video-placeholder {
        height: 120px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
} 

.pipeline-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(78, 205, 196, 0.3);
}

.ai-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
} 

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-card {
        padding: 1.5rem;
    }
    
    .problem-icon-image {
        width: 80px;
        height: 80px;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .video-placeholder {
        height: 120px;
    }
    
    .solution-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pipeline-image {
        max-width: 300px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .video-placeholder {
        height: 150px;
    }
    
    .problem-card {
        padding: 1rem;
    }
    
    .problem-icon-image {
        width: 60px;
        height: 60px;
    }
    
    .pipeline-image {
        max-width: 250px;
    }
    
    .container {
        padding: 0 15px;
    }
} 

/* Mobile First Approach - Override Everything */
@media (max-width: 768px) {
    .container {
        padding: 0 10px !important;
        max-width: 100% !important;
    }
    
    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 !important;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-stats {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .problem-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .problem-card {
        padding: 1rem !important;
        margin: 0 !important;
    }
    
    .problem-card h3 {
        font-size: 1.2rem !important;
    }
    
    .problem-card p {
        font-size: 0.9rem !important;
    }
    
    .video-showcase {
        margin: 1rem 0 !important;
        padding: 0 !important;
    }
    
    .video-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .video-placeholder {
        height: 200px !important;
    }
    
    .solution-showcase {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .pipeline-image {
        max-width: 90% !important;
        height: auto !important;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .cta-primary {
        width: 100% !important;
        padding: 1rem !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .section-title {
        font-size: 1.3rem !important;
    }
    
    .video-placeholder {
        height: 150px !important;
    }
} 

/* Nuclear Mobile Override - Place at the very end of CSS file */
@media screen and (max-width: 768px) {
    * {
        box-sizing: border-box !important;
    }
    
    body {
        font-size: 14px !important;
        line-height: 1.4 !important;
        overflow-x: hidden !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 15px !important;
        margin: 0 auto !important;
    }
    
    .hero {
        padding: 80px 0 40px !important;
        min-height: auto !important;
    }
    
    .hero-container {
        display: block !important;
        text-align: center !important;
    }
    
    .hero-title {
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    
    .hero-subtitle {
        font-size: 16px !important;
        margin-bottom: 20px !important;
    }
    
    .hero-stats {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        margin-bottom: 20px !important;
    }
    
    .problem-grid {
        display: block !important;
    }
    
    .problem-card {
        margin-bottom: 20px !important;
        padding: 15px !important;
    }
    
    .video-showcase {
        margin: 20px 0 !important;
        padding: 0 !important;
    }
    
    .video-grid {
        display: block !important;
    }
    
    .video-item {
        margin-bottom: 15px !important;
    }
    
    .video-placeholder {
        height: 200px !important;
        width: 100% !important;
    }
    
    .solution-showcase {
        display: block !important;
    }
    
    .pipeline-image {
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
    }
    
    .testimonials-grid,
    .features-grid,
    .modules-grid,
    .bonuses-grid {
        display: block !important;
    }
    
    .testimonial-card,
    .feature-card,
    .module-card,
    .bonus-card {
        margin-bottom: 20px !important;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .section-title {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }
    
    .cta-primary {
        width: 100% !important;
        padding: 15px !important;
        font-size: 16px !important;
    }
} 

.callout-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    margin: 0 auto;
    max-width: 850px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.callout-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.testimonial-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    margin: 0;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Remove padding for image-only testimonials */
.testimonial-card:has(.testimonial-image) {
    padding: 0;
}

.facebook-comments {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.facebook-comments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: space-between;
}

.facebook-comment-card {
    flex: 0 0 calc(25% - 0.75rem);
    position: relative;
}

.facebook-comment-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer; /* Show it's clickable */
    transition: opacity 0.2s ease;
}

.facebook-comment-image:hover {
    opacity: 0.8;
}

/* Modal styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close:hover {
    color: #4ecdc4;
}

/* Mobile - disable modal */
@media (max-width: 768px) {
    .facebook-comment-image {
        cursor: default;
    }
}