:root {
    --bg-deep: #0a0d1a;
    --bg-card: rgba(17, 24, 39, 0.6);
    --bg-card-solid: #111827;
    --accent: #0d6efd;
    --accent-2: #6f42c1;
    --accent-3: #ffd60a;
    --text: #fff;
    --muted: #aab0c0;
    --border: rgba(255, 255, 255, 0.08);
    --nav: #0d1b2a;
    --input-bg: #0f172a;
    --input-border: #1f2a44;
    --light-bg: #f6f8ff;
    --card-border: rgba(13, 110, 253, .12);
    --card-shadow: rgba(13, 110, 253, .06);
    --ink: #1f2a44;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    background:
        radial-gradient(1200px 600px at 10% -10%, rgba(13, 110, 253, .15), transparent 60%),
        radial-gradient(1200px 600px at 90% 10%, rgba(111, 66, 193, .15), transparent 60%),
        var(--bg-deep);
    color: var(--text);
    overflow-x: hidden;
}

.navbar {
    background: var(--nav);
}

.hero {
    padding: 90px 0 80px;
    background: url('https://www.transparenttextures.com/patterns/cubes.png') repeat, transparent;
    position: relative;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
    background: linear-gradient(90deg, #fff, #bcd0ff 30%, #fff 60%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #dbe2ef;
}

.feature i {
    color: var(--accent-3);
    margin-right: 10px;
}

.form-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .35), inset 0 1px rgba(255, 255, 255, .05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: visible;
}

.form-box::after {
    content: "";
    position: absolute;
    inset: -2px -2px auto auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(closest-side, rgba(13, 110, 253, .15), transparent);
    filter: blur(8px);
    z-index: 0;
    transform: translate(30%, -30%);
}

.secure-badge {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    position: absolute;
    top: -15px;
    right: -15px;
    box-shadow: 0 10px 20px rgba(13, 110, 253, .45);
    z-index: 2;
}

.form-box h4 {
    margin-bottom: 10px;
    font-weight: 700;
}

.form-box p.small.text-muted {
    color: var(--muted) !important;
}

.form-control,
.form-select {
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    color: #e5e7eb;
    border-radius: 10px;
    padding: 10px 12px;
}

.form-control::placeholder {
    color: #8a93a5;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(13, 110, 253, .7);
    box-shadow: 0 0 0 .2rem rgba(13, 110, 253, .15);
    background: #0b1223;
    color: #fff;
}

.input-group-text {
    background: #0b1629;
    color: var(--accent-3);
    border: 1px solid var(--input-border);
    border-right: 0;
    border-radius: 10px 0 0 10px;
}

.phone-group .form-control {
    border-left: 0;
    border-radius: 0 10px 10px 0;
}

.phone-group>.iti {
    flex: 1 1 auto;
    width: 1%;
}

/* Make the flag toggle clickable above the input group */
.phone-group .iti__flag-container {
    z-index: 100001 !important;
}

.btn-primary-gradient {
    background: linear-gradient(135deg, var(--accent), #5b8cff 30%, var(--accent-2) 90%);
    color: #fff;
    font-weight: 800;
    border: none;
    border-radius: 10px;
    padding: 12px 16px;
    box-shadow: 0 12px 24px rgba(13, 110, 253, .35);
    transition: transform .08s ease, box-shadow .2s ease, filter .2s ease;
}

.btn-primary-gradient:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(13, 110, 253, .45);
}

.btn-primary-gradient:active {
    transform: translateY(0);
}

.form-note {
    background: #121a2d;
    padding: 10px 12px;
    border-radius: 10px;
    color: #cbd5e1;
    font-size: 0.85rem;
    margin-top: 14px;
    border: 1px dashed rgba(255, 255, 255, .1);
}

/* intl-tel-input overrides */
.iti {
    width: 100%;
}

.iti__selected-flag {
    background: transparent !important;
    cursor: pointer;
}

.iti__country-list {
    background: #0d1b2a;
    color: #fff;
    border: 1px solid var(--input-border);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
    z-index: 100002 !important;
}

.iti__country:hover {
    background: rgba(13, 110, 253, .15);
}

.iti__divider {
    border-color: #1f2a44;
}

.iti__search-input {
    background: #0d1b2a;
    color: #fff;
    border-color: #1f2a44;
}

.trust-badges {
    gap: 16px;
    margin-top: 14px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    color: #cfe2ff;
    background: rgba(13, 110, 253, .1);
    border: 1px solid rgba(13, 110, 253, .2);
    padding: 6px 10px;
    border-radius: 999px;
}

