/* =========================================
   HeritageGild - Main Stylesheet
   ========================================= */
@import url("bootstrap.css");
@import url("all.min.css");
@import url("elpath.css");
@import url("select2.min.css");
@import url("nice-select.css");

@import url("module-css/03-banner.css");
@import url("module-css/05-about.css");
@import url("module-css/18-contact.css");
@import url("module-css/payment.css");
@import url("module-css/17-faq.css");
@import url("module-css/18-contact.css");
@import url("module-css/13-blog.css");
@import url("module-css/19-signin-signup.css");
:root {
    --gold: #d4a843;
    --gold-light: #f0d060;
    --dark: #080808;
    --dark2: #0f0f0f;
    --dark3: #141414;
    --dark4: #1a1a1a;
    --dark5: #202020;
    --border: rgba(212, 168, 67, 0.15);
    --border2: rgba(255, 255, 255, 0.07);
    --text: #e2e2e2;
    --muted: #afafaf;
    --primary: #ce9c00;
    --secondary: #f3cb4d;
    --white-color: #fff;
    --primary-color: linear-gradient(
        354deg,
        var(--primary) 42.23%,
        var(--secondary) 155.47%
    );
    --secondary-color: var(--primary);
    --primary-reverse: linear-gradient(
        354deg,
        var(--secondary) 42.23%,
        var(--primary) 155.47%
    );
    --black-color-rgb: 10, 10, 10;
    --border-1: #5c5336;
    --border-2: #686868;
    --border-3: #383735;
    --border-4: #e8ebee;
    --border-5: #fff3cc;
    --border-6: #e9d491;
    --bg-1: #262626;
    --bg-2: #f4f4f4;
    --bg-3: #f2f6f5;
    --bg-4: #fffbec;
    --bg-5: #f6f5ff;
    --bg-6: #fbf3ee;
    --bg-7: #fcfcfc;
    --bg-8: #fafafa;
    --bg-9: #2e2e2e;
    --bg-10: #fbf6e8;
    --bg-11: #f7f7f7;
    --bg-12: #ebebeb;
    --bg-15: #FDFBF5;
    --bg-16: #F4F1E9;
    --bg-gradiant: linear-gradient(
        to bottom,
        rgba(201, 162, 59, 0.32),
        rgba(224, 222, 215, 0.32)
    );
    --shadow-1: 1px 4px 19.9px 0px
        linear-gradient(354deg, var(--primary) 42.23%, var(--secondary) 155.47%);
    --shadow-2: 1px 2px 4px 1px rgba(232, 229, 222, 0.4);
    --shadow-3: 10px 7px 10px 0px rgba(236, 236, 236, 0.25);
    --shadow-5: 1px 4px 20px 0px rgba(206, 156, 0, 0.25);
    --shadow-4: 7px 8px 34px 0px #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    /* font-family: "Libre Franklin", serif; */
    overflow-x: hidden;
    letter-spacing: -0.01em;
    margin: 0;
}
img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Outfit", sans-serif;
    letter-spacing: -0.03em;
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(212, 168, 67, 0.25);
    border-radius: 4px;
}
.container-xl,
.container-xxl {
    padding: 0px 15px;
}
section {
    position: relative;
}
.page-wrapper {
    position: relative;
    width: 100%;
    min-width: 320px;
    z-index: 9;
    margin: 0px auto;
    overflow: hidden;
}
.home-page {
    background: var(--dark);
    color: var(--text);
}
/* SCROLL PROGRESS */
#sp {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 9999;
    transition: width 0.1s;
}

