/* ============================================
   WIBUKU LOVERS — LANDING PAGE STYLES
   Light, Premium, Responsive
   ============================================ */

/* --- CSS Variables --- */
:root {
    --wa-green: #25D366;
    --wa-dark: #128C7E;
    --wa-darker: #075E54;
    --wa-light: #DCF8C6;
    --wa-blue: #34B7F1;

    --bg-primary: #f8faf9;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #e8f5e9 0%, #f1f8ff 50%, #fff8e1 100%);
    --bg-hero: linear-gradient(160deg, #e8f5e9 0%, #ffffff 40%, #f0f7ff 70%, #ffffff 100%);

    --text-primary: #1a2e1f;
    --text-secondary: #4a6b52;
    --text-muted: #7d9b87;

    --accent-gradient: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    --accent-glow: rgba(37, 211, 102, 0.25);

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-green: 0 8px 30px rgba(37, 211, 102, 0.3);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 100px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Particles Background --- */
.particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: float-up linear infinite;
}

@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(37, 211, 102, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.logo-svg {
    width: 24px;
    height: 24px;
    color: var(--wa-green);
    display: inline-block;
    vertical-align: middle;
}

.logo-accent {
    color: var(--wa-green);
}

.nav-join-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--accent-gradient);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-green);
}

.nav-join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
    background: var(--bg-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52, 183, 241, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: var(--radius-full);
    color: var(--wa-dark);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    animation: fadeDown 0.8s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--wa-green);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    animation: fadeDown 0.8s ease 0.1s both;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 36px;
    animation: fadeDown 0.8s ease 0.2s both;
}

.hero-subtitle strong {
    color: var(--wa-green);
}

.hero-cta {
    animation: fadeDown 0.8s ease 0.3s both;
}

/* --- Primary Button --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--accent-gradient);
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-green);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 50px rgba(37, 211, 102, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 1.15rem;
}

.wa-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.cta-hint {
    margin-top: 14px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* --- Stats --- */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    animation: fadeDown 0.8s ease 0.5s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--wa-dark);
}

.stat-plus {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--wa-green);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(37, 211, 102, 0.2);
}

/* --- Phone Mockup --- */
.hero-visual {
    position: relative;
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
    margin-top: 48px;
    animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(0deg); }
}

.phone-mockup {
    width: 320px;
    max-width: 100%;
    background: var(--bg-white);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
}

.phone-header {
    background: var(--wa-darker);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--wa-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
}

.phone-info .phone-name {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

.phone-info .phone-members {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
}

.phone-messages {
    padding: 16px;
    background: #ECE5DD;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 300px;
}

.msg {
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.82rem;
    position: relative;
    animation: msgSlide 0.6s ease both;
}

.msg-left {
    background: white;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.msg-right {
    background: var(--wa-light);
    align-self: flex-end;
    border-top-right-radius: 0;
}

.msg-name {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--wa-dark);
    margin-bottom: 2px;
}

.msg-time {
    font-size: 0.65rem;
    color: #999;
    text-align: right;
    margin-top: 4px;
}

.msg-anim-1 { animation-delay: 0.5s; }
.msg-anim-2 { animation-delay: 1s; }
.msg-anim-3 { animation-delay: 1.5s; }
.msg-anim-4 { animation-delay: 2s; }
.msg-anim-5 { animation-delay: 2.5s; }

@keyframes msgSlide {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- Features --- */
.features {
    padding: 100px 24px;
    background: var(--bg-white);
    position: relative;
}

.features-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 56px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 32px 28px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(37, 211, 102, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 211, 102, 0.2);
    background: white;
}

.feature-icon {
    margin-bottom: 16px;
    display: inline-block;
    animation: iconBounce 3s ease infinite;
}

.feature-svg {
    width: 38px;
    height: 38px;
    color: var(--wa-green);
}

.feature-card:nth-child(2) .feature-icon { animation-delay: 0.3s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 0.6s; }
.feature-card:nth-child(4) .feature-icon { animation-delay: 0.9s; }
.feature-card:nth-child(5) .feature-icon { animation-delay: 1.2s; }
.feature-card:nth-child(6) .feature-icon { animation-delay: 1.5s; }

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* --- Testimonials --- */
.testimonials {
    padding: 100px 24px;
    background: var(--bg-gradient);
}

.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.star-svg {
    width: 18px;
    height: 18px;
    color: #ffb000;
    fill: #ffb000;
}

.footer-heart-svg {
    width: 12px;
    height: 12px;
    color: #e11d48;
    fill: #e11d48;
    display: inline-block;
    vertical-align: middle;
    margin: 0 2px;
    animation: heartBeat 1.2s ease infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.author-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Wibuku Profile --- */
.profile-section {
    padding: 100px 24px;
    background: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wibuku-card {
    position: relative;
    width: 100%;
    max-width: 440px;
    border-radius: 28px;
    overflow: hidden;
    background: #0d0d0d;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    aspect-ratio: 4 / 5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.wibuku-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(0, 200, 83, 0.2);
}

.wibuku-card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.wibuku-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.35) 0%, 
        rgba(0, 0, 0, 0.5) 45%, 
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.wibuku-volume-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    pointer-events: auto !important; /* Ensure click goes through */
}

.wibuku-volume-btn:hover {
    transform: scale(1.08);
    background: rgba(0, 0, 0, 0.65);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.wibuku-volume-btn:active {
    transform: scale(0.95);
}

.volume-icon {
    width: 20px;
    height: 20px;
    display: block;
    color: white;
}

.wibuku-premium-row {
    margin-bottom: 24px;
}

.wibuku-badge-premium {
    background: rgba(255, 176, 0, 0.1);
    border: 1px solid rgba(255, 176, 0, 0.35);
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffb000;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(255, 176, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wibuku-badge-premium.pulse {
    animation: premiumPulse 0.5s ease-in-out;
}

@keyframes premiumPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); box-shadow: 0 4px 25px rgba(255, 176, 0, 0.4); }
    100% { transform: scale(1); }
}

.wibuku-profile-info {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    margin-top: auto;
}

.wibuku-avatar-container {
    position: relative;
    margin-bottom: 16px;
}

.wibuku-avatar-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 3.5px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* Make profile unclickable */
}