.trust-badge i {
    color: #91b9ff;
}

@media (max-width: 991px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .form-box {
        margin-top: 24px;
    }
}

.section-light {
    background: var(--light-bg);
    color: #000;
}

.section-title {
    font-weight: 800;
    color: #222;
}

.section-subtitle {
    color: #6b7280;
}

.title-accent {
    width: 90px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(13, 110, 253, .65), rgba(111, 66, 193, .65));
    margin: 0 auto 14px;
    box-shadow: 0 6px 16px rgba(13, 110, 253, .25);
}

#why-choose h2 {
    position: relative;
    display: inline-block;
}

#why-choose h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #0d6efd;
    display: block;
    margin: 10px auto 0;
    border-radius: 5px;
}

.hover-card {
    position: relative;
    transition: all 0.3s ease-in-out;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 22px var(--card-shadow);
}

.hover-card::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(13, 110, 253, .35), rgba(111, 66, 193, .35));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: .7;
}

.hover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: radial-gradient(60% 60% at 50% 45%, rgba(13, 110, 253, .15), rgba(111, 66, 193, .08));
    position: relative;
    overflow: hidden;
}

.benefit-icon::before {
    content: "";
    position: absolute;
    inset: auto -30% -60% -30%;
    height: 140%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 214, 10, .18), transparent 70%);
    transform: rotate(-8deg);
}

.benefit-icon i {
    font-size: 2.1rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 1;
}

.benefit-title {
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
}

.benefit-text {
    color: #5b6477;
    font-size: 0.98rem;
    margin: 0;
}

#benefits {
    background: var(--light-bg);
}

#benefits .container {
    max-width: 1140px;
}

.benefit-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 28px 26px;
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 22px var(--card-shadow);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.benefit-card::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(13, 110, 253, .35), rgba(111, 66, 193, .35));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: .65;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(13, 110, 253, .15);
    border-color: rgba(13, 110, 253, .22);
}

@media (max-width: 991px) {
    .benefit-card {
        padding: 24px;
    }

    .benefit-icon {
        margin-bottom: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .benefit-card,
    .benefit-card:hover,
    .hover-card,
    .hover-card:hover {
        transform: none !important;
        transition: none !important;
    }
}

#since-2019 {
    background: #f7f8fb;
    color: #000;
}

.step-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 16px;
    padding: 22px 22px 20px 22px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
    position: relative;
    min-height: 170px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .12);
}

.step-badge {
    position: absolute;
    top: -14px;
    left: -14px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-3);
    color: #111;
    font-weight: 800;
    box-shadow: 0 10px 18px rgba(255, 214, 10, .35);
    border: 2px solid #fff;
}

.step-title {
    font-weight: 800;
    color: #0b132b;
    margin-bottom: 6px;
}

.step-text {
    color: #6b7280;
    margin: 0;
}

#investment {
    background: #ffffff;
    color: #000;
}

.info-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
    padding: 18px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform .2s ease, box-shadow .2s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .12);
}

.info-img {
    width: 86px;
    height: 86px;
    border-radius: 12px;
    overflow: hidden;
    flex: 0 0 86px;
    box-shadow: 0 8px 20px rgba(13, 110, 253, .18);
}

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

.info-title {
    font-weight: 800;
    color: #0b132b;
    margin: 0 0 6px;
}

.info-sub {
    color: #374151;
    font-weight: 600;
    margin-bottom: 6px;
}

.info-text {
    color: #6b7280;
    margin: 0;
}

#diversify-risk {
    position: relative;
    color: #fff;
    background-image: url('https://images.unsplash.com/photo-1547961106-3b4b54c85e08?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
}

#diversify-risk::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 6, 14, .55), rgba(3, 6, 14, .68));
}

#diversify-risk .container {
    position: relative;
    z-index: 1;
}

.glass-panel {
    background: rgba(8, 12, 24, .62);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
    backdrop-filter: blur(8px);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.glass-panel:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, .45);
    background: rgba(8, 12, 24, .7);
}

.glass-panel h3 {
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: .3px;
}

.glass-panel p {
    color: #d7deee;
    margin: 0;
}

@media (max-width: 991px) {
    #diversify-risk {
        background-attachment: scroll;
    }
}

#ai-solution {
    background: #ffffff;
    color: #000;
}

#ai-solution .lead {
    color: #6b7280;
}

.media-feature {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
    padding: 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform .2s ease, box-shadow .2s ease;
}

