/* RESET */
*{margin:0;padding:0;box-sizing:border-box;font-family:Arial, sans-serif;}

body{background:#000000;color:#fff;}

/* HEADER */
.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 140px;
  padding-left: 140px;
  background:rgba(0, 0, 0, 0.76);
  backdrop-filter:blur(10px);
  z-index:1000;
}

.header {
  border-bottom: 1px solid;
  position: fixed;
}

/* світлова лінія */
.header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
}


.logo {
  display: flex;          /* Ставить картинку і текст в один рядок */
  align-items: center;    /* Центрує їх по вертикалі один відносно одного */
  gap: 2px;              /* Робить відступ між картинкою та текстом */
}

.logo-img {
    width: 96px;
    height: 42px;
}

.logo-text{
  font-weight:bold;
  margin-top: 6px;
  font-size:17px;
  line-height: 1.2;
   /* Підключаємо шрифт Poppins */
  font-family: 'Poppins', sans-serif;
  /* 900 — це і є варіант Black */
  font-weight: 900;
}

.logo-text span{
    color: #ff2c2c;
}

.nav{
  display:flex;
  gap:40px;
}

.nav a{
  color:#fff;
  text-decoration:none;
  font-size:17.5px;
  transition: 0.3s;
}

.nav a:hover{
  color:#ff0000;
  text-decoration:none;
  font-size:17.5px;
}

.phone{
  color: #fff;
  text-decoration: none;
}

.phone:hover{
  color: #ff0000;
  text-decoration: none;
}

.btn{
  border:1px solid #fff;
  padding:10px 18px;
  text-decoration:none;
  color:#fff;
  border-radius:6px;
  transition:0.3s;
}

.btn:hover{
  background:#ff2c2c;
  border-color:#ff2c2c;
}

.order {
    text-decoration: none;
    display: flex;          /* Ставить картинку і текст в один рядок */
  align-items: center;    /* Центрує їх по вертикалі один відносно одного */
  gap: 30px;  
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding-top: 120px;
  background: #000000;
  border-bottom: 1px solid #000000;
  padding-left: 180px;
}

.breadcrumb .container {
  max-width: 1200px;
  margin: auto;
  font-size: 20px;
  font-weight: 600;
  color: #888;padding-left: 80px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #ff1e1e;
}

.breadcrumb span {
  margin: 0 8px;
}

.breadcrumb .active {
  color: #ff1e1e;
}

 body{
      margin:0;
      font-family:Montserrat,sans-serif;
      background:#0b0b0b;
      color:#fff;
    }

    .article-page{
      padding:120px 140px 80px;
    }

    /* breadcrumb */
    .breadcrumbs{
      font-size:14px;
      margin-bottom:25px;
      color:#aaa;
    }

    .breadcrumbs a{
      color:#fff;
      text-decoration:none;
      transition:0.3s;
    }

    .breadcrumbs a:hover{
      color:#ff2b2b;
    }
/* ===== FOOTER ===== */
.footer-lux {
  background: radial-gradient(circle at top, #111, #000);
  padding: 100px 6% 40px;
  border-top: 1px solid rgb(255, 255, 255);
}

/* grid */
.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

/* brand */
.footer-brand h3 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 18px;
}

.footer-brand p {
  color: #888;
  line-height: 1.7;
  font-size: 15px;
  max-width: 400px;
}

/* titles */
.footer-col h4 {
  font-size: 18px;
  margin-bottom: 18px;
  position: relative;
}

/* underline accent */
.footer-col h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #ff1e1e;
  margin-top: 8px;
}

/* list */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  color: #747373;
  margin-bottom: 12px;
  font-size: 15px;
  transition: 0.25s;
  text-decoration: none;
}

/* FOOTER LINKS */
.footer-col a{
  color: #747373;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}

/* hover ефект */
.footer-col a:hover{
  color: red;
  text-decoration: underline;
}

/* visited (щоб не ставали фіолетові) */
.footer-col a:visited{
  color: #747373;
}

/* hover ефект */
.footer-col li:hover {
  color: #fff;
  transform: translateX(4px);
}

/* bottom */
.footer-bottom {
  text-align: center;
  margin-top: 70px;
  font-size: 13px;
  color: #555;
  letter-spacing: 0.5px;
}

/* адаптив */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

/* BURGER */
.burger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  z-index:2000;
}

.burger span{
  width:28px;
  height:3px;
  background:#fff;
  transition:0.3s;
}

