@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    /* line-height: 1.6; */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3 {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

p {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

/* Hero Section - keeping original */
header {
    width: 100%;
    background: linear-gradient(to right, #02001f, #8c0085);
}

.hero {
    background-image: url('hero-desktop.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 1600px;
    margin: 0 auto;
    padding: 50px 0;
    width: 100%;
    height: 874px;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 1600px;
    width: 95%;
}

.hero h1 span {
    display: block;
    margin-top: -10px;
}

.hero h1 .blue {
    color: #00d8fb;
}

.hero h2 {
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 700;
} 

.logo {
    max-width: 150px;
    margin-bottom: 60px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: left;
    margin-top: 0px;
}

.hero p {
    text-transform: uppercase;
    padding-bottom: 40px;
    font-weight: bold;
    text-align: left;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #ff8c42, #ff6b1a);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 12px;
    padding: 18px 36px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255, 107, 26, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 26, 0.6);
}

.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;
}

.cta-button:hover:before {
    left: 100%;
}

/* Section Base Styles */
section {
    padding: 100px 0;
    position: relative;
}

/* Problems Section */
.problems {
    background: radial-gradient(ellipse at center, #1a0b2e, #0a0a0a);
    position: relative;
}

.problems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #a855f7, transparent);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
    gap: 2%;
    margin-top: 60px;
}

.problem-card {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    border: 1px solid #4338ca;
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7, #c084fc);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.problem-card h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.problem-card ul {
    list-style: none;
}

.problem-card li {
    color: #e5e7eb;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    text-transform: uppercase;
    font-weight: 500;
}

.problem-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #a855f7;
    font-weight: bold;
}

/* Solutions Section */
.solutions {
    background: linear-gradient(135deg, #0f0f23, #1a1a2e);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(23%, 1fr));
    gap: 2%;
    margin-top: 60px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.3s ease;
    position: relative;
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #a855f7;
    transform: translateY(-4px);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, #a855f7, transparent, #06b6d4);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.solution-card:hover::before {
    opacity: 1;
}

/* Benefits Section */
.benefits {
    background: radial-gradient(ellipse at center, #0f172a, #0a0a0a);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(23%, 1fr));
    gap: 2%;
    margin-top: 60px;
}

.benefit-card {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0;
}

.benefit-card:hover::before {
    opacity: 1;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.benefit-card h3,
.benefit-card p {
    position: relative;
    z-index: 2;
}

.benefit-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.benefit-card p {
    color: #f3e8ff;
    font-size: 1rem;
}

/* Social Proof Section */
.social-proof {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
    gap: 5%;
    margin-top: 60px;
}

.stat-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #4338ca;
    border-radius: 16px;
    padding: 48px 32px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #06b6d4;
    transform: scale(1.05);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #06b6d4, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 16px;
}

.stat-text {
    font-size: 1.2rem;
    color: #e5e7eb;
    font-weight: 600;
    text-transform: uppercase;
}

/* Secondary CTA */
.secondary-cta {
    background: radial-gradient(ellipse at center, #1a0b2e, #0a0a0a);
    text-align: center;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.about-content strong {
    color: #a855f7;
}

/* FAQ Section */
.faq {
    background: #0a0a0a;
}

.faq-list {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #a855f7;
}

.faq-question {
    padding: 24px 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(168, 85, 247, 0.1);
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    color: #a855f7;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.show {
    max-height: 200px;
}

.faq-answer-content {
    padding: 0 32px 24px;
    color: #d1d5db;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    text-align: center;
    padding: 40px 0;
}

.final-cta h2 {
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: #ffffff;
}

.final-cta p {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.2rem;
    color: #f3e8ff;
    margin-bottom: 2rem;
}

.final-cta .cta-button {
    background: #000000;
    color: #ffffff;
}

.final-cta .cta-button:hover {
    background: #1f1f1f;
    transform: translateY(-2px);
}

/* Main Footer */
.main-footer {
    background: #0a0a0a;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-footer p {
    color: #9ca3af;
    margin-bottom: 8px;
}

.main-footer strong {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero {
        background-image: url('hero-mobile.jpeg');
    }

    .hero .container {
        width: 95%;
        text-align: center;
        align-items: center;
        padding: 0;
        margin: 0 auto;
    }

    .hero p {
        text-align: center;
    }

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

    section {
        padding: 60px 0;
    }

    h2 {
        font-size: 2rem;
    }

    .problem-grid,
    .solution-grid,
    .benefit-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .final-cta .cta-button {
        max-width: 80%;
        margin: 0 auto;
    }
    .logo {
        margin-bottom: 20px;
    }
}

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

    .container {
        padding: 0 16px;
    }

    section {
        padding: 40px 0;
    }

    .stat-number {
        font-size: 3rem;
    }
}