/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0c0a07;
  --bg-alt:      #080604;
  --surface:     #131009;
  --surface-2:   #19160f;
  --border:      rgba(212,149,106,.11);
  --border-hover:rgba(200,116,58,.35);
  --text:        #e2cdb4;
  --text-muted:  #8a7b6a;
  --text-dim:    #4e4840;
  --accent:      #c8743a;
  --accent-dark: #a05a28;
  --accent-dim:  rgba(200,116,58,.12);
  --accent-glow: rgba(200,116,58,.28);
  --gold:        #d4a56a;
  --green:       #c8a060;
  --radius:      12px;
  --radius-lg:   18px;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow:      0 4px 30px rgba(0,0,0,.65);
  --transition:  .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 10%, rgba(160,80,30,.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 90%, rgba(100,50,18,.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--gold); text-decoration: underline; }
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(212,165,106,.12);
}

.text-accent { color: var(--gold); }
.bold { font-weight: 700; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  text-decoration: none !important;
  white-space: nowrap;
  letter-spacing: .02em;
}
.btn--sm  { padding: 7px 16px; font-size: 13px; }
.btn--lg  { padding: 14px 32px; font-size: 15px; border-radius: 10px; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 18px var(--accent-glow);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
  box-shadow: 0 6px 28px var(--accent-glow);
  transform: translateY(-2px);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}
.btn--ghost:hover {
  color: var(--text);
  border-color: rgba(212,165,106,.3);
  background: rgba(200,116,58,.06);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: var(--border-hover);
  color: var(--gold);
  transform: translateY(-1px);
}

/* ===== Fade-up animation ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(12,10,7,.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav--scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  transition: opacity .2s;
}
.nav__brand:hover { opacity: .85; }
.nav__brand-ak {
  font-family: 'Bungee', sans-serif;
  font-size: 1.25rem;
  letter-spacing: .06em;
  background: linear-gradient(130deg, var(--gold) 20%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(212,165,106,.3));
  transition: filter .2s;
}
.nav__brand:hover .nav__brand-ak {
  filter: drop-shadow(0 0 14px rgba(212,165,106,.6));
}
.nav__brand-div {
  display: inline-block;
  width: 1px;
  height: 1.1em;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: .4;
  flex-shrink: 0;
}
.nav__brand-name {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .2s;
}
.nav__brand:hover .nav__brand-name { color: var(--text); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero__glow--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,116,58,.13) 0%, transparent 70%);
  top: -100px; left: -150px;
}
.hero__glow--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(160,80,30,.09) 0%, transparent 70%);
  bottom: -50px; right: -100px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 768px) {
  .hero__inner { grid-template-columns: 1fr 1.2fr; }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,116,58,.3);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: .04em;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.4); }
}
.hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.hero__title span {
  background: linear-gradient(130deg, var(--gold) 20%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero__byline {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: .06em;
}

/* ===== Hero Video ===== */
.hero__visual { justify-content: center; align-items: flex-start; }

