/* 金融页面样式 - 与首页保持一致 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
    background: linear-gradient(135deg, #f7fbff 0%, #eaf6ff 100%);
    color: #1a2236;
    min-height: 100vh;
}

/* 导航栏样式 - 与首页保持一致 */
.SASIPORN-navbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 48px;
    height: 80px;
    background: linear-gradient(90deg, #fafdff 0%, #e6f0fa 60%, #eaf3fb 100%);
    box-shadow: 0 2px 12px 0 rgba(30, 200, 231, 0.04);
    border-bottom: 1.5px solid #e3eaf2;
    position: relative;
    z-index: 10;
}

.SASIPORN-navbar-menu {
    display: flex;
    gap: 36px;
}

.SASIPORN-navbar-menu a {
    color: #1a2a3a;
    font-size: 1.13rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-bottom 0.2s;
}

.SASIPORN-navbar-menu a:hover,
.SASIPORN-navbar-menu a.active {
    color: #1ec8e7;
    border-bottom: 2px solid #1ec8e7;
}

/* 主要内容区域 */
main {
    min-height: 100vh;
}

/* 英雄区域 - 与首页保持一致 */
.SASIPORN-hero {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    margin-bottom: 80px;
    background: linear-gradient(135deg, #f7fbff 0%, #eaf6ff 100%);
}

.SASIPORN-hero-bg-svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 320px;
    z-index: 1;
    pointer-events: none;
}

.SASIPORN-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0 80px 0;
}

.SASIPORN-hero-left {
    flex: 1 1 520px;
    max-width: 600px;
    color: #1a2236;
    text-align: left;
}

.SASIPORN-hero-left h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 28px;
    letter-spacing: 1.5px;
    line-height: 1.12;
    color: #1a2236;
}

.SASIPORN-hero-left p {
    font-size: 1.18rem;
    font-weight: 400;
    margin-bottom: 48px;
    letter-spacing: 0.5px;
    color: #5b6b7a;
}

