/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #E8621A;
  --orange-hover: #d45510;
  --white: #ffffff;
  --dark: #1a1a1a;
  --gray-light: #f5f5f5;
  --gray-border: #e0e0e0;
  --text-muted: #888;
  --font-main: 'Nunito', sans-serif;
  --shadow-card: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--dark);
  background: #fff;
  line-height: 1.5;
  overflow-x: hidden;
   user-select: none; 
  -webkit-user-select: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===========================
   HEADER
=========================== */
/*.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
}

.header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__nav a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.92;
  transition: opacity 0.2s;
  letter-spacing: 0.01em;
}

.header__nav a:hover {
  opacity: 1;
  color: var(--orange);
}

.header__burger {
  width: 36px;
  height: 36px;
  display: none; 
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  margin-left: 24px;
}

.header__burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.header__burger--active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger--active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__burger--active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


@media (max-width: 900px) {

  .header {
    position: fixed; 
    background: rgba(20,16,12,0.97);
    backdrop-filter: blur(8px);
  }

  .header__burger {
    display: flex;
  }

  .header__nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(20,16,12,0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0 20px;
    gap: 0;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
  }

  .header__nav--open {
    display: flex !important;
  }

  .header__nav a {
    width: 100%;
    padding: 15px 28px;
    font-size: 16px;
    opacity: 1;
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .header__nav a:last-child {
    border-bottom: none;
  }

  .header__nav a:hover {
    color: var(--orange);
    background: rgba(255,255,255,0.04);
  }
}

@media (max-width: 480px) {
  .header {
    padding: 0 20px;
  }
}*/
/* ===========================
   HERO SECTION
=========================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 580px;
  height: 100vh;
  max-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Тёмный overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10,10,10,0.72) 0%,
    rgba(10,10,10,0.42) 55%,
    rgba(10,10,10,0.10) 100%
  );
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 68px;
}

/* LEFT CONTENT */
.hero__content {
  flex: 1;
  max-width: 540px;
  color: var(--white);
}

.hero__title {
  font-size: clamp(32px, 4.2vw, 44px);
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.hero__title span {
  color: var(--orange);
}

.hero__subtitle {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.5;
}

.hero__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.hero__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.hero__features li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23E8621A' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.hero__btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 17px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 6px 24px rgba(232,98,26,0.35);
}

.hero__btn:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
}

/* RIGHT CARD */
.hero__card {
  flex-shrink: 0;
  width: 430px;
  background: #f3edee;
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  box-shadow: var(--shadow-card);
}

.hero__card-title {
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark);
  margin-bottom: 20px;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.calc-form__select,
.calc-form__input {
  width: 100%;
  border: 1.5px solid var(--gray-border);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--dark);
  background: #fff;
  appearance: none;
  outline: none;
  transition: border-color 0.2s;
}

.calc-form__select:focus,
.calc-form__input:focus {
  border-color: var(--orange);
}

.calc-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  cursor: pointer;
}

/* Metraj row */
.calc-form__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid var(--gray-border);
  border-radius: 8px;
  padding: 12px 16px;
}

.calc-form__row-label {
  font-size: 14px;
  color: #555;
}

.calc-form__range-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.calc-form__range-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

input[type="range"] {
  -webkit-appearance: none;
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--orange) 0%, var(--orange) 50%, #ddd 50%, #ddd 100%);
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* Toggle */
.calc-form__toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calc-form__toggle-label {
  font-size: 14px;
  color: #555;
}

.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle__slider {
  position: absolute;
  inset: 0;
  background: #ddd;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.25s;
}

.toggle__slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.toggle input:checked + .toggle__slider {
  background: var(--orange);
}

.toggle input:checked + .toggle__slider::before {
  transform: translateX(20px);
}

.calc-form__input::placeholder {
  color: #bbb;
}

.calc-form__submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 2px;
}

