/* ===================================
   BHINEKKA ADS — MAIN STYLES
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,800;1,900&display=swap');

/* ─── Base ─────────────────────────── */

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
}

::selection {
    background: var(--color-primary);
    color: #fff;
}

.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 1.25rem;
}

@media (min-width: 640px) {
    .container {
        padding-inline: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-inline: 2rem;
    }
}

/* ─── Utilities ─────────────────────── */

.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-secondary);
}

.text-tertiary {
    color: var(--color-tertiary);
}

.text-muted {
    color: var(--color-text-muted);
}

.text-gradient {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
}

/* ─── Keyframe Animations ──────────── */

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }

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

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

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

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slide-right {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

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

@keyframes slide-left {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

@keyframes float-card-1 {

    0%,
    100% {
        transform: rotate(-12deg) translateY(0px) rotateX(0) rotateY(0);
    }

    33% {
        transform: rotate(-11deg) translateY(-10px) rotateX(5deg) rotateY(5deg);
    }

    66% {
        transform: rotate(-13deg) translateY(5px) rotateX(-5deg) rotateY(-5deg);
    }
}

@keyframes float-card-2 {

    0%,
    100% {
        transform: rotate(12deg) translateY(0px) rotateX(0) rotateY(0);
    }

    33% {
        transform: rotate(13deg) translateY(10px) rotateX(-5deg) rotateY(5deg);
    }

    66% {
        transform: rotate(11deg) translateY(-5px) rotateX(5deg) rotateY(-5deg);
    }
}

@keyframes shimmer-sweep {
    0% {
        transform: translateX(-150%) skewX(-25deg);
    }

    100% {
        transform: translateX(150%) skewX(-25deg);
    }
}

@keyframes shine-entrance {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
        filter: brightness(0.5);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: brightness(1);
    }
}

/* ─── Animation Classes ──────────────── */
.shimmer-sweep {
    position: relative;
    overflow: hidden;
}

.shimmer-sweep::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: translateX(-150%) skewX(-25deg);
    animation: shimmer-sweep 4s infinite;
    pointer-events: none;
}

/* Staggered Entrance Utility */
[data-animate].is-visible {
    animation-fill-mode: both;
}

.features-grid article:nth-child(1) {
    transition-delay: 0.1s;
}

.features-grid article:nth-child(2) {
    transition-delay: 0.2s;
}

.features-grid article:nth-child(3) {
    transition-delay: 0.3s;
}

.logos-grid .logo-brand:nth-child(1) {
    transition-delay: 0.05s;
}

.logos-grid .logo-brand:nth-child(2) {
    transition-delay: 0.10s;
}

.logos-grid .logo-brand:nth-child(3) {
    transition-delay: 0.15s;
}

.logos-grid .logo-brand:nth-child(4) {
    transition-delay: 0.20s;
}

.logos-grid .logo-brand:nth-child(5) {
    transition-delay: 0.25s;
}

.logos-grid .logo-brand:nth-child(6) {
    transition-delay: 0.30s;
}

@keyframes phone-float {

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

    50% {
        transform: translateY(-8px);
    }
}

@keyframes glow-pulse-pink {

    0%,
    100% {
        box-shadow: var(--neon-primary);
    }

    50% {
        box-shadow: 0 0 30px rgba(255, 0, 127, 0.7), 0 0 70px rgba(255, 0, 127, 0.4);
    }
}

@keyframes glow-pulse-blue {

    0%,
    100% {
        box-shadow: var(--neon-secondary);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 229, 255, 0.7), 0 0 70px rgba(0, 229, 255, 0.4);
    }
}

@keyframes bar-grow {
    from {
        transform: scaleY(0);
        opacity: 0;
    }

    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes neon-text-flicker {

    0%,
    95%,
    100% {
        opacity: 1;
    }

    96% {
        opacity: 0.85;
    }

    97% {
        opacity: 1;
    }

    98% {
        opacity: 0.9;
    }
}

@keyframes orbit-left {

    0%,
    100% {
        transform: rotate(-12deg) translateY(0) scale(1);
    }

    50% {
        transform: rotate(-14deg) translateY(-10px) scale(1.02);
    }
}

@keyframes orbit-right {

    0%,
    100% {
        transform: rotate(12deg) translateY(0) scale(1);
    }

    50% {
        transform: rotate(14deg) translateY(10px) scale(1.02);
    }
}

@keyframes bg-blob-drift {

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

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 15px) scale(0.97);
    }
}

