* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    background: #050507;
    color: #fff;
    overflow-x: hidden;
}

/* TITLE GLOBAL */
.title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: px;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* RESPONSIVE TITLE */
@media(max-width: 768px) {
    .title {
        font-size: 36px;
    }
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 20;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    border-radius: 999px;
    padding: 12px 24px;
    gap: 24px;
}

.logo {
    font-family: 'Monlo', Menlo, ui-monospace, SFMono-Regular, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-menu a {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    color: #aaa;
    text-decoration: none;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.25s ease;
}

.burger-menu:hover {
    background: rgba(255, 255, 255, 0.1);
}

.burger-menu svg {
    display: block;
    width: 24px;
    height: 24px;
}

/* HERO */
.hero {
    position: relative;
    padding: 130px 0 0;

    /* ✨ NEW: Gold gradient background (inspired by tentang-kami.html) */
    background: radial-gradient(circle at 14% 18%, rgba(241, 201, 133, 0.08), transparent 42%),
        radial-gradient(circle at 86% 82%, rgba(168, 85, 247, 0.07), transparent 45%),
        #050507;

    /* ❌ OLD: Purple/Blue gradient background (commented out)
    background: radial-gradient(circle at 70% 20%, rgba(120,0,255,0.25), transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(0,140,255,0.15), transparent 40%),
                #050507;
    */

    overflow: clip;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.78) 68%, transparent 100%);
}

.hero-currency {
    position: absolute;
    left: var(--currency-left);
    top: var(--currency-top);
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 30px rgba(5, 9, 20, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: 'Space Grotesk', sans-serif;
    font-size: var(--currency-size);
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    text-shadow: 0 0 28px rgba(79, 140, 255, 0.16);
    opacity: 0;
    transform: translate3d(0, 24px, 0) rotate(var(--currency-rotate));
    animation: currencyFloat var(--currency-duration) ease-in-out infinite,
        currencyFade var(--currency-fade) ease-in-out infinite;
    animation-delay: var(--currency-delay);
    transform-origin: center;
}

@keyframes currencyFloat {
    0% {
        transform: translate3d(0, 26px, 0) rotate(var(--currency-rotate)) scale(0.97);
    }

    25% {
        transform: translate3d(calc(var(--currency-drift) * 0.35), 6px, 0) rotate(calc(var(--currency-rotate) + 1.5deg)) scale(1);
    }

    50% {
        transform: translate3d(var(--currency-drift), -18px, 0) rotate(calc(var(--currency-rotate) - 2deg)) scale(1.015);
    }

    75% {
        transform: translate3d(calc(var(--currency-drift) * -0.25), -36px, 0) rotate(calc(var(--currency-rotate) + 1deg)) scale(1);
    }

    100% {
        transform: translate3d(0, -58px, 0) rotate(var(--currency-rotate)) scale(0.98);
    }
}

@keyframes currencyFade {

    0%,
    100% {
        opacity: 0.08;
    }

    20%,
    78% {
        opacity: 0.34;
    }

    50% {
        opacity: 0.24;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.24);
    transform: translateY(-1px);
}

.btn svg {
    display: block;
    width: 16px;
    height: 16px;
    color: #fff;
}

/* LEFT */
.hero-left h1 {
    font-family: 'Space Grotesk';
    font-size: 46px;
    line-height: 1.1;
    margin: 20px 0;
}

.hero-left p {
    font-family: system-ui, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: rgb(124, 138, 156);
    margin-top: 20px;
    max-width: 500px;
}

.badge {
    background: rgba(255, 200, 0, 0.1);
    color: #facc15;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    display: inline-block;
}

/* GRADIENT TEXT */
.gradient-text {
    background: linear-gradient(90deg, #4f8cff, #a855f7, #22d3ee);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    border-right: 2px solid #fff;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50% {
        border-color: transparent;
    }

    51%,
    100% {
        border-color: #fff;
    }
}

/* CTA */
.hero-cta {
    margin-top: 30px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta-btn {
    min-width: 240px;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hero-cta-btn--primary {
    background: linear-gradient(90deg, #f1c985, #e5bc79);
    color: #181a22;
    box-shadow: 0 10px 25px rgba(229, 188, 121, 0.25);
}

.hero-cta-btn--secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #161821;
    box-shadow: 0 10px 24px rgba(7, 10, 19, 0.24);
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.02);
}

/* BENEFITS */
.hero-benefits {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #9ca3af;
    font-family: 'Space Grotesk', sans-serif;
}

/* RIGHT */
.hero-right {
    position: relative;
    overflow: visible;
    /* 🎨 EDIT MANUAL: Ubah gradient gold di bawah ini sesuai kebutuhan */
    background: radial-gradient(circle at 50% 50%,
            rgba(241, 201, 133, 0.15) 0%,
            rgba(229, 188, 121, 0.08) 35%,
            transparent 65%);
    border-radius: 32px;
    padding: 40px;
}

.hero-right img {
    display: block;
    width: var(--hero-image-width, 160%);
    max-width: 90%;
    height: auto;
    border-radius: 24px;
    transform: rotate(0deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.0);
    animation: float 6s ease-in-out infinite;
    margin-top: -60px;
}

.hero-toast-stack {
    position: absolute;
    right: clamp(18px, 4vw, 40px);
    /* Adjust this value to move the hero event cards higher or lower. */
    bottom: clamp(110px, 14vw, 170px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    z-index: 3;
    pointer-events: none;
}

.hero-toast {
    min-width: min(320px, calc(100vw - 36px));
    max-width: 360px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(8, 12, 24, 0.78);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
    color: #e5edf9;
    transform: translate3d(0, 18px, 0) scale(0.96);
    opacity: 0;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.hero-toast.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.hero-toast.is-leaving {
    opacity: 0;
    transform: translate3d(0, -10px, 0) scale(0.98);
}

.hero-toast__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8ec5ff;
}

.hero-toast__eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 18px currentColor;
}

.hero-toast__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 4px;
}

.hero-toast__body {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(229, 237, 249, 0.75);
}

.hero-toast--boom {
    border-color: rgba(94, 234, 212, 0.3);
}

.hero-toast--boom .hero-toast__eyebrow {
    color: #5eead4;
}

.hero-toast--extinction {
    border-color: rgba(248, 113, 113, 0.32);
}

.hero-toast--extinction .hero-toast__eyebrow {
    color: #fda4af;
}

/* To manually adjust hero image size, edit --hero-image-width above */

.painpoint {
    padding: 100px 0 80px;
    color: #e2e8f0;
}

.painpoint-bg {
    background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.22), transparent 22%),
        radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.18), transparent 18%),
        linear-gradient(180deg, #06080f 0%, #0f172a 100%);
}

.painpoint .section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.painpoint .section-label {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(244, 114, 182, 0.14);
    color: #e3e3e3;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.painpoint h2 {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #e3e3e3;
}

.painpoint p {
    font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
    font-weight: 400;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.8;
}

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

.painpoint-cta {
    margin-top: 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cta-button {
    font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    color: #fff;
    border: none;
    padding: 18px 42px;
    border-radius: 28px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    min-width: 320px;
    max-width: 100%;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 50px rgba(59, 130, 246, 0.3);
}

.cta-caption {
    color: #cbd5e1;
    font-size: 8px;
    max-width: 560px;
    line-height: 1.8;
}

.painpoint-card {
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.35);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.painpoint-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 58, 237, 0.35);
}

.painpoint-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 18px;
}

.painpoint-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(79, 70, 229, 0.18);
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12);
}

.painpoint-icon svg {
    width: 24px;
    height: 24px;
    stroke: #cbd5e1;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.painpoint-card:nth-child(1) .painpoint-icon {
    background: rgba(239, 68, 68, 0.2);
}

.painpoint-card:nth-child(1) .painpoint-icon svg {
    stroke: #fca5a5;
}

.painpoint-card:nth-child(2) .painpoint-icon {
    background: rgba(245, 158, 11, 0.2);
}

.painpoint-card:nth-child(2) .painpoint-icon svg {
    stroke: #fcd34d;
}

.painpoint-card:nth-child(3) .painpoint-icon {
    background: rgba(56, 189, 248, 0.2);
}

.painpoint-card:nth-child(3) .painpoint-icon svg {
    stroke: #7dd3fc;
}

.painpoint-card:nth-child(4) .painpoint-icon {
    background: rgba(52, 211, 153, 0.2);
}

.painpoint-card:nth-child(4) .painpoint-icon svg {
    stroke: #86efac;
}

.painpoint-card:nth-child(5) .painpoint-icon {
    background: rgba(168, 85, 247, 0.2);
}

.painpoint-card:nth-child(5) .painpoint-icon svg {
    stroke: #d8b4fe;
}

.painpoint-card:nth-child(6) .painpoint-icon {
    background: rgba(236, 72, 153, 0.2);
}

.painpoint-card:nth-child(6) .painpoint-icon svg {
    stroke: #f9a8d4;
}

.painpoint-card h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 0;
    color: #f8fafc;
}

.painpoint-card p {
    font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
    font-weight: 400;
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 15px;
}

.card-description {
    font-size: 14px !important;
}

/* SPILL HR SECTION */
.spill-hr {
    padding: 100px 0 80px;
    background: radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.15), transparent 25%),
        radial-gradient(circle at top left, rgba(79, 70, 229, 0.18), transparent 28%),
        linear-gradient(180deg, #050507 0%, #0f172a 100%);
    color: #e2e8f0;
}

.spill-hr .section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.spill-hr .section-label {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.14);
    color: #e3e3e3;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.spill-hr h2 {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #e3e3e3;
}

.spill-hr p {
    font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
    font-weight: 400;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.8;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto 60px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(168, 85, 247, 0.2);
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.video-wrapper iframe,
.video-wrapper video {
    display: block;
    width: 100%;
    border-radius: 24px;
}

.video-wrapper video {
    height: auto;
    max-height: 600px;
    background: #000;
}

.spill-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

/* SOLUTIONS SECTION */
.solutions {
    padding: 100px 0 80px;
    background:
        radial-gradient(circle at 80% 10%, rgba(16, 185, 129, 0.12), transparent 28%),
        radial-gradient(circle at 10% 90%, rgba(6, 182, 212, 0.10), transparent 26%),
        linear-gradient(180deg, #0f172a 0%, #050507 100%);
    color: #e2e8f0;
}

.solutions__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.solutions__header p {
    font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
    font-weight: 400;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.8;
}

.solutions__label {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.14);
    color: #e3e3e3;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.solution-card {
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.28);
}

.solution-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.solution-num-btn {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(52, 211, 153, 0.45);
    background: transparent;
    color: #cbd5e1;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    opacity: 1;
    cursor: default;
    flex-shrink: 0;
}

