.acmoney-page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #1A0F0A 0%, #2D1A0F 30%, #3D2415 60%, #2D1A0F 100%);
    position: relative;
    overflow: hidden;
}

.acmoney-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(254, 131, 37, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.acmoney-page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #FFFFFF;
    max-width: 800px;
    margin: 0 auto;
}

.acmoney-page-hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 24px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFE5D4 50%, #FFD4B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.acmoney-page-hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.acmoney-about-intro {
    padding: 100px 0;
    background: #FFFFFF;
}

.acmoney-about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.acmoney-about-intro-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--acmoney-text-dark);
    line-height: 1.2;
}

.acmoney-about-intro-desc {
    font-size: 18px;
    line-height: 1.8;
    color: var(--acmoney-text-light);
    margin-bottom: 24px;
}

.acmoney-about-intro-desc:last-child {
    margin-bottom: 0;
}

.acmoney-about-intro-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.acmoney-credentials {
    padding: 100px 0;
    background: #FAFBFC;
}

.acmoney-credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.acmoney-credential-card {
    background: #FFFFFF;
    padding: 48px 40px;
    border-radius: 24px;
    border: 1px solid #E5E7EB;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.acmoney-credential-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--acmoney-primary) 0%, var(--acmoney-secondary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.acmoney-credential-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
    border-color: var(--acmoney-primary);
}

.acmoney-credential-card:hover::before {
    transform: scaleX(1);
}

.acmoney-credential-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--acmoney-primary) 0%, var(--acmoney-secondary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #FFFFFF;
    margin: 0 auto 24px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.acmoney-credential-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--acmoney-primary);
    position: relative;
    z-index: 1;
}

.acmoney-credential-desc {
    font-size: 16px;
    color: var(--acmoney-text-light);
    margin-bottom: 12px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.acmoney-credential-desc:last-child {
    margin-bottom: 0;
}

.acmoney-credentials-cta {
    text-align: center;
}

.acmoney-advantages-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.acmoney-advantages-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.acmoney-advantage-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 40px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FF 100%);
    border-radius: 24px;
    border: 1px solid #E5E7EB;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.acmoney-advantage-item:hover {
    transform: translateX(8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--acmoney-primary);
}

.acmoney-advantage-item-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--acmoney-primary) 0%, var(--acmoney-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
    flex-shrink: 0;
}

.acmoney-advantage-item-content {
    flex: 1;
}

.acmoney-advantage-item-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--acmoney-text-dark);
    line-height: 1.3;
}

.acmoney-advantage-item-desc {
    font-size: 18px;
    color: var(--acmoney-text-light);
    line-height: 1.7;
    margin: 0;
}

.acmoney-timeline {
    padding: 100px 0;
    background: #FAFBFC;
}

.acmoney-timeline-items {
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
    padding-left: 120px;
}

.acmoney-timeline-items::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--acmoney-primary) 0%, var(--acmoney-secondary) 100%);
}

.acmoney-timeline-item {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    position: relative;
}

.acmoney-timeline-item::before {
    content: '';
    position: absolute;
    left: -82px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--acmoney-primary);
    border-radius: 50%;
    border: 4px solid #FAFBFC;
    box-shadow: 0 0 0 4px var(--acmoney-primary);
}

.acmoney-timeline-year {
    font-size: 32px;
    font-weight: 700;
    color: var(--acmoney-primary);
    min-width: 80px;
    flex-shrink: 0;
}

.acmoney-timeline-content {
    flex: 1;
    background: #FFFFFF;
    padding: 32px 40px;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.acmoney-timeline-item:hover .acmoney-timeline-content {
    transform: translateX(8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--acmoney-primary);
}

.acmoney-timeline-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--acmoney-text-dark);
    line-height: 1.3;
}

.acmoney-timeline-desc {
    font-size: 16px;
    color: var(--acmoney-text-light);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 968px) {
    .acmoney-about-intro-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .acmoney-credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .acmoney-timeline-items {
        padding-left: 80px;
    }
}

@media (max-width: 768px) {
    .acmoney-page-hero {
        padding: 120px 0 60px;
    }

    .acmoney-page-hero-title {
        font-size: 36px;
    }

    .acmoney-page-hero-subtitle {
        font-size: 18px;
    }

    .acmoney-about-intro,
    .acmoney-credentials,
    .acmoney-advantages-section,
    .acmoney-timeline {
        padding: 60px 0;
    }

    .acmoney-section-title {
        font-size: 32px;
    }

    .acmoney-credentials-grid {
        grid-template-columns: 1fr;
    }

    .acmoney-advantage-item {
        flex-direction: column;
        gap: 20px;
        padding: 32px 24px;
    }

    .acmoney-timeline-items {
        padding-left: 60px;
    }

    .acmoney-timeline-item {
        flex-direction: column;
        gap: 20px;
    }

    .acmoney-timeline-item::before {
        left: -42px;
    }
}

