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

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Left Animation */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade In Right Animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale In Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.animate-fadeIn {
    animation: fadeIn 1.2s ease-out forwards;
}

.animate-fadeInUp {
    animation: fadeInUp 1.4s ease-out forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 1.4s ease-out forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 1.4s ease-out forwards;
}

.animate-scaleIn {
    animation: scaleIn 1.2s ease-out forwards;
}

/* Delay Classes */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Hero Wrapper (Navbar + Hero Section) */
.hero-wrapper {
    background-image: url('images/home/Group 275.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* Navbar Styles */
.navbar {
    background-color: transparent;
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

/* Personal Hero Section */
.personal-hero {
    background: #fff;
    padding: 60px 0 100px;
    min-height: calc(100vh - 80px);
}

.personal-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.personal-hero-left {
    display: flex;
    align-items: center;
}

.personal-hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 60px;
    letter-spacing: 0%;
    color: #000;
    margin: 0;
}

.personal-hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.personal-hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    z-index: 1;
}

.personal-hero-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    z-index: 2;
}

.personal-hero-phone {
    position: relative;
    z-index: 3;
    height: 100%;
    width: auto;
}

.hero-badge {
    position: absolute;
    padding: 10px 24px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    z-index: 4;
}

.badge-digital {
    background-color: #FFA500;
    top: 15%;
    left: -5%;
    transform: rotate(18deg);
}

.badge-instant-card {
    background-color: #00D9A3;
    top: 40%;
    right: -10%;
    transform: rotate(-21.79deg);
}

.badge-instant-payments {
    background: linear-gradient(135deg, #FF5B04 0%, #FF0000 100%);
    bottom: 20%;
    left: 5%;
    transform: rotate(-21.79deg);
}

/* Digital Assets Badges */
.badge-buy {
    background-color: #392A8D;
    top: 15%;
    left: -5%;
    transform: rotate(18deg);
}

.badge-sell {
    background-color: #DA310A;
    top: 40%;
    right: -10%;
    transform: rotate(-21.79deg);
}

.badge-hold {
    background-color: #FFA500;
    bottom: 20%;
    left: 5%;
    transform: rotate(-15deg);
}

/* Gateway to Digital Assets Section */
.gateway-section {
    background: #fff;
    padding: 100px 0;
}

.gateway-wrapper {
    background: #F7F7F9;
    border-radius: 40px;
    padding: 60px;
}

.gateway-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 60px;
    letter-spacing: 0%;
    color: #000;
    text-align: center;
    margin: 0 0 60px 0;
}

.gateway-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
    margin-bottom: 40px;
}

.gateway-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.gateway-card-purple {
    grid-column: 1 / 9;
    grid-row: 1;
    min-height: 320px;
}

.gateway-card-green {
    grid-column: 9 / 13;
    grid-row: 1;
    min-height: 320px;
}

.gateway-card-red {
    grid-column: 1 / 5;
    grid-row: 2;
    min-height: 320px;
}

.gateway-card-yellow {
    grid-column: 5 / 13;
    grid-row: 2;
    min-height: 320px;
}

.gateway-card-top {
    justify-content: flex-start;
}

.gateway-card-bottom {
    justify-content: flex-end;
}

.gateway-card-purple.gateway-card-bottom {
    justify-content: space-between;
}

.gateway-card-purple.gateway-card-bottom .gateway-card-content {
    gap: 0;
    height: 100%;
    justify-content: space-between;
}

.gateway-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.gateway-card-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.gateway-card-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gateway-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
    color: #fff;
    margin: 0;
}

.gateway-card-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #fff;
    margin: 0;
}

.btn-gateway {
    padding: 16px 32px;
    background-color: #FF5B04;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    margin: 0 auto;
}

.btn-gateway:hover {
    background-color: #e54f03;
}

/* Digital Features Section */
.digital-features {
    background: #fff;
    padding: 80px 0;
}

.digital-features-box {
    background: #F5F5F5;
    border-radius: 24px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.secure-assets-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.secure-assets-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.secure-assets-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 58px;
    color: #000;
    margin: 0;
}

.btn-compliance {
    padding: 16px 32px;
    background-color: #FF5B04;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    width: fit-content;
}

.btn-compliance:hover {
    background-color: #e54f03;
}

.secure-assets-right {
    flex: 1;
}

.secure-assets-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
}


.stablecoin-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.stablecoin-left {
    flex: 1;
}

.stablecoin-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
}

.stablecoin-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stablecoin-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 58px;
    color: #000;
    margin: 0;
}

.stablecoin-desc {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    margin: 0;
}

.btn-demo {
    padding: 16px 32px;
    background-color: #FF5B04;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    width: fit-content;
}

.btn-demo:hover {
    background-color: #e54f03;
}

/* Future of Trading Section */
.future-trading {
    background: #fff;
    padding: 80px 0;
}

.future-trading-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    letter-spacing: 0%;
    color: #000;
    text-align: center;
    margin: 0 0 60px 0;
}

.trading-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.trading-box {
    position: relative;
    border-radius: 24px;
    padding: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trading-box-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.trading-box-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
}

.trading-box-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trading-box-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    color: #fff;
    margin: 0;
}

.trading-box-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trading-box-list li {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    padding-left: 24px;
    position: relative;
}

.trading-box-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #fff;
}

.btn-trading-sales {
    padding: 16px 32px;
    background-color: #FF5B04;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    margin: 0 auto;
}

.btn-trading-sales:hover {
    background-color: #e54f03;
}

/* Why Swiss Payments List */
.why-swiss-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-swiss-list li {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    padding-left: 24px;
    position: relative;
}

.why-swiss-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #000;
}

.stablecoin-desc {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    margin: 0;
}

/* Contact Hero Section */
.contact-hero {
    background: #fff;
    padding: 120px 0;
    text-align: center;
}

.contact-hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 80px;
    line-height: 90px;
    color: #000;
    margin: 0 0 32px 0;
}

.contact-hero-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #000;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    background: #fff;
    padding: 80px 0;
}

.contact-form-box {
    background: #F5F5F5;
    border-radius: 24px;
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-form-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    color: #000;
    text-align: center;
    margin: 0 0 40px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #000;
}

.form-input {
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: #FF5B04;
}

.form-input::placeholder {
    color: #B0B0B0;
}

