:root {
  --white:#fff;
  --muted:#e0e6eb;
  --accent:#dbae00;
  --ok:#25db00;
  --nav:#0f2027;
  --nav2:#203a43;
}

*{box-sizing:border-box;margin:0;padding:0}
body{font-family:'Roboto',sans-serif;background:#f9fafc;color:#262a2e;line-height:1.55}

/* ===== Header ===== */
header{background:linear-gradient(90deg,var(--nav),var(--nav2));color:var(--white)}
.nav{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:14px 20px;position:relative}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;         
  text-transform: uppercase; 
  color: #25db00;            
  letter-spacing: 1px;       
}
.logo__mark{width:34px;height:34px;display:inline-flex;align-items:center;justify-content:center;background:var(--accent);color:#000;border-radius:8px;font-weight:900}
.menu{display:flex;gap:20px}
.menu a{color:#fff;opacity:.95}
.menu a:hover{opacity:1;text-decoration:underline}
.cta{margin-left:10px;padding:10px 14px;border-radius:8px;background:var(--accent);color:#000;font-weight:800}
.burger{display:none;flex-direction:column;gap:5px;cursor:pointer}
.burger span{width:26px;height:3px;background:#fff;border-radius:2px}
@media(max-width:768px){
  .menu{display:none;flex-direction:column;gap:12px;background:#203a43;position:absolute;top:58px;right:20px;padding:12px;border-radius:10px;min-width:200px}
  .menu.active{display:flex}
  .burger{display:flex}
  .cta{display:none}
}

/* ===== Hero ===== */
.hero{position:relative;height:88vh;min-height:520px;color:#fff;display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden}
.hero-slider{position:absolute;inset:0}
.slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;transition:opacity .9s ease-in-out}
.slide.active{opacity:1}
.hero::before{content:"";position:absolute;inset:0;background:rgba(0,0,0,.55);z-index:1}
.hero-content{position:relative;z-index:2;max-width:760px;padding:20px;}
.hero h1{font-size:clamp(26px,4.2vw,44px);font-weight:900;margin-bottom:10px}
.hero p{font-size:clamp(16px,1.4vw,18px);color:var(--muted);margin-bottom:22px}
.badges{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-bottom:18px}
.badges span{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);padding:8px 12px;border-radius:10px;font-weight:700;backdrop-filter:blur(6px)}
.form-card{background:rgba(0,0,0,.7);border:1px solid rgba(255,255,255,.08);border-radius:16px;max-width:420px;margin:0 auto;padding:22px;box-shadow:0 10px 28px rgba(0,0,0,.45)}
.form-card h2{font-size:1.15rem;margin-bottom:12px;font-weight:800}
.form-card input{width:100%;padding:14px;border-radius:10px;border:1px solid #555;background:#111;color:#fff;font-size:1rem;margin-bottom:10px}
.form-card input:focus{border-color:var(--accent);box-shadow:0 0 0 3px rgba(219,174,0,.25)}
.btn{width:100%;padding:14px;border:none;border-radius:10px;font-weight:800;text-transform:uppercase;cursor:pointer}
.btn-primary{background:var(--accent);color:#000;margin-bottom:8px}
.btn-call{background:var(--ok);color:#000}
.response{min-height:20px;margin-top:8px;color:#b7f5b7;font-size:.92rem}

/* ===== Empty block ===== */
.content{min-height:320px;padding:60px 20px;text-align:center}
.content h2{font-size:clamp(20px,2.4vw,28px);margin-bottom:10px}
.content p{color:#5e6a74}

/* ===== Footer ===== */
footer{background:#2c3e50;color:#fff}
.map{height:320px;width:100%}
.contacts{max-width:1200px;margin:0 auto;padding:26px 20px;text-align:center}
.contacts a{color:var(--ok);font-weight:700}
.problems {
  background:#111; 
  color:#fff;
  padding:70px 20px;
}

.problems__container {
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}

.problems h2 {
  font-size:clamp(22px,2.5vw,32px);
  font-weight:900;
  margin-bottom:40px;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.problems__grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.problems__col h3 {
  font-size:1.2rem;
  margin-bottom:14px;
}

.problems__col ul {
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:12px;
  font-size:1rem;
}

.problems__col ul li {
  padding:10px 14px;
  border-radius:10px;
  background:rgba(255,255,255,.08);
  text-align:left;
}

.problems__col:first-child ul li {
  border-left:4px solid #e63946; /* червона смуга для проблем */
}

.problems__col:last-child ul li {
  border-left:4px solid #25db00; /* зелена смуга для рішень */
}

@media(max-width:768px){
  .problems__grid {
    grid-template-columns:1fr;
    gap:28px;
  }
}
.advantages {
  background:#0f0f0f;
  color:#fff;
  padding:80px 20px;
}

.advantages__container {
  max-width:1200px;
  margin:0 auto;
  text-align:center;
}

.advantages h2 {
  font-size:clamp(22px,2.5vw,32px);
  font-weight:900;
  margin-bottom:50px;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.advantages__grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.adv-card {
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  border-radius:16px;
  padding:28px 22px;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,.4);
  transition:transform .3s ease, box-shadow .3s ease;
}

.adv-card:hover {
  transform:translateY(-6px);
  box-shadow:0 12px 28px rgba(0,0,0,.55);
}

.adv-icon {
  font-size:2rem;
  margin-bottom:16px;
}

.adv-card h3 {
  font-size:1.1rem;
  font-weight:700;
  margin-bottom:10px;
}

.adv-card p {
  font-size:.95rem;
  color:#ccc;
  line-height:1.5;
}
.pricing {
  background:#141414;
  color:#fff;
  padding:80px 20px;
  text-align:center;
  overflow:hidden;
}

.pricing__container {
  max-width:1200px;
  margin:0 auto;
}

.pricing h2 {
  font-size:clamp(22px,2.5vw,32px);
  font-weight:900;
  margin-bottom:40px;
  text-transform:uppercase;
}

.pricing-slider-wrapper {
  overflow:hidden;
}

.pricing-slider {
  display:flex;
  gap:20px;
  transition:transform 0.5s ease;
}

.pricing-card {
  flex:0 0 calc(33.333% - 20px);
  background:rgba(255,255,255,.05);
  border-radius:16px;
  padding:20px;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,.4);
}

.pricing-card img {
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:14px;
}

.pricing-card h3 {
  font-size:1.2rem;
  font-weight:800;
  margin-bottom:8px;
}

.pricing-card p {
  font-size:.95rem;
  color:#ddd;
  min-height:60px;
}

.order-btn {
  margin-top:14px;
  padding:12px 20px;
  border:none;
  border-radius:8px;
  background:#dbae00;
  color:#000;
  font-weight:800;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .3s ease, transform .2s ease;
}

.order-btn:hover {
  background:#f1c40f;
  transform:translateY(-2px);
}

.pricing-arrows {
  margin-top:20px;
  display:flex;
  justify-content:center;
  gap:20px;
}

.arrow {
  background:rgba(255,255,255,.1);
  border:none;
  padding:10px 16px;
  border-radius:50%;
  font-size:1.4rem;
  color:#fff;
  cursor:pointer;
  transition:background .3s ease;
}

.arrow:hover {
  background:rgba(255,255,255,.25);
}

/* адаптив */
@media(max-width:992px){
  .pricing-card{flex:0 0 calc(50% - 20px);}
}

@media(max-width:600px){
  .pricing-card{flex:0 0 100%;}
}
.consult {
  background:#141414; /* такий самий темний фон */
  color:#fff;
  padding:80px 20px;
  text-align:center;
}

.consult__container {
  max-width:700px;
  margin:0 auto;
}

.consult h2 {
  font-size:clamp(22px, 2.5vw, 32px);
  font-weight:900;
  margin-bottom:16px;
  text-transform:uppercase;
}

.consult p {
  font-size:1rem;
  color:#dfe6eb;
  margin-bottom:28px;
  line-height:1.5;
}

.consult-form {
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.consult-form input {
  flex:1;
  min-width:220px;
  padding:14px 12px;
  border-radius:10px;
  border:1px solid #555;
  background:#111;
  color:#fff;
  font-size:1rem;
}

.consult-form input:focus {
  border-color:#dbae00;
  box-shadow:0 0 0 3px rgba(219,174,0,.25);
  outline:none;
}

.consult-btn {
  padding:14px 20px;
  border:none;
  border-radius:10px;
  background:#dbae00;
  color:#000;
  font-weight:800;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .3s ease, transform .2s ease;
}

.consult-btn:hover {
  background:#f1c40f;
  transform:translateY(-2px);
}

.consult-alt {
  font-size:.95rem;
  color:#ccc;
}

.consult-alt a {
  color:#25db00;
  font-weight:700;
}
.reviews {
  background:#141414; /* як у блоків Ціни/Консультації */
  color:#fff;
  padding:80px 20px;
}

.reviews__container {
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}

.reviews h2 {
  font-size:clamp(22px,2.5vw,32px);
  font-weight:900;
  margin-bottom:40px;
  text-transform:uppercase;
}

.reviews__grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:24px;
}

.review-card {
  background:#1c1c1c;
  border-radius:12px;
  padding:20px;
  text-align:left;
  box-shadow:0 6px 20px rgba(0,0,0,.4);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.review-header {
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}

.avatar {
  width:42px;
  height:42px;
  border-radius:50%;
  background:#25db00;
  color:#000;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.1rem;
}

.name {
  font-weight:700;
  margin-bottom:2px;
}

.stars {
  color:#fbc02d;
  font-size:.95rem;
}

.review-text {
  font-size:.95rem;
  color:#ddd;
  margin-bottom:12px;
  line-height:1.4;
}

.review-date {
  font-size:.8rem;
  color:#aaa;
}
.faq {
  background:#141414;
  color:#fff;
  padding:80px 20px;
}

.faq__container {
  max-width:900px;
  margin:0 auto;
}

.faq h2 {
  text-align:center;
  font-size:clamp(22px,2.5vw,32px);
  font-weight:900;
  margin-bottom:40px;
  text-transform:uppercase;
}

.faq-item {
  margin-bottom:16px;
  border-bottom:1px solid rgba(255,255,255,.15);
}

.faq-question {
  width:100%;
  text-align:left;
  background:none;
  border:none;
  color:#fff;
  font-size:1rem;
  font-weight:700;
  padding:16px 12px;
  cursor:pointer;
  position:relative;
  transition:background .3s ease;
}

.faq-question:hover {
  background:rgba(255,255,255,.05);
}

.faq-answer {
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease, padding .3s ease;
  padding:0 12px;
}

.faq-answer p {
  font-size:.95rem;
  color:#ddd;
  line-height:1.5;
}

.faq-item.active .faq-answer {
  max-height:200px;
  padding:12px;
}
.final-cta {
  background:#141414;
  color:#fff;
  padding:100px 20px;
  text-align:center;
}

.final-cta__container {
  max-width:800px;
  margin:0 auto;
}

.final-cta h2 {
  font-size:clamp(24px,3vw,38px);
  font-weight:900;
  margin-bottom:18px;
  text-transform:uppercase;
}

.final-cta p {
  font-size:1.1rem;
  color:#ccc;
  margin-bottom:32px;
}

.cta-buttons {
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  justify-content:center;
}

.cta-btn {
  padding:16px 26px;
  border:none;
  border-radius:10px;
  font-weight:800;
  text-transform:uppercase;
  cursor:pointer;
  font-size:1rem;
  transition:all .3s ease;
  text-decoration:none;
  display:inline-block;
}

.cta-btn.primary {
  background:#dbae00;
  color:#000;
}

.cta-btn.primary:hover {
  background:#f1c40f;
  transform:translateY(-2px);
}

.cta-btn.secondary {
  background:#25db00;
  color:#000;
}

.cta-btn.secondary:hover {
  background:#1bc000;
  transform:translateY(-2px);
}
.final-cta {
  background:#141414;
  color:#fff;
  padding:100px 20px;
  text-align:center;
}

.final-cta__container {
  max-width:800px;
  margin:0 auto;
}

.final-cta h2 {
  font-size:clamp(24px,3vw,38px);
  font-weight:900;
  margin-bottom:18px;
  text-transform:uppercase;
}

.final-cta p {
  font-size:1.1rem;
  color:#ccc;
  margin-bottom:32px;
}

.cta-buttons {
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  justify-content:center;
}
.cta-buttons {
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  justify-content:center;
  max-width:500px; 
  margin:0 auto;
}

.cta-buttons .btn {
  flex:1;                 
  min-width:200px;       
  text-align:center;
}

@media(max-width:600px){
  .cta-buttons {
    flex-direction:column;
  }
  .cta-buttons .btn {
    width:100%;          
  }
}
.services {
  background:#141414;              /* тёмный фон */
  color:#fff;
  padding:80px 20px;
  text-align:center;
}

.services h2 {
  font-size:clamp(22px,2.5vw,32px);
  font-weight:900;
  margin-bottom:40px;
  text-transform:uppercase;
}

.services__grid {
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:28px;
}

.service-card {
  background:#1c1c1c;
  border:1px solid rgba(255,255,255,.1);
  border-radius:14px;
  padding:0;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  transform:translateY(-6px);
  box-shadow:0 10px 24px rgba(0,0,0,.5);
}

.service-card h3 {
  background:#0f2027;
  padding:16px;
  margin:0;
  font-size:1.1rem;
  font-weight:800;
  text-transform:uppercase;
  color:#fff;
}

.service-card img {
  width:100%;
  height:180px;
  object-fit:cover;
}

.service-card p {
  padding:16px;
  font-size:.95rem;
  color:#ddd;
  flex-grow:1;
}

.service-card .buttons {
  display:flex;
  gap:12px;
  justify-content:center;
  padding:16px;
  border-top:1px solid rgba(255,255,255,.1);
}

.service-card button {
  flex:1;
  min-width:120px;
  padding:12px;
  border:none;
  border-radius:10px;
  font-weight:800;
  text-transform:uppercase;
  cursor:pointer;
}

.call-btn { background:#25db00; color:#000; }
.call-btn:hover { background:#1bc000; }

.signup-btn { background:#dbae00; color:#000; }
.signup-btn:hover { background:#f1c40f; }