.solution-num-btn:disabled {
    color: #cbd5e1;
    border-color: rgba(52, 211, 153, 0.45);
    background: transparent;
}

.solution-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #f1f5f9;
    line-height: 1.35;
    margin: 0;
}

.solution-card>p {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #94a3b8;
    margin-bottom: 12px;
}

.solution-card>p:last-child {
    margin-bottom: 0;
}

.solution-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    margin: 0;
}

.solution-card li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

.solution-card li::before {
    content: "•";
    color: #34d399;
    font-size: 16px;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 1px;
}

@media(max-width: 768px) {
    .solutions {
        padding: 80px 0 50px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-card {
        padding: 22px 20px;
    }
}

/* PRICING SECTION */
.pricing {
    padding: 100px 0 84px;
    background:
        radial-gradient(circle at 70% 0%, rgba(124, 58, 237, 0.18), transparent 30%),
        radial-gradient(circle at 15% 80%, rgba(79, 70, 229, 0.14), transparent 28%),
        linear-gradient(180deg, #050507 0%, #07050f 100%);
}

.pricing__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.pricing__header p {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.7;
}

.pricing__label {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.18);
    color: #e2e8f0;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.pricing-shell {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 44px 44px;
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(18, 14, 36, 0.98) 0%, rgba(8, 6, 18, 0.99) 100%);
    border: 1px solid rgba(124, 58, 237, 0.22);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pricing-badge {
    display: inline-flex;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid rgba(124, 58, 237, 0.5);
    background: rgba(124, 58, 237, 0.16);
    color: #c4b5fd;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 22px;
    display: block;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.pricing-original-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.pricing-original-price {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #64748b;
    text-decoration: line-through;
    text-decoration-color: #ef4444;
    text-decoration-thickness: 2px;
}

.pricing-discount-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f87171;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pricing-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: #a78bfa;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -2px;
    text-align: center;
}

.pricing-currency {
    font-size: 25px;
    vertical-align: top;
    margin-top: 6px;
    display: inline-block;
}

.pricing-license {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #c4b5fd;
    margin-left: 10px;
    vertical-align: baseline;
}

.pricing-subtitle {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 18px;
    text-align: center;
}

.pricing-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(234, 179, 8, 0.12);
    border: 1px solid rgba(234, 179, 8, 0.25);
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 13px;
    color: #fde68a;
    margin-bottom: 28px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    display: flex;
}

.pricing-live__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #facc15;
    flex-shrink: 0;
    animation: livePulse 1.6s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.pricing-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.pricing-choose {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.44);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.pricing-option {
    display: block;
    cursor: pointer;
}

.pricing-option input[type="radio"] {
    display: none;
}

.pricing-option__inner {
    padding: 18px 22px;
    border-radius: 16px;
    border: 1.5px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.pricing-option input:checked+.pricing-option__inner,
.pricing-option--highlight .pricing-option__inner {
    border-color: rgba(124, 58, 237, 0.55);
    background: rgba(124, 58, 237, 0.08);
}

.pricing-option--highlight .pricing-option__inner {
    border-color: rgba(234, 179, 8, 0.5);
    background: rgba(234, 179, 8, 0.06);
}

.pricing-option--highlight input:checked+.pricing-option__inner {
    border-color: rgba(234, 179, 8, 0.72);
    background: rgba(234, 179, 8, 0.10);
}

.pricing-option__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.pricing-option__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #f1f5f9;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pricing-option__price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #a78bfa;
}

.pricing-option--highlight .pricing-option__price {
    color: #fde68a;
}

.pricing-tag {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(234, 179, 8, 0.18);
    border: 1px solid rgba(234, 179, 8, 0.4);
    color: #fde68a;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.pricing-option__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.pricing-option__features li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
}

.pricing-option__features li::before {
    content: "+";
    color: #a78bfa;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-option--highlight .pricing-option__features li::before {
    color: #fde68a;
}

.pricing-option__note {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 13px;
    color: #fde68a;
    margin-top: 12px;
    opacity: 0.78;
}

.pricing-cta-btn {
    display: block;
    width: 100%;
    padding: 18px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(90deg, #7c3aed, #4f46e5);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    text-decoration: none;
}

.pricing-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(124, 58, 237, 0.45);
}

@media(max-width: 768px) {
    .pricing {
        padding: 80px 0 54px;
    }

    .pricing-shell {
        padding: 28px 22px 32px;
        border-radius: 22px;
    }

    .pricing-price {
        font-size: 48px;
        letter-spacing: -1px;
    }

    .pricing-currency {
        font-size: 30px;
    }

    .pricing-license {
        font-size: 14px;
        margin-left: 8px;
    }

    .pricing-option__top {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* TESTIMONIAL SECTION */
.testimonial {
    padding: 100px 0 84px;
    background:
        radial-gradient(circle at 20% 0%, rgba(56, 189, 248, 0.14), transparent 28%),
        radial-gradient(circle at 85% 70%, rgba(168, 85, 247, 0.12), transparent 28%),
        linear-gradient(180deg, #04070f 0%, #02040a 100%);
}

.testimonial__header {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 38px;
}

.testimonial__label {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.14);
    color: #e2e8f0;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.testimonial__header p {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.7;
}

.testimonial-slider {
    --testimonial-visible: 3;
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-viewport {
    overflow: hidden;
    border-radius: 26px;
    width: 100%;
    padding: 14px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.55s ease;
    will-change: transform;
}

.testimonial-slide {
    min-width: calc(100% / var(--testimonial-visible));
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 14px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.88), rgba(2, 6, 23, 0.95));
    cursor: pointer;
    opacity: 0.7;
    transform: scale(0.9);
    transition: transform 0.35s ease, opacity 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-slide.is-focus {
    opacity: 1;
    transform: scale(1.02);
    border-color: rgba(56, 189, 248, 0.48);
    box-shadow: 0 18px 34px rgba(2, 6, 23, 0.5);
    z-index: 2;
}

.testimonial-slide img {
    width: min(100%, 210px);
    height: auto;
    max-height: 420px;
    object-fit: contain;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
    background: rgba(2, 6, 23, 0.7);
}

.testimonial-nav {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.34);
    background: rgba(15, 23, 42, 0.66);
    color: #e2e8f0;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.testimonial-nav:hover {
    transform: translateY(-1px);
    border-color: rgba(56, 189, 248, 0.7);
}

.testimonial-dots {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(148, 163, 184, 0.45);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.testimonial-dot.is-active {
    width: 24px;
    background: #38bdf8;
}

@media(max-width: 900px) {
    .testimonial-slider {
        --testimonial-visible: 2;
    }

    .testimonial-slide {
        padding: 12px 8px;
        transform: scale(0.94);
    }

    .testimonial-slide img {
        width: min(100%, 200px);
        max-height: 380px;
        margin: 0 auto;
    }
}

@media(max-width: 768px) {
    .testimonial {
        padding: 80px 0 54px;
    }

    .testimonial-slider {
        --testimonial-visible: 1;
        gap: 8px;
    }

    .testimonial-nav {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }

    .testimonial-slide,
    .testimonial-slide.is-focus {
        transform: scale(1);
        opacity: 1;
    }

}

.site-footer {
    position: relative;
    padding: 32px 0 36px;
    font-size: 14px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    background:
        radial-gradient(circle at 50% -10%, rgba(148, 163, 184, 0.18), transparent 34%),
        linear-gradient(180deg, #111827 0%, #0f172a 45%, #0b1220 100%);
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.08), transparent 20%);
    pointer-events: none;
}

.footer-shell {
    position: relative;
    padding: 56px 58px 34px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.88) 0%, rgba(15, 23, 42, 0.96) 100%);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
    gap: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #f8fafc;
}

.footer-logo img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: cover;
}

.footer-tagline {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.86);
    max-width: 360px;
}

.footer-company-card {
    max-width: 430px;
    padding: 22px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.footer-eyebrow,
.footer-title {
    display: inline-block;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.46);
    margin-bottom: 16px;
}

.footer-company-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    line-height: 1.2;
    color: #fff7ed;
    margin-bottom: 14px;
}

.footer-company-card p,
.footer-links a,
.footer-bottom p,
.footer-legal-links a {
    font-family: 'DM Sans', system-ui, sans-serif;
}

.footer-company-card p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.74);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover,
.footer-legal-links a:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.footer-bottom {
    margin-top: 54px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-legal-links a,
.footer-bottom p {
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    font-size: 14px;
}

.feature-item {
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.35);
}

.feature-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.18), rgba(59, 130, 246, 0.12));
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.6;
}

