﻿/* --- LOKAL SHRIFTY --- */

/* Barlow Condensed (Для мощных плотных заголовков H1, H2) */
@font-face {
  font-family: 'Barlow Condensed';
  src: url('fonts/barlow-condensed-v13-latin_latin-ext-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('fonts/barlow-condensed-v13-latin_latin-ext-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('fonts/barlow-condensed-v13-latin_latin-ext-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
}

/* Barlow (Обычный) */
@font-face {
  font-family: 'Barlow';
  src: url('fonts/barlow-v13-latin_latin-ext-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Barlow';
  src: url('fonts/barlow-v13-latin_latin-ext-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

/* Inter (Для текста) */
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-v20-latin_latin-ext-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-v20-latin_latin-ext-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
/* ── CSS VARIABLES ── */
:root {
  --orange: #FF931E;
  --orange-dark: #D4690F;
  --black: #111111;
  --text: #1A1A1A;
  --text-mid: #555555;
  --text-light: #999999;
  --border: rgba(0, 0, 0, 0.09);
  --border-mid: rgba(0, 0, 0, 0.12);
  --bg: #FFFFFF;
  --bg-alt: #F7F7F7;
  --pad: clamp(50px, 6vw, 100px) clamp(20px, 5vw, 80px);
}

/* ── BASE RESET & GLOBAL ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Основной текст сайта */
body {
  font-family: 'Inter', 'Barlow', sans-serif;
}

/* Все заголовки H1, H2, H3 (получат тот самый стильный плотный вид как на дизайне) */
h1, h2, h3, .hero-h1, .section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}



.logo-strix,
.logo-computers,
.hero-h1,
.stat-num,
.accent-val,
.section-title,
.service-name,
.service-num,
.partner-region,
.why-num,
.form-title,
.footer-logo-strix {
  font-family: 'Barlow Condensed', sans-serif;
}

/* ── LAYOUT CONTAINERS ── */
.inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 clamp(20px, 5vw, 80px);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-strix {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--black);
}

.logo-strix .logo-ri {
  color: var(--orange);
}

.logo-computers {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 4px;
  color: #aaa;
  display: block;
  line-height: 1;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  display: flex;
  border: 1px solid var(--border-mid);
  border-radius: 4px;
  overflow: hidden;
}

.lang-toggle button {
  background: none;
  border: none;
  color: var(--text-light);
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-toggle button.active {
  background: var(--orange);
  color: #fff;
}

.btn-nav {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 9px 22px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-nav:hover {
  background: var(--orange-dark);
}

/* ── HERO SECTION ── */
#hero {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

#hero .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 100vh;
  padding: 120px clamp(20px, 5vw, 80px) 60px;
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(244, 124, 32, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(244, 124, 32, 0.35);
  background: rgba(244, 124, 32, 0.05);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: var(--black);
}

.hero-h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 460px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.btn-primary svg {
  transition: transform 0.2s;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-mid);
  text-decoration: none;
  padding: 14px 28px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid var(--border-mid);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.hero-stats {
  margin-top: 56px;
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-img-main {
  width: 100%;
  aspect-ratio: 16/10;
  background: #EEF2F7;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.hero-img-accent {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: #fff;
  border: 1px solid rgba(244, 124, 32, 0.25);
  border-left: 3px solid var(--orange);
  padding: 14px 18px;
  min-width: 170px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.accent-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 4px;
}

.accent-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
}

.accent-sub {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}

.hero-img-tag {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  text-transform: uppercase;
  border-radius: 2px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-bar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 80px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  width: 36px;
  height: 36px;
  background: rgba(244, 124, 32, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.trust-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

.trust-text span {
  font-size: 12px;
  color: var(--text-light);
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── COMMON SECTION STYLES ── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: var(--black);
}

.section-title em {
  font-style: normal;
  color: var(--orange);
}

.section-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 520px;
}

/* ── ABOUT SECTION ── */
#about {
  background: var(--bg-alt);
}

#about .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: var(--pad);
}

.about-visual {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: #E8EEF4;
  border-radius: 4px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.about-stat-cards {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  padding: 12px 18px;
  min-width: 160px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.stat-card .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--orange);
  line-height: 1;
}

.stat-card .lbl {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tag {
  border: 1px solid var(--border-mid);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-mid);
  text-transform: uppercase;
  border-radius: 2px;
  background: #fff;
}

/* ── SERVICES SECTION ── */
#services {
  background: var(--bg);
}

#services .inner {
  padding: var(--pad);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--bg-alt);
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  border-color: rgba(244, 124, 32, 0.25);
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: rgba(0, 0, 0, 0.04);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(244, 124, 32, 0.08);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: var(--black);
}

.service-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-mid);
  font-weight: 300;
}

