.acmoney-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #1A0F0A 0%, #2D1A0F 30%, #3D2415 60%, #2D1A0F 100%);
}

.acmoney-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.acmoney-shape-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(254, 131, 37, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    filter: blur(80px);
}

.acmoney-shape-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 157, 77, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    filter: blur(80px);
}

.acmoney-shape-3 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 179, 102, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
}

.acmoney-hero .acmoney-container {
    position: relative;
    z-index: 2;
}

.acmoney-hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.acmoney-hero-content {
    color: #FFFFFF;
}

.acmoney-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(254, 131, 37, 0.15);
    border: 1px solid rgba(254, 131, 37, 0.3);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #FFB366;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.acmoney-hero-title {
    margin-bottom: 24px;
}

.acmoney-hero-title-main {
    display: block;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFE5D4 50%, #FFD4B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.acmoney-hero-title-sub {
    display: block;
    font-size: 32px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
}

.acmoney-hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.acmoney-hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.acmoney-hero-stat {
    flex: 1;
}

.acmoney-hero-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1;
}

.acmoney-hero-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.acmoney-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.acmoney-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.acmoney-hero-phone-wrapper {
    position: relative;
    filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.4));
}

.acmoney-hero-phone {
    max-width: 100%;
    height: auto;
    display: block;
}

.acmoney-advantages {
    padding: 140px 0;
    background: #FAFBFC;
}

.acmoney-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.acmoney-section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--acmoney-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.acmoney-section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--acmoney-text-dark);
    margin: 0;
}

.acmoney-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.acmoney-advantage-card {
    background: #FFFFFF;
    padding: 48px 32px;
    border-radius: 24px;
    border: 1px solid #E5E7EB;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.acmoney-advantage-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-advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.acmoney-advantage-card:hover::before {
    transform: scaleX(1);
}

.acmoney-advantage-card-featured {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FF 100%);
    border: 2px solid var(--acmoney-primary);
    box-shadow: 0 16px 32px rgba(254, 131, 37, 0.1);
}

.acmoney-advantage-icon-wrapper {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(254, 131, 37, 0.1) 0%, rgba(255, 157, 77, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.acmoney-advantage-card:hover .acmoney-advantage-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(254, 131, 37, 0.15) 0%, rgba(255, 157, 77, 0.15) 100%);
}

.acmoney-advantage-icon {
    font-size: 40px;
    line-height: 1;
    display: block;
}

.acmoney-advantage-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--acmoney-text-dark);
    line-height: 1.3;
}

.acmoney-advantage-desc {
    font-size: 16px;
    color: var(--acmoney-text-light);
    line-height: 1.6;
    margin: 0;
}

.acmoney-features {
    padding: 140px 0;
    background: #FFFFFF;
}

.acmoney-features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.acmoney-features-visual {
    position: relative;
}

.acmoney-features-image {
    width: 100%;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.12);
}

.acmoney-features-content {
    padding-left: 40px;
}

.acmoney-features-list {
    margin: 48px 0;
}

.acmoney-feature-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.acmoney-feature-item:last-child {
    margin-bottom: 0;
}

.acmoney-feature-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--acmoney-primary);
    min-width: 40px;
    padding-top: 4px;
}

.acmoney-feature-text {
    flex: 1;
}

.acmoney-feature-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--acmoney-text-dark);
    line-height: 1.3;
}

.acmoney-feature-desc {
    font-size: 18px;
    color: var(--acmoney-text-light);
    line-height: 1.6;
    margin: 0;
}

.acmoney-process {
    padding: 140px 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
}

.acmoney-process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.acmoney-process-step {
    position: relative;
}

.acmoney-process-step-content {
    background: #FFFFFF;
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid #E5E7EB;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.acmoney-process-step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(254, 131, 37, 0.03) 0%, rgba(255, 157, 77, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.acmoney-process-step:hover .acmoney-process-step-content {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
    border-color: var(--acmoney-primary);
}

.acmoney-process-step:hover .acmoney-process-step-content::before {
    opacity: 1;
}

