/* General Styles */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    margin: 0;
    background-color: #ffffff;
    color: #000;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.5;
}

main {
    padding: 0 24px;
}

a {
    color: #00b9ff;
    text-decoration: none;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    font-weight: bold;
}

header .logo {
    font-size: 28px;
    font-weight: bold;
}

header .signup {
    background-color: #9fe870;
    color: #000;
    padding: 8px 24px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: bold;
}

/* Logo image sizing */
header .logo img {
    height: 32px;
}
.wise-logo-large {
    height: 48px;
    width: auto;
    margin: 32px 0;
}
.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 32px;
}


/* Headings use Times New Roman as requested */
h1, h2, h3 {
    font-family: "Times New Roman", Times, serif;
}

/* Make carousel edge-to-edge on mobile */
.swiper-container {
    width: calc(100% + 48px) !important;
    margin-left: -24px !important;
    margin-right: -24px !important;
}

/* Footer links underlined */
.footer-nav a {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    /* padding: 32px 0; */
}
.hero h1 {
    padding: 0;
    margin: 0;
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.hero p {
    font-size: 18px;
    max-width: 100%;
}

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


/* Swiper */
.swiper-container {
    width: 100%;
    margin-top: 24px;
    border-radius: 16px;
    overflow-x: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.swiper-slide img {
    width: 100%;
    display: block;
}

/* Features Section */
.features {
    padding: 10px 0;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.feature-icon-wrapper {
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.feature-icon {
    height: 28px;
    width: 28px;
}

.feature-text h3 {
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: bold;
}

.feature-text p {
    margin: 0;
    color: #555;
    font-size: 16px;
}

.cta-button-features {
    display: block;
    background-color: #9fe870;
    color: #000;
    padding: 18px;
    border-radius: 28px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 32px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* Account Opening Section */
.account-opening {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.phone-mockup {
    position: relative;
    background: #fff;
    border: 3px solid #000;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    margin: 0 auto;
    max-width: 360px;
    width: 100%;
}

/* 彩色底部背景 */
.phone-mockup::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 120px;
    background: url("../img/back.jpg") center/cover no-repeat;
    pointer-events: none;
}

/* 调整列表与按钮间距 */
.currency-list {
    padding: 24px 24px 0 24px;
}

/* 按钮居中 */
.phone-mockup .cta-button {
    width: 70%;
    margin: 24px auto 48px;
    display: block;
    text-align: center;
}

.currency-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}
.currency-item:last-child {
    border-bottom: none;
}
.currency-info {
    display: flex;
    align-items: center;
}
.currency-info img {
    width: 40px;
    margin-right: 12px;
}
.currency-info span {
    font-weight: bold;
}
.currency-value {
    text-align: right;
}
.currency-value span {
    display: block;
    font-weight: bold;
}
.currency-value small {
    color: #777;
    font-size: 0.9em;
}
.cta-button {
    display: inline-block;
    background-color: #9fe870;
    color: #000;
    padding: 18px 32px;
    border-radius: 28px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 24px;
    width: 100%;
    position: relative;
    z-index: 100;
    box-sizing: border-box;
}

/* Trust Features Section */
.trust-features {
    padding: 20px 0;
}

.section-divider {
    border: 0;
    border-top: 1px solid #e0e0e0;
    margin: 0 0 32px;
}

.trust-feature {
    display: flex;
    flex-direction: column;
    margin: 0 32px 20px 32px;
}

.trust-feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #f3f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.trust-feature-icon {
    height: 28px;
    width: 28px;
}

.trust-feature-text h3 {
    font-size: 18px;
    margin: 0 0 8px 0;
    font-weight: bold;
}
.trust-feature-text p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.hidden-fees {
    background-color: #9fe870;
    padding: 32px 16px 48px;
    text-align: center;
    margin: 0 -24px;
}
.hidden-fees h2 {
    font-size: 36px;
    margin: 0 0 24px;
    line-height: 1.2;
    font-family: "new times Romans";
    font-weight: 700;
}
.hidden-fees p {
    font-size: 15px;
    max-width: 460px;
    font-weight: 700;   
    margin: 0 auto 24px;
}

/* exchange box 样式 */
.exchange-box {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-left: auto;
    margin-right: auto;
    max-width: 360px;
}
.exchange-header {
    background: #003f15;
    color: #fff;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    border-bottom: none;
}
.exchange-header .total-after-fees {
    font-size: 14px;
    font-weight: 400;
}
.exchange-header .sending {
    margin: 4px 0;
}
.exchange-header :nth-child(1) {
    font-size: 20px;
    font-weight: 400;
}
.exchange-header p {
    margin: 0;
    font-size: 16px;
}

.exchange-body {
    background: #ffffff;
}
.exchange-item {
    padding: 20px 16px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.exchange-item:last-child {
    border-bottom: none;
}
.exchange-item img {
    width: 120px;
    height: 80px;
    object-fit: cover;
}
.exchange-item span:nth-child(2) {
    font-weight: 600;
}
.exchange-item span.dropdown {
    width: 28px;
    height: 28px;
    background: #e6e6e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.exchange-item span.dropdown img {
    width: 20px;
    height: 20px;
}
.exchange-box a {
    padding: 16px 0;
    display: block;
}

.hidden-fees .footer-note {
    margin: 40px 60px 0 60px;
    font-size: 14px;
    color: #333;
}

.hidden-fees .exchange-header > div:first-child {
    /* background-color: #f3f4f5; */
    padding: 8px 12px;
    border-radius: 12px;
}

/* More with Wise Section */
.more-with-wise {
    margin: 0 -24px;
    padding: 20px 0;
    font-weight: 700;
    background-color: #e6e6e6;
}

.more-with-wise h2 {
    margin: 0;
    font-size: 32px;
    text-align: center;
}

.more-with-wise > p {
    font-size: 16px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto 32px;
    color: #555;
}

.more-with-wise-cards-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wise-card {
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 24px;
    margin: 0 60px;
    text-align: center;
    background: #fff;
}

.wise-card .card-visual {
    height: 70px;
    border-radius: 8px;
    margin: 0 38px 24px 38px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-layer {
    position: absolute;
    width: 80%;
    height: 100px;
    border-radius: 8px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
}

.card-layer-back {
    transform: rotate(-10deg) translate(-10px, -10px);
    background-color: #e0e0e0;
}

.card-layer-middle {
    transform: rotate(-5deg);
    background-color: #f8f8f8;
}

.card-layer-front {
    background-color: #fff;
    padding: 16px;
    width: 90%;
    height: 120px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1;
}

.card-visual.interest-visual {
    gap: 8px;
    background-color: #f3f4f5;
}

.interest-visual img {
    width: 40px;
    height: 40px;
}

.interest-rate {
    text-align: center;
}
.interest-rate .rate {
    font-size: 24px;
    font-weight: bold;
    display: block;
}

.interest-rate .apy {
    font-size: 14px;
    color: #555;
}

.wise-card .balance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
}

.wise-card .balance-header img {
    width: 24px;
    height: 24px;
}

.wise-card .balance-amount {
    font-size: 28px;
    font-weight: bold;
    margin: 8px 0;
}

.wise-card .card-number {
    font-size: 12px;
    color: #777;
    font-family: monospace;
}

.wise-card .card-currencies {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    margin-top: 16px;
}

.wise-card .check-icon {
    color: #28a745;
    font-weight: bold;
    margin-right: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #38561d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wise-card .card-currencies a {
    text-decoration: underline;
    font-weight: bold;
    color: #38561d;
}

.wise-card h3 {
    font-size: 20px;
    margin: 0 0 8px;
}

.wise-card p {
    font-size: 16px;
    color: #555;
    margin: 0 0 16px;
}

.wise-card p sup {
    font-size: 10px;
    top: -0.5em;
}

.wise-card .explore-button {
    padding: 6px 20px;
    font-weight: bold;
    color: #3a571f;
    display: inline-block;
    margin-top: 30px;
    border-radius: 20px;
    border: 1px solid #3a571f;
}


/* Disappoint Thieves Section */
.disappoint-thieves {
    text-align: center;
    padding: 20px 0;
}
.disappoint-thieves-img {
    width: 200px;
}
.disappoint-thieves h2 {
    font-size: 32px;
    margin-bottom: 24px;
    line-height: 0.2;
}
.disappoint-thieves p {
    margin: 0;
    font-size: 16px;
    max-width: 450px;
    margin: 0 auto 6px;
}

.cta-button-small {
    display: inline-block;
    background-color: #9fe870;
    color: #000;
    padding: 12px 34px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: bold;
}


/* People Going Places Section */
.people-going-places {
    padding: 10px 0;
}
.country-flags-bar {
    display: flex;
    align-items: center;
    margin: 0 -24px 24px -24px;
    padding: 16px 0;
}

/* Arrow area */
.arrow-icon-wrapper {
    background: #a1e56d;
    display: flex;
    align-items: center;
    padding: 0 10px 0 80px; /* space for green pill */
    border-radius: 0 36px 36px 0;
    height: 62px;
    position: relative;
    border: none;
}

.arrow-icon-wrapper svg {
    background: #0b2600; /* dark green circle */
    border-radius: 50%;
    padding: 10px;
    width: 52px;
    height: 52px;
}

.arrow-icon-wrapper svg path {
    stroke: #ffffff;
}

/* Flags spacing */
.flags {
    margin-left: 24px;
    display: flex;
    align-items: center;
    gap: 22px;
    flex-grow: 1;
}
.flags img {
    width: 62px;
    height: 62px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.people-going-places h2 {
    font-size: 32px;
    text-align: left;
    margin-bottom: 24px;
    line-height: 1.2;
}

.testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.testimonial-card {
    margin: 0 60px 20px 60px;
    padding: 24px;
    border-radius: 16px;
}
.testimonial-card.dark {
    background-color: #1d3208;
    color: #afe67f;
}
.testimonial-card.light {
    background-color: #afe67f;
    color: #000;
}
.testimonial-card p {
    font-size: 22px;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.colorful-divider {
    height: 300px;
    background: linear-gradient(to right, #F72585, #B5179E, #7209B7, #560BAD, #480CA8, #3A0CA3, #3F37C9, #4895EF, #4CC9F0);
}

.terms-conditions {
    padding: 40px 24px;
    background: #f8f8f8;
}
.terms-conditions h2 {
    font-size: 28px;
    margin-bottom: 24px;
    font-weight: bold;
}
.terms-conditions p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
}

.site-footer {
    padding: 20px 24px 20px 24px;
    background-color: #e6e6e6;
    color: #333;
    border-top: none;
}

.site-footer .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 32px;
    margin-bottom: 32px;
}
.site-footer .footer-nav a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 4px 0;
}
.site-footer .footer-legal {
    margin-top: 32px;
    border-top: 1px solid #ddd;
    padding-top: 24px;
    text-align: center;
    font-weight: 700;
}
.site-footer .footer-legal p {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.5;
    font-weight: 700;
}
.site-footer .footer-nav a {
    text-decoration: underline !important;
}

/* Mission Section */
.mission {
    background-color: #1d3208;
    color: #fff;
    padding: 80px 24px 48px;
    text-align: center;
    border-radius: 16px;
    margin: 50px 44px 0 44px;
    position: relative;
    overflow: visible;
}

.mission-image {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    z-index: 1;
}

.mission h2 {
    font-size: 32px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.mission p {
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 24px;
}

.mission .mission-button {
    display: inline-block;
    background-color: #9fe870;
    color: #000;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: bold;
}

/* Visit Website Section */
.visit-website {
    padding: 64px 44px;
    background: url("../img/back_2.jpg") center/cover no-repeat;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.visit-website-content {
    background: #fff;
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.visit-website h2 {
    font-size: 56px;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: "Times New Roman", Times, serif;
}


.visit-website .website-url {
    font-size: 16px;
    color: #333;
    margin-bottom: 32px;
    font-weight: normal;
}

.hero-banner {
    margin: 32px 0;
}

.placeholder-banner {
    height: 350px;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6c757d;
    width: 100%;
}

.mobile-hidden {
    display: none;
}

.mission-wrapper {
    margin: 0 -24px;
    background: #e6e6e6;
    padding: 20px 0 40px;
} 

.mission-wrapper h2 {
    font-size: 42px;
}

/* 仅移动端隐藏额外国旗 */
.extra-flag {
    display: none;
}