
:root {
    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-soft: #f8fbff;
    --text: #1f2a37;
    --muted: #5b6676;
    --line: #d9e3f0;
    --primary: #1565d8;
    --primary-dark: #0f4fb0;
    --navy: #0c2d57;
    --success: #0f9d58;
    --shadow: 0 10px 30px rgba(15, 35, 95, 0.08);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
}

a {
    color: inherit;
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(12, 45, 87, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px rgba(8, 29, 58, 0.12);
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

nav li {
    margin: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.2px;
    opacity: 0.92;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

nav a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.hero {
    position: relative;
    min-height: 540px;
    background-image: linear-gradient(135deg, rgba(7, 24, 50, 0.78), rgba(16, 94, 180, 0.36)), url('https://images.pexels.com/photos/7652044/pexels-photo-7652044.jpeg?auto=compress&cs=tinysrgb&h=627&fit=crop&w=1200');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    max-width: 720px;
    padding: 44px 46px;
    border-radius: 28px;
    background: rgba(7, 24, 50, 0.56);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18);
}

.hero h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 6vw, 56px);
    line-height: 1.12;
    letter-spacing: -0.6px;
}

.hero p {
    margin: 0 0 26px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.section {
    padding: 76px 0;
}

.section-title {
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;
    margin: 0 0 16px;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.section p {
    color: var(--muted);
}

.cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 26px;
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(15, 35, 95, 0.1);
    border-color: #bfd3ee;
}

.card h3,
.card h4 {
    margin: 0 0 12px;
    color: var(--navy);
    line-height: 1.35;
    font-size: 26px;
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.btn,
button.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), #2d8cff);
    color: #fff;
    padding: 14px 26px;
    border-radius: 12px;
    border: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 20px rgba(21, 101, 216, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

.btn:hover,
button.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(21, 101, 216, 0.28);
    background: linear-gradient(135deg, var(--primary-dark), #1977f3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid #c8d8eb;
    color: var(--navy);
    background: #f4f9ff;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #e8f2ff;
    border-color: #b7cdeb;
}

.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 28px 0 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.table th,
.table td {
    padding: 18px 16px;
    border-bottom: 1px solid #e7eef7;
    text-align: left;
    vertical-align: top;
    font-size: 15px;
}

.table th {
    background: #f4f8fd;
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
}

.table tr:last-child td {
    border-bottom: none;
}

form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 32px;
    box-shadow: var(--shadow);
    margin-top: 24px;
}

form label {
    display: block;
    margin: 18px 0 8px;
    font-weight: 700;
    color: var(--navy);
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #cfdced;
    border-radius: 12px;
    margin-bottom: 8px;
    box-sizing: border-box;
    font-size: 15px;
    background: #fcfeff;
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: none;
    border-color: #7db2ff;
    box-shadow: 0 0 0 4px rgba(45, 140, 255, 0.12);
}

footer {
    background: #edf3fa;
    padding: 24px 0 34px;
    text-align: center;
    color: #66758a;
    font-size: 14px;
    margin-top: 10px;
    border-top: 1px solid #dde7f3;
}

.notice-bar {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 14px;
    background: #f4f9ff;
    border: 1px solid #dce9f8;
    color: #4d5f79;
}

.success-wrap {
    max-width: 920px;
    margin: 20px auto 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 42px;
    box-shadow: var(--shadow);
}

.success-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 157, 88, 0.12);
    color: var(--success);
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 18px;
}

.success-title {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 14px;
    font-weight: 800;
    letter-spacing: -0.4px;
}

.success-desc {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 16px;
}

.tip-box {
    background: linear-gradient(135deg, #f4f9ff, #edf6ff);
    border: 1px solid #d8e8fb;
    border-radius: 16px;
    padding: 16px 18px;
    margin: 20px 0 28px;
    color: #46607f;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 10px 0 30px;
}

.contact-card {
    background: var(--surface-soft);
    border: 1px solid #d8e5f3;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 20px rgba(15, 35, 95, 0.05);
}

.contact-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: var(--navy);
}

.contact-card p {
    margin: 0;
    color: var(--text);
    font-size: 18px;
    font-weight: 600;
    word-break: break-all;
}

.action-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .cards,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 480px;
    }

    .hero-overlay,
    form,
    .success-wrap {
        padding: 28px;
    }

    .table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    nav ul {
        gap: 16px;
        min-height: 68px;
    }

    .section {
        padding: 56px 0;
    }

    .hero-overlay {
        border-radius: 20px;
    }

    .card {
        padding: 22px;
    }

    .card h3,
    .card h4 {
        font-size: 22px;
    }

    .btn,
    .btn-secondary {
        width: 100%;
    }

    .action-row {
        flex-direction: column;
    }
}