/* ─── Scroll Entrance System ────────── */

[data-animate] {
    opacity: 0;
    transition: opacity var(--duration-slow) var(--ease-out),
        transform var(--duration-slow) var(--ease-out);
}

[data-animate="fade-up"] {
    transform: translateY(36px);
}

[data-animate="fade-in"] {
    transform: none;
}

[data-animate="slide-right"] {
    transform: translateX(-44px);
}

[data-animate="slide-left"] {
    transform: translateX(44px);
}

[data-animate="zoom-in"] {
    transform: scale(0.92);
}

[data-animate].is-visible {
    opacity: 1;
    transform: none !important;
}

[data-delay="100"] {
    transition-delay: 0.1s;
}

[data-delay="200"] {
    transition-delay: 0.2s;
}

[data-delay="300"] {
    transition-delay: 0.3s;
}

[data-delay="400"] {
    transition-delay: 0.4s;
}

[data-delay="500"] {
    transition-delay: 0.5s;
}

[data-delay="600"] {
    transition-delay: 0.6s;
}

[data-delay="700"] {
    transition-delay: 0.7s;
}

/* ─── Ticker ─────────────────────────── */

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: var(--color-surface);
    border-top: 1px solid rgba(0, 229, 255, 0.2);
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
    padding-block: 0.6rem;
    position: relative;
    z-index: 50;
}

.ticker-wrap::before,
.ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.ticker-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--color-surface), transparent);
}

.ticker-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--color-surface), transparent);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 22s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding-inline: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-secondary);
    white-space: nowrap;
}

.ticker-item .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: var(--neon-primary);
    flex-shrink: 0;
}

/* ─── Header ─────────────────────────── */

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(11, 12, 16, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background var(--duration-normal) var(--ease-out),
        box-shadow var(--duration-normal) var(--ease-out);
}

.site-header.scrolled {
    background: rgba(11, 12, 16, 0.92);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform var(--duration-fast) var(--ease-spring);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.3));
}

@media (min-width: 768px) {
    .logo-img {
        height: 60px;
    }
}

.footer-logo .logo-img {
    height: 54px;
}

@media (min-width: 768px) {
    .footer-logo .logo-img {
        height: 70px;
    }
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (max-width: 1200px) {
    .header-cta .btn span {
        display: none;
    }

    .header-cta .btn {
        padding: 0.65rem;
        min-width: 42px;
        justify-content: center;
    }

    .header-inner {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .header-cta {
        gap: 0.5rem;
    }
}

/* Desktop Nav */
.main-nav {
    display: none;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: color var(--duration-fast) ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    border-radius: 2px;
    transition: width var(--duration-normal) var(--ease-out);
    box-shadow: var(--neon-secondary);
}

.nav-link:hover {
    color: var(--color-secondary);
}

.nav-link:hover::after {
    width: 100%;
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: background var(--duration-fast) ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform var(--duration-normal) var(--ease-spring),
        opacity var(--duration-fast) ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 1.25rem 1.5rem;
    background: rgba(11, 12, 16, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s var(--ease-out), opacity 0.3s ease, padding 0.3s ease;
}

@media (max-width: 767px) {
    .mobile-nav {
        display: flex;
    }
}

.mobile-nav.open {
    max-height: 300px;
    opacity: 1;
}

.mobile-nav .nav-link {
    font-size: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav .nav-link:last-of-type {
    border-bottom: none;
}

/* ─── Buttons ─────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: transform var(--duration-fast) var(--ease-spring),
        box-shadow var(--duration-normal) ease,
        background var(--duration-fast) ease;
    white-space: nowrap;
    text-decoration: none;
}

.btn:active {
    transform: scale(0.96) !important;
}

/* Button Variants */
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 0.65rem 1.4rem;
    font-size: 0.875rem;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #20BD5C;
    transform: scale(1.06);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
}

.btn-telegram {
    background: #0088CC;
    color: #fff;
    padding: 0.65rem 1.4rem;
    font-size: 0.875rem;
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.4);
}

.btn-telegram:hover {
    background: #0077B5;
    transform: scale(1.06);
    box-shadow: 0 0 25px rgba(0, 136, 204, 0.6);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* Large Variants for Hero */
.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    flex: 1;
    justify-content: center;
    min-width: 250px;
}

.btn-icon-large {
    width: 24px;
    height: 24px;
}

@keyframes glow-pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 0 30px rgba(37, 211, 102, 0.7);
    }
}