.form-textarea {
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    outline: none;
    transition: border-color 0.3s;
    resize: vertical;
    min-height: 120px;
}

.form-textarea:focus {
    border-color: #FF5B04;
}

.form-textarea::placeholder {
    color: #B0B0B0;
}

.btn-submit {
    padding: 18px 32px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 80px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 16px;
}

.btn-submit:hover {
    background-color: #333;
}

/* About Page Badges */
.badge-about-send {
    background-color: #392A8D;
    top: 15%;
    left: -5%;
    transform: rotate(18deg);
}

.badge-about-transfer {
    background-color: #FFA500;
    top: 40%;
    right: -10%;
    transform: rotate(-21.79deg);
}

.badge-about-exchange {
    background-color: #00A67E;
    bottom: 20%;
    left: 5%;
    transform: rotate(-15deg);
}

/* Affiliate Page Badges */
.badge-affiliate-earn {
    background-color: #FFA500;
    top: 15%;
    left: -5%;
    transform: rotate(18deg);
}

.badge-affiliate-commission {
    background-color: #DA310A;
    top: 40%;
    right: -10%;
    transform: rotate(-21.79deg);
}

.badge-affiliate-rewards {
    background-color: #00A67E;
    bottom: 20%;
    left: 5%;
    transform: rotate(-15deg);
}

/* Why Partner With Us Section */
.why-partner {
    background: #fff;
    padding: 80px 0;
}

.why-partner-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.why-partner-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-partner-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    color: #000;
    margin: 0;
}

.why-partner-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-partner-list li {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #000;
    padding-left: 32px;
    position: relative;
}

.why-partner-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #000;
    font-size: 20px;
}

.btn-partner {
    padding: 16px 32px;
    background-color: #FF5B04;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    width: fit-content;
}

.btn-partner:hover {
    background-color: #e54f03;
}

.why-partner-right {
    flex: 1;
    position: relative;
}

.why-partner-bg {
    width: 100%;
    height: auto;
    border-radius: 24px;
}

.why-partner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.why-partner-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: auto;
    z-index: 3;
}

/* How It Works Section */
.how-it-works-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    color: #E5E5E5;
    position: absolute;
    top: 20px;
    right: 20px;
}

.payment-info-card {
    position: relative;
}

.btn-how-it-works {
    padding: 16px 32px;
    background-color: #FF5B04;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    margin: 40px auto 0;
    grid-column: 1 / -1;
    width: fit-content;
    justify-self: center;
}

.btn-how-it-works:hover {
    background-color: #e54f03;
}

/* FAQs Hero Section */
.faqs-hero {
    background: #fff;
    padding: 120px 0;
    text-align: center;
}

.faqs-hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 74px;
    color: #000;
    margin: 0 0 24px 0;
}

.faqs-hero-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #666;
    margin: 0;
}

/* FAQs Content Section */
.faqs-content {
    background: #fff;
    padding: 60px 0 80px;
}

.faqs-wrapper {
    background: #F5F5F5;
    border-radius: 24px;
    padding: 40px;
}

.faq-category {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #E0E0E0;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.faq-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-category-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #000;
    margin: 0;
}

.faq-items-wrapper {
    display: flex;
    flex-direction: column;
}

.faq-item {
    background: transparent;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 0;
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid #E0E0E0;
}

.faq-question {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: transparent;
}

.faq-question span {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #000;
}

.faq-icon {
    font-size: 14px;
    color: #666;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #666;
    margin: 0;
    padding: 0 0 24px 0;
}

/* Looking for Something Specific Section */
.looking-for-specific {
    background: #fff;
    padding: 100px 0;
    text-align: center;
}

.looking-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 68px;
    color: #FF5B04;
    margin: 0 0 40px 0;
}

.btn-contact-support {
    background: #fff;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    padding: 20px 60px;
    border: 2px solid #000;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact-support:hover {
    background: #000;
    color: #fff;
}

/* Privacy Policy Hero Section */
.privacy-hero {
    background: #fff;
    padding: 100px 0 80px 0;
    text-align: center;
}

.privacy-hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 76px;
    color: #000;
    margin: 0 0 24px 0;
}

.privacy-hero-date {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #666;
    margin: 0;
}

/* Privacy Policy Content Section */
.privacy-content {
    background: #fff;
    padding: 60px 0 100px 0;
}

.privacy-box {
    background: #F8F8F8;
    border-radius: 20px;
    padding: 60px 80px;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #000;
    margin: 0 0 16px 0;
}

.privacy-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #333;
    margin: 0 0 16px 0;
}

.privacy-text:last-child {
    margin-bottom: 0;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
}

.privacy-list li {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #333;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.privacy-list li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #333;
}

.privacy-sublist {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 24px;
}

.privacy-sublist li {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #333;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.privacy-sublist li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #333;
}

.privacy-subsection {
    margin-top: 24px;
}

.privacy-subsection-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    margin: 0 0 12px 0;
}

.privacy-table {
    border: 1px solid #E0E0E0;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 24px;
}

.privacy-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.privacy-table-row:last-child {
    border-bottom: none;
}

.privacy-table-header {
    background: #F5F3F1;
    border-bottom: 1px solid #E0E0E0;
}

.privacy-table-header .privacy-table-cell {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #000;
    padding: 24px 32px;
}

.privacy-table-cell {
    padding: 24px 32px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #333;
    border-right: 1px solid #E0E0E0;
}

.privacy-table-cell:first-child {
    font-weight: 600;
    color: #000000;
}

.privacy-table-cell:last-child {
    border-right: none;
    font-weight: 600;
    color: #000000;
}

.privacy-table-row:not(.privacy-table-header):nth-child(odd) {
    background: #F5F3F1;
}

.privacy-table-row:not(.privacy-table-header):nth-child(even) {
    background: #fff;
}

/* Swiss Fintech Infrastructure Section */
.swiss-fintech {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.swiss-fintech-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    color: #000;
    margin: 0 0 24px 0;
}

.swiss-fintech-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #000;
    margin: 0;
}

/* Meet Our Team Section */
.meet-team {
    background: #fff;
    padding: 80px 0;
}

.meet-team-box {
    background: #F5F5F5;
    border-radius: 24px;
    padding: 60px;
}

.meet-team-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    letter-spacing: 2px;
    color: #000;
    text-align: center;
    margin: 0 0 16px 0;
}

.meet-team-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #000;
    text-align: center;
    margin: 0 0 60px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-grid .team-card:nth-child(1),