/* GRID BACKGROUND */
.grid-bg {
    position: absolute;
    inset: 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-image:
        linear-gradient(rgb(255 255 255 / 3%) 1px, #00000000 1px),
        linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
    z-index: 0;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar-c {
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
.nb-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.nb-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.nb-brand img {
    max-width: 140px;
}
.nb-icon {
    width: 38px;
    height: 38px;
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-nm {
    font-family: "Outfit", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}
.nav-pill {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 5px 7px;
    display: flex;
    gap: 2px;
    list-style: none;
    margin: 0px;
}
.nav-pill a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13.5px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.nav-pill a:hover,
.nav-pill a.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.nb-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-reg {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    padding: 7px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
}
.btn-reg:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}
.btn-dash {
    background: #fff;
    color: #000;
    border: none;
    padding: 7px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
}
.btn-dash:hover {
    background: #eee;
    color: #000;
}
.btn-menu {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-menu:hover {
    background: rgba(255, 255, 255, 0.12);
}
@media (max-width: 991px) {
    .nav-pill {
        display: none;
    }
    .btn-menu {
        display: flex;
    }
}
@media (max-width: 576px) {
    .btn-reg {
        display: none;
    }
}

/* =========================================
   MOBILE DRAWER
   ========================================= */
.mob-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
    z-index: 1998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.mob-overlay.on {
    opacity: 1;
    pointer-events: all;
}
.mob-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 290px;
    height: 100vh;
    background: #0c0c0c;
    border-right: 1px solid rgba(212, 168, 67, 0.12);
    z-index: 1999;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}
.mob-drawer.on {
    transform: translateX(0);
}
.drw-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.drw-close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
}
.drw-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.drw-nav {
    padding: 14px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    list-style: none;
}
.drw-nav .nav-item a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px 14px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}
.drw-nav .nav-item a:hover {
    background: rgba(212, 168, 67, 0.07);
    color: var(--gold-light);
}
.drw-nav .nav-item a.active {
    background: rgba(212, 168, 67, 0.09);
    color: var(--gold-light);
}
.drw-ico {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: all 0.2s;
}
.drw-nav .nav-item a:hover .drw-ico {
    background: rgba(212, 168, 67, 0.1);
    border-color: rgba(212, 168, 67, 0.2);
    color: var(--gold);
}
.drw-ft {
    padding: 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.drw-reg {
    display: block;
    text-align: center;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 9px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.drw-reg:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.drw-dsh {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px;
    background: #fff;
    border-radius: 9px;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}
.drw-dsh:hover {
    background: #eee;
    color: #000;
}

/* =========================================
   HERO
   ========================================= */
#home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--dark);
    padding-top: 80px;
}
.hero-glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 600px;
    background: radial-gradient(
        ellipse,
        rgba(212, 168, 67, 0.32) 0%,
        rgba(212, 168, 67, 0.08) 45%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 1;
    animation: pg 5s ease-in-out infinite;
}
@keyframes pg {
    0%,
    100% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.06);
    }
}
.hero-ct {
    position: relative;
    z-index: 2;
    padding: 40px 0 60px;
}
.hero-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(36px, 5.5vw, 47px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}
.hero-title span {
    color: var(--gold-light);
}
.hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.85;
    max-width: 500px;
    margin: 0 auto 36px;
}
.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-hw {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    padding: 11px 26px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    text-decoration: none;
}
.btn-hw:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}
.btn-inv {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.3s;
    text-decoration: none;
}
.btn-inv:hover {
    color: #fff;
}

/* =========================================
   GOLD PRICE WIDGET
   ========================================= */
#goldprice {
    background: var(--dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.gp-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}
.gp-sub {
    text-align: center;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 48px;
    line-height: 1.7;
}
.gp-widget {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 0 80px rgba(212, 168, 67, 0.1);
}
.gp-top {
    background: linear-gradient(135deg, #131000, #0c0900);
    padding: 22px 26px 18px;
    border-bottom: 1px solid var(--border);
}
.gp-lbl {
    font-size: 10px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.gp-bar {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    height: 6px;
    position: relative;
    margin-bottom: 16px;
}
.gp-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 68%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 50px;
}
.gp-thumb {
    position: absolute;
    left: 68%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--gold-light);
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(212, 168, 67, 0.6);
}
.gp-vals {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--muted);
}
.gp-body {
    padding: 22px 26px;
}
.gp-wlbl {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.gp-wval {
    font-family: "Outfit", sans-serif;
    font-size: 46px;
    font-weight: 800;
    color: var(--gold-light);
    letter-spacing: -0.03em;
    text-shadow: 0 0 30px rgba(212, 168, 67, 0.4);
}
.gp-plbl {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 14px;
    margin-bottom: 6px;
}
.gp-pval {
    font-family: "Outfit", sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}
.gp-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}
.gp-dot {
    width: 7px;
    height: 7px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    animation: blink 2s infinite;
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}
.gp-stxt {
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
}
.gp-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), #b8902a);
    border: none;
    color: #000;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 14px;
    transition: all 0.3s;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.gp-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 6px 24px rgba(212, 168, 67, 0.4);
}