/* Force Tenor embed structure to be a circle */
.wibuku-avatar-wrapper .tenor-gif-embed {
    width: 100% !important;
    height: 100% !important;
    position: relative;
}

.wibuku-avatar-wrapper .tenor-gif-embed iframe {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: none !important;
    transform: scale(1.6) !important; /* Zoom in to hide black sidebars completely */
}

/* Hide Tenor caption / links inside the avatar circle */
.wibuku-avatar-wrapper .tenor-gif-embed a {
    display: none !important;
}

.wibuku-avatar-container {
    position: relative;
    margin-bottom: 16px;
    margin-top: -65px; /* Shift profile slightly up/forward further */
    z-index: 5;
}

.wibuku-username {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.wibuku-tag {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.wibuku-verified {
    width: 20px;
    height: 20px;
    background: #00b0ff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 176, 255, 0.4);
}

.wibuku-verified svg {
    width: 12px;
    height: 12px;
    stroke-width: 3.5;
}

.wibuku-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

@keyframes rgbShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.wibuku-badge-xrat {
    background: linear-gradient(270deg, #ff0055, #ff5000, #ffcc00, #00ff66, #00ccff, #9900ff, #ff0055);
    background-size: 300% 300%;
    animation: rgbShift 2.5s linear infinite; /* fast RGB background shift */
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 900;
    color: white;
    border-radius: 4px;
    transform: skewX(-12deg);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(255, 0, 100, 0.4);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.95), -1px -1px 3px rgba(0,0,0,0.95), 1px -1px 3px rgba(0,0,0,0.95), -1px 1px 3px rgba(0,0,0,0.95); /* extreme readability */
}

.badge-icon-img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.wibuku-badge-xrat > * {
    transform: skewX(12deg);
}

.wibuku-badge-level {
    background: rgba(0, 230, 118, 0.12);
    border: 1px solid rgba(0, 230, 118, 0.35);
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #00e676;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: inset 0 0 10px rgba(0, 230, 118, 0.1);
}

.badge-icon {
    width: 14px;
    height: 14px;
}

.wibuku-stats-row {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 24px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
}

.wibuku-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.wibuku-stat-val {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.01em;
}

.wibuku-stat-lbl {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 3px;
}

.wibuku-stat-div {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
}

/* --- Final CTA --- */
.final-cta {
    padding: 100px 24px;
    background: var(--bg-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.final-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.final-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.cta-members {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.member-avatars {
    display: flex;
}

.m-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    margin-left: -8px;
}

.m-avatar:first-child {
    margin-left: 0;
}

/* --- Footer --- */
.footer {
    padding: 48px 24px;
    text-align: center;
    background: var(--bg-primary);
    border-top: 1px solid rgba(0,0,0,0.04);
}

.footer-container {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 12px;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.78rem;
    opacity: 0.7;
}

/* --- Floating Button (Mobile) --- */
.floating-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--accent-gradient);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    animation: pulse-btn 2s ease infinite;
}

.floating-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.floating-btn .wa-icon {
    width: 20px;
    height: 20px;
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6); }
}

/* --- Animations --- */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media (min-width: 1024px) {
    .hero {
        flex-direction: row;
        gap: 60px;
        padding: 120px 60px 80px;
    }

    .hero-container {
        text-align: left;
        flex: 1;
    }

    .hero-subtitle {
        margin-left: 0;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .hero-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        flex-shrink: 0;
        margin-top: 0;
        animation: floatPhone 6s ease-in-out infinite;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 90px 20px 50px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

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

    .features {
        padding: 60px 20px;
    }

    .testimonials {
        padding: 60px 20px;
    }

    .final-cta {
        padding: 60px 20px;
    }

    .btn-primary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .btn-lg {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .floating-btn {
        bottom: 16px;
        right: 16px;
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 12px 16px;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .nav-join-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.92rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 16px;
    }

    .stat-divider {
        height: 30px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    /* Wibuku mobile adjustments */
    .wibuku-card {
        border-radius: 20px;
    }
    .wibuku-username {
        font-size: 1.3rem;
    }
    .wibuku-tag {
        font-size: 0.9rem;
    }
    .wibuku-stat-val {
        font-size: 1.05rem;
    }
    .wibuku-stat-lbl {
        font-size: 0.65rem;
    }
    .wibuku-avatar-wrapper {
        width: 105px;
        height: 105px;
    }
    .wibuku-volume-btn {
        top: 16px;
        right: 16px;
        width: 38px;
        height: 38px;
    }
    .wibuku-volume-btn svg {
        width: 16px;
        height: 16px;
    }
    .wibuku-badges {
        margin-bottom: 12px;
        gap: 8px;
    }
    .wibuku-badge-xrat {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
    .wibuku-badge-level {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
    .wibuku-premium-row {
        margin-bottom: 16px;
    }
    .wibuku-badge-premium {
        padding: 4px 12px;
        font-size: 0.75rem;
    }
}
