:root {
    --bg: #030201;
    --bg-soft: #080604;
    --text: #fff8e8;
    --muted: #c8bfae;
    --soft: #8f8678;
    --gold: #f6c86a;
    --gold-light: #ffe7a3;
    --gold-strong: #ff9f1c;
    --gold-deep: #9f6416;
    --line: rgba(246, 200, 106, 0.55);
    --panel: rgba(18, 14, 8, 0.74);
    --panel-strong: rgba(30, 22, 12, 0.86);
    --panel-border: rgba(246, 200, 106, 0.22);
    --shadow-gold: 0 24px 80px rgba(246, 166, 35, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 12%, rgba(246, 200, 106, 0.16), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(255, 157, 10, 0.11), transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(246, 200, 106, 0.08), transparent 34%),
        linear-gradient(180deg, #030201 0%, #060403 48%, #020201 100%);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, black, transparent 72%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0 0 auto auto;
    width: 1px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    pointer-events: none;
    z-index: 80;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
    gap: 24px;
    height: 70px;
    padding: 0 max(32px, calc((100vw - 1440px) / 2 + 32px)) 0 max(38px, calc((100vw - 1440px) / 2 + 38px));
    background: rgba(3, 2, 1, 0.72);
    border-bottom: 1px solid rgba(246, 200, 106, 0.12);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
}

.brand img {
    display: block;
    width: 99px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
    gap: 15px;
    font-size: 20px;
    font-weight: 400;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;    
    justify-content: center; 
    text-align: center;
    height: 52px;
    padding: 10px 25px;
    width: 150px;
    color: white;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--line);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}


/* LANGUAGE DROPDOWN */

.language-dropdown {
    position: relative;
    justify-self: end;
}

.language-toggle {
    height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(246, 200, 106, 0.22);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: inherit;
    font-size: 15px;
    cursor: pointer;
}

.language-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 160px;
    padding: 8px;
    border-radius: 16px;
    background: rgba(12, 10, 7, 0.96);
    border: 1px solid rgba(246, 200, 106, 0.2);
    box-shadow: 0 24px 70px rgba(0,0,0,0.5);
    display: none;
    z-index: 100;
}

.language-dropdown.open .language-menu {
    display: grid;
    gap: 4px;
}

.language-menu button {
    width: 100%;
    padding: 11px 12px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #fff;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
}

.language-menu button:hover,
.language-menu button.active {
    background: rgba(246, 200, 106, 0.12);
    color: var(--gold-light);
}

@media (max-width: 820px) {
    .site-header {
        grid-template-columns: auto auto auto;
    }

    .language-dropdown {
        justify-self: end;
    }

    .language-toggle {
        width: 44px;
        padding: 0;
        justify-content: center;
    }

    .language-toggle span,
    .language-toggle .fa-chevron-down {
        display: none;
    }

    .header-download {
        display: none;
    }
}

