/* ===================================================
   HOMEPAGE-SPECIFIC STYLES — extracted from inline
   Tokens, hero, sections, cards, responsive
   =================================================== */

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

:root {
  --violet: #7C3AED;
  --violet-dark: #6D28D9;
  --violet-light: #8B5CF6;
  --indigo: #4F46E5;
  --acid: #A3E635;
  --acid-dark: #84CC16;
  --dark: #0a0a0b;
  --dark-card: #141416;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-400: #ADB5BD;
  --gray-600: #6C757D;
  --gray-800: #343A40;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-btn: 100px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-xl: 0 25px 50px rgba(124,58,237,0.12), 0 10px 20px rgba(0,0,0,0.04);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Instrument Serif', Georgia, serif; line-height: 1.15; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============ NAVBAR ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.nav.scrolled { padding: 10px 0; box-shadow: var(--shadow-sm); }
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: 'Instrument Serif', Georgia, serif; font-weight: 800; font-size: 1.5rem;
  color: var(--dark); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo .logo-icon {
  width: 32px; height: 32px; background: var(--violet);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.9rem; font-weight: 700;
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--gray-600); font-size: 0.9rem; font-weight: 500;
  transition: color 0.3s; position: relative;
}
.nav-links a:hover { color: var(--violet); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--violet); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--violet); color: white !important; padding: 10px 24px;
  border-radius: var(--radius-btn); font-weight: 600 !important; font-size: 0.85rem !important;
  transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--violet-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(124,58,237,0.3); }
.nav-cta::after { display: none !important; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); margin: 6px 0; transition: all 0.3s; border-radius: 2px; }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
}

/* Morphing Blobs */
.blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.18;
  animation: morph 15s ease-in-out infinite alternate;
  pointer-events: none;
}
.blob-1 {
  width: 600px; height: 600px; top: -100px; right: -100px;
  background: var(--violet); animation-delay: 0s;
}
.blob-2 {
  width: 500px; height: 500px; bottom: -50px; left: -100px;
  background: var(--indigo); opacity: 0.15; animation-delay: -5s;
  animation-direction: alternate-reverse;
}
.blob-3 {
  width: 400px; height: 400px; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: var(--acid); opacity: 0.12; animation-delay: -10s;
}
@keyframes morph {
  0%   { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(0, 0) scale(1); }
  25%  { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: translate(50px, -30px) scale(1.1); }
  50%  { border-radius: 50% 60% 30% 60% / 30% 40% 70% 60%; transform: translate(-20px, 40px) scale(0.95); }
  75%  { border-radius: 40% 60% 50% 40% / 60% 50% 40% 60%; transform: translate(30px, 20px) scale(1.05); }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(0, 0) scale(1); }
}

/* Floating Shapes */
.floating-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.float-shape {
  position: absolute; opacity: 0.2;
}
.float-shape:nth-child(1) {
  width: 16px; height: 16px; background: var(--violet); border-radius: 50%;
  top: 20%; left: 10%; animation: float1 8s ease-in-out infinite;
}
.float-shape:nth-child(2) {
  width: 12px; height: 12px; background: var(--acid); border-radius: 3px;
  top: 30%; right: 15%; animation: float2 10s ease-in-out infinite; opacity: 0.35;
}
.float-shape:nth-child(3) {
  width: 20px; height: 20px; border: 2px solid var(--violet-light); border-radius: 50%;
  bottom: 30%; left: 20%; animation: float3 12s ease-in-out infinite; opacity: 0.25;
}
.float-shape:nth-child(4) {
  width: 0; height: 0; border-left: 8px solid transparent; border-right: 8px solid transparent;
  border-bottom: 14px solid var(--indigo);
  top: 15%; right: 30%; animation: float1 9s ease-in-out infinite 2s; opacity: 0.2;
}
.float-shape:nth-child(5) {
  width: 10px; height: 10px; background: var(--acid-dark); border-radius: 2px;
  bottom: 25%; right: 10%; animation: float2 11s ease-in-out infinite 1s; opacity: 0.3;
  transform: rotate(45deg);
}
.float-shape:nth-child(6) {
  width: 14px; height: 14px; border: 2px solid var(--violet); border-radius: 4px;
  top: 60%; left: 8%; animation: float3 7s ease-in-out infinite 3s; opacity: 0.18;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, -30px) rotate(180deg); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-30px, 20px) rotate(-180deg); }
}
@keyframes float3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(15px, -20px) rotate(120deg); }
  66% { transform: translate(-10px, 15px) rotate(240deg); }
}

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 820px; margin: 0 auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: var(--radius-btn);
  background: rgba(124, 58, 237, 0.08); border: 1px solid rgba(124, 58, 237, 0.15);
  font-size: 0.85rem; font-weight: 600; color: var(--violet);
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 800;
  color: var(--dark); margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Word Rotator */