@media(max-width: 1024px) {
    .spill-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 768px) {
    .spill-hr {
        padding: 80px 0 50px;
    }

    .spill-hr h2 {
        font-size: 32px;
    }

    .video-wrapper {
        margin-bottom: 40px;
    }

    .video-wrapper iframe {
        height: 400px;
    }

    .spill-features {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding: 20px 0 24px;
    }

    .footer-shell {
        padding: 32px 24px 26px;
        border-radius: 26px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-company-card h3 {
        font-size: 21px;
    }

    .footer-bottom {
        margin-top: 36px;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* RESPONSIVE */
@media(max-width: 1024px) {
    .painpoint-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(max-width: 768px) {
    .painpoint {
        padding: 80px 0 50px;
    }

    .painpoint h2 {
        font-size: 32px;
    }

    .painpoint-grid {
        grid-template-columns: 1fr;
    }
}

/* FLOAT */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(0deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* GLOW */
.glow {
    position: absolute;
    width: 400px;
    height: 400px;
    /* 🎨 EDIT MANUAL: Ubah warna glow gold di bawah ini */
    background: radial-gradient(circle,
            rgba(241, 201, 133, 0.4),
            rgba(229, 188, 121, 0.2) 50%,
            transparent 70%);
    top: -50px;
    right: -50px;
    filter: blur(100px);
    z-index: -1;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.2);
    }

    100% {
        opacity: 0.5;
        transform: scale(1);
    }
}

/* FADE IN */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

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

    .hero-currency,
    .glow,
    .hero-right img,
    .fade-up,
    .hero-toast {
        animation: none !important;
        transition: none !important;
    }

    .fade-up {
        opacity: 1;
        transform: none;
    }
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        margin-bottom: 60px;
    }

    .hero-currency {
        padding: 9px 14px;
        letter-spacing: 0.08em;
        font-size: calc(var(--currency-size) * 0.78);
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta-btn {
        width: 100%;
        min-width: 0;
        font-size: 18px;
    }

    .hero-left h1 {
        font-size: 40px;
    }

    .hero-benefits {
        flex-direction: column;
    }

    .hero-toast-stack {
        left: 16px;
        right: 16px;
        /* Mobile adjustment for hero event cards. Increase to move them higher. */
        bottom: 96px;
        align-items: stretch;
    }

    .hero-toast {
        min-width: 0;
        max-width: none;
    }
}

@media(max-width: 1024px) {
    .painpoint-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(max-width: 768px) {
    .painpoint {
        padding: 80px 0 50px;
    }

    .painpoint h2 {
        font-size: 32px;
    }

    .painpoint-grid {
        grid-template-columns: 1fr;
    }
}

/* MOBILE NAV */
@media(max-width: 768px) {
    .nav-wrapper {
        padding: 12px 16px;
        gap: 16px;
    }

    .burger-menu {
        display: block;
        margin-left: auto;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 0 0 24px 24px;
        padding: 24px;
        flex-direction: column;
        gap: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 10;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-mobile-actions {
        display: grid;
        gap: 12px;
        margin-top: 4px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .nav-menu a {
        display: block;
        padding: 12px 16px;
        border-radius: 12px;
        transition: background 0.25s ease;
    }

    .nav-mobile-action {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        font-family: 'DM Sans', system-ui, sans-serif;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
    }

    .nav-mobile-action--ghost {
        border: 1px solid rgba(255, 255, 255, 0.16);
        background: rgba(255, 255, 255, 0.08);
        color: rgba(238, 238, 247, 0.92);
    }

    .nav-mobile-action--primary {
        border: 1px solid rgba(241, 201, 133, 0.25);
        background: linear-gradient(90deg, #f1c985, #e5bc79);
        color: #181a22;
        box-shadow: 0 10px 25px rgba(229, 188, 121, 0.2);
    }

    .nav-mobile-action--primary svg {
        width: 14px;
        height: 14px;
        color: currentColor;
    }

    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    .btn {
        display: none;
    }
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: min(96%, 2048px);
    padding: 28px 32px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(246, 238, 235, 0.96) 0%, rgba(243, 245, 255, 0.96) 100%);
    color: #171717;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px);
    z-index: 50;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
}

.cookie-banner__copy {
    max-width: 920px;
}

.cookie-banner__copy h3 {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #121212;
}

.cookie-banner__copy p,
.cookie-preferences__row p {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 18px;
    line-height: 1.65;
    color: rgba(23, 23, 23, 0.66);
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 16px;
    min-width: 540px;
}

.cookie-action,
.cookie-link {
    font-family: 'DM Sans', system-ui, sans-serif;
}

.cookie-link {
    display: inline;
    padding: 0;
    border: none;
    background: transparent;
    color: #5a5a5a;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    font-size: inherit;
}

.cookie-action {
    border: none;
    border-radius: 999px;
    padding: 18px 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cookie-action:hover {
    transform: translateY(-1px);
}

.cookie-action--ghost {
    background: rgba(217, 219, 235, 0.66);
    color: #171717;
}

.cookie-action--primary {
    background: rgba(217, 219, 235, 1);
    color: #111111;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.cookie-preferences {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(23, 23, 23, 0.12);
}

.cookie-preferences__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
}

.cookie-preferences__row strong {
    display: block;
    margin-bottom: 6px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 16px;
    color: #141414;
}

.cookie-status {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: rgba(23, 23, 23, 0.62);
    font-size: 14px;
    white-space: nowrap;
}

.cookie-switch {
    position: relative;
    display: inline-flex;
    width: 58px;
    height: 34px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-switch__slider {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(23, 23, 23, 0.18);
    transition: background 0.2s ease;
}

.cookie-switch__slider::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
    transition: transform 0.2s ease;
}

.cookie-switch input:checked+.cookie-switch__slider {
    background: #171717;
}

.cookie-switch input:checked+.cookie-switch__slider::before {
    transform: translateX(24px);
}

.cookie-preferences__footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 10px;
}

@media(max-width: 1200px) {
    .cookie-banner__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner__actions {
        min-width: 0;
        justify-content: flex-start;
    }
}

@media(max-width: 768px) {
    .cookie-banner {
        bottom: 12px;
        width: calc(100% - 16px);
        padding: 22px 18px;
        border-radius: 18px;
    }

    .cookie-banner__copy h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .cookie-banner__copy p,
    .cookie-preferences__row p {
        font-size: 15px;
    }

    .cookie-banner__actions {
        width: 100%;
        gap: 12px;
    }

    .cookie-action {
        width: 100%;
        padding: 16px 20px;
        font-size: 16px;
    }

    .cookie-preferences__row {
        align-items: flex-start;
    }
}

/* Broker landing overrides */
.navbar {
    padding: 10px 0;
}

.nav-wrapper {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(135deg, rgba(14, 18, 33, 0.92), rgba(9, 10, 20, 0.88));
    border-radius: 18px;
    position: relative;
    justify-content: flex-start;
    gap: 10px;
}

.nav-menu {
    margin-left: auto;
}

.nav-mobile-actions {
    display: none;
}

.nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-left: 26px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.logo-mark {
    /*width: 34px;*/
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
}

.menu-item {
    position: relative;
}

.nav-item-toggle,
.nav-menu>li>a {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 15px;
    color: rgba(238, 238, 247, 0.85);
    text-decoration: none;
    background: transparent;
    border: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px 0;
}

.nav-item-toggle:hover,
.nav-menu>li>a:hover {
    color: #ffffff;
}

.client-area-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(238, 238, 247, 0.92);
    text-decoration: none;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.client-area-link:hover {
    color: #ffffff;
}

.client-area-link svg {
    width: 16px;
    height: 16px;
}

.caret {
    font-size: 12px;
    opacity: 0.85;
    transition: transform 0.2s ease;
}

.menu-item.open .caret {
    transform: rotate(180deg);
}

.submenu-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 540px;
    display: none;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(135deg, rgba(18, 22, 38, 0.96), rgba(10, 12, 24, 0.94));
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    box-shadow: 0 24px 60px rgba(1, 4, 14, 0.48);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.has-submenu.open>.submenu-panel {
    display: grid;
}

.submenu-card {
    display: block;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.submenu-card h4 {
    color: #f7f8fc;
    font-size: 19px;
    margin-bottom: 6px;
    font-family: 'DM Sans', system-ui, sans-serif;
}

.submenu-card p {
    color: rgba(222, 227, 241, 0.82);
    font-size: 14px;
    line-height: 1.45;
    font-family: 'DM Sans', system-ui, sans-serif;
}

.submenu-meta {
    display: block;
    margin-top: 12px;
    color: rgba(164, 218, 199, 0.92);
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    font-family: 'DM Sans', system-ui, sans-serif;
}

.submenu-card:hover {
    border-color: rgba(141, 160, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.hero {
    padding: 155px 0 0;

    /* ✨ NEW: Gold gradient background (inspired by tentang-kami.html) */
    background: radial-gradient(circle at 14% 18%, rgba(241, 201, 133, 0.08), transparent 42%),
        radial-gradient(circle at 86% 82%, rgba(168, 85, 247, 0.07), transparent 45%),
        #050507;

    /* ❌ OLD: Blue/Green gradient background (commented out)
    background: radial-gradient(circle at 75% 20%, rgba(42, 88, 255, 0.26), transparent 36%),
                radial-gradient(circle at 25% 80%, rgba(28, 195, 153, 0.16), transparent 42%),
                #050507;
    */
}

.badge {
    background: rgba(33, 192, 132, 0.14);
    color: #98f5d0;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-left h1 {
    max-width: 680px;
}

.hero-benefits {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 14px;
    color: rgba(193, 201, 216, 0.9);
}

.hero-disclaimer {
    margin-top: 14px;
    max-width: 620px;
    font-family: 'DM Sans', system-ui, sans-serif;
    color: rgba(255, 177, 92, 0.96);
    font-size: 10px;
    line-height: 1.3;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.hero-disclaimer span {
    line-height: 1.3;
}

.hero-disclaimer-icon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #dc2626;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 1px;
}

@media(max-width: 992px) {
    .nav-menu {
        gap: 14px;
    }

    .nav-item-toggle,
    .nav-menu>li>a {
        font-size: 14px;
    }

    .submenu-panel {
        min-width: 450px;
    }
}

@media(max-width: 768px) {
    .logo {
        gap: 10px;
        font-size: 15px;
    }

    .logo-mark {
        width: 30px;
        height: 30px;
    }

    .nav-menu {
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: linear-gradient(135deg, rgba(18, 22, 38, 0.97), rgba(10, 12, 24, 0.95));
        backdrop-filter: blur(24px) saturate(145%);
        -webkit-backdrop-filter: blur(24px) saturate(145%);
        box-shadow: 0 14px 36px rgba(1, 4, 14, 0.42);
    }

    .menu-item {
        width: 100%;
    }

    .nav-item-toggle,
    .nav-menu>li>a {
        width: 100%;
        justify-content: space-between;
        padding: 12px 16px;
        border-radius: 10px;
        color: rgba(238, 238, 247, 0.92);
    }

    .submenu-panel {
        position: static;
        min-width: 100%;
        margin-top: 8px;
        padding: 10px;
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 130px 0 0;
    }

    .hero-disclaimer {
        font-size: 12px;
    }
}

.theme-toggle {
    width: 22px;
    height: 22px;
    border-radius: 0;
    border: none;
    background: transparent;
    color: #f5f5f5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    padding: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.theme-toggle:hover {
    transform: translateY(-1px);
    color: #ffffff;
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    position: absolute;
    transition: opacity 0.2s ease;
}

.theme-toggle .icon-sun {
    opacity: 1;
}

.theme-toggle .icon-moon {
    opacity: 0;
}

body.theme-light .theme-toggle .icon-sun {
    opacity: 0;
}

body.theme-light .theme-toggle .icon-moon {
    opacity: 1;
}

body.theme-light {
    background: #f8f0dd;
    color: #20170d;
}

body.theme-light .navbar {
    color: #20170d;
}

body.theme-light .nav-wrapper {
    border-color: rgba(148, 102, 31, 0.26);
    background: linear-gradient(135deg, rgba(255, 248, 229, 0.92), rgba(246, 220, 170, 0.88));
}

body.theme-light .nav-item-toggle,
body.theme-light .nav-menu>li>a,
body.theme-light .logo,
body.theme-light .client-area-link,
body.theme-light .btn,
body.theme-light .theme-toggle {
    color: #2f1f0f;
}

body.theme-light .btn,
body.theme-light .theme-toggle {
    border-color: rgba(112, 74, 20, 0.25);
    background: rgba(255, 255, 255, 0.55);
}

body.theme-light .btn svg {
    color: #2f1f0f;
}

body.theme-light .theme-toggle {
    border: none;
    background: transparent;
}

body.theme-light .btn:hover,
body.theme-light .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(112, 74, 20, 0.4);
}

body.theme-light .theme-toggle:hover {
    background: transparent;
}

body.theme-light .submenu-panel {
    border-color: rgba(148, 102, 31, 0.3);
    background: linear-gradient(135deg, rgba(255, 248, 229, 0.9), rgba(246, 220, 170, 0.86));
    backdrop-filter: blur(18px) saturate(135%);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
    box-shadow: 0 18px 40px rgba(117, 79, 26, 0.24);
}

body.theme-light .submenu-card {
    background: rgba(255, 255, 255, 0.6);
}

body.theme-light .submenu-card h4 {
    color: #2a1b0e;
}

body.theme-light .submenu-card p {
    color: rgba(57, 40, 20, 0.82);
}

body.theme-light .submenu-meta {
    color: rgba(32, 95, 66, 0.9);
}

body.theme-light .hero {
    background: radial-gradient(circle at 12% 86%, rgba(255, 197, 92, 0.24), transparent 34%),
        radial-gradient(circle at 85% 14%, rgba(255, 230, 166, 0.28), transparent 30%),
        linear-gradient(125deg, #fff4d6 0%, #f7d894 42%, #e4b263 70%, #ca8f3e 100%);
}

body.theme-light .hero-currency {
    border-color: rgba(92, 58, 18, 0.14);
    background: linear-gradient(135deg, rgba(255, 250, 241, 0.36), rgba(255, 241, 210, 0.16));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 10px 30px rgba(110, 72, 18, 0.08);
    color: rgba(82, 48, 12, 0.24);
    text-shadow: 0 0 18px rgba(255, 249, 228, 0.3);
}

body.theme-light .hero-left p,
body.theme-light .hero-benefits {
    color: rgba(50, 34, 14, 0.78);
}

body.theme-light .badge {
    background: rgba(146, 112, 52, 0.18);
    color: #2f1f0f;
    border: 1px solid rgba(120, 86, 30, 0.28);
}

body.theme-light .hero-disclaimer {
    color: rgba(166, 86, 18, 0.92);
}

body.theme-light .glow {
    display: none;
}

body.theme-light .hero-right {
    background: radial-gradient(circle at 50% 50%,
            rgba(202, 138, 4, 0.08) 0%,
            rgba(229, 188, 121, 0.05) 35%,
            transparent 65%);
}

body.theme-light .hero-right img {
    box-shadow: none;
    border-radius: 0;
}

@media(max-width: 768px) {
    .nav-actions {
        margin-left: 0;
        gap: 8px;
    }

    .theme-toggle {
        width: 20px;
        height: 20px;
    }

    .nav-actions .client-area-link,
    .nav-actions .btn {
        display: none;
    }

    body.theme-light .nav-mobile-actions {
        border-top-color: rgba(112, 74, 20, 0.18);
    }

    body.theme-light .nav-mobile-action--ghost {
        border-color: rgba(112, 74, 20, 0.2);
        background: rgba(255, 255, 255, 0.52);
        color: #2f1f0f;
    }

    body.theme-light .nav-mobile-action--primary {
        border-color: rgba(168, 116, 44, 0.3);
        color: #20170d;
    }
}

.demo-account {
    position: relative;
    padding: 96px 0 88px;
    background:
        radial-gradient(circle at 14% 14%, rgba(48, 103, 169, 0.22), transparent 32%),
        radial-gradient(circle at 84% 90%, rgba(25, 82, 146, 0.2), transparent 40%),
        linear-gradient(120deg, #08101b 0%, #152435 46%, #35485d 100%);
}

.demo-account-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(30px, 4vw, 60px);
}

.demo-account-media {
    border-radius: 28px;
    overflow: hidden;

}

.demo-account-media img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    object-position: center;
}

.demo-account-content h2,
.demo-account-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(34px, 4vw, 60px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #f8fbff;
    max-width: 680px;
}

.demo-account-content p {
    margin-top: 22px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 19px;
    line-height: 1.58;
    color: rgba(231, 238, 247, 0.9);
    max-width: 720px;
}

.demo-account-list {
    list-style: none;
    margin-top: 28px;
    display: grid;
    gap: 18px;
}

.demo-account-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 22px;
    line-height: 1.36;
    font-weight: 600;
    color: #f5f8fd;
}

.demo-account-check {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: linear-gradient(145deg, #0ebf6f, #049e5b);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(6, 161, 95, 0.4);
}

.demo-account-cta {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.demo-account-cta .hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    text-decoration: none;
}

body.theme-light .demo-account {
    background:
        radial-gradient(circle at 14% 16%, rgba(255, 247, 211, 0.78), transparent 32%),
        radial-gradient(circle at 86% 82%, rgba(255, 222, 142, 0.38), transparent 40%),
        radial-gradient(circle at 50% 8%, rgba(255, 236, 169, 0.26), transparent 30%),
        linear-gradient(125deg, #fff6dc 0%, #f7de9e 44%, #e4b86a 72%, #cf9547 100%);
}

body.theme-light .demo-account-media {
    border-color: rgba(145, 101, 35, 0.32);
    background: linear-gradient(145deg, rgba(255, 246, 216, 0.88), rgba(251, 225, 165, 0.82));
    box-shadow: 0 22px 52px rgba(133, 83, 22, 0.25);
}

body.theme-light .demo-account-content h2,
body.theme-light .demo-account-content h3 {
    color: #18120a;
}

body.theme-light .demo-account-content p {
    color: rgba(28, 20, 10, 0.86);
}

body.theme-light .demo-account-list li {
    color: #1d160d;
}

@media(max-width: 1100px) {
    .demo-account-shell {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .demo-account-media {
        max-width: 760px;
    }
}

@media(max-width: 768px) {
    .demo-account {
        padding: 76px 0;
    }

    .demo-account-content h2,
    .demo-account-content h3 {
        font-size: 34px;
    }

    .demo-account-content p {
        font-size: 17px;
    }

    .demo-account-list li {
        align-items: flex-start;
        font-size: 20px;
    }

    .demo-account-check {
        width: 38px;
        height: 38px;
        margin-top: 2px;
    }

    .demo-account-cta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .demo-account-cta .hero-cta-btn {
        font-size: 17px;
        padding: 14px 16px;
    }
}

.broker-footer {
    position: relative;
    padding: 72px 0 34px;
    background:
        radial-gradient(circle at 18% 100%, rgba(66, 92, 133, 0.18), transparent 34%),
        radial-gradient(circle at 74% 0%, rgba(255, 214, 130, 0.08), transparent 32%),
        linear-gradient(135deg, #090b10 0%, #0b0f16 46%, #0a0c12 100%);
    color: #f7e8e2;
}

.broker-footer-shell {
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(145deg, rgba(12, 15, 22, 0.96), rgba(9, 11, 17, 0.94));
    box-shadow: 0 28px 70px rgba(2, 4, 10, 0.58);
    padding: 54px 58px 30px;
}

.broker-footer-top {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
    gap: 34px;
}

.broker-footer-mark {
    display: block;
    width: clamp(120px, 14vw, 190px);
    height: auto;
    object-fit: contain;
    margin-bottom: 14px;
}

.broker-footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff2ea;
    margin-bottom: 14px;
}

.broker-footer-tagline {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 232, 224, 0.82);
    max-width: 420px;
}

.broker-footer-badges {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.broker-contact {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 520px;
}

.broker-contact h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 25px;
    line-height: 1.15;
    color: #fff1e9;
}

.broker-contact p {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 232, 224, 0.86);
}

.broker-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.35;
    color: rgba(255, 234, 227, 0.9);
    text-decoration: none;
    width: fit-content;
}

.broker-contact-item svg {
    flex-shrink: 0;
}

.broker-contact-item:hover {
    color: #ffffff;
}

.broker-contact-note {
    font-size: 10px;
    color: #ff9fc2;
}

.broker-footer-addr {
    display: block;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 234, 227, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

.broker-footer-addr:hover {
    color: #ffffff;
}

body.theme-light .broker-footer-addr {
    color: rgba(64, 39, 19, 0.88);
}

body.theme-light .broker-footer-addr:hover {
    color: #2f1a0c;
}

.broker-footer-links h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff1e9;
}

.broker-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.broker-footer-links a {
    text-decoration: none;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.35;
    color: rgba(255, 234, 227, 0.9);
    transition: color 0.2s ease, transform 0.2s ease;
}

.broker-footer-link-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.broker-footer-link-icon svg {
    flex-shrink: 0;
}

.broker-footer-links a:hover,
.broker-legal-links a:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.broker-complaint-title {
    margin-top: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff1e9;
}

.broker-risk {
    margin-top: 44px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.broker-risk h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    color: #fff3ec;
    margin-bottom: 10px;
}

.broker-risk p {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 12px;
    line-height: 1.8;
    color: rgba(255, 229, 220, 0.9);
    text-align: justify;
}

.broker-regulators {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.broker-regulators-label {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 12px;
    color: rgba(255, 229, 220, 0.7);
    white-space: nowrap;
}

.broker-regulators-logos {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.regulator-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    filter: brightness(0) invert(1);
    transition: opacity 0.2s ease;
}

.regulator-logo:hover {
    opacity: 1;
}

body.theme-light .broker-regulators-label {
    color: rgba(64, 39, 19, 0.7);
}

body.theme-light .regulator-logo {
    filter: brightness(0);
    opacity: 0.7;
}

body.theme-light .regulator-logo:hover {
    opacity: 1;
}

.broker-licenses {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.broker-license-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 229, 220, 0.8);
}

.broker-license-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(255, 229, 220, 0.55);
}

.broker-license-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.broker-license-badge {
    display: block;
    width: auto;
    height: 44px;
    object-fit: contain;
}

.broker-license-item strong {
    font-weight: 600;
    color: rgba(255, 234, 224, 0.95);
}

body.theme-light .broker-license-item {
    color: rgba(64, 39, 19, 0.78);
}

body.theme-light .broker-license-item svg {
    color: rgba(64, 39, 19, 0.45);
}

body.theme-light .broker-license-item strong {
    color: rgba(44, 27, 15, 0.95);
}

body.theme-light .broker-license-badge {
    filter: none;
}

.broker-footer-bottom {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.broker-footer-bottom p,
.broker-legal-links a {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 13px;
    color: rgba(255, 227, 218, 0.86);
    text-decoration: none;
}

.broker-legal-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

body.theme-light .broker-footer {
    background:
        radial-gradient(circle at 50% 35%, rgba(246, 172, 80, 0.25), transparent 58%),
        linear-gradient(135deg, #ead0a9 0%, #d8a96f 44%, #bb8148 100%);
    color: #2c1b0f;
}

body.theme-light .broker-footer-shell {
    border-color: rgba(114, 72, 31, 0.28);
    background: linear-gradient(140deg, rgba(255, 237, 212, 0.78), rgba(242, 206, 160, 0.82));
    box-shadow: 0 24px 58px rgba(116, 72, 24, 0.26);
}

body.theme-light .broker-footer-logo,
body.theme-light .broker-footer-links h4,
body.theme-light .broker-risk h5 {
    color: #38200f;
}

body.theme-light .broker-footer-mark {
    filter: none;
}

body.theme-light .broker-complaint-title {
    color: #38200f;
}

body.theme-light .broker-footer-tagline,
body.theme-light .broker-footer-links a,
body.theme-light .broker-risk p,
body.theme-light .broker-footer-bottom p,
body.theme-light .broker-legal-links a {
    color: rgba(64, 39, 19, 0.88);
}

body.theme-light .broker-contact h5 {
    color: #38200f;
}

body.theme-light .broker-contact p,
body.theme-light .broker-contact-item {
    color: rgba(64, 39, 19, 0.88);
}

body.theme-light .broker-contact-item:hover {
    color: #2f1a0c;
}

body.theme-light .broker-risk,
body.theme-light .broker-footer-bottom {
    border-top-color: rgba(114, 72, 31, 0.22);
}

@media(max-width: 992px) {
    .broker-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .broker-footer-links a {
        font-size: 14px;
    }

    .broker-contact h5 {
        font-size: 22px;
    }

    .broker-contact p,
    .broker-contact-item {
        font-size: 14px;
    }
}

@media(max-width: 768px) {
    .broker-footer {
        padding: 56px 0 26px;
    }

    .broker-footer-shell {
        padding: 36px 24px 24px;
        border-radius: 24px;
    }

    .broker-footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .broker-footer-logo {
        font-size: 28px;
    }

    .broker-footer-mark {
        width: clamp(110px, 38vw, 160px);
    }

    .broker-footer-links h4 {
        font-size: 21px;
    }

    .broker-footer-links a {
        font-size: 14px;
    }

    .broker-contact {
        margin-top: 16px;
        gap: 10px;
    }

    .broker-contact h5 {
        font-size: 20px;
    }

    .broker-contact p,
    .broker-contact-item {
        font-size: 14px;
    }

    .broker-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* COOKIE BAR */
.mmm-cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 14px 28px;
    background: rgba(10, 11, 18, 0.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.mmm-cookie-bar[hidden] {
    display: none;
}

.mmm-cookie-bar p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    line-height: 1.5;
    color: rgba(230, 230, 240, 0.88);
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
}

.mmm-cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.mmm-cookie-btn {
    padding: 8px 24px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(90deg, #4f8cff, #a855f7);
    color: #fff;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(168, 85, 247, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mmm-cookie-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(168, 85, 247, 0.5);
}

.mmm-cookie-close {
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    color: rgba(200, 200, 220, 0.7);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 0.2s ease, background 0.2s ease;
}

.mmm-cookie-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

body.theme-light .mmm-cookie-bar {
    background: rgba(255, 249, 235, 0.97);
    border-top-color: rgba(140, 90, 30, 0.2);
}

body.theme-light .mmm-cookie-bar p {
    color: rgba(44, 27, 15, 0.88);
}

body.theme-light .mmm-cookie-close {
    color: rgba(80, 50, 20, 0.7);
}

body.theme-light .mmm-cookie-close:hover {
    color: #2c1b0f;
    background: rgba(0, 0, 0, 0.08);
}

/* COMING SOON PAGE */
.comingsoon-page {
    background:
        radial-gradient(circle at 18% 20%, rgba(52, 211, 153, 0.12), transparent 35%),
        radial-gradient(circle at 82% 66%, rgba(94, 234, 212, 0.1), transparent 38%),
        #050507;
}

.cs {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    overflow: clip;
}

.cs-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 30%, rgba(52, 211, 153, 0.12), transparent 45%),
        radial-gradient(circle at 10% 85%, rgba(34, 211, 238, 0.06), transparent 40%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.72) 62%, transparent 100%);
}

.cs-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 18px;
}

.cs-brand {
    display: grid;
    place-items: center;
}

.cs-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(52, 211, 153, 0.4));
}

.cs-card {
    width: min(860px, 100%);
    padding: 46px 44px 40px;
    border-radius: 28px;
    border: 1px solid rgba(52, 211, 153, 0.24);
    background: rgba(8, 10, 18, 0.68);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cs-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(52, 211, 153, 0.26);
    background: rgba(16, 185, 129, 0.12);
    color: rgba(229, 237, 249, 0.82);
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 auto 16px;
    width: fit-content;
}

.cs-eyebrow::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #34d399;
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.7);
}