.team-grid .team-card:nth-child(2),
.team-grid .team-card:nth-child(3) {
    grid-column: span 2;
}

.team-grid .team-card:nth-child(4) {
    grid-column: 2 / 4;
}

.team-grid .team-card:nth-child(5) {
    grid-column: 4 / 6;
}

.team-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
}

.team-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #000;
    margin: 0 0 8px 0;
}

.team-role {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #666;
    margin: 0;
}

/* Everything For Everyday Payments Section */
.everyday-payments {
    background: #fff;
    padding: 100px 0;
}

.everyday-payments-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 60px;
    letter-spacing: 0%;
    color: #000;
    text-align: center;
    margin: 0 0 40px 0;
    grid-column: 1 / -1;
}

.payments-cards-grid {
    background: #F7F7F9;
    border-radius: 40px;
    padding: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 109px;
    padding-bottom: 109px;
}

/* About page - 3 columns for What We Stand For */
.payments-cards-grid:has(.payment-info-card:nth-child(4):last-child) {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-info-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.payment-icon-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.payment-icon-orange {
    background: transparent;
}

.payment-icon-green {
    background: transparent;
}

.payment-icon-red {
    background: transparent;
}

.payment-icon {
    width: 64px;
    height: 64px;
}

.payment-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #000;
    margin: 0;
}

.payment-card-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0%;
    color: #000;
    margin: 0;
}

/* Stay On Top Section */
.stay-on-top {
    background: #fff;
}

.stay-on-top-box {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
}

.stay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.stay-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px;
}

.stay-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 60px;
    letter-spacing: 0%;
    color: #fff;
    text-align: center;
    margin: 0 0 0px 0;
    grid-column: 1 / -1;
}

.stay-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stay-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 24px;
}

.stay-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stay-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stay-feature {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stay-feature-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #fff;
    margin: 0;
}

.stay-feature-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #fff;
    margin: 0;
}

.btn-talk-sales {
    padding: 16px 32px;
    background-color: #FF5B04;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-talk-sales:hover {
    background-color: #e54f03;
}

/* Simple Pricing Section */
.simple-pricing {
    background: #fff;
    padding: 100px 0;
}

.simple-pricing-box {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
}

.pricing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.pricing-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px;
}

.pricing-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pricing-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 56px;
    line-height: 64px;
    letter-spacing: 0%;
    color: #fff;
    margin: 0;
}

.pricing-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #000;
    margin: 0;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-item {
    background: #E4EEF033;
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-item-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #FF5B04;
}

.pricing-item-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #FFFFFF;
}

.pricing-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 24px;
}

/* Who Can Open Section */
.who-can-open {
    background: #fff;
    padding: 100px 0;
    text-align: center;
}

.who-can-open-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 72px;
    letter-spacing: 0%;
    color: #FF5B04;
    margin: 0 0 30px 0;
}

.who-can-open-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #000;
    margin: 0 0 40px 0;
}

.btn-lets-talk {
    padding: 16px 32px;
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-lets-talk:hover {
    background-color: #000;
    color: #fff;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 40px;
}

.logo-text {
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 21px;
    line-height: 22px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.02em;
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #FF5722;
}

.btn-signup {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 15px 20px;
    width: 117px;
    height: 52px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-signup:hover {
    background-color: #333;
}

/* Hero Section */
.hero {
    padding: 40px 0 0;
    min-height: calc(100vh - 80px);
    height: calc(100vh - 80px);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 60px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: #000;
    margin-bottom: 40px;
}

.hero-content {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone {
    max-height: calc(100vh - 300px);
    height: 100%;
    object-fit: contain;
    margin-top: 17px;
}

/* Feature Cards Section */
.features {
    padding: 80px 0;
    background: #fff;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.card-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.card-image {
    position: absolute;
    z-index: 3;
}

/* Card 1 - Your Card Your Control */
.card-1 .card-image {
    top: -20px;
    left: 0;
    width: 100%;
    height: auto;
    transform: none;
    border-top-left-radius: 40px;
}

.card-1 .card-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Card 2 - Multi-Currency payments */
.card-2 .card-header {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-2 .card-image {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 280px;
}

/* Card 3 - Clear Plans No Surprises */
.card-3 .card-image {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 110%;
    height: auto;
    max-width: none;
}

.card-3 .card-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Card 4 - Swiss-Grade Security */
.card-4 .card-header {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-4 .card-image {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 75%;
    max-width: none;
}

.card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #fff;
    margin: 0;
}

.card-arrow {
    flex-shrink: 0;
    margin-left: 12px;
}

/* Where Value Flows Section */
.value-flows {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 70px;
    line-height: 80px;
    letter-spacing: 0%;
    color: #000;
    text-align: center;
    margin-bottom: 80px;
}

.value-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.value-left {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.value-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value-item-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000;
    margin: 0;
}

.value-item-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000;
    margin: 0;
}

.btn-features {
    width: 160px;
    height: 52px;
    background-color: #FF5B04;
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 16px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.btn-features:hover {
    background-color: #e54f03;
}

.value-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.value-image {
    width: 120%;
    max-width: 750px;
    height: auto;
}

/* Cards Section */
.cards-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.cards-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background-image: url('images/home/Rectangle 44.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 40px;
    padding: 120px 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.cards-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cards-image {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.badge {
    position: absolute;
    padding: 8px 20px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
}

.virtual-cards {
    background-color: #00D9A3;
    top: 0%;
    left: 2%;
}

.physical-cards {
    background-color: #FF5B04;
    bottom: 30%;
    right: -5%;
}

.cards-right {
    position: relative;
    color: #fff;
}

.cards-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 70px;
    letter-spacing: 0%;
    color: #fff;
    margin-bottom: 40px;
}

.cards-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cards-features li {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #fff;
}

.btn-discover {
    padding: 16px 32px;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-discover:hover {
    background-color: #fff;
    color: #5842C3;
}

.star-decoration {
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 150px;
    height: auto;
}

/* Everyday Account Section */
.everyday-account {
    padding: 100px 0;
    background: #fff;
}

.everyday-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.everyday-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.everyday-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 45px;
    line-height: 50px;
    letter-spacing: 0%;
    color: #000;
    margin: 0;
}

.everyday-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000;
    margin: 0;
}

.everyday-buttons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.btn-open-account {
    padding: 16px 24px;
    background-color: #FF5B04;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-open-account:hover {
    background-color: #e54f03;
}

.btn-learn-more {
    padding: 16px 24px;
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-learn-more:hover {
    background-color: #000;
    color: #fff;
}

.everyday-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.everyday-image {
    width: 120%;
    max-width: 750px;
    height: auto;
}

/* Business Accounts Section */
.business-accounts {
    padding: 100px 0;
    background: #fff;
}

.business-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.business-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.business-image {
    width: 120%;
    max-width: 750px;
    height: auto;
}

.business-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.business-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 45px;
    line-height: 50px;
    letter-spacing: 0%;
    color: #000;
    margin: 0;
}

.business-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000;
    margin: 0;
}

.business-buttons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.btn-open-business {
    padding: 16px 24px;
    background-color: #FF5B04;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-open-business:hover {
    background-color: #e54f03;
}

.btn-explore-more {
    padding: 16px 24px;
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-explore-more:hover {
    background-color: #000;
    color: #fff;
}

/* Local Feel Global Reach Section */
.local-global {
    padding: 100px 0;
    background: #fff;
}

.local-global-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.local-global-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 70px;
    letter-spacing: 0%;
    color: #000;
    margin: 0;
}

.local-global-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #000;
    margin: 0;
}

.btn-view-payments {
    padding: 16px 32px;
    background-color: #FF5B04;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 16px;
}

.btn-view-payments:hover {
    background-color: #e54f03;
}

/* Payment Types Section */
.payment-types {
    padding: 100px 0;
    background: #fff;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.payment-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 40px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.payment-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.ring-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: auto;
    z-index: 2;
    opacity: 0.3;
}

.portal-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: auto;
    z-index: 2;
    opacity: 0.4;
}

.globe-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: auto;
    z-index: 2;
    opacity: 0.3;
    border-bottom-right-radius: 24px;
}