.header-download {
    justify-self: end;
    position: relative;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 150px;
    padding: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffdc73 0%, #f6c86a 38%, #ff9f1c 100%);
    color: #130b02;
    font-size: 20px;
    font-weight: 600;
    box-shadow:
        0 14px 34px rgba(255, 159, 28, 0.25),
        inset 0 1px 0 rgba(255,255,255,0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 46px rgba(255, 159, 28, 0.34),
        inset 0 1px 0 rgba(255,255,255,0.55);
}

.download-popup {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    display: grid;
    grid-template-columns: repeat(3, 160px);
    gap: 18px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    background: rgba(18, 18, 18, 0.92);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.18s ease, transform 0.18s ease;
    backdrop-filter: blur(14px);
}

.header-download:hover .download-popup,
.header-download:focus-within .download-popup {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.download-popup::before {
    content: "";
    position: absolute;
    top: -18px;
    right: 0;
    width: 100%;
    height: 18px;
}

.qr-card {
    display: grid;
    gap: 12px;
    justify-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.qr-code {
    position: relative;
    display: block;
    width: 160px;
    height: 160px;
}

.qr-image {
    display: block;
    width: 160px;
    height: 160px;
    padding: 8px;
    border-radius: 12px;
    background: #fff;
}

.qr-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.qr-label img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.menu-toggle {
    display: none;
}

.section {
    position: relative;
    max-width: 1440px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 70px 58px 48px;
    overflow: hidden;
    scroll-margin-top: 0;
}

.hero-section {
    display: flex;
    gap: 18px;
    width: 100%;
    max-width: none;
    padding-left: max(58px, calc((100vw - 1440px) / 2 + 58px));
    padding-right: max(58px, calc((100vw - 1440px) / 2 + 58px));
}

.hero-section::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 100vw;
    pointer-events: none;
    transform: translateX(-50%);
    background-image: url("../img/hero.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 0;
    opacity: 50%;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    
}

.hero-copy h1 {
    margin: 0;
    font-size: 60px;
    line-height: 0.99;
    font-weight: 700;
    letter-spacing: -0.045em;
    -webkit-background-clip: text;
    background-clip: text;
    color: white;
}

.hero-copy p {
    margin: 35px 0 40px;
    color: #dadada;
    font-size: 24px;
    line-height: 1.12;
    font-weight: 400;
}

.store-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.store-row a img{
    width: 150px;
}

/* Remove */
.store-badge { 
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 45px;
    padding: 5px 8px;
    border: 1px solid #a6a6a6;
    border-radius: 6px;
    background: #050505;
    color: #fff;
}

.store-badge img {
    display: block;
    width: 23px;
    height: 23px;
    object-fit: contain;
}

.store-badge span {
    display: grid;
    gap: 1px;
    line-height: 1;
}

.store-badge small {
    font-size: 9px;
    font-weight: 500;
}

.store-badge strong {
    font-size: 18px;
    font-weight: 400;
}

.hero-visual {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    max-width: 50vw;
    min-height: min(590px, calc(100vh - 96px));
    flex-grow: 1;
}

.visual-stage {
    position: relative;
    width: min(720px, 56vw, calc((100vh - 150px) * 1.16));
    aspect-ratio: 720 / 620;
}

.phone-image {
    position: absolute;
    left: 34%;
    top: 50%;
    width: 39.2%;
    max-width: none;
    height: auto;
    filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.72));
    transform: translate(-50%, -50%);
}

.card-image {
    position: absolute;
    left: 39.5%;
    top: 55%;
    width: 44.7%;
    max-width: none;
    height: auto;
    filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.58));
}

.float-pill {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: clamp(44px, 9%, 61px);
    padding: 9px 30px;
    border: 1px solid rgba(246, 200, 106, 0.22);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(38, 30, 18, 0.88), rgba(12, 10, 7, 0.78));
    color: #f5ead6;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.18;
    white-space: nowrap;
    box-shadow:
        0 18px 46px rgba(0, 0, 0, 0.46),
        0 0 30px rgba(246, 200, 106, 0.08);
    animation: breathe-pill 6.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes breathe-pill {
    0%, 100% {
        opacity: 0.92;
        transform: translateY(0) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-6px) scale(1.018);
    }
}

.float-pill b {
    display: block;
    margin-top: 3px;
    color: #ff5047;
    font-weight: 400;
    white-space: nowrap;
}

.float-pill .positive {
    color: #00df66;
}

.pill-image,
.add-icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    color: #111;
    background: #fff;
    font-size: 21px;
}

.pill-image {
    overflow: hidden;
    background: transparent;
}

.pill-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.add-icon {
    background: #ff8a00;
    color: #fff;
}

.float-shopping {
    left: 71%;
    top: 17%;
    animation-delay: -0.4s;
}

.float-jack {
    left: 61%;
    top: 41%;
    animation-delay: -2.1s;
}

.float-topup {
    right: -10%;
    top: 76%;
    animation-delay: -3.7s;
}

.float-coffee {
    right: -15%;
    top: 90%;
    animation-delay: -5.2s;
}

.mobile-visual-float {
    display: none;
}

.features-section {
    display: grid;
    place-items: center;
}

.features-grid {
    width: min(1180px, 100%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 100px;
    padding-top: 26px;
}

.feature-item,
.assurance-item {
    text-align: center;
    padding: 30px 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
    border: 1px solid rgba(246, 200, 106, 0.14);
    box-shadow: var(--shadow-gold);
    backdrop-filter: blur(14px);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-item:hover,
.assurance-item:hover {
    transform: translateY(-6px);
    border-color: rgba(246, 200, 106, 0.38);
}

.feature-icon {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto 17px;
    object-fit: contain;
}

.feature-item h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.12;
    font-weight: 700;
}

.feature-item p {
    margin: 10px auto 0;
    max-width: 320px;
    color: #9b9b9b;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.15;
}

.assurance-item h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.12;
    font-weight: 700;
}

