@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');
:root {
  --laboratory-white: #F8FAFB;
  --sterile-gray: #F1F5F9;
  --deep-void: #0F172A;
  --steel: #475569;
  --silver: #94A3B8;
  --precision-violet: #7C3AED;
  --violet-light: #8B5CF6;
  --violet-dark: #6D28D9;
  --electric-cyan: #06B6D4;
  --cyan-light: #22D3EE;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--steel);
  background: var(--laboratory-white);
  overflow-x: hidden;
}

strong, p, b {
  color: inherit;
}

a {
  color: var(--precision-violet);
  text-decoration: none;
  transition: all 0.25s ease-out;
}

a:hover {
  color: var(--violet-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--deep-void);
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 32px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.25s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--precision-violet), var(--violet-dark));
  color: white;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.35);
  color: white;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--deep-void);
  color: var(--deep-void);
}

.btn-secondary:hover {
  border-color: var(--precision-violet);
  color: var(--precision-violet);
  transform: translateY(-2px);
}

.btn:active {
  transform: scale(0.98);
  filter: brightness(0.95);
}

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 100vh;
  background: rgba(248, 250, 251, 0.99);
  border-right: 1px solid rgba(124, 58, 237, 0.1);
  box-shadow: 4px 0 56px rgba(15, 23, 42, 0.04);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px) saturate(180%);
}

.sidebar-logo {
  padding: 32px 24px;
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  text-align: center;
}

.logo-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--precision-violet), var(--deep-void));
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.sidebar-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--deep-void);
  letter-spacing: -0.01em;
}

.sidebar-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  color: var(--silver);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.sidebar-nav {
  flex: 1;
  padding: 48px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.nav-item {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 0;
  transition: all 0.25s ease;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(71, 85, 105, 0.8);
  border-left: 3px solid transparent;
}

.nav-item:hover, .nav-item.active {
  background: rgba(124, 58, 237, 0.08);
  border-left-color: var(--precision-violet);
  color: var(--precision-violet);
}

.nav-item svg {
  width: 20px;
  height: 20px;
  stroke: rgba(71, 85, 105, 0.5);
  stroke-width: 2;
  fill: none;
}

.nav-item:hover svg, .nav-item.active svg {
  stroke: var(--precision-violet);
}

.sidebar-footer {
  padding: 24px 16px;
  border-top: 1px solid rgba(124, 58, 237, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-cta {
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, var(--precision-violet), var(--violet-dark));
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.2);
  cursor: pointer;
  transition: all 0.25s ease-out;
}

.sidebar-cta:hover {
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
  color: white;
}

.sidebar-phone {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--precision-violet);
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 8px;
}

.main-content {
  margin-left: 280px;
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  background: var(--sterile-gray);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-mesh-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 60%);
  filter: blur(120px);
  animation: meshMove1 35s ease-in-out infinite alternate;
}

.hero-mesh-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -50px;
  right: 10%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.03) 0%, transparent 60%);
  filter: blur(100px);
  animation: meshMove2 40s ease-in-out infinite alternate;
}

.hero-mesh-3 {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(241, 245, 249, 0.04) 0%, transparent 60%);
  filter: blur(150px);
  animation: meshMove3 30s ease-in-out infinite alternate;
}

@keyframes meshMove1 {
  0% { transform: translate(0, 0) scale(0.95); }
  100% { transform: translate(40px, 40px) scale(1.05); }
}

@keyframes meshMove2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, -30px) scale(0.95); }
}

@keyframes meshMove3 {
  0% { transform: translate(-50%, -50%) scale(0.9); }
  100% { transform: translate(-45%, -55%) scale(1.1); }
}

.hero-kt {
  position: absolute;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 180px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--deep-void);
  opacity: 0.025;
  pointer-events: none;
  white-space: nowrap;
}

.hero-kt-1 {
  top: 10%;
  left: 0;
  width: 100%;
  animation: ktMove1 60s linear infinite;
}

.hero-kt-2 {
  top: 45%;
  right: 0;
  width: 100%;
  text-align: right;
  letter-spacing: 0.1em;
  animation: ktMove2 55s linear infinite reverse;
}

@keyframes ktMove1 {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@keyframes ktMove2 {
  0% { transform: translateX(100%); }
  100% { transform: translateX(0); }
}

.hero-violet-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 120px 80px 80px 80px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  align-items: center;
}

.hero-left {
  z-index: 1;
}

.hero-decor {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  stroke: rgba(124, 58, 237, 0.4);
  stroke-width: 2;
  fill: none;
}

.hero-title {
  font-size: 52px;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--deep-void);
  max-width: 520px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--steel);
  line-height: 1.75;
  max-width: 440px;
}

