/* ============================================
   About Styles
   Extracted from about.html
   ============================================ */

/* Hide nav elements for clean reading experience */
    .nav-tabs, header, nav, .env-banner, .header {
        display: none !important;
    }

    /* Remove default main padding for edge-to-edge design */
    .main-content {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }

    main {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* Remove the spacer div that's added after the env banner */
    .env-banner + div {
        display: none !important;
    }

    html, body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
    }

    body {
        font-family: var(--font-primary);
        background: var(--bg-primary);
        color: var(--text-primary);
        line-height: 1.6;
        overflow-x: hidden;
    }

    * {
        box-sizing: border-box;
    }

    /* Hero Section */
    .hero {
        background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
        padding: 60px 20px 50px;
        text-align: center;
        position: relative;
        overflow: hidden;
        margin-top: -1px;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -10%;
        right: -10%;
        height: 150%;
        background:
            radial-gradient(ellipse at 30% 20%, rgba(88, 115, 203, 0.25), transparent 35%),
            radial-gradient(ellipse at 70% 40%, rgba(102, 187, 106, 0.18), transparent 35%),
            radial-gradient(ellipse at 50% 60%, rgba(217, 107, 138, 0.15), transparent 35%);
        pointer-events: none;
        filter: blur(80px);
    }

    .hero-content {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .hero h1 {
        font-size: 3.5rem;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #66bb6a, #5873CB, #D96B8A);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        color: var(--text-gray-900);
        font-weight: 300;
        margin-bottom: 0;
        line-height: 1.5;
    }

    /* Pain Section */
    .pain-section {
        background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
        padding: 60px 20px;
        position: relative;
        overflow: hidden;
    }

    .pain-section::before {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -20%;
        right: -20%;
        height: 100%;
        background:
            radial-gradient(ellipse at 50% 100%, rgba(217, 107, 138, 0.12), transparent 45%);
        pointer-events: none;
        filter: blur(100px);
    }

    .pain-content {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .pain-header {
        font-size: 2.2rem;
        font-weight: 500;
        margin-bottom: 2.5rem;
        color: #D96B8A;
        text-align: center;
    }

    .pain-point {
        background: rgba(217, 107, 138, 0.05);
        border-left: 3px solid #D96B8A;
        padding: var(--space-5) 24px;
        margin-bottom: 20px;
        border-radius: 0 8px 8px 0;
        transition: all 0.3s ease;
    }

    .pain-point:hover {
        background: rgba(217, 107, 138, 0.08);
        border-left-width: 4px;
    }

    .pain-point h3 {
        font-size: 1.2rem;
        font-weight: 500;
        color: #ffaaaa;
        margin-bottom: 8px;
    }

    .pain-point p {
        color: #ccc;
        margin: 0;
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Solution Section */
    .solution-section {
        background: linear-gradient(180deg, #050505 0%, #000000 100%);
        padding: 60px 20px;
        position: relative;
        overflow: hidden;
    }

    .solution-section::before {
        content: '';
        position: absolute;
        top: -30%;
        left: -20%;
        right: -20%;
        height: 100%;
        background:
            radial-gradient(ellipse at 50% 0%, rgba(102, 187, 106, 0.15), transparent 45%);
        pointer-events: none;
        filter: blur(100px);
    }

    .solution-content {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .solution-header {
        font-size: 2.2rem;
        font-weight: 500;
        margin-bottom: 1rem;
        color: var(--success-light);
        text-align: center;
    }

    .solution-subtitle {
        font-size: 1.2rem;
        color: var(--text-gray-900);
        text-align: center;
        margin-bottom: 3rem;
        line-height: 1.6;
    }

    /* How It Works */
    .how-it-works {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .step-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-lg);
        padding: 30px;
        position: relative;
        transition: all 0.3s ease;
    }

    .step-card:hover {
        background: rgba(102, 187, 106, 0.05);
        border-color: rgba(102, 187, 106, 0.3);
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(102, 187, 106, 0.15);
    }

    .step-number {
        position: absolute;
        top: -15px;
        left: 24px;
        background: linear-gradient(135deg, #66bb6a, #5873CB);
        color: var(--text-white);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 1.2rem;
        box-shadow: 0 4px 12px rgba(102, 187, 106, 0.3);
    }

    .step-card h3 {
        font-size: 1.3rem;
        font-weight: 500;
        margin: var(--space-3) 0 12px 0;
        color: var(--text-white);
    }

    .step-card p {
        color: #aaa;
        font-size: 1rem;
        line-height: 1.6;
        margin: 0;
    }

    /* Benefits Section */
    .benefits-section {
        background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
        padding: 60px 20px;
        position: relative;
        overflow: hidden;
    }

    .benefits-section::before {
        content: '';
        position: absolute;
        top: 20%;
        left: -30%;
        right: -30%;
        height: 60%;
        background:
            radial-gradient(ellipse at 50% 50%, rgba(88, 115, 203, 0.12), transparent 50%);
        pointer-events: none;
        filter: blur(120px);
    }

    .benefits-content {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .benefits-header {
        font-size: 2.2rem;
        font-weight: 500;
        margin-bottom: 3rem;
        color: var(--text-white);
        text-align: center;
    }

    .benefit-group {
        margin-bottom: 50px;
    }

    .benefit-group-title {
        font-size: 1.5rem;
        color: var(--brand-primary);
        margin-bottom: 24px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 500;
    }

    .benefit-card {
        background: rgba(88, 115, 203, 0.05);
        border: 1px solid rgba(88, 115, 203, 0.15);
        border-radius: var(--radius-lg);
        padding: var(--space-6);
        margin-bottom: 20px;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 20px;
        transition: all 0.3s ease;
    }

    .benefit-card:hover {
        background: rgba(88, 115, 203, 0.08);
        border-color: rgba(88, 115, 203, 0.25);
        transform: translateX(4px);
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
        background: rgba(88, 115, 203, 0.15);
        border-radius: var(--radius-lg);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        flex-shrink: 0;
    }

    .benefit-content h4 {
        font-size: 1.2rem;
        font-weight: 500;
        color: var(--text-white);
        margin: 0 0 8px 0;
    }

    .benefit-content p {
        color: #bbb;
        font-size: 1rem;
        margin: 0 0 8px 0;
        line-height: 1.6;
    }

    .benefit-outcome {
        color: var(--success-light);
        font-weight: 500;
        margin-top: 8px;
        font-size: 0.95rem;
    }

    /* Carousel Section */
    .carousel-section {
        background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
        padding: var(--space-20) 20px;
        position: relative;
        overflow: hidden;
    }

    .carousel-section::before {
        content: '';
        position: absolute;
        top: -30%;
        left: -20%;
        right: -20%;
        height: 100%;
        background:
            radial-gradient(ellipse at 50% 50%, rgba(88, 115, 203, 0.12), transparent 50%);
        pointer-events: none;
        filter: blur(100px);
    }

    .carousel-content {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .carousel-header {
        font-size: 2.2rem;
        font-weight: 500;
        margin-bottom: 1rem;
        text-align: center;
        background: linear-gradient(135deg, #5873CB, #66bb6a);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .carousel-subtitle {
        font-size: 1.1rem;
        color: var(--text-gray-900);
        text-align: center;
        margin-bottom: 3rem;
    }

    .carousel-container {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .carousel-slides {
        position: relative;
        width: 100%;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .carousel-slide {
        display: none;
        flex-direction: column;
    }

    .carousel-slide.active {
        display: flex;
        animation: fadeIn 0.5s ease-in-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    .carousel-slide img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: var(--radius-xl) 16px 0 0;
    }

    .carousel-caption {
        padding: var(--space-6);
        background: rgba(0, 0, 0, 0.6);
        border-radius: 0 0 16px 16px;
    }

    .carousel-caption h3 {
        font-size: 1.3rem;
        font-weight: 500;
        color: var(--text-white);
        margin: 0 0 8px 0;
    }

    .carousel-caption p {
        font-size: 1rem;
        color: #bbb;
        margin: 0;
        line-height: 1.5;
    }

    .carousel-btn {
        background: rgba(88, 115, 203, 0.2);
        border: 1px solid rgba(88, 115, 203, 0.3);
        border-radius: 50%;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        flex-shrink: 0;
        color: var(--text-white);
    }

    .carousel-btn:hover {
        background: rgba(88, 115, 203, 0.4);
        border-color: rgba(88, 115, 203, 0.5);
        transform: scale(1.1);
    }

    .carousel-btn .material-symbols-rounded {
        font-size: 28px;
    }

    .carousel-indicators {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 24px;
    }

    .indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(88, 115, 203, 0.2);
        border: 1px solid rgba(88, 115, 203, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .indicator:hover {
        background: rgba(88, 115, 203, 0.4);
        transform: scale(1.2);
    }

    .indicator.active {
        background: var(--brand-primary);
        border-color: var(--brand-primary);
        width: 32px;
        border-radius: var(--radius-sm-md);
    }

    /* Proof Section */
    .proof-section {
        background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
        padding: 60px 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .proof-section::before {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -20%;
        right: -20%;
        height: 100%;
        background:
            radial-gradient(ellipse at 50% 100%, rgba(217, 107, 138, 0.12), transparent 45%);
        pointer-events: none;
        filter: blur(100px);
    }

    .proof-content {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .proof-header {
        font-size: 2.2rem;
        font-weight: 500;
        margin-bottom: 2rem;
        background: linear-gradient(135deg, #D96B8A, #5873CB);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .proof-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .proof-stat {
        background: rgba(217, 107, 138, 0.05);
        border: 1px solid rgba(217, 107, 138, 0.2);
        border-radius: var(--radius-lg);
        padding: 30px 20px;
        transition: all 0.3s ease;
    }

    .proof-stat:hover {
        background: rgba(217, 107, 138, 0.08);
        border-color: rgba(217, 107, 138, 0.3);
        transform: scale(1.05);
    }

    .proof-number {
        font-size: 2.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, #D96B8A, #66bb6a);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 8px;
    }

    .proof-label {
        font-size: 1rem;
        color: #aaa;
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
        padding: var(--space-20) 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -10%;
        right: -10%;
        height: 150%;
        background:
            radial-gradient(ellipse at 50% 50%, rgba(88, 115, 203, 0.2), transparent 40%);
        pointer-events: none;
        filter: blur(100px);
    }

    .cta-content {
        max-width: 700px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .cta-header {
        font-size: 2.5rem;
        font-weight: 500;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #66bb6a, #5873CB);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .cta-subtitle {
        font-size: 1.2rem;
        color: var(--text-gray-900);
        margin-bottom: 2.5rem;
        line-height: 1.6;
    }

    .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-primary {
        background: linear-gradient(135deg, #5873CB, #66bb6a);
        color: var(--text-white);
        padding: var(--space-4) 36px;
        border-radius: var(--radius-md);
        font-size: 1.1rem;
        font-weight: 500;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-family: var(--font-primary);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(88, 115, 203, 0.4);
    }

    .btn-primary:active {
        transform: translateY(0);
    }

    .btn-secondary {
        background: transparent;
        color: #bbb;
        padding: var(--space-4) 36px;
        border-radius: var(--radius-md);
        font-size: 1.1rem;
        font-weight: 500;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        transition: all 0.3s ease;
        font-family: var(--font-primary);
    }

    .btn-secondary:hover {
        border-color: rgba(88, 115, 203, 0.5);
        color: var(--text-white);
        background: rgba(88, 115, 203, 0.1);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2.5rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }

        .pain-header,
        .solution-header,
        .benefits-header,
        .carousel-header,
        .proof-header,
        .cta-header {
            font-size: 1.8rem;
        }

        .how-it-works {
            grid-template-columns: 1fr;
        }

        .benefit-card {
            grid-template-columns: 1fr;
        }

        .carousel-container {
            flex-direction: column;
            gap: 12px;
        }

        .carousel-btn {
            display: none;
        }

        .carousel-caption h3 {
            font-size: 1.1rem;
        }

        .carousel-caption p {
            font-size: 0.9rem;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        .btn-primary,
        .btn-secondary {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
    }