/* ==========================================================================
   WinSer Panel - Modern Dark Glassmorphic Design System
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-dark: #0a0d14;
    --bg-card: rgba(18, 24, 38, 0.65);
    --bg-card-hover: rgba(26, 35, 54, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 242, 254, 0.3);

    --primary-cyan: #00f2fe;
    --primary-blue: #4facfe;
    --accent-purple: #7f00ff;
    --accent-green: #00e676;
    --accent-amber: #ffab00;
    --accent-red: #ff1744;

    --text-main: #f0f4f8;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    /* Fonts & Radii */
    --font-ar: 'Cairo', system-ui, -apple-system, sans-serif;
    --font-en: 'Outfit', sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    /* Transitions & Shadows */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 0 30px rgba(0, 242, 254, 0.15);
    --glass-backdrop: blur(16px) saturate(180%);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-ar);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Ambient Glow Background Blobs */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
}

.glow-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, rgba(0,0,0,0) 70%);
    top: -100px;
    right: -100px;
}

.glow-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(127, 0, 255, 0.12) 0%, rgba(0,0,0,0) 70%);
    top: 30%;
    left: -200px;
}

.glow-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.12) 0%, rgba(0,0,0,0) 70%);
    bottom: 10%;
    right: 10%;
}

/* Glass Card Component */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(0, 242, 254, 0.25);
    box-shadow: var(--shadow-glow);
}

/* Typography Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }
.text-green { color: var(--accent-green); }

.sub-title {
    color: var(--primary-cyan);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-desc {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-family: var(--font-ar);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-blue) 100%);
    color: #050811;
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 242, 254, 0.5);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-main);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
}

.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.88rem;
}

.btn-xs {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-xs:hover {
    background: var(--primary-blue);
    color: #000;
}

.btn-block {
    width: 100%;
}

/* Navbar Header */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    backdrop-filter: blur(20px);
    background: rgba(10, 13, 20, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.3rem;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-name {
    font-size: 1.35rem;
    font-weight: 800;
    font-family: var(--font-en);
    letter-spacing: -0.5px;
}

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

.logo-badge {
    background: rgba(0, 242, 254, 0.15);
    color: var(--primary-cyan);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 242, 254, 0.3);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-cyan);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding: 10rem 0 6rem;
    position: relative;
}

.grid-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 30px;
    color: var(--primary-cyan);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.1rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

/* Quick Installer Code Box */
.quick-command-box {
    background: rgba(12, 16, 26, 0.9);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.command-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--text-dim);
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.command-body {
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.command-body code {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--primary-cyan);
    direction: ltr;
    text-align: left;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.copy-btn {
    background: rgba(0, 242, 254, 0.15);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--primary-cyan);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-ar);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);

    flex-shrink: 0;
}

.copy-btn:hover {
    background: var(--primary-cyan);
    color: #000;
}

/* Hero Media Image Showcase */
.hero-media {
    position: relative;
}

.image-wrapper {
    position: relative;
    padding: 0.75rem;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    animation: float 4s ease-in-out infinite alternate;
}

.badge-top-right {
    top: 20px;
    right: -10px;
}

.badge-bottom-left {
    bottom: 20px;
    left: -10px;
    animation-delay: -2s;
}

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

.badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.badge-icon.green { background: rgba(0, 230, 118, 0.2); color: var(--accent-green); }
.badge-icon.blue { background: rgba(79, 172, 254, 0.2); color: var(--primary-blue); }

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-label {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.badge-value {
    font-size: 0.9rem;
    font-weight: 700;
}

/* Stats Section */
.stats-section {
    padding: 3rem 0;
}

.grid-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    padding: 1.75rem;
    text-align: center;
}

.stat-icon {
    font-size: 1.75rem;
    color: var(--primary-cyan);
    margin-bottom: 0.75rem;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: var(--font-en);
    margin-bottom: 0.25rem;
}

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

/* Features Grid */
.features-section {
    padding: 6rem 0;
}

.grid-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2.25rem 1.75rem;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
    opacity: 0;
    transition: var(--transition);
}

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