/* =========================================
   SECTION COMMON
   ========================================= */
.sec-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(32px, 4.5vw, 58px);
    font-weight: 800;
    color: #fff;
    text-align: center;
    letter-spacing: -0.03em;
}
.sec-title span {
    color: var(--gold-light);
}
.sec-sub {
    text-align: center;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.8;
    max-width: 640px;
    margin: 16px auto 52px;
}

/* =========================================
   ABOUT
   ========================================= */
#about {
    background: var(--dark);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.gold-vis {
    background: radial-gradient(
        ellipse at center,
        #5a4a10 0%,
        #2a2000 45%,
        #0f0e00 100%
    );
    border-radius: 18px;
    height: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.gold-orb {
    width: 110px;
    height: 110px;
    background: radial-gradient(
        circle,
        var(--gold-light),
        var(--gold) 60%,
        #8a6010
    );
    border-radius: 50%;
    box-shadow:
        0 0 80px rgba(212, 168, 67, 0.7),
        0 0 160px rgba(212, 168, 67, 0.3);
    animation: op 3s ease-in-out infinite;
    margin: 0 auto 16px;
}
@keyframes op {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}
.feat-card {
    background: var(--dark4);
    border: 1px solid var(--border2);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    transition: all 0.3s;
}
.feat-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
}

.feat-icon {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(0 0 0);
    font-size: 15px;
    margin-bottom: 18px;
    background: radial-gradient(
        circle,
        var(--gold-light),
        var(--gold) 60%,
        #8a6010
    );
    box-shadow:
        0 0 80px rgba(212, 168, 67, 0.7),
        0 0 160px rgba(212, 168, 67, 0.3);
    animation: op 3s ease-in-out infinite;
}

.feat-title {
    font-family: "Outfit", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.feat-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.75;
}

/* =========================================
   FEATURES
   ========================================= */
#features {
    background: var(--dark);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.risk-card {
    background: var(--dark3);
    border: 1px solid var(--border2);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
}
.lock-wrap {
    position: relative;
    height: 200px;
    margin-bottom: 24px;
}
.lock-c {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #b8902a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 40px rgba(212, 168, 67, 0.6),
        0 0 80px rgba(212, 168, 67, 0.25);
    z-index: 2;
    animation: gp2 3s ease-in-out infinite;
}
@keyframes gp2 {
    0%,
    100% {
        box-shadow:
            0 0 40px rgba(212, 168, 67, 0.6),
            0 0 80px rgba(212, 168, 67, 0.2);
    }
    50% {
        box-shadow:
            0 0 60px rgba(212, 168, 67, 0.9),
            0 0 120px rgba(212, 168, 67, 0.35);
    }
}
.lnode {
    position: absolute;
    width: 34px;
    height: 34px;
    background: var(--dark5);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 12px;
}
.n1 {
    top: 16px;
    left: 18%;
}
.n2 {
    top: 16px;
    right: 18%;
}
.n3 {
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
}
.n4 {
    top: 50%;
    right: 6%;
    transform: translateY(-50%);
}
.n5 {
    bottom: 16px;
    left: 18%;
}
.n6 {
    bottom: 16px;
    right: 18%;
}
.risk-title {
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.risk-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.72;
}
.sat-card {
    background: var(--dark3);
    border: 1px solid var(--border2);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    position: relative;
}
.sat-title {
    font-family: "Outfit", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.sat-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.72;
    margin-bottom: 26px;
}
.bubbles {
    position: relative;
    height: 180px;
}
.bbl {
    position: absolute;
    background: var(--dark5);
    border: 1px solid var(--border2);
    border-radius: 9px;
    padding: 7px 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}
