.about-page {
    overflow-x: hidden;
}

/* Common Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

/* Hero Section */
.about-hero {
    height: 85vh;
    min-height: 700px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%),
        url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=2070') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    padding-top: 100px;
}

.hero-content {
    max-width: 800px;
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary, #de1f7f);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(222, 31, 127, 0.3);
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-title strong {
    font-weight: 800;
    color: var(--primary, #de1f7f);
}

.hero-desc {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    word-break: keep-all;
}

.hero-scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0.6;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 15px);
    }
}

/* Brand Story Section */
.brand-story {
    padding: 150px 0;
    background-color: #fcfcfc;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image {
    position: relative;
}

.image-box {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.1);
}

.image-box img {
    width: 100%;
    display: block;
    transition: transform 1s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.experience-tag {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #111;
    color: #fff;
    padding: 40px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.experience-tag strong {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary, #de1f7f);
    line-height: 1;
}

.experience-tag span {
    font-size: 14px;
    opacity: 0.6;
    margin-top: 5px;
    white-space: nowrap;
}

.story-text .sub-title,
.section-header .sub-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary, #de1f7f);
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.main-title {
    font-size: 44px;
    font-weight: 800;
    color: #111;
    line-height: 1.3;
    margin-bottom: 35px;
    letter-spacing: -1.5px;
}

.highlight {
    color: var(--primary, #de1f7f);
}

.story-text .desc {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 50px;
    word-break: keep-all;
}

.story-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.point-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.point-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary, #de1f7f);
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.point-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.point-info p {
    font-size: 15px;
    color: #777;
}

/* Core Values Section */
.core-values {
    padding: 150px 0;
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    padding: 60px 40px;
    background: #f8faff;
    border-radius: 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #edf2f7;
}

.value-card:hover {
    background: #fff;
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 51, 102, 0.08);
    border-color: var(--primary, #de1f7f);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--primary, #de1f7f);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.value-card h4 {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

.value-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    word-break: keep-all;
}

/* Services Section */
.about-services {
    padding: 150px 0;
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-item {
    position: relative;
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    transition: opacity 0.4s ease;
}

.service-item:hover .service-bg {
    transform: scale(1.1);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 2;
    color: #fff;
    transition: transform 0.4s ease;
}

.service-item:hover .service-content {
    transform: translateY(-10px);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--primary, #de1f7f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(222, 31, 127, 0.3);
}

.service-content h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
    word-break: keep-all;
}

/* Process Section */
.about-process {
    padding: 150px 0;
    background-color: #f8faff;
}

.process-flow {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 0;
}

.flow-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #de1f7f, transparent);
    transform: translateX(-50%);
    opacity: 0.2;
}

.process-node {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    margin-bottom: 80px;
    position: relative;
    width: 100%;
}

.process-node:nth-child(odd) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.node-num {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #fff;
    border: 2px solid #de1f7f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #de1f7f;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(222, 31, 127, 0.1);
}

.node-content {
    width: 80%;
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 51, 102, 0.05);
    margin-right: 50px;
    text-align: right;
    transition: all 0.4s ease;
    border: 1px solid #edf2f7;
}

.process-node:nth-child(odd) .node-content {
    margin-right: 0;
    margin-left: 50px;
    text-align: left;
}

.node-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(222, 31, 127, 0.1);
    border-color: #de1f7f;
}

.node-content h5 {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.node-content p {
    font-size: 15px;
    color: #666;
}

@media (max-width: 1024px) {
    .about-hero {
        height: 60vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 42px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .experience-tag {
        padding: 25px;
        bottom: -20px;
        right: 20px;
    }

    .experience-tag strong {
        font-size: 36px;
    }

    .main-title {
        font-size: 34px;
    }

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

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 50px;
    }

    .about-hero {
        height: 50vh;
        padding-top: 80px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .brand-story,
    .core-values,
    .about-services,
    .about-process {
        padding: 80px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 40px 25px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        height: 350px;
    }

    .flow-line {
        left: 20px;
    }

    .process-node,
    .process-node:nth-child(odd) {
        padding-left: 60px !important;
        padding-right: 0 !important;
        margin-bottom: 40px;
        width: 100% !important;
        display: block !important;
    }

    .node-num {
        left: 20px;
        width: 44px;
        height: 44px;
        font-size: 15px;
        transform: translateX(0);
    }

    .node-content,
    .process-node:nth-child(odd) .node-content {
        width: 100% !important;
        padding: 25px;
        margin: 0 !important;
        text-align: left !important;
    }

    .node-content h5 {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .main-title {
        font-size: 28px;
    }

    .story-text .desc {
        font-size: 16px;
    }

    .experience-tag {
        padding: 20px;
        right: 10px;
    }

    .experience-tag strong {
        font-size: 28px;
    }
}
