/* ===== GENERAL ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  background: #f8f9fb;
  color: #222;
  line-height: 1.6;
}
.container {
  width: 92%;
  max-width: 1280px;
  margin: auto;
}

/* ===== HEADER ===== */
.header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav {
  display: flex;
  gap: 25px;
}
.nav__link {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}
.nav__link--primary {
  padding: 8px 16px;
  border: 1px solid #0d6efd;
  border-radius: 6px;
  color: #0d6efd;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo__mark {
  background: #0d6efd;
  color: #fff;
  font-weight: bold;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 20px;
}
.logo__mark--small {
  padding: 8px 12px;
  font-size: 16px;
}
.logo__name {
  font-size: 16px;
  font-weight: 700;
}
.logo__sub {
  font-size: 12px;
  color: #666;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 70px 0;
  color: #fff;
  overflow: hidden;
}

/* Background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(background.jpg) center/cover no-repeat;
  filter: brightness(0.35);
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 2;
}

/* Hero content */
.hero__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.hero__title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 18px;
  margin-bottom: 25px;
  color: #e4e8ff;
}

.hero__actions {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

/* Buttons */
.btn {
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn--primary {
  background: #0d6efd;
  color: #fff;
}

.btn--ghost {
  border: 1px solid #0d6efd;
  color: #0d6efd;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
}

.btn--block {
  width: 100%;
}

/* ===== HERO CARD ===== */
.hero-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
  backdrop-filter: blur(8px);
}

.hero-card__label {
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.hero-card__tags span {
  background: #eef3ff;
  color: #0d6efd;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
  margin: 4px;
  font-size: 13px;
}

/* Чорний текст у списку та КВЕД */
.hero-card__list li {
  color: #000;
  font-weight: 600;
}

.hero-card__kved-title {
  color: #000;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 70px 0;
}
.section--light {
  background: #f0f4fa;
}
.section--accent {
  background: #0d6efd;
  color: #fff;
}
.section__subtitle {
  margin-top: 5px;
  margin-bottom: 40px;
  color: #666;
}
.section__subtitle--light {
  color: #e4eaff;
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 16px rgba(0,0,0,0.06);
}
.card h3 {
  margin-bottom: 15px;
}
.card__list li {
  margin-bottom: 6px;
  color: #444;
}

/* ===== SOLUTIONS ===== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.solution {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 14px rgba(0,0,0,0.05);
}

/* ===== PARTNERS ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.partners-block {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.05);
}

/* ===== CONTACTS ===== */
.contacts {
  position: relative;
  padding: 70px 0;
  color: #fff;
  overflow: hidden;
}

/* Background */
.contacts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("background.jpg") center center / cover no-repeat;
  filter: brightness(0.28);
  z-index: 0;
}

.contacts > * {
  position: relative;
  z-index: 2;
}

/* Contacts list */
.contacts-list li {
  margin-bottom: 8px;
  color: #e8ecff;
}

/* Contact form */
.contact-form {
  background: rgba(255, 255, 255, 0.92);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 14px rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
}

/* Заголовок форми */
.contact-form h3 {
  color: #000;
}

/* Лейбли */
.contact-form label {
  color: #000;
  font-weight: 600;
}

/* Inputs & textarea text */
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
  background: #fff;
  color: #000; /* чорний текст */
}

/* Placeholder чорний */
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #000;
  opacity: 0.6;
}

.form-note {
  margin-top: 10px;
  font-size: 13px;
  color: #555;
}



/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: #ccc;
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 25px;
}
.footer a {
  color: #9ab5ff;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}
.footer__copy {
  font-size: 13px;
  margin-top: 10px;
  color: #999;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero__inner {
    flex-direction: column;
  }
  .header__inner {
    flex-direction: column;
    gap: 15px;
  }
  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}