.payment-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* .payment-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0%;
    color: #fff;
    margin: 0;
} */

.payment-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-list li {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #fff;
}

.bitcoin-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: auto;
    z-index: 3;
    opacity: 0.5;
}

.bitcoin-image {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 180px;
    height: auto;
    z-index: 4;
}

.crypto-coins {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    z-index: 4;
}

.sol-coin,
.eth-coin {
    width: 80px;
    height: auto;
}

/* Our Partners Section */
.partners {
    padding: 80px 0;
    background: #fff;
}

.partners-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 60px;
    letter-spacing: 0%;
    color: #000;
    text-align: center;
    margin: 0 0 60px 0;
}

.partners-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.partner-logo-duplicate {
    display: none;
}

@media (max-width: 768px) {
    .partners-logos {
        flex-wrap: nowrap;
        animation: slide 20s linear infinite;
        width: max-content;
    }

    .partner-logo-duplicate {
        display: block;
    }
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s;
    flex-shrink: 0;
}

/* Fast Reliable Settlement Section */
.settlement {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.settlement-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.4;
}

.settlement .container {
    position: relative;
    z-index: 2;
}

.settlement-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 75px;
    line-height: 120px;
    letter-spacing: 0%;
    color: #FF5B04;
    text-align: center;
    margin: 0 0 60px 0;
}

.settlement-box {
    position: relative;
    border-radius: 80px;
    overflow: visible;
    padding: 90px 120px 80px 60px;
    display: flex;
    align-items: flex-end;
    gap: 60px;
    min-height: 320px;
    margin-top: 150px;
}

.settlement-box-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 80px;
}

.yellow-star {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: auto;
    z-index: 2;
    opacity: 0.3;
}

.orange-star {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: auto;
    z-index: 6;
}

.settlement-content {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: center;
}

.settlement-box-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0%;
    color: #000;
    margin: 0;
}

.settlement-box-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #000;
    margin: 0;
    max-width: 500px;
}

.btn-get-started {
    padding: 16px 32px;
    background-color: #FF5B04;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
    margin-top: 10px;
}

.btn-get-started:hover {
    background-color: #e54f03;
}

.girl-image {
    position: absolute;
    bottom: 0;
    right: 80px;
    z-index: 5;
    height: 600px;
    width: auto;
}

