/* font korea */
@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-1Thin.woff2') format('woff2');
    font-weight: 100;
    font-display: swap;
}

@media (max-width: 900px) {
    .terms-page {
        padding: 60px 16px 80px;
    }

    .terms-wrapper {
        padding: 32px 24px;
        border-radius: 18px;
    }

    .terms-hero h1 {
        font-size: 24px;
    }

    .terms-section h2 {
        font-size: 18px;
    }

    .terms-contact {
        grid-template-columns: 1fr;
    }

    .terms-content h1 {
        font-size: 24px;
    }

    .terms-content table {
        font-size: 13px;
    }

    .about-page {
        padding: 60px 16px 80px;
    }

    .about-wrapper {
        padding: 32px 24px;
        border-radius: 18px;
    }

    .about-hero h1 {
        font-size: 26px;
    }

    .about-profile-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .about-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-contact {
        grid-template-columns: 1fr;
    }

    .partner-page {
        padding: 60px 16px 80px;
    }

    .partner-wrapper {
        padding: 32px 24px;
        border-radius: 18px;
    }

    .partner-hero h1 {
        font-size: 24px;
    }

    .partner-steps {
        grid-template-columns: 1fr;
    }

    .partner-form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .partner-form-submit {
        width: 100%;
    }

    .partner-notice {
        flex-direction: column;
    }

    .partner-notice-title {
        max-width: 100%;
    }

    .contact-page {
        padding: 60px 16px 80px;
    }

    .contact-wrapper {
        padding: 32px 24px;
        border-radius: 18px;
    }

    .contact-branch-item {
        flex-direction: column;
    }

    .contact-branch-number {
        align-self: flex-start;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .help-register-page {
        padding: 60px 16px 80px;
    }

    .help-register-wrapper {
        padding: 32px 24px;
        border-radius: 18px;
    }

    .help-register-options {
        grid-template-columns: 1fr;
    }

    .help-activation-card {
        grid-template-columns: 1fr;
    }

    .help-activation-phone {
        width: 180px;
        height: 250px;
    }

    .help-video-frame {
        padding: 18px;
    }

    .help-video-placeholder {
        gap: 14px;
        flex-direction: column;
        text-align: center;
    }
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-2ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-3Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-4Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-5Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-6SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-7Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-8ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-9Black.woff2') format('woff2');
    font-weight: 900;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom AOS Animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-left"] {
    transform: perspective(1000px) rotateY(-90deg);
}

[data-aos="flip-left"].aos-animate {
    transform: perspective(1000px) rotateY(0);
}

/* Delays */
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="600"] { transition-delay: 0.6s; }

body {
    font-family: 'Paperozi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #ffffff;
    min-height: 100vh;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 100%;
    width: 100%;
    position: relative;
    z-index: 1100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 28px;
    font-weight: bold;
    color: #F26522;
}

.logo-img {
    height: 64px;
    width: auto;
}

.logo-text {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 10px;
    background-color: #f5f5f5;
    padding: 8px 16px;
    border-radius: 50px;
}

.nav-item {
    text-decoration: none;
    color: #333;
    padding: 8px 20px;
    font-size: 14px;
    transition: color 0.2s;
}

.nav-item:hover {
    color: #F26522;
}

.arrow {
    font-size: 12px;
    margin-left: 4px;
}

.nnp-nav {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 30px;
    padding: 16px 32px;
    border-radius: 999px;
    border: 2px solid #e6e6e6;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    min-width: 1000px;
}

.nav-group {
    position: relative;
}

.nav-group-trigger {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #111111;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 999px;
}

.nav-group-trigger::after {
    content: "▾";
    font-size: 14px;
    margin-left: 8px;
    color: #111111;
}

.nav-group-trigger:hover {
    color: #111111;
    background: rgba(17, 17, 17, 0.08);
    opacity: 1;
}

.nav-group-trigger--active {
    background: rgba(17, 17, 17, 0.1);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 520px;
    background: #ffffff;
    border-radius: 30px;
    padding: 26px 30px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
    display: none;
    gap: 10px;
    z-index: 40;
    border: 2px solid #e8e8e8;
}

.nav-dropdown::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.nav-dropdown-header {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-dropdown-icon {
    width: 48px;
    height: 48px;
}

.nav-dropdown-title {
    font-size: 28px;
    font-weight: 800;
    color: #111111;
    letter-spacing: 0.02em;
}

.nav-dropdown-divider {
    grid-column: 1 / -1;
    border-top: 2px dashed #e0e0e0;
    margin: 14px 0 4px;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
    display: grid;
}

.nav-dropdown--one {
    grid-template-columns: 1fr;
}

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

.nav-column-title,
.nav-middle {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111111;
    margin: 12px 0 6px;
}

.nav-middle {
    text-transform: none;
    letter-spacing: 0.01em;
    font-size: 16px;
    font-weight: 600;
    color: #111111;
    border-bottom: 1px solid #ececec;
    padding: 10px 0;
}

.nav-middle-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.nav-middle-link:hover {
    color: #2f6c3b;
}

.nav-column .nav-middle:last-child {
    border-bottom-color: transparent;
}

.nav-item-link {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2b2b2b;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #ececec;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.nav-item-link:hover {
    color: #2f6c3b;
}

.nav-item-link.is-muted {
    color: #a8a8a8;
    cursor: default;
    border-bottom-color: transparent;
}

.nav-item-link.is-muted:hover {
    color: #9a9a9a;
}

.nav-item-link.is-muted::after {
    content: "";
}

.nav-column .nav-item-link:last-child {
    border-bottom-color: transparent;
}

.header .nav-group-trigger {
    color: #111111;
}

.header .nav-group-trigger:hover {
    color: #111111;
    opacity: 1;
}

.header .nav-group-trigger--active {
    background: rgba(17, 17, 17, 0.1);
}

.nav-item-small {
    padding-left: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #4f4f4f;
}

.mobile-nav {
    display: grid;
    gap: 18px;
}

.mobile-nav-section {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 12px;
}

.mobile-nav-section:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.mobile-nav-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 6px;
}

