* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sarabun', 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.acmoney-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.acmoney-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.acmoney-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.acmoney-section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.acmoney-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    overflow: hidden;
}

.acmoney-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.acmoney-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.acmoney-hero-text {
    color: white;
}

.acmoney-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.acmoney-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fbbf24;
}

.acmoney-hero-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: #e5e7eb;
    line-height: 1.8;
}

.acmoney-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.acmoney-hero-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.acmoney-investment-strategy {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.acmoney-strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.acmoney-strategy-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.acmoney-strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.acmoney-strategy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.acmoney-strategy-card:hover::before {
    transform: scaleX(1);
}

.acmoney-strategy-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.acmoney-strategy-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.acmoney-strategy-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.acmoney-strategy-card h3 {
    font-family: 'Roboto', 'SF Pro Display', 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.acmoney-strategy-card p {
    color: #666;
    line-height: 1.6;
}

.acmoney-investment-products {
    padding: 6rem 0;
    background: white;
}

.acmoney-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.acmoney-product-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.acmoney-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.acmoney-product-image {
    height: 200px;
    overflow: hidden;
}

.acmoney-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.acmoney-product-card:hover .acmoney-product-image img {
    transform: scale(1.1);
}

.acmoney-product-content {
    padding: 2rem;
}

.acmoney-product-content h3 {
    font-family: 'Roboto', 'SF Pro Display', 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.acmoney-product-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.acmoney-product-features {
    list-style: none;
}

.acmoney-product-features li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.acmoney-product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.acmoney-risk-control {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.acmoney-risk-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.acmoney-risk-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.acmoney-risk-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.acmoney-risk-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.acmoney-risk-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.acmoney-risk-details h3 {
    font-family: 'Roboto', 'SF Pro Display', 'Helvetica Neue', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.acmoney-risk-details p {
    color: #666;
    line-height: 1.6;
}

.acmoney-risk-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.acmoney-risk-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.acmoney-performance {
    padding: 6rem 0;
    background: white;
}

.acmoney-performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.acmoney-performance-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.acmoney-performance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.acmoney-performance-number {
    font-family: 'Roboto', 'SF Pro Display', 'Helvetica Neue', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.acmoney-performance-card h3 {
    font-family: 'Roboto', 'SF Pro Display', 'Helvetica Neue', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.acmoney-performance-card p {
    color: #666;
    line-height: 1.6;
}

.acmoney-service-process {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.acmoney-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.acmoney-process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.acmoney-process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.acmoney-process-step h3 {
    font-family: 'Roboto', 'SF Pro Display', 'Helvetica Neue', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.acmoney-process-step p {
    color: #666;
    line-height: 1.6;
}

.acmoney-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.acmoney-cta-title {
    font-family: 'Roboto', 'SF Pro Display', 'Helvetica Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.acmoney-cta-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.acmoney-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.acmoney-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.acmoney-btn-primary {
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.acmoney-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.acmoney-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.acmoney-btn-secondary:hover {
    background: white;
    color: #1e3a8a;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .acmoney-container {
        padding: 0 2rem;
    }
    
    .acmoney-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .acmoney-hero-title {
        font-size: 2.5rem;
    }
    
    .acmoney-section-title {
        font-size: 2rem;
    }
    
    .acmoney-strategy-grid,
    .acmoney-products-grid {
        grid-template-columns: 1fr;
    }
    
    .acmoney-risk-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .acmoney-performance-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .acmoney-process-steps {
        grid-template-columns: 1fr;
    }
    
    .acmoney-cta-title {
        font-size: 2rem;
    }
    
    .acmoney-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .acmoney-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
} 