@keyframes glow-pulse-telegram {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(0, 136, 204, 0.4);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 136, 204, 0.7);
    }
}

.btn-whatsapp {
    animation: glow-pulse-whatsapp 3s ease-in-out infinite;
}

.btn-telegram {
    animation: glow-pulse-telegram 3s ease-in-out infinite;
}

.btn-primary {
    background: var(--grad-primary);
    color: #fff;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    box-shadow: var(--neon-secondary);
    animation: glow-pulse-blue 3s ease-in-out infinite;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.65), 0 0 70px rgba(0, 229, 255, 0.35);
}

.btn-ghost {
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text);
    padding: 0.875rem 2rem;
    font-size: 1rem;
    background: transparent;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: scale(1.04);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-vip {
    background: var(--color-primary);
    color: #fff;
    padding: 0.65rem 1.4rem;
    font-size: 0.875rem;
    box-shadow: var(--neon-primary);
}

.btn-vip:hover {
    transform: scale(1.06);
    box-shadow: 0 0 25px rgba(255, 0, 127, 0.65), 0 0 60px rgba(255, 0, 127, 0.3);
}

/* ─── Hero Section ─────────────────────── */

.hero {
    position: relative;
    padding-block: 5rem 8rem;
    overflow: hidden;
}

/* Animated blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    animation: bg-blob-drift 10s ease-in-out infinite;
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 0, 127, 0.15);
    top: -100px;
    left: 10%;
    animation-delay: 0s;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(0, 229, 255, 0.12);
    bottom: -80px;
    right: 10%;
    animation-delay: -5s;
}

.hero-blob-3 {
    width: 300px;
    height: 300px;
    background: rgba(57, 255, 20, 0.07);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -2s;
}

.hero-grid {
    display: grid;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Hero text side */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 229, 255, 0.4);
    background: rgba(0, 229, 255, 0.08);
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
}

.hero-badge .icon {
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: hero-word-reveal 0.7s var(--ease-spring) forwards;
}

@keyframes hero-word-reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 36rem;
    margin-bottom: 2.5rem;
    line-height: 1.75;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Hero visual side */
.hero-visual {
    display: none;
    position: relative;
    height: 620px;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: flex;
    }
}

/* Caishen visual */
.caishen-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: phone-float 5s ease-in-out infinite;
    z-index: 1;
}

.caishen-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.4));
}

@media (min-width: 1024px) {
    .caishen-visual {
        max-width: 600px;
        transform: translateX(20px);
    }
}

/* Phone glow ring */
.phone-glow {
    position: absolute;
    inset: -20px;
    border-radius: 3.5rem;
    background: conic-gradient(from 0deg, var(--color-primary), var(--color-secondary), var(--color-tertiary), var(--color-primary));
    opacity: 0.15;
    filter: blur(20px);
    z-index: -1;
    animation: spin-slow 8s linear infinite;
}

@keyframes spin-slow {
    to {
        transform: rotate(360deg);
    }
}

/* Floating stat cards */
.float-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--radius-md);
    padding: 0.9rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 20;
}

.float-card-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.float-card-value {
    font-size: 1.2rem;
    font-weight: 900;
}

