/* ── Hero Section ── */
    .hero-section {
        position: relative;
        min-height: 85vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #FFF9FB 0%, #FFFFFF 50%, #FFF9FB 100%);
        overflow: hidden;
        padding: 8rem 2rem 6rem;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 70%;
        height: 150%;
        background: radial-gradient(circle, rgba(208, 143, 168, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .hero-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
        text-align: center;
    }

    .hero-badge {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        color: #FFFFFF;
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 2rem;
        box-shadow: 0 4px 16px rgba(208, 143, 168, 0.3);
    }

    .hero-title {
        font-size: 4.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, #1A1A1A 0%, #D08FA8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        color: #666666;
        max-width: 800px;
        margin: 0 auto 3rem;
        line-height: 1.6;
    }

    .hero-tagline {
        font-size: 2rem;
        font-weight: 700;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 3rem;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 3rem;
        max-width: 900px;
        margin: 4rem auto 0;
    }

    .stat-item {
        text-align: center;
    }

    .stat-item__number {
        font-size: 3rem;
        font-weight: 800;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.5rem;
    }

    .stat-item__label {
        font-size: 1rem;
        color: #666666;
        font-weight: 600;
    }

    /* ── Story Section ── */
    .story-section {
        padding: 8rem 2rem;
        background: #FFFFFF;
    }

    .story-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
    }

    .story-content__badge {
        display: inline-block;
        padding: 0.5rem 1rem;
        background: #FFF9FB;
        color: #D08FA8;
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .story-content__title {
        font-size: 3rem;
        font-weight: 800;
        color: #1A1A1A;
        margin-bottom: 2rem;
        line-height: 1.2;
    }

    .story-content__text {
        font-size: 1.125rem;
        color: #666666;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .story-content__highlight {
        padding: 2rem;
        background: linear-gradient(135deg, #FFF9FB 0%, #FFFFFF 100%);
        border-left: 4px solid #D08FA8;
        border-radius: 12px;
        margin-top: 2rem;
    }

    .story-content__quote {
        font-size: 1.25rem;
        font-style: italic;
        color: #1A1A1A;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .story-content__author {
        font-size: 1rem;
        color: #D08FA8;
        font-weight: 700;
    }

    .story-visual {
        position: relative;
    }

    .story-visual__image {
        width: 100%;
        height: 600px;
        border-radius: 24px;
        object-fit: cover;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }

    .story-visual__decoration {
        position: absolute;
        width: 200px;
        height: 200px;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        border-radius: 50%;
        opacity: 0.15;
        z-index: -1;
    }

    .story-visual__decoration--top {
        top: -50px;
        right: -50px;
    }

    .story-visual__decoration--bottom {
        bottom: -50px;
        left: -50px;
    }

    /* ── Values Section ── */
    .values-section {
        padding: 8rem 2rem;
        background: linear-gradient(180deg, #FFF9FB 0%, #FFFFFF 100%);
    }

    .values-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .values-header {
        text-align: center;
        margin-bottom: 5rem;
    }

    .values-header__title {
        font-size: 3rem;
        font-weight: 800;
        color: #1A1A1A;
        margin-bottom: 1rem;
    }

    .values-header__subtitle {
        font-size: 1.25rem;
        color: #666666;
        max-width: 700px;
        margin: 0 auto;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
    }

    .value-card {
        background: #FFFFFF;
        padding: 3rem;
        border-radius: 24px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .value-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .value-card:hover::before {
        transform: scaleX(1);
    }

    .value-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 32px rgba(208, 143, 168, 0.2);
    }

    .value-card__icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #FFF9FB 0%, #F5F5F5 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #D08FA8;
        margin-bottom: 2rem;
    }

    .value-card__title {
        font-size: 1.75rem;
        font-weight: 800;
        color: #1A1A1A;
        margin-bottom: 1rem;
    }

    .value-card__text {
        font-size: 1rem;
        color: #666666;
        line-height: 1.7;
    }

    /* ── Team Section ── */
    .team-section {
        padding: 8rem 2rem;
        background: #FFFFFF;
    }

    .team-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .team-header {
        text-align: center;
        margin-bottom: 5rem;
    }

    .team-header__title {
        font-size: 3rem;
        font-weight: 800;
        color: #1A1A1A;
        margin-bottom: 1rem;
    }

    .team-header__subtitle {
        font-size: 1.25rem;
        color: #666666;
        max-width: 700px;
        margin: 0 auto;
    }

    .team-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
    }

    .team-text {
        font-size: 1.125rem;
        color: #666666;
        line-height: 1.8;
    }

    .team-text__highlight {
        font-size: 1.5rem;
        font-weight: 700;
        color: #D08FA8;
        margin: 2rem 0;
        line-height: 1.4;
    }

    .team-features {
        display: grid;
        gap: 2rem;
    }

    .team-feature {
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 2rem;
        background: linear-gradient(135deg, #FFF9FB 0%, #FFFFFF 100%);
        border-radius: 16px;
        transition: all 0.3s ease;
    }

    .team-feature:hover {
        transform: translateX(8px);
        box-shadow: 0 4px 16px rgba(208, 143, 168, 0.15);
    }

    .team-feature__icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        flex-shrink: 0;
    }

    .team-feature__content {
        flex: 1;
    }

    .team-feature__title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1A1A1A;
        margin-bottom: 0.5rem;
    }

    .team-feature__text {
        font-size: 1rem;
        color: #666666;
        line-height: 1.6;
    }

    /* ── Mission Section ── */
    .mission-section {
        padding: 8rem 2rem;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        color: #FFFFFF;
        position: relative;
        overflow: hidden;
    }

    .mission-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -25%;
        width: 80%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

    .mission-container {
        max-width: 1000px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .mission-icon {
        width: 100px;
        height: 100px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 2rem;
    }

    .mission-title {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 2rem;
        line-height: 1.2;
    }

    .mission-text {
        font-size: 1.5rem;
        line-height: 1.8;
        opacity: 0.95;
        margin-bottom: 3rem;
    }

    .mission-cta {
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        padding: 1.25rem 3rem;
        background: #FFFFFF;
        color: #D08FA8;
        border-radius: 50px;
        font-size: 1.125rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .mission-cta:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    }

    /* ── CTA Section ── */
    .cta-section {
        padding: 6rem 2rem;
        background: #FFFFFF;
    }

    .cta-container {
        max-width: 1200px;
        margin: 0 auto;
        background: linear-gradient(135deg, #FFF9FB 0%, #FFE8F0 100%);
        border-radius: 32px;
        padding: 5rem 4rem;
        text-align: center;
        box-shadow: 0 12px 40px rgba(208, 143, 168, 0.15);
    }

    .cta-title {
        font-size: 3rem;
        font-weight: 800;
        color: #1A1A1A;
        margin-bottom: 1.5rem;
    }

    .cta-subtitle {
        font-size: 1.25rem;
        color: #666666;
        margin-bottom: 3rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1.25rem 2.5rem;
        border-radius: 50px;
        font-size: 1.125rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .cta-button--primary {
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        color: #FFFFFF;
        box-shadow: 0 4px 16px rgba(208, 143, 168, 0.3);
    }

    .cta-button--primary:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(208, 143, 168, 0.4);
    }

    .cta-button--secondary {
        background: #FFFFFF;
        color: #D08FA8;
        border: 2px solid #D08FA8;
    }

    .cta-button--secondary:hover {
        background: #D08FA8;
        color: #FFFFFF;
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }

        .hero-subtitle {
            font-size: 1.125rem;
        }

        .hero-tagline {
            font-size: 1.5rem;
        }

        .hero-stats {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .story-container,
        .team-content {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .story-visual__image {
            height: 400px;
        }

        .values-grid {
            grid-template-columns: 1fr;
        }

        .story-content__title,
        .values-header__title,
        .team-header__title,
        .cta-title {
            font-size: 2rem;
        }

        .mission-title {
            font-size: 2.5rem;
        }

        .mission-text {
            font-size: 1.25rem;
        }

        .cta-buttons {
            flex-direction: column;
        }

        .cta-button {
            width: 100%;
            justify-content: center;
        }
    }