/**
 * Trust2 — Figma Make published design match
 * https://cupid-rate-61845337.figma.site/
 * Scoped to public homepage only.
 */

body.frontend-futuristic {
    --fe-card: #111827;
    --fe-card-hover: #151f33;
    --fe-success: #2ebd85;
}

/* —— Header (Figma: Sign In outline + Get Started solid) —— */
body.frontend-futuristic header.fe-header {
    top: 40px;
    padding: 14px 5%;
    background: rgba(6, 11, 20, 0.6);
    backdrop-filter: blur(8px);
}

body.frontend-futuristic header.fe-header.sticky {
    top: 0;
    background: rgba(6, 11, 20, 0.95);
}

body.frontend-futuristic .fe-header .nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

body.frontend-futuristic .fe-header .fe-btn-get-started {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    background: var(--color-primary);
    color: #0a0f18 !important;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

body.frontend-futuristic .fe-header .fe-btn-get-started:hover {
    filter: brightness(1.08);
    color: #0a0f18 !important;
}

body.frontend-futuristic .fe-header .i-btn.btn--primary-outline {
    background: transparent;
    border: 1.5px solid var(--color-primary);
    color: var(--fe-text) !important;
    padding: 10px 22px;
}

/* —— Header logo: primary neon (logo always on top) —— */
body.frontend-futuristic .header-logo,
body.frontend-futuristic .mobile-logo-wrap {
    position: relative;
    overflow: visible;
}

body.frontend-futuristic .header-logo > a,
body.frontend-futuristic .mobile-logo-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

body.frontend-futuristic .header-logo > a::before,
body.frontend-futuristic .mobile-logo-wrap::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: -12px -18px;
    border-radius: 14px;
    background: radial-gradient(
        ellipse 70% 80% at 50% 50%,
        color-mix(in srgb, var(--color-primary) 42%, transparent),
        transparent 72%
    );
    filter: blur(10px);
    opacity: 0.8;
    pointer-events: none;
    animation: feLogoNeonPulse 3.2s ease-in-out infinite;
}

body.frontend-futuristic .header-logo > a::after,
body.frontend-futuristic .mobile-logo-wrap::after {
    display: none !important;
}

body.frontend-futuristic .header-logo img,
body.frontend-futuristic .mobile-logo-wrap img {
    position: relative;
    z-index: 2 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: 44px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 0 8px color-mix(in srgb, var(--color-primary) 60%, transparent))
        drop-shadow(0 0 18px color-mix(in srgb, var(--color-primary) 35%, transparent));
    transition: filter 0.25s ease;
}

body.frontend-futuristic .header-logo > a:hover img,
body.frontend-futuristic .mobile-logo-wrap:hover img {
    filter:
        drop-shadow(0 0 10px color-mix(in srgb, var(--color-primary) 80%, transparent))
        drop-shadow(0 0 24px color-mix(in srgb, var(--color-primary) 50%, transparent));
}

@keyframes feLogoNeonPulse {
    0%, 100% { opacity: 0.65; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
    body.frontend-futuristic .header-logo > a::before,
    body.frontend-futuristic .mobile-logo-wrap::before {
        animation: none;
    }
}

/* —— Centered section headers (Figma pattern) —— */
body.frontend-futuristic .fe-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

body.frontend-futuristic .fe-section-head p {
    margin-left: auto;
    margin-right: auto;
}

/* —— Hero (Figma) —— */
body.frontend-futuristic .fe-hero {
    padding-top: 130px;
    min-height: auto;
    background-image: none !important;
    background: var(--fe-bg);
}

body.frontend-futuristic .fe-hero::after {
    display: none;
}

body.frontend-futuristic .fe-hero__title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    max-width: 14ch;
}

body.frontend-futuristic .fe-hero__title .fe-gradient-word {
    background: linear-gradient(90deg, var(--color-primary), #fff 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.frontend-futuristic .fe-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.25rem;
}

body.frontend-futuristic .fe-hero__badge {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid var(--fe-border);
    background: var(--fe-surface);
}

body.frontend-futuristic .fe-hero__badge--cyan {
    color: #38bdf8;
    border-color: rgba(56, 189, 248, 0.35);
}

body.frontend-futuristic .fe-hero__badge--purple {
    color: #c084fc;
    border-color: rgba(192, 132, 252, 0.35);
}

body.frontend-futuristic .fe-hero__features {
    gap: 1rem;
}

body.frontend-futuristic .fe-hero__feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 1rem;
    min-height: 110px;
}