.cs-title {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.05;
    letter-spacing: -1px;
    margin: 0 0 18px;
    color: rgba(245, 248, 255, 0.96);
}

.cs-type {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 14px;
    max-width: 100%;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(229, 237, 249, 0.78);
    flex-wrap: wrap;
}

.cs-prompt {
    color: rgba(52, 211, 153, 0.92);
    text-shadow: 0 0 20px rgba(52, 211, 153, 0.35);
}

.cs-typing {
    min-height: 1.8em;
}

.cs-caret {
    display: inline-block;
    width: 10px;
    height: 1.12em;
    transform: translateY(2px);
    background: rgba(52, 211, 153, 0.95);
    box-shadow: 0 0 22px rgba(52, 211, 153, 0.65);
    animation: csCaretBlink 1.05s step-end infinite;
}

@keyframes csCaretBlink {

    0%,
    50% {
        opacity: 0;
    }

    51%,
    100% {
        opacity: 1;
    }
}

.cs-sub {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(148, 163, 184, 0.95);
    margin: 0 auto 22px;
    max-width: 60ch;
}

.cs-kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(229, 237, 249, 0.62);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.cs-continue {
    text-decoration: none;
    cursor: pointer;
}

.cs-continue:hover .cs-key {
    border-color: rgba(52, 211, 153, 0.3);
}