.hero__video-frame {
  position: relative;
  width: 100%;
  max-width: 700px;
  padding: 3px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 50%, var(--accent-dark) 100%);
  box-shadow:
    0 0 0 1px rgba(200,116,58,.2),
    0 0 40px rgba(200,116,58,.2),
    0 0 80px rgba(160,80,30,.12),
    0 20px 60px rgba(0,0,0,.7);
}
.hero__video-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, var(--accent), var(--gold), var(--accent-dark), var(--gold), var(--accent));
  background-size: 300% 300%;
  animation: border-flow 5s linear infinite;
  z-index: -1;
  filter: blur(10px);
  opacity: .55;
}
@keyframes border-flow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero__video-wrap {
  width: 100%;
  border-radius: 17px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
  background: #000;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero__video-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero__video-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

/* ===== Stats ===== */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  position: relative;
  z-index: 1;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 640px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
}
.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid var(--border);
}
.stats__item:last-child { border-right: none; }
@media (max-width: 639px) {
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(1),
  .stats__item:nth-child(2) { border-bottom: 1px solid var(--border); }
}
.stats__num {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(130deg, var(--gold) 20%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stats__label {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 130px;
  line-height: 1.4;
}
.stats__sub {
  font-size: 11px;
  color: var(--accent);
  margin-top: 4px;
  opacity: .7;
}

/* ===== Generic section ===== */
.section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.section--alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.section__lead {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 640px;
  line-height: 1.75;
}

/* ===== Capabilities ===== */
.cap__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.cap__card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.cap__card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 36px rgba(200,116,58,.1);
  transform: translateY(-4px);
}
.cap__card--primary { border-color: rgba(200,116,58,.28); }
.cap__icon {
  width: 56px; height: 56px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,116,58,.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.cap__priority {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(200,116,58,.25);
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
}
.cap__title {
  font-size: 19px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -.01em;
}
.cap__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.cap__sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.cap__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.cap__list li::before {
  content: '→ ';
  color: var(--accent);
}
.cap__for {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cap__tag {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ===== Projects ===== */
.projects__featured {
  background: var(--surface-2);
  border: 1px solid rgba(200,116,58,.28);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 24px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
@media (min-width: 768px) {
  .projects__featured { grid-template-columns: 1.4fr 1fr; }
}
.projects__featured:hover {
  border-color: var(--border-hover);
  box-shadow: 0 12px 48px rgba(200,116,58,.12);
}
.proj-feat__video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.proj-feat__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.proj-feat__body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.proj__company {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}
.proj-feat__title {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--gold);
  letter-spacing: -.02em;
}
.proj__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.proj__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.proj__tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(200,116,58,.2);
  padding: 3px 10px;
  border-radius: 100px;
}
.proj__award {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(212,165,106,.15), rgba(200,116,58,.08));
  border: 1px solid rgba(212,165,106,.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 8px;
  letter-spacing: .03em;
}
.proj__extra-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.proj__link {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 8px;
  transition: all var(--transition);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.proj__link:hover {
  color: var(--gold);
  border-color: var(--border-hover);
  background: var(--accent-dim);
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.proj__card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.proj__card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(200,116,58,.1);
  transform: translateY(-4px);
}
.proj__video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  flex-shrink: 0;
}
.proj__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.proj__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.proj__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -.01em;
}

/* ===== Expertise ===== */
.expertise__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 700px) {
  .expertise__wrap { grid-template-columns: 1fr; }
}
.expertise__text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.expertise__text strong { color: var(--text); }
.expertise__check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.expertise__check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.check-circle {
  width: 22px; height: 22px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,116,58,.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}
.expertise__tags-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.expertise__tags-group h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.expertise__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.expertise__tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  transition: all var(--transition);
}
.expertise__tag:hover {
  color: var(--gold);
  border-color: var(--border-hover);
  background: var(--accent-dim);
}
.expertise__tag--accent {
  color: var(--accent);
  border-color: rgba(200,116,58,.25);
  background: var(--accent-dim);
}

/* ===== Pilot offer ===== */
.pilot__offer {
  background: linear-gradient(135deg, rgba(200,116,58,.1) 0%, rgba(160,80,30,.05) 100%);
  border: 1px solid rgba(200,116,58,.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.pilot__offer::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-dark), var(--gold), var(--accent));
}
.pilot__offer-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.pilot__offer-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 24px;
}
.pilot__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pilot__perk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 10px;
}
.pilot__perk-icon { font-size: 16px; }

/* ===== Partners ===== */
.partners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.partners__group {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.partners__group:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.partners__group--priority .partners__group-head {
  background: linear-gradient(135deg, rgba(200,116,58,.18), rgba(160,80,30,.1));
}
.partners__group-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.partners__group-icon { font-size: 22px; }
.partners__group-info { flex: 1; }
.partners__group-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.partners__group-priority {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.partners__list {
  list-style: none;
  padding: 12px 0;
}
.partners__list li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 7px 18px;
  border-bottom: 1px solid rgba(212,149,106,.06);
  transition: color var(--transition), background var(--transition);
  line-height: 1.4;
}
.partners__list li:last-child { border-bottom: none; }
.partners__list li:hover {
  color: var(--text);
  background: rgba(200,116,58,.04);
}

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: linear-gradient(160deg, #0c0a07 0%, #1a1009 50%, #0f0a05 100%);
  border-top: 1px solid var(--border);
  z-index: 1;
}
.cta__glow {
  position: absolute;
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,116,58,.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.02em;
  background: linear-gradient(130deg, var(--text) 40%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta__sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.cta__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
  color: var(--text-muted);
  justify-content: center;
}
.cta__contacts a { color: var(--accent); }
.cta__contacts a:hover { color: var(--gold); }

/* ===== Footer ===== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  position: relative;
  z-index: 1;
}
.footer a { color: var(--text-muted); }
.footer a:hover { color: var(--gold); text-decoration: none; }

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .hero { padding: 100px 0 60px; }
  .section { padding: 60px 0; }
  .hero__actions { flex-direction: column; }
  .btn--lg { width: 100%; justify-content: center; }
  .pilot__offer { padding: 24px 20px; }
  .proj-feat__body { padding: 24px 20px; }
  .expertise__wrap { gap: 32px; }
}