.assurance-item p {
    margin: 10px auto 0;
    max-width: 320px;
    color: #9b9b9b;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.15;
}

.about-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 130px;
    padding-right: 130px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: space-between;
    gap: 80px;
    width: 100%;
    margin: 0 auto;
}

.statement h2,
.assurance > h2 {
    width: max-content;
    min-width: 196px;
    margin: 0 0 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid #fff;
    color: #e8c07c;
    font-size: 30px;
    line-height: 1;
    font-weight: 600;
}

.statement {
    padding: 34px 30px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
    border: 1px solid rgba(246, 200, 106, 0.14);
    box-shadow: var(--shadow-gold);
    backdrop-filter: blur(14px);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.statement:hover {
    transform: translateY(-6px);
    border-color: rgba(246, 200, 106, 0.38);
}

.statement p {
    margin: 0;
    color: #f5f5f5;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.16;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.trust-badge {
    align-self: center;
    margin: 42px 0 43px;
    padding: 25px 25px;
    border: 2px solid #fff;
    border-radius: 30px;
    color: #e8c07c;
    font-size: 20px;
    font-weight: 700;
}

.assurance {
    width:100%;
    margin: 0 auto;
}

.assurance > h2 {
    min-width: 438px;
    margin-bottom: 26px;
}

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

.assurance-icon {
    display: block;
    width: 100px;
    height: 100px;
    margin: 0 auto 17px;
    object-fit: contain;
}

.site-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 32px;
    display: flex;
    justify-content: center;
    gap: 22px;
    color: #a5a5a5;
    font-size: 12px;
}



/* FAQ SECTION */

.faq-section {
    position: relative;
    width: 100%;
    padding: 120px 0 82px;
}

.faq-container {
    width: min(900px, 100%);
    margin: 0 auto;
}

.faq-header, .general-header {
    text-align: center;
    margin-bottom: 58px;
}

.faq-label {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(243, 199, 108, 0.35);
    background: rgba(243, 199, 108, 0.08);
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.faq-header h2, .general-header h2 {
    margin: 0;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    -webkit-background-clip: text;
    background-clip: text;
    color: white;
}

.faq-header p, .general-header p {
    width: min(620px, 100%);
    margin: 20px auto 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    border-radius: 24px;
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-gold);
}

.faq-item:hover {
    border-color: rgba(246, 200, 106, 0.38);
    transform: translateY(-2px);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(243, 199, 108, 0.08);
    color: var(--gold);
    transition: transform 0.25s ease, background 0.25s ease;
    flex-shrink: 0;
}

.faq-item[open] summary i {
    transform: rotate(45deg);
    background: rgba(243, 199, 108, 0.16);
}

.faq-content {
    padding: 0 32px 30px;
}

.faq-content p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .section {
        padding-left: 32px;
        padding-right: 32px;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding-top: 104px;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-visual {
        min-height: min(540px, calc(100vh - 120px));
    }

    .visual-stage {
        width: min(660px, 86vw, calc((100vh - 150px) * 1.16));
    }

    .float-pill {
        gap: 16px;
        padding: 7px 20px;
        border-radius: 12px;
        font-size: 16px;
    }

    .pill-image,
    .add-icon {
        width: 48px;
        height: 48px;
    }

    .features-grid,
    .assurance-grid {
        gap: 60px;
    }

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

    .about-section {
        padding-left: 64px;
        padding-right: 64px;
    }

    .mission-grid {
        gap: 80px;
    }
}

