/* Hero Section */
.hero-section {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 20px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--pulse-effect);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 15s infinite ease-in-out;
}

.hero-section .container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-section h1 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 12px rgba(82, 80, 194, 0.6);
    line-height: 1.2;
    margin: 0;
}

.hero-section .sub-headline {
    font-family: 'Neon-Regular', sans-serif;
    font-size: clamp(0.9rem, 3vw, 1rem);
    color: var(--text-primary);
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.hero-section .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-section .btn {
    display: inline-block;
    padding: 10px 25px;
    font-family: 'Neon-Heavy', sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.hero-section .btn-primary {
    background: var(--btn-gradient);
    color: var(--text-primary);
}

.hero-section .btn-primary:hover {
    background: linear-gradient(90deg, var(--accent-blue-dark), var(--accent-blue));
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.hero-section .btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(65, 105, 225, 0.3);
}

.hero-section .btn-secondary {
    background: rgba(42, 42, 42, 0.9);
    color: var(--text-primary);
    border: 1px solid var(--accent-blue);
}

.hero-section .btn-secondary:hover {
    background: linear-gradient(90deg, var(--accent-blue-dark), var(--accent-blue));
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.hero-section .btn-secondary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(65, 105, 225, 0.3);
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
    .hero-section {
        padding: 40px 30px;
        min-height: 60vh;
    }

    .hero-section .container {
        max-width: 900px;
    }

    .hero-section h1 {
        font-size: clamp(2.5rem, 5vw, 3rem);
    }

    .hero-section .sub-headline {
        font-size: clamp(1.2rem, 3vw, 1.4rem);
    }

    .hero-section .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .hero-section .btn {
        padding: 12px 30px;
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
    .hero-section {
        padding: 15px 10px;
        min-height: 40vh;
    }

    .hero-section h1 {
        font-size: clamp(1.5rem, 4.5vw, 1.8rem);
    }

    .hero-section .sub-headline {
        font-size: clamp(0.8rem, 2.8vw, 0.9rem);
    }

    .hero-section .btn {
        padding: 8px 20px;
        font-size: clamp(0.8rem, 2.2vw, 0.9rem);
    }
}

/* Chasm Section: The Problem */
.chasm-section {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 20px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
}

.chasm-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--pulse-effect);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 15s infinite ease-in-out;
}

.chasm-section .container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chasm-section h2 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: clamp(1.5rem, 5vw, 1.8rem);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 12px rgba(82, 80, 194, 0.6);
    line-height: 1.2;
    margin: 0;
}

.chasm-section .problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.chasm-section .problem-card {
    background: rgba(42, 42, 42, 0.9);
    backdrop-filter: blur(8px);
    padding: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.chasm-section .problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.chasm-section .problem-card i {
    font-size: clamp(1.8rem, 5vw, 2rem);
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}

.chasm-section .problem-card:hover i {
    transform: scale(1.1);
}

.chasm-section .problem-card h3 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: clamp(1.1rem, 3.5vw, 1.2rem);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.chasm-section .problem-card p {
    font-family: 'Neon-Regular', sans-serif;
    font-size: clamp(0.8rem, 2.8vw, 0.9rem);
    color: var(--text-primary);
    opacity: 0.8;
    line-height: 1.5;
    margin: 0;
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
    .chasm-section {
        padding: 40px 30px;
    }

    .chasm-section .container {
        max-width: 900px;
    }

    .chasm-section h2 {
        font-size: clamp(2rem, 5vw, 2.2rem);
    }

    .chasm-section .problem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .chasm-section .problem-card {
        padding: 20px;
    }

    .chasm-section .problem-card i {
        font-size: clamp(2rem, 5vw, 2.2rem);
    }

    .chasm-section .problem-card h3 {
        font-size: clamp(1.3rem, 3.5vw, 1.4rem);
    }

    .chasm-section .problem-card p {
        font-size: clamp(0.9rem, 2.8vw, 1rem);
    }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
    .chasm-section {
        padding: 15px 10px;
    }

    .chasm-section h2 {
        font-size: clamp(1.3rem, 4.5vw, 1.5rem);
    }

    .chasm-section .problem-grid {
        gap: 12px;
    }

    .chasm-section .problem-card {
        padding: 12px;
    }

    .chasm-section .problem-card i {
        font-size: clamp(1.6rem, 4.5vw, 1.8rem);
    }

    .chasm-section .problem-card h3 {
        font-size: clamp(1rem, 3.2vw, 1.1rem);
    }

    .chasm-section .problem-card p {
        font-size: clamp(0.7rem, 2.5vw, 0.8rem);
    }
}

/* Solution Section */
.solution-section {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 20px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--pulse-effect);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 15s infinite ease-in-out;
}