.bbl strong {
    color: #fff;
    font-weight: 600;
}
.b1 {
    top: 10px;
    left: 20px;
}
.b2 {
    top: 44px;
    right: 10px;
}
.b3 {
    top: 96px;
    left: 6px;
}
.b4 {
    bottom: 10px;
    right: 24px;
}
.b5 {
    bottom: 30px;
    left: 45%;
}
.mgold {
    position: absolute;
    bottom: 18px;
    right: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), #b8902a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.5);
}
.sm-card {
    background: var(--dark3);
    border: 1px solid var(--border2);
    border-radius: 20px;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.cring {
    width: 110px;
    height: 110px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(212, 168, 67, 0.35);
    position: relative;
}
.cring::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 2px dashed rgba(212, 168, 67, 0.25);
    border-radius: 50%;
}
.ccore {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #000;
}

/* =========================================
   ASSURANCE
   ========================================= */
#assurance {
    background: var(--dark);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.acard {
    background: var(--dark3);
    border: 1px solid var(--border2);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
}
.acard.featured-a {
    border-color: var(--border);
}
.aicon {
    width: 54px;
    height: 54px;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.astat {
    font-family: "Outfit", sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--gold-light);
    margin: 6px 0;
    letter-spacing: -0.03em;
}
.atitle {
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.atext {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.75;
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
#why {
    background: var(--dark);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.why-box {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
}
.tbl-box {
    background: var(--dark4);
    border: 1px solid var(--border2);
    border-radius: 14px;
    overflow: hidden;
}
table.txnt {
    width: 100%;
    border-collapse: collapse;
}
table.txnt thead th {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border2);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
table.txnt tbody td {
    color: var(--text);
    font-size: 13px;
    padding: 13px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: middle;
}
table.txnt tbody tr:last-child td {
    border-bottom: none;
}
.sok {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    display: inline-block;
}
.spend {
    background: rgba(250, 204, 21, 0.1);
    color: #facc15;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    display: inline-block;
}
.ccard {
    background: var(--dark4);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
}
.camt {
    font-family: "Outfit", sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin: 10px 0;
    letter-spacing: -0.03em;
}
.cpill {
    background: var(--dark3);
    border: 1px solid var(--border2);
    border-radius: 8px;
    padding: 4px 11px;
    font-size: 12px;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.csel {
    width: 100%;
    background: var(--dark3);
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 11px 15px;
    color: var(--text);
    font-size: 13px;
    appearance: none;
    cursor: pointer;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.csel:focus {
    outline: none;
    border-color: var(--gold);
}
.sw {
    position: relative;
}
.sw::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 11px;
    pointer-events: none;
}
.dsbar {
    display: flex;
    border-bottom: 1px solid var(--border2);
    margin-bottom: 36px;
}
.dsitem {
    flex: 1;
    padding: 0 14px 14px;
    position: relative;
    cursor: pointer;
}
.dsitem::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: transparent;
}
.dsitem.act::after {
    background: var(--gold);
}
.dsnum {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}
.dsitem.act .dsnum {
    color: var(--gold-light);
}
.don-cta h3 {
    font-family: "Outfit", sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}
.don-cta p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.75;
}

/* =========================================
   PRICING TABLE
   ========================================= */

/* PRICING */
#pricing {
    background: var(--dark);
    padding: 100px 0;
    overflow: hidden;
}

.pricing-card {
    background: var(--dark3);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 36px;
    height: 100%;
    transition: all 0.3s;
}

.pricing-card:hover,
.pricing-card.featured {
    border-color: var(--border);
    background: linear-gradient(135deg, var(--dark3), rgba(212, 168, 67, 0.04));
}

.pricing-badge {
    background: var(--gold);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 16px;
}