@media (max-width: 820px) {
    body::after {
        display: none;
    }

    .site-header {
        grid-template-columns: auto auto;
        height: 64px;
        padding: 0 18px;
    }

    .brand img {
        width: 82px;
    }



    .language-dropdown {
        position: fixed;
        top: 12px;
        right: 68px;
        z-index: 60;
    }

    .language-toggle {
        height: 40px;
        min-width: 92px;
        padding: 0 10px;
        font-size: 0;
    }

    .language-toggle i {
        font-size: 15px;
    }

    .language-toggle [data-current-language] {
        font-size: 13px;
        max-width: 54px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .language-menu {
        right: 0;
        min-width: 150px;
    }

    .menu-toggle {
        display: inline-grid;
        place-items: center;
        justify-self: end;
        width: 40px;
        height: 40px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 6px;
        background: transparent;
        color: #fff;
        font-size: 18px;
    }

    .main-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        width: 100%;

        display: none;
        flex-direction: column;
        gap: 0;

        padding: 12px 0 18px;

        background: rgba(0, 0, 0, 0.96);

        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .main-nav.open {
        display: flex;
    }

    .nav-link {
        width: 100%;
        justify-content: center;
        height: 56px;
        padding: 0 24px;
    }

    .header-download {
        display: none;
    }

    .section {
        min-height: auto;
        padding: 92px 22px 64px;
    }

    .hero-section {
        display: block;
    }

    .hero-copy h1 {
        font-size: 44px;
        text-align: center;
    }

    .hero-copy p {
        margin-top: 24px;
        text-align: center;
    }

    .hero-copy {
        align-items: center;
        padding-bottom: 0;
    }

    .store-row {
        justify-content: center;
        width: 100%;
    }

    .hero-visual {
        max-width: none;
        min-height: 0;
        height: auto;
        margin-top: 28px;
    }

    .visual-stage {
        width: min(620px, 100%);
        margin: 0 auto;
        overflow: visible;
    }

    .hero-copy > .float-topup,
    .hero-copy > .float-coffee {
        display: none;
    }

    .mobile-visual-float {
        display: flex;
    }

    .float-pill {
        gap: 10px;
        padding: 5px 12px;
        border-radius: 10px;
        font-size: 12px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
    }

    .pill-image,
    .add-icon {
        width: 34px;
        height: 34px;
    }

    .float-pill b {
        margin-top: 2px;
    }

    .float-shopping {
        left: 62%;
        top: 10%;
    }

    .float-jack {
        left: 56%;
        top: 37%;
    }

    .float-topup {
        left: 7%;
        right: auto;
        top: 58%;
    }

    .float-coffee {
        left: 10%;
        right: auto;
        top: 78%;
    }

    .phone-image {
        left: 50%;
        top: 49%;
        width: 42%;
    }

    .card-image {
        left: 51%;
        top: 57%;
        width: 44%;
    }

    .features-grid,
    .mission-grid,
    .assurance-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        row-gap: 54px;
        padding-top: 0;
    }

    .about-section {
        display: block;
        padding-bottom: 106px;
    }

    .mission-grid {
        gap: 44px;
    }

    .statement h2,
    .assurance > h2 {
        min-width: min(100%, 300px);
        font-size: 28px;
    }

    .statement p {
        font-size: 15px;
        line-height: 1.25;
    }

    .trust-badge {
        margin: 34px auto 42px;
        width: fit-content;
        max-width: 100%;
        text-align: center;
    }

    .assurance-grid {
        gap: 46px;
    }

    .site-footer {
        bottom: 26px;
    }

    .faq-section {
        padding: 90px 0 60px;
    }

    .faq-header, .general-header {
        margin-bottom: 42px;
    }

    .faq-header h2, .general-header h2 {
        font-size: 38px;
    }

    .faq-header p, .general-header p {
        font-size: 16px;
    }

    .faq-item summary {
        padding: 22px;
        font-size: 17px;
    }

    .faq-content {
        padding: 0 22px 24px;
    }

    .faq-content p {
        font-size: 15px;
        line-height: 1.7;
    }

}

@media (max-width: 430px) {
    .hero-copy h1 {
        font-size: 38px;
    }

    .visual-stage {
        width: min(520px, 100%);
    }

    .float-pill {
        font-size: 11px;
        padding: 5px 10px;
    }

    .pill-image,
    .add-icon {
        width: 30px;
        height: 30px;
    }

    .float-shopping {
        left: 56%;
        top: 7%;
    }

    .float-jack {
        left: 52%;
        top: 33%;
    }

    .float-topup {
        left: 1%;
        top: 60%;
    }

    .float-coffee {
        left: 4%;
        top: 80%;
    }
}

/* PAYMENT ECOSYSTEM SECTION */
.section-intro {
    position: relative;
    z-index: 2;
    width: min(820px, 100%);
    margin: 0 auto 54px;
    text-align: center;
}

.section-intro h2 {
    margin: 18px 0 0;
    color: #fff;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.section-intro p {
    margin: 22px auto 0;
    width: min(720px, 100%);
    color: var(--muted);
    font-size: 19px;
    line-height: 1.65;
}