.calc-form__submit:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .hero__container {
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 30px;
    padding-top: 100px;
  }

  .hero {
    max-height: 100%;
    height: auto;
    min-height: 100vh;
    padding-bottom: 30px;
  }

  .hero__card {
    width: 100%;
    max-width: 400px;
  }

  .header__nav {
    display: none;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 0 20px;
  }

  .hero__container {
    padding: 100px 20px 30px;
  }
}




/* SERVICES */
.services {
  padding: 70px 40px 80px;
  background: #faf8f5;
}
.services__container {
  max-width: 1200px;
  margin: 0 auto;
}
.services__header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.services__title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark);
}
.services__subtitle {
  font-size: 16px;
  color: #777;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.service-card__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .service-card__img-wrap img {
  transform: scale(1.04);
}
.service-card__body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.service-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
}
.service-card__desc {
  font-size: 13.5px;
  color: #666;
  line-height: 1.55;
  flex: 1;
}
.service-card__btn {
  display: inline-block;
  margin-top: 6px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 22px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
  text-decoration: none;
}
.service-card__btn:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}
@media (max-width: 960px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services { padding: 50px 20px 60px; }
  .services__grid { grid-template-columns: 1fr; }
}





/* CALC SECTION */
.calc-section {
  padding: 60px 40px;
  background: url(../img/background.png);
  position: relative;
  overflow: hidden;
}

/* декоративные линии фона */
.calc-section::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -60px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 60px solid rgba(232,98,26,0.06);
  pointer-events: none;
}

.calc-section__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.calc-section__title {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 10px;
}

.calc-section__subtitle {
  font-size: 15px;
  color: #777;
  margin-bottom: 28px;
}

.calc-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1.5px solid var(--gray-border);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 14px;
}

.calc-toggle-label {
  font-size: 14px;
  color: #555;
}

.calc-section__bottom {
  display: flex;
  gap: 12px;
  align-items: center;
}

.calc-section__input {
  flex: 1;
  border: 1.5px solid var(--gray-border);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--dark);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.calc-section__input:focus {
  border-color: var(--orange);
}

.calc-section__input::placeholder { color: #bbb; }

.calc-section__btn {
  background: var(--orange);
  color: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 14px 32px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.calc-section__btn:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

.calc-section__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #888;
  margin-top: 16px;
}

/* RIGHT */
.calc-section__right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-section__select-wrap {
  background: #fff;
  border: 1.5px solid var(--gray-border);
  border-radius: 10px;
  overflow: hidden;
}

.calc-section__select {
  width: 100%;
  padding: 16px 18px;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--dark);
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.calc-section__rooms-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  font-size: 14px;
  color: var(--dark);
}

.calc-section__rooms-value {
  font-weight: 700;
  color: var(--dark);
}

.calc-section__input-row {
  display: flex;
  gap: 0;
  background: #fff;
  border: 1.5px solid var(--gray-border);
  border-radius: 10px;
  overflow: hidden;
}

.calc-section__input-right {
  flex: 1;
  border: none;
  padding: 15px 18px;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--dark);
  background: transparent;
  outline: none;
}

.calc-section__input-right::placeholder { color: #bbb; }

.calc-section__arrow-btn {
  background: var(--orange);
  border: none;
  padding: 0 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.calc-section__arrow-btn:hover {
  background: var(--orange-hover);
}

@media (max-width: 860px) {
  .calc-section__container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 560px) {
  .calc-section { padding: 50px 20px; }
  .calc-section__bottom { flex-direction: column; }
  .calc-section__btn { width: 100%; text-align: center; }
}







/* WHY US */
.why {
  padding: 70px 40px;
  background:
    linear-gradient(rgba(15,10,5,0.72), rgba(15,10,5,0.72)),
    url('https://previews.123rf.com/images/niekrasova/niekrasova1709/niekrasova170900160/85606988-set-of-various-tools-on-white-background-construction-and-renovation-concept-with-copy-space-flat.jpg') center/cover no-repeat;
}

.why__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.why__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}

.why__title span {
  color: var(--orange);
  font-weight: 400;
}

/* Features grid */
.why__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 40px;
  margin-bottom: 36px;
}

.why__feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
  color: white;
}

