html {
    scroll-behavior: smooth;
}

:root {
    --bg-dark: #060913;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --primary: #0ea5e9;
    --primary-glow: rgba(14, 165, 233, 0.3);
    --secondary: #6366f1;
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    --gradient: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
    --card-hover-bg: rgba(30, 41, 59, 0.7);
}

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

body {
    font-family: 'Noto Sans Hebrew', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans Hebrew', sans-serif;
    font-weight: 800;
}

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

/* Background Blobs */
.blob-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    opacity: 0.6;
    animation: blob-drift 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-2 {
    top: 40%;
    left: 60%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 23, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
}

.logo i {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn-primary, .btn-primary-small, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient);
    padding: 1rem 2rem;
    color: white;
    border: none;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.7);
}

.btn-primary-small {
    background: var(--gradient);
    padding: 0.5rem 1.5rem;
    color: white;
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1rem 2rem;
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: var(--card-hover-bg);
}

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

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--glass-shadow);
}

/* Hero Section */
.hero {
    padding: 150px 2rem 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    font-family: 'Noto Sans Hebrew', sans-serif;
}

.stat-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Hero Visual (Phone Mockup) */
.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    min-height: 650px;
    margin-right: 80px; /* Push left to avoid text overlap */
}

.phone-mockup {
    width: 280px;
    height: 580px;
    background: #1e293b;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 4px solid #334155;
    position: absolute;
    transform-origin: center center;
    transition: transform 0.1s ease-out, box-shadow 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
}

.phone-left {
    transform: translateX(180px) translateY(40px) translateZ(-150px) rotateZ(20deg) rotateY(calc(15deg + var(--tilt-y))) rotateX(var(--tilt-x));
    z-index: 1;
    opacity: 0.7;
    filter: blur(1px);
}

.phone-center {
    transform: translateZ(50px) rotateY(calc(-5deg + var(--tilt-y))) rotateX(var(--tilt-x));
    z-index: 3;
    animation: float-center 6s ease-in-out infinite;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(59, 130, 246, 0.3);
}

.phone-right {
    transform: translateX(-180px) translateY(40px) translateZ(-150px) rotateZ(-20deg) rotateY(calc(-15deg + var(--tilt-y))) rotateX(var(--tilt-x));
    z-index: 2;
    opacity: 0.7;
    filter: blur(1px);
}

.phone-left:hover {
    transform: translateX(200px) translateY(-30px) translateZ(80px) rotateZ(5deg) rotateY(calc(5deg + var(--tilt-y))) rotateX(var(--tilt-x)) scale(1.05);
    z-index: 10;
    opacity: 1;
    filter: none;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 50px rgba(59, 130, 246, 0.5);
    cursor: pointer;
}

.phone-center:hover {
    transform: translateY(-30px) translateZ(120px) rotateY(var(--tilt-y)) rotateX(var(--tilt-x)) scale(1.05);
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 50px rgba(59, 130, 246, 0.5);
    cursor: pointer;
    animation: none;
}

