:root {
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --background: 0 0% 98%;
  --foreground: 0 0% 7%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 7%;
  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 7%;
  --primary: 25 100% 50%;
  --primary-foreground: 0 0% 100%;
  --secondary: 0 0% 94%;
  --secondary-foreground: 0 0% 10%;
  --muted: 0 0% 92%;
  --muted-foreground: 0 0% 38%;
  --accent: 25 100% 50%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 100%;
  --success: 142 71% 45%;
  --success-foreground: 0 0% 100%;
  --warning: 38 92% 50%;
  --warning-foreground: 0 0% 7%;
  --info: 210 90% 54%;
  --info-foreground: 0 0% 100%;
  --border: 0 0% 84%;
  --input: 0 0% 84%;
  --ring: 25 100% 50%;
  --radius: 0.625rem;
  --shadow-sm: 0 1px 2px hsl(var(--foreground) / 0.05);
  --shadow-md: 0 4px 12px hsl(var(--foreground) / 0.08);
  --shadow-lg: 0 12px 32px hsl(var(--foreground) / 0.12);
  --shadow-elegant: 0 20px 64px hsl(var(--primary) / 0.24);
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.dark {
  --background: 0 0% 4.3%;
  --foreground: 0 0% 100%;
  --card: 0 0% 7.1%;
  --card-foreground: 0 0% 100%;
  --popover: 0 0% 7.1%;
  --popover-foreground: 0 0% 100%;
  --secondary: 0 0% 7.1%;
  --secondary-foreground: 0 0% 100%;
  --muted: 0 0% 12%;
  --muted-foreground: 0 0% 62.7%;
  --border: 0 0% 14.9%;
  --input: 0 0% 14.9%;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 8%, hsl(var(--primary) / 0.14), transparent 28%),
    radial-gradient(circle at 80% 18%, hsl(var(--primary) / 0.08), transparent 28%),
    linear-gradient(180deg, hsl(var(--background)), hsl(var(--background)));
  z-index: -2;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
svg { width: 20px; height: 20px; }
section { scroll-margin-top: 96px; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 16px; }
.section-pad { padding: 48px 0; }
.centered { text-align: center; margin-left: auto; margin-right: auto; }
.eyebrow { margin: 0 0 12px; color: hsl(var(--muted-foreground)); font-size: 14px; line-height: 20px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(40px, 10vw, 76px); line-height: 1.04; letter-spacing: -0.06em; font-weight: 700; margin-bottom: 24px; }
h2 { font-size: clamp(30px, 6vw, 48px); line-height: 1.12; letter-spacing: -0.04em; font-weight: 600; margin-bottom: 16px; }
h3 { font-size: 20px; line-height: 28px; letter-spacing: -0.02em; font-weight: 600; margin-bottom: 8px; }
p { color: hsl(var(--muted-foreground)); }
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding-top: env(safe-area-inset-top); border-bottom: 1px solid hsl(var(--border) / 0.72); background: hsl(var(--background) / 0.78); backdrop-filter: blur(20px); }
.header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; font-weight: 700; letter-spacing: -0.03em; }
.brand-mark { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 999px; color: hsl(var(--primary-foreground)); background: hsl(var(--primary)); box-shadow: var(--shadow-elegant); font-size: 24px; line-height: 1; }
.desktop-nav { display: none; align-items: center; gap: 24px; color: hsl(var(--muted-foreground)); font-size: 14px; line-height: 20px; font-weight: 500; }
.desktop-nav a, .mobile-menu a, .footer-grid a, .footer-bottom a { transition: color var(--transition-fast); }
.desktop-nav a:hover, .mobile-menu a:hover, .footer-grid a:hover, .footer-bottom a:hover { color: hsl(var(--primary)); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-cta { display: none !important; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 12px 20px; border-radius: calc(var(--radius) - 2px); border: 1px solid transparent; font-size: 14px; line-height: 20px; font-weight: 600; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition); }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .icon-button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, .faq-item button:focus-visible { outline: 2px solid hsl(var(--ring)); outline-offset: 2px; }
.button-primary { color: hsl(var(--primary-foreground)); background: hsl(var(--primary)); box-shadow: var(--shadow-elegant); }
.button-primary:hover { box-shadow: 0 28px 80px hsl(var(--primary) / 0.32); }
.button-secondary { color: hsl(var(--foreground)); background: hsl(var(--card) / 0.72); border-color: hsl(var(--border)); backdrop-filter: blur(16px); }
.icon-button { width: 44px; height: 44px; display: inline-grid; place-items: center; border-radius: calc(var(--radius) - 2px); border: 1px solid hsl(var(--border)); color: hsl(var(--foreground)); background: hsl(var(--card) / 0.72); backdrop-filter: blur(16px); transition: transform var(--transition), border-color var(--transition), background var(--transition); }
.icon-button:hover { transform: translateY(-2px); border-color: hsl(var(--primary) / 0.5); }
.menu-close, .theme-moon { display: none; }
.dark .theme-sun { display: none; }
.dark .theme-moon { display: block; }
.mobile-menu-button.active .menu-open { display: none; }
.mobile-menu-button.active .menu-close { display: block; }
.mobile-menu { display: none; padding: 8px 16px 16px; border-top: 1px solid hsl(var(--border)); background: hsl(var(--background) / 0.96); }
.mobile-menu.open { display: grid; gap: 4px; }
.mobile-menu a { min-height: 44px; display: flex; align-items: center; border-radius: calc(var(--radius) - 2px); padding: 0 12px; color: hsl(var(--muted-foreground)); font-weight: 500; }
.hero { position: relative; padding-top: 120px; overflow: hidden; }
.hero-grid { display: grid; gap: 48px; align-items: center; }
.hero-subtitle { font-size: 18px; line-height: 28px; max-width: 680px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.hero-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.stat-card, .glass-card, .dashboard-card, .timeline-step, .industries-grid span, .bottom-nav { border: 1px solid hsl(var(--border) / 0.9); background: linear-gradient(180deg, hsl(var(--card) / 0.82), hsl(var(--card) / 0.58)); backdrop-filter: blur(18px); box-shadow: var(--shadow-sm); }
.stat-card { border-radius: var(--radius); padding: 16px; }
.stat-card strong { display: block; font-size: 24px; line-height: 32px; letter-spacing: -0.03em; color: hsl(var(--foreground)); }
.stat-card span:last-child { color: hsl(var(--muted-foreground)); font-size: 14px; line-height: 20px; }
.hero-visual { position: relative; min-height: 440px; display: grid; place-items: center; }
.hero-glow { position: absolute; border-radius: 999px; filter: blur(48px); opacity: 0.75; animation: pulseGlow 5s ease-in-out infinite; }
.hero-glow-one { width: 256px; height: 256px; background: hsl(var(--primary) / 0.28); top: 104px; right: 12%; }
.hero-glow-two { width: 192px; height: 192px; background: hsl(var(--foreground) / 0.08); bottom: 10%; left: 4%; animation-delay: 1s; }
.dashboard-card { border-radius: calc(var(--radius) + 4px); padding: 20px; }
.dashboard-main { width: min(100%, 440px); min-height: 360px; position: relative; z-index: 2; }
.dashboard-topline, .metric-row, .case-top, .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.dashboard-topline { margin-bottom: 24px; color: hsl(var(--muted-foreground)); font-size: 14px; font-weight: 500; }
.live-pill { padding: 4px 10px; border-radius: 999px; color: hsl(var(--primary)); background: hsl(var(--primary) / 0.12); }
.metric-row strong { display: block; font-size: 36px; line-height: 40px; letter-spacing: -0.05em; margin-top: 4px; }
.metric-label { color: hsl(var(--muted-foreground)); font-size: 14px; }
.trend-positive { color: hsl(var(--success)); font-weight: 700; }
.bar-chart { height: 132px; display: flex; align-items: end; gap: 12px; padding: 24px 0; }
.bar-chart span { flex: 1; border-radius: 999px 999px 8px 8px; background: linear-gradient(180deg, hsl(var(--primary)), hsl(var(--primary) / 0.22)); animation: barRise 1.2s ease both; }
.dashboard-grid-mini { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.dashboard-grid-mini div { padding: 16px; border-radius: var(--radius); background: hsl(var(--muted) / 0.6); }
.dashboard-grid-mini span, .mini-card span { color: hsl(var(--muted-foreground)); font-size: 14px; }
.dashboard-grid-mini strong, .mini-card strong { display: block; font-size: 24px; line-height: 32px; margin-top: 4px; }
.mini-card { position: absolute; z-index: 3; display: grid; gap: 4px; width: 168px; }
.mini-card svg { color: hsl(var(--primary)); }
.mini-card-one { top: 24px; left: 0; }
.mini-card-two { bottom: 16px; right: 0; }
.floating-card { animation: floatY 5s ease-in-out infinite; }
.floating-card-slow { animation: floatY 6s ease-in-out infinite; }
.floating-card-reverse { animation: floatYReverse 5.5s ease-in-out infinite; }
.split-grid { display: grid; gap: 40px; align-items: center; }
.section-heading { max-width: 720px; }
.section-heading p:last-child { font-size: 18px; line-height: 28px; }
.feature-grid, .services-grid, .case-grid { display: grid; gap: 16px; }
.glass-card { border-radius: var(--radius); padding: 24px; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.glass-card:hover, .timeline-step:hover, .industries-grid span:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: hsl(var(--primary) / 0.5); }
.feature-card svg, .service-card svg { width: 40px; height: 40px; padding: 8px; border-radius: calc(var(--radius) - 2px); color: hsl(var(--primary)); background: hsl(var(--primary) / 0.12); margin-bottom: 16px; }
.services-section, .industries-section, .faq-section { background: linear-gradient(180deg, transparent, hsl(var(--secondary) / 0.5), transparent); }
.check-grid { display: grid; gap: 12px; margin-top: 24px; }
.check-grid span { display: flex; align-items: center; gap: 10px; min-height: 32px; color: hsl(var(--foreground)); font-weight: 500; }
.check-grid svg { color: hsl(var(--primary)); flex: 0 0 auto; }
.why-panel { min-height: 360px; display: grid; place-items: center; }
.orbital-card { position: relative; width: min(100%, 420px); aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; }
.orbital-center { width: 104px; height: 104px; display: grid; place-items: center; border-radius: 999px; color: hsl(var(--primary-foreground)); background: hsl(var(--primary)); font-size: 64px; box-shadow: var(--shadow-elegant); }
.orbit { position: absolute; min-height: 44px; display: grid; place-items: center; padding: 8px 16px; border-radius: 999px; background: hsl(var(--popover)); border: 1px solid hsl(var(--border)); color: hsl(var(--foreground)); font-weight: 600; animation: orbitPulse 4s ease-in-out infinite; }
.orbit-one { top: 48px; left: 32px; }
.orbit-two { right: 24px; top: 44%; animation-delay: 0.7s; }
.orbit-three { bottom: 48px; left: 40px; animation-delay: 1.4s; }
.timeline { display: grid; gap: 16px; position: relative; }
.timeline-step { border-radius: var(--radius); padding: 24px; position: relative; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.timeline-step span { display: inline-flex; color: hsl(var(--primary)); font-weight: 700; margin-bottom: 12px; }
.timeline-step svg { width: 40px; height: 40px; padding: 8px; border-radius: calc(var(--radius) - 2px); color: hsl(var(--primary)); background: hsl(var(--primary) / 0.12); margin-bottom: 16px; }
.case-card { overflow: hidden; }
.case-top span { color: hsl(var(--primary)); background: hsl(var(--primary) / 0.12); padding: 4px 10px; border-radius: 999px; font-size: 14px; font-weight: 600; white-space: nowrap; }
.before-after { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center; padding: 16px; border-radius: var(--radius); background: hsl(var(--muted) / 0.6); margin: 16px 0; }
.before-after small { color: hsl(var(--muted-foreground)); display: block; }
.before-after strong { font-size: 24px; line-height: 32px; }
.before-after svg { color: hsl(var(--primary)); }
.case-metrics { display: grid; gap: 8px; font-size: 14px; color: hsl(var(--muted-foreground)); }
.case-metrics strong { color: hsl(var(--foreground)); }
.sparkline { display: flex; align-items: end; gap: 8px; height: 72px; margin-top: 20px; }
.sparkline span { flex: 1; border-radius: 999px 999px 6px 6px; background: hsl(var(--primary) / 0.8); }
.sparkline span:nth-child(1) { height: 28%; }
.sparkline span:nth-child(2) { height: 42%; }
.sparkline span:nth-child(3) { height: 50%; }
.sparkline span:nth-child(4) { height: 72%; }
.sparkline span:nth-child(5) { height: 92%; }
.sparkline-two span:nth-child(3) { height: 68%; }
.sparkline-three span:nth-child(2) { height: 36%; }
.sparkline-four span:nth-child(4) { height: 84%; }
.industries-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.industries-grid span { min-height: 88px; display: grid; place-items: center; text-align: center; gap: 8px; border-radius: var(--radius); padding: 16px; font-weight: 600; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.industries-grid svg { color: hsl(var(--primary)); }
.testimonial-shell { max-width: 840px; margin: 0 auto; }
.testimonial-track { position: relative; min-height: 420px; }
.testimonial-card { position: absolute; inset: 0; opacity: 0; transform: translateX(24px) scale(0.98); pointer-events: none; border: 1px solid hsl(var(--border)); background: linear-gradient(180deg, hsl(var(--card) / 0.9), hsl(var(--card) / 0.64)); backdrop-filter: blur(18px); border-radius: calc(var(--radius) + 4px); padding: 24px; box-shadow: var(--shadow-md); transition: opacity var(--transition-smooth), transform var(--transition-smooth); }
.testimonial-card.active { opacity: 1; transform: translateX(0) scale(1); pointer-events: auto; }
.testimonial-person { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; position: relative; }
.testimonial-person img, .avatar-fallback { width: 80px; height: 80px; border-radius: 999px; object-fit: cover; border: 1px solid hsl(var(--border)); }
.avatar-fallback { display: none; place-items: center; color: hsl(var(--primary-foreground)); background: hsl(var(--primary)); font-weight: 700; }
.testimonial-person h3 { margin-bottom: 0; }
.testimonial-person span { color: hsl(var(--muted-foreground)); font-size: 14px; }
.rating { color: hsl(var(--primary)); letter-spacing: 0.12em; margin-bottom: 16px; }
.testimonial-card p { font-size: 18px; line-height: 28px; }
.testimonial-controls { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 24px; }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dots button { width: 44px; height: 44px; border-radius: 999px; border: 0; background: transparent; display: grid; place-items: center; }
.testimonial-dots button::before { content: ""; width: 10px; height: 10px; border-radius: 999px; background: hsl(var(--muted-foreground) / 0.4); transition: background var(--transition), transform var(--transition); }
.testimonial-dots button.active::before { background: hsl(var(--primary)); transform: scale(1.25); }
.faq-grid { display: grid; gap: 32px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid hsl(var(--border)); border-radius: var(--radius); background: hsl(var(--card) / 0.72); overflow: hidden; }
.faq-item button { width: 100%; min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px; border: 0; background: transparent; color: hsl(var(--foreground)); text-align: left; font-weight: 600; }
.faq-item button svg { transition: transform var(--transition); flex: 0 0 auto; }
.faq-item.open button svg { transform: rotate(180deg); }
.faq-item p { display: none; padding: 0 16px 16px; margin: 0; }
.faq-item.open p { display: block; }
.final-cta { position: relative; overflow: hidden; }
.final-cta::before { content: ""; position: absolute; inset: 10% 12%; background: radial-gradient(circle, hsl(var(--primary) / 0.18), transparent 60%); filter: blur(48px); z-index: -1; }
.cta-grid { display: grid; gap: 32px; align-items: start; }
.contact-cards { display: grid; gap: 12px; margin-top: 24px; }
.contact-cards a, .contact-cards span { min-height: 44px; display: flex; align-items: center; gap: 12px; color: hsl(var(--muted-foreground)); }
.contact-cards svg { color: hsl(var(--primary)); flex: 0 0 auto; }
.contact-form { display: grid; gap: 12px; }
.contact-form h3 { margin-bottom: 0; }
.contact-form p { margin-bottom: 8px; }
.contact-form label { font-size: 14px; line-height: 20px; font-weight: 600; color: hsl(var(--foreground)); }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; min-height: 44px; border-radius: calc(var(--radius) - 2px); border: 1px solid hsl(var(--input)); background: hsl(var(--background) / 0.72); color: hsl(var(--foreground)); padding: 12px 14px; font-size: max(16px, 1rem); outline: none; transition: border-color var(--transition), box-shadow var(--transition); }
.contact-form textarea { resize: vertical; min-height: 128px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: hsl(var(--muted-foreground)); }
.form-submit { width: 100%; margin-top: 8px; }
.form-status { min-height: 24px; margin: 0; font-size: 14px; }
.form-status.success { color: hsl(var(--success)); }
.form-status.error { color: hsl(var(--destructive)); }
.form-status.info { color: hsl(var(--info)); }
.site-footer { border-top: 1px solid hsl(var(--border)); background: hsl(var(--secondary) / 0.6); padding: 48px 0 96px; }
.footer-grid { display: grid; gap: 32px; }
.footer-grid p { max-width: 320px; }
.footer-grid h3 { font-size: 16px; line-height: 24px; margin-bottom: 12px; }
.footer-grid div:not(:first-child) { display: grid; gap: 8px; align-content: start; }
.footer-grid a, .footer-grid span { color: hsl(var(--muted-foreground)); min-height: 32px; }
.social-links { display: flex !important; grid-auto-flow: column; justify-content: start; gap: 8px !important; margin-top: 16px; }
.social-links a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid hsl(var(--border)); border-radius: 999px; background: hsl(var(--card) / 0.72); color: hsl(var(--foreground)); }
.footer-bottom { margin-top: 32px; padding-top: 24px; border-top: 1px solid hsl(var(--border)); color: hsl(var(--muted-foreground)); font-size: 14px; flex-direction: column; align-items: flex-start; }
.bottom-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; display: grid; grid-template-columns: repeat(4, 1fr); padding: 8px 8px calc(8px + env(safe-area-inset-bottom)); border-radius: 20px 20px 0 0; }
.bottom-nav a { min-height: 52px; display: grid; place-items: center; gap: 2px; color: hsl(var(--muted-foreground)); font-size: 12px; line-height: 16px; font-weight: 600; }
.bottom-nav a:hover { color: hsl(var(--primary)); }
.bottom-nav svg { width: 18px; height: 18px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1), transform 700ms cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-one { transition-delay: 120ms; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes floatYReverse { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(12px); } }
@keyframes pulseGlow { 0%, 100% { transform: scale(1); opacity: 0.68; } 50% { transform: scale(1.12); opacity: 0.9; } }
@keyframes barRise { from { transform: scaleY(0); transform-origin: bottom; } to { transform: scaleY(1); transform-origin: bottom; } }
@keyframes orbitPulse { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 1ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 1ms !important; } .reveal { opacity: 1; transform: none; } }
@media (min-width: 640px) {
  .container { padding: 0 24px; }
  .section-pad { padding: 64px 0; }
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .hero-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .feature-grid, .case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industries-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .testimonial-track { min-height: 340px; }
  .footer-bottom { flex-direction: row; align-items: center; }
}
@media (min-width: 768px) {
  .desktop-nav { display: flex; }
  .mobile-menu-button { display: none; }
  .header-cta { display: inline-flex !important; }
  .mobile-menu { display: none !important; }
  .hero-grid, .split-grid, .cta-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .reverse-mobile .why-panel { order: 0; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .timeline::before { content: ""; position: absolute; top: 44px; left: 8%; right: 8%; height: 1px; background: hsl(var(--border)); z-index: -1; }
  .faq-grid { grid-template-columns: 0.8fr 1.2fr; }
  .footer-grid { grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr; }
  .bottom-nav { display: none; }
  .site-footer { padding-bottom: 48px; }
}
@media (min-width: 1024px) {
  .container { padding: 0 32px; }
  .section-pad { padding: 96px 0; }
  .hero { padding-top: 152px; }
  .services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .industries-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