.word-rotator {
  overflow: hidden; height: 1.2em; display: inline-block; vertical-align: bottom;
  position: relative;
}
.word-rotator-inner {
  display: flex; flex-direction: column;
  animation: slideWords 10s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}
.word-rotator-inner span {
  height: 1.2em; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--violet), var(--indigo));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
@keyframes slideWords {
  0%, 16%   { transform: translateY(0); }
  20%, 36%  { transform: translateY(-20%); }
  40%, 56%  { transform: translateY(-40%); }
  60%, 76%  { transform: translateY(-60%); }
  80%, 96%  { transform: translateY(-80%); }
}

.hero-subtitle {
  font-size: 1.15rem; color: var(--gray-600); max-width: 620px; margin: 0 auto 40px;
  line-height: 1.7; animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-ctas {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; border-radius: var(--radius-btn);
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--violet); color: white;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.35);
  background: var(--violet-dark);
}

.btn-secondary {
  background: var(--white); color: var(--dark);
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  transform: translateY(-3px); border-color: var(--violet-light);
  box-shadow: var(--shadow-md); color: var(--violet);
}

/* ============ LOGO MARQUEE ============ */
.logo-marquee {
  padding: 60px 0; background: var(--white);
  border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}
.marquee-label {
  text-align: center; font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gray-400); font-weight: 600; margin-bottom: 32px;
}

/* ============ SECTION STYLING ============ */
section { padding: 100px 0; }
.section-white { background: var(--white); }
.section-gray { background: var(--gray-50); }
.section-violet {
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  color: white;
}
.section-dark {
  background: var(--dark); color: white;
}

.section-header {
  text-align: center; max-width: 640px; margin: 0 auto 60px;
}
.section-header .overline {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--violet); font-weight: 700; margin-bottom: 12px;
}
.section-dark .section-header .overline,
.section-violet .section-header .overline { color: var(--acid); }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700;
  margin-bottom: 16px;
}
.section-dark .section-header h2 { color: white; }
.section-header p { font-size: 1.05rem; color: var(--gray-600); line-height: 1.7; }
.section-dark .section-header p { color: rgba(255,255,255,0.6); }
.section-violet .section-header p { color: rgba(255,255,255,0.8); }

/* ============ CARDS ============ */
.card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px; border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0; transform: translateY(40px);
}
.card.visible { opacity: 1; transform: translateY(0); }
.card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(124, 58, 237, 0.3);
}
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
  background: rgba(124, 58, 237, 0.08);
}
.card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.card p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.65; }

/* Staggered entrance delays */
.card:nth-child(1) { transition-delay: 0ms; }
.card:nth-child(2) { transition-delay: 150ms; }
.card:nth-child(3) { transition-delay: 300ms; }
.card:nth-child(4) { transition-delay: 450ms; }

/* Card grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ============ PROBLEM ============ */
.problem-card .card-icon { background: rgba(239,68,68,0.08); }

/* ============ SOLUTIONS ============ */
.solution-card .card-icon { background: rgba(124,58,237,0.08); }

/* ============ AUTOMATION GRID ============ */
.auto-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.auto-item {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px; border-radius: 12px;
  background: var(--white); border: 1px solid var(--gray-100);
  font-size: 0.9rem; font-weight: 500; color: var(--gray-800);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  opacity: 0; transform: translateY(20px);
}
.auto-item.visible { opacity: 1; transform: translateY(0); }
.auto-item:hover {
  transform: translateY(-6px); border-color: rgba(124,58,237,0.25);
  box-shadow: var(--shadow-md);
}
.auto-item .auto-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(124,58,237,0.08); font-size: 1.1rem; flex-shrink: 0;
}