.mobile-nav-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: #666666;
    margin-top: 8px;
}

.mobile-nav-link {
    display: block;
    font-size: 14px;
    color: #222222;
    text-decoration: none;
    padding: 4px 0;
}

.mobile-nav-link:hover {
    color: #111111;
}

.mobile-nav-link.is-muted {
    color: #9a9a9a;
    cursor: default;
}

.mobile-nav-link.is-muted:hover {
    color: #9a9a9a;
}

.lang-region {
    display: flex;
    gap: 20px;
    align-items: center;
}

.lang-select {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.lang-select-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 28px 6px 10px;
    border: 1px solid #e6e6e6;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    font-size: 15px;
    cursor: pointer;
    position: relative;
}

.lang-select-toggle::after {
    content: "";
    position: absolute;
    right: 10px;
    width: 6px;
    height: 6px;
    border-right: 2px solid #111111;
    border-bottom: 2px solid #111111;
    transform: rotate(45deg);
}

.lang-select-toggle:focus-visible {
    outline: 2px solid #111111;
    outline-offset: 2px;
}

.lang-select-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    margin: 0;
    padding: 6px;
    list-style: none;
    border-radius: 14px;
    border: 1px solid #e6e6e6;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 50;
}

.lang-select-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-select-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border: 0;
    background: transparent;
    border-radius: 10px;
    font-size: 15px;
    color: #111111;
    cursor: pointer;
    text-align: left;
}

.lang-select-option[aria-selected="true"] {
    background: #f1f1f1;
    font-weight: 600;
}

.lang-select-option:hover {
    background: #f6f6f6;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.lang-flag {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover;
}
.lang-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.lang-item svg {
    width: 16px;
    height: 16px;
}

.japan-dot {
    width: 10px;
    height: 10px;
    background-color: #dc2626;
    border-radius: 50%;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    background: #ffffff;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.nav-toggle-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: #ffffff;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1200;
}

.mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.mobile-menu-inner {
    position: absolute;
    inset: 0;
    background: #ffffff;
    padding: 16px 20px 20px;
    overflow: auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 20px;
}

.mobile-menu-close {
    border: none;
    background: transparent;
    border-radius: 0;
    width: auto;
    height: auto;
    font-size: 22px;
    cursor: pointer;
}

.mobile-menu-section {
    padding-top: 8px;
    margin-top: 8px;
}

.mobile-menu-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.mobile-menu-title {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
}

.mobile-menu-chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid #111111;
    border-bottom: 2px solid #111111;
    transform: rotate(-45deg);
}

.mobile-menu-divider {
    border-top: 2px dashed #e0e0e0;
    margin: 10px 0;
}

.mobile-menu-sublist {
    padding-left: 16px;
}

.mobile-menu-category {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #034EA2;
    padding: 12px 0 8px 0;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-top: 1px solid #e8e9ea;
}

.mobile-menu-category:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 8px;
}

.mobile-menu-subitem {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #111111;
    padding: 10px 0 10px 12px;
    text-decoration: none;
}

.mobile-menu-lang {
    display: flex;
    gap: 8px;
    padding: 16px 0 8px;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    padding: 10px 8px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    color: #333;
}

.mobile-lang-btn.is-active {
    border-color: #F26522;
    color: #F26522;
    background: #fff8f5;
}

.mobile-lang-btn .lang-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.mobile-region-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    padding: 10px 8px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    color: #333;
}

.mobile-region-btn.is-active {
    border-color: #F26522;
    color: #F26522;
    background: #fff8f5;
}

.mobile-region-btn .lang-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

/* About us page */
.about-page {
    background: linear-gradient(180deg, #fff5ef 0%, #ffffff 35%, #f7f7f7 100%);
    padding: 80px 20px 120px;
}

.about-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 56px 64px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.about-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #F26522;
}

.about-hero h1 {
    margin-top: 10px;
    font-size: 36px;
    color: #111111;
}