.pricing-name {
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.pricing-price {
    font-family: "Outfit", sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 20px 0;
}

.pricing-price sup {
    font-size: 20px;
    vertical-align: top;
    margin-top: 12px;
    display: inline-block;
}
.pricing-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--muted);
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature i {
    color: var(--gold);
    font-size: 13px;
    flex-shrink: 0;
}

.btn-pricing {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    margin-top: 24px;
}

.btn-pricing-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.btn-pricing-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-pricing-gold {
    background: var(--gold);
    color: #000;
}

.btn-pricing-gold:hover {
    background: var(--gold-light);
}

/* =========================================
   MARQUEE
   ========================================= */
#mq {
    background: #161616;
    padding: 50px 0;
    overflow: hidden;
}
.mq-t {
    display: flex;
    animation: mqs 22s linear infinite;
    white-space: nowrap;
}
@keyframes mqs {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.mq-txt {
    font-family: "Outfit", sans-serif;
    font-size: clamp(44px, 7vw, 86px);
    font-weight: 800;
    color: var(--gold-light);
    text-shadow: 0 0 30px rgba(212, 168, 67, 0.5);
    padding-right: 36px;
}
.mq-txt span {
    color: #fff;
}

/* =========================================
   PAYMENT
   ========================================= */
#pay {
    background: var(--dark);
    padding: 68px 0 68px;
    overflow: hidden;
}
.payc {
    background: var(--dark3);
    border: 1px solid var(--border2);
    border-radius: 16px;
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    transition: border-color 0.3s;
}
.payc:hover {
    border-color: var(--border);
}
.visa-t {
    font-size: 26px;
    font-weight: 900;
    color: #1a1aff;
    font-family: "Outfit", sans-serif;
    letter-spacing: -1px;
}
.mc-w {
    display: flex;
}
.mc-r {
    width: 40px;
    height: 40px;
    background: #eb001b;
    border-radius: 50%;
    margin-right: -11px;
}
.mc-o {
    width: 40px;
    height: 40px;
    background: #f79e1b;
    border-radius: 50%;
}
.btc-b {
    width: 40px;
    height: 40px;
    background: #f7931a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
}

/* =========================================
   CONTACT
   ========================================= */