body.frontend-futuristic .fe-hero__feature-card .feature-icon {
    font-size: 1.75rem;
    margin-bottom: 0.35rem;
}

body.frontend-futuristic .fe-hero__feature-card .feature-title {
    color: var(--fe-text);
    font-weight: 500;
}

body.frontend-futuristic .fe-hero__trusted-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--fe-muted);
    margin: 1.5rem 0 0.75rem;
    text-transform: uppercase;
}

body.frontend-futuristic .fe-hero__visual-frame {
    background: var(--fe-card);
    border: 1px solid var(--fe-border);
    border-radius: var(--fe-radius-lg);
    padding: 2rem;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

body.frontend-futuristic .fe-hero__visual-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, var(--fe-glow), transparent 55%);
    pointer-events: none;
}

body.frontend-futuristic .fe-hero__visual-frame img {
    position: relative;
    z-index: 1;
    animation: none;
    max-height: 360px;
    width: auto;
    object-fit: contain;
}

body.frontend-futuristic .fe-hero__tagline {
    display: none;
}

/* —— Process (Figma step cards) —— */
body.frontend-futuristic .process-section .row.g-0 {
    gap: 1.5rem;
}

body.frontend-futuristic .process-item {
    position: relative;
    background: var(--fe-card);
    border-radius: 20px;
    padding: 2rem 1.75rem 1.75rem;
    margin-top: 0;
}

body.frontend-futuristic .process-item .serial {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    opacity: 1;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: #fff;
    padding: 0;
}

body.frontend-futuristic .process-item .icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--color-primary) 20%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

body.frontend-futuristic .process-item:last-child {
    border-color: color-mix(in srgb, var(--color-primary) 50%, var(--fe-border));
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-primary) 25%, transparent);
}

/* —— Pricing plans (Figma 3-column) —— */
body.frontend-futuristic .fe-home .pricing-section .section-title {
    text-align: center;
}

body.frontend-futuristic .fe-home .inv-plan-row {
    align-items: stretch;
}

body.frontend-futuristic .fe-home .pricing-item.style-two {
    background: var(--fe-card);
    border: 1px solid var(--fe-border);
    border-radius: 20px;
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

body.frontend-futuristic .fe-home .pricing-item.style-two:hover {
    border-color: color-mix(in srgb, var(--color-primary) 35%, var(--fe-border));
}

body.frontend-futuristic .fe-home .pricing-item.style-two .recommend {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #0a0f18;
    border-radius: 999px;
    padding: 4px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

body.frontend-futuristic .fe-home .pricing-item.style-two .recommend span::before {
    content: "★ ";
}

body.frontend-futuristic .fe-home .pricing-item.style-two:has(.recommend) {
    border-color: var(--color-primary);
    transform: scale(1.03);
    z-index: 2;
}

body.frontend-futuristic .fe-home .pricing-item.style-two .header .price {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: color-mix(in srgb, var(--color-primary) 15%, transparent);
    color: var(--color-primary) !important;
    font-size: 0.75rem !important;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
}

body.frontend-futuristic .fe-home .pricing-item.style-two .header .title {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    padding-right: 5rem;
}

body.frontend-futuristic .fe-home .pricing-item.style-two .header > .d-flex.justify-content-between:nth-child(2) p {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary) !important;
    margin: 0.5rem 0 1rem;
}

body.frontend-futuristic .fe-home .pricing-item.style-two .header > .d-flex.justify-content-between:nth-child(2) p .text-white {
    color: var(--color-primary) !important;
}

body.frontend-futuristic .fe-home .pricing-item.style-two .pricing-list li::before {
    content: "✓";
    color: var(--fe-success);
    margin-right: 8px;
    font-weight: 700;
}

body.frontend-futuristic .fe-home .pricing-item.style-two .footer .i-btn {
    width: 100%;
    border-radius: 999px;
    font-weight: 600;
}

body.frontend-futuristic .fe-home .pricing-item.style-two:not(:has(.recommend)) .footer .i-btn.btn--dark {
    background: transparent;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary) !important;
}

body.frontend-futuristic .fe-home .pricing-item.style-two:has(.recommend) .footer .i-btn.btn--dark {
    background: var(--color-primary);
    color: #0a0f18 !important;
    border: none;
}

