/* ==========================================================================
   Landing page (karybian.co.id) — Jadoo travel template rebuilt for Odoo.
   Loaded ONLY by views/landing_templates.xml via a plain <link> tag; it is
   deliberately NOT part of web.assets_frontend, so it can never leak into
   the mdpl app pages. Everything is scoped under .mt-landing.
   ========================================================================== */

.mt-landing {
    /* Design tokens lifted from the template's tailwind.css */
    --ld-accent: #df6951;      /* eyebrow / primary accent */
    --ld-accent-2: #ff7152;    /* x-1st */
    --ld-yellow: #f1a501;      /* CTA */
    --ld-ink: #181e4b;         /* hero heading navy */
    --ld-ink-2: #14183e;       /* section heading navy (x-3rd) */
    --ld-text: #5e6282;        /* body text */
    --ld-text-2: #84829a;      /* secondary text */
    --ld-soft: #fff1da;        /* soft yellow icon bg */
    --ld-violet: #8a79df;      /* progress accent */
    --ld-card-shadow:
        0 1.85px 3.15px rgba(0, 0, 0, .004),
        0 8.15px 6.52px rgba(0, 0, 0, .008),
        0 20px 13px rgba(0, 0, 0, .012),
        0 38.52px 25.48px rgba(0, 0, 0, .012),
        0 64.81px 46.85px rgba(0, 0, 0, .016),
        0 100px 80px rgba(0, 0, 0, .02);

    font-family: 'Poppins', 'Quicksand', system-ui, sans-serif;
    color: var(--ld-text);
    background: #fff;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
    /* The toolbar is fixed to the viewport — clear its height. */
    padding-top: 72px;
}
.mt-landing h1, .mt-landing h2 {
    font-family: 'Volkhov', Georgia, serif;
    color: var(--ld-ink-2);
    font-weight: 700;
}
.mt-landing .ld-container {
    max-width: none;                 /* full-width content … */
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 4rem);   /* … with a comfortable side gap */
}
.mt-landing a { text-decoration: none; }

/* Anchored sections stop below the sticky nav. */
.mt-landing section[id], .mt-landing header[id] { scroll-margin-top: 84px; }

/* ------------------------------- Nav ---------------------------------- */
/* Pinned to the viewport so it follows the user's view while scrolling
   (sticky would silently break under the overflow-x:hidden wrapper). */
.mt-landing .ld-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    transition: box-shadow .2s ease;
}
.mt-landing .ld-nav.is-stuck { box-shadow: 0 6px 24px rgba(24, 30, 75, .08); }
.mt-landing .ld-nav-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 72px;
}
.mt-landing .ld-brand {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ld-ink);
}
.mt-landing .ld-brand img { height: 38px; width: auto; object-fit: contain; }
.mt-landing .ld-brand .fa { font-size: 1.5rem; color: var(--ld-accent); }
.mt-landing .ld-nav-toggle {
    margin-left: auto;
    border: 0;
    background: none;
    font-size: 1.35rem;
    color: var(--ld-ink);
    padding: .25rem .5rem;
    display: none;
}
.mt-landing .ld-nav-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1.9rem;
}
.mt-landing .ld-nav-link {
    color: var(--ld-ink);
    font-weight: 500;
    font-size: .95rem;
    position: relative;
    padding: .35rem 0;
}
.mt-landing .ld-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--ld-yellow);
    border-radius: 2px;
    transition: width .2s ease;
}
.mt-landing .ld-nav-link:hover::after,
.mt-landing .ld-nav-link.is-active::after { width: 100%; }
.mt-landing .ld-lang { display: inline-flex; gap: .4rem; align-items: center; }
/* Account / profile nav */
.mt-landing .ld-nav-signin {
    display: inline-flex; align-items: center; gap: .4rem;
    background: var(--ld-ink); color: #fff; border-radius: 8px;
    padding: .45rem .9rem; font-size: .88rem; font-weight: 500;
}
.mt-landing .ld-nav-signin:hover { background: #0f1436; color: #fff; }
.mt-landing .ld-account .ld-avatar {
    width: 36px; height: 36px; border-radius: 50%; overflow: hidden;
    border: 1px solid var(--ld-border); background: #fff; padding: 0; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
}
.mt-landing .ld-account .ld-avatar img { width: 100%; height: 100%; object-fit: cover; }
.mt-landing .ld-account .ld-avatar .fa { font-size: 1.3rem; color: var(--ld-ink); }
/* Flag chips reuse .mt-lang-btn/.mt-flag from the shared theme bundle. */
.mt-landing .ld-lang .mt-lang-btn { opacity: .55; }
.mt-landing .ld-lang .mt-lang-btn.is-active {
    opacity: 1;
    box-shadow: 0 0 0 2px var(--ld-yellow);
}

@media (max-width: 991.98px) {
    .mt-landing .ld-nav-toggle { display: inline-block; }
    .mt-landing .ld-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: .25rem;
        background: #fff;
        padding: .75rem 1.25rem 1rem;
        box-shadow: 0 18px 30px rgba(24, 30, 75, .12);
    }
    .mt-landing .ld-nav-links.is-open { display: flex; }
    .mt-landing .ld-nav-link { width: 100%; padding: .55rem 0; }
    .mt-landing .ld-lang { padding-top: .35rem; }
}