.float-card-cpa {
    left: -50px;
    top: 80px;
    border-color: rgba(57, 255, 20, 0.3);
    box-shadow: var(--neon-tertiary);
    animation: orbit-left 4.5s ease-in-out infinite;
}

.float-card-cpa .float-card-value {
    color: var(--color-tertiary);
}

.float-card-dep {
    right: -55px;
    bottom: 120px;
    border-color: rgba(255, 0, 127, 0.3);
    box-shadow: var(--neon-primary);
    animation: orbit-right 5.5s ease-in-out infinite;
}

.float-card-dep .float-card-value {
    color: var(--color-primary);
}

.float-card-logo {
    left: -20px;
    bottom: 30px;
    z-index: 20;
    /* Keep it above the Caishen character */
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.4);
    animation: orbit-left 5s ease-in-out infinite;
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.float-card-logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* ─── Social Proof / Logos ─────────────── */

.logos-section {
    padding-block: 3.5rem;
    border-block: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.4);
}

.logos-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 3rem;
}

.logo-brand {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--color-text);
    opacity: 0.45;
    transition: opacity var(--duration-normal) ease, filter var(--duration-normal) ease;
    letter-spacing: 0.08em;
    filter: grayscale(1);
}

.logo-brand:hover {
    opacity: 1;
    filter: grayscale(0);
}

.logo-brand.brand-serif {
    font-family: Georgia, serif;
}

.logo-brand.brand-italic {
    font-style: italic;
}

/* ─── Features Section ─────────────────── */

.features-section {
    padding-block: 8rem;
    position: relative;
    background: var(--color-surface);
    margin-block: 5rem;
}

/* Skewed layer trick */
.features-section::before,
.features-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--color-bg);
}

.features-section::before {
    top: -1px;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

.features-section::after {
    bottom: -1px;
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

.features-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-bg), var(--color-surface));
    opacity: 0.9;
}

.features-inner {
    position: relative;
    z-index: 1;
}

.section-heading {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 40rem;
    margin-inline: auto;
    font-weight: 500;
    line-height: 1.75;
}

/* Feature cards */
.features-grid {
    display: grid;
    gap: 1.75rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
    }
}

.feature-card {
    position: relative;
    background: var(--color-surface-2);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    border: 2px solid transparent;
    transition: transform 0.35s var(--ease-spring),
        box-shadow 0.35s ease;
    background-clip: padding-box;
}

/* rainbow gradient border */
.feature-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    z-index: -1;
    background: var(--grad-border);
    opacity: 0.5;
    transition: opacity 0.35s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Middle card elevated */
.feature-card.featured {
    background: linear-gradient(145deg, rgba(0, 229, 255, 0.12), rgba(255, 0, 127, 0.08));
    transform: translateY(-20px);
}

@media (max-width: 767px) {
    .feature-card.featured {
        transform: none;
    }
}

.feature-card.featured:hover {
    transform: translateY(-28px);
}

@media (max-width: 767px) {
    .feature-card.featured:hover {
        transform: translateY(-8px);
    }
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid;
}

.feature-icon.icon-primary {
    color: var(--color-primary);
    border-color: rgba(255, 0, 127, 0.4);
    box-shadow: var(--neon-primary);
}

.feature-icon.icon-secondary {
    color: var(--color-secondary);
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: var(--neon-secondary);
}

.feature-icon.icon-tertiary {
    color: var(--color-tertiary);
    border-color: rgba(57, 255, 20, 0.4);
    box-shadow: var(--neon-tertiary);
}

.feature-icon .mat-icon {
    font-size: 1.75rem;
}

.feature-title {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 0.9rem;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    font-weight: 500;
}

/* ─── Stats Section ─────────────────────── */

.stats-section {
    padding-block: 6rem;
    position: relative;
    overflow: hidden;
}

.stats-glow {
    position: absolute;
    width: 600px;
    height: 400px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.07);
    filter: blur(100px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.stats-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.stats-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 500;
}

/* Big stat card */
.stat-hero-card {
    padding: 2rem;
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--color-primary);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.stat-hero-card .watermark {
    position: absolute;
    right: -1rem;
    top: -1rem;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    line-height: 1;
}

