/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #07070a;
    --bg-subtle: #0e0e14;
    --bg-card: #13131a;
    --bg-card-hover: #1a1a24;
    --border: #23232e;
    --border-subtle: #1a1a24;
    --text: #f5f5f7;
    --text-muted: #9d9db5;
    --text-subtle: #6b6b82;
    --primary: #6366f1;
    --primary-light: #818cf8;
    --accent: #8b5cf6;
    --cyan: #22d3ee;
    --green: #10b981;
    --orange: #f59e0b;
    --pink: #ec4899;
    --red: #ef4444;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Space Grotesk', 'Inter', sans-serif; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }

/* ===== Animations ===== */
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }
@keyframes pulse-glow { 0%,100%{opacity:.4;transform:scale(1)} 50%{opacity:1;transform:scale(1.1)} }
@keyframes float-browser { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-12px) rotate(1deg)} }

[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px; border-radius: 10px; font-size: 14px;
    font-weight: 500; cursor: pointer; transition: all 0.25s ease;
    border: none; font-family: inherit; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: white; box-shadow: 0 0 20px rgba(99,102,241,0.25); }
.btn-primary:hover { background: var(--primary-light); box-shadow: 0 0 30px rgba(99,102,241,0.4); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--text-subtle); background: var(--bg-card); }
.btn-white { background: white; color: var(--bg); font-weight: 600; }
.btn-white:hover { background: #f0f0f0; transform: translateY(-1px); box-shadow: 0 10px 30px rgba(255,255,255,0.1); }
.btn-ghost-white { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.2); }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: 12px; }

/* ===== Navigation ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0; transition: all 0.3s ease; background: transparent;
}
.navbar.scrolled {
    background: rgba(7,7,10,0.85); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-subtle); padding: 10px 0;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
    font-family: 'Space Grotesk', monospace; font-size: 16px; font-weight: 700;
    color: var(--primary-light); background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.2); padding: 6px 10px;
    border-radius: 10px; letter-spacing: -0.5px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; }
.logo-tagline { font-size: 11px; color: var(--text-subtle); text-transform: uppercase; letter-spacing: 0.1em; }

.nav-links { display: flex; list-style: none; gap: 32px; }
.nav-links a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; font-weight: 500; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ===== Hero ===== */
.hero { position: relative; padding: 140px 0 60px; overflow: hidden; }

.hero-bg { position: absolute; inset: 0; }
.gradient-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; }
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle,rgba(99,102,241,0.25),transparent 70%); top: -200px; right: -100px; animation: float 8s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle,rgba(139,92,246,0.2),transparent 70%); bottom: 0; left: -100px; animation: float 10s ease-in-out infinite reverse; }

.grid-overlay {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
                       linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 30%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 30%, black 40%, transparent 100%);
}

.hero-content { position: relative; text-align: center; z-index: 2; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.2); border-radius: 50px;
    font-size: 13px; color: var(--primary-light); margin-bottom: 24px; font-weight: 500;
}
.badge-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse-glow 2s infinite; }

.hero h1 { font-size: clamp(38px, 5.5vw, 68px); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 24px; }
.gradient-text { background: linear-gradient(135deg, var(--primary-light), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: clamp(16px, 2vw, 19px); color: var(--text-muted); max-width: 600px; margin: 0 auto 40px; line-height: 1.7; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; align-items: center; justify-content: center; gap: 32px; }
.stat strong { display: block; font-size: 28px; font-weight: 700; font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; }
.stat span { font-size: 13px; color: var(--text-subtle); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ===== Floating Browsers in Hero ===== */
.hero-browsers {
    position: relative; z-index: 2; margin-top: 60px; padding: 0 24px;
    display: flex; justify-content: center; gap: 24px; perspective: 1000px;
}

.floating-browser {
    width: 280px; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border); background: var(--bg-card);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4); transition: transform 0.3s ease;
    position: relative;
}
.floating-browser:hover { transform: translateY(-8px) !important; }
.browser-1 { animation: float-browser 6s ease-in-out infinite; transform: rotate(-3deg); }
.browser-2 { animation: float-browser 7s ease-in-out infinite 0.5s; transform: scale(1.05); z-index: 2; box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(99,102,241,0.1); }
.browser-3 { animation: float-browser 8s ease-in-out infinite 1s; transform: rotate(3deg); }