.form-shell {
    background: var(--surface);
    border: 1px solid #d8e4f2;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 14px 34px rgba(15, 35, 95, 0.08);
    margin-top: 28px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    margin: 0 0 10px;
    font-weight: 800;
    color: var(--navy);
    font-size: 16px;
    letter-spacing: 0.1px;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
    width: 100%;
    min-height: 64px;
    padding: 0 20px;
    border: 1.5px solid #d7e2ef;
    border-radius: 22px;
    background: #f9fbfe;
    color: var(--text);
    font-size: 17px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-shell textarea {
    min-height: 120px;
    padding: 18px 20px;
    resize: vertical;
}

.form-shell input::placeholder,
.form-shell textarea::placeholder {
    color: #9aa8ba;
}

.form-shell select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 56px;
    background-image:
      linear-gradient(45deg, transparent 50%, #93a4b8 50%),
      linear-gradient(135deg, #93a4b8 50%, transparent 50%);
    background-position:
      calc(100% - 28px) calc(50% - 3px),
      calc(100% - 20px) calc(50% - 3px);
    background-size: 8px 8px, 8px 8px;
    background-repeat: no-repeat;
}

.form-shell input:hover,
.form-shell select:hover,
.form-shell textarea:hover {
    border-color: #c8d7ea;
    background: #ffffff;
}

.form-shell input:focus,
.form-shell select:focus,
.form-shell textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: #ff8b2b;
    box-shadow: 0 0 0 4px rgba(255, 139, 43, 0.12);
}

.form-helper {
    color: #7b8ba1;
    font-size: 14px;
    margin-top: 8px;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.form-note {
    color: #738399;
    font-size: 14px;
}

@media (max-width: 900px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-shell {
        padding: 24px;
        border-radius: 22px;
    }
}


.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    width: 100%;
    min-height: 64px;
    border: 1.5px solid #d7e2ef;
    border-radius: 22px;
    background: #f9fbfe;
    color: var(--text);
    font-size: 17px;
    font-weight: 600;
    padding: 0 58px 0 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    position: relative;
}

.custom-select-placeholder {
    color: #9aa8ba;
    font-weight: 500;
}

.custom-select-trigger::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #93a4b8;
    border-bottom: 2px solid #93a4b8;
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.2s ease;
}

.custom-select.open .custom-select-trigger {
    background: #ffffff;
    border-color: #ff8b2b;
    box-shadow: 0 0 0 4px rgba(255, 139, 43, 0.12);
}

.custom-select.open .custom-select-trigger::after {
    transform: translateY(-25%) rotate(-135deg);
}

.custom-select-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 12px);
    background: #ffffff;
    border: 1px solid #dbe5f0;
    border-radius: 24px;
    box-shadow: 0 18px 38px rgba(15, 35, 95, 0.14);
    padding: 12px;
    z-index: 30;
    display: none;
}

.custom-select.open .custom-select-panel {
    display: block;
}

.custom-select-search {
    width: 100%;
    min-height: 56px;
    border: 1.5px solid #e2e9f2;
    border-radius: 18px;
    padding: 0 18px;
    font-size: 16px;
    background: #fbfdff;
    margin-bottom: 10px;
}

.custom-select-search:focus {
    outline: none;
    border-color: #ff8b2b;
    box-shadow: 0 0 0 4px rgba(255, 139, 43, 0.10);
    background: #fff;
}

.custom-select-options {
    max-height: 280px;
    overflow: auto;
    padding-right: 4px;
}

.custom-select-option {
    min-height: 56px;
    border-radius: 18px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    color: #2c3b50;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
}

.custom-select-option:hover,
.custom-select-option.active {
    background: #f5f9ff;
    color: var(--navy);
}

.custom-select-option.selected {
    background: #fff4ea;
    color: #d96d00;
}

.custom-select-option.hidden {
    display: none;
}

@media (max-width: 900px) {
    .custom-select-panel {
        border-radius: 20px;
        padding: 10px;
    }

    .custom-select-option,
    .custom-select-search,
    .custom-select-trigger {
        min-height: 58px;
    }
}


.hero {
    min-height: 620px;
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.35;
    pointer-events: none;
}

.hero-glow-one {
    width: 260px;
    height: 260px;
    background: rgba(78, 170, 255, 0.45);
    top: 60px;
    right: 12%;
}