.why__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: #fff5ef;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.why__icon svg {
  width: 22px;
  height: 22px;
}

/* Bottom */
.why__bottom {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.why__btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 15px 28px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.why__btn:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
}

/* Contacts */
.why__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.why__contact-item:hover {
  color: var(--orange);
}

.why__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--orange);
}

/* Photo */
.why__img-wrap {
  border-radius: 20px;
  overflow: hidden;
  height: 340px;
}

.why__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.why__img-wrap:hover img {
  transform: scale(1.03);
}

@media (max-width: 960px) {
  .why__container {
    grid-template-columns: 1fr;
  }
  .why__img-wrap {
    height: 280px;
  }
}

@media (max-width: 560px) {
  .why { padding: 50px 20px; }
  .why__features { grid-template-columns: 1fr; }
  .why__bottom { flex-direction: column; gap: 24px; }
}






/* PORTFOLIO */
.portfolio {
  padding: 70px 40px 80px;
  background: url(../img/background.png);
}

.portfolio__container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio__title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 24px;
}

/* Filters */
.portfolio__filters {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.portfolio__filter {
  background: transparent;
  border: none;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  padding: 9px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.portfolio__filter:hover {
  color: var(--orange);
}

.portfolio__filter.active {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
}

.portfolio__divider {
  width: 1px;
  height: 18px;
  background: #ccc;
  flex-shrink: 0;
}

/* Grid */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.portfolio__item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  cursor: pointer;
}

.portfolio__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}

.portfolio__item:hover img {
  transform: scale(1.05);
}

.portfolio__item.hidden {
  display: none;
}

/* More button */
.portfolio__more {
  display: flex;
  justify-content: center;
}

.portfolio__more-btn {
  background: var(--orange);
  color: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 16px 52px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 6px 24px rgba(232,98,26,0.3);
}

.portfolio__more-btn:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
}

@media (max-width: 860px) {
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .portfolio { padding: 50px 20px 60px; }
  .portfolio__grid { grid-template-columns: 1fr; }
  .portfolio__divider { display: none; }
}






/* ===========================
   CTA
=========================== */
.cta {
  position: relative;
  padding: 90px 40px;
  overflow: hidden;
  text-align: center;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(15,10,5,0.72), rgba(15,10,5,0.72)),
    url('https://dniprobud.com.ua/home/structure/item_136/image/remont-doma-pod-klyuch.jpg') center/cover no-repeat;
  z-index: 0;
}

.cta__container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 16px;
  border: 1px solid rgba(232,98,26,0.4);
  padding: 5px 16px;
  border-radius: 50px;
}

.cta__title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.cta__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 36px;
}

.cta__btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 8px 30px rgba(232,98,26,0.4);
}

.cta__btn:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
}

/* ===========================
   CONTACTS
=========================== */
.contacts {
  padding: 80px 40px;
  background: url(../img/background.png);
}

.contacts__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Form */
.contacts__form-wrap {
  background: #ffffff45;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.07);
}

.contacts__form-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.contacts__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contacts__input,
.contacts__textarea {
  width: 100%;
  border: 1.5px solid var(--gray-border);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--dark);
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.contacts__input:focus,
.contacts__textarea:focus {
  border-color: var(--orange);
  background: #fff;
}

.contacts__input::placeholder,
.contacts__textarea::placeholder {
  color: #bbb;
}

.contacts__btn {
  background: var(--orange);
  color: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s, transform 0.15s;
}

.contacts__btn:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

/* Info */
.contacts__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 10px;
}

.contacts__info-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.contacts__info-text {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.6;
}

.contacts__info-text--muted {
  color: #999;
}

.contacts__info-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contacts__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark);
  font-size: 15px;
  transition: color 0.2s;
}

.contacts__contact:hover {
  color: var(--orange);
}

.contacts__contact-icon {
  width: 38px;
  height: 38px;
  background: #fff5ef;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

.contacts__contact-icon svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 860px) {
  .cta { padding: 70px 20px; }
  .contacts__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 560px) {
  .contacts { padding: 50px 20px; }
  .contacts__form-wrap { padding: 24px 20px; }
}