.about-card {
    margin-top: 32px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.about-card-header {
    background: #F26522;
    color: #ffffff;
    padding: 20px 28px;
}

.about-card-header h2 {
    font-size: 20px;
}

.about-card-header p {
    margin-top: 4px;
    color: #ffe4d6;
    font-size: 14px;
}

.about-profile-grid {
    border-top: 1px solid #f0f0f0;
}

.about-profile-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    padding: 18px 28px;
}

.about-profile-row:nth-child(even) {
    background: #fafafa;
}

.about-profile-row dt {
    font-weight: 600;
    color: #1a1a1a;
}

.about-profile-row dd {
    color: #555555;
}

.about-muted {
    color: #7a7a7a;
    font-size: 14px;
    margin-top: 4px;
}

.about-message {
    margin-top: 48px;
}

.about-message h2 {
    font-size: 26px;
    color: #111111;
    margin-bottom: 12px;
}

.about-message-title {
    font-size: 22px;
    color: #F26522;
    font-weight: 600;
}

.about-message-body {
    margin-top: 12px;
    color: #5a5a5a;
    line-height: 1.7;
}

.about-message-signature {
    margin-top: 40px;
    text-align: right;
}

.about-message-ceo-title {
    font-size: 20px;
    color: #F26522;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-right: 8px;
}

.about-message-ceo-name {
    font-size: 20px;
    color: #111111;
    font-weight: 700;
}

.about-milestones {
    margin-top: 40px;
}

.milestones-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.milestones-table {
    width: 100%;
    border-collapse: collapse;
}

.milestones-row td {
    padding: 20px 28px;
    vertical-align: middle;
}

.milestones-row--alt {
    background: #EAF2FF;
}

.milestones-date {
    font-size: 18px;
    font-weight: 700;
    color: #034EA2;
    white-space: nowrap;
    width: 120px;
}

.milestones-event {
    font-size: 15px;
    color: #333333;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .milestones-row td {
        padding: 14px 16px;
    }
    .milestones-date {
        font-size: 15px;
        width: 90px;
    }
    .milestones-event {
        font-size: 14px;
    }
}

.about-cta {
    margin-top: 48px;
    padding: 26px 28px;
    border-radius: 20px;
    background: #fff3ea;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.about-cta h3 {
    font-size: 22px;
    color: #111111;
}

.about-cta p {
    margin-top: 6px;
    color: #6a6a6a;
}

.about-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    background: #F26522;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.about-cta-link:hover {
    background: #d95519;
}

.about-contact {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.about-contact-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #f0f0f0;
    padding: 24px 26px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.about-contact-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111111;
}

.about-hours {
    margin-top: 12px;
    color: #555555;
}

/* Partnership inquiry page */
.partner-page {
    background: linear-gradient(180deg, #fff5ef 0%, #ffffff 35%, #f7f7f7 100%);
    padding: 80px 20px 120px;
}

.partner-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 56px 64px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.partner-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #F26522;
}

.partner-hero h1 {
    margin-top: 10px;
    font-size: 32px;
    color: #111111;
}

.partner-card {
    margin-top: 28px;
    padding: 28px;
    border-radius: 18px;
    background: #fff3ea;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.partner-card h2 {
    font-size: 20px;
    color: #111111;
    margin-bottom: 12px;
}

.partner-card p {
    margin-top: 8px;
    color: #5a5a5a;
    line-height: 1.7;
}

.partner-email {
    font-weight: 600;
    color: #F26522;
}

.partner-process {
    margin-top: 40px;
}

.partner-process h2 {
    font-size: 22px;
    color: #111111;
    margin-bottom: 16px;
}

.partner-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.partner-step {
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 18px 16px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.partner-step-number {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #F26522;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
}

.partner-form-section {
    margin-top: 48px;
    border-top: 2px solid #e0e0e0;
    padding-top: 28px;
}

.partner-form-section h2 {
    font-size: 24px;
    color: #111111;
    margin-bottom: 18px;
}

.partner-form {
    display: grid;
    gap: 18px;
}

.partner-form-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: center;
    gap: 20px;
    padding: 14px 0;
    border-top: 1px solid #e6e6e6;
}

.partner-form-row:first-of-type {
    border-top: none;
}

.partner-form-label {
    font-size: 16px;
    font-weight: 600;
    color: #111111;
}

.partner-form-input {
    width: 100%;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 16px;
    font-family: inherit;
    color: #111111;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.partner-form-input::placeholder {
    color: #9a9a9a;
}

.partner-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.partner-form-actions {
    border-top: 2px solid #e0e0e0;
    padding-top: 22px;
    display: flex;
    justify-content: center;
}

.partner-form-submit {
    padding: 10px 36px;
    border-radius: 999px;
    border: 1px solid #bfbfbf;
    background: #ffffff;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.partner-form-submit:hover {
    border-color: #F26522;
    color: #F26522;
}

.partner-notice {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding-top: 8px;
}

.partner-notice-title {
    min-width: 240px;
    max-width: 1000px;
    font-size: 22px;
    line-height: 1.3;
    color: #111111;
}

.partner-notice-box {
    flex: 1;
    background: #f5f6f7;
    border-radius: 12px;
    padding: 20px 22px;
    color: #6e6e6e;
    line-height: 1.6;
}