.stat-hero-number {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.overlay-link {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Small stat pills */
.stat-grid-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-mini-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}

.stat-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-mini-number {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-mini-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-muted);
}

/* Dashboard widget */
.dashboard-widget {
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dashboard-title {
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dashboard-title .mat-icon {
    color: var(--color-secondary);
}

.traffic-lights {
    display: flex;
    gap: 0.4rem;
}

.traffic-lights span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.traffic-lights .tl-red {
    background: #ff5f57;
}

.traffic-lights .tl-yellow {
    background: #febc2e;
}

.traffic-lights .tl-green {
    background: #28c840;
}

/* CPA row */
.cpa-row {
    background: rgba(0, 0, 0, 0.35);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cpa-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
}

.cpa-value {
    font-size: 1.6rem;
    font-weight: 900;
}

.cpa-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(57, 255, 20, 0.15);
    color: var(--color-tertiary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.35rem 0.65rem;
    border-radius: 0.5rem;
}

.cpa-badge .mat-icon {
    font-size: 1rem;
}

/* Bar chart */
.bar-chart {
    height: 150px;
    display: flex;
    align-items: flex-end;
    gap: 0.4rem;
}

.bar-wrap {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.bar {
    width: 100%;
    border-radius: 4px 4px 0 0;
    transform-origin: bottom;
    transform: scaleY(0);
    position: relative;
    overflow: visible;
    transition: none;
}

.bar.animated {
    animation: bar-grow 0.7s var(--ease-out) forwards;
}

.bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 3px;
}

.bar-pink {
    background: rgba(255, 0, 127, 0.35);
}

.bar-pink::before {
    background: var(--color-primary);
    box-shadow: var(--neon-primary);
}

.bar-blue {
    background: rgba(0, 229, 255, 0.35);
}

.bar-blue::before {
    background: var(--color-secondary);
    box-shadow: var(--neon-secondary);
}

.bar-green {
    background: rgba(57, 255, 20, 0.35);
}

.bar-green::before {
    background: var(--color-tertiary);
    box-shadow: var(--neon-tertiary);
}

/* ─── Footer ─────────────────────────────── */

.site-footer {
    background: var(--color-surface);
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    margin-top: 6rem;
}

/* Rainbow bottom line */
.site-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-neon);
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.footer-brand {
    max-width: 22rem;
}

.footer-logo {
    margin-bottom: 1.25rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    font-weight: 500;
    margin-bottom: 1.75rem;
}

.footer-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.07);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    transition: background var(--duration-fast) ease;
}

.footer-contact:hover {
    background: rgba(255, 255, 255, 0.13);
}

.footer-contact .mat-icon {
    font-size: 1.1rem;
}

.footer-links-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-col-title {
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text);
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color var(--duration-fast) ease, transform var(--duration-fast) ease;
}

.footer-link:hover {
    color: var(--color-text);
    transform: translateX(4px);
}

.footer-link .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-link .dot-pink {
    background: var(--color-primary);
}

.footer-link .dot-blue {
    background: var(--color-secondary);
}