.ecosystem-section {
    max-width: none;
    padding-left: max(58px, calc((100vw - 1440px) / 2 + 58px));
    padding-right: max(58px, calc((100vw - 1440px) / 2 + 58px));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ecosystem-section::before {
    content: "";
    position: absolute;
    inset: 8% 0 auto 50%;
    width: min(860px, 85vw);
    height: min(860px, 85vw);
    transform: translateX(-50%);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(246, 200, 106, 0.18), transparent 35%),
        conic-gradient(from 90deg, transparent, rgba(246, 200, 106, 0.2), transparent 34%, rgba(255,255,255,0.08), transparent 70%);
    opacity: 0.62;
    filter: blur(1px);
    pointer-events: none;
}

.ecosystem-layout {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.solution-card {
    position: relative;
    min-height: 370px;
    padding: 34px 30px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.024));
    border: 1px solid rgba(246, 200, 106, 0.18);
    box-shadow: 0 28px 90px rgba(0,0,0,0.34), var(--shadow-gold);
    backdrop-filter: blur(18px);
}

.solution-card::after {
    content: "";
    position: absolute;
    inset: auto -20% -34% -20%;
    height: 180px;
    background: radial-gradient(circle, rgba(246, 200, 106, 0.2), transparent 62%);
    pointer-events: none;
}

.solution-icon {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255,231,163,0.18), rgba(255,159,28,0.12));
    border: 1px solid rgba(246, 200, 106, 0.28);
    color: var(--gold-light);
    font-size: 27px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.solution-card h3 {
    margin: 24px 0 12px;
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

.solution-card p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.solution-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.solution-card li {
    position: relative;
    padding-left: 24px;
    color: #f8edd8;
    font-size: 15px;
}

.solution-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--gold);
    font-weight: 800;
}

.flow-panel {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    margin: 26px auto 0;
    padding: 26px;
    border: 1px solid rgba(246, 200, 106, 0.18);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(18,14,8,0.88), rgba(7,5,3,0.72));
    box-shadow: var(--shadow-gold);
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

.flow-step {
    text-align: center;
}

.flow-step span {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-strong));
    color: #140b02;
    font-weight: 800;
}

.flow-step strong {
    display: block;
    color: #fff;
    font-size: 18px;
}

.flow-step p {
    margin: 8px auto 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.flow-arrow {
    color: rgba(246, 200, 106, 0.68);
    font-size: 22px;
}

@media (max-width: 1100px) {
    .nav-link { width: auto; padding-left: 16px; padding-right: 16px; }
    .ecosystem-layout { grid-template-columns: 1fr; }
    .solution-card { min-height: auto; }
    .flow-panel { grid-template-columns: 1fr; }
    .flow-arrow { transform: rotate(90deg); justify-self: center; }
}

@media (max-width: 820px) {
    .ecosystem-section {
        padding-left: 22px;
        padding-right: 22px;
    }
    .section-intro { margin-bottom: 36px; }
    .section-intro p { font-size: 16px; line-height: 1.55; }
    .solution-card { padding: 28px 24px; border-radius: 24px; }
    .flow-panel { padding: 22px; border-radius: 24px; }
}

/* UPDATED CONNECTED ECOSYSTEM DESIGN */
.ecosystem-section {
    max-width: none;
    min-height: 100vh;
    padding-left: max(58px, calc((100vw - 1440px) / 2 + 58px));
    padding-right: max(58px, calc((100vw - 1440px) / 2 + 58px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 46%, rgba(246, 200, 106, 0.18), transparent 18%),
        radial-gradient(circle at 48% 62%, rgba(41, 105, 190, 0.20), transparent 34%),
        radial-gradient(circle at 50% 100%, rgba(255, 184, 77, 0.13), transparent 33%),
        linear-gradient(180deg, rgba(2, 12, 28, 0.92) 0%, rgba(1, 8, 18, 0.96) 48%, rgba(3, 2, 1, 0.98) 100%);
}

.ecosystem-section::before {
    content: "";
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    transform: none;
    border-radius: 0;
    opacity: 1;
    filter: none;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 22%, rgba(246, 200, 106, 0.10), transparent 2px),
        radial-gradient(circle at 83% 18%, rgba(255, 255, 255, 0.12), transparent 1px),
        radial-gradient(circle at 73% 64%, rgba(246, 200, 106, 0.16), transparent 2px),
        radial-gradient(circle at 35% 74%, rgba(255, 255, 255, 0.10), transparent 1px);
    background-size: 220px 220px, 310px 310px, 260px 260px, 180px 180px;
}

.ecosystem-section::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 12%;
    width: min(1500px, 110vw);
    height: 430px;
    transform: translateX(-50%);
    border-radius: 50% 50% 0 0;
    border-top: 1px solid rgba(246, 200, 106, 0.52);
    background:
        radial-gradient(ellipse at center top, rgba(61, 120, 205, 0.28), transparent 45%),
        radial-gradient(ellipse at center bottom, rgba(246, 200, 106, 0.13), transparent 55%);
    opacity: 0.86;
    pointer-events: none;
}