/* Footer */
.footer {
    background-color: #121016;
    color: #fff;
    padding: 80px 0 40px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.footer-logo-text {
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s;
}

.social-link:hover {
    color: #FF5B04;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 60px;
    flex: 1;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    margin: 0 0 10px 0;
    min-height: 28px;
}

.footer-column-extra .footer-title {
    visibility: hidden;
}


.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li a {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list li a:hover {
    color: #FF5B04;
}

.footer-copyright {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #ccc;
    margin: 40px 0 30px 0;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-disclaimer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-disclaimer p {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: #D9D9D9;
    margin: 0;
}

.footer-info-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: #D9D9D9;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 60px;
        line-height: 75px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Navbar */
    .navbar {
        padding: 16px 0;
    }

    .logo img {
        height: 35px;
    }

    .logo-text {
        font-size: 18px;
        line-height: 20px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-link {
        font-size: 13px;
    }

    .btn-signup {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Hero Section */
    .hero {
        padding: 40px 0 60px 0;
    }

    .hero-title {
        font-size: 42px;
        line-height: 52px;
        margin-bottom: 40px;
    }

    .hero-content {
        height: 450px;
    }

    .hero-phone {
        max-height: 450px;
    }

    /* Feature Cards */
    .features {
        padding: 60px 0;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-card {
        height: 280px;
        padding: 20px;
    }

    .card-title {
        font-size: 15px;
        line-height: 22px;
    }

    .card-arrow {
        width: 32px;
        height: 32px;
    }

    .card-image {
        max-width: 120px;
    }

    /* Value Section */
    .value {
        padding: 60px 0;
    }

    .section-title {
        font-size: 48px;
        line-height: 58px;
        margin-bottom: 40px;
    }

    .value-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .value-item-title {
        font-size: 32px;
        line-height: 40px;
    }

    .value-item-text {
        font-size: 18px;
        line-height: 26px;
    }

    /* Cards Section */
    .cards-section {
        padding: 60px 0;
    }

    .cards-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cards-title {
        font-size: 40px;
        line-height: 50px;
    }

    .cards-features li {
        font-size: 14px;
        line-height: 22px;
    }

    .btn-features {
        padding: 14px 32px;
        font-size: 15px;
    }

    /* Everyday Section */
    .everyday {
        padding: 60px 0;
    }

    .everyday-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .everyday-title {
        font-size: 32px;
        line-height: 40px;
    }

    .everyday-text {
        font-size: 15px;
        line-height: 24px;
    }

    .everyday-image {
        max-width: 100%;
    }

    /* Business Section */
    .business {
        padding: 60px 0;
    }

    .business-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .business-title {
        font-size: 32px;
        line-height: 40px;
    }

    .business-text {
        font-size: 15px;
        line-height: 24px;
    }

    /* Local Global Section */
    .local-global {
        padding: 60px 0;
    }

    .local-global-title {
        font-size: 42px;
        line-height: 52px;
        margin-bottom: 30px;
    }

    .local-global-text {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 40px;
    }

    .payment-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .payment-card {
        padding: 30px;
        min-height: 320px;
    }

    .payment-card-title {
        font-size: 26px;
        line-height: 34px;
    }

    .payment-list li {
        font-size: 14px;
        line-height: 22px;
    }

    /* Partners Section */
    .partners {
        padding: 60px 0;
    }

    .partners-title {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 40px;
    }

    .partners-logos {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
    }

    .partner-logo {
        height: 32px;
    }

    /* Settlement Section */
    .settlement {
        padding: 60px 0;
    }

    .settlement-title {
        font-size: 42px;
        line-height: 52px;
        margin-bottom: 40px;
    }

    .settlement-box {
        flex-direction: column;
        padding: 40px;
        gap: 40px;
    }

    .settlement-box-title {
        font-size: 28px;
        line-height: 36px;
    }

    .settlement-box-text {
        font-size: 15px;
        line-height: 24px;
    }

    .girl-image {
        width: 250px;
    }

    .orange-star {
        width: 55px;
        top: 30px;
        right: 40px;
    }

    /* Privacy Policy Mobile */
    .privacy-hero-title {
        font-size: 48px;
        line-height: 56px;
    }

    .privacy-box {
        padding: 40px;
    }

    .privacy-table-row {
        grid-template-columns: 1fr;
    }

    .privacy-table-cell {
        padding: 20px 24px;
    }

    .privacy-table-cell:first-child {
        border-right: none;
        border-bottom: 1px solid #E0E0E0;
    }

    /* FAQs Mobile */
    .faqs-hero-title {
        font-size: 48px;
        line-height: 56px;
    }

    .faq-category {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-category-title {
        font-size: 20px;
    }

    .looking-title {
        font-size: 42px;
        line-height: 50px;
    }

    /* Personal Hero Tablet */
    .personal-hero {
        padding: 40px 0 60px;
        min-height: auto;
    }

    .personal-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .personal-hero-title {
        font-size: 40px;
        line-height: 50px;
    }

    .personal-hero-right {
        height: 450px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 18px;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .team-member:nth-child(1),
    .team-member:nth-child(2),
    .team-member:nth-child(3) {
        grid-column: span 1;
    }

    .team-member:nth-child(4) {
        grid-column: 1 / 2;
    }

    .team-member:nth-child(5) {
        grid-column: 2 / 3;
    }

    /* Payments Cards Grid Tablet */
    .payments-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 50px 30px;
    }

    .payments-cards-grid:has(.payment-info-card:nth-child(4):last-child) {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .everyday-payments-title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    /* Navbar Mobile */
    .navbar {
        padding: 12px 0;
    }

    .logo {
        gap: 8px;
    }

    .logo img {
        height: 28px;
    }

    .logo-text {
        font-size: 15px;
        line-height: 17px;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 24px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 16px;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        text-align: left;
    }

    .btn-signup {
        padding: 14px 24px;
        font-size: 16px;
        width: 100%;
        margin-top: 20px;
    }

    /* Hero Mobile */
    .hero {
        padding: 30px 0 50px 0;
    }

    .hero-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 30px;
        text-align: center;
    }

    .hero-content {
        height: 350px;
    }

    .hero-phone {
        max-height: 350px;
    }

    /* Feature Cards Mobile */
    .features {
        padding: 40px 0;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        height: 250px;
        padding: 16px;
    }

    .card-title {
        font-size: 14px;
        line-height: 20px;
    }

    .card-arrow {
        width: 28px;
        height: 28px;
    }

    .card-image {
        max-width: 100px;
    }

    /* Value Section Mobile */
    .value {
        padding: 40px 0;
    }

    .section-title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 30px;
        text-align: center;
    }

    .value-content {
        gap: 30px;
    }

    .value-item-title {
        font-size: 24px;
        line-height: 32px;
    }

    .value-item-text {
        font-size: 16px;
        line-height: 24px;
    }

    /* Cards Section Mobile */
    .cards-section {
        padding: 40px 0;
    }

    .cards-content {
        padding: 40px 24px;
        gap: 40px;
        border-radius: 24px;
    }

    .cards-left {
        order: 2;
    }

    .cards-right {
        order: 1;
    }

    .cards-image {
        max-width: 100%;
    }

    .badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .virtual-cards {
        top: 5%;
        left: 5%;
    }

    .physical-cards {
        bottom: 20%;
        right: 5%;
    }

    .cards-title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 24px;
    }

    .cards-features {
        gap: 14px;
        margin-bottom: 30px;
    }

    .cards-features li {
        font-size: 14px;
        line-height: 22px;
    }

    .btn-discover {
        width: 100%;
        max-width: none;
        font-size: 15px;
        padding: 16px 32px;
    }

    .star-decoration {
        display: none;
    }

    /* Everyday Section Mobile */
    .everyday {
        padding: 40px 0;
    }

    .everyday-content {
        gap: 30px;
    }

    .everyday-title {
        font-size: 24px;
        line-height: 32px;
    }

    .everyday-text {
        font-size: 14px;
        line-height: 22px;
    }

    .everyday-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-open-account,
    .btn-learn-more {
        width: 100%;
        font-size: 14px;
        padding: 14px 24px;
    }

    .everyday-image {
        max-width: 100%;
    }

    /* Business Section Mobile */
    .business {
        padding: 40px 0;
    }

    .business-content {
        gap: 30px;
    }

    .business-title {
        font-size: 24px;
        line-height: 32px;
    }

    .business-text {
        font-size: 14px;
        line-height: 22px;
    }

    .business-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-open-business,
    .btn-explore-more {
        width: 100%;
        font-size: 14px;
        padding: 14px 24px;
    }

    /* Local Global Section Mobile */
    .local-global {
        padding: 40px 0;
    }

    .local-global-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px;
        text-align: center;
    }

    .local-global-text {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 30px;
        text-align: center;
    }

    .payment-grid {
        gap: 16px;
    }

    .payment-card {
        padding: 24px;
        min-height: 300px;
    }

    .payment-card-title {
        font-size: 22px;
        line-height: 30px;
    }

    .payment-list {
        gap: 10px;
    }

    .payment-list li {
        font-size: 13px;
        line-height: 20px;
    }

    .bitcoin-image {
        width: 80px;
    }

    .sol-coin,
    .eth-coin {
        width: 50px;
    }

    /* Partners Section Mobile */
    .partners {
        padding: 40px 0;
    }

    .partners-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 30px;
        text-align: center;
    }

    .partners-logos {
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0 20px;
    }

    .partner-logo {
        height: 24px;
        width: auto;
        max-width: 100px;
    }

    /* Settlement Section Mobile */
    .settlement {
        padding: 40px 0;
    }

    .settlement-title {
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 24px;
        text-align: center;
    }

    .settlement-box {
        padding: 40px 20px;
        gap: 30px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: 32px;
        margin-top: 40px;
    }

    .settlement-content {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .girl-image {
        display: none;
    }

    .settlement-box-title {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 16px;
    }

    .settlement-box-text {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .btn-get-started {
        width: 100%;
        max-width: 300px;
        font-size: 15px;
        padding: 16px 32px;
        align-self: center;
    }

    .yellow-star {
        width: 60%;
        opacity: 0.2;
    }

    .orange-star {
        width: 45px;
        top: 15px;
        right: 15px;
    }

    /* Personal Hero Mobile */
    .personal-hero {
        padding: 80px 0 50px;
        min-height: auto;
    }

    .personal-hero-content {
        gap: 30px;
    }

    .personal-hero-left {
        order: 2;
    }

    .personal-hero-title {
        font-size: 28px;
        line-height: 36px;
        text-align: center;
        margin-top: 20px;
    }

    .personal-hero-right {
        height: 300px;
        order: 1;
    }

    .personal-hero-phone {
        height: 90%;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .badge-digital {
        top: 10%;
        left: 0%;
    }

    .badge-instant-card {
        top: 45%;
        right: -5%;
    }

    .badge-instant-payments {
        bottom: 15%;
        left: 0%;
    }

    /* Everyday Payments Mobile */
    .everyday-payments {
        padding: 40px 0;
    }

    .everyday-payments-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 30px;
    }

    .payments-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 20px;
        border-radius: 24px;
    }

    .payments-cards-grid:has(.payment-info-card:nth-child(4):last-child) {
        gap: 20px;
    }

    .everyday-payments-title {
        grid-column: 1;
        text-align: center;
        margin-bottom: 10px;
    }

    .payment-info-card {
        padding: 24px;
    }

    .payment-card-title {
        font-size: 18px;
        line-height: 26px;
        color: #000;
    }

    .payment-card-text {
        font-size: 14px;
        line-height: 22px;
    }

    /* Stay On Top Mobile */
    .stay-on-top {
        padding: 40px 0;
    }

    .stay-on-top-box {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .stay-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
        text-align: left;
    }

    .stay-title {
        font-size: 28px;
        line-height: 36px;
        text-align: left;
        margin-bottom: 20px;
    }

    .stay-left {
        display: none;
    }

    .stay-right {
        width: 100%;
        gap: 24px;
    }

    .stay-features {
        gap: 20px;
    }

    .stay-feature-title {
        font-size: 16px;
        line-height: 24px;
    }

    .stay-feature-text {
        font-size: 13px;
        line-height: 20px;
    }

    /* Simple Pricing Mobile */
    .simple-pricing {
        padding: 40px 0;
    }

    .simple-pricing-box {
        border-radius: 24px;
    }

    .pricing-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }

    .pricing-left {
        gap: 24px;
    }

    .pricing-title {
        font-size: 32px;
        line-height: 40px;
    }

    .pricing-subtitle {
        font-size: 14px;
        line-height: 22px;
    }

    .pricing-list {
        gap: 12px;
    }

    .pricing-item {
        padding: 14px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .pricing-item-label {
        font-size: 13px;
    }

    .pricing-item-value {
        font-size: 15px;
    }

    .pricing-right {
        display: none;
    }

    /* Who Can Open Mobile */
    .who-can-open {
        padding: 40px 0;
    }

    .who-can-open-title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .who-can-open-text {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 30px;
    }

    .btn-lets-talk {
        font-size: 14px;
        padding: 14px 28px;
        width: 100%;
        max-width: 280px;
    }

    /* Gateway Section Mobile */
    .gateway-section {
        padding: 40px 0;
    }

    .gateway-wrapper {
        padding: 30px 16px;
        border-radius: 24px;
    }

    .gateway-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 30px;
    }

    .gateway-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 30px;
    }

    .gateway-card {
        padding: 24px;
        min-height: 200px;
    }

    .gateway-card-purple,
    .gateway-card-green,
    .gateway-card-red,
    .gateway-card-yellow {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .gateway-card-title {
        font-size: 22px;
        line-height: 30px;
    }

    .gateway-card-text {
        font-size: 13px;
        line-height: 20px;
    }

    .gateway-bottom-text {
        font-size: 13px;
        line-height: 20px;
    }

    .btn-gateway {
        width: 100%;
        max-width: 300px;
        font-size: 14px;
        padding: 14px 28px;
    }

    /* Digital Features Mobile */
    .digital-features {
        padding: 40px 0;
    }

    .digital-features-box {
        padding: 30px 20px;
        gap: 40px;
        border-radius: 20px;
    }

    .secure-assets-content {
        flex-direction: column;
        gap: 30px;
    }

    .secure-assets-left {
        gap: 24px;
        text-align: center;
    }

    .secure-assets-title {
        font-size: 28px;
        line-height: 36px;
    }

    .btn-compliance {
        width: 100%;
        max-width: 300px;
        font-size: 14px;
        padding: 14px 28px;
        margin: 0 auto;
    }

    .secure-assets-right {
        order: -1;
    }

    .secure-assets-image {
        border-radius: 16px;
    }

    .stablecoin-content {
        flex-direction: column;
        gap: 30px;
    }

    .stablecoin-right {
        gap: 24px;
        text-align: center;
    }

    .stablecoin-title {
        font-size: 28px;
        line-height: 36px;
    }

    .btn-demo {
        width: 100%;
        max-width: 300px;
        font-size: 14px;
        padding: 14px 28px;
        margin: 0 auto;
    }

    .stablecoin-image {
        border-radius: 16px;
    }

    .stablecoin-desc {
        font-size: 14px;
        line-height: 22px;
    }

    /* Future of Trading Mobile */
    .future-trading {
        padding: 40px 0;
    }

    .future-trading-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 30px;
    }

    .trading-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .trading-box {
        padding: 30px 20px;
        gap: 20px;
        border-radius: 20px;
    }

    .trading-box-title {
        font-size: 22px;
        line-height: 30px;
    }

    .trading-box-list li {
        font-size: 13px;
        line-height: 20px;
        padding-left: 20px;
    }

    .btn-trading-sales {
        width: 100%;
        max-width: 300px;
        font-size: 14px;
        padding: 14px 28px;
    }

    .why-swiss-list li {
        font-size: 14px;
        line-height: 22px;
        padding-left: 20px;
    }

    /* Contact Page Mobile */
    .contact-hero {
        padding: 60px 0 40px;
    }

    .contact-hero-title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 20px;
    }

    .contact-hero-text {
        font-size: 14px;
        line-height: 22px;
        padding: 0 20px;
    }

    .contact-form-section {
        padding: 40px 0;
    }

    .contact-form-box {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .contact-form-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 30px;
    }

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

    .form-input,
    .form-textarea {
        font-size: 14px;
        padding: 14px 16px;
    }

    .btn-submit {
        font-size: 14px;
        padding: 14px 28px;
    }

    /* About Page Mobile */
    .swiss-fintech {
        padding: 40px 0;
    }

    .swiss-fintech-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px;
    }

    .swiss-fintech-text {
        font-size: 14px;
        line-height: 22px;
        padding: 0 20px;
    }

    .meet-team {
        padding: 40px 0;
    }

    .meet-team-box {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .meet-team-title {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }

    .meet-team-subtitle {
        font-size: 14px;
        line-height: 22px;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .team-grid .team-card:nth-child(1),
    .team-grid .team-card:nth-child(2),
    .team-grid .team-card:nth-child(3),
    .team-grid .team-card:nth-child(4),
    .team-grid .team-card:nth-child(5) {
        grid-column: span 1;
    }

    .team-card {
        padding: 20px;
    }

    .team-name {
        font-size: 18px;
        line-height: 26px;
    }

    .team-role {
        font-size: 13px;
        line-height: 19px;
    }

    /* Affiliate Page Mobile */
    .why-partner {
        padding: 40px 0;
    }

    .why-partner-content {
        flex-direction: column;
        gap: 30px;
    }

    .why-partner-left {
        gap: 24px;
        text-align: center;
    }

    .why-partner-title {
        font-size: 28px;
        line-height: 36px;
    }

    .why-partner-list {
        gap: 12px;
        text-align: left;
    }

    .why-partner-list li {
        font-size: 14px;
        line-height: 22px;
        padding-left: 24px;
    }

    .why-partner-list li::before {
        font-size: 16px;
    }

    .btn-partner {
        width: 100%;
        max-width: 300px;
        font-size: 14px;
        padding: 14px 28px;
        margin: 0 auto;
    }

    .why-partner-right {
        order: -1;
    }

    .how-it-works-number {
        font-size: 36px;
        line-height: 44px;
        top: 16px;
        right: 16px;
    }

    .btn-how-it-works {
        width: 100%;
        max-width: 300px;
        font-size: 14px;
        padding: 14px 28px;
        margin-top: 30px;
    }

    /* Privacy Policy 480px */
    .privacy-hero-title {
        font-size: 36px;
        line-height: 44px;
    }

    .privacy-hero-date {
        font-size: 16px;
    }

    .privacy-box {
        padding: 24px;
        border-radius: 16px;
    }

    .privacy-section-title {
        font-size: 16px;
    }

    .privacy-text {
        font-size: 14px;
        line-height: 22px;
    }

    .privacy-table {
        border-radius: 16px;
    }

    .privacy-table-header .privacy-table-cell {
        font-size: 16px;
        padding: 16px 20px;
    }

    .privacy-table-cell {
        font-size: 14px;
        padding: 16px 20px;
    }

    .privacy-list li,
    .privacy-sublist li {
        font-size: 14px;
        line-height: 22px;
    }

    /* FAQs 480px */
    .faqs-hero {
        padding: 60px 0 40px;
    }

    .faqs-hero-title {
        font-size: 36px;
        line-height: 44px;
    }

    .faqs-hero-text {
        font-size: 14px;
        line-height: 22px;
        padding: 0 20px;
    }

    .faqs-content {
        padding: 40px 0;
    }

    .faqs-wrapper {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .faq-category {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .faq-category-title {
        font-size: 18px;
    }

    .faq-item {
        padding: 16px;
    }

    .faq-question span {
        font-size: 14px;
        line-height: 20px;
    }

    .faq-answer p {
        font-size: 13px;
        line-height: 20px;
    }

    .looking-title {
        font-size: 32px;
        line-height: 40px;
    }

    .btn-contact-support {
        font-size: 14px;
        padding: 14px 32px;
    }

    /* Footer 480px */
    .footer {
        padding: 40px 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 30px;
    }

    .footer-left {
        gap: 24px;
    }

    .footer-logo-container {
        gap: 10px;
    }

    .footer-logo-img {
        height: 32px;
    }

    .footer-logo-text {
        font-size: 16px;
        line-height: 18px;
    }

    .social-links {
        gap: 16px;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
    }

    .footer-column {
        padding: 0;
    }

    .footer-title {
        font-size: 14px;
        margin-bottom: 12px;
    }

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

    .footer-list a {
        font-size: 13px;
    }

    .footer-copyright {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .footer-bottom {
        padding-top: 24px;
    }

    .footer-disclaimer p,
    .footer-info-text {
        font-size: 11px;
        line-height: 16px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-member:nth-child(1),
    .team-member:nth-child(2),
    .team-member:nth-child(3),
    .team-member:nth-child(4),
    .team-member:nth-child(5) {
        grid-column: span 1;
    }

    .settlement-box-text {
        font-size: 13px;
        line-height: 20px;
    }

    .girl-image {
        width: 220px;
    }

    .orange-star {
        width: 50px;
        top: 20px;
        right: 30px;
    }
}

/* Modal Popup Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    border-radius: 32px;
    max-width: 900px;
    width: 90%;
    max-height: 95vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    background-image: url('images/home/modelbg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 32px 40px;
    border-radius: 32px 32px 0 0;
    position: relative;
}

.modal-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    color: #fff;
    margin: 0;
}

.modal-leaf-yellow {
    position: absolute;
    top: 0;
    right: 100px;
    width: 80px;
    height: auto;
}

.modal-leaf-green {
    position: absolute;
    top: 0;
    right: 21px;
    width: 80px;
    height: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.5);
}

.modal-body {
    padding: 40px;
    overflow: visible;
    position: relative;
    min-height: 500px;
}

.modal-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #000;
    margin: 0 0 32px 0;
    position: relative;
    z-index: 2;
}

.modal-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.modal-feature-box {
    background: #F5F5F5;
    border-radius: 16px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.modal-icon {
    width: 48px;
    height: 48px;
}

.modal-feature-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    margin: 0;
}

.modal-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.modal-checklist li {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #121016;
    padding-left: 32px;
    position: relative;
}

.modal-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url('images/home/tik.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.btn-modal-cta {
    background: #FF5B04;
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 16px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.btn-modal-cta:hover {
    background: #e54f03;
    transform: translateY(-2px);
}

.modal-cards-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.modal-bg-red {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35%;
    height: auto;
}

.modal-cards {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 30%;
    max-width: 250px;
    height: auto;
}

/* Modal Mobile Styles */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        border-radius: 24px;
    }

    .modal-header {
        padding: 24px 20px;
        border-radius: 24px 24px 0 0;
    }

    .modal-title {
        font-size: 24px;
        line-height: 32px;
        padding-right: 60px;
    }

    .modal-leaf-yellow {
        width: 60px;
        right: 70px;
    }

    .modal-leaf-green {
        width: 80px;
        right: 10px;
    }

    .modal-body {
        padding: 24px 20px;
        overflow-y: auto;
        max-height: calc(90vh - 100px);
        min-height: auto;
    }

    .modal-subtitle {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 24px;
    }

    .modal-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .modal-bg-red {
        width: 50%;
    }

    .modal-cards {
        width: 45%;
        bottom: 12px;
        right: 12px;
    }
}

@media (max-width: 480px) {
    .modal-title {
        font-size: 20px;
        line-height: 28px;
    }

    .modal-subtitle {
        font-size: 18px;
        line-height: 26px;
    }

    .modal-feature-box {
        padding: 20px 12px;
    }

    .modal-bg-red {
        width: 55%;
    }

    .modal-cards {
        width: 50%;
        bottom: 10px;
        right: 10px;
    }
}

/* Multi-Currency Modal Specific Styles */
.modal-header-multi {
    background-image: url('images/home/multibg_model.svg');
}

.modal-description {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #666;
    margin: 0 0 32px 0;
    position: relative;
    z-index: 2;
}

.modal-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #000;
    margin: 0 0 24px 0;
    position: relative;
    z-index: 2;
}

.modal-bg-multi {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28%;
    height: auto;
}

.modal-coins {
    position: absolute;
    bottom: 30px;
    right: 10px;
    width: 25%;
    max-width: 200px;
    height: auto;
}

@media (max-width: 768px) {
    .modal-bg-multi {
        width: 50%;
    }

    .modal-coins {
        width: 45%;
        bottom: 12px;
        right: 12px;
    }
}

@media (max-width: 480px) {
    .modal-bg-multi {
        width: 55%;
    }

    .modal-coins {
        width: 50%;
        bottom: 10px;
        right: 10px;
    }
}

/* Pricing Modal Specific Styles */
.modal-header-pricing {
    background-image: url('images/home/yellowbg_model.svg');
}

.modal-leaf-red {
    position: absolute;
    top: 0;
    right: 100px;
    width: 80px;
    height: auto;
}

.modal-leaf-blue {
    position: absolute;
    top: 0;
    right: 21px;
    width: 80px;
    height: auto;
}

.pricing-plans {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.pricing-plan {
    background: #F5F5F5;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pricing-plan:nth-child(1) {
    background: #E8E4FF;
}

.pricing-plan:nth-child(2) {
    background: #D4F4E7;
}

.pricing-plan:nth-child(3) {
    background: #FFE4E4;
}

.plan-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    margin: 0;
    white-space: nowrap;
}

.plan-description {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #666;
    margin: 0;
}

.modal-bg-pricing {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28%;
    height: auto;
}

.modal-currency {
    position: absolute;
    bottom: 30px;
    right: 10px;
    width: 25%;
    max-width: 200px;
    height: auto;
}

@media (max-width: 768px) {
    .modal-leaf-red {
        width: 60px;
        right: 70px;
    }

    .modal-leaf-blue {
        width: 80px;
        right: 10px;
    }

    .modal-bg-pricing {
        width: 50%;
    }

    .modal-currency {
        width: 45%;
        bottom: 25px;
        right: 12px;
    }
}

@media (max-width: 480px) {
    .modal-bg-pricing {
        width: 55%;
    }

    .modal-currency {
        width: 50%;
        bottom: 20px;
        right: 10px;
    }
}

/* Security Modal Specific Styles */
.modal-header-security {
    background-image: url('images/home/greenbg_model.svg');
}

.modal-leaf-yellow-right {
    position: absolute;
        top: 0;
    right: 21px;
    width: 80px;
    height: auto;
}

.modal-bg-security {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28%;
    height: auto;
}

.modal-lock {
    position: absolute;
    bottom: 30px;
    right: 10px;
    width: 25%;
    max-width: 200px;
    height: auto;
}

@media (max-width: 768px) {
    .modal-leaf-yellow-right {
        width: 80px;
        right: 10px;
    }

    .modal-bg-security {
        width: 50%;
    }

    .modal-lock {
        width: 45%;
        bottom: 25px;
        right: 12px;
    }
}

@media (max-width: 480px) {
    .modal-bg-security {
        width: 55%;
    }

    .modal-lock {
        width: 50%;
        bottom: 20px;
        right: 10px;
    }
}
