.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-product-overview {
    padding: 100px 0;
    background: #FFFFFF;
}

.acmoney-product-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.acmoney-product-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FF 100%);
    padding: 48px 32px;
    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-product-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-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
    border-color: var(--acmoney-primary);
}

.acmoney-product-card:hover::before {
    transform: scaleX(1);
}

.acmoney-product-card-featured {
    background: linear-gradient(135deg, rgba(254, 131, 37, 0.05) 0%, rgba(255, 157, 77, 0.05) 100%);
    border: 2px solid var(--acmoney-primary);
    box-shadow: 0 16px 32px rgba(254, 131, 37, 0.1);
}

.acmoney-product-card-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.acmoney-product-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--acmoney-text-dark);
    line-height: 1.3;
}

.acmoney-product-card-value {
    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;
    line-height: 1;
    margin-bottom: 8px;
}

.acmoney-product-card-unit {
    font-size: 18px;
    font-weight: 500;
    color: var(--acmoney-primary);
    margin-bottom: 16px;
}

.acmoney-product-card-desc {
    font-size: 16px;
    color: var(--acmoney-text-light);
    line-height: 1.6;
    margin: 0;
}

.acmoney-interest-calculation {
    padding: 100px 0;
    background: #FAFBFC;
}

.acmoney-interest-calculation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.acmoney-calculation-steps {
    margin-top: 48px;
}

.acmoney-calculation-step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.acmoney-calculation-step:last-child {
    margin-bottom: 0;
}

.acmoney-calculation-step-number {
    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: 24px;
    font-weight: 700;
    color: #FFFFFF;
    flex-shrink: 0;
}

.acmoney-calculation-step-content {
    flex: 1;
    padding-top: 8px;
}

.acmoney-calculation-step-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--acmoney-text-dark);
    line-height: 1.3;
}

.acmoney-calculation-step-desc {
    font-size: 18px;
    color: var(--acmoney-text-light);
    line-height: 1.7;
    margin: 0;
}

.acmoney-calculator-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.acmoney-example {
    padding: 100px 0;
    background: #FFFFFF;
}

.acmoney-example-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FF 100%);
    border-radius: 24px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

.acmoney-example-header {
    background: linear-gradient(135deg, var(--acmoney-primary) 0%, var(--acmoney-secondary) 100%);
    padding: 32px 40px;
    color: #FFFFFF;
}

.acmoney-example-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.acmoney-example-content {
    padding: 40px;
}

.acmoney-example-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #E5E7EB;
}

.acmoney-example-item:last-child {
    border-bottom: none;
}

.acmoney-example-item-highlight {
    background: linear-gradient(135deg, rgba(254, 131, 37, 0.05) 0%, rgba(255, 157, 77, 0.05) 100%);
    margin: 0 -40px;
    padding: 24px 40px;
    border-bottom: 1px solid #E5E7EB;
    border-top: 1px solid #E5E7EB;
}

.acmoney-example-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--acmoney-text-dark);
    flex: 1;
}

.acmoney-example-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--acmoney-primary);
    text-align: right;
    flex: 1;
}

.acmoney-example-note {
    background: #FAFBFC;
    padding: 32px 40px;
    border-top: 1px solid #E5E7EB;
}

.acmoney-example-note p {
    font-size: 16px;
    color: var(--acmoney-text-light);
    line-height: 1.7;
    margin: 0;
}

.acmoney-comparison {
    padding: 100px 0;
    background: #FAFBFC;
}

.acmoney-comparison-table {
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

.acmoney-comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(135deg, var(--acmoney-primary) 0%, var(--acmoney-secondary) 100%);
    color: #FFFFFF;
}

.acmoney-comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 1px solid #E5E7EB;
}

.acmoney-comparison-cell {
    padding: 24px 32px;
    font-size: 16px;
    line-height: 1.6;
    border-right: 1px solid #E5E7EB;
}

.acmoney-comparison-cell:last-child {
    border-right: none;
}

.acmoney-comparison-cell-header {
    font-weight: 700;
    font-size: 18px;
    text-align: center;
}

.acmoney-comparison-cell-featured {
    background: linear-gradient(135deg, rgba(254, 131, 37, 0.05) 0%, rgba(255, 157, 77, 0.05) 100%);
    font-weight: 600;
    color: var(--acmoney-primary);
    text-align: center;
}

.acmoney-comparison-row .acmoney-comparison-cell:first-child {
    font-weight: 500;
    color: var(--acmoney-text-dark);
}

.acmoney-product-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--acmoney-primary) 0%, var(--acmoney-secondary) 100%);
    color: #FFFFFF;
    text-align: center;
}

.acmoney-product-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.acmoney-product-cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.acmoney-product-cta-desc {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .acmoney-product-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .acmoney-interest-calculation-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .acmoney-comparison-header,
    .acmoney-comparison-row {
        grid-template-columns: 1fr;
    }

    .acmoney-comparison-cell {
        border-right: none;
        border-bottom: 1px solid #E5E7EB;
    }

    .acmoney-comparison-cell:last-child {
        border-bottom: none;
    }
}

@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-product-overview,
    .acmoney-interest-calculation,
    .acmoney-example,
    .acmoney-comparison,
    .acmoney-product-cta {
        padding: 60px 0;
    }

    .acmoney-section-title {
        font-size: 32px;
    }

    .acmoney-product-cards {
        grid-template-columns: 1fr;
    }

    .acmoney-example-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .acmoney-example-value {
        text-align: left;
    }

    .acmoney-product-cta-title {
        font-size: 32px;
    }
}