.footer-link .dot-green {
    background: var(--color-tertiary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copy {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

/* ─── Material Icons helper ──────────────── */

.mat-icon {
    font-family: 'Material Symbols Outlined', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* ─── Responsive Polish ───────────────────── */

@media (max-width: 639px) {
    .hero {
        padding-block: 3.5rem 5rem;
    }

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

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .features-section {
        padding-block: 6rem;
    }

    .stats-section {
        padding-block: 4.5rem;
    }
}

/* ═══════════════════════════════════
     ULTIMATE RESPONSIVE OVERRIDES
   ════════════════════════════════════ */

@media (max-width: 1200px) {
    .header-cta .btn span {
        display: inline-block;
        /* Restore text visibility */
        font-size: 0.75rem;
    }

    .header-cta .btn {
        padding: 0.5rem 0.75rem !important;
        min-width: auto !important;
        border-radius: var(--radius-full) !important;
        gap: 0.35rem !important;
    }

    .header-cta .btn-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 1023px) {
    .hero {
        padding-top: 0.5rem !important;
        /* Minimized top space */
        padding-bottom: 2rem !important;
    }

    .hero-visual {
        display: flex !important;
        justify-content: center !important;
        margin-bottom: 0.5rem !important;
        /* Mepet ke badge */
        height: auto !important;
        min-height: 0 !important;
    }

    .caishen-visual {
        max-width: 240px !important;
        /* Slightly smaller for better fit */
        transform: translateY(10px) !important;
        /* Turunin caishen */
    }

    .hero-grid {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.75rem !important;
        /* Reduced gap between visuals and text */
    }

    .hero-actions {
        justify-content: center !important;
    }

    .hero-text {
        order: 2 !important;
    }

    .hero-visual {
        order: 1 !important;
    }

    .float-card {
        z-index: 20 !important;
        /* Majuin di depan caishen */
    }

    .caishen-img {
        z-index: 1 !important;
        position: relative;
    }
}

@media (max-width: 480px) {
    .site-header {
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        min-height: 0 !important;
        position: sticky !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000 !important;
        overflow: visible !important;
        /* Allow CTA row to show */
    }

    .site-header .container {
        padding: 0 !important;
        margin: 0 !important;
        max-width: none !important;
        width: 100% !important;
    }

    .mobile-nav {
        display: none !important;
        /* Total removal when not active */
    }

    .mobile-nav.active {
        display: block !important;
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh !important;
        z-index: 2000 !important;
    }

    .header-inner {
        display: flex !important;
        flex-wrap: wrap !important;
        padding: 0.75rem 1rem 0 1rem !important;
        margin: 0 !important;
        height: auto !important;
        background: var(--color-bg-dark);
        /* Background for the top row */
    }

    .logo {
        order: 1 !important;
        flex: 0 0 auto !important;
        display: block !important;
    }

    .hamburger {
        order: 2 !important;
        flex: 0 0 auto !important;
    }

    .header-cta {
        order: 3 !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        flex: 0 0 100% !important;
        display: flex !important;
        gap: 0 !important;
        background: var(--color-bg-dark);
        border: none !important;
        height: 56px !important;
        /* Explicit height */
    }

    .header-cta .btn {
        flex: 1 !important;
        height: 100% !important;
        padding: 0 0.5rem !important;
        border-radius: 0 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: none !important;
        box-shadow: none !important;
    }

    .header-cta .btn-whatsapp {
        background: #25D366 !important;
    }

    .header-cta .btn-telegram {
        background: #0088cc !important;
    }

    .header-cta .btn span {
        display: block !important;
        font-size: 0.62rem !important;
        line-height: 1.2 !important;
        white-space: normal !important;
        text-align: center !important;
    }

    .float-card.float-card-logo {
        position: absolute !important;
        left: -5px !important;
        bottom: 15px !important;
        z-index: 999 !important;
        background: rgba(11, 12, 16, 0.95) !important;
        border: 2px solid var(--color-accent) !important;
        padding: 5px 12px !important;
        /* Adjusted padding for a tighter fit */
        border-radius: var(--radius-lg) !important;
        display: flex !important;
        visibility: visible !important;
        animation: float-logo-final 3s ease-in-out infinite !important;
        box-shadow: 0 0 25px rgba(0, 229, 255, 0.5) !important;
        min-width: auto !important;
        /* Removed fixed width so it wraps the image */
    }

    .float-card-logo img {
        height: 32px !important;
        /* Slightly smaller logo */
        width: auto !important;
        display: block !important;
    }

    .logo-img {
        height: 44px !important;
    }

    .hero {
        padding-top: 0.5rem !important;
        /* Hero flushes right under the sticky header */
        margin-top: 0 !important;
    }

    .hero-visual {
        margin-top: 0 !important;
        padding-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .hero-title {
        font-size: 1.75rem !important;
        margin-top: 0.25rem !important;
    }

    .hero-desc {
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
    }
}

@keyframes float-logo-final {

    0%,
    100% {
        transform: translateY(0);
    }

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

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}