.cs-continue:focus-visible {
    outline: 2px solid rgba(52, 211, 153, 0.28);
    outline-offset: 6px;
    border-radius: 16px;
}

.cs-key {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 34px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid rgba(52, 211, 153, 0.22);
    background: rgba(15, 23, 42, 0.7);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    color: rgba(245, 248, 255, 0.9);
}

.cs-kbdtext {
    opacity: 0.75;
}

.cs-footer {
    margin-top: 10px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 13px;
    color: rgba(148, 163, 184, 0.7);
}

@media(max-width: 768px) {
    .cs {
        padding: 124px 0 70px;
    }

    .cs-card {
        padding: 34px 20px 28px;
        border-radius: 22px;
    }
}

/* ACCOUNT COMPARE PAGE */
.account-compare-page {
    background:
        radial-gradient(circle at top right, rgba(16, 185, 129, 0.14), transparent 24%),
        radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.16), transparent 22%),
        #050507;
}

.account-compare-hero {
    position: relative;
    padding: 150px 0 70px;
    overflow: clip;
}

.account-compare-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 15%, rgba(34, 211, 238, 0.12), transparent 18%),
        radial-gradient(circle at 78% 22%, rgba(16, 185, 129, 0.18), transparent 24%);
    pointer-events: none;
}

.account-compare-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: center;
    gap: 32px;
}

.account-compare-hero .title {
    max-width: 760px;
    margin-top: 18px;
    font-size: clamp(42px, 6vw, 68px);
}

.account-compare-hero__lead {
    max-width: 640px;
    margin-top: 20px;
    color: #a6b3c8;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 18px;
    line-height: 1.7;
}

.account-compare-hero__card {
    display: grid;
    gap: 16px;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(7, 11, 23, 0.88), rgba(10, 18, 34, 0.72));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
}