/* ------------------------------- Hero ---------------------------------- */
.mt-landing .ld-hero {
    position: relative;
    padding: 3.5rem 0 4.5rem;
}
.mt-landing .ld-hero-blob {
    position: absolute;
    top: -40%;
    right: -18%;
    width: 62%;
    padding-top: 60%;
    background: radial-gradient(closest-side, #fff1da 0%, #ffeecf 55%, rgba(255, 241, 218, 0) 100%);
    border-radius: 0 0 0 45%;
    z-index: 0;
}
.mt-landing .ld-hero .ld-container { position: relative; z-index: 1; }
.mt-landing .ld-eyebrow {
    color: var(--ld-accent);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: .9rem;
}
.mt-landing .ld-eyebrow-hero { font-weight: 700; font-size: 1.1rem; }
.mt-landing .ld-h1 {
    color: var(--ld-ink);
    font-size: clamp(2.3rem, 5.2vw, 4.1rem);
    line-height: 1.08;
    letter-spacing: -.03em;
    margin-bottom: 1.4rem;
}
.mt-landing .ld-lead {
    font-size: 1rem;
    line-height: 1.9;
    max-width: 30rem;
    margin-bottom: 2rem;
}
.mt-landing .ld-hero-cta {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    flex-wrap: wrap;
}
.mt-landing .ld-btn-hike {
    display: inline-block;
    background: var(--ld-yellow);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: .85rem 1.7rem;
    border-radius: 10px;
    box-shadow: 0 20px 35px rgba(241, 165, 1, .32);
    transition: transform .15s ease, box-shadow .15s ease;
}
.mt-landing .ld-btn-hike:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 24px 40px rgba(241, 165, 1, .42);
}
.mt-landing .ld-btn-invest {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    color: var(--ld-text);
    font-weight: 500;
}
.mt-landing .ld-btn-invest:hover { color: var(--ld-ink); }
.mt-landing .ld-invest-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--ld-accent);
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 18px 30px rgba(223, 105, 81, .45);
    transition: transform .15s ease;
}
.mt-landing .ld-btn-invest:hover .ld-invest-circle { transform: scale(1.07); }

.mt-landing .ld-hero-visual {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
}
.mt-landing .ld-hero-photo {
    width: min(88%, 430px);
    aspect-ratio: 4 / 4.6;
    border-radius: 58% 42% 55% 45% / 52% 48% 52% 48%;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(24, 30, 75, .18);
    background: linear-gradient(160deg, #ffe3b8, #ffd39b);
}
.mt-landing .ld-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.mt-landing .ld-hero-photo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(223, 105, 81, .55);
}
.mt-landing .ld-plane {
    position: absolute;
    color: var(--ld-accent);
    opacity: .85;
    z-index: 2;
    animation: ld-float 5s ease-in-out infinite;
}
.mt-landing .ld-plane-1 { top: 6%; left: 4%; font-size: 2rem; transform: rotate(-12deg); }
.mt-landing .ld-plane-2 { top: 12%; right: 4%; font-size: 1.5rem; transform: rotate(14deg); animation-delay: 1.2s; }
.mt-landing .ld-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: #fff;
    border-radius: 14px;
    padding: .65rem 1rem;
    font-size: .85rem;
    color: var(--ld-text);
    box-shadow: var(--ld-card-shadow), 0 10px 30px rgba(24, 30, 75, .12);
    z-index: 2;
    white-space: nowrap;
}
.mt-landing .ld-chip b { color: var(--ld-ink); }
.mt-landing .ld-chip .fa { color: var(--ld-accent); }
.mt-landing .ld-chip-1 { left: 0; bottom: 18%; animation: ld-float 6s ease-in-out infinite; }
.mt-landing .ld-chip-2 { right: 0; top: 22%; animation: ld-float 6s ease-in-out 1.5s infinite; }