/* ============ HOW IT WORKS ============ */
.steps-wrapper { position: relative; max-width: 900px; margin: 0 auto; }
.steps-connector {
  position: absolute; left: 32px; top: 40px; bottom: 40px; width: 3px;
  background: var(--gray-200); border-radius: 2px;
}
.steps-connector-fill {
  width: 100%; height: 0; background: linear-gradient(180deg, var(--violet), var(--acid));
  border-radius: 2px; transition: height 0.1s linear;
}
.step {
  display: flex; gap: 32px; padding: 32px 0; position: relative;
  opacity: 0; transform: translateX(-30px);
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.step.visible { opacity: 1; transform: translateX(0); }
.step-number {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Instrument Serif', Georgia, serif; font-weight: 800; font-size: 1.3rem;
  background: var(--white); border: 3px solid var(--gray-200);
  color: var(--gray-400); z-index: 2;
  transition: all 0.5s ease;
}
.step.visible .step-number {
  border-color: var(--violet); color: var(--violet);
  box-shadow: 0 0 0 6px rgba(124,58,237,0.1);
}
.step-content { padding-top: 8px; }
.step-content h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.step-content p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.65; max-width: 500px; }

/* ============ STATS ============ */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
.stat-item {
  opacity: 0; transform: translateY(30px);
  transition: all 0.6s ease;
}
.stat-item.visible { opacity: 1; transform: translateY(0); }
.stat-number {
  font-family: 'Instrument Serif', Georgia, serif; font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800; color: var(--violet);
  margin-bottom: 8px;
}
.section-dark .stat-number {
  background: linear-gradient(135deg, var(--acid), #d4fc79);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.95rem; color: var(--gray-600); font-weight: 500; }
.section-dark .stat-label { color: rgba(255,255,255,0.5); }

/* ============ INDUSTRIES ============ */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.industry-item {
  text-align: center; padding: 32px 20px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  opacity: 0; transform: scale(0.9);
}
.industry-item.visible { opacity: 1; transform: scale(1); }
.industry-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg); border-color: rgba(124,58,237,0.2);
}
.industry-icon { font-size: 2.2rem; margin-bottom: 12px; }
.industry-item h4 { font-size: 1rem; font-weight: 700; color: var(--dark); }

/* ============ PRICING ============ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px 32px; border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm); text-align: center;
  transition: all 0.4s ease;
  opacity: 0; transform: translateY(40px);
}
.pricing-card.visible { opacity: 1; transform: translateY(0); }
.pricing-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-xl);
}
.pricing-card.featured {
  border: 2px solid var(--violet); position: relative;
  box-shadow: var(--shadow-lg); transform: scale(1.05);
}
.pricing-card.featured.visible { transform: scale(1.05); }
.pricing-card.featured:hover { transform: scale(1.05) translateY(-8px); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--violet); color: white; padding: 4px 20px;
  border-radius: var(--radius-btn); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.pricing-card h3 {
  font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 8px;
}
.pricing-card .price {
  font-family: 'Instrument Serif', Georgia, serif; font-size: 2.8rem; font-weight: 800;
  color: var(--dark); margin-bottom: 4px;
}
.pricing-card .price span { font-size: 1rem; font-weight: 500; color: var(--gray-400); }
.pricing-card .price-sub { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 28px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 32px; }
.pricing-features li {
  padding: 10px 0; font-size: 0.9rem; color: var(--gray-600);
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--gray-100);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: ''; width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: rgba(124,58,237,0.1); display: flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237C3AED' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* ============ CTA SECTION ============ */
.cta-section {
  text-align: center; padding: 120px 0;
  background: linear-gradient(135deg, var(--violet), var(--indigo));
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(163,230,53,0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(79,70,229,0.3) 0%, transparent 50%);
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: white; margin-bottom: 16px;
}
.cta-section p {
  font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto;
}
.cta-section .btn-primary {
  background: white; color: var(--violet);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-section .btn-primary:hover {
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
  transform: translateY(-3px);
}
.cta-section .btn-primary::before {
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.1), transparent);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--dark); padding: 80px 0 40px; color: rgba(255,255,255,0.5);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo { color: white; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.65; max-width: 280px; }
.footer-col h4 {
  font-family: 'Instrument Serif', Georgia, serif; font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.45); text-decoration: none;
  font-size: 0.9rem; padding: 6px 0; transition: color 0.3s;
}
.footer-col a:hover { color: var(--acid); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem;
}

/* ============ SCROLL ANIMATION BASE ============ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ FADE IN KEYFRAMES ============ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .grid-4, .auto-grid, .industry-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured.visible { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-8px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.active {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: white;
    padding: 24px; gap: 16px; box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--gray-100);
  }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .auto-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  section { padding: 70px 0; }
  .step { gap: 20px; }
  .steps-connector { left: 24px; }
  .step-number { width: 48px; height: 48px; font-size: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}