/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #fff;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
  border: none;
}

/* === LAYOUT === */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* === HEADER (balanced compact version) === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0d0d0d;
  border-bottom: 2px solid #ff3c00;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px; /* ↓ зменшено з 120px */
  padding: 0 60px;
}

.brand {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.brand .dot {
  color: #ff3c00;
}

.nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
}

.nav a:hover {
  color: #ff3c00;
}

.actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.actions .btn {
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: 6px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #fff;
}

/* Корекція герої-секції під нову висоту */
.hero {
  padding-top: 140px; /* було 180 */
  height: calc(100vh - 85px);
}


/* === HERO === */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: calc(100vh - 120px); /* повноекранна зона нижче шапки */
  background: radial-gradient(circle at center, #1a0000 0%, #0a0a0a 80%);
  padding-top: 140px;
  padding-bottom: 60px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.25rem;
  color: #ddd;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.trust {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  font-weight: 600;
  color: #fff;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.btn.primary {
  background: #ff3c00;
  color: #fff;
  border: 2px solid #ff3c00;
}

.btn.primary:hover {
  background: #e03500;
}

.btn.ghost {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn.ghost:hover {
  border-color: #ff3c00;
  color: #ff3c00;
}

/* === SECTIONS === */
.section {
  padding: 100px 0;
  background: #0a0a0a;
}

.section.gray {
  background: #111;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
}

/* === SOLUTIONS === */
.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #151515;
  border: 1px solid #222;
  padding: 25px;
  border-radius: 12px;
  width: 300px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #ff3c00;
}

.card h3 {
  color: #ff3c00;
  margin-bottom: 10px;
}

.card p {
  color: #fff;
  line-height: 1.5;
}

/* === CASES === */
.case-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.case-card {
  background: #151515;
  border: 1px solid #222;
  border-radius: 12px;
  overflow: hidden;
  width: 300px;
  transition: 0.3s;
}

.case-card:hover {
  border-color: #ff3c00;
  transform: translateY(-5px);
}

.case-card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background-color: #111;
  border-radius: 10px 10px 0 0;
}

.case-card h4 {
  color: #ff3c00;
  margin: 15px;
  font-size: 1.1rem;
}

.case-card p {
  color: #fff;
  margin: 0 15px 20px;
  line-height: 1.4;
}

/* === PROCESS === */
.steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.step {
  background: #151515;
  border: 1px solid #222;
  padding: 25px;
  border-radius: 12px;
  width: 280px;
  text-align: center;
  transition: 0.3s;
}

.step:hover {
  border-color: #ff3c00;
  transform: translateY(-5px);
}

.step-title {
  color: #ff3c00;
  font-weight: 700;
  display: block;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.step-desc {
  color: #fff;
  opacity: 0.85;
  font-weight: 400;
  font-size: 0.95rem;
}

/* === CONTACT === */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
}

.contact-form {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: #fff;
}

.contact-form input,
.contact-form textarea {
  margin-top: 8px;
  padding: 10px;
  border-radius: 6px;
  border: none;
  background: #222;
  color: #fff;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.contact-info {
  flex: 1 1 40%;
  color: #fff;
}

.contact-info h4 {
  color: #ff3c00;
  margin-bottom: 10px;
}

/* === FOOTER === */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid #222;
  padding: 25px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.footer-nav a {
  color: #ff3c00;
  text-decoration: none;
  margin-left: 15px;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* === MOBILE === */
@media (max-width: 768px) {
  .cards, .case-grid, .steps {
    flex-direction: column;
    align-items: center;
  }

  .contact-grid {
    flex-direction: column;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .header-inner {
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 10px;
  }
}