@keyframes ld-float {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -10px; }
}

/* ----------------------------- Sections -------------------------------- */
.mt-landing .ld-section { position: relative; padding: 4.5rem 0 2.5rem; }
.mt-landing .ld-h2 {
    font-size: clamp(1.9rem, 3.6vw, 3.1rem);
    line-height: 1.15;
    margin-bottom: 2.6rem;
}

/* Decorative "+" grid (services corner). */
.mt-landing .ld-plusgrid {
    position: absolute;
    top: 2.5rem;
    right: 3%;
    display: grid;
    grid-template-columns: repeat(5, 26px);
    gap: 6px;
    color: #e5e5e5;
    font-size: 22px;
    line-height: 1;
    user-select: none;
    z-index: 0;
}
.mt-landing .ld-plusgrid .is-accent { color: var(--ld-accent-2); }
.mt-landing .ld-plusgrid .is-accent2 { color: #6246e5; }
@media (max-width: 767.98px) { .mt-landing .ld-plusgrid { display: none; } }

/* Service cards */
.mt-landing .ld-services-row { position: relative; z-index: 1; }
.mt-landing .ld-service-card {
    position: relative;
    background: #fff;
    border-radius: 36px;
    padding: 2.2rem 1.6rem 2rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--ld-card-shadow), 0 30px 60px rgba(24, 30, 75, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}
/* Lift is HOVER-ONLY — no card floats at rest. */
.mt-landing .ld-service-card:hover {
    box-shadow: var(--ld-card-shadow), 0 36px 70px rgba(24, 30, 75, .12);
    transform: translateY(-4px);
}
/* Corner decoration behind EVERY card, one color each. It lives on the
   COLUMN wrapper, not the card: a transformed (hovered) card creates its own
   stacking context, which would pull a card-level z-index:-1 pseudo-element
   above the card background and cover it. On the column (its own stacking
   context via z-index:0) the shape can never paint above the card. */
.mt-landing .ld-service-col { position: relative; z-index: 0; }
.mt-landing .ld-service-col::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -16px;
    width: 100px;
    height: 100px;
    border-radius: 30px 0 10px 0;
    background: var(--ld-corner, var(--ld-accent));
    z-index: -1;
}
.mt-landing .ld-service-col.is-amber { --ld-corner: #f0bb1f; }
.mt-landing .ld-service-col.is-rose { --ld-corner: #df6951; }
.mt-landing .ld-service-col.is-teal { --ld-corner: #0f7a6d; }
.mt-landing .ld-service-col.is-violet { --ld-corner: #8a79df; }
.mt-landing .ld-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border-radius: 24px 8px 18px 8px;
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
}
.mt-landing .ld-service-icon.is-amber { background: var(--ld-soft); color: #d98a00; }
.mt-landing .ld-service-icon.is-rose { background: #fde8e4; color: var(--ld-accent); }
.mt-landing .ld-service-icon.is-teal { background: #dff3f1; color: #0f7a6d; }
.mt-landing .ld-service-icon.is-violet { background: #ece8fb; color: #6246e5; }
.mt-landing .ld-service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e1d4c;
    margin-bottom: .7rem;
}
.mt-landing .ld-service-card p {
    font-size: .92rem;
    line-height: 1.75;
    margin: 0;
}

/* Mountain (destination) cards — single-line carousel.
   Auto-scroll + drag live in landing.js; the track uses native scroll with
   x-mandatory snap so touch swiping Just Works. The card nearest the middle
   gets .is-center (float up + full opacity); neighbours are dimmed. */
.mt-landing .ld-carousel { position: relative; }
.mt-landing .ld-carousel::before,
.mt-landing .ld-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 2;
    pointer-events: none;
}
.mt-landing .ld-carousel::before { left: 0; background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0)); }
.mt-landing .ld-carousel::after { right: 0; background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0)); }
.mt-landing .ld-carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    /* inline padding lets the FIRST and LAST card reach the center */
    padding: 2.4rem max(calc(50% - 150px), 12px) 1.8rem;
    scrollbar-width: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    user-select: none;
}
.mt-landing .ld-carousel-track::-webkit-scrollbar { display: none; }
.mt-landing .ld-carousel-track.is-dragging {
    scroll-snap-type: none;
    cursor: grabbing;
}
.mt-landing .ld-dest-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--ld-card-shadow), 0 14px 35px rgba(24, 30, 75, .08);
    flex: 0 0 300px;
    scroll-snap-align: center;
    transform: scale(.94);
    opacity: .72;
    transition: transform .35s ease, box-shadow .35s ease, opacity .35s ease;
}
.mt-landing .ld-dest-card:hover:not(.is-center) { opacity: .9; }
.mt-landing .ld-dest-card.is-center {
    transform: translateY(-14px) scale(1.03);
    opacity: 1;
    box-shadow: var(--ld-card-shadow), 0 30px 60px rgba(24, 30, 75, .18);
}
@media (max-width: 575.98px) {
    .mt-landing .ld-dest-card { flex-basis: 240px; }
    .mt-landing .ld-carousel-track { padding-inline: max(calc(50% - 120px), 8px); }
    .mt-landing .ld-carousel::before, .mt-landing .ld-carousel::after { width: 36px; }
}
.mt-landing .ld-dest-photo {
    aspect-ratio: 4 / 4.1;
    background: linear-gradient(160deg, #e8ecf5, #cdd6e6);
}
.mt-landing .ld-dest-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.mt-landing .ld-dest-body { padding: 1.15rem 1.35rem 1.35rem; }
.mt-landing .ld-dest-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: .55rem;
}
.mt-landing .ld-dest-top h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ld-text);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mt-landing .ld-dest-visitors {
    font-size: .95rem;
    font-weight: 500;
    color: var(--ld-text);
    white-space: nowrap;
}
.mt-landing .ld-dest-loc {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .92rem;
    margin: 0;
    color: var(--ld-text);
}
.mt-landing .ld-dest-loc .fa { color: var(--ld-accent); }
.mt-landing .ld-empty { padding: 2rem 0 1rem; }