/* ===========================
   FOOTER
=========================== */
.footer {
  background: #1a1612;
  color: #fff;
  padding: 70px 40px 0;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Brand col */
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer__logo-icon svg {
  width: 20px;
  height: 20px;
}

.footer__desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 260px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__social:hover {
  background: var(--orange);
  color: #fff;
}

/* Nav cols */
.footer__col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__nav li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__nav li a:hover {
  color: var(--orange);
}

/* Contacts col */
.footer__contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contacts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

.footer__contacts li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}

.footer__contacts li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__contacts li a:hover {
  color: var(--orange);
}

/* Bottom */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__bottom-links a:hover {
  color: var(--orange);
}

@media (max-width: 960px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 560px) {
  .footer { padding: 50px 20px 0; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}






/* ===========================
   FORM SECTION
=========================== */
.dp-form {
  padding: 70px 40px 80px;
  background:url(../img/background.png);
  position: relative;
  overflow: hidden;
}

.dp-form__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: flex-end;
}

.dp-form__label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 8px;
}

.dp-form__title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.dp-form__desc {
  font-size: 14px;
  color: #888;
  margin-bottom: 24px;
}

.dp-form__row {
  display: flex;
  gap: 0;
  background: #f5f3f0;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--gray-border);
  margin-bottom: 12px;
}

.dp-form__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 15px 18px;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--dark);
  outline: none;
}

.dp-form__input::placeholder { color: #bbb; }

.dp-form__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 15px 24px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.dp-form__btn svg {
  width: 18px;
  height: 18px;
}

.dp-form__btn:hover { background: var(--orange-hover); }

.dp-form__note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #aaa;
  margin-bottom: 28px;
}

.dp-form__note svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

.dp-form__contacts {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.dp-form__contact {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.dp-form__contact svg {
  width: 15px;
  height: 15px;
  color: var(--orange);
  flex-shrink: 0;
}

.dp-form__contact:hover { color: var(--orange); }

/* Worker photo */
.dp-form__img-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  bottom: 0;
  position: absolute;
  right: 0;

}

.dp-form__img-wrap img {
  width: 100%;
  max-width: 300px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 960px) {
  .dp-hero__container { flex-direction: column; justify-content: flex-end; padding-bottom: 30px; }
  .dp-hero { max-height: 100%; height: auto; min-height: 100vh; }
  .dp-hero__card { width: 100%; max-width: 400px; }
  .dp-includes__grid { grid-template-columns: 1fr; }
  .dp-adv__grid { grid-template-columns: repeat(2, 1fr); }
  .dp-form__container { grid-template-columns: 1fr; }
  .dp-form__img-wrap { display: none; }
}

@media (max-width: 560px) {
  .dp-hero__container { padding: 90px 20px 30px; }
  .dp-includes { padding: 50px 20px 60px; }
  .dp-adv { padding: 50px 20px 60px; }
  .dp-adv__grid { grid-template-columns: 1fr; }
  .dp-form { padding: 50px 20px 60px; }
  .dp-form__contacts { flex-direction: column; align-items: flex-start; gap: 12px; }
}







/* ===========================
   FLOATING CONTACT BUTTON
=========================== */
.float-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 12px;
}