.SASIPORN-hero-cta-row {
    margin-top: 38px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.SASIPORN-hero-cta {
    display: inline-flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 800;
    padding: 20px 54px;
    border-radius: 18px;
    background: linear-gradient(90deg, #1ec8e7 10%, #1a2236 90%);
    color: #fff;
    border: none;
    box-shadow: 0 8px 32px rgba(30, 200, 231, 0.13);
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    margin-bottom: 10px;
    text-decoration: none;
}

.SASIPORN-hero-cta:hover {
    background: linear-gradient(90deg, #1a2236 10%, #1ec8e7 90%);
    color: #fff;
    box-shadow: 0 16px 48px rgba(30, 200, 231, 0.22);
    transform: translateY(-2px) scale(1.05);
}

.SASIPORN-hero-cta-tip {
    font-size: 1.05rem;
    color: #5a6a7a;
    margin-top: 2px;
    opacity: 0.85;
    text-align: left;
    font-weight: 500;
}

.SASIPORN-hero-right {
    flex: 1 1 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.SASIPORN-hero-right img {
    width: 300px;
    object-fit: contain;
    border-radius: 30px;
    /* box-shadow: 0 8px 32px rgba(30, 200, 231, 0.10);
    background: #fff; */
}

/* 通用区域样式 - 与首页保持一致 */
.SASIPORN-section {
    max-width: 1400px;
    margin: 0 auto 110px auto;
    padding: 0 100px;
    position: relative;
}

.SASIPORN-section-title-row {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-bottom: 56px;
    position: relative;
}

.SASIPORN-section-title-row h1,
.SASIPORN-section-title-row h2 {
    font-size: 2.7rem;
    font-weight: 900;
    color: #1a2236;
    margin: 0;
    letter-spacing: 1.5px;
    line-height: 1.1;
    background: linear-gradient(90deg, #1ec8e7 10%, #1a2236 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section geometric SVG background - 与首页保持一致 */
.SASIPORN-section::before {
    content: '';
    position: absolute;
    left: -80px;
    top: 40px;
    width: 220px;
    height: 120px;
    background: url('img/section-bg.svg') no-repeat center center/contain;
    opacity: 0.10;
    z-index: 0;
    pointer-events: none;
}

.SASIPORN-section:nth-child(even)::before {
    left: auto;
    right: -80px;
    top: 60px;
    transform: scaleX(-1);
}

/* 关于ฟินสุข区域 */
.finance-description-content {
    max-width: 800px;
    margin: 0 auto;
}

.finance-main-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #475569;
    text-align: center;
}

/* 功能特色区域 - 使用首页的卡片样式 */
.finance-features-grid {
    display: flex;
    gap: 72px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.finance-feature-item {
    background: linear-gradient(120deg, #fafdff 60%, #e6f0fa 100%);
    border-radius: 44px;
    box-shadow: 0 12px 40px rgba(30, 200, 231, 0.10);
    padding: 64px 48px 56px 48px;
    flex: 1 1 340px;
    min-width: 320px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
    border: none;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
    z-index: 1;
    animation: fadeUp 0.8s cubic-bezier(.4, 1.4, .6, 1) both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.finance-feature-item:hover {
    box-shadow: 0 16px 48px rgba(30, 200, 231, 0.18);
    transform: translateY(-4px) scale(1.02);
}

.finance-feature-icon {
    font-size: 3rem;
    margin-bottom: 28px;
    color: #1ec8e7;
}

.finance-feature-item h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1ec8e7;
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.finance-feature-item p {
    font-size: 1.13rem;
    font-weight: 500;
    color: #1a2236;
    text-align: center;
    opacity: 0.88;
    line-height: 1.7;
}

/* 贷款详情区域 - 使用首页的优势卡片样式 */
.finance-loan-grid {
    display: flex;
    gap: 72px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.finance-loan-item {
    background: #f7fbff;
    border-radius: 44px;
    box-shadow: 0 12px 40px rgba(30, 200, 231, 0.10);
    padding: 56px 40px 44px 40px;
    min-width: 240px;
    max-width: 340px;
    flex: 1 1 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
    border: none;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.8s cubic-bezier(.4, 1.4, .6, 1) both;
}

.finance-loan-item:hover {
    box-shadow: 0 16px 48px rgba(30, 200, 231, 0.18);
    transform: translateY(-4px) scale(1.02);
}

.finance-loan-item h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: #1a2236;
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.finance-loan-item p {
    font-size: 1.08rem;
    font-weight: 500;
    color: #5b6b7a;
    text-align: center;
    opacity: 0.8;
    line-height: 1.7;
}

/* 计算示例区域 */
.finance-example-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.finance-example-content>p {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 2rem;
}

.finance-calculation {
    background: linear-gradient(120deg, #fafdff 60%, #e6f0fa 100%);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(30, 200, 231, 0.10);
    border: none;
}

.calc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e3eaf2;
}

.calc-item:last-child {
    border-bottom: none;
}

.calc-item.total {
    background: linear-gradient(90deg, #1ec8e7 10%, #1a2236 90%);
    color: white;
    margin: 1rem -2rem -2rem -2rem;
    padding: 1.5rem 2rem;
    border-radius: 0 0 24px 24px;
    font-weight: 600;
}

.calc-label {
    font-weight: 500;
    color: #1a2236;
}

.calc-value {
    font-weight: 600;
    color: #1a2236;
}

.calc-item.total .calc-label,
.calc-item.total .calc-value {
    color: white;
}

/* 申请步骤区域 - 使用首页的卡片样式 */
.finance-steps-grid {
    display: flex;
    gap: 72px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.finance-step-item {
    background: linear-gradient(120deg, #fafdff 60%, #e6f0fa 100%);
    border-radius: 44px;
    box-shadow: 0 12px 40px rgba(30, 200, 231, 0.10);
    padding: 64px 48px 56px 48px;
    flex: 1 1 340px;
    min-width: 320px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
    border: none;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
    z-index: 1;
    animation: fadeUp 0.8s cubic-bezier(.4, 1.4, .6, 1) both;
}

.finance-step-item:hover {
    box-shadow: 0 16px 48px rgba(30, 200, 231, 0.18);
    transform: translateY(-4px) scale(1.02);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #1ec8e7 10%, #1a2236 90%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.finance-step-item h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1ec8e7;
    text-align: center;
    letter-spacing: 0.5px;
    margin: 1rem 0 1rem 0;
}

.finance-step-item p {
    font-size: 1.13rem;
    font-weight: 500;
    color: #1a2236;
    text-align: center;
    opacity: 0.88;
    line-height: 1.7;
}

/* 申请要求区域 */
.finance-requirements-list {
    max-width: 600px;
    margin: 0 auto;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(120deg, #fafdff 60%, #e6f0fa 100%);
    margin-bottom: 1rem;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(30, 200, 231, 0.10);
    border: none;
    transition: box-shadow 0.2s, transform 0.2s;
}

.requirement-item:hover {
    box-shadow: 0 16px 48px rgba(30, 200, 231, 0.18);
    transform: translateY(-2px);
}

.requirement-icon {
    color: #1ec8e7;
    font-size: 1.5rem;
    font-weight: bold;
}

.requirement-item span:last-child {
    color: #1a2236;
    font-weight: 500;
}

/* 警告区域 */
.finance-warning-content {
    max-width: 800px;
    margin: 0 auto;
}

.warning-item {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 24px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.warning-item h3 {
    color: #92400e;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.warning-item p {
    color: #78350f;
    line-height: 1.6;
}

/* 下载区域 */
.finance-download-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.finance-download-content>p {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 2rem;
}

.download-buttons {
    margin-bottom: 2rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 800;
    padding: 20px 54px;
    border-radius: 18px;
    background: linear-gradient(90deg, #1ec8e7 10%, #1a2236 90%);
    color: #fff;
    border: none;
    box-shadow: 0 8px 32px rgba(30, 200, 231, 0.13);
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    margin-bottom: 10px;
    text-decoration: none;
}

.download-btn:hover {
    background: linear-gradient(90deg, #1a2236 10%, #1ec8e7 90%);
    color: #fff;
    box-shadow: 0 16px 48px rgba(30, 200, 231, 0.22);
    transform: translateY(-2px) scale(1.05);
}

.download-note {
    font-size: 1.05rem;
    color: #5a6a7a;
    margin-top: 2px;
    opacity: 0.85;
    text-align: center;
    font-weight: 500;
}

/* 页脚样式 - 与首页保持一致 */
.SASIPORN-footer-separator {
    width: 100%;
    background: none;
    margin-bottom: -8px;
    position: relative;
    z-index: 1;
}

.SASIPORN-footer {
    background: linear-gradient(120deg, #fafdff 0%, #e6f0fa 60%, #eaf3fb 100%);
    border-top: 1.5px solid #e3eaf2;
    margin-top: 64px;
    font-family: inherit;
    box-shadow: 0 -4px 32px 0 rgba(30, 200, 231, 0.06);
    position: relative;
}

.SASIPORN-footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 32px 32px 32px;
}

.SASIPORN-footer-col {
    flex: 1 1 260px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px 0 rgba(30, 200, 231, 0.07);
    padding: 32px 24px 28px 24px;
    align-items: flex-start;
}

.SASIPORN-footer-col-logo {
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(120deg, #fafdff 60%, #e6f0fa 100%);
    box-shadow: 0 2px 12px 0 rgba(30, 200, 231, 0.06);
}

.SASIPORN-footer-company {
    font-size: 1.13rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-top: 8px;
}

.SASIPORN-footer-address {
    font-size: 0.98rem;
    color: #5a6a7a;
    margin-bottom: 8px;
}

.SASIPORN-footer-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #1ec8e7;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.SASIPORN-footer-nav-list {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.SASIPORN-footer-nav-list a {
    color: #1a2a3a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
    padding: 2px 0;
}

.SASIPORN-footer-nav-list a:hover {
    color: #1ec8e7;
}

.SASIPORN-footer-contact-list {
    gap: 12px;
}

.SASIPORN-footer-contact-list span {
    color: #1a2a3a;
    font-size: 1rem;
    font-weight: 500;
}

.SASIPORN-footer-bottom {
    text-align: center;
    color: #7a8a9a;
    font-size: 0.98rem;
    padding: 18px 0 10px 0;
    border-top: 1px solid #e3eaf2;
    background: linear-gradient(90deg, #fafdff 0%, #eaf3fb 100%);
    letter-spacing: 0.01em;
    margin-top: 16px;
}

/* 响应式设计 - 与首页保持一致 */
@media (max-width: 1200px) {
    .SASIPORN-section {
        padding: 0 18px;
    }

    .SASIPORN-section-title-row {
        margin-bottom: 36px;
    }

    .finance-features-grid,
    .finance-loan-grid,
    .finance-steps-grid {
        gap: 24px;
        flex-wrap: wrap;
    }
}

@media (max-width: 900px) {
    .SASIPORN-section {
        padding: 0 6px;
    }

    .SASIPORN-section-title-row {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .finance-features-grid,
    .finance-loan-grid,
    .finance-steps-grid {
        flex-wrap: wrap;
        gap: 18px;
    }

    .finance-feature-item,
    .finance-loan-item,
    .finance-step-item {
        min-width: 0;
        max-width: 100%;
        padding: 24px 8px;
        border-radius: 18px;
    }

    .SASIPORN-footer-main {
        flex-direction: column;
        gap: 32px;
        padding: 36px 8px 18px 8px;
    }

    .SASIPORN-footer-col {
        min-width: 0;
        width: 100%;
        padding: 20px 10px 16px 10px;
        margin-bottom: 8px;
    }

    .SASIPORN-footer-separator {
        margin-bottom: -4px;
    }
}

@media (max-width: 768px) {
    .SASIPORN-hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 40px 0;
    }

    .SASIPORN-hero-left h1 {
        font-size: 2rem;
    }

    .SASIPORN-hero-left p {
        font-size: 1.1rem;
    }

    .SASIPORN-navbar {
        padding: 0 24px;
    }

    .SASIPORN-navbar-menu {
        gap: 24px;
    }

    .calc-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .SASIPORN-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .SASIPORN-hero {
        padding: 2rem 1rem;
    }

    .SASIPORN-hero-left h1 {
        font-size: 1.8rem;
    }

    .SASIPORN-section-title-row h2 {
        font-size: 2rem;
    }

    .finance-feature-item,
    .finance-loan-item,
    .finance-step-item {
        padding: 1.5rem;
    }
}