/* ==========================
   PC 端全面重构样式 - 保持颜色与字体不变
   ========================== */

/* 基础设置 */
.desktop-hidden {
    display: none;
}

.mobile-hidden {
    display: block;
}

body {
    font-size: 20px;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #000;
    line-height: 1.6;
}

/* 全宽布局，去掉版心限制 */
header, .terms-conditions, .site-footer, main {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* 统一间距 */
main > section {
    margin-bottom: 120px;
}

/* ---------- Header ---------- */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 80px;
    border-bottom: 1px solid #e9ecef;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header .logo {
    font-size: 32px;
}

header .logo img {
    height: 48px;
}

header .signup {
    padding: 14px 32px;
    font-size: 18px;
    border-radius: 99px;
    background-color: #9fe870;
    color: #000;
    font-weight: bold;
    transition: all 0.3s ease;
}

header .signup:hover {
    background-color: #8cc860;
    transform: translateY(-2px);
}

/* ---------- Hero 重构 ---------- */
.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 80px;
    gap: 60px;
    background-color: #fff;
}

.hero-wrapper .hero {
    flex: 1;
    text-align: left;
    padding: 0;
    max-width: 600px;
}

.hero-wrapper .hero h1 {
    font-size: 96px;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0;
    font-family: "Times New Roman", Times, serif;
}

.hero-wrapper .hero p {
    margin: 40px 0 0;
    font-size: 24px;
    max-width: none;
    color: #000;
}

.hero-wrapper .hero a {
    text-decoration: underline;
    color: #000;
    font-weight: bold;
}

.hero-wrapper .hero-banner {
    flex: 1;
    max-width: 640px;
}

.desktop-swiper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    margin: 0;
}

/* ---------- Features ---------- */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
    padding: 120px 80px;
    text-align: left;
    background-color: #fff;
}

.feature {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.feature-icon-wrapper {
    margin-right: 24px;
    margin-bottom: 0;
}

.feature-text h3 {
    font-size: 22px;
}

.cta-button-features {
    grid-column: 1 / -1;
    max-width: 300px;
    margin-top: 32px;
    justify-self: center;
}

.account-opening {
    display: flex;
    justify-content: center;
    padding: 80px 48px;
}

.phone-mockup {
    position: relative;
    background: #fff;
    border: 3px solid #000;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    max-width: 500px;
    width: 100%;
}

.phone-mockup::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: url("../img/back.jpg") center/cover no-repeat;
    pointer-events: none;
}

.currency-list {
    padding: 32px 32px 0 32px;
}

.phone-mockup .cta-button {
    position: relative;
    z-index: 100;
    width: 60%;
    margin: 32px auto 64px;
    display: block;
    text-align: center;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    padding: 80px 48px;
    text-align: left;
    justify-items: start;
}

.trust-features .section-divider {
    display: none;
}

.trust-feature {
    flex-direction: row;
    align-items: flex-start;
}

.trust-feature-icon-wrapper {
    margin-right: 24px;
    margin-bottom: 0;
}

.trust-feature-text h3 {
    font-size: 22px;
}

.hidden-fees {
    margin: 80px 0;
    padding: 96px 0 120px;
    border-radius: 32px;
}

.hidden-fees h2 {
    font-size: 64px;
    font-family: "new times Romans";
    font-weight: 700;
    margin-bottom: 32px;
}

.hidden-fees p {
    font-size: 22px;
    max-width: 640px;
    margin: 0 auto 48px;
    font-weight: 700;
}

.exchange-box {
    max-width: 720px;
}

.exchange-header {
    background: #003f15;
    color: #fff;
    padding: 32px 32px;
}

.exchange-item {
    padding: 28px 32px;
    grid-template-columns: 64px 1fr auto 24px;
}

.more-with-wise {
    padding: 80px 48px;
    background-color: #e6e6e6;
}
.more-with-wise-cards-container {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
}

.wise-card {
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}

.disappoint-thieves {
    padding: 80px 48px;
    text-align: center;
}

.disappoint-thieves h2 {
    font-size: 48px;
}

.disappoint-thieves p {
    font-size: 22px;
    max-width: 600px;
    margin-bottom: 32px;
}

.disappoint-thieves-img {
    width: 150px;
    height: 150px;
}

.people-going-places {
    padding: 80px 48px;
}

.people-going-places h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 48px;
}

.testimonial-cards {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
}

.testimonial-card {
    padding: 32px;
    flex: 1;
    max-width: 450px;
}

.testimonial-card.dark {
    background-color: #1d3208;
    color: #afe67f;
}
.testimonial-card.light {
    background-color: #afe67f;
    color: #000;
}

.mission {
    margin: 100px auto 80px;
    padding: 120px 48px 64px;
    max-width: 1000px;
    background-color: #1d3208;
    color: #fff;
}

.mission h2 {
    font-size: 48px;
}

.mission p {
    font-size: 22px;
}

.mission-image {
    width: 240px;
    height: 240px;
    top: -120px;
}

.visit-website, .colorful-divider {
    display: none;
}

.site-footer .footer-nav {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.site-footer .footer-nav a {
    text-decoration: underline;
}

/* Unified Button Styles */
.cta-button, .cta-button-features, .cta-button-small, .mission-button {
    background-color: #9fe870;
    color: #000;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.cta-button:hover, .cta-button-features:hover, .cta-button-small:hover, .mission-button:hover {
    background-color: #8cc860;
    transform: translateY(-2px);
}

/* Desktop Swiper */
.desktop-swiper {
    margin: 80px 0;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.dropdown {
    width: 32px;
    height: 32px;
    background: #e6e6e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown img {
    width: 12px;
    height: 12px;
}

.mission-wrapper {
    background: #e6e6e6;
    padding: 40px 0 80px;
}

/* 为"探索"按钮设置单独的样式 */
.explore-button {
    padding: 6px 20px;
    font-weight: bold;
    color: #3a571f;
    display: inline-block;
    margin-top: 30px;
    border-radius: 20px;
    border: 1px solid #3a571f;
    background-color: transparent;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.explore-button:hover {
    background-color: rgba(159, 232, 112, 0.3);
    transform: translateY(-2px);
}

/* ========================== */
/* 桌面端全宽与视觉优化覆盖 */
/* ========================== */

/* 1. 去掉版心 1200 限制，使内容铺满 */
header, .terms-conditions, .site-footer, main {
    max-width: none !important; /* 覆盖原本的 1200px 限制 */
    width: 100% !important;    /* 铺满宽度 */
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* 2. 放大"People Going Places"区域的箭头与旗帜尺寸 */
.country-flags-bar {
    margin: 0 -64px 48px -64px; /* 进一步加宽负外边距，左右与页面齐平 */
    padding: 32px 0;           /* 增加上下留白 */
}

.arrow-icon-wrapper {
    height: 90px;              /* 放大高度 */
    padding: 0 24px 0 140px;   /* 增加左右内边距，配合更大高度 */
    border-radius: 0 52px 52px 0;
}

.arrow-icon-wrapper svg {
    width: 72px;
    height: 72px;
    padding: 14px;
}

.flags {
    flex-wrap: wrap; /* 允许自动换行 */
    gap: 28px 32px; /* 行间距、列间距 */
}

.flags img {
    width: 80px;               /* 放大旗帜尺寸 */
    height: 80px;
}

/* 桌面端显示额外国旗 */
.extra-flag {
    display: inline-block !important;
}

.footer-note{
    margin: 20px auto !important;
}