.account-compare-stat {
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.account-compare-stat strong {
    display: block;
    margin-bottom: 6px;
    color: #f8fafc;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
}

.account-compare-stat span {
    color: #9fb0c6;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.account-compare {
    position: relative;
    padding: 52px 0 110px;
    overflow: clip;
}

.account-compare__header {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.account-compare__label {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: #dcfce7;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.account-compare__header h2 {
    margin-top: 16px;
    color: #f3fff9;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}

.account-compare__header p {
    margin-top: 14px;
    color: rgba(197, 214, 206, 0.72);
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

.account-compare__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.account-compare__particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(19, 211, 157, 0.68);
    box-shadow: 0 0 18px rgba(19, 211, 157, 0.28);
    opacity: 0.22;
    animation: accountCompareFloat 16s ease-in-out infinite;
}

.account-compare__particle:nth-child(1) {
    top: 12%;
    left: 18%;
    animation-duration: 13s;
}

.account-compare__particle:nth-child(2) {
    top: 20%;
    right: 16%;
    width: 6px;
    height: 6px;
    animation-duration: 11s;
    animation-delay: -3s;
}

.account-compare__particle:nth-child(3) {
    top: 34%;
    left: 63%;
    width: 5px;
    height: 5px;
    animation-duration: 16s;
    animation-delay: -6s;
}

.account-compare__particle:nth-child(4) {
    top: 56%;
    left: 12%;
    width: 6px;
    height: 6px;
    animation-duration: 12s;
    animation-delay: -2s;
}

.account-compare__particle:nth-child(5) {
    top: 48%;
    right: 28%;
    width: 8px;
    height: 8px;
    animation-duration: 15s;
    animation-delay: -8s;
}

.account-compare__particle:nth-child(6) {
    bottom: 26%;
    left: 26%;
    width: 5px;
    height: 5px;
    animation-duration: 12s;
    animation-delay: -5s;
}

.account-compare__particle:nth-child(7) {
    bottom: 12%;
    right: 14%;
    width: 6px;
    height: 6px;
    animation-duration: 17s;
    animation-delay: -7s;
}

.account-compare__particle:nth-child(8) {
    top: 24%;
    left: 49%;
    width: 5px;
    height: 5px;
    animation-duration: 10s;
    animation-delay: -4s;
}

.account-compare__table-shell {
    position: relative;
    padding: 0;
    border-radius: 28px;
    background: rgba(6, 11, 9, 0.42);
    border: 1px solid rgba(109, 140, 125, 0.08);
    box-shadow: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.account-compare__table-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top center, rgba(22, 163, 74, 0.04), transparent 42%);
    pointer-events: none;
}

.account-compare__table-wrap {
    overflow-x: auto;
    position: relative;
    border-radius: 28px;
}

.account-compare__table {
    width: 100%;
    min-width: 760px;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
}

.account-compare__table th,
.account-compare__table td {
    padding: 18px 18px;
    border-right: none;
    border-bottom: 1px solid rgba(143, 163, 151, 0.1);
    text-align: left;
    vertical-align: top;
}

.account-compare__table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    color: rgba(231, 237, 233, 0.74);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    background: rgba(5, 11, 9, 0.72);
    backdrop-filter: blur(10px);
}

.account-compare__table thead th:first-child {
    background: rgba(5, 11, 9, 0.88);
    color: #f3fff9;
    min-width: 220px;
    z-index: 3;
}

.account-compare__table thead th:nth-child(2) {
    color: #f6c657;
}

.account-compare__table thead th:nth-child(3) {
    color: rgba(231, 237, 233, 0.74);
}

.account-compare__table thead th:nth-child(4) {
    color: #ff8e8e;
}

.account-compare__table thead th:first-child,
.account-compare__table tbody th {
    position: sticky;
    left: 0;
}

.account-compare__table tbody th {
    z-index: 1;
    min-width: 220px;
    background: rgba(5, 11, 9, 0.82);
    color: rgba(231, 237, 233, 0.66);
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 600;
}

.account-compare__table tbody td {
    background: rgba(0, 0, 0, 0);
    color: rgba(231, 237, 233, 0.62);
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.account-compare__table tbody tr:hover td,
.account-compare__table tbody tr:hover th {
    background: rgba(255, 255, 255, 0.01);
}

.account-compare__feature {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.account-compare__icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #10d6a1;
    background: rgba(16, 214, 161, 0.07);
    flex-shrink: 0;
}

.account-compare__icon svg {
    width: 14px;
    height: 14px;
}

.account-compare__table tbody td:nth-child(2) {
    color: rgba(231, 237, 233, 0.74);
}

.account-compare__table thead th:nth-child(3),
.account-compare__table tbody td:nth-child(3) {
    position: relative;
    color: #14d8a3;
    background: rgba(14, 28, 21, 0.18);
}

.account-compare__table thead th:nth-child(3)::before,
.account-compare__table tbody td:nth-child(3)::before {
    content: "";
    position: absolute;
    inset: 0;
    border-left: 1px solid rgba(20, 216, 163, 0.14);
    border-right: 1px solid rgba(20, 216, 163, 0.14);
    pointer-events: none;
}

.account-compare__table thead th:nth-child(3) {
    box-shadow: inset 0 1px 0 rgba(20, 216, 163, 0.14);
}

.account-compare__table tbody tr:last-child td:nth-child(3) {
    box-shadow: inset 0 -1px 0 rgba(20, 216, 163, 0.14);
}

.account-compare__cta-row th,
.account-compare__cta-row td {
    vertical-align: middle;
    background: transparent;
}

.account-compare__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    padding: 11px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: #161821;
    text-decoration: none;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(7, 10, 19, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.account-compare__cta-row td:nth-child(2) .account-compare__cta-btn,
.account-compare__cta-row td:nth-child(3) .account-compare__cta-btn {
    background: linear-gradient(90deg, #f1c985, #e5bc79);
    color: #181a22;
    box-shadow: 0 10px 25px rgba(229, 188, 121, 0.25);
}

.account-compare__cta-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: 0 14px 28px rgba(7, 10, 19, 0.22);
}

.account-compare__cta-row td:nth-child(2) .account-compare__cta-btn:hover,
.account-compare__cta-row td:nth-child(3) .account-compare__cta-btn:hover {
    box-shadow: 0 14px 30px rgba(229, 188, 121, 0.22);
}

.account-compare__notes {
    margin-top: 20px;
    display: grid;
    gap: 8px;
    color: rgba(197, 214, 206, 0.62);
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.7;
}

body.theme-light.account-compare-page {
    background:
        radial-gradient(circle at top right, rgba(16, 185, 129, 0.12), transparent 24%),
        radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.12), transparent 22%),
        #f4f7fb;
}

body.theme-light .account-compare-hero__lead,
body.theme-light .account-compare-stat span,
body.theme-light .account-compare__header p,
body.theme-light .account-compare__notes {
    color: #526277;
}

body.theme-light .account-compare-hero__card,
body.theme-light .account-compare__table-shell {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 245, 249, 0.94));
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

body.theme-light .account-compare-stat {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(148, 163, 184, 0.16);
}

body.theme-light .account-compare-stat strong,
body.theme-light .account-compare__header h2 {
    color: #0f172a;
}

body.theme-light .account-compare__particle {
    opacity: 0.5;
}

@keyframes accountCompareFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(0.9);
        opacity: 0.18;
    }

    35% {
        transform: translate3d(18px, -22px, 0) scale(1);
        opacity: 0.42;
    }

    65% {
        transform: translate3d(-10px, 18px, 0) scale(1.08);
        opacity: 0.3;
    }
}

@media(max-width: 768px) {
    .mmm-cookie-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 20px;
    }

    .mmm-cookie-bar p {
        min-width: unset;
    }

    .account-compare-hero {
        padding-top: 120px;
    }

    .account-compare {
        padding-bottom: 72px;
    }

    .account-compare__table-shell {
        padding: 0;
        border-radius: 22px;
    }

    .account-compare__table th,
    .account-compare__table td {
        padding: 16px 14px;
    }

    .account-compare__table tbody th,
    .account-compare__table thead th:first-child {
        min-width: 190px;
    }

    .account-compare__table tbody th,
    .account-compare__table tbody td {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .account-compare-hero__inner {
        grid-template-columns: 1fr;
    }

    .account-compare-hero__card {
        max-width: 720px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   REGULATOR MARQUEE
   Marquee berjalan di dalam .container (lebar konten),
   bukan dari tepi kiri layar — persis seperti Supabase Trusted by
   ═══════════════════════════════════════════════════════════════ */

.regulator-marquee-section {
    padding: 0 0 80px;
    /* Seamless with hero background - no borders, no separate background */
    background: transparent;
    position: relative;
    z-index: 3;
}

.regulator-marquee-label {
    text-align: center;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.32);
    margin-top: 36px;
    user-select: none;
}

/* ── Track-wrap: overflow clip + fade mask HANYA di dalam .container ── */
.regulator-marquee-track-wrap {
    position: relative;
    overflow: hidden;
    /* klip track di batas container */
    border-radius: 4px;
    /* mencegah artefak pada mask di Safari */

    /* Gradient fade mask kiri-kanan — fade mulai dari tepi container */
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 8%,
            black 92%,
            transparent 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 8%,
            black 92%,
            transparent 100%);
}

/* ── Inner track: satu flex-row, animasi geser kiri ── */
.regulator-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee-rtl 30s linear infinite;
    will-change: transform;
}

/* Pause saat hover */
.regulator-marquee-track-wrap:hover .regulator-marquee-track {
    animation-play-state: paused;
}

/* ── Tiap logo item ── */
.regulator-marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    height: 72px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

.regulator-marquee-item:last-child {
    border-right: none;
}

/* ── Logo image: grayscale default, warna asli saat hover ── */
.regulator-marquee-item img {
    height: 38px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%) brightness(2.8);
    opacity: 0.75;
    transition: opacity 0.35s ease, filter 0.35s ease;
    user-select: none;
    -webkit-user-drag: none;
    display: block;
}

/* Hover: tampilkan warna asli logo */
.regulator-marquee-item:hover img {
    filter: grayscale(0%) brightness(1.05) drop-shadow(0 0 8px rgba(255, 255, 255, 0.12));
    opacity: 1;
}

/* ── Light Mode: Logo hitam untuk kontras yang jelas ── */
body.theme-light .regulator-marquee-item {
    border-right-color: rgba(0, 0, 0, 0.08);
}

body.theme-light .regulator-marquee-item img {
    filter: grayscale(100%) brightness(0.2);
    opacity: 0.85;
}

body.theme-light .regulator-marquee-item:hover img {
    filter: grayscale(0%) brightness(0.9) drop-shadow(0 0 8px rgba(0, 0, 0, 0.15));
    opacity: 1;
}

body.theme-light .regulator-marquee-label {
    color: rgba(0, 0, 0, 0.45);
}

/* ── Keyframe: -50% = tepat 1 set logo (track = 2× set) ── */
@keyframes marquee-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .regulator-marquee-track {
        animation: none;
    }
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .regulator-marquee-section {
        padding: 0 0 60px;
    }

    .regulator-marquee-item {
        padding: 0 24px;
        height: 58px;
    }

    .regulator-marquee-item img {
        height: 26px;
    }

    .regulator-marquee-label {
        font-size: 11px;
        margin-top: 28px;
    }
}

/* ═══ END REGULATOR MARQUEE ═══════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════
   WHY M3B SECTION - Trust Indicator & Diferensiasi
   ═══════════════════════════════════════════════════════════════ */

.why-m3b {
    position: relative;
    padding: 96px 0;
    background: radial-gradient(circle at 50% 20%, rgba(241, 201, 133, 0.06), transparent 60%), #050507;
    overflow: hidden;
}

body.theme-light .why-m3b {
    background: radial-gradient(circle at 50% 20%, rgba(241, 201, 133, 0.08), transparent 50%), #f4f7fb;
}

.why-m3b-header {
    text-align: center;
    margin-bottom: 64px;
}

.why-m3b-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(20, 216, 163, 0.15);
    color: #14d8a3;
    padding: 8px 20px;
    border-radius: 999px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

body.theme-light .why-m3b-badge {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.why-m3b-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

body.theme-light .why-m3b-title {
    color: #0f172a;
}

.why-m3b-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #c5d6ce;
    max-width: 680px;
    margin: 0 auto;
}

body.theme-light .why-m3b-subtitle {
    color: #526277;
}

.why-m3b-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.why-m3b-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

body.theme-light .why-m3b-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 245, 249, 0.94));
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.why-m3b-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f1c985, #e5bc79);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.why-m3b-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

body.theme-light .why-m3b-card:hover {
    border-color: rgba(148, 163, 184, 0.28);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.why-m3b-card:hover::before {
    opacity: 1;
}

.why-m3b-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(241, 201, 133, 0.15), rgba(229, 188, 121, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

body.theme-light .why-m3b-card-icon {
    background: linear-gradient(135deg, rgba(241, 201, 133, 0.18), rgba(229, 188, 121, 0.12));
}

.why-m3b-card-icon svg {
    width: 28px;
    height: 28px;
    color: #f1c985;
}

.why-m3b-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

body.theme-light .why-m3b-card-title {
    color: #0f172a;
}

.why-m3b-card-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #c5d6ce;
}

body.theme-light .why-m3b-card-desc {
    color: #64748b;
}

.why-m3b-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px 40px;
}

body.theme-light .why-m3b-stats {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.why-m3b-stat {
    text-align: center;
}

.why-m3b-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(90deg, #f1c985, #e5bc79);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.why-m3b-stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #7c8a9c;
    font-weight: 500;
}

body.theme-light .why-m3b-stat-label {
    color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
    .why-m3b {
        padding: 64px 0;
    }

    .why-m3b-header {
        margin-bottom: 48px;
    }

    .why-m3b-title {
        font-size: 32px;
    }

    .why-m3b-subtitle {
        font-size: 16px;
    }

    .why-m3b-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-m3b-card {
        padding: 24px;
    }

    .why-m3b-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 24px;
    }

    .why-m3b-stat-number {
        font-size: 36px;
    }
}