.partner-notice-box p {
    margin-bottom: 12px;
}

.partner-notice-list {
    padding-left: 18px;
    margin: 8px 0 12px;
}

.partner-notice-list > li {
    margin-bottom: 10px;
}

.partner-notice-sublist {
    margin-top: 8px;
    padding-left: 18px;
    list-style: disc;
}

.partner-notice-sublist li {
    margin-bottom: 6px;
}

.partner-notice-highlight {
    color: #7abf45;
    font-weight: 600;
}

.partner-consent {
    padding: 6px 0 4px;
}

.partner-consent-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #1a1a1a;
}

.partner-consent-checkbox {
    width: 20px;
    height: 20px;
    accent-color: #7abf45;
}

.partner-required {
    color: #7abf45;
    font-weight: 700;
}

/* Contact page */
.contact-page {
    background: linear-gradient(180deg, #fff5ef 0%, #ffffff 35%, #f7f7f7 100%);
    padding: 80px 20px 120px;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 56px 64px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.contact-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #F26522;
}

.contact-hero h1 {
    margin-top: 10px;
    font-size: 34px;
    color: #111111;
}

.contact-branches {
    margin-top: 28px;
}

.contact-branch-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #e6e6e6;
}

.contact-branch-item {
    display: flex;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid #e6e6e6;
}

.contact-branch-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff3ea;
    border: 1px solid #f3d7c8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #F26522;
}

.contact-branch-body h3 {
    font-size: 18px;
    color: #111111;
}

.contact-branch-location {
    margin-top: 2px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #8a8a8a;
}

.contact-branch-body p {
    margin-top: 6px;
    color: #5a5a5a;
}

.contact-branch-phone {
    font-weight: 600;
    color: #2f6c3b;
}

.contact-info {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #f0f0f0;
    padding: 24px 26px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.contact-info-card h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111111;
}

.contact-muted {
    color: #7a7a7a;
    margin-top: 4px;
}

.contact-hours {
    margin-top: 12px;
    color: #555555;
}

/* Help register page */
.help-register-page {
    background: #ffffff;
    padding: 80px 20px 120px;
}

.help-register-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 56px 64px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.help-activation-section h1 {
    font-size: 30px;
    color: #111111;
    margin-bottom: 22px;
}

.help-activation-card {
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: 32px;
    background: #f6f1fb;
    border-radius: 22px;
    padding: 28px 32px;
    align-items: center;
}

.help-activation-illustration {
    display: grid;
    place-items: center;
}

.help-activation-phone {
    width: 200px;
    height: 280px;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    position: relative;
    padding: 24px;
}

.help-activation-sim {
    position: absolute;
    width: 86px;
    height: 60px;
    background: #8f6bd8;
    border-radius: 14px;
    top: 30px;
    left: 30px;
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.7);
}

.help-activation-screen {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 32px;
    height: 12px;
    border-radius: 6px;
    background: #e4dbf7;
}

.help-activation-content h2 {
    font-size: 24px;
    color: #111111;
    margin-bottom: 8px;
}

.help-activation-subtitle {
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.help-activation-list {
    padding-left: 18px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 18px;
}

.help-activation-list li {
    margin-bottom: 8px;
}

.help-activation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.help-activation-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #5c2d91;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 12px 22px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.help-activation-primary:hover {
    background: #4a2476;
}

.help-activation-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #2c2c2c;
    border: 1px solid #d7d1e3;
    border-radius: 10px;
    padding: 12px 22px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.help-activation-secondary:hover {
    border-color: #bfb8d4;
}

.help-register-hero h1 {
    font-size: 36px;
    color: #111111;
}

.help-register-hero p {
    margin-top: 10px;
    font-size: 18px;
    color: #6a6a6a;
}

