/* =========================================================
   HOW WE WORK SECTION
   ========================================================= */

.connect-section {
    background: var(--cream);
    padding: 80px 42px;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

/* === IMAGE — adjust top/right/width here === */
.connect-character {
    position: absolute;
    top: -50px;
    right: 160px;
    width: 620px;
    z-index: 2;
    pointer-events: none;
}

.connect-character-2 {
    position: absolute;
    top: 700px;
    left: 50px;
    width: 300px;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

.connect-content {
    max-width: 90vw;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.connect-header {
    margin-bottom: 200px;
}

.connect-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    color: var(--dark);
}

.connect-highlight {
    color: var(--orange);
}

/* =========================================================
   STEPS
   ========================================================= */

.connect-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.connect-step {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px 24px;
    background: #1a3a3a;
    border-radius: 16px;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.connect-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(26, 58, 58, 0.4);
}

.step-number {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
}

.connect-step h3 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--cream);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.connect-step p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* =========================================================
   HOW WE WORK RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
    .connect-character {
        width: 250px;
        right: 30px;
    }

    .connect-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    .connect-section.page {
        overflow: visible;
    }

    .connect-section {
        padding: 60px 20px;
        z-index: 5;
        position: relative;
    }

    .connect-character {
        width: 180px;
        top: -120px;
        right: 10px;
    }

    .connect-character-2 {
        display: none;
    }

    .connect-header {
        margin-bottom: 40px;
    }

    .connect-steps {
        grid-template-columns: 1fr;
    }

    .connect-title {
        font-size: 10vw;
    }
}

@media (max-width: 500px) {
    .connect-character {
        width: 140px;
        top: -10px;
        right: 5px;
    }
}