.solution-section .container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-section h2 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: clamp(1.5rem, 5vw, 1.8rem);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 12px rgba(82, 80, 194, 0.6);
    line-height: 1.2;
    margin: 0;
}

.solution-section .solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.solution-section .solution-card {
    background: rgba(42, 42, 42, 0.9);
    backdrop-filter: blur(8px);
    padding: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.solution-section .solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.solution-section .solution-card i {
    font-size: clamp(1.8rem, 5vw, 2rem);
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}

.solution-section .solution-card:hover i {
    transform: scale(1.1);
}

.solution-section .solution-card h3 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: clamp(1.1rem, 3.5vw, 1.2rem);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.solution-section .solution-card p {
    font-family: 'Neon-Regular', sans-serif;
    font-size: clamp(0.8rem, 2.8vw, 0.9rem);
    color: var(--text-primary);
    opacity: 0.8;
    line-height: 1.5;
    margin: 0;
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
    .solution-section {
        padding: 40px 30px;
    }

    .solution-section .container {
        max-width: 900px;
    }

    .solution-section h2 {
        font-size: clamp(2rem, 5vw, 2.2rem);
    }

    .solution-section .solution-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .solution-section .solution-card {
        padding: 20px;
    }

    .solution-section .solution-card i {
        font-size: clamp(2rem, 5vw, 2.2rem);
    }

    .solution-section .solution-card h3 {
        font-size: clamp(1.3rem, 3.5vw, 1.4rem);
    }

    .solution-section .solution-card p {
        font-size: clamp(0.9rem, 2.8vw, 1rem);
    }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
    .solution-section {
        padding: 15px 10px;
    }

    .solution-section h2 {
        font-size: clamp(1.3rem, 4.5vw, 1.5rem);
    }

    .solution-section .solution-grid {
        gap: 12px;
    }

    .solution-section .solution-card {
        padding: 12px;
    }

    .solution-section .solution-card i {
        font-size: clamp(1.6rem, 4.5vw, 1.8rem);
    }

    .solution-section .solution-card h3 {
        font-size: clamp(1rem, 3.2vw, 1.1rem);
    }

    .solution-section .solution-card p {
        font-size: clamp(0.7rem, 2.5vw, 0.8rem);
    }
}

/* Targeted Audience Section */
.audience-section {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 20px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
}

.audience-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--pulse-effect);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 15s infinite ease-in-out;
}

.audience-section .container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.audience-section h2 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: clamp(1.5rem, 5vw, 1.8rem);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 12px rgba(82, 80, 194, 0.6);
    line-height: 1.2;
    margin: 0;
}

.audience-section .audience-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.audience-section .tab-link {
    background: rgba(42, 42, 42, 0.9);
    backdrop-filter: blur(8px);
    padding: 10px 20px;
    font-family: 'Neon-Heavy', sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: var(--text-primary);
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.audience-section .tab-link:hover {
    background: linear-gradient(90deg, var(--accent-blue-dark), var(--accent-blue));
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.audience-section .tab-link.active {
    background: var(--btn-gradient);
    box-shadow: var(--shadow-light);
}

.audience-section .tab-link:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(65, 105, 225, 0.3);
}

.audience-section .audience-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.audience-section .tab-content {
    display: none;
    background: rgba(42, 42, 42, 0.9);
    backdrop-filter: blur(8px);
    padding: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: opacity 0.3s ease;
}

.audience-section .tab-content.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 1;
}

.audience-section .tab-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.audience-section .tab-content img:hover {
    transform: scale(1.05);
}