.help-register-options {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.help-register-card {
    border: 1px solid #e3e3e3;
    border-radius: 18px;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 120px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    background: #ffffff;
}

.help-register-card h2 {
    font-size: 18px;
    color: #111111;
}

.help-register-card p {
    margin-top: 8px;
    color: #7a7a7a;
}

.help-register-arrow {
    font-size: 28px;
    color: #111111;
}

.help-register-notes {
    margin-top: 20px;
    color: #6a6a6a;
}

.help-register-notes ul {
    padding-left: 18px;
}

.help-register-notes li {
    margin-bottom: 8px;
}

.help-video-section {
    margin-top: 36px;
    padding: 26px;
    border-radius: 20px;
    background: #f6f1fb;
}

.help-video-section h2 {
    font-size: 22px;
    color: #111111;
}

.help-video-frame {
    margin-top: 16px;
    border-radius: 18px;
    background: #ffffff;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    display: grid;
    place-items: center;
    width: 100%;
}

.help-video-placeholder {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #6c6c6c;
    width: 100%;
    max-width: 820px;
    aspect-ratio: 16 / 9;
    justify-content: center;
}

.help-video-play {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #6c3ca6;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.help-video-title {
    font-weight: 700;
    color: #111111;
}

.help-video-subtitle {
    margin-top: 6px;
}

.help-video-player {
    width: 100%;
    max-width: 820px;
    border-radius: 12px;
    display: none;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: contain;
}

.help-video-embed {
    width: 100%;
    max-width: 820px;
    border-radius: 12px;
    display: none;
    aspect-ratio: 16 / 9;
    height: auto;
}

.help-video-embed.is-visible {
    display: block;
}

.help-video-player.is-visible {
    display: block;
}

.help-video-placeholder.is-hidden {
    display: none;
}

.help-video-button {
    margin-top: 18px;
    background: #6c3ca6;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
}

.help-video-button:hover {
    background: #5b3290;
}

.help-guide-section {
    margin-top: 36px;
}

.help-guide-section h2 {
    font-size: 22px;
    color: #111111;
}

.help-guide-lead {
    margin-top: 8px;
    color: #6a6a6a;
}

.help-guide-carousel {
    margin-top: 18px;
    background: #f2f3f6;
    border-radius: 18px;
    padding: 28px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
}

.help-guide-image-frame {
    display: grid;
    place-items: center;
}

.help-guide-image {
    max-width: 100%;
    height: auto;
    max-height: 420px;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.help-guide-nav {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #666666;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.help-guide-nav:hover {
    color: #111111;
}

.help-guide-counter {
    margin-top: 12px;
    text-align: right;
    color: #8a8a8a;
    font-weight: 600;
}

.help-caution-section {
    margin-top: 32px;
}

.help-caution-section h2 {
    font-size: 20px;
    color: #111111;
}

.help-caution-list {
    margin-top: 12px;
    padding-left: 18px;
    color: #666666;
}

.help-caution-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.help-caution-highlight {
    color: #6c3ca6;
    font-weight: 600;
}

.help-caution-note {
    margin-top: 6px;
    color: #7a7a7a;
}

/* Terms page */
.terms-page {
    background: linear-gradient(180deg, #fff5ef 0%, #ffffff 35%, #f7f7f7 100%);
    padding: 80px 20px 120px;
}

.terms-wrapper {
    max-width: 980px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 56px 64px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.terms-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #F26522;
}

.terms-hero h1 {
    margin-top: 12px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.45;
    color: #111111;
}

.terms-lead {
    margin-top: 16px;
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
}

.terms-callout {
    margin-top: 20px;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid #e7e7e7;
    background: #fafafa;
    color: #555555;
    line-height: 1.8;
}

.terms-callout-title {
    font-weight: 700;
    color: #111111;
    margin-bottom: 6px;
}

.terms-list {
    margin: 8px 0 0;
    padding-left: 22px;
    color: #555555;
    line-height: 1.8;
    font-size: 16px;
}

.terms-list li {
    margin-bottom: 10px;
}

.terms-sections {
    margin-top: 32px;
}

.terms-content {
    margin-top: 8px;
}

.terms-content h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    color: #111111;
}

.terms-content h1 span {
    color: inherit;
}

.terms-content p {
    margin-top: 16px;
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
}

.terms-content ol,
.terms-content ul {
    margin-top: 12px;
    margin-left: 22px;
    color: #555555;
    line-height: 1.8;
}

.terms-content ol {
    list-style: decimal;
}

.terms-content ul {
    list-style: disc;
}

.terms-content li {
    margin-bottom: 10px;
}

.terms-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    font-size: 14px;
    color: #555555;
}

.terms-content td,
.terms-content th {
    border: 1px solid #e2e2e2;
    padding: 8px 10px;
    text-align: left;
    vertical-align: top;
}

.terms-content a {
    color: #2f6c3b;
    text-decoration: underline;
}

.terms-content .font-bold {
    font-weight: 700;
    color: #111111;
}

.terms-content .text-gray-500 {
    color: #555555;
}

.terms-content .text-gray-800 {
    color: #111111;
}

.terms-content .text-primary {
    color: #F26522;
}

.terms-content .text-xl {
    font-size: 17px;
}

.terms-content .leading-8 {
    line-height: 1.8;
}

.terms-content .mt-6 {
    margin-top: 16px;
}

.terms-content .mt-4 {
    margin-top: 12px;
}

.terms-content .mt-2 {
    margin-top: 8px;
}

.terms-content .ml-5 {
    margin-left: 20px;
}

.terms-content .w-full {
    width: 100%;
}

.terms-content .border {
    border: 1px solid #e2e2e2;
}

.terms-content .border-gray-200 {
    border-color: #e2e2e2;
}

.terms-content .rounded-lg {
    border-radius: 12px;
}

.terms-content .px-4 {
    padding-left: 12px;
    padding-right: 12px;
}

.terms-content .py-3 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.terms-content .bg-gray-50 {
    background: #fafafa;
}

.terms-content .bg-white {
    background: #ffffff;
}

.terms-content .list-decimal {
    list-style: decimal;
}

.terms-content .list-roman {
    list-style: upper-roman;
}

.terms-content .text-left {
    text-align: left;
}

.terms-section {
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid #eeeeee;
}

.terms-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
    line-height: 1.5;
}

.terms-section p {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
}

.terms-contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px dashed #e6e6e6;
}