/* ===== MOBILE ===== */
@media (max-width: 1404px){

  .header{
    display:flex;
    flex-direction:row;   /* 🔥 ВАЖЛИВО */
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
  }

  .left{
    display:flex;
    align-items:center;
  }

  /* 🔥 БУРГЕР ЗАВЖДИ СПРАВА ВГОРІ */
  .burger{
    display:flex;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
    z-index:9999;
  }

  .burger span{
    width:28px;
    height:3px;
    background:#fff;
  }

  /* 🔥 ПРИХОВУЄМО order з хедера (вона буде в меню) */
  .order{
    display:none;
  }

  /* 🔥 FULL SCREEN MENU */
  .nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:rgba(0,0,0,0.97);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:25px;

    transform:translateX(100%);
    transition:0.4s ease;
    z-index:999;
  }

  .nav.active{
    transform:translateX(0);
  }

  .nav a{
    font-size:22px;
  }

  .nav a:hover{
    font-size:22px;
  }
}

/* ===== BURGER ANIMATION ===== */
.burger.active span:nth-child(1){
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2){
  opacity: 0;
}

.burger.active span:nth-child(3){
  transform: rotate(-45deg) translate(6px, -6px);
}

.burger span{
  transition: 0.3s ease;
}

/* MOBILE */
@media(max-width:1400px){
  .header{
    padding:15px 20px;
  }

  .nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:#000;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    transform:translateX(100%);
    transition:0.4s;
  }

  .nav.active{
    transform:translateX(0);
  }

  .burger{
    display:flex;
  }

  .order{
    display:none;
  }
}

/* ===== BASE ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

body{
  background:#000;
  color:#fff;
  line-height:1.6;
}

/* ===== BREADCRUMB ===== */
.breadcrumb{
  padding:120px 20px 20px;
  font-size:15px;
  color:#888;
}

.breadcrumb a{
  color:#fff;
  text-decoration:none;
  transition:0.3s;
}

.breadcrumb a:hover{
  color:red;
}

/* ===== HERO ===== */
.hero{
  text-align:center;
  padding:40px 20px 20px;
}

.hero h1{
  font-size:46px;
  font-weight:900;
  margin-bottom:15px;
}

.hero p{
  color:#aaa;
  font-size:18px;
  max-width:900px;
  margin:0 auto;
}

/* ===== INFO SECTIONS ===== */
.info{
  max-width:1100px;
  margin:auto;
  padding:70px 20px;
}

.info h2{
  font-size:32px;
  margin-bottom:20px;
  position:relative;
}

.info h2::after{
  content:"";
  width:60px;
  height:3px;
  background:red;
  display:block;
  margin-top:10px;
}

.info p{
  color:#bbb;
  margin-bottom:15px;
  font-size:17px;
}

/* ===== TECH GRID ===== */
.tech-section{
  padding:40px 20px;
}

.tech-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
  max-width:1200px;
  margin:auto;
}

/* CARD */
.tech-card{
  background:linear-gradient(145deg,#111,#0a0a0a);
  border:1px solid #222;
  border-radius:18px;
  padding:20px;
  transition:0.35s;
  overflow:hidden;
}

.tech-card:hover{
  transform:translateY(-8px);
  border-color:red;
  box-shadow:0 20px 50px rgba(255,0,0,0.1);
}

.tech-card img{
  width:100%;
  border-radius:14px;
  margin-bottom:15px;
}

.tech-card h2{
  font-size:22px;
  margin-bottom:10px;
}

/* LIST */
.tech-card ul{
  list-style:none;
  color:#bbb;
  margin:10px 0;
}

.tech-card ul li{
  margin-bottom:6px;
}

/* PRICE */
.price{
  font-size:24px;
  font-weight:900;
  color:red;
  margin-top:10px;
}

.min{
  color:#888;
  font-size:14px;
  margin-bottom:10px;
}

/* BUTTON */
.btn-red{
  display:block;
  text-align:center;
  background:red;
  color:#fff;
  padding:14px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
}

.btn-red:hover{
  background:#b30000;
  transform:scale(1.03);
}

/* ===== GRID BLOCKS ===== */
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:15px;
  margin-top:20px;
}

.grid-3 div{
  background:#111;
  padding:18px;
  border-radius:12px;
  text-align:center;
  transition:0.3s;
  border:1px solid #1c1c1c;
}

.grid-3 div:hover{
  border-color:red;
  transform:translateY(-4px);
}

/* RED VERSION */
.grid-3.red div{
  border:1px solid rgba(255,0,0,0.4);
}

/* ===== FAQ ===== */
.info h3{
  margin-top:20px;
  font-size:20px;
  color:#fff;
}

.info p{
  margin-bottom:10px;
}

/* ===== CTA ===== */
.info[style]{
  background:#0a0a0a;
  border-radius:20px;
  padding:60px 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width:900px){
  .tech-grid{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:32px;
  }

  .grid-3{
    grid-template-columns:1fr;
  }
}