/* Industry page styles — shared across all industry pages */

*, *::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', sans-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', sans-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; }

/* ============ BREADCRUMB ============ */
.breadcrumb-bar {
  padding: 100px 0 0;
}
.breadcrumb-list {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--gray-400);
}
.breadcrumb-list a {
  color: var(--gray-600); text-decoration: none; font-weight: 500;
  transition: color 0.3s;
}
.breadcrumb-list a:hover { color: var(--violet); }
.breadcrumb-sep { color: var(--gray-400); }

/* ============ HERO ============ */
.hero {
  position: relative; padding: 40px 0 80px; overflow: hidden;
}

.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 { 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;
}
@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.2rem); font-weight: 800;
  color: var(--dark); margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--violet), var(--indigo));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.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);
}

/* ============ 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); }

/* Left-aligned section header variant */
.section-header-left {
  max-width: 640px; margin: 0 0 60px;
}
.section-header-left .overline {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--violet); font-weight: 700; margin-bottom: 12px;
}
.section-header-left h2 {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700;
  margin-bottom: 16px; color: var(--dark);
}
.section-header-left p { font-size: 1.05rem; color: var(--gray-600); line-height: 1.7; }

/* ============ 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; }

.card-metric {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  font-size: 0.85rem; font-weight: 600; color: var(--violet);
}

.card:nth-child(1) { transition-delay: 0ms; }
.card:nth-child(2) { transition-delay: 100ms; }
.card:nth-child(3) { transition-delay: 200ms; }
.card:nth-child(4) { transition-delay: 300ms; }
.card:nth-child(5) { transition-delay: 400ms; }
.card:nth-child(6) { transition-delay: 500ms; }
.card:nth-child(7) { transition-delay: 600ms; }
.card:nth-child(8) { transition-delay: 700ms; }

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

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

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

/* ============ PROBLEM SPLIT LAYOUT ============ */
.problem-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.problem-stat-block {
  text-align: center; padding: 48px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
}
.problem-stat-num {
  font-family: 'Instrument Serif', sans-serif; font-size: 5rem; font-weight: 800;
  color: #DC2626; line-height: 1; margin-bottom: 8px;
}
.problem-stat-label {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--gray-400); font-weight: 700; margin-bottom: 16px;
}
.problem-stat-context {
  font-size: 0.95rem; color: var(--gray-600); line-height: 1.65;
  max-width: 300px; margin: 0 auto;
}
.problem-text h2 {
  font-family: 'Instrument Serif', sans-serif; font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700; line-height: 1.15; color: var(--dark); margin-bottom: 20px;
}
.problem-text h2 span { color: #DC2626; }
.problem-text > p {
  font-size: 1rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 24px;
}
.problem-list { list-style: none; }
.problem-list li {
  font-size: 0.95rem; color: var(--gray-600); line-height: 1.65;
  padding: 10px 0; display: flex; align-items: flex-start; gap: 12px;
  border-bottom: 1px solid var(--gray-100);
}
.problem-list li:last-child { border-bottom: none; }
.problem-list .p-icon {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: rgba(239,68,68,0.08); color: #DC2626;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; margin-top: 2px;
}

/* ============ USE CASES (BEFORE/AFTER) ============ */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-col {
  border-radius: var(--radius); padding: 36px;
  opacity: 0; transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.compare-col.visible { opacity: 1; transform: translateY(0); }
.compare-col.before {
  background: rgba(239,68,68,0.04); border: 1px solid rgba(239,68,68,0.12);
}
.compare-col.after {
  background: rgba(16,185,129,0.04); border: 1px solid rgba(16,185,129,0.12);
}
.compare-col h3 {
  font-size: 1.15rem; font-weight: 700; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.compare-col.before h3 { color: #DC2626; }
.compare-col.after h3 { color: #059669; }
.compare-col ul { list-style: none; }
.compare-col li {
  font-size: 0.95rem; line-height: 1.65; padding: 8px 0;
  display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.compare-col li:last-child { border-bottom: none; }
.compare-col.before li { color: rgba(220,38,38,0.75); }
.compare-col.after li { color: rgba(5,150,105,0.85); }
.compare-icon {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; flex-shrink: 0; margin-top: 2px; font-weight: 700;
}
.compare-col.before .compare-icon { background: rgba(239,68,68,0.1); color: #DC2626; }
.compare-col.after .compare-icon { background: rgba(16,185,129,0.1); color: #059669; }

/* ============ COMPLIANCE SECTION ============ */
.compliance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.compliance-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px; border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm); text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0; transform: translateY(30px);
}
.compliance-card.visible { opacity: 1; transform: translateY(0); }
.compliance-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg); border-color: rgba(124,58,237,0.2);
}
.compliance-icon {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; background: rgba(124,58,237,0.08);
}
.compliance-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.compliance-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; }

/* ============ 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', sans-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); }

/* ============ FAQ SECTION ============ */
.faq-grid { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-100); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0; transform: translateY(20px);
}
.faq-item.visible { opacity: 1; transform: translateY(0); }
.faq-item:hover { border-color: rgba(124,58,237,0.2); }
.faq-item.open { border-color: rgba(124,58,237,0.3); box-shadow: var(--shadow-md); }
.faq-question {
  padding: 20px 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600;
  color: var(--dark); background: none; border: none; width: 100%; text-align: left;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--violet); }
.faq-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gray-50); display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.3s;
  font-size: 0.75rem; color: var(--gray-400);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: rgba(124,58,237,0.08); color: var(--violet); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; }

/* ============ 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', sans-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 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, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .compliance-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .problem-split { grid-template-columns: 1fr; gap: 40px; }
}
@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, .compare-grid { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 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; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}