/* Deep Glassmorphism Styles */

:root {
  --deep-black: #050508;
  --primary: #06b6d4;
  --primary-dark: #0891b2;
  --accent: #3b82f6;
  --accent-light: #60a5fa;
  --text-primary: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --border-glass: rgba(255, 255, 255, 0.1);
  --glow-primary: rgba(6, 182, 212, 0.4);
  --glow-accent: rgba(59, 130, 246, 0.35);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

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

/* Utility Classes */
.bg-deep-black {
  background-color: var(--deep-black);
}

.bg-gradient-radial {
  background: radial-gradient(circle, var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to));
}

/* Shell Container */
.shell {
  width: min(100% - 3rem, 1200px);
  margin-inline: auto;
  padding-block: 1.25rem;
}

.section {
  padding-block: 4rem;
  position: relative;
}

.section--alt {
  background: radial-gradient(1400px 700px at 20% -10%, rgba(6, 182, 212, 0.12), transparent 60%),
              radial-gradient(1000px 600px at 90% 10%, rgba(59, 130, 246, 0.10), transparent 60%);
}

/* Header — фіксована панель зверху при прокручуванні */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: rgba(5, 5, 5, 0.85);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
}

/* Відступ контенту під фіксованим хедером */
main {
  padding-top: 5.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px var(--glow-primary));
  transition: all 0.3s ease;
}

.brand:hover .brand-logo {
  filter: drop-shadow(0 0 20px var(--glow-primary)) brightness(1.1);
  transform: scale(1.05);
}

.logo {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--deep-black);
  border-radius: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px var(--glow-primary);
}

.nav__toggle {
  display: none;
  appearance: none;
  border: none;
  background: none;
}

.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 24px;
}
.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav__list a {
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav__list a:hover {
  color: var(--primary);
}

/* Відступ для контенту під фіксованим хедером */
main {
  padding-top: 5.5rem;
}

/* Hero Section */
.hero {
  padding-block: 8rem 6rem;
  position: relative;
  overflow: clip;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero__content {
  display: grid;
  gap: 1.5rem;
}

.hero__eyebrow {
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
  line-height: 1.1;
  font-weight: 800;
  margin: 0;
}

.txt-gradient {
  background: linear-gradient(90deg, var(--primary), var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
}

.anim-gradient {
  animation: gradient-shift 8s ease-in-out infinite alternate;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.hero__sub {
  color: var(--text-muted);
  max-width: 65ch;
  font-size: 1.125rem;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  min-height: 400px;
  overflow: visible;
}

.floating-elements {
  position: absolute;
  inset: 0;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  top: 10%;
  left: 10%;
  animation: float-orb 8s ease-in-out infinite;
}

.orb-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  bottom: 20%;
  right: 15%;
  animation: float-orb 10s ease-in-out infinite reverse;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-light), transparent 70%);
  top: 50%;
  left: 50%;
  animation: float-orb 12s ease-in-out infinite;
}

@keyframes float-orb {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.badge-item {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-glass);
  border-radius: 999px;
  font-size: 0.875rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: badge-float 6s ease-in-out infinite;
}

.badge-item:nth-child(1) { animation-delay: 0s; }
.badge-item:nth-child(2) { animation-delay: 1.5s; }
.badge-item:nth-child(3) { animation-delay: 3s; }
.badge-item:nth-child(4) { animation-delay: 4.5s; }

.badge-item:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 20px var(--glow-primary);
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Deep Glassmorphism Cards */
.neu-glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Deep inner shadow effect */
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.neu-glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(59, 130, 246, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.neu-glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 182, 212, 0.35);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px var(--glow-primary);
}

.neu-glass-card:hover::before {
  opacity: 1;
}

/* Deep Glow Effect */
.deep-glow {
  position: relative;
}

.deep-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  filter: blur(20px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.neu-glass-card:hover .deep-glow::after {
  opacity: 0.4;
}

/* 3D Icon Gems */
.icon-gem-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-gem {
  width: 80px;
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Glass capsule */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  box-shadow: 
    inset 0 2px 4px rgba(255, 255, 255, 0.1),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 30px rgba(6, 182, 212, 0.2);
  
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-gem-icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
  filter: drop-shadow(0 0 8px var(--glow-primary));
  transition: all 0.4s ease;
}

.neu-glass-card:hover .icon-gem {
  transform: scale(1.1) rotateY(5deg);
  box-shadow: 
    inset 0 2px 4px rgba(255, 255, 255, 0.15),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3),
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 50px rgba(6, 182, 212, 0.5),
    0 0 80px rgba(59, 130, 246, 0.3);
}

.neu-glass-card:hover .icon-gem-icon {
  transform: scale(1.1);
  color: var(--accent-light);
  filter: drop-shadow(0 0 16px var(--glow-accent));
}

/* Tiles */
.tiles {
  display: grid;
  gap: 2rem;
}

.tile h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--text-primary);
}

.tile p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  line-height: 1.7;
}

.tile .list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.tile .list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.tile .list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 8px var(--glow-primary);
}

/* Section Headers */
.section__head {
  text-align: center;
  margin-bottom: 3rem;
}