.hero-markers {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.hero-marker {
  width: 10px;
  height: 10px;
  background: var(--precision-violet);
  filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.25));
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.hero-right {
  position: relative;
  height: 520px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
  height: 100%;
}

.hero-grid-item {
  position: relative;
  overflow: hidden;
}

.hero-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98);
  transition: transform 0.4s ease;
}

.hero-grid-item:hover img {
  transform: scale(1.02);
}

.hero-grid-item-1 {
  grid-row: span 2;
  margin-top: -24px;
  margin-left: -20px;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.1);
  z-index: 2;
}

.hero-grid-item-1::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 40px rgba(124, 58, 237, 0.06);
  pointer-events: none;
}

.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(124, 58, 237, 0.1);
  padding: 16px 20px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.hero-card-1 {
  top: 40px;
  right: 20px;
}

.hero-card-2 {
  bottom: 40px;
  right: 20px;
}

.hero-card-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--deep-void);
}

.hero-card-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--precision-violet);
}

.section {
  padding: 120px 80px;
  position: relative;
}

.section-light {
  background: var(--laboratory-white);
}

.section-sterile {
  background: var(--sterile-gray);
}

.section-dark {
  background: var(--deep-void);
}

.section-title {
  font-size: 44px;
  letter-spacing: -0.02em;
  color: var(--deep-void);
}

.section-title-light {
  color: white;
}

.section-subtitle {
  font-size: 16px;
  color: var(--silver);
  margin-top: 8px;
  line-height: 1.8;
}

.section-divider {
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--precision-violet), var(--electric-cyan), var(--precision-violet));
  position: absolute;
  left: 55%;
  top: 0;
  transform: translateX(-50%);
}

.hard-cut {
  height: 2px;
  background: var(--precision-violet);
  width: 100%;
}

.services-stack {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-radius: 0;
  border: 1px solid rgba(124, 58, 237, 0.08);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
  padding: 0;
  margin-bottom: -80px;
  transition: all 0.3s ease;
  z-index: 1;
}

.service-card:hover {
  z-index: 100 !important;
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(124, 58, 237, 0.1);
}

.service-card-inner {
  display: flex;
  padding: 28px 40px;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin: 0 28px 0 0;
  flex-shrink: 0;
  stroke: var(--precision-violet);
  stroke-width: 2;
  fill: none;
}

.service-content {
  flex: 1;
}

.service-title {
  font-size: 16px;
  font-weight: 700;
}

.service-desc {
  font-size: 14px;
  color: var(--steel);
  margin-top: 4px;
  line-height: 1.6;
}

.service-image {
  height: 100px;
  object-fit: cover;
  margin-top: 16px;
  filter: saturate(0.98);
}

.service-accent {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--precision-violet), var(--electric-cyan));
  margin-bottom: 16px;
}

.about-split {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 600px;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-decor {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 60px;
  height: 60px;
  stroke: rgba(124, 58, 237, 0.3);
  stroke-width: 2;
  fill: none;
}

.about-overlap {
  position: absolute;
  top: 20px;
  left: -40px;
  width: 120px;
  height: 80px;
  background: rgba(124, 58, 237, 0.04);
  z-index: 10;
  transition: all 0.3s ease;
}

.about-overlap:hover {
  z-index: 20;
  opacity: 1;
}

.about-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-decor {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  stroke: rgba(124, 58, 237, 0.4);
  stroke-width: 2;
  fill: none;
}

.about-cta {
  margin-top: 24px;
}

.process-container {
  position: relative;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-node-center {
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(124, 58, 237, 0.06);
  border: 2px solid var(--precision-violet);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-node-center svg {
  width: 64px;
  height: 64px;
  stroke: var(--deep-void);
  stroke-width: 2;
  fill: none;
}

.process-node {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(124, 58, 237, 0.08);
  padding: 20px 24px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}

.process-node:hover {
  z-index: 10;
  scale: 1.06;
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: 0 20px 56px rgba(124, 58, 237, 0.08);
}

.process-node svg {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  stroke: var(--precision-violet);
  stroke-width: 2;
  fill: none;
}

.process-node-title {
  font-size: 14px;
  font-weight: 700;
}

.process-node-text {
  font-size: 13px;
  color: var(--steel);
  margin-top: 6px;
  line-height: 1.5;
}

.process-line {
  position: absolute;
  stroke: rgba(124, 58, 237, 0.12);
  stroke-width: 2;
  fill: none;
}

.marquee {
  overflow: hidden;
  padding: 24px 0;
  background: var(--laboratory-white);
}

.marquee-track {
  display: flex;
  animation: marqueeMove 30s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--deep-void);
  margin: 0 32px;
}

.marquee-sep {
  width: 8px;
  height: 8px;
  background: var(--precision-violet);
}

@keyframes marqueeMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(124, 58, 237, 0.1);
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover {
  flex-grow: 1.5;
  background: white;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.12);
  border-color: rgba(124, 58, 237, 0.15);
}

.advantage-card:hover .advantage-value {
  color: var(--precision-violet);
}

.advantage-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  stroke: var(--electric-cyan);
  stroke-width: 2;
  fill: none;
}