/* —— Staking cards (Figma horizontal) —— */
body.frontend-futuristic .fe-home .invest-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    background: var(--fe-card);
    border-radius: 20px;
}

body.frontend-futuristic .fe-home .invest-card .interest {
    flex: 0 0 auto;
    text-align: left;
    border-right: 1px solid var(--fe-border);
    padding-right: 2rem;
    margin: 0;
}

body.frontend-futuristic .fe-home .invest-card .interest h4 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin: 0;
}

body.frontend-futuristic .fe-home .invest-card .interest span {
    color: var(--fe-muted);
    font-size: 0.9rem;
}

body.frontend-futuristic .fe-home .invest-card > .row {
    flex: 1;
    margin: 0;
}

body.frontend-futuristic .fe-home .investment-section .alert-warning {
    background: color-mix(in srgb, var(--color-primary) 8%, var(--fe-card));
    border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent);
    border-radius: 12px;
    color: var(--fe-muted);
}

/* —— Matrix plans —— */
body.frontend-futuristic .fe-home .pricing-item.card-style {
    background: var(--fe-card);
    border: 1px solid var(--fe-border);
    border-radius: 20px;
    text-align: center;
    padding: 2rem 1.5rem;
}

body.frontend-futuristic .fe-home .pricing-item.card-style .icon img {
    width: 48px;
    margin: 0 auto 1rem;
}

body.frontend-futuristic .fe-home .pricing-item.card-style .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