.terms-contact-card {
    background: #fff7f2;
    border-radius: 18px;
    padding: 24px;
    box-shadow: inset 0 0 0 1px rgba(242, 101, 34, 0.08);
}

.terms-contact-card h2 {
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 12px;
}

.terms-contact-card p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
}

.terms-contact-sub {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    color: #777777;
}

.terms-contact-hours {
    margin-top: 12px;
    font-weight: 600;
    color: #555555;
}

.terms-contact-hours.is-highlight {
    color: #2f6c3b;
}

.terms-contact-hours.is-alert {
    color: #c33a2c;
}

@media (max-width: 900px) {
    .nnp-nav {
        display: none;
    }

    .lang-region {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .header {
        justify-content: space-between;
        padding: 16px 20px;
    }

    .logo {
        margin-right: auto;
    }

    .logo-img {
        height: 45px;
    }
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 80px);
    padding: 40px 20px;
    text-align: center;
}

.tagline {
    color: #F26522;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.headline {
    font-size: 48px;
    font-weight: bold;
    color: #000;
    line-height: 1.2;
    margin-bottom: 20px;
}

.subtitle {
    color: #666;
    font-size: 18px;
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.app-buttons {
    display: flex;
    gap: 12px;
}

.app-btn img {
    height: 45px;
    width: auto;
}

/* Rate Calculator Section */
.rate-calculator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    padding: 40px 40px;
    min-height: 100vh;
    background-color: #f9fafb;
}

.calculator-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.calculator-content > p {
    color: #666;
    margin-bottom: 30px;
}