/* ══════════════════════════════════════════════════════════════
   DEMO ACCOUNT SECTION - Risk-Free Trading Education
   ═══════════════════════════════════════════════════════════════ */

.demo-account {
    position: relative;
    padding: 96px 0;
    background: radial-gradient(circle at 80% 50%, rgba(79, 140, 255, 0.08), transparent 60%), #050507;
    overflow: hidden;
}

body.theme-light .demo-account {
    background: radial-gradient(circle at 80% 50%, rgba(79, 140, 255, 0.1), transparent 50%), #f4f7fb;
}

.demo-account-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.demo-account-left {
    position: relative;
}

.demo-account-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 140, 255, 0.15);
    color: #4f8cff;
    padding: 8px 20px;
    border-radius: 999px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

body.theme-light .demo-account-badge {
    background: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
}

.demo-account-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

body.theme-light .demo-account-title {
    color: #0f172a;
}

.demo-account-highlight {
    background: linear-gradient(90deg, #4f8cff, #22d3ee);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.demo-account-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #c5d6ce;
    margin-bottom: 32px;
}

body.theme-light .demo-account-desc {
    color: #526277;
}

.demo-account-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.demo-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.demo-feature-icon {
    width: 24px;
    height: 24px;
    background: rgba(20, 216, 163, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

body.theme-light .demo-feature-icon {
    background: rgba(16, 185, 129, 0.12);
}

.demo-feature-icon svg {
    width: 14px;
    height: 14px;
    color: #14d8a3;
}

body.theme-light .demo-feature-icon svg {
    color: #059669;
}

.demo-feature-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
}

body.theme-light .demo-feature-text {
    color: #0f172a;
}

.demo-account-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.demo-cta-primary {
    background: linear-gradient(90deg, #f1c985, #e5bc79);
    color: #181a22;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(229, 188, 121, 0.25);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.theme-light .demo-cta-primary {
    box-shadow: 0 10px 25px rgba(229, 188, 121, 0.2);
}

.demo-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(229, 188, 121, 0.35);
}

.demo-cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

body.theme-light .demo-cta-secondary {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.24);
    color: #0f172a;
}

.demo-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.24);
    transform: translateY(-1px);
}

body.theme-light .demo-cta-secondary:hover {
    background: #ffffff;
    border-color: rgba(148, 163, 184, 0.32);
}

.demo-account-note {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #7c8a9c;
    margin-top: 16px;
}

body.theme-light .demo-account-note {
    color: #64748b;
}

/* Right Side - Visual */
.demo-account-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.demo-visual-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

body.theme-light .demo-visual-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 245, 249, 0.94));
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.demo-balance-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #7c8a9c;
    margin-bottom: 8px;
}

body.theme-light .demo-balance-label {
    color: #64748b;
}

.demo-balance-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg, #14d8a3, #22d3ee);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 24px;
}

.demo-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.demo-stat-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
}

body.theme-light .demo-stat-box {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.demo-stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #7c8a9c;
    margin-bottom: 6px;
}

body.theme-light .demo-stat-label {
    color: #64748b;
}

.demo-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

body.theme-light .demo-stat-value {
    color: #0f172a;
}

.demo-badge-risk-free {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, #14d8a3, #22d3ee);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 999px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(20, 216, 163, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(20, 216, 163, 0.35);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(20, 216, 163, 0.45);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .demo-account-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .demo-account-right {
        order: -1;
    }

    .demo-visual-wrapper {
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .demo-account {
        padding: 64px 0;
    }

    .demo-account-title {
        font-size: 32px;
    }

    .demo-account-desc {
        font-size: 16px;
    }

    .demo-account-cta {
        flex-direction: column;
        gap: 12px;
    }

    .demo-cta-primary,
    .demo-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .demo-visual-card {
        padding: 28px;
    }

    .demo-balance-amount {
        font-size: 38px;
    }

    .demo-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .demo-badge-risk-free {
        position: static;
        display: inline-block;
        margin-bottom: 20px;
    }
}

/* ══════════════════════════════════════════════════════════════
   PRODUK TRADING SECTION - Tab Interface
   ═══════════════════════════════════════════════════════════════ */

.produk-trading {
    position: relative;
    padding: 96px 0;
    background: radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.06), transparent 60%), #050507;
    overflow: hidden;
}

body.theme-light .produk-trading {
    background: radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.08), transparent 50%), #f4f7fb;
}

.produk-trading-header {
    text-align: center;
    margin-bottom: 64px;
}

.produk-trading-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(20, 216, 163, 0.15);
    color: #14d8a3;
    padding: 8px 20px;
    border-radius: 999px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

body.theme-light .produk-trading-badge {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.produk-trading-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

body.theme-light .produk-trading-title {
    color: #0f172a;
}

.produk-trading-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #c5d6ce;
    max-width: 680px;
    margin: 0 auto;
}

body.theme-light .produk-trading-subtitle {
    color: #526277;
}

/* Tab Navigation */
.produk-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.produk-tab-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #7c8a9c;
    padding: 14px 32px;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

body.theme-light .produk-tab-btn {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: #64748b;
}

.produk-tab-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f1c985, #e5bc79);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.produk-tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

body.theme-light .produk-tab-btn:hover {
    background: #ffffff;
    border-color: rgba(148, 163, 184, 0.24);
    color: #0f172a;
}

.produk-tab-btn.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

body.theme-light .produk-tab-btn.active {
    background: #ffffff;
    border-color: rgba(148, 163, 184, 0.24);
    color: #0f172a;
}

.produk-tab-btn.active::before {
    opacity: 1;
}

/* Tab Content */
.produk-tabs-content {
    position: relative;
    min-height: 480px;
}

.produk-tab-panel {
    display: none;
    opacity: 0;
    animation: fadeInTab 0.4s ease forwards;
}

.produk-tab-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tab Content - Left Side */
.produk-tab-left {
    position: relative;
}

.produk-tab-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(241, 201, 133, 0.15), rgba(229, 188, 121, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

body.theme-light .produk-tab-icon {
    background: linear-gradient(135deg, rgba(241, 201, 133, 0.18), rgba(229, 188, 121, 0.12));
}

.produk-tab-icon svg {
    width: 40px;
    height: 40px;
    color: #f1c985;
}

.produk-tab-content-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

body.theme-light .produk-tab-content-title {
    color: #0f172a;
}

.produk-tab-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #c5d6ce;
    margin-bottom: 32px;
}

body.theme-light .produk-tab-desc {
    color: #526277;
}

.produk-instruments-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.produk-instrument-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 18px;
    transition: all 0.25s ease;
}

body.theme-light .produk-instrument-item {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.produk-instrument-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

body.theme-light .produk-instrument-item:hover {
    background: #ffffff;
    border-color: rgba(148, 163, 184, 0.22);
}

.produk-instrument-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

body.theme-light .produk-instrument-name {
    color: #0f172a;
}

.produk-instrument-badge {
    background: rgba(20, 216, 163, 0.15);
    color: #14d8a3;
    padding: 4px 12px;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
}

body.theme-light .produk-instrument-badge {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.produk-tab-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.produk-cta-primary {
    background: linear-gradient(90deg, #f1c985, #e5bc79);
    color: #181a22;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(229, 188, 121, 0.25);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
}

body.theme-light .produk-cta-primary {
    box-shadow: 0 10px 25px rgba(229, 188, 121, 0.2);
}

.produk-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(229, 188, 121, 0.35);
}

.produk-cta-secondary {
    color: #f1c985;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.produk-cta-secondary:hover {
    gap: 10px;
}

.produk-cta-secondary svg {
    width: 16px;
    height: 16px;
}

/* Tab Content - Right Side */
.produk-tab-right {
    position: relative;
}

.produk-visual-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

body.theme-light .produk-visual-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 245, 249, 0.94));
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.produk-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.produk-spec-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
}

body.theme-light .produk-spec-box {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.produk-spec-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #7c8a9c;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.theme-light .produk-spec-label {
    color: #64748b;
}

.produk-spec-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

body.theme-light .produk-spec-value {
    color: #0f172a;
}