/* Main button */
.float-btn__main {
  width: 58px;
  height: 58px;
  background: var(--orange);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(232,98,26,0.45);
  transition: transform 0.25s, background 0.2s;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.float-btn__main:hover {
  background: var(--orange-hover);
  transform: scale(1.08);
}

.float-btn__main svg {
  width: 24px;
  height: 24px;
  color: #fff;
  position: absolute;
  transition: opacity 0.2s, transform 0.2s;
}

.float-btn__icon-phone {
  opacity: 1;
  transform: scale(1);
}

.float-btn__icon-close {
  opacity: 0;
  transform: scale(0.5) rotate(-90deg);
}

/* Open state */
.float-btn.open .float-btn__icon-phone {
  opacity: 0;
  transform: scale(0.5) rotate(90deg);
}

.float-btn.open .float-btn__icon-close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.float-btn.open .float-btn__main {
  background: #444;
}

/* Sub items */
.float-btn__items {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.float-btn__item {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  opacity: 0;
  transform: translateY(20px) scale(0.7);
  transition: opacity 0.25s, transform 0.25s;
}

.float-btn__item svg {
  width: 22px;
  height: 22px;
}

/* Colors */
.float-btn__item--wa   { background: #25D366; color: #fff; }
.float-btn__item--tg   { background: #2AABEE; color: #fff; }
.float-btn__item--call { background: var(--orange); color: #fff; }

.float-btn__item:hover {
  transform: translateY(0) scale(1.12) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
}

/* Tooltip */
.float-btn__item::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 58px;
  background: #222;
  color: #fff;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.float-btn__item:hover::before {
  opacity: 1;
}

/* Open animation */
.float-btn.open .float-btn__items {
  pointer-events: all;
}

.float-btn.open .float-btn__item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.float-btn.open .float-btn__item:nth-child(1) { transition-delay: 0.05s; }
.float-btn.open .float-btn__item:nth-child(2) { transition-delay: 0.10s; }
.float-btn.open .float-btn__item:nth-child(3) { transition-delay: 0.15s; }

/* Pulse ring */
.float-btn__main::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(232,98,26,0.4);
  animation: floatPulse 2s infinite;
}

.float-btn.open .float-btn__main::after {
  display: none;
}

@keyframes floatPulse {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 560px) {
  .float-btn { bottom: 20px; right: 20px; }
}






/* ===========================
   HOW IT WORKS
=========================== */
.how {
  padding: 80px 40px;
  background: #fff;
}

.how__container {
  max-width: 1200px;
  margin: 0 auto;
}

.how__header {
  text-align: center;
  margin-bottom: 60px;
}

.how__title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
}

.how__subtitle {
  font-size: 16px;
  color: #888;
}

.how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.how__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

/* Номер */
.how__step-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

/* Иконка */
.how__step-icon {
  width: 72px;
  height: 72px;
  background: var(--orange);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff5ef;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  transition: background 0.25s, transform 0.25s;
  box-shadow: 0 4px 18px rgba(232,98,26,0.12);
}

.how__step-icon svg {
  width: 30px;
  height: 30px;
}

.how__step:hover .how__step-icon {
  background: #fff5ef;
  color: var(--orange);
  transform: translateY(-4px);
}

/* Линия между шагами */
.how__step-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--orange), #f0d0be);
  position: absolute;
  top: 70px; /* по центру иконки */
  left: 50%;
  z-index: 0;
}

.how__step-line--last {
  display: none;
}

.how__step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 20px;
  margin-bottom: 10px;
}

.how__step-desc {
  font-size: 13.5px;
  color: #777;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .how__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .how__step-line { display: none; }
}

@media (max-width: 560px) {
  .how { padding: 50px 20px; }
  .how__grid { grid-template-columns: 1fr; gap: 32px; }
}


/* ===========================
   BENEFITS
=========================== */
.benefits {
  padding: 80px 40px;
  background: #faf8f5;
}

.benefits__container {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits__header {
  text-align: center;
  margin-bottom: 52px;
}

.benefits__title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
}

.benefits__subtitle {
  font-size: 16px;
  color: #888;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefits__card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
  overflow: hidden;
}

/* Декоративный угол */
.benefits__card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--orange);
  border-radius: 0 0 4px 4px;
  transition: height 0.3s;
}

.benefits__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
}

.benefits__card:hover::after {
  height: 100%;
}

.benefits__card-icon {
  width: 52px;
  height: 52px;
  background: #fff5ef;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  transition: background 0.25s;
}

.benefits__card-icon svg {
  width: 24px;
  height: 24px;
}

.benefits__card:hover .benefits__card-icon {
  background: var(--orange);
  color: #fff;
}

.benefits__card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.benefits__card-desc {
  font-size: 13.5px;
  color: #777;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .benefits { padding: 50px 20px; }
  .benefits__grid { grid-template-columns: 1fr; }
}