body.frontend-futuristic .fe-home .pricing-item.card-style .recommend span {
    background: var(--color-primary);
    color: #0a0f18;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* —— Currency exchange —— */
body.frontend-futuristic .fe-home .currency-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

body.frontend-futuristic .fe-home .read-more-btn {
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    padding: 10px 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.frontend-futuristic .fe-home .table-container {
    background: var(--fe-card);
    border: 1px solid var(--fe-border);
    border-radius: 16px;
    overflow: hidden;
    padding: 0.5rem;
}

/* —— Services tabs —— */
body.frontend-futuristic .fe-home .service-tab-wrapper .tab-pane img {
    border-radius: 16px;
    border: 1px solid var(--fe-border);
}

body.frontend-futuristic .fe-home .service-title-wrap .nav-link {
    border: 1px solid var(--fe-border);
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body.frontend-futuristic .fe-home .service-title-wrap .nav-link.active {
    border-color: var(--color-primary);
    border-left-width: 3px;
    background: var(--fe-card);
    color: var(--fe-text);
}

/* —— Choose us —— */
body.frontend-futuristic .fe-home .bet-vecotr img {
    border-radius: 16px;
}

body.frontend-futuristic .fe-home .choose-item {
    background: var(--fe-card);
}

/* —— FAQ —— */
body.frontend-futuristic .fe-home .faq-section .i-btn.btn--primary {
    border-radius: 999px;
    padding: 12px 28px;
}

/* —— Testimonials —— */
body.frontend-futuristic .fe-home .testimonial-card {
    padding: 2rem;
}

body.frontend-futuristic .fe-home .testimonial-card h5 {
    color: var(--fe-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

body.frontend-futuristic .fe-home .testimonial-item {
    padding: 2rem;
}

body.frontend-futuristic .fe-home .testimonial-item .content p {
    font-size: 1.1rem;
}

@media (max-width: 991px) {
    body.frontend-futuristic .fe-home .pricing-item.style-two:has(.recommend) {
        transform: none;
    }

    body.frontend-futuristic .fe-home .invest-card .interest {
        border-right: none;
        padding-right: 0;
        width: 100%;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════════════════════
   v2 — main.css overrides + Figma plan cards (higher specificity)
   ═══════════════════════════════════════════════════════════════ */

/* Header: absolute (main.css) — NOT forced fixed on every page */
body.frontend-futuristic header.style-1.fe-header {
    position: absolute !important;
    top: 60px !important;
    left: 0;
    right: 0;
    padding: 12px 5% !important;
    background: rgba(6, 11, 20, 0.72) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
}

body.frontend-futuristic header.style-1.fe-header.sticky {
    position: sticky !important;
    top: 0 !important;
    background: rgba(6, 11, 20, 0.95) !important;
    border-bottom: 1px solid var(--fe-border);
}

body.frontend-futuristic header.fe-header .container-fluid {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

body.frontend-futuristic header.fe-header .header-left {
    justify-self: start;
}

@media (min-width: 1200px) {
    body.frontend-futuristic .main-nav.fe-mobile-drawer::before,
    body.frontend-futuristic .main-nav.fe-mobile-drawer::after {
        display: none;
    }

    body.frontend-futuristic .main-nav.fe-mobile-drawer {
        flex-direction: row !important;
        align-items: center;
        overflow: visible !important;
        padding: 6px 20px !important;
        height: auto !important;
        width: auto !important;
        max-width: none;
        transform: none !important;
        box-shadow: none;
        border-right: none !important;
        position: static !important;
    }

    body.frontend-futuristic .main-nav.fe-mobile-drawer .fe-drawer-scroll {
        display: contents;
    }

    body.frontend-futuristic .main-nav.fe-mobile-drawer .fe-drawer-cta {
        display: none !important;
    }

    body.frontend-futuristic .main-nav.fe-mobile-drawer {
        justify-self: center;
        display: inline-flex !important;
        background: rgba(255, 255, 255, 0.06) !important;
        border: 1px solid var(--fe-border);
        border-radius: 999px !important;
        padding: 6px 20px !important;
    }
}

body.frontend-futuristic header.fe-header .nav-right {
    justify-self: end;
}

body.frontend-futuristic header.style-1 .main-nav ul > li > a::after {
    display: none !important;
}

body.frontend-futuristic .fe-hero__badges {
    margin-top: 1.25rem;
    margin-bottom: 0.25rem;
}

body.frontend-futuristic .fe-hero__actions {
    margin-bottom: 0;
}

/* Kill legacy light pricing cards on homepage */
body.frontend-futuristic .fe-home .pricing-item.style-two {
    background: #111827 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
}

body.frontend-futuristic .fe-home .pricing-item.style-two .header {
    background: transparent !important;
    border-bottom: 1px solid var(--fe-border) !important;
    border-radius: 0 !important;
    padding: 1.5rem 1.25rem 1rem !important;
}

body.frontend-futuristic .fe-home .pricing-item.style-two .header .title {
    color: var(--fe-text) !important;
}

body.frontend-futuristic .fe-home .pricing-item.card-style {
    background: #111827 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
}

body.frontend-futuristic .fe-home .pricing-item.card-style .header {
    background: transparent !important;
    border: none !important;
}

/* Markets table — fix cryptos inline light theme */
body.frontend-futuristic .fe-home .table-container {
    background: #111827 !important;
    border: 1px solid var(--fe-border) !important;
}

body.frontend-futuristic .fe-home .table-container th,
body.frontend-futuristic .fe-home .table-container td,
body.frontend-futuristic .fe-home .table-container td::before {
    color: var(--fe-muted) !important;
    border-color: var(--fe-border) !important;
}

body.frontend-futuristic .fe-home .table-container .amount,
body.frontend-futuristic .fe-home .table-container .high p,
body.frontend-futuristic .fe-home .table-container .low p {
    color: var(--fe-text) !important;
}

body.frontend-futuristic .fe-home .avatar--md {
    background: rgba(255, 255, 255, 0.08) !important;
}

/* Staking */
body.frontend-futuristic .fe-home .invest-card {
    background: #111827 !important;
    border: 1px solid var(--fe-border) !important;
}

/* Process grid gap */
body.frontend-futuristic .fe-home .process-section .row.g-0 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Matrix cards (Figma) */
body.frontend-futuristic .fe-home .fe-matrix-card {
    position: relative;
    background: #111827 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    height: 100%;
}

body.frontend-futuristic .fe-home .fe-matrix-card--featured {
    border-color: var(--color-primary) !important;
    transform: scale(1.03);
}

body.frontend-futuristic .fe-home .fe-matrix-card__ribbon {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #0a0f18;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
}

body.frontend-futuristic .fe-home .fe-matrix-card__icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

body.frontend-futuristic .fe-home .fe-matrix-card__price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

body.frontend-futuristic .fe-home .fe-matrix-card__name {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

body.frontend-futuristic .fe-home .fe-matrix-card__referral {
    display: inline-block;
    background: color-mix(in srgb, var(--fe-success) 15%, transparent);
    color: var(--fe-success);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    margin-bottom: 1.25rem;
}

body.frontend-futuristic .fe-home .fe-matrix-card__levels {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

body.frontend-futuristic .fe-home .fe-matrix-card__levels li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--fe-border);
    color: var(--fe-muted);
    font-size: 0.9rem;
}

body.frontend-futuristic .fe-home .fe-matrix-card__levels li strong {
    color: var(--fe-text);
}

body.frontend-futuristic .fe-home .fe-matrix-card__btn {
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 600;
    background: var(--color-primary) !important;
    color: #0a0f18 !important;
    border: none;
}

/* —— Mobile / tablet header + slide menu —— */
@media (max-width: 1199px) {
    body.frontend-futuristic .topbar {
        position: relative;
        z-index: 998;
    }

    body.frontend-futuristic header.style-1.fe-header {
        position: sticky !important;
        top: 0 !important;
        left: 0;
        right: 0;
        z-index: 999;
        padding: 10px 0 !important;
        background: rgba(6, 11, 20, 0.98) !important;
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--fe-border);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    }

    /* Menu open: header + drawer above overlay (fixes blur covering sidebar) */
    body.frontend-futuristic.mobile-menu-open header.style-1.fe-header {
        z-index: 100020 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(6, 11, 20, 0.98) !important;
    }

    body.frontend-futuristic header.fe-header .container-fluid {
        display: flex !important;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0 14px !important;
    }

    body.frontend-futuristic header.fe-header .header-left {
        flex: 1 1 auto;
        min-width: 0;
        gap: 8px;
    }

    body.frontend-futuristic header.fe-header .header-logo img {
        max-height: 38px;
        width: auto;
    }

    body.frontend-futuristic header.fe-header .nav-right {
        flex-shrink: 0;
        gap: 10px;
    }

    body.frontend-futuristic header.fe-header .nav-right .fe-btn-get-started,
    body.frontend-futuristic header.fe-header .nav-right .i-btn {
        display: none !important;
    }

    body.frontend-futuristic header.fe-header .dropdown-language {
        max-width: 110px;
    }

    body.frontend-futuristic header.fe-header .dropdown-language select {
        font-size: 0.8rem;
        padding: 6px 8px;
    }

    /* Off-canvas futuristic drawer */
    body.frontend-futuristic .main-nav.fe-mobile-drawer {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: min(320px, 90vw) !important;
        max-width: 320px;
        height: 100vh !important;
        height: 100dvh !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        background: #060b14 !important;
        border: none !important;
        border-right: 1px solid rgba(0, 212, 255, 0.22) !important;
        border-radius: 0 !important;
        z-index: 100030 !important;
        pointer-events: auto;
        overflow: hidden !important;
        transform: translateX(-100%) !important;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow:
            8px 0 48px rgba(0, 0, 0, 0.65),
            inset -1px 0 0 rgba(0, 212, 255, 0.15);
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        filter: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        isolation: isolate;
    }

    body.frontend-futuristic .main-nav.fe-mobile-drawer::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, transparent, var(--color-primary), transparent);
        opacity: 0.85;
        pointer-events: none;
        z-index: 2;
    }

    body.frontend-futuristic .main-nav.fe-mobile-drawer::after {
        content: "";
        position: absolute;
        top: -20%;
        left: -30%;
        width: 80%;
        height: 50%;
        background: radial-gradient(ellipse, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
        pointer-events: none;
        z-index: 0;
    }

    body.frontend-futuristic .main-nav.fe-mobile-drawer.show-menu {
        transform: translateX(0) !important;
    }

    body.frontend-futuristic .main-nav.fe-mobile-drawer > * {
        position: relative;
        z-index: 1;
    }

    body.frontend-futuristic .main-nav.fe-mobile-drawer .fe-drawer-scroll {
        flex: 1 1 auto;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 20px 18px 28px;
        -webkit-overflow-scrolling: touch;
    }

    body.frontend-futuristic .main-nav.fe-mobile-drawer .mobile-logo-area {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        flex-shrink: 0;
        margin: 0;
        padding: 18px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(0, 212, 255, 0.04);
    }

    body.frontend-futuristic .main-nav.fe-mobile-drawer .mobile-logo-wrap img {
        max-height: 36px;
        width: auto;
    }

    body.frontend-futuristic .main-nav.fe-mobile-drawer .fe-drawer-label {
        display: block;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--color-primary);
        margin-bottom: 12px;
        opacity: 0.95;
    }

    body.frontend-futuristic .main-nav.fe-mobile-drawer .menu-list {
        float: none !important;
        text-align: left !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none;
    }

    body.frontend-futuristic .main-nav.fe-mobile-drawer .menu-list > li {
        display: block !important;
        padding: 0 !important;
        margin: 0 0 4px !important;
        border: none !important;
    }

    body.frontend-futuristic .main-nav.fe-mobile-drawer .menu-list > li > a {
        display: block !important;
        color: #e8edf5 !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
        padding: 14px 14px !important;
        border-radius: 10px;
        border: 1px solid transparent;
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    body.frontend-futuristic .main-nav.fe-mobile-drawer .menu-list > li > a:hover,
    body.frontend-futuristic .main-nav.fe-mobile-drawer .menu-list > li > a.active {
        color: var(--color-primary) !important;
        background: rgba(0, 212, 255, 0.08) !important;
        border-color: rgba(0, 212, 255, 0.2) !important;
    }

    body.frontend-futuristic .main-nav.fe-mobile-drawer .menu-list > li i.bi {
        color: rgba(0, 212, 255, 0.85) !important;
        top: 14px !important;
    }

    body.frontend-futuristic .main-nav.fe-mobile-drawer .menu-list > li ul.sub-menu {
        background: rgba(0, 0, 0, 0.25) !important;
        border: 1px solid rgba(255, 255, 255, 0.06) !important;
        border-radius: 8px;
        margin: 4px 0 8px 8px !important;
        padding: 6px 10px !important;
    }

    body.frontend-futuristic .main-nav.fe-mobile-drawer .menu-list > li ul.sub-menu li a {
        color: #c5d0e0 !important;
        font-size: 0.9rem !important;
        padding: 10px 8px !important;
    }

    body.frontend-futuristic .main-nav.fe-mobile-drawer .fe-drawer-cta {
        flex-shrink: 0;
        padding: 0 18px 22px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 16px;
        margin-top: auto;
        background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.04));
    }

    body.frontend-futuristic .main-nav.fe-mobile-drawer .i-btn.btn--primary {
        display: flex !important;
        width: 100%;
        justify-content: center;
        margin: 0 !important;
        padding: 14px 20px !important;
        border-radius: 999px !important;
        font-weight: 600 !important;
        background: linear-gradient(135deg, var(--color-primary), #00a8cc) !important;
        color: #060b14 !important;
        border: none !important;
        box-shadow: 0 4px 20px rgba(0, 212, 255, 0.35);
    }

    body.frontend-futuristic .main-nav.fe-mobile-drawer .menu-close-btn {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: rgba(0, 212, 255, 0.1);
        border: 1px solid rgba(0, 212, 255, 0.35);
        color: #e8edf5;
        cursor: pointer;
        transition: background 0.2s ease;
    }

    body.frontend-futuristic .main-nav.fe-mobile-drawer .menu-close-btn:hover {
        background: rgba(0, 212, 255, 0.2);
    }

    body.frontend-futuristic .main-nav.fe-mobile-drawer .menu-close-btn i {
        font-size: 1.1rem;
        color: #e8edf5 !important;
    }

    body.frontend-futuristic header.fe-header .sidebar-btn {
        width: 42px;
        height: 42px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid var(--fe-border);
        cursor: pointer;
        color: var(--fe-text);
    }

    body.frontend-futuristic header.fe-header .sidebar-btn i {
        font-size: 1.5rem;
        color: var(--fe-text) !important;
    }

    /* Hide duplicate menu button in header-left — keep only nav-right hamburger */
    body.frontend-futuristic header.fe-header .header-left .sidebar-btn {
        display: none !important;
    }

    body.frontend-futuristic.mobile-menu-open {
        overflow: hidden;
    }

    body.frontend-futuristic .fe-mobile-menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 100025;
        background: rgba(2, 6, 14, 0.72);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    body.frontend-futuristic.mobile-menu-open .fe-mobile-menu-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@media (max-width: 575px) {
    body.frontend-futuristic header.fe-header .container-fluid {
        padding: 0 10px !important;
    }

    body.frontend-futuristic header.fe-header .header-logo img {
        max-height: 34px;
    }
}

@media (max-width: 991px) {
    body.frontend-futuristic .fe-home .process-section .row.g-0,
    body.frontend-futuristic .fe-home .fe-process-row {
        grid-template-columns: 1fr;
    }

    body.frontend-futuristic .fe-home .fe-matrix-card--featured {
        transform: none;
    }
}