.advantage-value {
  font-size: 44px;
  font-weight: 700;
  color: var(--steel);
}

.advantage-label {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.advantage-label + p {
  color: rgba(0, 0, 0, 0.6);
}

.achievements-grid {
  column-count: 3;
  column-gap: 20px;
}

.achievement-card {
  break-inside: avoid;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(124, 58, 237, 0.08);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.achievement-card:hover {
  transform: scale(1.03);
  border-color: rgba(124, 58, 237, 0.15);
  box-shadow: 0 24px 64px rgba(124, 58, 237, 0.1);
  z-index: 10;
}

.achievement-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: saturate(0.98);
}

.achievement-content {
  padding: 20px 24px;
}

.achievement-title {
  font-size: 16px;
  font-weight: 700;
}

.achievement-category {
  font-size: 11px;
  color: var(--precision-violet);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.achievement-desc {
  font-size: 14px;
  color: var(--steel);
  margin-top: 8px;
  line-height: 1.6;
}

.achievement-line {
  width: 40px;
  height: 2px;
  background: var(--precision-violet);
  margin: 20px 24px;
}

.achievement-stat {
  padding: 24px;
}

.achievement-stat-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--precision-violet);
}

.achievement-stat-label {
  font-size: 12px;
  color: var(--steel);
  margin-top: 4px;
}

.achievement-stat-mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--silver);
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 40px;
}

.team-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(124, 58, 237, 0.08);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-item:hover {
  background: white;
  border-color: rgba(124, 58, 237, 0.15);
  box-shadow: 0 24px 64px rgba(124, 58, 237, 0.08);
  transform: translateX(8px);
}

.team-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.team-icon {
  width: 48px;
  height: 48px;
  stroke: var(--precision-violet);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

.team-name {
  font-size: 18px;
  font-weight: 700;
}

.team-role {
  font-size: 14px;
  color: var(--precision-violet);
  margin-top: 4px;
}

.team-reveal {
  width: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-item:hover .team-reveal {
  width: 280px;
}

.team-photo {
  height: 80px;
  width: 280px;
  object-fit: cover;
}

.team-accent {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--precision-violet), var(--electric-cyan));
  margin-top: 12px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 0 80px;
}

.faq-panel {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(124, 58, 237, 0.08);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}

.faq-panel:hover {
  border-color: rgba(124, 58, 237, 0.15);
  box-shadow: 0 20px 56px rgba(124, 58, 237, 0.08);
  z-index: 10;
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 24px;
  cursor: pointer;
}

.faq-icon {
  width: 44px;
  height: 44px;
  margin-right: 16px;
  stroke: var(--precision-violet);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

.faq-title {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
}

.faq-arrow {
  width: 24px;
  height: 24px;
  stroke: var(--silver);
  stroke-width: 2;
  fill: none;
  transition: all 0.3s ease;
}

.faq-panel.active .faq-arrow {
  transform: rotate(180deg);
  stroke: var(--precision-violet);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-panel.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 24px 24px;
}

.faq-answer-img {
  height: 180px;
  object-fit: cover;
  margin-top: 16px;
  filter: saturate(0.98);
}

.faq-answer-text {
  font-size: 16px;
  color: var(--steel);
  margin-top: 12px;
  line-height: 1.75;
}

.faq-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 24px;
  background: var(--precision-violet);
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.testimonials-carousel {
  position: relative;
  height: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  margin-top: 40px;
}

.testimonial-card {
  position: absolute;
  width: 280px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(124, 58, 237, 0.08);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.testimonial-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  filter: saturate(0.98);
}

.testimonial-content {
  padding: 24px;
}

.testimonial-decor {
  width: 32px;
  height: 2px;
  background: rgba(124, 58, 237, 0.2);
  margin-bottom: 12px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.testimonial-star {
  width: 16px;
  height: 16px;
  fill: var(--precision-violet);
}

.testimonial-text {
  font-size: 15px;
  font-style: italic;
  color: var(--steel);
  line-height: 1.65;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 2px solid rgba(124, 58, 237, 0.15);
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
}

.testimonial-company {
  font-size: 12px;
  color: var(--silver);
}

.testimonial-accent {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--precision-violet), var(--electric-cyan));
  margin-top: 16px;
}