.hero-glow-two {
    width: 220px;
    height: 220px;
    background: rgba(255, 170, 87, 0.28);
    bottom: 40px;
    right: 24%;
}

.hero-kicker {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.92);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.hero-actions {
    justify-content: flex-start;
    margin-top: 22px;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-chips span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.92);
    font-size: 13px;
}

.section-soft {
    background: linear-gradient(180deg, #eef4fb 0%, #f6f9fd 100%);
}

.final-cta-section {
    padding-top: 56px;
    padding-bottom: 86px;
}

.final-cta {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    border: 1px solid #dce7f3;
    border-radius: 28px;
    padding: 40px 34px;
    box-shadow: 0 18px 42px rgba(15,35,95,0.08);
}

.final-cta .section-title {
    max-width: 680px;
    margin: 0 auto 14px;
    text-align: center;
}

.final-cta p {
    max-width: 700px;
    margin: 0 auto 22px !important;
    text-align: center;
}

.final-cta-actions {
    justify-content: center;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.card, .success-wrap, .form-shell, .final-cta {
    will-change: transform, opacity;
}

nav ul {
    gap: 24px;
}

@media (max-width: 900px) {
    .hero {
        min-height: 560px;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-chips {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-kicker {
        font-size: 12px;
    }
    .final-cta {
        padding: 28px 18px;
        border-radius: 22px;
    }
}


.final-cta.reveal,
.final-cta .section-title,
.final-cta p,
.final-cta-actions {
    transform: none !important;
}

.final-cta.reveal {
    opacity: 1;
}

.final-cta-section .reveal {
    opacity: 1;
    transform: none;
    transition: none;
}


body {
    letter-spacing: 0.05px;
}

.section-title {
    font-weight: 800;
}

.card p,
.compare-item span,
.page-hero-desc,
.tip-box,
.section p {
    font-size: 16px;
    line-height: 1.8;
}

.page-hero-card {
    max-width: 920px;
    margin: 0 auto;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    border: 1px solid #dce7f3;
    border-radius: 28px;
    padding: 38px 34px;
    box-shadow: 0 16px 42px rgba(15, 35, 95, 0.08);
}

.page-hero-card .section-title {
    margin-bottom: 14px;
}

.page-hero-desc {
    margin-bottom: 0;
    color: var(--muted);
}

.compare-hero {
    padding-bottom: 40px;
}

.compare-kicker {
    color: var(--navy);
    background: #edf4ff;
    border-color: #d6e6ff;
}

.compare-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 6px;
}

.compare-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #dde7f3;
    border-radius: 24px;
    padding: 26px 24px;
    box-shadow: 0 12px 30px rgba(15, 35, 95, 0.07);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.compare-card:hover {
    transform: translateY(-4px);
    border-color: #c9dbef;
    box-shadow: 0 18px 40px rgba(15, 35, 95, 0.1);
}

.compare-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e7eef7;
}

.compare-card-head h3 {
    margin: 0;
    color: var(--navy);
    font-size: 26px;
    line-height: 1.2;
}

.compare-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #edf4ff;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.compare-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px dashed #e8eef6;
}

.compare-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.compare-item strong {
    color: var(--navy);
    font-size: 14px;
    line-height: 1.6;
}

.compare-item span {
    color: var(--muted);
}

.compare-cta {
    margin-top: 34px;
}

@media (max-width: 900px) {
    .compare-card-grid {
        grid-template-columns: 1fr;
    }

    .compare-card-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .page-hero-card,
    .compare-card {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .compare-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}


.compare-card-cta {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.compare-card-cta .compare-card-head {
    border-bottom: none;
    margin-bottom: 8px;
    padding-bottom: 0;
}

.compare-cta-copy {
    color: var(--muted);
    margin: 8px 0 18px;
    font-size: 16px;
    line-height: 1.85;
}

.compare-inline-cta {
    margin-top: auto;
}


.advisor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.advisor-card h3 {
    font-size: 28px;
    margin-bottom: 6px;
}

.advisor-card h4 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 14px;
    font-weight: 800;
}

.advisor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.advisor-tags span {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: #edf4ff;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .advisor-grid {
        grid-template-columns: 1fr;
    }
}


.advisor-highlight {
    margin-top: 26px;
    padding: 22px 24px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(21,101,216,0.08), rgba(255,255,255,0.96));
    border: 1px solid #cfe0f5;
    box-shadow: 0 14px 32px rgba(15,35,95,0.08);
}

.advisor-highlight-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #1565d8;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
}

.advisor-highlight-text {
    color: var(--navy);
    font-size: 17px;
    line-height: 1.9;
    font-weight: 600;
}