.audience-section .tab-content h3 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: clamp(1.2rem, 3.5vw, 1.4rem);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.audience-section .tab-content p {
    font-family: 'Neon-Regular', sans-serif;
    font-size: clamp(0.8rem, 2.8vw, 0.9rem);
    color: var(--text-primary);
    opacity: 0.8;
    line-height: 1.5;
    margin: 0;
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
    .audience-section {
        padding: 40px 30px;
    }

    .audience-section .container {
        max-width: 900px;
    }

    .audience-section h2 {
        font-size: clamp(2rem, 5vw, 2.2rem);
    }

    .audience-section .tab-link {
        padding: 12px 25px;
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }

    .audience-section .tab-content {
        padding: 20px;
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .audience-section .tab-content img {
        max-width: 50%;
    }

    .audience-section .tab-content h3 {
        font-size: clamp(1.4rem, 3.5vw, 1.6rem);
    }

    .audience-section .tab-content p {
        font-size: clamp(0.9rem, 2.8vw, 1rem);
    }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
    .audience-section {
        padding: 15px 10px;
    }

    .audience-section h2 {
        font-size: clamp(1.3rem, 4.5vw, 1.5rem);
    }

    .audience-section .audience-toggle {
        gap: 8px;
    }

    .audience-section .tab-link {
        padding: 8px 15px;
        font-size: clamp(0.8rem, 2.2vw, 0.9rem);
    }

    .audience-section .tab-content {
        padding: 12px;
    }

    .audience-section .tab-content img {
        max-width: 100%;
    }

    .audience-section .tab-content h3 {
        font-size: clamp(1.1rem, 3.2vw, 1.2rem);
    }

    .audience-section .tab-content p {
        font-size: clamp(0.7rem, 2.5vw, 0.8rem);
    }
}

/* Flywheel Integration Section */
.flywheel-section {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 20px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
}

.flywheel-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--pulse-effect);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 15s infinite ease-in-out;
}

.flywheel-section .container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flywheel-section h2 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: clamp(1.5rem, 5vw, 1.8rem);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 12px rgba(82, 80, 194, 0.6);
    line-height: 1.2;
    margin: 0;
}

.flywheel-section .flywheel-diagram {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.flywheel-section .flywheel-diagram:hover {
    transform: scale(1.05);
}

.flywheel-section p {
    font-family: 'Neon-Regular', sans-serif;
    font-size: clamp(0.9rem, 3vw, 1rem);
    color: var(--text-primary);
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
    .flywheel-section {
        padding: 40px 30px;
    }

    .flywheel-section .container {
        max-width: 900px;
    }

    .flywheel-section h2 {
        font-size: clamp(2rem, 5vw, 2.2rem);
    }

    .flywheel-section .flywheel-diagram {
        max-width: 70%;
    }

    .flywheel-section p {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
    .flywheel-section {
        padding: 15px 10px;
    }

    .flywheel-section h2 {
        font-size: clamp(1.3rem, 4.5vw, 1.5rem);
    }

    .flywheel-section .flywheel-diagram {
        max-width: 100%;
    }

    .flywheel-section p {
        font-size: clamp(0.8rem, 2.8vw, 0.9rem);
    }
}

/* Final Call-to-Action Section */
.final-cta-section {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 20px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--pulse-effect);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 15s infinite ease-in-out;
}

.final-cta-section .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.final-cta-section h2 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: clamp(1.5rem, 5vw, 1.8rem);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 12px rgba(82, 80, 194, 0.6);
    line-height: 1.2;
    margin: 0;
}

.final-cta-section p {
    font-family: 'Neon-Regular', sans-serif;
    font-size: clamp(0.9rem, 3vw, 1rem);
    color: var(--text-primary);
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.final-cta-section .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.final-cta-section .btn {
    display: inline-block;
    padding: 10px 25px;
    font-family: 'Neon-Heavy', sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.final-cta-section .btn-primary {
    background: var(--btn-gradient);
    color: var(--text-primary);
}

.final-cta-section .btn-primary:hover {
    background: linear-gradient(90deg, var(--accent-blue-dark), var(--accent-blue));
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.final-cta-section .btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(65, 105, 225, 0.3);
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
    .final-cta-section {
        padding: 40px 30px;
        max-width: 900px;
    }

    .final-cta-section h2 {
        font-size: clamp(2rem, 5vw, 2.2rem);
    }

    .final-cta-section p {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }

    .final-cta-section .btn {
        padding: 12px 30px;
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
    .final-cta-section {
        padding: 15px 10px;
    }

    .final-cta-section h2 {
        font-size: clamp(1.3rem, 4.5vw, 1.5rem);
    }

    .final-cta-section p {
        font-size: clamp(0.8rem, 2.8vw, 0.9rem);
    }

    .final-cta-section .btn {
        padding: 8px 20px;
        font-size: clamp(0.8rem, 2.2vw, 0.9rem);
    }
}