.carousel-nav {
  position: absolute;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(124, 58, 237, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-nav svg {
  width: 24px;
  height: 24px;
  stroke: var(--precision-violet);
  stroke-width: 2;
  fill: none;
}

.carousel-prev {
  left: 20%;
}

.carousel-next {
  right: 20%;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-form {
  padding: 80px 60px;
}

.contact-form-title {
  font-size: 28px;
  font-weight: 700;
}

.contact-form-subtitle {
  font-size: 14px;
  color: var(--silver);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--silver);
  display: block;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 2px solid rgba(15, 23, 42, 0.1);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: var(--deep-void);
  background: transparent;
  border-radius: 0;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-bottom-color: var(--precision-violet);
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  color: var(--precision-violet);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  margin-top: 16px;
}

.contact-info {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(124, 58, 237, 0.08);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
  padding: 80px 48px;
}

.contact-block {
  padding: 20px 0;
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.contact-block:first-child {
  border-top: none;
}

.contact-block-icon {
  width: 24px;
  height: 24px;
  stroke: var(--precision-violet);
  stroke-width: 1.5;
  fill: none;
  margin-bottom: 8px;
}

.contact-block-text {
  font-size: 15px;
  color: var(--steel);
}

.contact-map {
  margin-top: 24px;
  width: 100%;
  height: 200px;
  filter: grayscale(100%);
  border: 1px solid rgba(124, 58, 237, 0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(124, 58, 237, 0.1);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
  padding: 24px;
  max-width: 400px;
  z-index: 9998;
}

.cookie-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cookie-text {
  font-size: 13px;
  color: var(--steel);
  margin-bottom: 16px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  flex: 1;
  padding: 10px 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cookie-accept {
  background: var(--precision-violet);
  color: white;
  border: none;
}

.cookie-accept:hover {
  background: var(--violet-dark);
}

.cookie-decline {
  background: transparent;
  color: var(--steel);
  border: 1px solid rgba(15, 23, 42, 0.2);
}

.cookie-decline:hover {
  border-color: var(--precision-violet);
  color: var(--precision-violet);
}

.cookie-links {
  margin-top: 12px;
  font-size: 12px;
}

.cookie-link {
  color: var(--precision-violet);
  margin-right: 16px;
}

.breadcrumbs {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--silver);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: var(--silver);
}

.breadcrumbs a:hover {
  color: var(--precision-violet);
}

.page-hero {
  min-height: 280px;
  background: var(--laboratory-white);
  position: relative;
  overflow: hidden;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero-title {
  font-size: 44px;
  letter-spacing: -0.02em;
  color: var(--deep-void);
  display: flex;
  align-items: center;
}

.page-hero-line {
  width: 24px;
  height: 24px;
  stroke: var(--precision-violet);
  stroke-width: 3px;
  margin-right: 12px;
}

.page-hero-markers {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.page-hero-marker {
  width: 8px;
  height: 8px;
  background: var(--precision-violet);
}

.footer {
  background: var(--deep-void);
  padding: 80px 60px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--precision-violet), var(--deep-void));
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.footer-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: white;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-link:hover {
  color: var(--precision-violet);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 13px;
  color: var(--silver);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--silver);
}

.footer-legal a:hover {
  color: var(--precision-violet);
}

.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: rgba(124, 58, 237, 0.08);
  border: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--precision-violet);
  stroke-width: 2;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(248, 250, 251, 0.99);
  backdrop-filter: blur(24px);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
}

.mobile-menu-overlay.active {
  display: flex;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
  stroke: var(--precision-violet);
  stroke-width: 2;
}

.mobile-menu-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-menu-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--deep-void);
}

.mobile-menu-sep {
  width: 60px;
  height: 2px;
  background: var(--precision-violet);
  margin: 8px 0;
}

.mobile-menu-phone {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--precision-violet);
  margin-top: 24px;
}

.mobile-menu-address {
  font-size: 14px;
  color: var(--silver);
  text-align: center;
  margin-top: 8px;
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.65s ease-out;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: all 0.5s ease-out;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: all 0.6s ease-out;
}

.reveal-sharp {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s ease-out;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1024px) {
  .sidebar {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .main-content {
    margin-left: 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 100px 40px 60px;
  }

  .hero-right {
    display: none;
  }

  .section {
    padding: 80px 40px;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 300px;
  }

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

  .achievements-grid {
    column-count: 2;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    padding: 0 40px;
  }

  .contact-split {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: 36px;
  }

  .page-hero {
    padding: 60px 40px;
  }

  .page-hero-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .section {
    padding: 60px 24px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .achievements-grid {
    column-count: 1;
  }

  .team-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-reveal {
    width: 100%;
    margin-top: 16px;
  }

  .team-item:hover .team-reveal {
    width: 100%;
  }

  .team-photo {
    width: 100%;
    height: 150px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-secondary {
    margin-left: 0;
    margin-top: 12px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    max-width: none;
  }

  .hero-kt {
    font-size: 100px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .hero-kt {
    font-size: 60px;
  }
}