#contact {
    background: var(--dark);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.con-card {
    background: var(--dark3);
    border: 1px solid var(--border2);
    border-radius: 20px;
    padding: 42px;
}
.fl {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 7px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.fi {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border2);
    border-radius: 11px;
    padding: 12px 16px;
    color: #fff;
    font-size: 13.5px;
    font-family: "Plus Jakarta Sans", sans-serif;
    transition: all 0.25s;
}
.fi::placeholder {
    color: rgba(255, 255, 255, 0.2);
}
.fi:focus {
    outline: none;
    border-color: rgba(212, 168, 67, 0.5);
    background: rgba(212, 168, 67, 0.025);
    box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.07);
}
textarea.fi {
    resize: none;
}
.bsub {
    background: linear-gradient(135deg, var(--gold), #b8902a);
    border: none;
    color: #000;
    padding: 12px 32px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.bsub:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 6px 24px rgba(212, 168, 67, 0.4);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: #161616;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    padding: 62px 0 34px;
}
.ft-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.ft-svg {
    width: 48px;
    height: 48px;
}
.ft-bnm {
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: #fff;
    line-height: 1.25;
    letter-spacing: 0.06em;
}
.ft-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.72;
    max-width: 250px;
}
.ft-ttl {
    font-size: 11px;
    color: var(--muted);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.ft-lk {
    padding: 0;
    margin: 0;
    list-style: none;
}
.ft-lk li {
    list-style: none;
}
.ft-lk li a {
    display: block;
    color: rgba(255, 255, 255, 0.48);
    font-size: 13px;
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.25s;
}
.ft-lk li a:hover {
    color: #fff;
}
.socials {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.sb {
    width: 36px;
    height: 36px;
    background: var(--dark3);
    border: 1px solid var(--border2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s;
}
.sb:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.ft-em {
    color: #fff;
    font-size: 13.5px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s;
}
.ft-em:hover {
    color: var(--gold);
}
.ft-div {
    border-color: rgba(255, 255, 255, 0.055);
    margin: 32px 0 18px;
}
.ft-copy {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
}
.ft-copy a {
    color: rgba(255, 255, 255, 0.48);
    text-decoration: none;
}
.ft-copy a:hover {
    color: var(--gold);
}

/* =========================================
   INVEST MODAL
   ========================================= */
.iov {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.iov.on {
    opacity: 1;
    pointer-events: all;
}
.imod {
    background: #0e0e0e;
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 22px;
    width: 100%;
    max-width: 480px;
    max-height: 92vh;
    overflow-y: auto;
    transform: translateY(26px) scale(0.97);
    transition:
        transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.3s;
    opacity: 0;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.75),
        0 0 60px rgba(212, 168, 67, 0.05);
}
.iov.on .imod {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.imod::-webkit-scrollbar {
    width: 4px;
}
.imod::-webkit-scrollbar-thumb {
    background: rgba(212, 168, 67, 0.2);
    border-radius: 4px;
}
.mhd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mhd-l {
    display: flex;
    align-items: center;
    gap: 13px;
}
.mhd-ic {
    width: 40px;
    height: 40px;
    background: linear-gradient(
        135deg,
        rgba(212, 168, 67, 0.18),
        rgba(212, 168, 67, 0.04)
    );
    border: 1px solid rgba(212, 168, 67, 0.22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mhd-tt {
    font-family: "Outfit", sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
}
.mhd-st {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
}
.mhd-x {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.mhd-x:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.mbdy {
    padding: 20px 26px 26px;
}
.ptbl {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 13px;
    overflow: hidden;
    margin-bottom: 22px;
}
.prow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
}
.prow:last-child {
    border-bottom: none;
}
.plbl {
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
}
.plbl i {
    color: var(--gold);
    opacity: 0.6;
    font-size: 11px;
}
.pval {
    color: #fff;
    font-weight: 600;
    text-align: right;
}
.pval.gv {
    color: var(--gold-light);
}
.byes {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}
.mfld {
    margin-bottom: 18px;
}
.mlb {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.mlb .req {
    color: var(--gold);
    font-size: 12px;
}
.min {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 11px;
    padding: 12px 16px;
    color: #fff;
    font-size: 14px;
    font-family: "Plus Jakarta Sans", sans-serif;
    transition: all 0.25s;
    margin-bottom: 5px;
}
.min::placeholder {
    color: rgba(255, 255, 255, 0.2);
}
.min:focus {
    outline: none;
    border-color: rgba(212, 168, 67, 0.5);
    background: rgba(212, 168, 67, 0.03);
    box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.08);
}
.mhnt {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.55;
    margin-bottom: 16px;
}
.mhnt i {
    color: var(--gold);
    opacity: 0.55;
    margin-right: 4px;
}
.msw {
    position: relative;
}
.msw::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.25);
    font-size: 11px;
    pointer-events: none;
}
.msl {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 11px;
    padding: 12px 16px;
    color: #fff;
    font-size: 13.5px;
    font-family: "Plus Jakarta Sans", sans-serif;
    appearance: none;
    cursor: pointer;
    transition: all 0.25s;
}
.msl:focus {
    outline: none;
    border-color: rgba(212, 168, 67, 0.5);
    box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.08);
}
.msl option {
    background: #1a1a1a;
}
.iwi {
    position: relative;
}
.iwi .min {
    padding-right: 44px;
}
.iwsfx {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.25);
    font-size: 14px;
    font-weight: 600;
}
.mwrn {
    background: rgba(212, 168, 67, 0.055);
    border: 1px solid rgba(212, 168, 67, 0.22);
    border-radius: 12px;
    padding: 12px 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}
.mwi {
    color: var(--gold);
    font-size: 14px;
    margin-top: 1px;
    flex-shrink: 0;
}
.mwt {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.6;
}
.mwbs {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 6px;
    flex-wrap: wrap;
}
.bmn,
.bmx {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 11px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ec4899, #be185d);
    color: #fff;
}
.mft {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.bmc {
    padding: 10px 24px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.bmc:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.bmp {
    padding: 10px 24px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold), #b8902a);
    border: none;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.28s;
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: "Plus Jakarta Sans", sans-serif;
    box-shadow: 0 4px 18px rgba(212, 168, 67, 0.28);
}
.bmp:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 6px 26px rgba(212, 168, 67, 0.45);
    transform: translateY(-1px);
}

/* =========================================
   ANIMATIONS
   ========================================= */
.fade-up {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}
.fade-up.vis {
    opacity: 1;
    transform: translateY(0);
}
.fd1 {
    transition-delay: 0.1s;
}
.fd2 {
    transition-delay: 0.2s;
}
.fd3 {
    transition-delay: 0.3s;
}
.fd4 {
    transition-delay: 0.4s;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 767px) {
    .con-card {
        padding: 24px 16px;
    }
    .why-box {
        padding: 24px 16px;
    }
    .gp-widget {
        max-width: 100%;
    }
    .mq-txt {
        font-size: 44px;
    }
    .dsbar {
        flex-wrap: wrap;
    }
    .acard {
        padding: 24px;
    }
    #home {
        min-height: 600px;
    }
    .pricing-price {
        font-family: "Outfit", sans-serif;
        font-size: 24px;
    }
    #about,
    #features,
    #assurance,
    #pricing {
        padding: 50px 0;
    }
}