.media-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .12);
}

.mf-img {
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(13, 110, 253, .15);
}

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

.mf-title {
    font-weight: 800;
    margin-bottom: 6px;
    color: #0b132b;
}

.mf-text {
    color: #4b5563;
    margin: 0;
}

.media-feature.mf-dark {
    background: linear-gradient(135deg, #0d1224 0%, #141b36 100%);
    border-color: rgba(255, 255, 255, .14);
    color: #e6eaff;
}

.media-feature.mf-dark .mf-title {
    color: #ffffff !important;
}

.media-feature.mf-dark .mf-text {
    color: #c7cffc;
}

.media-feature.mf-dark .mf-img {
    box-shadow: 0 10px 24px rgba(255, 214, 10, .22);
}

#faq {
    background: #f7f9ff;
    color: #000;
}

#faq .faq-title {
    font-weight: 800;
}

.accordion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

@media (max-width: 991px) {
    .accordion-grid {
        grid-template-columns: 1fr;
    }
}

.faq-acc .accordion-item {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.faq-acc .accordion-button {
    background: #eef4ff;
    color: #0b132b;
    font-weight: 700;
    padding: 18px;
}

.faq-acc .accordion-button.collapsed {
    background: #f2f4f8;
    color: #1f2a44;
}

.faq-acc .accordion-button:focus {
    box-shadow: none;
}

.faq-acc .accordion-body {
    background: #ffffff;
    color: #4b5563;
    padding: 18px;
}

#top-benefits {
    background: #ffffff;
    color: #000;
}

.benefits-wrap {
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(13, 110, 253, .12);
    overflow: hidden;
}

.benefit-row {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    padding: 22px;
    align-items: center;
}

.benefit-row:nth-child(even) {
    background: #f1f6ff;
}

.benefit-row+.benefit-row {
    border-top: 1px solid rgba(0, 0, 0, .06);
}

.benefit-left {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-inline: 6px;
}

.icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #0b2a6f;
    background: linear-gradient(135deg, #cfe3ff, #eaf2ff);
    border: 1px solid #d6e6ff;
    box-shadow: 0 6px 18px rgba(13, 110, 253, .18);
}

.benefit-left h5 {
    margin: 0;
    font-weight: 800;
    color: #0b172b;
}

.benefit-right {
    color: #455065;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #0b1223 0%, #0a0f1d 100%);
    color: #bcd2ff;
}

.footer-top {
    border-top: 2px solid rgba(255, 255, 255, .08);
    padding-top: 32px;
}

.footer-brand {
    font-weight: 800;
    color: #fff;
}

.footer-link {
    color: #cfe1ff;
    text-decoration: none;
}

.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 14px 0;
    color: #9fb5ff;
}

.dropdown-menu.lang-menu {
    max-height: 280px;
    overflow-y: auto;
}

/* Root footer */
.site-footer {
    position: relative;
    background:
        radial-gradient(900px 280px at -10% 0%, rgba(13, 110, 253, .18), transparent 60%),
        radial-gradient(900px 280px at 110% 0%, rgba(111, 66, 193, .18), transparent 60%),
        linear-gradient(180deg, #0b1223 0%, #0a0f1d 100%);
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #dbe7ff;
    overflow: hidden;
}

/* Accent line */
.site-footer__accent {
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #6f42c1, #ffd60a, #0d6efd);
    filter: drop-shadow(0 0 8px rgba(13, 110, 253, .6));
}

/* Soft orb */
.site-footer__orb {
    position: absolute;
    right: -120px;
    bottom: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(60% 60% at 50% 50%, rgba(255, 214, 10, .18), transparent 70%);
    opacity: .35;
    pointer-events: none;
}

/* Brand area */
.site-footer__icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, rgba(13, 110, 253, .4), rgba(111, 66, 193, .4));
    box-shadow: 0 10px 24px rgba(13, 110, 253, .28), inset 0 1px rgba(255, 255, 255, .22);
}

.site-footer__brand-title {
    color: #ffffff;
    letter-spacing: .2px;
}

.site-footer__brand-subtitle {
    opacity: .9;
}

/* Links */
.footer-link {
    color: #dbe7ff;
    text-decoration: none;
    opacity: .95;
    transition: color .2s ease, opacity .2s ease, text-decoration-color .2s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
    color: #ffffff;
    opacity: 1;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, .6);
    outline: none;
}

/* Muted text (© year) */
.site-footer__muted {
    color: #9fb5ff;
}