.ecosystem-intro {
    position: relative;
    z-index: 3;
    margin-bottom: 26px;
}

.ecosystem-intro h2 span {
    display: block;
    color: var(--gold);
    background: linear-gradient(135deg, #fff0ba, #f6c86a 45%, #bc7418 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ecosystem-map {
    position: relative;
    z-index: 3;
    width: min(1200px, 100%);
    min-height: 470px;
    margin: 0 auto;
}

.ecosystem-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}

.ecosystem-lines path {
    fill: none;
    stroke: rgba(246, 200, 106, 0.82);
    stroke-width: 2;
    filter: drop-shadow(0 0 8px rgba(246, 200, 106, 0.65));
}

.ecosystem-lines path::after { content: none; }

.ecosystem-node {
    position: absolute;
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 18px 22px;
    width: 345px;
    padding: 24px 26px 20px;
    border-radius: 22px;
    border: 1px solid rgba(246, 200, 106, 0.58);
    background: linear-gradient(135deg, rgba(5, 17, 34, 0.86), rgba(2, 7, 16, 0.76));
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 0 34px rgba(246, 200, 106, 0.08);
    backdrop-filter: blur(16px);
}

.ecosystem-node::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 18px rgba(246, 200, 106, 0.95);
}

.ecosystem-wallet {
    left: 6%;
    top: 62px;
}

.ecosystem-wallet::before {
    right: -7px;
    top: 82px;
}

.ecosystem-card-product {
    right: 6%;
    top: 62px;
}

.ecosystem-card-product::before {
    left: -7px;
    top: 82px;
}

.ecosystem-p2p {
    left: 50%;
    top: 285px;
    transform: translateX(-50%);
}

.ecosystem-p2p::before {
    left: 50%;
    top: -7px;
    transform: translateX(-50%);
}

.node-icon {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border-radius: 18px;
    color: var(--gold-light);
    font-size: 34px;
    background: linear-gradient(135deg, rgba(255, 231, 163, 0.14), rgba(246, 200, 106, 0.05));
    border: 1px solid rgba(246, 200, 106, 0.58);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.node-copy h3 {
    margin: 4px 0 10px;
    color: #fff;
    font-size: 27px;
    line-height: 1;
}

.node-copy p {
    margin: 0;
    color: #dfd7ca;
    font-size: 15px;
    line-height: 1.55;
}

.node-tags {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding-top: 8px;
}

.node-tags span {
    display: grid;
    justify-items: center;
    gap: 8px;
    color: var(--gold-light);
    font-size: 22px;
}

.node-tags b {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.ecosystem-core {
    position: absolute;
    left: 50%;
    top: 62px;
    transform: translateX(-50%);
    display: grid;
    place-items: center;
    width: 204px;
    height: 204px;
    border-radius: 50%;
    text-align: center;
    background: radial-gradient(circle, rgba(24, 23, 18, 0.96), rgba(2, 7, 16, 0.94));
    border: 1px solid rgba(255, 231, 163, 0.84);
    box-shadow:
        0 0 52px rgba(246, 200, 106, 0.36),
        inset 0 0 32px rgba(246, 200, 106, 0.08);
}

.ecosystem-core::before,
.ecosystem-core::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 18px rgba(246, 200, 106, 0.95);
}

.ecosystem-core::before { left: -7px; top: 86px; }
.ecosystem-core::after { right: -7px; top: 86px; }

.core-orbit {
    position: absolute;
    inset: -13px;
    border-radius: 50%;
    border: 1px solid rgba(246, 200, 106, 0.28);
}

.ecosystem-core img {
    width: 118px;
    height: auto;
    margin-top: 12px;
    filter: drop-shadow(0 0 14px rgba(246, 200, 106, 0.26));
}

.ecosystem-core strong {
    display: block;
    margin-top: -26px;
    color: #fff;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 500;
}

.ecosystem-flow {
    position: relative;
    z-index: 4;
    width: min(1320px, 100%);
    margin: auto 0;
    padding: 42px 34px 34px;
    border-radius: 22px;
    border: 1px solid rgba(246, 200, 106, 0.68);
    background: linear-gradient(135deg, rgba(11, 14, 16, 0.91), rgba(5, 8, 12, 0.82));
    box-shadow: 0 26px 88px rgba(0,0,0,0.45), 0 0 34px rgba(246, 200, 106, 0.09);
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 22px;
    align-items: center;
}

.flow-label {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    padding: 6px 28px 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(16, 14, 10, 0.98), rgba(2, 7, 16, 0.98));
    color: var(--gold-light);
    font-size: 24px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 0 22px rgba(246, 200, 106, 0.14);
}