/* How-it-works steps */
.mt-landing .ld-steps {
    display: flex;
    flex-direction: column;
    gap: 1.9rem;
    margin-top: .6rem;
}
.mt-landing .ld-step { display: flex; gap: 1.15rem; align-items: flex-start; }
.mt-landing .ld-step-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 13px;
    color: #fff;
    font-size: 1.1rem;
}
.mt-landing .ld-step-icon.is-amber { background: #f0bb1f; }
.mt-landing .ld-step-icon.is-rose { background: #f15a2b; }
.mt-landing .ld-step-icon.is-teal { background: #006380; }
.mt-landing .ld-step-icon.is-violet { background: var(--ld-violet); }
.mt-landing .ld-step h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ld-text);
    margin-bottom: .3rem;
}
.mt-landing .ld-step p { font-size: .95rem; line-height: 1.65; margin: 0; }

/* E-ticket preview card + floating ongoing card */
.mt-landing .ld-preview {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
    padding: 1rem 0 3.5rem;
}
.mt-landing .ld-preview-glow {
    position: absolute;
    top: 0;
    left: 12%;
    width: 75%;
    height: 85%;
    background: rgba(89, 177, 230, .8);
    border-radius: 50%;
    filter: blur(75px);
    opacity: .4;
    z-index: 0;
}
.mt-landing .ld-ticket {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 26px;
    padding: 1.35rem;
    max-width: 340px;
    box-shadow: var(--ld-card-shadow), 0 24px 50px rgba(24, 30, 75, .12);
}
.mt-landing .ld-ticket-photo {
    height: 165px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.1rem;
    background: linear-gradient(160deg, #e8ecf5, #cdd6e6);
}
.mt-landing .ld-ticket-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.mt-landing .ld-ticket-photo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(24, 30, 75, .3);
}
.mt-landing .ld-ticket h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #080808;
    margin-bottom: .3rem;
}
.mt-landing .ld-ticket-sub {
    font-size: .9rem;
    color: var(--ld-text-2);
    margin-bottom: .9rem;
}
.mt-landing .ld-ticket-icons { display: flex; gap: .7rem; margin-bottom: 1.35rem; }
.mt-landing .ld-ticket-icons span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    color: var(--ld-text-2);
    font-size: .95rem;
}
.mt-landing .ld-ticket-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .9rem;
    color: var(--ld-text-2);
}
.mt-landing .ld-ticket-foot .fa-users { margin-right: .35rem; }
.mt-landing .ld-ticket-foot .fa-heart-o { color: var(--ld-violet); font-size: 1.1rem; }
.mt-landing .ld-ongoing {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    gap: .8rem;
    background: #fff;
    border-radius: 18px;
    padding: 1rem 1.15rem;
    width: 265px;
    box-shadow: var(--ld-card-shadow), 0 20px 45px rgba(24, 30, 75, .16);
}
.mt-landing .ld-ongoing-avatar {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--ld-soft);
    color: #d98a00;
    font-size: 1.15rem;
}
.mt-landing .ld-ongoing small {
    display: block;
    color: var(--ld-text-2);
    font-size: .8rem;
    margin-bottom: .15rem;
}
.mt-landing .ld-ongoing h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #080808;
    margin-bottom: .45rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 165px;
}
.mt-landing .ld-ongoing p { font-size: .85rem; color: #080808; margin-bottom: .5rem; }
.mt-landing .ld-ongoing p b { color: var(--ld-violet); }
.mt-landing .ld-progress {
    width: 155px;
    height: 5px;
    background: #f5f5f5;
    border-radius: 30px;
    overflow: hidden;
}
.mt-landing .ld-progress span {
    display: block;
    width: 60%;
    height: 100%;
    background: var(--ld-violet);
    border-radius: 30px;
}
@media (max-width: 575.98px) {
    .mt-landing .ld-ticket { margin: 0 auto; }
    .mt-landing .ld-ongoing { position: static; margin: 1rem auto 0; }
    .mt-landing .ld-preview { padding-bottom: 1rem; }
}

/* ------------------------------ Footer --------------------------------- */
/* Same look as the invest-page footer (dark navy, centered) for a
   consistent site (request: unify footer style, invest-page style). */
.mt-landing .ld-footer {
    background: #181e4b;
    color: rgba(255, 255, 255, .66);
    padding: 2.5rem 0;
    font-size: .85rem;
    text-align: center;
}
.mt-landing .ld-footer .ld-foot-brand { color: #ffb229; font-weight: 600; }

/* Admin-only floating settings button (edit this page's content).
   NB: the /invest twin (.pk-admin-gear) is styled in invest.css — that page
   does NOT load landing.css. */
.mt-landing .ld-admin-gear {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #181e4b;
    color: #fff;
    border-radius: 999px;
    padding: .7rem 1.15rem;
    font-size: .9rem;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(24, 30, 75, .35);
    text-decoration: none;
}
.mt-landing .ld-admin-gear:hover { background: #14183e; color: #ffb229; }

/* ---- Auth popups: same theme as the invest page (scoped to .mt-landing so
       the mdpl popups are untouched). Mirrors the .puncak rules in
       invest.css — login / signup / forgot-password. ---------------------- */
.mt-landing .modal-content { font-family: 'Poppins', sans-serif; border: 0; border-radius: 18px; }
.mt-landing .modal-title { font-family: 'Volkhov', serif; color: var(--ld-ink); }
.mt-landing .modal-title .fa { color: var(--ld-accent) !important; }
.mt-landing .modal .form-label { color: var(--ld-ink); }
.mt-landing .modal .form-control { border-radius: 10px; }
.mt-landing .modal .form-control:focus { border-color: var(--ld-yellow); box-shadow: 0 0 0 .2rem rgba(241, 165, 1, .2); }
.mt-landing .modal .btn-primary {
    background: var(--ld-yellow); border-color: var(--ld-yellow); color: #fff; font-weight: 600; border-radius: 10px;
}
.mt-landing .modal .btn-primary:hover { background: #ffb229; border-color: #ffb229; color: #fff; }
.mt-landing .modal a, .mt-landing .modal .text-primary { color: var(--ld-accent) !important; }
.mt-landing .modal .form-check-input:checked { background-color: var(--ld-yellow); border-color: var(--ld-yellow); }
