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

body {
  background: #0f1115;
  color: #ffffff;
  line-height: 1.5;
}

/* ===== LAYOUT ===== */
.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

section {
  padding: 80px 0;
}

/* ===== HEADER ===== */
.header {
  padding: 20px 0;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: 700;
}

.logo span {
  color: #ffb703;
}

.nav a {
  margin-left: 20px;
  color: #cccccc;
  text-decoration: none;
  font-weight: 500;
}

.nav a:hover {
  color: #ffffff;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

/* Фонове зображення */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/hero-bg.png") center / cover no-repeat;
  transform: scale(1.05);
  z-index: 0;
}

/* Затемнення */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(15, 17, 21, 0.45),
    rgba(15, 17, 21, 0.65)
  );
  z-index: 1;
}

/* Контент поверх фону */
.hero > * {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 20px;
  max-width: 900px;
}

.hero p {
  max-width: 600px;
  margin-bottom: 30px;
  color: #bbbbbb;
}

.hero__actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn.primary {
  background: #ffb703;
  color: #000000;
}

.btn.primary:hover {
  background: #ffc533;
}

.btn.ghost {
  border: 1px solid #444444;
  color: #ffffff;
}

.btn.ghost:hover {
  background: rgba(255,255,255,0.05);
}

/* ===== TITLES ===== */
h2 {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}

/* ===== GRIDS ===== */
.process__grid,
.services__grid,
.geo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* ===== CARDS ===== */
.step,
.card,
.geo a {
  background: #181c25;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.step {
  font-weight: 500;
}

.card {
  font-weight: 500;
}

/* ===== GEO ===== */
.geo a {
  text-decoration: none;
  color: #ffffff;
  transition: background 0.3s ease;
}

.geo a:hover {
  background: #222838;
}

/* ===== FORM ===== */
.form {
  max-width: 420px;
  margin: 0 auto;
  display: grid;
  gap: 15px;
}

.form input {
  padding: 14px;
  border-radius: 6px;
  border: none;
  font-size: 16px;
}

.form input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255,183,3,0.4);
}

/* ===== FOOTER ===== */
.footer {
  padding: 30px 0;
  text-align: center;
  color: #666666;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .nav {
    display: none;
  }

  .hero {
    padding: 90px 0;
  }

  h2 {
    font-size: 26px;
  }

}
.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step {
  background: #181c25;
  padding: 30px 25px;
  border-radius: 14px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.step__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  stroke: #ffb703;
  stroke-width: 1.6;
  fill: none;
}

.step p {
  font-size: 16px;
  color: #ffffff;
}
/* ===== FOOTER ===== */
.footer {
  background: #0b0d11;
  padding-top: 70px;
  color: #cccccc;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  padding-bottom: 50px;
}

.footer__block h3 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer__block p {
  margin-bottom: 12px;
  font-size: 15px;
}

.footer__block a {
  color: #ffb703;
  text-decoration: none;
}

.footer__block a:hover {
  text-decoration: underline;
}

/* MAP */
.footer__map .map {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  background: #181c25;
}

.footer__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) brightness(0.9);
}

/* BOTTOM LINE */
.footer__bottom {
  border-top: 1px solid #1c1f29;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #666666;
}

.footer__bottom a {
  color: #666666;
  margin-left: 10px;
  text-decoration: none;
}

.footer__bottom a:hover {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer {
    padding-top: 50px;
  }

  .footer__map .map {
    height: 200px;
  }
}

/* ===== SERVICES ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #181c25;
  padding: 32px 24px;
  border-radius: 14px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.service__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  stroke: #ffb703;
  stroke-width: 1.6;
  fill: none;
}

.card p {
  font-size: 16px;
  color: #ffffff;
}
/* ===== HEADER PHONE ===== */
.header__inner {
  display: flex;
  align-items: center;
}

.header__phone {
  margin-left: 30px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}

.header__phone:hover {
  color: #ffb703;
}

/* адаптив */
@media (max-width: 992px) {
  .header__phone {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .header__phone {
    display: none;
  }
}
/* ===== GEO WITH CITY ICONS ===== */
.geo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.geo__item {
  background: #181c25;
  border-radius: 12px;
  padding: 18px 14px;
  text-decoration: none;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform .25s ease, background .25s ease;
}

.geo__item:hover {
  background: #222838;
  transform: translateY(-3px);
}

.geo__item span {
  font-size: 15px;
  font-weight: 500;
}

/* ICON */
.city-icon {
  width: 44px;
  height: 44px;
  stroke: #ffb703;
  stroke-width: 2;
  fill: none;
}

.city-icon text {
  fill: #ffb703;
  font-size: 22px;
  font-weight: 700;
  font-family: Inter, Arial, sans-serif;
  dominant-baseline: middle;
  text-anchor: middle;
}

/* hover accent */
.geo__item:hover .city-icon,
.geo__item:hover .city-icon text {
  stroke: #ffc533;
  fill: #ffc533;
}

.city-shield {
  fill: #0f1115;
  stroke: #ffb703;
  stroke-width: 2;
}

.city-letter {
  fill: #ffffff;
  font-size: 22px;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
/* ===== SEO SECTION ===== */
.seo {
  background: linear-gradient(
    180deg,
    #0f1115 0%,
    #11141a 100%
  );
  padding: 90px 0;
}

.seo .container {
  max-width: 980px;
}

.seo h2 {
  font-size: 34px;
  margin-bottom: 30px;
  line-height: 1.2;
  color: #ffffff;
}

.seo p {
  font-size: 17px;
  line-height: 1.75;
  color: #c9c9c9;
  margin-bottom: 22px;
}

/* визуальный акцент на первом абзаце */
.seo p:first-of-type {
  font-size: 18px;
  color: #e0e0e0;
}

/* лёгкий маркер слева — премиум-ощущение */
.seo p {
  position: relative;
  padding-left: 18px;
}

.seo p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: calc(100% - 16px);
  background: #ffb703;
  border-radius: 2px;
  opacity: 0.6;
}

/* адаптив */
@media (max-width: 768px) {
  .seo {
    padding: 70px 0;
  }

  .seo h2 {
    font-size: 26px;
  }

  .seo p {
    font-size: 16px;
    line-height: 1.65;
  }

  .seo p:first-of-type {
    font-size: 17px;
  }
}
.footer__credits {
  margin-top: 6px;
  font-size: 13px;
  color: #666666;
}

.footer__credits a {
  color: #666666;
  text-decoration: none;
}

.footer__credits a:hover {
  color: #ffffff;
}

.footer__credits span {
  margin: 0 6px;
}