.phone-right:hover {
    transform: translateX(-200px) translateY(-30px) translateZ(80px) rotateZ(-5deg) rotateY(calc(-5deg + var(--tilt-y))) rotateX(var(--tilt-x)) scale(1.05);
    z-index: 10;
    opacity: 1;
    filter: none;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 50px rgba(59, 130, 246, 0.5);
    cursor: pointer;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0f172a;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.chat-header {
    background: #1e293b;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #334155;
}

.chat-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.chat-header div {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.chat-header strong {
    font-size: 0.95rem;
    color: #f0f4f8;
}

.chat-header small {
    color: #10b981;
    font-size: 0.75rem;
}

.chat-messages {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.85rem;
}

.msg {
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 85%;
    line-height: 1.4;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.msg.received {
    background: #1e293b;
    align-self: flex-start;
    border-bottom-right-radius: 0;
}

.msg.sent {
    background: var(--primary);
    color: white;
    align-self: flex-end;
    border-bottom-left-radius: 0;
}

.menu-card {
    background: #1e293b;
    border-radius: 15px;
    overflow: hidden;
    width: 90%;
    align-self: flex-start;
}

.menu-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.menu-card div {
    padding: 10px;
}

.menu-card button {
    width: 100%;
    padding: 8px;
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary);
    border: none;
    border-radius: 8px;
    margin-top: 8px;
    font-weight: bold;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.icon-1 { top: 10%; right: 0; animation: float 4s ease-in-out infinite 0.5s; }
.icon-2 { bottom: 20%; left: -20px; animation: float 5s ease-in-out infinite 1s; }
.icon-3 { top: 50%; right: -30px; animation: float 6s ease-in-out infinite 1.5s; color: var(--secondary); }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes float-center {
    0% { transform: translateZ(50px) rotateY(-5deg) translateY(0px); }
    50% { transform: translateZ(50px) rotateY(-5deg) translateY(-15px); }
    100% { transform: translateZ(50px) rotateY(-5deg) translateY(0px); }
}

/* Sections General */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Features */
.features {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.feature-card {
    padding: 2rem;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: -1;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--card-hover-bg);
    border-color: rgba(59, 130, 246, 0.4);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

/* ══ Live Demo Section ══ */
.demo-section {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.demo-tabs {
    display: flex;
    background: rgba(15, 23, 42, 0.4);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    backdrop-filter: blur(8px);
}
.demo-tab {
    flex: 1;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
    font-family: 'Noto Sans Hebrew', sans-serif;
    font-size: 0.95rem;
    text-align: center;
    white-space: nowrap;
}
.demo-tab.active {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}
.demo-panel { display: none; }
.demo-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.demo-visual {
    background: linear-gradient(145deg, rgba(30,41,59,0.6), rgba(15,23,42,0.8));
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}
.demo-screen-bar {
    background: #1e293b;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #334155;
}
.demo-dot { width: 10px; height: 10px; border-radius: 50%; }
.demo-screen-content { padding: 20px; }
.demo-text h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.demo-text p { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.7; }
.demo-steps { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.demo-steps li { display: flex; align-items: flex-start; gap: 0.8rem; color: var(--text-muted); }
.demo-steps li span.step-icon { 
    width: 28px; height: 28px; border-radius: 50%; background: rgba(59,130,246,0.15);
    display: flex; align-items: center; justify-content: center; font-size: 0.8rem;
    color: var(--primary); flex-shrink: 0; margin-top: 2px;
}

/* ══ Testimonials ══ */
.testimonials { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonial-card {
    padding: 2rem;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s, border-color 0.3s;
}
.testimonial-card:hover { transform: translateY(-5px); border-color: rgba(59,130,246,0.3); }
.stars { color: #fbbf24; margin-bottom: 1rem; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-text { color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { 
    width: 45px; height: 45px; border-radius: 50%; 
    background: var(--gradient); display: flex; align-items: center;
    justify-content: center; font-weight: 800; font-size: 1.1rem; color: white;
}
.author-name { font-weight: 700; }
.author-role { font-size: 0.85rem; color: var(--text-muted); }

/* ══ Pricing ══ */
.pricing { padding: 5rem 2rem; max-width: 1000px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.pricing-card {
    padding: 2.5rem;
    border-radius: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--glass-shadow), 0 0 20px var(--primary-glow);
}
.pricing-card.featured {
    background: linear-gradient(145deg, rgba(14, 165, 233, 0.1), rgba(99, 102, 241, 0.1));
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 0 40px rgba(14, 165, 233, 0.15);
}
.pricing-card.featured:hover {
    border-color: var(--secondary);
    box-shadow: var(--glass-shadow), 0 0 35px rgba(99, 102, 241, 0.3);
}
.featured-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gradient); color: white; padding: 4px 18px;
    border-radius: 50px; font-size: 0.8rem; font-weight: 700; white-space: nowrap;
}
.price-label { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0.5rem; }
.price-value { font-size: 3.5rem; font-weight: 900; font-family: 'Outfit', sans-serif; line-height: 1; margin-bottom: 0.3rem; }
.price-sub { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 2rem; }
.price-features { list-style: none; text-align: right; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.7rem; }
.price-features li { display: flex; align-items: center; gap: 0.7rem; color: var(--text-muted); }
.price-features li i { color: #10b981; width: 16px; }

/* ══ KDS Demo Visual ══ */
.kds-row {
    display: flex; gap: 8px; flex-wrap: wrap;
}
.kds-order-card {
    background: rgba(30,41,59,0.8); border: 1px solid #334155;
    border-radius: 10px; padding: 10px; flex: 1; min-width: 100px;
}
.kds-table { font-size: 0.75rem; color: var(--text-muted); }
.kds-item { font-size: 0.85rem; font-weight: 600; margin: 4px 0; }
.kds-note { font-size: 0.7rem; color: #94a3b8; font-style: italic; }
.kds-time { font-size: 0.7rem; margin-top: 6px; }
.kds-badge { 
    display: inline-block; padding: 2px 8px; border-radius: 50px;
    font-size: 0.65rem; font-weight: 700;
}
.badge-new { background: rgba(239,68,68,0.2); color: #f87171; }
.badge-prep { background: rgba(251,191,36,0.2); color: #fbbf24; }
.badge-done { background: rgba(16,185,129,0.2); color: #10b981; }

/* ══ Stats Banner ══ */
.stats-banner {
    background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(139,92,246,0.08));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 3rem 2rem;
}
.stats-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-big-number { font-size: 3rem; font-weight: 900; font-family: 'Outfit', sans-serif; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-big-label { color: var(--text-muted); font-size: 0.95rem; }

/* Steps */
.steps {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    position: absolute;
    top: 5px;
    right: 20px;
    line-height: 1;
    font-family: 'Noto Sans Hebrew', sans-serif;
    z-index: 0;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.step p {
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto 5rem;
}

.cta-card {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(rgba(10, 14, 23, 0.8), rgba(10, 14, 23, 0.9)), 
                radial-gradient(circle at top left, rgba(59, 130, 246, 0.2), transparent),
                radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.2), transparent);
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-card p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary.large {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

/* Reviewers Section */
.reviewers-section {
    padding: 2rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.reviewers-card {
    padding: 3rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.8));
    border: 1px solid rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.reviewers-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    animation: blob-drift 15s infinite alternate linear;
    z-index: -1;
}

.reviewers-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #f0f4f8;
}

.reviewers-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.spots-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 2rem;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

@keyframes blob-drift {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 3rem 2rem 1rem;
    background: rgba(0, 0, 0, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.socials {
    display: flex;
    gap: 1rem;
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.socials a:hover {
    background: var(--primary);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Admin Visual Section */
.admin-visual-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.admin-visual-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.6));
    border-radius: 30px;
    padding: 4rem;
    border: 1px solid var(--glass-border);
}

.admin-text {
    flex: 1;
}

.admin-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.admin-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.admin-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.admin-image-container {
    flex: 1;
    position: relative;
}

.admin-dashboard-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 2px solid #334155;
    transition: transform 0.5s ease;
}

.admin-dashboard-img:hover {
    transform: scale(1.02);
}

.floating-stat {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem 1.5rem;
    background: rgba(30, 41, 59, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    animation: float 4s ease-in-out infinite;
}

.floating-stat div {
    display: flex;
    flex-direction: column;
}

.floating-stat strong {
    font-size: 1.2rem;
    color: #f0f4f8;
}

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

/* Floating Action Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-shadow 2s infinite;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.8);
    color: white;
}

@keyframes pulse-shadow {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}
.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

/* ══ Responsive ══ */
/* ══ Laptop / Medium Screens (max-width: 1024px) ══ */
@media (max-width: 1024px) {
    .hero {
        padding: 120px 2rem 80px;
    }
    .hero-content {
        gap: 2rem;
    }
    .hero-text h1 {
        font-size: 3rem;
    }
    .hero-visual {
        min-height: 520px;
        margin-right: 40px;
    }
    .phone-mockup {
        width: 230px;
        height: 470px;
    }
    .phone-left {
        transform: translateX(110px) translateY(30px) translateZ(-100px) rotateZ(15deg) scale(0.85);
    }
    .phone-center {
        transform: translateZ(20px) scale(0.85);
    }
    .phone-right {
        transform: translateX(-110px) translateY(30px) translateZ(-100px) rotateZ(-15deg) scale(0.85);
    }
    .phone-left:hover {
        transform: translateX(130px) translateY(-20px) translateZ(80px) rotateZ(5deg) scale(0.9);
    }
    .phone-center:hover {
        transform: translateY(-20px) translateZ(100px) scale(0.9);
    }
    .phone-right:hover {
        transform: translateX(-130px) translateY(-20px) translateZ(80px) rotateZ(-5deg) scale(0.9);
    }
    .admin-visual-content {
        padding: 3rem;
        gap: 3rem;
    }
    .admin-text h2 {
        font-size: 2.2rem;
    }
}

/* ══ Mobile / Responsive ══ */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    .nav-container {
        padding: 0.8rem 1.2rem;
    }
    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(10, 14, 23, 0.98);
        width: 100%;
        max-width: 300px;
        height: 100vh;
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.6);
        padding: 4rem 2rem;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-right: 1px solid var(--glass-border);
        z-index: 1001;
        gap: 1.5rem;
    }
    .nav-links.active {
        left: 0;
    }
    .nav-links li {
        width: 100%;
        margin: 0.5rem 0;
    }
    .nav-links a {
        font-size: 1.15rem;
        display: block;
        padding: 0.8rem;
        border-radius: 12px;
        transition: background 0.3s;
    }
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.05);
    }
    .mobile-menu-btn {
        display: block;
        z-index: 1002;
        padding: 0.5rem;
        margin-left: 0;
        cursor: pointer;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 100px 1.2rem 40px;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    .hero-text p {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 2rem;
        width: 100%;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        width: 100%;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-text {
        font-size: 0.8rem;
    }
    
    /* Hero Visual Mobile */
    .hero-visual {
        margin-right: 0;
        min-height: auto;
        perspective: none;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1.5rem 0 0;
        width: 100%;
    }
    .phone-mockup {
        position: relative !important;
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
        width: 230px;
        height: 480px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(59, 130, 246, 0.15);
        animation: float 4s ease-in-out infinite !important;
        flex-shrink: 0;
    }
    .phone-mockup:hover {
        transform: none !important;
    }
    .phone-left, .phone-right {
        display: none;
    }
    .phone-center {
        display: block;
    }
    .floating-icon {
        display: none;
    }
    
    /* General Section Mobile spacing */
    .section-header {
        margin-bottom: 2.5rem;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .section-header p {
        font-size: 1rem;
    }
    .features, .demo-section, .testimonials, .pricing, .steps, .cta-section, .admin-visual-section {
        padding: 3.5rem 1.2rem;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Admin Visual Content */
    .admin-visual-content {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 2rem;
        border-radius: 20px;
    }
    .admin-text h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    .admin-text p {
        font-size: 1rem;
        text-align: center;
    }
    .admin-features-list li {
        font-size: 1rem;
    }
    .admin-image-container {
        width: 100%;
    }
    .floating-stat {
        bottom: -10px;
        right: 10px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Live Demo Section - 2x2 grid for thumb-friendly navigation on mobile */
    .demo-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        background: transparent;
        border: none;
        padding: 0;
        border-radius: 0;
        max-width: 100%;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        margin-bottom: 2rem;
    }
    .demo-tab {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 50px;
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        text-align: center;
        width: 100%;
    }
    .demo-tab.active {
        background: var(--gradient);
        border-color: transparent;
        color: white;
    }
    .demo-panel.active {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .demo-text h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    .demo-text p {
        text-align: center;
    }
    .demo-steps {
        max-width: 450px;
        margin: 0 auto;
    }
    
    /* Steps Container */
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .step {
        padding: 2rem 1.5rem;
    }
    .step-number {
        font-size: 4rem;
        top: 2px;
        right: 15px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Pricing Grid */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    .price-value {
        font-size: 2.8rem;
    }
    .price-features {
        font-size: 0.9rem;
    }
    
    /* Stats banner */
    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .stat-big-number {
        font-size: 2.2rem;
    }
    .stat-big-label {
        font-size: 0.85rem;
    }
    
    /* CTA Card */
    .cta-card {
        padding: 3rem 1.5rem;
        border-radius: 20px;
    }
    .cta-card h2 {
        font-size: 1.8rem;
    }
    .cta-card p {
        font-size: 1rem;
    }
    
    /* Floating Whatsapp & Telegram Offset */
    .floating-btn {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        left: auto;
        width: 45px;
        height: 45px;
    }
}