/* =========================================
   disclaimer
   ========================================= */
.disclaimer-banner {
    background: #161616;
    padding: 40px 40px;
    overflow: hidden;
}

.disc-banner-ico {
    width: 38px;
    height: 38px;
    background: var(--gold-light);
    border: 1px solidvar(--gold-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    font-size: 16px;
    flex-shrink: 0;
}

/* ── animations ── */
.disclaimer-banner {
    animation: fadeIn 0.6s ease both;
}

.cookies-allert {
    display: none;
    position: fixed;
    left: 15px;
    bottom: 50px;
    padding: 2rem;
    max-width: 360px;
    cursor: pointer;
    border-radius: 24px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    background: #ffffff;
    text-align: center;
}

.cookies-allert h4 {
    color: #2d2d2d;
}

.cookies-allert span {
    color: #2d2d2d;
}

.cookies-allert img {
    width: 20% !important;
    display: block;
    margin: auto;
}

.cookieButton {
    display: flex !important;
    height: 55px;
    line-height: 55px;
    color: #fff !important;
    font-size: 17px !important;
    padding: 0 2rem !important;
    align-items: center !important;
    background: var(--gold);
    width: auto;
    border-radius: 24px !important;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    justify-content: center !important;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease-in-out !important;
    white-space: nowrap;
}
.cookieButton:hover {
    color: #fff;
}
.cookieClose {
    color: #2d2d2d;
    text-decoration: none;
    transition: all 0.01s ease-in-out;
    border-bottom: 1px solid rgba(45, 45, 45, 0.3);
}

.cookieClose:hover {
    border-bottom: 3px solid rgba(3, 3, 3, 0.3);
}

.cookies-allert .seemoreButton {
    text-decoration: underline;
    display: inline-block;
    font-size: 14px;
    color: var(--primary-color);
}

.cookieButton:hover {
    color: #fff;
}

@media (max-width: 375px) {
    #cookiesAlert {
        margin-right: 15px !important;
        bottom: 10px;
    }
}

/*===========================================
	Scroll To Top style
============================================= */
.scroll-to-top {
    position: fixed;
    right: 0px;
    bottom: 100px;
    transform: rotate(90deg);
    z-index: 99;
}

.scroll-to-top .visible {
    visibility: visible !important;
    opacity: 1 !important;
}