.acmoney-process-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;
    margin-bottom: 20px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.acmoney-process-text {
    position: relative;
    z-index: 1;
}

.acmoney-process-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--acmoney-text-dark);
    line-height: 1.3;
}

.acmoney-process-desc {
    font-size: 16px;
    color: var(--acmoney-text-light);
    line-height: 1.6;
    margin: 0;
}

.acmoney-process-cta {
    text-align: center;
}

.acmoney-trust {
    padding: 140px 0;
    background: #FFFFFF;
}

.acmoney-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.acmoney-trust-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FF 100%);
    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-trust-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(254, 131, 37, 0.05) 0%, rgba(255, 157, 77, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.acmoney-trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
    border-color: var(--acmoney-primary);
}

.acmoney-trust-card:hover::after {
    opacity: 1;
}

.acmoney-trust-icon {
    width: 56px;
    height: 56px;
    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: 28px;
    color: #FFFFFF;
    margin: 0 auto 24px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.acmoney-trust-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--acmoney-primary);
    position: relative;
    z-index: 1;
}

.acmoney-trust-desc {
    font-size: 16px;
    color: var(--acmoney-text-light);
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.acmoney-trust-desc:last-child {
    margin-bottom: 0;
}

.acmoney-trust-cta {
    text-align: center;
}

.acmoney-contact-preview {
    padding: 140px 0;
    background: linear-gradient(180deg, #1A0F0A 0%, #2D1A0F 30%, #3D2415 60%, #2D1A0F 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.acmoney-contact-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(254, 131, 37, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.acmoney-contact-preview-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.acmoney-section-label-light {
    color: rgba(255, 255, 255, 0.7);
}

.acmoney-contact-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.acmoney-contact-subtitle {
    font-size: 20px;
    margin-bottom: 48px;
    opacity: 0.8;
    line-height: 1.7;
    font-weight: 400;
}

.acmoney-contact-info {
    margin-bottom: 48px;
}

.acmoney-contact-info-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.acmoney-contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.acmoney-contact-info-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.acmoney-contact-info-value {
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.5;
}

.acmoney-contact-image {
    width: 100%;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1200px) {
    .acmoney-hero-wrapper {
        gap: 60px;
    }

    .acmoney-hero-title-main {
        font-size: 56px;
    }

    .acmoney-features-wrapper {
        gap: 60px;
    }
}

@media (max-width: 968px) {
    .acmoney-hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .acmoney-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .acmoney-hero-title-main {
        font-size: 48px;
    }

    .acmoney-hero-title-sub {
        font-size: 24px;
    }

    .acmoney-hero-stats {
        justify-content: center;
        gap: 32px;
    }

    .acmoney-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .acmoney-features-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .acmoney-features-content {
        padding-left: 0;
    }

    .acmoney-process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .acmoney-contact-preview-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .acmoney-section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .acmoney-hero {
        padding: 120px 0 60px;
    }

    .acmoney-hero-title-main {
        font-size: 36px;
    }

    .acmoney-hero-title-sub {
        font-size: 20px;
    }

    .acmoney-hero-subtitle {
        font-size: 18px;
    }

    .acmoney-hero-stats {
        flex-direction: column;
        gap: 24px;
        text-align: left;
    }

    .acmoney-hero-buttons {
        flex-direction: column;
    }

    .acmoney-hero-buttons .acmoney-btn {
        width: 100%;
    }

    .acmoney-advantages,
    .acmoney-features,
    .acmoney-process,
    .acmoney-trust,
    .acmoney-contact-preview {
        padding: 80px 0;
    }

    .acmoney-section-title {
        font-size: 32px;
    }

    .acmoney-advantages-grid {
        grid-template-columns: 1fr;
    }

    .acmoney-process-timeline {
        grid-template-columns: 1fr;
    }

    .acmoney-trust-grid {
        grid-template-columns: 1fr;
    }

    .acmoney-contact-title {
        font-size: 36px;
    }
}
