@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg:        #0d1410;
  --bg-mid:    #141c11;
  --bg-card:   #192016;
  --green:     #1a3020;
  --green-mid: #223d28;
  --accent:    #7ab648;
  --accent-dim:#5a8a34;
  --chrome:    #b8c4b0;
  --chrome-dim:#7a8c72;
  --white:     #eef2ea;
  --muted:     #4a5c44;
  --border:    rgba(122,182,72,0.1);
  --border-mid:rgba(122,182,72,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--chrome);
  line-height: 1.6;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 68px;
  background: rgba(13,20,16,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
}

nav { display: flex; gap: 32px; }

nav a {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chrome-dim);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1px;
  background: var(--accent);
  transition: right 0.25s ease;
}
nav a:hover { color: var(--white); }
nav a:hover::after { right: 0; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--chrome);
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--bg-mid);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  flex-direction: column;
  padding: 24px 40px;
  gap: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chrome-dim);
  font-weight: 500;
}
.mobile-nav a:hover { color: var(--accent); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 32px;
  max-width: 680px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
  display: block;
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
  max-width: 440px;
  margin-bottom: 48px;
  line-height: 1.75;
  text-shadow: 0 1px 16px rgba(0,0,0,0.85);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 15px 32px;
  border: 2px solid var(--accent);
  transition: all 0.22s;
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent);
}
.btn-primary svg { transition: transform 0.22s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--chrome);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 15px 28px;
  border: 1px solid var(--muted);
  transition: all 0.22s;
}
.btn-outline:hover {
  border-color: var(--chrome);
  color: var(--white);
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--green);
  border-top: 1px solid var(--border-mid);
  border-bottom: 1px solid var(--border-mid);
}
.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 0 32px;
  border-right: 1px solid var(--border-mid);
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  letter-spacing: 0.06em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chrome-dim);
  font-weight: 400;
}

/* ── SECTIONS ── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 40px;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.0;
  margin-bottom: 18px;
}

.section-lead {
  font-size: 15px;
  font-weight: 300;
  color: var(--chrome-dim);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 52px;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.service-card {
  background: var(--bg-card);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { background: var(--bg-mid); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 44px; height: 44px;
  margin-bottom: 22px;
  color: var(--accent);
}

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--chrome-dim);
  line-height: 1.7;
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-list { list-style: none; display: flex; flex-direction: column; gap: 28px; }
.why-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.why-list li:last-child { border-bottom: none; padding-bottom: 0; }

.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--border-mid);
  line-height: 1;
  min-width: 44px;
  letter-spacing: 0.04em;
}
.why-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.why-text p {
  font-size: 13px;
  font-weight: 300;
  color: var(--chrome-dim);
  line-height: 1.65;
}

.why-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--green-mid);
  border-top: 1px solid var(--border-mid);
  border-bottom: 1px solid var(--border-mid);
}
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.cta-text p {
  font-size: 14px;
  font-weight: 300;
  color: var(--chrome-dim);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--bg-mid);
  border-bottom: 1px solid var(--border);
  padding: 116px 40px 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 60%);
}
.page-hero-inner {}
.page-hero-inner .section-label { margin-bottom: 14px; }
.page-hero-inner h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.0;
  margin-bottom: 18px;
}
.page-hero-inner p {
  font-size: 15px;
  font-weight: 300;
  color: var(--chrome-dim);
  max-width: 560px;
  line-height: 1.75;
}

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
}
.about-body p {
  font-size: 14px;
  font-weight: 300;
  color: var(--chrome-dim);
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-body p:last-child { margin-bottom: 0; }

.about-aside {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  padding: 36px 32px;
}
.about-aside h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.about-aside ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-aside li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: var(--chrome-dim);
  line-height: 1.5;
}
.about-aside li::before {
  content: '›';
  color: var(--accent);
  font-size: 16px;
  line-height: 1.2;
  flex-shrink: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.value-card {
  background: var(--bg-card);
  padding: 36px 28px;
  text-align: left;
}
.value-card svg {
  width: 36px; height: 36px;
  color: var(--accent);
  margin-bottom: 18px;
}
.value-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--chrome-dim);
  line-height: 1.65;
}

/* ── SERVICES PAGE ── */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 80px;
}
.service-full-card {
  background: var(--bg-card);
  padding: 44px 40px;
  transition: background 0.25s;
  position: relative;
}
.service-full-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-full-card:hover { background: var(--bg-mid); }
.service-full-card:hover::before { transform: scaleX(1); }

.service-full-card svg {
  width: 40px; height: 40px;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-full-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.service-full-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--chrome-dim);
  line-height: 1.75;
  margin-bottom: 18px;
}
.service-full-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-full-card ul li {
  font-size: 12px;
  font-weight: 300;
  color: var(--chrome-dim);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.service-full-card ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 15px;
  line-height: 1.2;
}

/* ── REQUISITES PAGE ── */
.req-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.req-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.req-table-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--border);
}
.req-table-row:last-child { border-bottom: none; }
.req-key, .req-val {
  padding: 16px 22px;
  font-size: 13px;
  line-height: 1.5;
}
.req-key {
  font-weight: 400;
  color: var(--chrome-dim);
  border-right: 1px solid var(--border);
  background: rgba(122,182,72,0.03);
}
.req-val {
  font-weight: 400;
  color: var(--white);
  font-size: 13px;
}

.bank-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  padding: 32px 28px;
}
.bank-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.bank-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.bank-row:last-child { margin-bottom: 0; }
.bank-item label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3px;
}
.bank-item span {
  font-size: 13px;
  color: var(--white);
  font-weight: 400;
}

/* ── CONTACTS PAGE ── */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.contact-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 36px 32px;
}
.contact-block h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-item svg {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-item-text label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chrome-dim);
  margin-bottom: 3px;
}
.contact-item-text a,
.contact-item-text span {
  font-size: 14px;
  color: var(--white);
  font-weight: 400;
  transition: color 0.2s;
}
.contact-item-text a:hover { color: var(--accent); }

.schedule-table { width: 100%; }
.schedule-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.schedule-row:last-child { border-bottom: none; }
.schedule-row .day { color: var(--chrome-dim); font-weight: 300; }
.schedule-row .time { color: var(--white); font-weight: 400; }

/* ── FOOTER ── */
footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding: 44px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chrome-dim);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--accent); }
.footer-copy {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  header { padding: 0 24px; }
  nav { display: none; }
  .burger { display: flex; }
  .mobile-nav { padding: 24px; }

  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stat-item {
    padding: 0;
    border-right: none;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { padding-bottom: 0; border-bottom: none; }

  .services-grid { grid-template-columns: 1fr; background: none; gap: 1px; }
  .services-full-grid { grid-template-columns: 1fr; background: none; gap: 1px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; background: none; gap: 1px; }
  .req-wrapper { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }

  .section { padding: 60px 24px; }
  .hero-content { padding: 60px 24px; }
  .page-hero { padding: 96px 24px 44px; }
  .cta-inner { padding: 36px 24px; }
  .stats-bar-inner { padding: 28px 24px; }

  .req-table-row { grid-template-columns: 1fr; }
  .req-key { border-right: none; border-bottom: 1px solid var(--border); }

  footer { padding: 36px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 52px; }
  .stat-num { font-size: 30px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}
