:root {
    --bg-primary: #09090b;
    --bg-secondary: #0f0f13;
    --bg-tertiary: #16161d;
    --bg-card: #12121a;
    --accent: #8b5cf6;
    --accent-hover: #7c3aed;
    --accent-light: #a78bfa;
    --accent-glow: rgba(139, 92, 246, 0.15);
    --accent-glow-strong: rgba(139, 92, 246, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-tertiary: #71717a;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===== PARTICLES ===== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 50%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-glow);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 600px;
    margin: 16px auto 0;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 48px;
    background: rgba(9, 9, 11, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 48px;
    background: rgba(9, 9, 11, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-weight: 500;
    font-size: 15px;
}

.nav-links a {
    color: var(--text-secondary);
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 100px 20px 60px;
    position: relative;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 20% 30%, rgba(167, 139, 250, 0.06) 0%, transparent 40%);
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 76px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -2px;
}

.hero-line {
    display: block;
}

.hero h1 .hero-line:first-child {
    background: linear-gradient(135deg, #ffffff 0%, #d4d4d8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-badge-container {
    display: flex;
    justify-content: center;
}

.dev-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-light);
    animation: pulse-badge 2s infinite;
}

.dev-badge svg {
    animation: spin 3s linear infinite;
    color: var(--accent-light);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-badge {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
    }
    50% { 
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
    }
}

/* ===== MOCKUP ===== */
.hero-mockup {
    width: 100%;
    max-width: 1100px;
    margin-top: 80px;
    perspective: 1200px;
    position: relative;
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.mockup-window {
    background: var(--bg-tertiary);
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg), 0 0 80px rgba(139, 92, 246, 0.08);
    transform: rotateX(4deg) scale(0.96);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.mockup-window:hover {
    transform: rotateX(0deg) scale(1);
}

.mockup-header {
    height: 44px;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-bottom: 1px solid var(--border);
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot-r { background: #ef4444; }
.dot-y { background: #eab308; }
.dot-g { background: #22c55e; }

.mockup-title {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.mockup-actions {
    display: flex;
    gap: 12px;
}

.mockup-action-dot {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
}

.mockup-body {
    display: flex;
    height: 480px;
}

.mockup-sidebar {
    width: 300px;
    display: flex;
    border-right: 1px solid var(--border);
}

.mockup-server-list {
    width: 72px;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border-right: 1px solid var(--border);
}

.mockup-server {
    position: relative;
}

.mockup-server.active::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--accent);
    border-radius: 0 4px 4px 0;
}

.server-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: white;
    transition: border-radius 0.2s;
    cursor: pointer;
}

.mockup-server.active .server-icon {
    border-radius: 12px;
}

.mockup-channels {
    flex: 1;
    background: var(--bg-secondary);
    padding: 16px 12px;
}

.channel-category {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-tertiary);
    letter-spacing: 0.5px;
    margin-top: 16px;
    margin-bottom: 6px;
    padding-left: 4px;
}

.channel-category:first-child {
    margin-top: 0;
}

.channel {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: var(--radius-xs);
    cursor: pointer;
}

.channel.active {
    background: rgba(139, 92, 246, 0.15);
    color: var(--text-primary);
}

.mockup-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
}

.chat-message {
    display: flex;
    gap: 16px;
    padding: 12px 24px;
    transition: background 0.2s;
}

.chat-message:hover {
    background: rgba(255, 255, 255, 0.02);
}

.msg-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.msg-content {
    flex: 1;
    min-width: 0;
}

.msg-author {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.msg-time {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-tertiary);
    margin-left: 8px;
}

.msg-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.mockup-input-area {
    margin-top: auto;
    padding: 16px 24px;
}

.mockup-input {
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    border: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.input-placeholder {
    color: var(--text-tertiary);
    font-size: 14px;
}

.input-actions {
    display: flex;
    gap: 12px;
    font-size: 18px;
    opacity: 0.5;
}

/* ===== FEATURES ===== */
.features {
    padding: 120px 20px;
    background: var(--bg-secondary);
    position: relative;
}

.features h2 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px var(--accent-glow);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon {
    color: var(--accent-light);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== SHOWCASE ===== */
.showcase {
    padding: 120px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.showcase-item:last-child {
    margin-bottom: 0;
}

.showcase-item.reverse {
    direction: rtl;
}

.showcase-item.reverse > * {
    direction: ltr;
}

.showcase-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.showcase-content > p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.showcase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.showcase-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

/* Voice Demo */
.voice-demo {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.voice-user {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    transition: var(--transition);
}

.voice-user.speaking {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.voice-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 16px;
}

.voice-user.speaking .voice-avatar {
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3);
    animation: speaking-ring 1.5s infinite;
}

@keyframes speaking-ring {
    0%, 100% { box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3); }
    50% { box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.15); }
}

.voice-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.voice-name {
    font-weight: 600;
    font-size: 14px;
}

.voice-bars {
    display: flex;
    gap: 3px;
    align-items: flex-end;
    height: 16px;
}

.voice-bars span {
    width: 4px;
    background: var(--accent);
    border-radius: 2px;
    animation: voice-bar 0.8s infinite ease-in-out;
}

.voice-bars span:nth-child(1) { animation-delay: 0s; height: 8px; }
.voice-bars span:nth-child(2) { animation-delay: 0.1s; height: 14px; }
.voice-bars span:nth-child(3) { animation-delay: 0.2s; height: 10px; }
.voice-bars span:nth-child(4) { animation-delay: 0.3s; height: 16px; }
.voice-bars span:nth-child(5) { animation-delay: 0.4s; height: 6px; }

@keyframes voice-bar {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}

.voice-bars.muted span {
    animation: none;
    height: 4px;
    background: var(--text-tertiary);
}

.voice-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.vc-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-tertiary);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vc-btn.active {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.vc-btn.danger {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
}

.vc-btn:hover {
    transform: scale(1.1);
}

/* Security Demo */
.security-demo {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 48px 32px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.shield-icon {
    margin-bottom: 32px;
    animation: float 3s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.encryption-lines {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.enc-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.enc-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.enc-status {
    font-size: 13px;
    font-weight: 600;
    color: #22c55e;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 120px 20px;
    background: var(--bg-secondary);
}

.how-it-works h2 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    background: var(--bg-card);
    padding: 48px 36px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 16px;
    right: 24px;
}

.step-icon {
    margin-bottom: 24px;
    color: var(--accent-light);
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
    flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq {
    padding: 120px 20px;
    background: var(--bg-primary);
}

.faq h2 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-item.active {
    border-color: rgba(139, 92, 246, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-light);
}

.faq-chevron {
    transition: transform 0.3s;
    color: var(--text-tertiary);
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

/* ===== FOOTER ===== */
footer {
    padding: 60px 48px 40px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 400px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-glow);
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--accent-light);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-tertiary);
    font-size: 13px;
}

/* ===== SCROLL TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-item {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .showcase-item.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 14px 20px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 24px;
        border-left: 1px solid var(--border);
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .mockup-sidebar {
        display: none;
    }

    .mockup-body {
        height: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .features h2, .how-it-works h2, .faq h2 {
        font-size: 32px;
    }

    .steps-grid {
        flex-direction: column;
        gap: 16px;
    }

    .step-connector {
        width: 2px;
        height: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 34px;
    }

    .hero {
        padding: 60px 16px 40px;
    }

    footer {
        padding: 48px 20px 32px;
    }
}