/* ── PARTNERS SECTION ── */
#partners {
  background: var(--bg-alt);
  text-align: center;
}

#partners .inner {
  padding: var(--pad);
}

.partners-header {
  max-width: 600px;
  margin: 0 auto 60px;
}

.partners-header .section-desc {
  margin: 0 auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.partner-card {
  border: 1px solid var(--border);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 3px;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.partner-card:hover {
  border-color: rgba(244, 124, 32, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.partner-flag {
  font-size: 36px;
}

.partner-region {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
}

.partner-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── WHY US SECTION ── */
#why {
  background: var(--bg);
}

#why .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: var(--pad);
}

.why-list {
  display: flex;
  flex-direction: column;
}

.why-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
  transition: padding-left 0.3s;
}

.why-item:hover {
  padding-left: 8px;
}

.why-item:first-child {
  padding-top: 0;
}

.why-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: var(--orange);
  letter-spacing: 1px;
  flex-shrink: 0;
  padding-top: 2px;
}

.why-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.why-text p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 300;
}

/* ── INDUSTRIES SECTION ── */
#industries {
  background: var(--bg-alt);
  text-align: center;
}

#industries .inner {
  padding: var(--pad);
}

.industries-header {
  max-width: 600px;
  margin: 0 auto 56px;
}

.industries-header .section-desc {
  margin: 0 auto;
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.industry-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  padding: 14px 24px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-mid);
  transition: all 0.2s;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.industry-pill:hover {
  border-color: var(--orange);
  color: var(--black);
  box-shadow: 0 4px 16px rgba(244, 124, 32, 0.1);
}

.industry-pill span {
  font-size: 18px;
}

/* ── TESTIMONIALS SECTION ── */
#testimonials {
  background: var(--bg);
}

#testimonials .inner {
  padding: var(--pad);
}

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.testimonials-header .section-desc {
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: 3px;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 80px;
  color: rgba(244, 124, 32, 0.2);
  line-height: 0.5;
  margin-bottom: 24px;
  display: block;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  color: #fff;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

.author-title {
  font-size: 12px;
  color: var(--text-light);
}

/* ── CONTACT SECTION ── */
#contact {
  background: var(--bg-alt);
}

#contact .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: var(--pad);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(244, 124, 32, 0.08);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.contact-detail a,
.contact-detail span {
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  display: block;
  transition: color 0.2s ease;
}

.contact-detail a:hover {
  color: var(--orange);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-mid);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}

.social-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(244, 124, 32, 0.04);
}

.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 3px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
  color: var(--black);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border-mid);
  color: var(--text);
  padding: 12px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--orange-dark);
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

footer .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px clamp(20px, 5vw, 80px);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-logo-strix {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  letter-spacing: 2px;
}

.footer-seo {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  text-align: right;
}

.footer-seo-title {
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
  margin-bottom: 4px;
}

.footer-seo-tags {
  color: rgba(255, 255, 255, 0.12);
  font-size: 10px;
}

/* ── ANIMATIONS ── */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── BURGER MENU STYLES ── */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.burger-btn span {
  width: 100%;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Анимация крестика при открытии */
.burger-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── RESPONSIVE MEDIA QUERIES ── */
@media (max-width: 1024px) {
  nav .inner {
    padding: 0 40px;
  }
  .burger-btn {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  .nav-links.open {
    display: flex;
    transform: translateY(0);
  }
  #hero .inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-visual {
    display: none;
  }
  #about .inner,
  #why .inner,
  #contact .inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  #services .inner,
  #partners .inner,
  #industries .inner,
  #testimonials .inner {
    padding: 80px 40px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-bar .inner {
    flex-wrap: wrap;
    gap: 16px;
  }
  .trust-divider {
    display: none;
  }
  footer .inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 24px 40px;
  }
  .footer-seo {
    text-align: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  nav .inner {
    padding: 0 24px;
  }
  #hero .inner,
  #about .inner,
  #why .inner,
  #contact .inner {
    padding: 100px 24px 48px;
  }
  #services .inner,
  #partners .inner,
  #industries .inner,
  #testimonials .inner {
    padding: 60px 24px;
  }
  .trust-bar .inner {
    padding: 16px 24px;
  }
  footer .inner {
    padding: 24px;
  }
  .services-grid,
  .partners-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
}