/* site3/styles.css - Premium Dark Aesthetic */

:root {
    --bg-main: #05080f; /* Deeper black/navy */
    --bg-surface: rgba(255, 255, 255, 0.03);
    --bg-surface-hover: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    
    --zuune-mint: #00d3a0;
    --zuune-mint-dim: rgba(0, 211, 160, 0.15);
    --zuune-mint-glow: rgba(0, 211, 160, 0.4);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-red: #ef4444;
    
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* Background Effects */
.bg-glow-wrapper {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--zuune-mint-dim) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -2;
    pointer-events: none;
    filter: blur(60px);
}
.bg-glow.top-left { top: -200px; left: -200px; }
.bg-glow.center-right { top: 40%; right: -300px; background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%); }

.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.02;
    z-index: -1;
    pointer-events: none;
}

/* Typography & Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.text-center { text-align: center; }
.text-green { color: var(--zuune-mint); }
.text-blue { color: var(--accent-blue); }
.text-red { color: var(--accent-red); }
.text-muted { color: var(--text-muted); }
.text-white { color: #fff; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.w-full { width: 100%; }
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.flex-row { display: flex; flex-direction: row; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-6 { gap: 1.5rem; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.overflow-hidden { overflow: hidden; }

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background: var(--zuune-mint);
    color: #000;
    border: 1px solid transparent;
}
.btn-primary:hover {
    background: #00f0b5;
    transform: translateY(-2px);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background: var(--bg-surface);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover {
    background: var(--bg-surface-hover);
    border-color: var(--border-hover);
}
.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}
.glow-effect {
    box-shadow: 0 0 20px rgba(0, 211, 160, 0.4);
}
.glow-effect:hover {
    box-shadow: 0 0 30px rgba(0, 211, 160, 0.6);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 80px;
    background: rgba(5, 8, 15, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    color: var(--text-main);
}
.logo img {
    height: 32px;
    width: auto;
}
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--text-main);
}
.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 211, 160, 0.1);
    color: var(--zuune-mint);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 211, 160, 0.2);
}
.badge-dot {
    width: 6px; height: 6px;
    background: var(--zuune-mint);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--zuune-mint);
}
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.gradient-text {
    background: linear-gradient(90deg, #fff, var(--zuune-mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-inline: auto;
}
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}
.play-btn i { font-size: 20px; }

/* Social Proof */
.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.avatars { display: flex; align-items: center; }
.avatars img {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-main);
    margin-left: -12px;
}
.avatars img:first-child { margin-left: 0; }
.avatar-more {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 600;
    margin-left: -12px;
    z-index: 5;
}
.proof-text { text-align: left; font-size: 13px; color: var(--text-muted); }
.stars { color: #fbbf24; margin-bottom: 4px; display: flex; gap: 2px; }

/* Hero Visual (Mac Window / WhatsApp Sim) */
.hero-visual-container {
    max-width: 900px;
    margin: 80px auto 0;
    perspective: 1000px;
}
.mac-window {
    background: #111b27;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: rotateX(5deg) scale(0.95);
    transition: transform 0.5s ease;
}
.hero-visual-container:hover .mac-window {
    transform: rotateX(0deg) scale(1);
}
.mac-header {
    height: 38px;
    background: #1a2635;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 16px;
    position: relative;
}
.mac-dots { display: flex; gap: 6px; }
.mac-dots span { width: 10px; height: 10px; border-radius: 50%; background: #4a5568; }
.mac-dots span:nth-child(1) { background: #ef4444; }
.mac-dots span:nth-child(2) { background: #f59e0b; }
.mac-dots span:nth-child(3) { background: #10b981; }
.mac-title {
    position: absolute; left: 50%; transform: translateX(-50%);
    font-size: 12px; font-weight: 500; color: var(--text-muted);
}
.chat-interface { display: flex; height: 450px; }
.chat-sidebar {
    width: 280px; border-right: 1px solid var(--border-color);
    background: #0f172a; padding: 12px;
}
.chat-contact {
    display: flex; gap: 12px; padding: 12px; border-radius: 8px; cursor: pointer;
    transition: background 0.2s;
}
.chat-contact.active { background: rgba(255, 255, 255, 0.05); }
.avatar {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #fff; flex-shrink: 0;
}
.bg-blue { background: var(--accent-blue); }
.bg-purple { background: var(--accent-purple); }
.contact-info { flex: 1; overflow: hidden; }
.contact-name { font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.contact-msg { font-size: 13px; color: var(--text-muted); white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
.contact-time { font-size: 12px; color: var(--text-muted); }

.chat-main { flex: 1; display: flex; flex-direction: column; background: #0b1120; position: relative; }
.chat-header {
    padding: 12px 20px; border-bottom: 1px solid var(--border-color); background: #0f172a;
    display: flex; align-items: center; gap: 12px; font-weight: 600;
}
.chat-messages { flex: 1; padding: 20px; display: flex; flex-direction: column; gap: 12px; overflow-y: auto; }
.msg {
    max-width: 70%; padding: 10px 14px; border-radius: 8px; font-size: 14px;
    animation: slideUp 0.3s ease forwards;
}
.msg.received { background: #1e293b; align-self: flex-start; border-top-left-radius: 0; }
.msg.sent { background: #005c4b; align-self: flex-end; border-top-right-radius: 0; }
.chat-input-area {
    padding: 16px 20px; background: #0f172a; border-top: 1px solid var(--border-color);
    display: flex; align-items: center; gap: 16px;
}
.input-box {
    flex: 1; background: rgba(255, 255, 255, 0.05); border-radius: 8px; padding: 10px 16px;
    font-size: 14px; color: var(--text-muted);
}
/* Zuune Overlay inside chat */
.zuune-floating-panel {
    margin-left: auto; background: rgba(0, 211, 160, 0.1); border: 1px solid rgba(0, 211, 160, 0.2);
    border-radius: 8px; padding: 8px 12px; display: flex; flex-direction: column; gap: 8px;
}
.z-header { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--zuune-mint); }
.z-header img { width: 14px; height: 14px; }
.profile-pill { background: rgba(255, 255, 255, 0.1); padding: 2px 6px; border-radius: 4px; font-size: 10px; color: #fff; margin-left: 8px; }
.z-funnels { display: flex; gap: 8px; }
.z-btn {
    background: var(--zuune-mint); color: #000; border: none; padding: 6px 12px; border-radius: 6px;
    font-size: 12px; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 4px;
}
.z-btn:hover { opacity: 0.9; transform: scale(1.02); }
.trigger-anim { position: relative; overflow: hidden; }
.zuune-notification {
    background: rgba(0, 211, 160, 0.1);
    border-left: 3px solid var(--zuune-mint);
    padding: 8px 12px;
    font-size: 12px;
    color: var(--zuune-mint);
    border-radius: 0 6px 6px 0;
    align-self: center;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: slideUp 0.3s ease forwards;
    margin: 4px 0;
    font-weight: 500;
}
.z-tag {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    font-weight: 700;
    text-transform: uppercase;
}
.z-tag.bg-yellow { background: rgba(255, 179, 64, 0.2); color: #ffb340; }
/* Logos */
.logos-section { padding: 40px 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); text-align: center; }
.logos-section p { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.logo-track { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; opacity: 0.5; }
.logo-track span { font-size: 20px; font-weight: 700; font-family: sans-serif; letter-spacing: -0.5px; }

/* Sections */
.section { padding: 120px 0; }
.section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.section-subtitle { font-size: 1.125rem; color: var(--text-muted); max-width: 600px; }
.section-subtitle.center { margin-inline: auto; }

/* Spotlight Card (Glassmorphism + Hover Glow) */
.spotlight-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.spotlight-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0; transition: opacity 0.3s; z-index: 1; pointer-events: none;
}
.spotlight-card:hover::before { opacity: 1; }
.spotlight-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.card-inner { padding: 32px; position: relative; z-index: 2; }

/* Split Section */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 120px 24px; }
.feature-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.feature-list li { display: flex; gap: 16px; }
.feat-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(0, 211, 160, 0.1); color: var(--zuune-mint); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.feature-list strong { display: block; font-size: 18px; margin-bottom: 4px; color: var(--text-main); }
.feature-list p { color: var(--text-muted); font-size: 15px; }

/* Metrics Box */
.metric-box { background: rgba(0,0,0,0.3); padding: 16px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); }
.metric-label { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.metric-value { font-size: 32px; font-weight: 800; font-family: monospace; line-height: 1; margin-bottom: 12px; }
.metric-chart { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.bar { height: 100%; border-radius: 4px; transition: width 1s ease-out; }
.bar.red { background: var(--accent-red); box-shadow: 0 0 10px var(--accent-red); }
.bar.green { background: var(--zuune-mint); box-shadow: 0 0 10px var(--zuune-mint); }
.floating-badge { position: absolute; right: -20px; bottom: 40px; background: #064e3b; color: var(--zuune-mint); padding: 12px 20px; border-radius: 99px; font-weight: 700; border: 1px solid var(--zuune-mint); display: flex; align-items: center; gap: 8px; transform: rotate(-5deg); box-shadow: 0 10px 20px rgba(0,0,0,0.5); z-index: 10; animation: float 3s ease-in-out infinite; }

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 24px;
}
.col-span-1 { grid-column: span 1; }
.col-span-2 { grid-column: span 2; }
.col-span-3 { grid-column: span 3; }
.col-span-4 { grid-column: span 4; }
.row-span-1 { grid-row: span 1; }
.row-span-2 { grid-row: span 2; }

.icon-box {
    width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff;
    margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.1);
}
.card-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.card-text { color: var(--text-muted); font-size: 0.95rem; }
.bento-bg-icon { position: absolute; right: -20px; bottom: -20px; font-size: 200px; color: rgba(255,255,255,0.02); z-index: 0; pointer-events: none; }

/* Visual Mockups inside Bento */
.visual-mockup { background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 16px; }

/* Audio Simulator */
.audio-player-sim { display: flex; align-items: center; gap: 12px; background: rgba(0, 211, 160, 0.1); padding: 12px 16px; border-radius: 99px; border: 1px solid rgba(0, 211, 160, 0.2); }
.audio-player-sim button { width: 32px; height: 32px; border-radius: 50%; background: var(--zuune-mint); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #000; }
.waveform { display: flex; align-items: center; gap: 3px; height: 24px; flex: 1; }
.wave-bar { width: 3px; background: rgba(0, 211, 160, 0.3); border-radius: 3px; height: 4px; transition: height 0.1s ease; }
.wave-bar.active { background: var(--zuune-mint); }
.time { font-size: 12px; font-family: monospace; font-weight: 600; color: var(--zuune-mint); }
.typing-indicator { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; transition: opacity 0.3s; }
.typing-indicator span { width: 4px; height: 4px; background: var(--text-muted); border-radius: 50%; animation: blink 1.4s infinite both; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

/* Profile Switcher */
.ps-header { font-size: 11px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; font-weight: 700; letter-spacing: 1px; }
.ps-option { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: 8px; font-size: 14px; font-weight: 600; border: 1px solid transparent; }
.ps-option.active { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.ps-option i { margin-left: auto; }

/* Date Mockup */
.date-mockup { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.date-chip { background: rgba(59, 130, 246, 0.15); color: #60a5fa; padding: 6px 12px; border-radius: 6px; font-size: 12px; font-weight: 600; display: flex; align-items: center; gap: 6px; border: 1px solid rgba(59, 130, 246, 0.3); }
.msg-chip { background: #1e293b; padding: 10px 16px; border-radius: 12px; border-top-right-radius: 0; font-size: 13px; color: #fff; }

/* Calculator */
.calc-wrapper { padding: 0; }
.calc-info { padding: 48px; border-right: 1px solid var(--border-color); }
.calc-controls { padding: 48px; background: rgba(0,0,0,0.2); }
.calc-results { display: flex; gap: 24px; margin-top: 40px; }
.result-box { flex: 1; padding: 24px; border-radius: 16px; border: 1px solid var(--border-color); background: rgba(255,255,255,0.02); position: relative; overflow: hidden; }
.result-box.glow-green { border-color: rgba(0,211,160,0.3); box-shadow: inset 0 0 20px rgba(0,211,160,0.05); }
.result-box.glow-blue { border-color: rgba(59,130,246,0.3); box-shadow: inset 0 0 20px rgba(59,130,246,0.05); }
.result-label { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }
.result-value { font-size: 2.5rem; font-weight: 800; font-family: monospace; letter-spacing: -1px; margin-bottom: 8px; }
.result-sub { font-size: 12px; color: var(--text-muted); }
.range-val { font-family: monospace; font-size: 18px; font-weight: 700; color: #fff; background: rgba(255,255,255,0.1); padding: 4px 12px; border-radius: 6px; }

/* Custom Range Input */
.custom-range {
    -webkit-appearance: none; width: 100%; height: 6px; background: rgba(255,255,255,0.1);
    border-radius: 3px; outline: none; margin-top: 12px; position: relative; z-index: 2;
}
.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%;
    background: var(--zuune-mint); cursor: pointer; box-shadow: 0 0 15px rgba(0, 211, 160, 0.6);
    border: 4px solid #000;
}
.range-progress { height: 6px; background: var(--zuune-mint); border-radius: 3px; margin-top: -6px; position: relative; z-index: 1; }

.calc-footer { font-size: 13px; color: var(--text-muted); display: flex; gap: 8px; }

/* Pricing */
.billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 18px;
    border-radius: 99px;
    border: 1px solid var(--border-color);
    margin-top: 16px;
}
.billing-toggle span {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.3s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.billing-toggle span.active { color: #fff; }
.toggle-switch {
    width: 50px;
    height: 26px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}
.toggle-switch.active { background: var(--zuune-mint); }
.toggle-knob {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.discount-pill {
    background: rgba(0, 211, 160, 0.15);
    color: var(--zuune-mint);
    border: 1px solid rgba(0, 211, 160, 0.35);
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 99px;
    font-weight: 800;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}
.billing-toggle span.active .discount-pill {
    background: var(--zuune-mint);
    color: #000;
    box-shadow: 0 0 12px rgba(0, 211, 160, 0.4);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
    padding-top: 24px;
    margin-top: 16px;
}
.pricing-card {
    padding: 40px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: visible !important;
}
.popular-card {
    padding: 48px 32px;
    transform: scale(1.05);
    background: #0b1421;
    border: 1px solid rgba(0, 211, 160, 0.5);
    z-index: 10;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 211, 160, 0.15), 0 0 0 1px rgba(0, 211, 160, 0.2);
    overflow: visible !important;
}
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--zuune-mint);
    color: #000;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 211, 160, 0.5);
    z-index: 20;
    white-space: nowrap;
}
.plan-name { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.plan-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; min-height: 42px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.currency { font-size: 1rem; font-weight: 600; color: var(--text-muted); }
.amount { font-size: 3rem; font-weight: 800; line-height: 1; letter-spacing: -1px; }
.period { color: var(--text-muted); font-size: 0.9rem; }
.plan-billed { font-size: 12px; color: var(--text-muted); margin-bottom: 24px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.plan-features li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; }
.plan-features li.disabled { opacity: 0.5; }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.04); }
.faq-btn { width: 100%; text-align: left; padding: 24px; background: none; border: none; color: #fff; font-size: 16px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: inherit; }
.faq-btn i { transition: transform 0.3s; color: var(--text-muted); }
.faq-item.active .faq-btn i { transform: rotate(180deg); color: var(--zuune-mint); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 24px; color: var(--text-muted); font-size: 15px; }
.faq-item.active .faq-content { padding-bottom: 24px; max-height: 200px; }

/* Footer */
.footer { border-top: 1px solid var(--border-color); padding: 80px 0 40px; background: #03050a; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; margin-bottom: 64px; }
.footer-links { display: contents; }
.footer-links h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 12px; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--zuune-mint); }
.footer-brand p { color: var(--text-muted); font-size: 14px; max-width: 300px; }
.footer-bottom { text-align: center; color: var(--text-muted); font-size: 13px; border-top: 1px solid var(--border-color); padding-top: 32px; }

/* Animations */
@keyframes blink { 0%, 100% { opacity: 0.2; } 20% { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: rotate(-5deg) translateY(0); } 50% { transform: rotate(-5deg) translateY(-10px); } }

/* Grid 2 */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; }

/* Media Pills (Bento) */
.media-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.media-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    padding: 4px 10px;
    font-size: 12px;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.media-pill i {
    color: var(--zuune-mint);
}

/* Scheduling Section Details */
.schedule-benefits {
    display: flex;
    flex-direction: column;
}
.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.bg-blue-subtle {
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.25);
}
.bg-green-subtle {
    background: rgba(0, 211, 160, 0.12);
    color: var(--zuune-mint);
    border: 1px solid rgba(0, 211, 160, 0.25);
}
.bg-amber-subtle {
    background: rgba(255, 179, 64, 0.12);
    color: #ffb340;
    border: 1px solid rgba(255, 179, 64, 0.25);
}
.benefit-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.benefit-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Schedule Mockup Card */
.schedule-mockup-wrapper {
    position: relative;
}
.schedule-mockup-card {
    background: #0d1522;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.sm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 14px;
    margin-bottom: 16px;
}
.sm-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sm-tag {
    font-size: 11px;
    font-weight: 700;
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 4px 10px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.sm-type-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}
.type-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    padding: 8px 6px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: var(--transition);
}
.type-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}
.type-btn.active {
    background: rgba(0, 211, 160, 0.15);
    border-color: var(--zuune-mint);
    color: var(--zuune-mint);
}
.sm-content-preview {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}
.sm-audio-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 211, 160, 0.08);
    border: 1px solid rgba(0, 211, 160, 0.2);
    border-radius: 99px;
    padding: 8px 16px;
}
.sm-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.sm-time-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}
.time-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.time-item .lbl {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.time-item .val {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}
.time-item .val.highlight {
    color: var(--zuune-mint);
}
.sm-btn-confirm {
    background: rgba(0, 211, 160, 0.12);
    border: 1px solid var(--zuune-mint);
    color: var(--zuune-mint);
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: -0.2px;
}

/* Responsivity */
@media (max-width: 1024px) {
    .grid-2 { grid-template-columns: 1fr !important; gap: 32px; }
    .split-section { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
    .calc-info { border-right: none; border-bottom: 1px solid var(--border-color); padding: 32px 20px; }
    .calc-controls { padding: 32px 20px; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .col-span-2, .col-span-3, .col-span-4 { grid-column: span 2; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .popular-card { transform: none; }
}

@media (max-width: 768px) {
    /* Global Container Lock */
    .container { padding: 0 16px; width: 100%; max-width: 100%; }
    .section { padding: 60px 0; }
    .section-title { font-size: 1.85rem; line-height: 1.2; word-break: break-word; }
    .section-subtitle { font-size: 0.95rem; }

    /* Nav */
    .nav-links, .nav-actions { display: none; }
    .mobile-menu-btn { display: block; }

    /* Hero */
    .hero { padding: 110px 0 50px; }
    .hero-title { font-size: 2.1rem; line-height: 1.18; letter-spacing: -0.5px; word-break: break-word; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 24px; }
    .hero-visual-container { margin: 32px auto 0; perspective: none; width: 100%; max-width: 100%; }
    .mac-window { transform: none !important; width: 100%; max-width: 100%; border-radius: 12px; }
    
    /* WhatsApp Simulation: Hide desktop sidebar, focus 100% on chat */
    .chat-interface { height: 380px; width: 100%; }
    .chat-sidebar { display: none !important; }
    .chat-main { width: 100%; min-width: 0; }
    .chat-header { padding: 10px 12px; gap: 8px; flex-wrap: wrap; }
    .zuune-floating-panel { padding: 4px 8px; gap: 4px; margin-left: auto; }
    .z-btn { padding: 4px 8px; font-size: 11px; }
    .chat-messages { padding: 12px 10px; gap: 8px; }
    .msg { max-width: 88%; font-size: 13px; padding: 8px 12px; }
    .chat-input-area { padding: 10px 12px; gap: 8px; }

    /* Logos */
    .logos-section { padding: 30px 0; }
    .logos-section p { font-size: 12px; }
    .logo-track { gap: 20px; }
    .logo-track span { font-size: 16px; }

    /* Split Section & Metrics */
    .floating-badge { position: static !important; margin-top: 16px; transform: none !important; display: inline-flex; }
    .feature-list { gap: 16px; }

    /* Bento Grid */
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 16px; }
    .col-span-1, .col-span-2, .col-span-3, .col-span-4 { grid-column: span 1; }
    .row-span-1, .row-span-2 { grid-row: span 1; }
    .bento-card { padding: 22px 16px; }
    .bento-bg-icon { display: none !important; }
    .card-inner.flex-row { flex-direction: column; gap: 20px; align-items: stretch; }
    .date-mockup { align-items: stretch; min-width: 0; }

    /* Scheduling Section */
    .scheduling-section .card-inner { padding: 24px 16px !important; }
    .schedule-mockup-card { padding: 16px; border-radius: 12px; width: 100%; }
    .benefit-item { gap: 12px; }
    .benefit-icon { width: 38px; height: 38px; font-size: 18px; border-radius: 10px; }
    .benefit-title { font-size: 15px; }
    .benefit-desc { font-size: 13px; }
    .sm-header { flex-wrap: wrap; gap: 8px; }
    .sm-type-selector { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .sm-time-row { flex-direction: column; gap: 8px; }

    /* ROI Calculator */
    .calc-info, .calc-controls { padding: 20px 14px; }
    .calc-results { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
    .result-box { padding: 14px 10px; border-radius: 12px; }
    .result-value { font-size: 1.5rem; }
    .result-label { font-size: 12px; }
    .result-sub { font-size: 11px; }
    .range-val { font-size: 14px; padding: 2px 8px; }

    /* Pricing Section */
    .pricing-grid { grid-template-columns: 1fr; padding-top: 16px; gap: 20px; }
    .popular-card { transform: none !important; padding: 36px 20px; }
    .pricing-card { padding: 32px 20px; }

    /* Footer */
    .footer { padding: 50px 0 30px; }
    .footer-content { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
    
    /* Background Glows */
    .bg-glow, .bg-glow-wrapper { display: none !important; }
}