.browser-bar {
    display: flex; gap: 5px; padding: 8px 12px;
    background: var(--bg-subtle); border-bottom: 1px solid var(--border-subtle);
}
.browser-bar span { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.browser-bar span:first-child { background: #ef4444; }
.browser-bar span:nth-child(2) { background: #f59e0b; }
.browser-bar span:last-child { background: #10b981; }

.browser-label {
    position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: white; padding: 3px 12px;
    border-radius: 50px; font-size: 11px; font-weight: 600;
}

.browser-content { height: 180px; overflow: hidden; }

/* Preview mockup innards */
.preview-nav { height: 20px; background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.05); }
.preview-hero-img { height: 60px; background: linear-gradient(135deg, var(--primary), var(--accent)); opacity: 0.6; }
.preview-text-block { padding: 10px; }
.preview-heading { height: 8px; width: 60%; background: rgba(255,255,255,0.15); border-radius: 4px; margin-bottom: 6px; }
.preview-line { height: 5px; width: 80%; background: rgba(255,255,255,0.07); border-radius: 4px; margin-bottom: 4px; }
.preview-line.short { width: 50%; }
.preview-cta-btn { width: 50%; height: 14px; margin: 6px 10px; background: var(--primary); border-radius: 4px; opacity: 0.6; }
.preview-cards { display: flex; gap: 6px; padding: 8px; }
.preview-card { flex: 1; height: 50px; background: rgba(255,255,255,0.04); border-radius: 6px; border: 1px solid rgba(255,255,255,0.05); }

.preview-law .preview-hero-img { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.preview-restaurant .preview-hero-img { background: linear-gradient(135deg, #92400e, #b45309); }
.preview-dental .preview-hero-img { background: linear-gradient(135deg, #0d9488, #06b6d4); }

/* ===== Section Shared ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-block; padding: 4px 14px; background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.2); border-radius: 50px;
    font-size: 13px; color: var(--primary-light); font-weight: 500; margin-bottom: 16px;
}
.section-header h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 700; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 16px; }
.section-header p { font-size: 17px; color: var(--text-muted); max-width: 520px; margin: 0 auto; }

/* ===== Services ===== */
.services { padding: 120px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
    padding: 32px; background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg); transition: all 0.3s ease;
}
.service-card:hover { background: var(--bg-card-hover); border-color: var(--border); transform: translateY(-4px); box-shadow: 0 10px 40px rgba(0,0,0,0.3); }

.service-card.featured {
    grid-row: span 2; border-color: rgba(99,102,241,0.2);
    background: linear-gradient(135deg, rgba(99,102,241,0.05), var(--bg-card));
}

.service-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background: rgba(99,102,241,0.12); color: var(--primary-light); }
.service-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }

.service-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.service-list li { font-size: 14px; color: var(--text-muted); padding-left: 20px; position: relative; }
.service-list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); opacity: 0.6; }

.service-price { font-size: 14px; color: var(--text-subtle); border-top: 1px solid var(--border-subtle); padding-top: 16px; }
.service-price strong { color: var(--text); font-size: 20px; font-family: 'Space Grotesk', sans-serif; }

/* ===== Portfolio ===== */
.portfolio { padding: 120px 0; background: var(--bg-subtle); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }

.portfolio-filter { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.filter-btn {
    padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 500;
    background: transparent; border: 1px solid var(--border); color: var(--text-muted);
    cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.filter-btn:hover { border-color: var(--text-subtle); color: var(--text); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: white; }

.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.portfolio-item {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl); overflow: hidden; transition: all 0.3s ease;
}
.portfolio-item:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.portfolio-item.hidden { display: none; }

.portfolio-preview { padding: 20px 20px 0; }
.preview-browser { border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; border: 1px solid var(--border-subtle); border-bottom: none; }

/* Portfolio mockup innards */
.portfolio-mockup { height: 220px; overflow: hidden; background: var(--bg); }
.m-nav { display: flex; align-items: center; justify-content: space-between; padding: 8px 14px; background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.05); }
.m-logo { width: 40px; height: 10px; background: rgba(255,255,255,0.2); border-radius: 3px; }
.m-links { display: flex; gap: 8px; }
.m-links span { width: 30px; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; }
.m-phone-btn { width: 60px; height: 16px; background: var(--green); border-radius: 4px; opacity: 0.7; }

.m-hero { padding: 20px 14px; position: relative; }
.m-hero-text { position: relative; z-index: 1; }
.m-h1 { height: 10px; width: 70%; background: rgba(255,255,255,0.4); border-radius: 4px; margin-bottom: 8px; }
.m-p { height: 6px; width: 50%; background: rgba(255,255,255,0.15); border-radius: 3px; margin-bottom: 10px; }
.m-btn { width: 60px; height: 16px; background: var(--primary); border-radius: 4px; }
.m-btn-group { display: flex; gap: 6px; }

.m-cards { display: flex; gap: 8px; padding: 10px 14px; }
.m-card { flex: 1; padding: 10px; background: rgba(255,255,255,0.03); border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); }
.m-card-icon { width: 20px; height: 20px; border-radius: 6px; margin-bottom: 8px; }
.m-card-lines div { height: 4px; background: rgba(255,255,255,0.08); border-radius: 3px; margin-bottom: 4px; }
.m-card-lines div:last-child { width: 60%; }

.m-features { display: flex; flex-direction: column; gap: 8px; padding: 10px 14px; }
.m-feature { display: flex; align-items: center; gap: 10px; }
.m-circle { width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; }
.m-line { height: 5px; flex: 1; background: rgba(255,255,255,0.06); border-radius: 3px; }

.m-menu-grid { display: flex; gap: 8px; padding: 10px 14px; }
.m-menu-item { flex: 1; }
.m-food-img { height: 40px; background: rgba(255,255,255,0.06); border-radius: 6px; margin-bottom: 6px; }
.m-price { height: 5px; width: 30px; background: var(--orange); border-radius: 3px; opacity: 0.5; }

.m-trust-bar { display: flex; gap: 8px; padding: 10px 14px; }
.m-trust-item { flex: 1; height: 24px; background: rgba(255,255,255,0.04); border-radius: 6px; border: 1px solid rgba(255,255,255,0.05); }

.m-services-list { padding: 10px 14px; display: flex; flex-direction: column; gap: 6px; }
.m-service-row { height: 18px; background: rgba(255,255,255,0.04); border-radius: 6px; border: 1px solid rgba(255,255,255,0.05); }

.portfolio-info { padding: 24px; }
.portfolio-tag { display: inline-block; padding: 3px 10px; background: rgba(99,102,241,0.1); border-radius: 50px; font-size: 11px; color: var(--primary-light); font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.portfolio-info h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.portfolio-info p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }

.portfolio-stats { display: flex; gap: 24px; }
.p-stat strong { display: block; font-size: 18px; font-family: 'Space Grotesk', sans-serif; color: var(--green); }
.p-stat span { font-size: 12px; color: var(--text-subtle); }

/* ===== Industries ===== */
.industries { padding: 120px 0; }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.industry-card {
    padding: 24px; background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg); text-align: center; transition: all 0.3s ease;
}
.industry-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

.industry-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.industry-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.industry-card p { font-size: 13px; color: var(--text-subtle); }

/* ===== Process ===== */
.process { padding: 120px 0; background: var(--bg-subtle); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }

.process-timeline { max-width: 700px; margin: 0 auto; }
.process-step { display: flex; gap: 24px; margin-bottom: 16px; }

.step-marker { display: flex; flex-direction: column; align-items: center; }
.step-number {
    width: 40px; height: 40px; border-radius: 50%; background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-family: 'Space Grotesk', sans-serif; font-size: 16px; flex-shrink: 0;
}
.step-line { width: 2px; flex: 1; background: var(--border); margin: 8px 0; min-height: 40px; }
.process-step:last-child .step-line { display: none; }

.step-content {
    padding: 0 0 32px; flex: 1;
}
.step-duration { font-size: 12px; color: var(--primary-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.step-content h3 { font-size: 20px; font-weight: 600; margin: 4px 0 8px; }
.step-content p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== Testimonials ===== */
.testimonials { padding: 120px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testimonial-card {
    padding: 32px; background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg); transition: all 0.3s ease;
}
.testimonial-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: 0 10px 40px rgba(0,0,0,0.3); }

.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-card > p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: white; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 14px; }
.testimonial-author span { font-size: 12px; color: var(--text-subtle); }

/* ===== CTA ===== */
.cta-section { padding: 120px 0; position: relative; overflow: hidden; background: linear-gradient(135deg, #4338ca, var(--accent)); }
.cta-bg { position: absolute; inset: 0; }
.orb-cta-1 { width: 400px; height: 400px; background: rgba(255,255,255,0.08); top: -100px; right: -100px; border-radius: 50%; position: absolute; filter: blur(60px); }
.orb-cta-2 { width: 300px; height: 300px; background: rgba(6,182,212,0.15); bottom: -100px; left: -100px; border-radius: 50%; position: absolute; filter: blur(60px); }

.cta-content { position: relative; text-align: center; z-index: 2; }
.cta-content h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 700; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 16px; color: white; }
.cta-content > p { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 480px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ===== Footer ===== */
.footer { padding: 80px 0 40px; background: var(--bg); border-top: 1px solid var(--border-subtle); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; margin: 16px 0; max-width: 300px; line-height: 1.7; }
.footer-links h4 { font-size: 14px; font-weight: 600; margin-bottom: 20px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--border-subtle); }
.footer-bottom p { font-size: 13px; color: var(--text-subtle); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: var(--text-subtle); transition: color 0.2s; }
.footer-legal a:hover { color: var(--text); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card.featured { grid-row: span 1; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hero-browsers { gap: 16px; }
    .floating-browser { width: 220px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .mobile-toggle { display: flex; }
    .nav-links.active {
        display: flex; flex-direction: column; position: absolute;
        top: 100%; left: 0; right: 0; background: rgba(7,7,10,0.95);
        backdrop-filter: blur(20px); padding: 20px 24px;
        border-bottom: 1px solid var(--border-subtle); gap: 16px;
    }

    .hero { padding: 120px 0 40px; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .stat-divider { width: 40px; height: 1px; }
    .hero-browsers { flex-direction: column; align-items: center; gap: 20px; }
    .floating-browser { width: 280px; transform: none !important; }
    .browser-2 { transform: none !important; }

    .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .cta-section { padding: 80px 0; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { justify-content: center; }
    .industries-grid { grid-template-columns: 1fr; }
}
