@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;700;800&family=Inter:wght@400;500;600&family=IBM+Plex+Mono:wght@400&display=swap');

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  font-family: 'Inter', sans-serif;
  color: #1A1D23;
}

a { color: #FF6A3D; }
a:hover { color: #E6572A; }

img { max-width: 100%; }

@keyframes pulseDot {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}

@keyframes fadeInUpContent {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Появление блоков при скролле */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.16,.84,.44,1), transform 0.7s cubic-bezier(.16,.84,.44,1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Шапка сайта */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #ECEDF1;
  transition: transform 0.3s ease;
}
.site-header.header-hidden {
  transform: translateY(-100%);
}
.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.main-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 14.5px;
  font-weight: 500;
}
.main-nav a {
  color: #1A1D23;
  text-decoration: none;
}
.btn-primary {
  background: #FF6A3D;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  display: inline-block;
}
/* Бургер-меню (мобильная версия) */
.burger-btn {
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  border: none;
  background: #F5F6F8;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.burger-bars { position: relative; width: 18px; height: 13px; display: block; }
.burger-bars .bar {
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #1A1D23;
  transition: top 0.22s ease, transform 0.22s ease, opacity 0.18s ease;
}
.bar-top { top: 0; }
.bar-mid { top: 5.5px; }
.bar-bot { top: 11px; }
.burger-btn.open .bar-top { top: 5.5px; transform: rotate(45deg); }
.burger-btn.open .bar-bot { top: 5.5px; transform: rotate(-45deg); }
.burger-btn.open .bar-mid { opacity: 0; }

.mobile-menu {
  display: none;
  border-top: 1px solid #ECEDF1;
  background: #FFFFFF;
  padding: 8px 20px 24px;
  animation: fadeInUpContent 0.22s ease;
}
.mobile-menu.open { display: block; }
.mobile-nav { display: flex; flex-direction: column; }
.mobile-nav a {
  color: #1A1D23;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 4px;
  border-bottom: 1px solid #F5F6F8;
}
.mobile-nav a:last-child { border-bottom: none; }

@media (max-width: 899px) {
  .main-nav, .header-cta-desktop { display: none; }
  .burger-btn { display: flex; }
}

.btn-primary.small {
  font-weight: 600;
  font-size: 14.5px;
  padding: 11px 22px;
  border-radius: 12px;
  white-space: nowrap;
}
.btn-outline {
  background: transparent;
  color: #1A1D23;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 14px;
  border: 1.5px solid #1A1D23;
  display: inline-block;
}

/* Hero */
.hero {
  scroll-margin-top: 90px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 32px 88px;
  display: flex;
  gap: 56px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-text { flex: 1 1 440px; min-width: 320px; }
.hero-badge {
  display: inline-block;
  background: #F5F6F8;
  color: #5B6270;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero-text h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #5B6270;
  max-width: 480px;
  margin: 0 0 36px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-size: 14px;
  color: #5B6270;
  align-items: center;
}
.trust-row > span { display: flex; align-items: center; gap: 8px; }
.pulse-dot { position: relative; width: 8px; height: 8px; flex: 0 0 auto; }
.pulse-dot span { position: absolute; inset: 0; border-radius: 50%; background: #FF6A3D; }
.pulse-dot span.ping { animation: pulseDot 1.8s ease-out infinite; }
.hero-image {
  flex: 1 1 380px;
  min-width: 300px;
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 24px;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 40%;
  display: block;
}

/* Секции */
section h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  letter-spacing: -0.01em;
}
.section-gray { background: #F5F6F8; }
.section-pad { padding: 96px 32px; }
.container { max-width: 1280px; margin: 0 auto; }

/* О нас */
.about-inner {
  display: flex;
  gap: 56px;
  align-items: center;
  flex-wrap: wrap-reverse;
}
.about-icon-box {
  background: #FFFFFF;
  border-radius: 20px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(26,29,35,0.06);
}
.about-text { flex: 1 1 480px; min-width: 320px; }
.about-text h2 { margin: 0 0 24px; }
.about-text p { font-size: 17px; line-height: 1.7; color: #5B6270; margin: 0 0 18px; }

/* Оборудование */
.section-title-center { text-align: center; }
.section-title-center h2 { margin: 0 0 12px; }
.section-title-center p { color: #5B6270; font-size: 17px; margin: 0 0 56px; }

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.product-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 8px 24px rgba(26,29,35,0.06);
  border: 1px solid #EAF9F5;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.7s cubic-bezier(.16,.84,.44,1);
}
.product-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 44px rgba(26,29,35,0.14);
}
.product-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.product-card-head .name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
}
.tag {
  border: 1.3px solid #2FE6C4;
  color: #17A88C;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}
.tag.tag-gray {
  border-color: #C7CBD2;
  color: #5B6270;
}
.product-image {
  background: #F5F6F8;
  border-radius: 16px;
  aspect-ratio: 4/5;
  min-height: 340px;
  overflow: hidden;
  margin-bottom: 24px;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
@media (max-width: 899px) {
  .product-image img { object-position: center center; }
}
.product-card p.desc { font-size: 15.5px; line-height: 1.65; color: #5B6270; margin: 0 0 22px; }
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  font-size: 14px;
  margin-bottom: 24px;
}
.spec-grid span { color: #9AA0AC; }

.tab-switch {
  display: flex;
  gap: 8px;
  background: #F5F6F8;
  padding: 5px;
  border-radius: 12px;
  margin-bottom: 20px;
}
.tab-btn {
  flex: 1 1 auto;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  padding: 10px 14px;
  border-radius: 9px;
  background: transparent;
  color: #5B6270;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.tab-btn.active {
  background: #FFFFFF;
  color: #1A1D23;
  box-shadow: 0 2px 8px rgba(26,29,35,0.08);
}

.tab-btn-dark {
  flex: 1 1 auto;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  padding: 10px 18px;
  border-radius: 9px;
  background: transparent;
  color: #FFFFFF;
  transition: background 0.25s ease;
}
.tab-btn-dark.active { background: #FF6A3D; }

.price-row {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUpContent 0.35s ease;
}
.price-row.active { display: flex; }
.price-row .label { color: #9AA0AC; font-size: 13px; }
.price-row .value {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 24px;
}

/* Аренда */
.rental-section {
  scroll-margin-top: 90px;
  background: linear-gradient(180deg, #FFF6F2, #FFFFFF);
}
.rental-intro { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.rental-intro p { font-size: 17px; line-height: 1.65; color: #5B6270; margin: 0; }
.rental-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}
.icon-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(26,29,35,0.06);
}
.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #FFF0EA;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.icon-card h3 { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 19px; margin: 0 0 10px; }
.icon-card p { font-size: 15px; line-height: 1.6; color: #5B6270; margin: 0; }
.center { text-align: center; }

/* Преимущества */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.benefit-card { background: #FFFFFF; border-radius: 20px; padding: 30px; }
.benefit-card h3 { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 17px; margin: 0 0 8px; }
.benefit-card p { font-size: 14.5px; line-height: 1.55; color: #5B6270; margin: 0; }

/* Локации */
.locations-wrap { max-width: 1000px; margin: 0 auto; text-align: center; }
.locations-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.location-pill {
  background: #F5F6F8;
  color: #1A1D23;
  font-size: 14.5px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 100px;
}

/* B2B */
.b2b-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 56px;
  margin-bottom: 56px;
}
.b2b-grid h2 { margin: 0 0 22px; }
.b2b-grid p { font-size: 17px; line-height: 1.7; color: #5B6270; margin: 0 0 16px; }
.checklist-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
}
.checklist-card h3 { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 18px; margin: 0 0 20px; }
.checklist { display: flex; flex-direction: column; gap: 16px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; }
.check-icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #FFF0EA;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.check-item .txt { font-size: 15px; line-height: 1.5; color: #1A1D23; }

.deal-steps-title { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 19px; margin: 0 0 24px; }
.deal-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.deal-step { background: #FFFFFF; border-radius: 16px; padding: 24px; }
.deal-step .num { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 22px; color: #FF6A3D; margin-bottom: 10px; }
.deal-step .title { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.deal-step .desc { font-size: 13.5px; line-height: 1.5; color: #5B6270; }

.terminal-note {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.terminal-note .txt { font-size: 15px; line-height: 1.5; color: #1A1D23; }

/* Сертификаты и процесс */
.cert-box {
  max-width: 760px;
  margin: 0 auto;
  background: #F5F6F8;
  border-radius: 20px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px 32px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.process-step { background: #FFFFFF; border-radius: 16px; padding: 26px 22px; }
.process-step .num {
  width: 36px; height: 36px; border-radius: 100px;
  background: #FF6A3D; color: #FFFFFF;
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.process-step .title { font-size: 15.5px; font-weight: 700; margin-bottom: 8px; }
.process-step .desc { font-size: 13.5px; line-height: 1.55; color: #5B6270; }

/* Контакты / CTA */
#contacts.section-pad {
  padding: clamp(48px, 10vw, 96px) 20px;
}
.contact-box {
  max-width: 1280px;
  margin: 0 auto;
  background: #1A1D23;
  border-radius: 28px;
  padding: clamp(32px, 6vw, 64px) clamp(24px, 5vw, 48px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 56px;
}
.contact-box h2 { color: #FFFFFF; margin: 0 0 16px; }
.contact-box > div > p { font-size: 15.5px; line-height: 1.6; color: #9AA0AC; margin: 0 0 32px; }
.request-type-switch {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  padding: 5px;
  border-radius: 12px;
  margin-bottom: 20px;
  width: fit-content;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 100%;
}
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: #FFFFFF;
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
}
.contact-form textarea { resize: vertical; }
.contact-form button {
  background: #FF6A3D;
  color: #FFFFFF;
  border: none;
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 6px;
}
.contacts-title { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 18px; color: #FFFFFF; margin: 0 0 22px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-info .phone { color: #FFFFFF; font-size: 16px; font-weight: 600; }
.contact-info .muted { color: #9AA0AC; font-size: 15px; }
.social-row { display: flex; gap: 12px; }
.social-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-copy { text-align: center; color: #9AA0AC; font-size: 13px; margin-top: 32px; }

.form-note { color: #9AA0AC; font-size: 13px; margin-top: 10px; }