.scroll-to-top .scroll-top-inner {
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top .scroll-top-inner {
    display: flex;
    align-items: center;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.scroll-to-top .scroll-bar {
    width: 50px;
    height: 2px;
    color: var(--secondary-color);
    margin-right: 10px;
    position: relative;
}

.scroll-to-top .scroll-bar:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #cbcbcb;
    opacity: 0.3;
}

.scroll-to-top .scroll-bar .bar-inner {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: currentColor;
}

.scroll-to-top .scroll-bar-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 500ms ease;
}

.scroll-to-top .scroll-bar-text:hover {
    transform: scale(1.1);
}

/* responsive */
@media only screen and (min-width: 769px) and (max-width: 991px) {
    .scroll-to-top {
        right: -30px;
    }
}

@media only screen and (min-width: 360px) and (max-width: 740px) {
    .scroll-to-top {
        right: -30px;
    }
}

/* responsive */
/* ===========================================
Scroll To Top style
==============================================*/

/* scroll bar */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color) !important;
}

/* scroll bar */

.bg-layer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: right !important;
    transition: 0.5s;
    z-index: -1;
    right: 0;
}

/* ===========================================
terms & condition
==============================================*/
.terms-container {
    padding: 35px 35px;
    border-radius: 24px;
    border: 1px solid var(--border-6);
}

.terms-content h5 {
    font-size: 22px;
    margin-bottom: 10px;
}

.terms-content span,
.terms-content p,
.terms-content ul li {
    color: #1c1c1c !important;
    font-size: 17px !important;
}

.terms-content ul li span,
.terms-content ul li i {
    color: var(--primary) !important;
}

.terms-content a {
    color: var(--primary);
}

/* =====================
    button starts
========================*/
.btn-1 {
    position: relative;
    overflow: hidden;
    padding: 12px 34px;
    border-radius: 500px;
    color: var(--white-color);
    background: var(--primary-color);
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    font-weight: 500;
    z-index: 1;
    transition: 0.5s;
}

.btn-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-reverse);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.btn-1:hover::before {
    opacity: 1;
}

.btn-1:hover {
    color: var(--white-color);
}

/* btn 2 */
.btn-2 {
    position: relative;
    overflow: hidden;
    padding: 10px 32px;
    border-radius: 500px;
    color: var(--white-color);
    background: transparent;
    border: 1px solid var(--secondary-color);
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    font-weight: 500;
    z-index: 1;
    transition: 0.5s;
}

.btn-2::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: var(--primary-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-2:hover:after {
    top: auto;
    bottom: 0;
    height: 100%;
}

.btn-2:hover {
    color: var(--white-color);
}

/* btn 2 */

/* =======================
	button ends
==========================*/

/* =======================
	Priceing Modal
==========================*/
/* Modal overlay */
.price-modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    overflow-y: auto;
    padding: 40px 15px;
}

/* Modal container */
.price-modal .modal-container {
    background: #ffffff;
    width: 100%;
    max-width: 520px;
    margin: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    animation: modalFade 0.25s ease;
}

/* Animation */
@keyframes modalFade {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Header */
.price-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid #eee;
}

.price-modal .modal-header h5 {
    font-weight: 600;
    font-size: 18px;
    color: #333;
}

/* Close button */
.price-modal .close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f2f2f2;
    border-radius: 50%;
    cursor: pointer;
}

/* Body */
.price-modal .modal-body {
    padding: 20px;
}

/* Plan info box */
.plan-info {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.price-modal .plan-info h4 {
    font-weight: 700;
    margin-bottom: 8px;
}

/* Form */
.price-modal .form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

/* Inputs */
.price-modal .form-group input,
.price-modal .form-group select {
    width: 100%;
    padding: 11px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

/* Amount input */
.price-modal .amount-input {
    display: flex;
}

.price-modal .amount-input input {
    border-right: none;
    border-radius: 6px 0 0 6px;
}

.price-modal .currency {
    background: #f1f1f1;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-left: none;
    border-radius: 0 6px 6px 0;
}

/* Button */
.price-modal .invest-btn {
    width: 100%;
    padding: 13px;
    border: none;
    background: #d4af37;
    color: #000;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.price-modal .invest-btn:hover {
    background: #e6c253;
}