.flow-item {
    position: relative;
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 18px;
    align-items: center;
}

.flow-number {
    position: absolute;
    left: -3px;
    top: 6px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #130b02;
    font-size: 13px;
    font-weight: 900;
}

.flow-icon {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 33px;
    background: linear-gradient(135deg, rgba(246, 200, 106, 0.16), rgba(8, 14, 22, 0.86));
    border: 1px solid rgba(246, 200, 106, 0.62);
}

.flow-item strong {
    color: #fff;
    font-size: 18px;
    line-height: 1.15;
}

.flow-item p {
    margin: 8px 0 0;
    color: #d0c9bd;
    font-size: 14px;
    line-height: 1.55;
}

.flow-divider {
    color: var(--gold-light);
    font-size: 22px;
    filter: drop-shadow(0 0 8px rgba(246, 200, 106, 0.45));
}

@media (max-width: 1180px) {
    .ecosystem-map {
        display: grid;
        gap: 22px;
        min-height: auto;
    }

    .ecosystem-lines,
    .ecosystem-node::before,
    .ecosystem-core::before,
    .ecosystem-core::after,
    .core-orbit {
        display: none;
    }

    .ecosystem-node,
    .ecosystem-core {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
    }

    .ecosystem-core {
        order: -1;
        width: 220px;
        height: 220px;
        justify-self: center;
    }

    .ecosystem-flow {
        grid-template-columns: 1fr;
        width: min(720px, 100%);
    }

    .flow-divider {
        transform: rotate(90deg);
        justify-self: center;
    }
}

@media (max-width: 820px) {
    .ecosystem-section {
        padding-left: 22px;
        padding-right: 22px;
    }

    .ecosystem-intro {
        margin-bottom: 28px;
    }

    .ecosystem-node {
        grid-template-columns: 62px 1fr;
        padding: 20px;
    }

    .node-icon {
        width: 62px;
        height: 62px;
        font-size: 26px;
        border-radius: 16px;
    }

    .node-copy h3 {
        font-size: 23px;
    }

    .node-copy p {
        font-size: 14px;
    }

    .node-tags b {
        font-size: 12px;
    }

    .ecosystem-core {
        width: 190px;
        height: 190px;
    }

    .ecosystem-flow {
        padding: 38px 20px 22px;
    }

    .flow-label {
        font-size: 20px;
    }

    .flow-item {
        grid-template-columns: 70px 1fr;
    }

    .flow-icon {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }
}


/* FIXED ECOSYSTEM SPACING + CONNECTED DOTS */
.ecosystem-section {
    padding-top: 112px;
    padding-bottom: 78px;
}

.ecosystem-intro {
    margin-bottom: 34px;
}

.ecosystem-map {
    width: min(1320px, 100%);
    min-height: 600px;
}

.ecosystem-lines {
    inset: 0;
}

.ecosystem-lines path {
    stroke: rgba(255, 222, 139, 0.96);
    stroke-width: 2.4;
    stroke-linecap: round;
    filter: drop-shadow(0 0 10px rgba(246, 200, 106, 0.72));
}

.ecosystem-node {
    width: 370px;
    min-height: 214px;
    padding: 25px 28px 21px;
    border-radius: 24px;
}