.produk-spec-highlight {
    background: linear-gradient(90deg, #14d8a3, #22d3ee);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Responsive */
@media (max-width: 1024px) {
    .produk-tab-panel.active {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .produk-tab-right {
        order: -1;
    }
}

@media (max-width: 768px) {
    .produk-trading {
        padding: 64px 0;
    }

    .produk-trading-header {
        margin-bottom: 48px;
    }

    .produk-trading-title {
        font-size: 32px;
    }

    .produk-trading-subtitle {
        font-size: 16px;
    }

    .produk-tabs-nav {
        gap: 6px;
    }

    .produk-tab-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .produk-tabs-content {
        min-height: auto;
    }

    .produk-tab-content-title {
        font-size: 28px;
    }

    .produk-tab-desc {
        font-size: 15px;
    }

    .produk-tab-cta {
        flex-direction: column;
        gap: 12px;
    }

    .produk-cta-primary {
        width: 100%;
        text-align: center;
    }

    .produk-specs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .produk-visual-card {
        padding: 28px;
    }
}

/* ══════════════════════════════════════════════════════════════
   PLATFORM & TOOLS SECTION - MT5 Trading Platform
   ═══════════════════════════════════════════════════════════════ */

.platform-tools {
    position: relative;
    padding: 96px 0;
    background: radial-gradient(circle at 70% 30%, rgba(34, 211, 238, 0.08), transparent 60%), #050507;
    overflow: hidden;
}

body.theme-light .platform-tools {
    background: radial-gradient(circle at 70% 30%, rgba(34, 211, 238, 0.1), transparent 50%), #f4f7fb;
}

.platform-tools-header {
    text-align: center;
    margin-bottom: 64px;
}

.platform-tools-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 211, 238, 0.15);
    color: #22d3ee;
    padding: 8px 20px;
    border-radius: 999px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

body.theme-light .platform-tools-badge {
    background: rgba(34, 211, 238, 0.12);
    color: #0891b2;
}

.platform-tools-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

body.theme-light .platform-tools-title {
    color: #0f172a;
}

.platform-tools-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #c5d6ce;
    max-width: 680px;
    margin: 0 auto;
}

body.theme-light .platform-tools-subtitle {
    color: #526277;
}

.platform-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Left Side - Platform Visual */
.platform-visual-side {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-mockup-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
}

body.theme-light .platform-mockup-image {
    filter: drop-shadow(0 20px 60px rgba(15, 23, 42, 0.15));
}

.platform-version-badge {
    position: absolute;
    top: -12px;
    right: 20%;
    background: linear-gradient(135deg, #22d3ee, #14d8a3);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 999px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(34, 211, 238, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

/* Right Side - Features */
.platform-features-side {
    position: relative;
}

.platform-features-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

body.theme-light .platform-features-title {
    color: #0f172a;
}

.platform-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.platform-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.25s ease;
}

body.theme-light .platform-feature-item {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.platform-feature-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

body.theme-light .platform-feature-item:hover {
    background: #ffffff;
    border-color: rgba(148, 163, 184, 0.22);
}

.platform-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(20, 216, 163, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

body.theme-light .platform-feature-icon {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(20, 216, 163, 0.12));
}

.platform-feature-icon svg {
    width: 24px;
    height: 24px;
    color: #22d3ee;
}

body.theme-light .platform-feature-icon svg {
    color: #0891b2;
}

.platform-feature-content {
    flex: 1;
}

.platform-feature-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

body.theme-light .platform-feature-name {
    color: #0f172a;
}

.platform-feature-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #c5d6ce;
}

body.theme-light .platform-feature-desc {
    color: #64748b;
}

/* Download Section */
.platform-download-section {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
}

body.theme-light .platform-download-section {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.platform-download-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #7c8a9c;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.theme-light .platform-download-title {
    color: #64748b;
}

.platform-download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.platform-download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

body.theme-light .platform-download-btn {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: #0f172a;
}

.platform-download-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

body.theme-light .platform-download-btn:hover {
    background: #ffffff;
    border-color: rgba(148, 163, 184, 0.28);
}

.platform-download-btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .platform-content-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .platform-visual-side {
        order: -1;
    }
}

@media (max-width: 768px) {
    .platform-tools {
        padding: 64px 0;
    }

    .platform-tools-header {
        margin-bottom: 48px;
    }

    .platform-tools-title {
        font-size: 32px;
    }

    .platform-tools-subtitle {
        font-size: 16px;
    }

    .platform-features-title {
        font-size: 24px;
    }

    .platform-mockup-image {
        max-width: 100%;
    }

    .platform-download-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .platform-version-badge {
        position: static;
        display: inline-block;
        margin-bottom: 16px;
    }
}

/* ══════════════════════════════════════════════════════════════
   EDUKASI HUB SECTION - Learning Center
   ═══════════════════════════════════════════════════════════════ */

.edukasi-hub {
    position: relative;
    padding: 96px 0;
    background: radial-gradient(circle at 30% 40%, rgba(20, 216, 163, 0.06), transparent 60%), #050507;
    overflow: hidden;
}

body.theme-light .edukasi-hub {
    background: radial-gradient(circle at 30% 40%, rgba(20, 216, 163, 0.08), transparent 50%), #f4f7fb;
}

.edukasi-hub-header {
    text-align: center;
    margin-bottom: 64px;
}

.edukasi-hub-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(20, 216, 163, 0.15);
    color: #14d8a3;
    padding: 8px 20px;
    border-radius: 999px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

body.theme-light .edukasi-hub-badge {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.edukasi-hub-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    background: linear-gradient(90deg, #14d8a3, #22d3ee);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.edukasi-hub-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #c5d6ce;
    max-width: 680px;
    margin: 0 auto;
}

body.theme-light .edukasi-hub-subtitle {
    color: #526277;
}

/* Edukasi Cards Grid */
.edukasi-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.edukasi-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

body.theme-light .edukasi-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 245, 249, 0.94));
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.edukasi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f1c985, #e5bc79);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.edukasi-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

body.theme-light .edukasi-card:hover {
    border-color: rgba(148, 163, 184, 0.28);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.edukasi-card:hover::before {
    opacity: 1;
}

.edukasi-card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(241, 201, 133, 0.15), rgba(229, 188, 121, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

body.theme-light .edukasi-card-icon-wrapper {
    background: linear-gradient(135deg, rgba(241, 201, 133, 0.18), rgba(229, 188, 121, 0.12));
}

.edukasi-card-icon {
    width: 40px;
    height: 40px;
    color: #f1c985;
}

.edukasi-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

body.theme-light .edukasi-card-title {
    color: #0f172a;
}

.edukasi-card-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #c5d6ce;
    margin-bottom: 24px;
    min-height: 75px;
}

body.theme-light .edukasi-card-desc {
    color: #64748b;
}

.edukasi-card-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    text-align: left;
}

.edukasi-card-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #ffffff;
}

body.theme-light .edukasi-card-feature {
    color: #0f172a;
}

.edukasi-card-feature svg {
    width: 16px;
    height: 16px;
    color: #14d8a3;
    flex-shrink: 0;
}

body.theme-light .edukasi-card-feature svg {
    color: #059669;
}

.edukasi-card-cta {
    background: linear-gradient(90deg, #f1c985, #e5bc79);
    color: #181a22;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(229, 188, 121, 0.25);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

body.theme-light .edukasi-card-cta {
    box-shadow: 0 10px 25px rgba(229, 188, 121, 0.2);
}

.edukasi-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(229, 188, 121, 0.35);
}

.edukasi-card-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(20, 216, 163, 0.15);
    color: #14d8a3;
    padding: 6px 12px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.theme-light .edukasi-card-badge {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

/* Additional Info Section */
.edukasi-additional-info {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
}

body.theme-light .edukasi-additional-info {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.edukasi-info-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

body.theme-light .edukasi-info-title {
    color: #0f172a;
}

.edukasi-info-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #c5d6ce;
    margin-bottom: 24px;
}

body.theme-light .edukasi-info-desc {
    color: #526277;
}

.edukasi-info-cta {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
}

body.theme-light .edukasi-info-cta {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.24);
    color: #0f172a;
}

.edukasi-info-cta:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.24);
    transform: translateY(-2px);
}

body.theme-light .edukasi-info-cta:hover {
    background: #ffffff;
    border-color: rgba(148, 163, 184, 0.32);
}

/* Responsive */
@media (max-width: 768px) {
    .edukasi-hub {
        padding: 64px 0;
    }

    .edukasi-hub-header {
        margin-bottom: 48px;
    }

    .edukasi-hub-title {
        font-size: 32px;
    }

    .edukasi-hub-subtitle {
        font-size: 16px;
    }

    .edukasi-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .edukasi-card {
        padding: 32px 24px;
    }

    .edukasi-card-desc {
        min-height: auto;
    }

    .edukasi-additional-info {
        padding: 32px 24px;
    }

    .edukasi-info-title {
        font-size: 20px;
    }

    .edukasi-info-desc {
        font-size: 15px;
    }
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONI SECTION - Animated Marquee Cards
   ═══════════════════════════════════════════════════════════════ */

.testimoni-section {
    position: relative;
    padding: 96px 0;
    background: radial-gradient(circle at 50% 50%, rgba(241, 201, 133, 0.06), transparent 60%), #050507;
    overflow: hidden;
}

body.theme-light .testimoni-section {
    background: radial-gradient(circle at 50% 50%, rgba(241, 201, 133, 0.08), transparent 50%), #f4f7fb;
}

.testimoni-header {
    text-align: center;
    margin-bottom: 64px;
}

.testimoni-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(20, 216, 163, 0.15);
    color: #14d8a3;
    padding: 8px 20px;
    border-radius: 999px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

body.theme-light .testimoni-badge {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.testimoni-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

body.theme-light .testimoni-title {
    color: #0f172a;
}

.testimoni-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #c5d6ce;
    max-width: 680px;
    margin: 0 auto 40px;
}

body.theme-light .testimoni-subtitle {
    color: #526277;
}

/* Marquee Container */
.testimoni-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimoni-marquee-track {
    display: flex;
    gap: 24px;
    animation: marquee-scroll 40s linear infinite;
    width: fit-content;
}

.testimoni-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Testimoni Card */
.testimoni-card {
    min-width: 380px;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex-shrink: 0;
}

body.theme-light .testimoni-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 245, 249, 0.94));
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.testimoni-card:hover {
    transform: translateY(-4px);
    border-color: rgba(241, 201, 133, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

body.theme-light .testimoni-card:hover {
    border-color: rgba(217, 119, 6, 0.3);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
}

/* Card Header */
.testimoni-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.testimoni-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f1c985, #e5bc79);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #181a22;
    flex-shrink: 0;
}

.testimoni-info {
    flex: 1;
    min-width: 0;
}

.testimoni-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.theme-light .testimoni-name {
    color: #0f172a;
}

.testimoni-role {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #7c8a9c;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.theme-light .testimoni-role {
    color: #64748b;
}

.testimoni-verified {
    flex-shrink: 0;
}

.testimoni-verified svg {
    width: 20px;
    height: 20px;
    color: #14d8a3;
}

body.theme-light .testimoni-verified svg {
    color: #059669;
}

/* Card Content */
.testimoni-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #c5d6ce;
    margin-bottom: 20px;
}

body.theme-light .testimoni-text {
    color: #526277;
}

/* Rating Stars */
.testimoni-rating {
    display: flex;
    gap: 4px;
}

.testimoni-rating svg {
    width: 16px;
    height: 16px;
    color: #f1c985;
}

body.theme-light .testimoni-rating svg {
    color: #d97706;
}

/* Second Row - Different Direction */
.testimoni-marquee-track-reverse {
    display: flex;
    gap: 24px;
    animation: marquee-scroll-reverse 45s linear infinite;
    width: fit-content;
    margin-top: 24px;
}

.testimoni-marquee-track-reverse:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll-reverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* CTA Section */
.testimoni-cta {
    text-align: center;
    margin-top: 64px;
}

.testimoni-cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

body.theme-light .testimoni-cta-title {
    color: #0f172a;
}

.testimoni-cta-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: #c5d6ce;
    margin-bottom: 28px;
}

body.theme-light .testimoni-cta-desc {
    color: #526277;
}

.testimoni-cta-button {
    background: linear-gradient(90deg, #f1c985, #e5bc79);
    color: #181a22;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(229, 188, 121, 0.25);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

body.theme-light .testimoni-cta-button {
    box-shadow: 0 10px 25px rgba(229, 188, 121, 0.2);
}

.testimoni-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(229, 188, 121, 0.35);
}

.testimoni-cta-button svg {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .testimoni-section {
        padding: 64px 0;
    }

    .testimoni-header {
        margin-bottom: 48px;
    }

    .testimoni-title {
        font-size: 32px;
    }

    .testimoni-subtitle {
        font-size: 16px;
    }

    .testimoni-card {
        min-width: 320px;
        max-width: 320px;
        padding: 24px;
    }

    .testimoni-marquee-track {
        animation-duration: 30s;
    }

    .testimoni-marquee-track-reverse {
        animation-duration: 35s;
    }

    .testimoni-cta {
        margin-top: 48px;
    }

    .testimoni-cta-title {
        font-size: 20px;
    }

    .testimoni-cta-button {
        width: 100%;
        justify-content: center;
    }
}