.feature-icon {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.glow-blue { background: rgba(0, 242, 254, 0.12); color: var(--primary-cyan); }
.glow-purple { background: rgba(127, 0, 255, 0.12); color: #a855f7; }
.glow-green { background: rgba(0, 230, 118, 0.12); color: var(--accent-green); }
.glow-amber { background: rgba(255, 171, 0, 0.12); color: var(--accent-amber); }
.glow-cyan { background: rgba(79, 172, 254, 0.12); color: var(--primary-blue); }
.glow-red { background: rgba(255, 23, 68, 0.12); color: var(--accent-red); }

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

/* Interactive Demo Showcase */
.demo-section {
    padding: 6rem 0;
}

.interactive-demo-container {
    padding: 2rem;
}

.demo-tabs {
    display: flex;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
}

.demo-tab {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-ar);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.demo-tab:hover, .demo-tab.active {
    background: rgba(0, 242, 254, 0.15);
    color: var(--primary-cyan);
}

.demo-window {
    background: #0d111c;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.window-header {
    background: rgba(255,255,255,0.03);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.window-buttons {
    display: flex;
    gap: 6px;
}

.btn-dot { width: 10px; height: 10px; border-radius: 50%; }
.btn-dot.close { background: #ff5f56; }
.btn-dot.min { background: #ffbd2e; }
.btn-dot.max { background: #27c93f; }

.window-url {
    background: rgba(0,0,0,0.4);
    padding: 0.2rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-dim);
    font-family: var(--font-en);
    direction: ltr;
}

.window-content {
    padding: 1.75rem;
    min-height: 320px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.demo-grid-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.metric-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: var(--radius-sm);
}

.m-title {
    display: block;
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-bottom: 0.25rem;
}

.m-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    display: block;
    margin-bottom: 0.5rem;
}

.progress-bar {
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--primary-cyan);
}
.progress.green { background: var(--accent-green); }

.demo-table-wrapper {
    margin-top: 1rem;
}

.demo-table-wrapper h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.demo-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.demo-table th, .demo-table td {
    padding: 0.75rem 1rem;
    text-align: right;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.demo-table th {
    color: var(--text-dim);
    font-weight: 600;
}

.status-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.status-tag.active {
    background: rgba(0, 230, 118, 0.15);
    color: var(--accent-green);
}

/* Install Section */
.install-section {
    padding: 6rem 0;
}

.grid-install {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.install-steps {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    color: #000;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

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

.sys-req-box {
    padding: 2.25rem;
}

.sys-req-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary-cyan);
}

.req-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.req-note {
    margin-top: 2rem;
    padding: 0.85rem 1rem;
    background: rgba(0, 242, 254, 0.08);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 242, 254, 0.2);
    font-size: 0.85rem;
    color: var(--primary-cyan);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Pricing Cards */
.pricing-section {
    padding: 6rem 0;
}

.grid-pricing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    padding: 2.5rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card.featured {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 40px rgba(0, 242, 254, 0.2);
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    color: #000;
    font-weight: 800;
    font-size: 0.78rem;
    padding: 0.25rem 1rem;
    border-radius: 20px;
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.price-header p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.price-amount {
    font-size: 2.75rem;
    font-weight: 900;
    font-family: var(--font-en);
    color: var(--primary-cyan);
}

.price-amount span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: var(--font-ar);
    font-weight: 400;
}

.price-features {
    margin-bottom: 2rem;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.price-features li i {
    color: var(--accent-green);
}

/* FAQ Accordion */
.faq-section {
    padding: 6rem 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    padding: 1.5rem 1.75rem;
    cursor: pointer;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question h4 {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-question h4 i {
    color: var(--primary-cyan);
}

.faq-icon {
    transition: var(--transition);
    color: var(--text-dim);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-cyan);
}

.faq-answer {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
.main-footer {
    background: #06080d;
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 1rem;
    max-width: 320px;
}

.footer-links h4, .footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--text-main);
}

.footer-links ul li {
    margin-bottom: 0.65rem;
}

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.footer-links ul li a:hover {
    color: var(--primary-cyan);
}

.social-icons {
    display: flex;
    gap: 0.85rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-cyan);
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0,0,0,0.5);
    padding: 1.25rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.03);
    color: var(--text-dim);
    font-size: 0.88rem;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: -80px;
    right: 30px;
    background: var(--primary-cyan);
    color: #000;
    font-weight: 700;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.4);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 2000;
}

.toast-notification.show {
    bottom: 30px;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .grid-hero, .grid-install {
        grid-template-columns: 1fr;
    }
    
    .grid-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .grid-features, .grid-pricing {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .demo-grid-metrics {
        grid-template-columns: 1fr;
    }
}
