/* ============================================
   SHADOW BULK SMS - LANDING PAGE CSS
   Shadow Innovations © 2024
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --transition: all 0.2s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navigation */
.landing-nav {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: var(--transition);
}
.landing-nav.scrolled { box-shadow: var(--shadow-md); }
.landing-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.brand-icon {
    width: 40px; height: 40px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.1rem;
}
.brand-name { font-weight: 700; font-size: 1.1rem; color: var(--gray-900); display: block; }
.brand-sub { font-size: 0.6rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
    text-decoration: none; color: var(--gray-600); font-weight: 500; font-size: 0.9rem; transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--gray-600); cursor: pointer; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 50px;
    font-weight: 600; font-size: 0.9rem; text-decoration: none;
    transition: var(--transition); cursor: pointer; border: none;
    font-family: inherit;
}
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-primary {
    background: var(--primary); color: white;
    box-shadow: 0 4px 12px rgba(99,102,241,0.3);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(99,102,241,0.4); }
.btn-outline { background: transparent; color: var(--gray-700); border: 2px solid var(--gray-200); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-white { background: white; color: var(--gray-900); box-shadow: var(--shadow); }
.btn-white:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
    position: relative; overflow: hidden;
}
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(99,102,241,0.1); color: var(--primary);
    padding: 6px 16px; border-radius: 50px;
    font-weight: 600; font-size: 0.85rem; margin-bottom: 20px;
}
.pulse-dot {
    width: 8px; height: 8px; background: var(--success);
    border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.hero-text h1 { font-size: 3.2rem; font-weight: 800; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.02em; }
.hero-text h1 .highlight { color: var(--primary); }
.hero-text p { font-size: 1.1rem; color: var(--gray-500); margin-bottom: 32px; max-width: 500px; }
.hero-stats { display: flex; gap: 32px; margin-bottom: 32px; }
.hero-stat { text-align: center; }
.hero-stat .stat-number { display: block; font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.hero-stat .stat-label { font-size: 0.8rem; color: var(--gray-400); }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; }
.hero-mockup {
    background: white; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl); overflow: hidden;
    width: 100%; max-width: 380px; border: 1px solid var(--gray-200);
}
.mockup-header {
    background: var(--gray-100); padding: 12px 16px;
    display: flex; align-items: center; gap: 12px;
    border-bottom: 1px solid var(--gray-200);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #10b981; }
.mockup-title { font-size: 0.8rem; color: var(--gray-500); font-weight: 600; }
.mockup-body { padding: 20px; }
.sms-bubble {
    background: #eff6ff; padding: 12px 16px; border-radius: 12px;
    margin-bottom: 12px; border-left: 3px solid var(--primary);
}
.sms-bubble small { color: var(--primary); font-weight: 600; display: block; margin-bottom: 4px; }
.sms-bubble p { font-size: 0.85rem; color: var(--gray-700); margin: 0; }
.sms-time { font-size: 0.7rem; color: var(--gray-400); display: block; margin-top: 4px; }

/* Trusted Section */
.trusted-section { padding: 40px 0; text-align: center; border-bottom: 1px solid var(--gray-200); }
.trusted-label { color: var(--gray-400); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.trusted-logos { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trusted-logo { color: var(--gray-400); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }

/* Section Styles */
.section { padding: 80px 0; }
.bg-light { background: var(--gray-50); }
.bg-dark { background: var(--gray-900); color: white; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
    display: inline-block; padding: 6px 16px;
    background: rgba(99,102,241,0.1); color: var(--primary);
    border-radius: 50px; font-weight: 600; font-size: 0.85rem; margin-bottom: 16px;
}
.light-badge { background: rgba(255,255,255,0.1); color: var(--primary-light); }
.section-header.light h2 { color: white; }
.section-header.light p { color: rgba(255,255,255,0.7); }
.section-header h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; }
.section-header p { font-size: 1.1rem; color: var(--gray-500); }

/* Features Grid */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
    background: white; border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 32px;
    transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
    width: 56px; height: 56px; border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 20px;
}
.feature-icon.blue { background: #eff6ff; color: #3b82f6; }
.feature-icon.purple { background: #f5f3ff; color: #8b5cf6; }
.feature-icon.green { background: #ecfdf5; color: #10b981; }
.feature-icon.orange { background: #fff7ed; color: #f97316; }
.feature-icon.cyan { background: #ecfeff; color: #06b6d4; }
.feature-icon.rose { background: #fff1f2; color: #f43f5e; }
.feature-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--gray-500); font-size: 0.95rem; }

/* Steps */
.steps-grid { display: flex; align-items: center; justify-content: center; gap: 20px; }
.step-card { text-align: center; flex: 1; max-width: 300px; }
.step-number {
    width: 40px; height: 40px; background: var(--primary); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 800; margin: 0 auto 16px;
}
.step-arrow { font-size: 1.5rem; color: var(--primary-light); }
.step-icon {
    width: 64px; height: 64px; border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin: 0 auto 16px;
}
.step-icon.blue { background: #eff6ff; color: #3b82f6; }
.step-icon.purple { background: #f5f3ff; color: #8b5cf6; }
.step-icon.green { background: #ecfdf5; color: #10b981; }
.step-card h3 { font-weight: 700; margin-bottom: 8px; }
.step-card p { color: var(--gray-500); font-size: 0.9rem; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
    background: white; border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl); padding: 40px 32px;
    position: relative; transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.popular { border: 2px solid var(--primary); box-shadow: 0 0 0 4px rgba(99,102,241,0.1); }
.popular-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: white; padding: 6px 20px;
    border-radius: 50px; font-size: 0.8rem; font-weight: 600;
}
.plan-header { text-align: center; margin-bottom: 24px; }
.plan-header h3 { font-size: 1.2rem; font-weight: 700; }
.plan-price { font-size: 3rem; font-weight: 800; color: var(--gray-900); margin: 12px 0; }
.plan-price .currency { font-size: 1.2rem; font-weight: 600; }
.plan-price .period { font-size: 1rem; font-weight: 500; color: var(--gray-400); }
.plan-header p { color: var(--gray-500); font-size: 0.9rem; }
.plan-features { list-style: none; margin-bottom: 24px; }
.plan-features li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; color: var(--gray-600); font-size: 0.9rem;
}
.plan-features li i { color: var(--success); }
.pricing-note { text-align: center; margin-top: 24px; color: var(--gray-500); font-size: 0.9rem; }
.pricing-note a { color: var(--primary); }

/* API Showcase */
.api-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.api-code-block, .api-response {
    background: #1a1a2e; border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid rgba(255,255,255,0.1);
}
.code-header {
    background: rgba(255,255,255,0.05); padding: 12px 16px;
    display: flex; align-items: center; justify-content: space-between;
}
.code-dots { display: flex; gap: 6px; }
.code-dots span { width: 10px; height: 10px; border-radius: 50%; }
.code-dots span:nth-child(1) { background: #ef4444; }
.code-dots span:nth-child(2) { background: #f59e0b; }
.code-dots span:nth-child(3) { background: #10b981; }
.code-title { color: rgba(255,255,255,0.6); font-size: 0.8rem; }
.copy-btn {
    background: rgba(255,255,255,0.1); color: white; border: none;
    padding: 4px 12px; border-radius: 6px; cursor: pointer; font-size: 0.8rem;
}
.api-code-block pre, .api-response pre { padding: 20px; margin: 0; overflow-x: auto; }
.api-code-block code, .api-response code { color: #e2e8f0; font-size: 0.85rem; font-family: 'Courier New', monospace; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: white; border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 24px;
}
.testimonial-rating { color: #f59e0b; margin-bottom: 12px; }
.testimonial-card p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 40px; height: 40px; background: var(--primary); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9rem;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author small { color: var(--gray-400); font-size: 0.8rem; }

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 80px 0; text-align: center; color: white;
}
.cta-content h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; }
.cta-content p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline-light { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* Footer */
.landing-footer { background: var(--gray-900); color: white; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .brand-icon {
    width: 40px; height: 40px; background: var(--primary);
    border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1rem;
}
.footer-brand h4 { font-size: 1rem; color: white; }
.footer-brand small { color: rgba(255,255,255,0.5); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-col p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; }
.footer-col h5 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; color: white; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: white; }
.contact-info li { color: rgba(255,255,255,0.6); font-size: 0.9rem; display: flex; align-items: flex-start; gap: 8px; }
.contact-info li i { margin-top: 4px; color: var(--primary-light); }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a {
    width: 36px; height: 36px; background: rgba(255,255,255,0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: white; text-decoration: none; transition: var(--transition);
}
.social-links a:hover { background: var(--primary); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: white; }
.footer-links { display: flex; gap: 20px; }

/* Page Header */
.page-header {
    background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
    padding: 140px 0 60px; text-align: center;
}
.page-header h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 8px; }
.page-header p { color: var(--gray-500); font-size: 1.1rem; }

/* About Page */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.about-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 20px; }
.about-text p { color: var(--gray-600); margin-bottom: 16px; line-height: 1.8; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat-card {
    background: white; border: 1px solid var(--gray-200);
    border-radius: var(--radius); padding: 24px; text-align: center;
}
.about-stat-card .stat-icon {
    width: 48px; height: 48px; border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px; font-size: 1.2rem;
}
.about-stat-card .stat-icon.blue { background: #eff6ff; color: #3b82f6; }
.about-stat-card .stat-icon.green { background: #ecfdf5; color: #10b981; }
.about-stat-card .stat-icon.purple { background: #f5f3ff; color: #8b5cf6; }
.about-stat-card .stat-icon.orange { background: #fff7ed; color: #f97316; }
.about-stat-card h3 { font-size: 1.5rem; font-weight: 800; }
.about-stat-card p { color: var(--gray-500); font-size: 0.85rem; }

/* Mission Vision */
.mv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mv-card {
    background: white; border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 32px; text-align: center;
}
.mv-icon {
    width: 64px; height: 64px; border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; font-size: 1.5rem;
}
.mv-icon.blue { background: #eff6ff; color: #3b82f6; }
.mv-icon.purple { background: #f5f3ff; color: #8b5cf6; }
.mv-icon.green { background: #ecfdf5; color: #10b981; }
.mv-card h3 { font-weight: 700; margin-bottom: 8px; }
.mv-card p { color: var(--gray-500); font-size: 0.9rem; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
    background: white; border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 32px; text-align: center;
}
.team-avatar {
    width: 80px; height: 80px; background: var(--primary); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 700; margin: 0 auto 16px;
}
.team-card h4 { font-weight: 700; }
.team-card small { color: var(--gray-400); display: block; margin-bottom: 12px; }
.team-social { display: flex; gap: 8px; justify-content: center; }
.team-social a {
    width: 32px; height: 32px; background: var(--gray-100);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--gray-600); text-decoration: none; transition: var(--transition);
}
.team-social a:hover { background: var(--primary); color: white; }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; }
.contact-form-container { background: white; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.contact-form-container h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.contact-form-container > p { color: var(--gray-500); margin-bottom: 24px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--gray-700); margin-bottom: 6px; }
.form-control {
    width: 100%; padding: 12px 16px; border: 1px solid var(--gray-300);
    border-radius: var(--radius); font-family: inherit; font-size: 0.95rem;
    transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(99,102,241,0.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
.contact-info-container { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
    background: white; border: 1px solid var(--gray-200);
    border-radius: var(--radius); padding: 20px;
    display: flex; align-items: flex-start; gap: 16px;
}
.contact-info-icon {
    width: 48px; height: 48px; border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-icon.blue { background: #eff6ff; color: #3b82f6; }
.contact-info-icon.green { background: #ecfdf5; color: #10b981; }
.contact-info-icon.purple { background: #f5f3ff; color: #8b5cf6; }
.contact-info-icon.orange { background: #fff7ed; color: #f97316; }
.contact-info-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.contact-info-card p { font-size: 0.9rem; color: var(--gray-600); }
.contact-info-card small { color: var(--gray-400); font-size: 0.8rem; }
.contact-social { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px; }
.contact-social h4 { margin-bottom: 12px; }

/* Map */
.map-section { padding: 0 0 80px; }
.map-placeholder {
    background: var(--gray-100); border-radius: var(--radius-lg);
    padding: 60px; text-align: center; border: 2px dashed var(--gray-300);
}
.map-placeholder i { font-size: 3rem; color: var(--gray-400); margin-bottom: 16px; }
.map-placeholder h3 { font-weight: 700; margin-bottom: 8px; }
.map-placeholder p { color: var(--gray-500); }

/* Alerts */
.alert {
    padding: 16px 20px; border-radius: var(--radius); margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px; font-size: 0.95rem;
}
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-danger { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin: 0 auto 32px; }
    .hero-stats { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .hero-visual { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .mv-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .api-showcase { grid-template-columns: 1fr; }
    .steps-grid { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); }
}

@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 20px; box-shadow: var(--shadow-lg); }
    .nav-links.show { display: flex; }
    .mobile-toggle { display: block; }
    .hero-text h1 { font-size: 2.2rem; }
    .section-header h2 { font-size: 1.8rem; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-stats { gap: 16px; }
    .hero-stat .stat-number { font-size: 1.2rem; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; }
    .plan-price { font-size: 2rem; }
    .about-stats { grid-template-columns: 1fr; }
}