.ecosystem-wallet {
    left: 40px;
    top: 105px;
}

.ecosystem-wallet::before {
    right: -8px;
    top: 106px;
}

.ecosystem-card-product {
    right: 40px;
    top: 105px;
}

.ecosystem-card-product::before {
    left: -8px;
    top: 106px;
}

.ecosystem-p2p {
    left: 50%;
    top: 412px;
    transform: translateX(-50%);
}

.ecosystem-p2p::before {
    left: 50%;
    top: -8px;
    transform: translateX(-50%);
}

.ecosystem-core {
    top: 120px;
    width: 220px;
    height: 220px;
}

.ecosystem-core::before,
.ecosystem-core::after,
.ecosystem-node::before,
.core-dot {
    width: 14px;
    height: 14px;
    background: #ffe49a;
    box-shadow: 0 0 22px rgba(246, 200, 106, 1), 0 0 42px rgba(246, 200, 106, 0.35);
}

.ecosystem-core::before {
    left: -8px;
    top: 92px;
}

.ecosystem-core::after {
    right: -8px;
    top: 92px;
}

.core-dot {
    position: absolute;
    display: block;
    border-radius: 50%;
    z-index: 3;
}

.core-dot-bottom {
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
}

.core-orbit {
    inset: -16px;
    border-color: rgba(246, 200, 106, 0.38);
}

.ecosystem-flow {
    margin-top: 150px;
}

@media (max-width: 1280px) {
    .ecosystem-map {
        width: min(1120px, 100%);
        min-height: 600px;
    }

    .ecosystem-node {
        width: 330px;
        grid-template-columns: 74px 1fr;
        gap: 16px 20px;
    }

    .ecosystem-wallet { left: 0; }
    .ecosystem-card-product { right: 0; }
    .ecosystem-core { width: 200px; height: 200px; }

    .ecosystem-core::before { top: 84px; }
    .ecosystem-core::after { top: 84px; }

    .ecosystem-lines {
        display: none;
    }

    .ecosystem-wallet::after,
    .ecosystem-card-product::after,
    .ecosystem-p2p::after {
        content: "";
        position: absolute;
        height: 2px;
        background: linear-gradient(90deg, rgba(255,226,150,0), rgba(255,226,150,0.9), rgba(255,226,150,0));
        filter: drop-shadow(0 0 8px rgba(246,200,106,0.55));
        pointer-events: none;
    }

    .ecosystem-wallet::after {
        left: 100%;
        top: 112px;
        width: calc((100vw - 330px - 200px) / 2 - 72px);
        min-width: 72px;
    }

    .ecosystem-card-product::after {
        right: 100%;
        top: 112px;
        width: calc((100vw - 330px - 200px) / 2 - 72px);
        min-width: 72px;
    }

    .ecosystem-p2p::after {
        left: 50%;
        bottom: 100%;
        width: 2px;
        height: 72px;
        transform: translateX(-50%);
        background: linear-gradient(180deg, rgba(255,226,150,0), rgba(255,226,150,0.9), rgba(255,226,150,0));
    }
}

@media (max-width: 1180px) {
    .ecosystem-map {
        display: grid;
        gap: 22px;
        min-height: auto;
    }

    .ecosystem-wallet::after,
    .ecosystem-card-product::after,
    .ecosystem-p2p::after,
    .core-dot-bottom {
        display: none;
    }
}

/* ECOSYSTEM BACKGROUND IMAGE VERSION
   Put ecosystem-background.png inside your /img folder.
   Expected path: /img/ecosystem-background.png
*/
.ecosystem-section {
    position: relative;
    overflow: hidden;
    background-image: url("../img/ecosystem-background.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.ecosystem-section::before {
    content: "";
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    transform: none;
    border-radius: 0;
    opacity: 1;
    filter: none;
    pointer-events: none;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.28) 44%, rgba(0, 0, 0, 0.72) 100%),
        radial-gradient(circle at 50% 42%, rgba(246, 200, 106, 0.13), transparent 28%);
}

.ecosystem-section::after {
    display: none;
}

.ecosystem-section > * {
    position: relative;
    z-index: 1;
}

.ecosystem-map,
.ecosystem-flow,
.ecosystem-intro {
    position: relative;
    z-index: 2;
}

@media (max-width: 820px) {
    .ecosystem-section {
        background-position: center top;
    }
}
