/* === 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 === */
.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;
  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;
  transition: 0.3s ease;
}

.nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
}

.nav a:hover {
  color: #ff3c00;
}

/* MOBILE NAV (open state) */
.nav-open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  right: 20px;
  top: 80px;
  background: rgba(5,5,5,0.95);
  padding: 15px 20px;
  border-radius: 8px;
  gap: 12px;
  border: 1px solid #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 === */
.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;
  box-shadow: 0 0 0 transparent;
}

.btn.primary:hover {
  background: #e03500;
  box-shadow: 0 0 12px rgba(255,60,0,0.6);
}

.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;
}

/* === CARDS === */
.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;
}

/* === ABOUT (новий, без круга) === */

.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.about-photo img {
  width: 380px;
  height: auto;
  border-radius: 14px;
  border: 3px solid #ff3c00;
  object-fit: cover;
}

.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #ddd;
  font-size: 1rem;
  line-height: 1.75;
}

/* === CONTACT === */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
}

.contact-left {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-form {
  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;
}

.or-divider {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
}

.or-divider .line {
  flex: 1;
  height: 1px;
  background: #333;
}

.or-divider .text {
  color: #aaa;
  font-weight: 600;
  font-size: 0.9rem;
}

.tg-btn {
  display: block;
  text-align: center;
  padding: 12px 26px;
  border: 2px solid #ff3c00;
  border-radius: 8px;
  color: #ff3c00;
  font-weight: 700;
  width: 100%;
  margin-top: 5px;
  text-decoration: none;
  transition: 0.3s ease;
}

.tg-btn:hover {
  border-color: #e03500;
  color: #e03500;
  background: rgba(255, 60, 0, 0.06);
  transform: translateY(-3px);
}

/* === 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) {

  .mobile-toggle {
    display: block;
  }

  .nav {
    display: none;
  }

  .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;
  }

/* === ABOUT (картинка по висоті тексту, без гігантської ширини) === */

.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch; /* рівняє висоти */
  gap: 50px;
}

.about-photo {
  flex: 0 0 auto;
  display: flex;
}

.about-photo img {
  height: 100%;          /* висота = висоті тексту */
  max-height: 520px;     /* захист від мегавеликого фото */
  width: auto;           
  max-width: 350px;      /* ключ! обмежуємо ширину */
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid #ff3c00;
}

.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #ddd;
  font-size: 1rem;
  line-height: 1.75;
}
}