/* =========================================================
   ABOUT SECTION — REPLICA
   ========================================================= */

.about-section {
    min-height: 100vh;
    background: var(--cream);
    padding: 80px 42px 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}

/* Decorative elements */
.about-deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.about-deco-circle-1 {
    width: 20px;
    height: 20px;
    border: 2px solid var(--dark);
    border-radius: 50%;
    top: 120px;
    left: 60%;
}

.about-deco-circle-2 {
    width: 14px;
    height: 14px;
    border: 2px solid var(--dark);
    border-radius: 50%;
    top: 400px;
    right: 65%;
}

.about-deco-squiggle {
    font-size: 40px;
    color: var(--dark);
    top: 185px;
    right: 78%;
    font-weight: 300;
    opacity: 0.4;
}

.about-deco-arrow {
    font-size: 28px;
    color: var(--dark);
    top: 280px;
    left: 42%;
    opacity: 0.5;
    transform: rotate(20deg);
}

.about-deco-cross {
    font-size: 24px;
    color: var(--dark);
    opacity: 0.3;
    top: 750px;
    left: 10%;
}

.about-deco-dots {
    display: grid;
    grid-template-columns: repeat(3, 5px);
    gap: 4px;
    top: 220px;
    right: 22%;
}

.about-deco-dots span {
    width: 5px;
    height: 5px;
    background: var(--dark);
    border-radius: 50%;
    opacity: 0.25;
}

/* Content layout */
.about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 90vw;
    margin: 0 auto;
    width: 100%;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.about-left {
    flex: 1;
    max-width: 680px;
    padding-top: 20px;
}

/* Section label */
.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 24px;
}

.label-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    display: inline-block;
}

/* Title */
.about-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(48px, 5.5vw, 72px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--dark);
    margin-bottom: 28px;
}

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

/* Description */
.about-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

/* Stats row with icons */
.about-stats-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.about-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 80px;
}

.about-stat-icon {
    width: 50px;
    height: 50px;
    border: 1.5px solid var(--dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--dark);
    background: transparent;
}

.about-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--dark);
    text-align: center;
    letter-spacing: 0.3px;
}

.about-tags {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.about-tag {
    border: 1.5px solid var(--dark);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--dark);
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.about-tag:hover {
    background: var(--teal);
    color: var(--cream);
    border-color: var(--teal);
    box-shadow: 0 10px 25px rgba(26, 107, 90, 0.3);
}

/* Right side - character image */
.about-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 3400px;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 60px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-bottom-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    background: #1a3a3a;
    padding: 40px 60px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    z-index: 2;
}

.about-character {
    position: relative;
    width: 120%;
    max-width: 3600px;
    z-index: 1;
    filter: none;
    transform: translate(-150px, 50px);
    cursor: grab;
}

/* Speech bubble */
.about-speech-bubble {
    position: absolute;
    top: 20px;
    right: -20px;
    background: var(--cream);
    border: 2px solid var(--dark);
    border-radius: 16px;
    padding: 16px 20px;
    z-index: 2;
    transform: rotate(3deg);
}

.about-speech-bubble span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    font-style: italic;
}

.about-speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid var(--dark);
}

.about-speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 32px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--cream);
    z-index: 1;
}

/* =========================================================
   ABOUT RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
    .about-content {
        gap: 40px;
    }

    .about-title {
        font-size: clamp(40px, 5vw, 60px);
    }

    .about-orange-circle {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 800px) {
    .about-section {
        padding: 40px 20px 0;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .about-left {
        max-width: 100%;
    }

    .about-title {
        font-size: 9vw;
        letter-spacing: -1px;
    }

    .about-description {
        font-size: 13px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-stats-row {
        justify-content: center;
        gap: 20px;
    }

    .about-tags {
        justify-content: center;
    }

    .about-stat-icon {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .about-stat-label {
        font-size: 10px;
    }

    .about-tag {
        padding: 8px 18px;
        font-size: 10px;
    }

    .floating-logo {
        display: none;
    }

    .about-right {
        margin-top: 10px;
        overflow: visible;
    }

    .about-image-wrapper {
        max-width: 100%;
        overflow: visible;
        position: relative;
    }

    .about-character {
        width: 100%;
        max-width: 100%;
        transform: translate(0, 10px);
    }

    .about-image-wrapper::after {
        bottom: -10px;
        opacity: 0.4;
    }

    .about-speech-bubble {
        position: absolute;
        right: 10px;
        top: -30px;
        padding: 10px 14px;
        z-index: 10;
        width: fit-content;
        border-radius: 12px;
    }

    .about-speech-bubble span {
        font-size: 11px !important;
        line-height: 1.5;
        white-space: nowrap;
    }

    .about-image-wrapper::after {
        bottom: -30px;
        opacity: 0.4;
    }

    .about-deco {
        display: none;
    }

    .about-bottom-stats {
        position: relative;
        left: auto;
        transform: none;
        width: 100%;
    }
}

@media (max-width: 500px) {
    .about-title {
        font-size: 10vw;
    }

    .about-stats-row {
        gap: 14px;
    }

    .about-stat-item {
        min-width: 60px;
    }

    .about-stat-icon {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .about-tag {
        padding: 7px 14px;
        font-size: 9px;
    }

    .about-speech-bubble {
        padding: 10px 14px;
    }

    .about-speech-bubble span {
        font-size: 11px;
    }
}