.calculator-box {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    min-width: 350px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.input-with-currency {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.input-with-currency input {
    flex: 1;
    padding: 15px;
    border: none;
    font-size: 18px;
    outline: none;
}

.input-with-currency .currency,
.input-with-currency .currency-select {
    background: #f5f5f5;
    padding: 15px 20px;
    font-weight: 600;
    border: none;
    font-size: 16px;
}

.exchange-info {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 14px;
    color: #666;
    border-bottom: 1px dashed #ddd;
    margin-bottom: 20px;
}

.send-btn {
    width: 100%;
    padding: 15px;
    background: #F26522;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.send-btn:hover {
    background: #d4540e;
}

.phone-mockup {
    width: 280px;
    height: 500px;
    background: #111;
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.phone-screen {
    background: white;
    height: 100%;
    border-radius: 30px;
    padding: 40px 20px;
    text-align: center;
}

.phone-screen .app-header {
    color: #F26522;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
}

.phone-screen .app-balance {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
}

.phone-screen .app-actions {
    display: flex;
    justify-content: space-around;
    color: #666;
}

/* Features Section */
.features {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 40px;
    min-height: 100vh;
    background-color: #F9FAFB;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #111;
}

.feature p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* App Features Section */
.app-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    padding: 40px 40px;
    min-height: 100vh;
    background: linear-gradient(135deg, #fff7ed 0%, #034EA2 100%);
}

.app-feature {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    width: 390px;
    height: 400px;
    flex: 0 0 390px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.app-feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.app-feature h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #111;
}

.feature-highlight {
    color: #F26522;
    font-weight: 600;
    margin-bottom: 15px;
}

.app-feature > p:last-child {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* How It Works Section */
.how-it-works {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 40px;
    min-height: 100vh;
    text-align: center;
}

.how-it-works-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    width: 100%;
    padding: 80px 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid #e8e9ea;
    cursor: pointer;
}

.how-it-works-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(3, 78, 162, 0.2);
    border-color: #034EA2;
}

.how-it-works-icon {
    font-size: 80px;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.how-it-works-card h2 {
    font-size: 48px;
    color: #111111;
    margin-bottom: 20px;
}

.how-it-works-subtitle {
    font-size: 20px;
    color: #666666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.how-it-works-arrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: #034EA2;
    font-weight: 600;
}

.arrow-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.how-it-works-card:hover .arrow-icon {
    transform: translateX(10px);
}

/* Countries Section */
.countries {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 40px;
    min-height: 100vh;
    text-align: center;
    background-color: #f9fafb;
}

.countries h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.country-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.country {
    background: white;
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Testimonials Section */
.testimonials {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 40px;
    min-height: 100vh;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    max-width: 350px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-flag {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.testimonial-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    opacity: 0.1;
    pointer-events: none;
}

/* Philippines - Blue and Red */
.testimonial-philippines {
    border-top-color: #0038A8;
}

.testimonial-philippines .testimonial-pattern {
    background: linear-gradient(135deg, #0038A8 0%, #CE1126 100%);
}

.testimonial-philippines:hover {
    box-shadow: 0 12px 40px rgba(0, 56, 168, 0.2);
}

/* Vietnam - Red and Yellow */
.testimonial-vietnam {
    border-top-color: #DA251D;
}

.testimonial-vietnam .testimonial-pattern {
    background: linear-gradient(135deg, #DA251D 0%, #FFCD00 100%);
}

.testimonial-vietnam:hover {
    box-shadow: 0 12px 40px rgba(218, 37, 29, 0.2);
}

/* China - Red */
.testimonial-china {
    border-top-color: #DE2910;
}

.testimonial-china .testimonial-pattern {
    background: linear-gradient(135deg, #DE2910 0%, #FFDE00 100%);
}

.testimonial-china:hover {
    box-shadow: 0 12px 40px rgba(222, 41, 16, 0.2);
}

.testimonial p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial p::before {
    content: '"';
    font-size: 60px;
    color: #034EA2;
    opacity: 0.1;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 1;
}

.testimonial .author {
    color: #034EA2;
    font-weight: 700;
    font-size: 16px;
}

.testimonial .country {
    color: #666;
    font-size: 13px;
    font-weight: 400;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #F26522 0%, #d4540e 100%);
    padding: 40px 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta-btn img {
    height: 50px;
}

/* Partners Section */
.partners {
    padding: 80px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #034EA2, transparent);
    opacity: 0.3;
}

.partners-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.partners-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #034EA2;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.partners-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #034EA2, transparent);
    border-radius: 2px;
}

.partners h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 40px;
    width: 100%;
    align-items: center;
    justify-items: center;
}

.partners-grid img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    min-height: 140px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(3, 78, 162, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.partner-logo:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(3, 78, 162, 0.15);
}

.partner-logo:hover::before {
    opacity: 1;
}

.partner-logo img {
    max-width: 100%;
    width: auto;
    object-fit: contain;
    filter: none;
    transition: transform 0.4s ease, filter 0.4s ease;
    position: relative;
    z-index: 1;
}

.partner-logo:hover img {
    transform: scale(1.05);
}

.partner {
    background: white;
    padding: 20px 40px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .partner-logo {
        padding: 30px 20px;
        min-height: 120px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Footer */
.footer {
    background-color: #fff7ed;
    color: #333;
    padding: 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr 1fr;
    gap: 40px;
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section .footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 28px;
    font-weight: bold;
    color: #F26522;
}

.footer-logo-img {
    height: 56px;
    width: auto;
}

.footer-section p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #F26522;
}

.footer-subsections {
    display: flex;
    gap: 30px;
}

.footer-subsection {
    flex: 1;
}

.footer-subsection h5 {
    font-size: 14px;
    margin-bottom: 15px;
    color: #034EA2;
    font-weight: 600;
}

.footer-subgroup {
    margin-bottom: 20px;
}

.footer-subgroup:last-child {
    margin-bottom: 0;
}

.footer-subgroup h6 {
    font-size: 12px;
    margin-bottom: 8px;
    color: #034EA2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #F26522;
}

.footer-bottom {
    border-top: 1px solid #F2652233;
    padding: 20px 40px;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 14px;
}

.floating-action {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background-color: #F26522;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 1000;
    cursor: pointer;
}

.floating-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.floating-action svg {
    width: 28px;
    height: 28px;
}

.exchange-rate {
    bottom: 96px;
    background-color: #F26522;
}

.help-desk {
    width: 48px;
    height: 48px;
    background-color: #034EA2;
}

.help-desk svg {
    width: 24px;
    height: 24px;
}

.help-desk:hover {
    background-color: #023a7a;
}

.chat-widget {
    position: fixed;
    right: 24px;
    bottom: 84px;
    z-index: 1001;
    pointer-events: none;
}

.chat-panel {
    width: 320px;
    max-width: calc(100vw - 48px);
    background-color: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.chat-widget.is-open .chat-panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.chat-widget.is-open {
    pointer-events: auto;
}

.chat-faq {
    display: flex;
    gap: 8px;
    padding: 0 16px 14px;
    flex-wrap: wrap;
    background-color: #fffaf6;
}

.chat-faq button {
    border: 1px solid #f1d3c2;
    background-color: #ffffff;
    color: #c5521f;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    cursor: pointer;
}

.chat-header {
    background: linear-gradient(135deg, #034EA2, #0260c4);
    color: #ffffff;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.chat-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-controls select {
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    cursor: pointer;
    appearance: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.chat-title {
    font-size: 16px;
    font-weight: 600;
}

.chat-subtitle {
    font-size: 12px;
    opacity: 0.85;
    margin-top: 4px;
}

.chat-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
}

.chat-messages {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 550px;
    overflow-y: auto;
    background-color: #fffaf6;
}

.chat-message {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 80%;
}

.chat-message p {
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 14px;
    background-color: #ffffff;
    color: #333;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.chat-message.bot p {
    border-top-left-radius: 6px;
}

.chat-message.user {
    align-self: flex-end;
}

.chat-message.user p {
    background-color: #034EA2;
    color: #ffffff;
    border-top-right-radius: 6px;
}

.chat-time {
    font-size: 11px;
    color: #999;
}

.chat-input {
    display: flex;
    gap: 8px;
    padding: 12px 14px;
    border-top: 1px solid #f0f0f0;
    background-color: #ffffff;
}

.chat-input input {
    flex: 1;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 13px;
    font-family: inherit;
}

.chat-input button {
    border: none;
    background-color: #034EA2;
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 13px;
}

.chat-input button:hover {
    background-color: #023a7a;
}

.rate-widget {
    position: fixed;
    right: 24px;
    bottom: 168px;
    z-index: 1001;
    pointer-events: none;
}

.rate-panel {
    width: 300px;
    max-width: calc(100vw - 48px);
    background-color: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.rate-widget.is-open .rate-panel,
.rate-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.rate-widget.is-open {
    pointer-events: auto;
}

.rate-header {
    background: linear-gradient(135deg, #F26522, #ff8c3a);
    color: #ffffff;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.rate-title {
    font-size: 16px;
    font-weight: 600;
}

.rate-subtitle {
    font-size: 12px;
    opacity: 0.85;
    margin-top: 4px;
}

.rate-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
}

.rate-body {
    padding: 16px 18px 18px;
    background-color: #fffaf6;
}

.rate-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 6px;
}

.rate-body input {
    width: 100%;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
}

.rate-body select {
    width: 100%;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
    background-color: #ffffff;
    margin-top: 8px;
}

.rate-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding: 12px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.rate-text {
    font-size: 12px;
    color: #666;
}

.rate-value {
    font-size: 16px;
    color: #F26522;
}

.rate-note {
    margin-top: 10px;
    font-size: 11px;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        padding: 16px 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .headline {
        font-size: 32px;
    }
    
    .app-buttons {
        flex-direction: column;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .testimonial-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .country-grid {
        gap: 15px;
    }
    
    .rate-calculator {
        flex-direction: column;
        gap: 40px;
    }
    
    .calculator-box {
        min-width: auto;
        width: 100%;
    }
    
    .phone-mockup {
        width: 240px;
        height: 420px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .app-features {
        flex-direction: column;
        align-items: center;
    }
    
    .app-feature {
        max-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .partners-grid {
        gap: 20px;
    }
    
    .partner {
        padding: 15px 25px;
        font-size: 16px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .floating-action {
        right: 16px;
        bottom: 16px;
        width: 48px;
        height: 48px;
    }

    .floating-action svg {
        width: 24px;
        height: 24px;
    }

    .exchange-rate {
        bottom: 80px;
    }

    .chat-widget {
        right: 16px;
        bottom: 140px;
    }

    .chat-panel {
        width: 100%;
    }

    .rate-widget {
        right: 16px;
        bottom: 140px;
    }

    .rate-panel {
        width: 100%;
    }
}


@media (max-width: 600px) {
    .b2b-comparison-section {
        padding: 20px 16px !important;
        border-radius: 12px !important;
    }

    .b2b-comparison-title {
        font-size: 1.4rem !important;
        margin-bottom: 1.5rem !important;
    }

    .b2b-comparison-table {
        min-width: 0 !important;
        table-layout: fixed;
    }

    .b2b-comparison-table th,
    .b2b-comparison-table td {
        padding: 10px 8px !important;
        font-size: 0.82rem !important;
        word-break: keep-all;
        word-wrap: break-word;
    }

    .b2b-comparison-table td:nth-child(2),
    .b2b-comparison-table th:nth-child(2) {
        font-size: 0.85rem !important;
        color: #F26522;
    }

    .b2b-comparison-table th:nth-child(2) {
        color: white !important;
    }

    .b2b-comparison-table th:first-child,
    .b2b-comparison-table td:first-child {
        width: 36%;
    }

    .b2b-comparison-table th:not(:first-child),
    .b2b-comparison-table td:not(:first-child) {
        width: 32%;
    }
}

@media (max-width: 768px) {
    .cross-border-row2 {
        flex-direction: column;
    }

    .cross-border-row2 > div {
        flex: 1 1 100% !important;
    }
}

@media (max-width: 768px) {
    .crossborder-img-row {
        flex-direction: column;
        gap: 16px;
    }

    .crossborder-img {
        max-width: 100% !important;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cross-border-advantages-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .reg-steps-row {
        flex-direction: column;
        align-items: center !important;
    }

    .reg-steps-row > div {
        width: 100%;
        min-width: unset !important;
    }

    .reg-steps-arrow {
        padding: 0 !important;
    }

    .reg-steps-arrow-icon {
        animation: bounce-down 1.5s ease-in-out infinite !important;
    }

    .reg-steps-arrow-icon::before {
        content: '↓';
    }

    .reg-steps-arrow-icon {
        font-size: 0 !important;
    }

    .reg-steps-arrow-icon::before {
        font-size: 2.5rem;
        color: white;
        display: block;
        text-align: center;
        line-height: 60px;
    }
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

@media (max-width: 768px) {
    .legal-content-wrapper {
        padding: 24px 16px !important;
        border-radius: 12px !important;
    }

    .legal-content-wrapper h1 {
        font-size: 1.5rem !important;
    }

    .legal-content-wrapper h2 {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 768px) {
    .legal-content-wrapper table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        font-size: 0.85rem;
    }

    .legal-content-wrapper td {
        padding: 0.5rem 0.6rem !important;
        word-break: break-all;
    }
}

/* Responsive line break utilities */
.br-mobile { display: none; }
.br-desktop { display: block; }

@media (max-width: 900px) {
    .br-mobile { display: block; }
    .br-desktop { display: none; }
}