.section__head h2 {
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  font-weight: 800;
  margin: 0 0 1rem;
  background: linear-gradient(135deg, var(--text-primary), var(--text-muted));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__head p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 60ch;
  margin: 0 auto;
}

/* Industries Grid */
.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.industry-card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.industry-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.industry-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

.related-industries {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
}

.related-industries h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
  color: var(--primary);
}

.related-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.tag {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 999px;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  transition: all 0.3s ease;
}

.tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 20px var(--glow-primary);
}

/* About Section */
.about__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.about__card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--text-primary);
}

.facts {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.facts dt {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.facts dd {
  margin: 0;
  color: var(--text-primary);
}

.about__card .address,
.about__card .director {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about__card .director {
  margin-bottom: 0;
}

.about__card .director strong {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
}

/* History Timeline Section */
.history-timeline {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.history-timeline::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  opacity: 0.3;
}

.timeline-item {
  padding: 2rem;
  position: relative;
  padding-left: 5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 2.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 20px var(--glow-primary);
  z-index: 1;
}

.timeline-year {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}

.timeline-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--text-primary);
}

.timeline-item p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .history-timeline::before {
    left: 1rem;
  }
  
  .timeline-item {
    padding-left: 3.5rem;
  }
  
  .timeline-item::before {
    left: 0.5rem;
  }
}

/* Leadership Section */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.leadership-card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.leadership-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.leadership-icon-svg {
  width: 80px;
  height: 80px;
  color: var(--primary);
  filter: drop-shadow(0 0 20px var(--glow-primary));
  transition: all 0.3s ease;
}

.leadership-card:hover .leadership-icon-svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 30px var(--glow-primary));
}

.leadership-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.leadership-role {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 1rem;
  font-family: 'JetBrains Mono', monospace;
}

.leadership-bio {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
  text-align: left;
}

@media (max-width: 768px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }
}

/* Stats Section */
.stats-section {
  padding-block: 4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Buttons */
.btn {
  appearance: none;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 20px var(--glow-primary);
}

.btn:hover::before {
  opacity: 1;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--deep-black);
  border: none;
  box-shadow: 0 4px 20px var(--glow-primary);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--glow-primary);
  color: var(--deep-black);
}

.anim-pulse {
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 4px 20px var(--glow-primary);
  }
  50% {
    box-shadow: 0 4px 30px var(--glow-primary), 0 0 40px var(--glow-primary);
  }
}

/* Contact Section */
.section--contact {
  position: relative;
}

.contact__wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.contact__bg {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(800px 400px at 15% 0%, rgba(6, 182, 212, 0.15), transparent 60%),
              radial-gradient(700px 400px at 90% 100%, rgba(59, 130, 246, 0.12), transparent 60%);
  filter: blur(40px);
  z-index: -1;
}

.contact {
  padding: 2.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field span {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2), 0 0 20px var(--glow-primary);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field--full {
  grid-column: 1 / -1;
}

.contact__actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
}

/* Footer */
.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--border-glass);
  padding-block: 3rem;
  margin-top: 4rem;
  max-width: 100%;
  overflow-x: hidden;
}

.footer__brand {
  font-weight: 700;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--glow-primary));
}

.footer__nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__nav a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__nav a:hover {
  color: var(--primary);
}

.footer__meta {
  text-align: right;
}

.footer__meta small {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  
  .industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 18px;
  }
  
  .shell {
    width: 100%;
    padding-inline: 20px;
  }
  
  .section {
    padding-block: 3rem;
  }
  
  .hero {
    padding-block: 4rem 3rem;
  }
  
  .hero__title {
    font-size: clamp(1.75rem, 6vw + 1rem, 2.5rem);
  }
  
  .hero__sub {
    font-size: 1rem;
  }
  
  .hero__eyebrow {
    font-size: 0.8rem;
  }
  
  .hero__cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero__cta .btn {
    width: 100%;
    text-align: center;
    padding: 0.875rem 1.5rem;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
    padding: 12px;
    border: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border-radius: 12px;
    cursor: pointer;
  }
  
  .nav__list {
    position: fixed;
    inset: 0;
    top: 72px;
    left: 0;
    right: 0;
    bottom: auto;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    background: rgba(5, 5, 8, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-glass);
    border-radius: 0 0 20px 20px;
    padding: 1.5rem 20px 2rem;
    gap: 0.25rem;
    display: flex;
    flex-direction: column;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 999;
  }
  
  .nav__list[data-open="1"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .nav__list a {
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    border-radius: 12px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  
  .nav__toggle[aria-expanded="true"] .nav__burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav__toggle[aria-expanded="true"] .nav__burger span:nth-child(2) {
    opacity: 0;
  }
  .nav__toggle[aria-expanded="true"] .nav__burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .grid.cols-2,
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }
  
  .industries__grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding-block: 2.5rem;
    padding-inline: 20px;
    max-width: 100%;
  }

  .footer__brand {
    justify-content: center;
  }

  .footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .footer__nav a {
    padding: 0.5rem 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .footer__meta {
    text-align: center;
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-glass);
    width: 100%;
  }

  .footer__meta small {
    display: block;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
