:root {
  --c-accent: #5f99a5;
  --c-light: #e6eaeb;
  --c-dark: #263439;
  --c-white: #ffffff;
  --c-black: #000000;
  --text-dark: #263439;
  --text-light: #ffffff;
  --text-muted: rgba(38, 52, 57, 0.65);
  --grad-accent: linear-gradient(135deg, #5f99a5 0%, #263439 100%);
  --grad-light: linear-gradient(135deg, #ffffff 0%, #e6eaeb 100%);
  --grad-dark: linear-gradient(135deg, #263439 0%, #000000 100%);
  --grad-mix: linear-gradient(135deg, #e6eaeb 0%, #5f99a5 100%);
  --btn-main: linear-gradient(135deg, #5f99a5 0%, #263439 100%);
  --btn-hover: linear-gradient(135deg, #263439 0%, #5f99a5 100%);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.25);
  --ease-main: cubic-bezier(0.22, 0.61, 0.36, 1);
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
  max-width: 100%;
}

body {
  background: var(--c-dark);
  color: var(--text-light);
  line-height: 1.5;
  padding-top: 80px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--grad-dark);
  box-shadow: var(--shadow-soft);
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn {
  min-width: 280px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: var(--btn-main);
  color: var(--text-light);
  box-shadow: var(--shadow-soft);
  transition: all 0.5s var(--ease-main);
}

.btn:hover {
  background: var(--btn-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(95, 153, 165, 0.3);
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-white);
  text-decoration: none;
  white-space: nowrap;
}

.logo span {
  color: var(--c-accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--c-accent);
}

.btn-order {
  background: var(--btn-main);
  color: var(--text-light);
  padding: 12px 28px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s var(--ease-main);
  white-space: nowrap;
}

.btn-order:hover {
  background: var(--btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(95, 153, 165, 0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1002;
  width: 32px;
  height: 24px;
  position: relative;
}

.bar {
  width: 100%;
  height: 3px;
  background: var(--c-white);
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.4s var(--ease-main);
}

.bar:nth-child(1) {
  top: 0;
}
.bar:nth-child(2) {
  top: 10.5px;
}
.bar:nth-child(3) {
  top: 21px;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg);
  top: 10.5px;
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg);
  top: 10.5px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: var(--grad-dark);
  padding: 100px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease-main);
  z-index: 999;
  overflow-x: hidden;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-link {
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
}

.mobile-link:hover {
  color: var(--c-accent);
}

@media (max-width: 768px) {
  .logo {
    font-size: 1.4rem;
    font-weight: 600;
  }
  body {
    padding-top: 70px;
  }
  .header-container {
    height: 70px;
  }
  .nav-menu,
  .btn-order {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s var(--ease-main);
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.animate {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}
.d1 {
  animation-delay: 0.15s;
}
.d2 {
  animation-delay: 0.35s;
}
.d3 {
  animation-delay: 0.55s;
}
.d4 {
  animation-delay: 0.75s;
}

.hero {
  padding: 50px;
  background: linear-gradient(rgba(38, 52, 57, 0.55), rgba(38, 52, 57, 0.85)),
    url("/userfiles/images/fundament/fon-bg.webp") center/cover no-repeat;
  position: relative;
  overflow: hidden;
  color: var(--text-light);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(95, 153, 165, 0.35),
      transparent 40%
    ),
    radial-gradient(circle at 80% 70%, rgba(38, 52, 57, 0.35), transparent 45%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: auto;
  padding: 26px;
  border-radius: 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 26px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-title-block {
  padding: 30px 34px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(38, 52, 57, 0.9),
    rgba(95, 153, 165, 0.55)
  );
  box-shadow: 0 0 40px rgba(95, 153, 165, 0.25),
    inset 0 0 20px rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(95, 153, 165, 0.25);
}

.hero-title-block h1,
.hero-title {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
  margin-bottom: 0px;
}

.hero-title-block h1 {
  font-size: 65px;
}

.hero-title span {
  color: #fff807;
}

.hero-title-block p {
  font-size: 18px;
  margin-top: 10px;
  opacity: 0.9;
}

.hero-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.step-item {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(95, 153, 165, 0.15);
  transition: background 0.35s ease, transform 0.35s ease;
}

.step-item:hover {
  background: rgba(95, 153, 165, 0.2);
  transform: translateY(-2px);
}

.step-dot {
  width: 10px;
  height: 10px;
  background: var(--c-accent, #5f99a5);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-cta {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(95, 153, 165, 0.15);
}

.hero-cta p {
  font-size: 17px;
  margin-bottom: 18px;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 14px;
}

.hero .btn {
  position: relative;
  overflow: hidden;
  flex: 1;
  padding: 16px;
  border-radius: 16px;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.35s ease;
  color: var(--text-light);
}

.hero .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: btnShine 5s ease-in-out infinite;
  pointer-events: none;
}

.btn-primary::before {
  animation-delay: 0s;
}
.btn-secondary::before {
  animation-delay: 1.8s;
}

@keyframes btnShine {
  0% {
    left: -120%;
  }
  40% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

.btn-primary {
  background: var(--btn-main, linear-gradient(135deg, #263439, #5f99a5));
  box-shadow: 0 0 25px rgba(95, 153, 165, 0.4);
}

.btn-primary:hover {
  background: var(--btn-hover, linear-gradient(135deg, #5f99a5, #263439));
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 45px rgba(95, 153, 165, 0.7);
}

.btn-secondary {
  background: linear-gradient(
    135deg,
    rgba(95, 153, 165, 0.4),
    rgba(95, 153, 165, 0.7)
  );
  border: 1px solid rgba(95, 153, 165, 0.4);
}

.btn-secondary:hover {
  background: linear-gradient(
    135deg,
    rgba(95, 153, 165, 0.6),
    rgba(95, 153, 165, 0.9)
  );
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(95, 153, 165, 0.5);
}

.hero-right {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 420px;
}

.hero-image {
  width: 100%;
  height: 100%;
  /*     object-fit: cover;
    transform: scale(1.12) translateY(-4%); */
  transition: transform 6s ease;
  display: block;
  background: url("/userfiles/images/fundament/fon-bg-2.webp") center/cover
    no-repeat;
}

.hero-right:hover .hero-image {
  transform: scale(1.01);
}

.hero-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 220px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(38, 52, 57, 0.92),
    rgba(95, 153, 165, 0.75)
  );
  border: 1px solid rgba(95, 153, 165, 0.35);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  color: var(--text-light);
  text-align: center;
}

.hero-badge strong {
  display: block;
  font-size: 15px;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.hero-badge span {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.5;
}

.kpi-section {
  margin-top: 26px;
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.kpi-card {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  padding: 22px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: all 0.5s var(--ease-main, ease);
}

.kpi-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.kpi-flex {
  display: flex;
  align-items: center;
  gap: 18px;
}

.kpi-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.kpi-text strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.kpi-text span {
  font-size: 0.92rem;
  opacity: 0.75;
  line-height: 1.4;
}

.kpi-divider {
  height: 1px;
  background: var(--c-accent, #5f99a5);
  opacity: 0.4;
  border: none;
  border-radius: 2px;
  margin: 10px 0 12px;
}

@media (max-width: 1100px) {
  .hero-inner {
    display: flex;
    flex-direction: column;
  }
  .kpi-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 20px;
  }
  .hero-inner {
    padding: 18px;
    border-radius: 26px;
  }
  .hero-title-block h1,
  .hero-title {
    font-size: 38px;
  }
  .hero-title-block p {
    font-size: 15px;
  }
  .hero-steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-badge {
    position: static;
    width: 100%;
    margin-top: 14px;
  }
  .hero-right {
    min-height: 280px;
  }
  .kpi-flex {
    flex-direction: column;
    text-align: center;
  }
  .kpi-img {
    width: 80px;
    height: 80px;
  }
}

.decor-line {
  position: absolute;
  background: rgba(95, 153, 165, 0.12);
  pointer-events: none;
  z-index: 0;
}
.decor-line-left {
  top: 15%;
  left: 4%;
  width: 2px;
  height: 70%;
}
.decor-line-right {
  bottom: 18%;
  right: 5%;
  width: 2px;
  height: 65%;
  transform: rotate(-22deg);
}
.decor-spot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(95, 153, 165, 0.16) 10%,
    transparent 70%
  );
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.spot-left {
  width: 520px;
  height: 520px;
  top: -120px;
  left: -160px;
}
.spot-right {
  width: 620px;
  height: 620px;
  bottom: -140px;
  right: -200px;
}

.tile {
  opacity: 0;
  transform: translateY(70px);
  transition: all 0.9s var(--ease-main);
}
.tile.show {
  opacity: 1;
  transform: translateY(0);
}

.section-types {
  background: var(--grad-light);
  padding: 100px 0 120px;
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}
.section-types::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(95, 153, 165, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(95, 153, 165, 0.06) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.head-content h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text-dark);
}
.head-content p {
  font-size: 1.25rem;
  opacity: 0.85;
  margin: 0;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tile {
  background: var(--c-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  position: relative;
  transition: all 0.5s var(--ease-main);
  color: var(--text-light);

  display: flex;
  flex-direction: column;
  height: 100%;
}

.tile-content {
  padding: 0 40px 28px;
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section-types .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: auto 20px;
}

.tile:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.tile-image {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.tile-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(38, 52, 57, 0.2) 30%,
    var(--c-dark) 100%
  );
  pointer-events: none;
}
.tile h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0;
  color: var(--c-white);
  text-align: center;
}
.tile p {
  font-size: 1.15rem;
  margin: 0 0 32px;
  line-height: 1.5;
}
.tile-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 1rem;
}
.tile-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  opacity: 0.9;
}
.tile-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--c-accent);
  font-size: 1.1rem;
}
.full-width {
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-main);
  color: var(--text-light);
  padding: 18px 0;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}
.full-width:hover {
  background: var(--btn-hover);
  transform: translateY(-3px);
}



.tile-price {
  text-align: center;
  margin: 18px 0 22px;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 800;
  color: #fff807;
}

.tile-price span {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.85;
  margin-right: 4px;
}

.tile-price small {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
}

@media (max-width: 480px) {
  .tile-price {
    font-size: 1.5rem;
    margin: 14px 0 18px;
  }

  .tile-price span {
    font-size: 0.9rem;
  }

  .tile-price small {
    font-size: 0.75rem;
  }
}

@media (max-width: 992px) {
  .section-types {
    padding: 80px 0 100px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .grid3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .tile-content {
    padding: 60px 32px 48px;
  }
}
@media (max-width: 640px) {
  .grid3 {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .section-types .cta-row {
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .tile-content {
    padding: 0 14px 20px;
  }
  .tile h3 {
    font-size: 1.4rem;
  }
  .full-width {
    padding: 15px 0;
    font-size: 0.9rem;
    margin-left: -9px;
  }
  .tile-features {
    font-size: 0.9rem;
    line-height: 1;
  }
  .tile-image {
    height: 200px;
  }
}

.section-objects {
  background: var(--grad-dark);
  padding: 100px 0 120px;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.section-objects::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(95, 153, 165, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(95, 153, 165, 0.08) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.section-objects .section-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text-light);
}

.head-content p {
  font-size: 1.25rem;
  opacity: 0.85;
  margin: 0;
}

.grid-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.chip {
  background: var(--c-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: all 0.5s var(--ease-main);
  overflow: hidden;
}

.chip:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}
.chip p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0 0 14px 0;
  color: var(--text-muted);
}
.chip-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  height: 100%;
  align-items: stretch;
}

.chip-text {
  padding: 32px 28px 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: var(--text-dark);
}

.chip span {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.chip small {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 28px;
  display: block;
}

.chip .btn.primary.chip-btn {
  width: auto;
  min-width: 140px;
  max-width: 160px;
  background: var(--btn-main);
  color: var(--text-light);
  padding: 11px 20px;
  font-size: 0.95rem;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-main);
  white-space: nowrap;
  margin-top: auto;
}

.chip .btn.primary.chip-btn:hover {
  background: var(--btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(95, 153, 165, 0.25);
}

.chip-image {
  background-size: cover;
  background-position: center;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  height: 100%;
  position: relative;
}

.chip-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--c-white) 0%,
    var(--c-white) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.3) 70%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.decor-line {
  position: absolute;
  background: rgba(95, 153, 165, 0.18);
  pointer-events: none;
  z-index: 0;
}
.decor-line-left {
  top: 20%;
  left: 5%;
  width: 2px;
  height: 60%;
}
.decor-line-right {
  bottom: 15%;
  right: 6%;
  width: 2px;
  height: 70%;
  transform: rotate(18deg);
}

.decor-spot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(95, 153, 165, 0.2) 10%,
    transparent 70%
  );
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.spot-left {
  width: 480px;
  height: 480px;
  top: -80px;
  left: -140px;
}
.spot-right {
  width: 580px;
  height: 580px;
  bottom: -100px;
  right: -180px;
}

.chip {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s var(--ease-main);
}
.chip.animate.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .grid-chips {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .chip-grid {
    grid-template-columns: 1fr;
  }
  .chip-image {
    height: 200px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
  .chip-image::before {
    background: linear-gradient(to bottom, var(--c-white) 0%, transparent 50%);
  }
  .chip-text {
    padding: 32px 32px 24px;
  }
  .chip .btn.primary.chip-btn {
    max-width: none;
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 640px) {
  .grid-chips {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .chip-grid {
    grid-template-columns: 1fr;
  }
  .chip-image {
    height: 180px;
  }
  .chip-text {
    padding: 28px 28px 20px;
  }
}

.section-cycle {
  background: var(--grad-light);
  padding: 100px 0 120px;
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.section-cycle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(95, 153, 165, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(95, 153, 165, 0.06) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}

.section-cycle .section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.section-cycle .section-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text-dark);
}

.section-cycle .section-head p {
  font-size: 1.25rem;
  opacity: 0.85;
  margin: 0;
}

.section-cycle .grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.section-cycle .tile {
  background: var(--c-dark);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s var(--ease-main);
  height: 150px;
  display: flex;
  flex-direction: column;
}

.section-cycle .tile:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.section-cycle .tile-inner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  height: 100%;
}

.section-cycle .tile-icon {
  font-size: 2.4rem;
  color: var(--c-white);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
}

.section-cycle .tile-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section-cycle .tile h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0;
  color: var(--c-white);
  text-align: left;
}

.section-cycle .tile p {
  font-size: 0.9rem;
  line-height: 1.3;
  margin: 0;
  flex: 1;
  color: var(--c-white);
}

.section-cycle .tile {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s var(--ease-main);
}

.section-cycle .tile.animate.show {
  opacity: 1;
  transform: translateY(0);
}

.section-cycle .decor-line {
  position: absolute;
  background: rgba(95, 153, 165, 0.12);
  pointer-events: none;
  z-index: 0;
}
.section-cycle .decor-line-left {
  top: 15%;
  left: 4%;
  width: 2px;
  height: 70%;
}
.section-cycle .decor-line-right {
  bottom: 18%;
  right: 5%;
  width: 2px;
  height: 65%;
  transform: rotate(-22deg);
}

.section-cycle .decor-spot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(95, 153, 165, 0.16) 10%,
    transparent 70%
  );
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.section-cycle .spot-left {
  width: 520px;
  height: 520px;
  top: -120px;
  left: -160px;
}
.section-cycle .spot-right {
  width: 620px;
  height: 620px;
  bottom: -140px;
  right: -200px;
}

@media (max-width: 1200px) {
  .section-cycle .grid4 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .section-cycle .grid4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .section-cycle .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .section-cycle .tile {
    min-height: 130px;
    padding: 28px 0;
  }
}

@media (max-width: 640px) {
  .section-cycle .grid4 {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }
  .section-cycle .tile {
    padding: 10px 0;
  }
  .section-cycle .tile-inner {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
  .section-cycle .tile-icon {
    margin-left: 70%;
    margin-top: 5px;
    margin-bottom: -40px;
    font-size: 1rem;
  }
  .section-cycle .tile h3 {
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 600;
  }
}

.section-steps {
  background: var(--grad-dark);
  padding: 100px 0 120px;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.section-steps::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(95, 153, 165, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(95, 153, 165, 0.08) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}

.section-steps .section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.section-steps .head-content h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text-light);
}

.section-steps .head-content p {
  font-size: 1.25rem;
  opacity: 0.85;
  margin: 0;
}

.section-steps .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.section-steps .step {
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s var(--ease-main);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  color: var(--text-dark);
}

.section-steps .step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.section-steps .step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--c-accent);
  color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
}

.section-steps .step h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--c-accent);
}

.section-steps .step p {
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0;
}

.section-steps .step {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s var(--ease-main);
}

.section-steps .step.animate.show {
  opacity: 1;
  transform: translateY(0);
}

.section-steps .decor-line {
  position: absolute;
  background: rgba(95, 153, 165, 0.18);
  pointer-events: none;
  z-index: 0;
}
.section-steps .decor-line-left {
  top: 15%;
  left: 4%;
  width: 2px;
  height: 70%;
}
.section-steps .decor-line-right {
  bottom: 18%;
  right: 5%;
  width: 2px;
  height: 65%;
  transform: rotate(-22deg);
}

.section-steps .decor-spot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(95, 153, 165, 0.2) 10%,
    transparent 70%
  );
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.section-steps .spot-left {
  width: 520px;
  height: 520px;
  top: -120px;
  left: -160px;
}
.section-steps .spot-right {
  width: 620px;
  height: 620px;
  bottom: -140px;
  right: -200px;
}

@media (max-width: 992px) {
  .section-steps .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .section-steps .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .section-steps .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }
  .section-steps .step {
    min-height: auto;
  }
  .section-steps .step h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 5px 0;
  }
  .section-steps .step p {
    font-size: 0.9rem;
    line-height: 1.3;
  }
  .section-steps .step-number {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    font-weight: 600;
  }
}

.section-advantages {
  background: var(--grad-light);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.section-advantages::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(95, 153, 165, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(95, 153, 165, 0.06) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.left-column,
.right-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.white-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s var(--ease-main);
  display: flex;
  flex-direction: row;
}

.white-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.card-text {
  flex: 1;
  padding: 28px 24px;
}

.card-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text-dark);
}

.card-text p {
  font-size: 1.02rem;
  line-height: 1.45;
  margin: 0;
  color: var(--text-muted);
}

.card-image {
  width: 140px;
  min-width: 140px;
  background-size: cover;
  background-position: center;
}

.center-dark-card {
  background: var(--c-dark);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.guarantee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guarantee-number {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--c-accent);
  margin-bottom: -8px;
}

.guarantee-text {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.center-dark-card p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin: 0;
}

/* Анимации */
.white-card,
.center-dark-card {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s var(--ease-main);
}

.white-card.animate.show,
.center-dark-card.animate.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .advantages-grid {
    grid-template-columns: 1fr 1fr;
  }
  .center-dark-card {
    grid-column: 1 / -1;
    order: 2;
  }
  .left-column {
    order: 1;
  }
  .right-column {
    order: 3;
  }
}

@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .white-card {
    flex-direction: column;
  }
  .card-image {
    width: 100%;
    height: 160px;
  }
  .center-dark-card {
    padding: 32px 20px;
  }
  .guarantee-number {
    font-size: 4rem;
  }
  .guarantee-text {
    font-size: 1.5rem;
  }
}

.section-projects {
  background: var(--grad-dark);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
  color: var(--text-light);
}
.section-projects::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(95, 153, 165, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(95, 153, 165, 0.08) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.project-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s var(--ease-main);
  display: flex;
  flex-direction: column;
  color: var(--text-dark);
  cursor: pointer;
}
.project-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-strong);
}
.project-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 70%,
    rgba(255, 255, 255, 0.2) 100%
  );
  pointer-events: none;
}
.project-info {
  padding: 24px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.project-info h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--c-accent);
}
.project-params {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.98rem;
  opacity: 0.85;
}
.param {
  display: flex;
  align-items: center;
  gap: 8px;
}
.param i {
  color: var(--c-accent);
}
.project-review {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: rgba(95, 153, 165, 0.12);
  border-radius: var(--radius-md);
  border-top: 2px solid rgba(95, 153, 165, 0.25);
  opacity: 0.95;
}
.review-title {
  font-weight: 700;
  color: var(--c-accent);
  display: block;
  margin-bottom: 8px;
}
.project-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-main);
  color: var(--text-light);
  padding: 12px 24px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  transition: all 0.4s var(--ease-main);
}
.project-btn:hover {
  background: var(--btn-hover);
  transform: translateY(-2px);
}
.project-card {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s var(--ease-main);
}
.project-card.animate.show {
  opacity: 1;
  transform: translateY(0);
}

.css-modal-target {
  display: none;
}
.css-modal-target:target {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  animation: bg 0.5s ease;
  background: rgba(51, 122, 183, 0.7);
}
.cmt {
  font-size: 16px;
  padding: 20px;
  width: 80%;
  max-width: 1100px;
  max-height: 80%;
  transition: 0.5s;
  border: 6px solid #bfe2ff;
  border-radius: 12px;
  background: var(--c-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 16px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  overflow: auto;
  animation: scale 0.5s ease;
}
.css-modal-close {
  position: relative;
  display: block;
}
.css-modal-close:after {
  content: "";
  width: 50px;
  height: 50px;
  border: 6px solid #bfe2ff;
  border-radius: 12px;
  position: fixed;
  z-index: 10;
  top: 120px;
  right: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 16px 20px rgba(0, 0, 0, 0.2);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23337AB7' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='18' y1='6' x2='6' y2='18'%3e%3c/line%3e%3cline x1='6' y1='6' x2='18' y2='18'%3e%3c/line%3e%3c/svg%3e");
  background-color: #fff;
  background-size: cover;
  animation: move 0.5s ease;
}
.css-modal-close:before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  content: "";
  cursor: default;
}
@keyframes scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes move {
  0% {
    right: -80px;
  }
  100% {
    right: 20px;
  }
}
@keyframes bg {
  0% {
    background: rgba(51, 122, 183, 0);
  }
  100% {
    background: rgba(51, 122, 183, 0.7);
  }
}

.project-card {
  position: relative;
}
.project-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}
.project-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-review {
  flex-grow: 1;
}
@media (max-width: 768px) {
  .css-modal-target .cmt > div {
    flex-direction: column;
    gap: 20px;
  }

  .css-modal-target .cmt > div > div {
    flex: 1 1 100% !important;
    width: 100%;
  }

  .cmt {
    width: 94%;
    max-height: 90%;
    padding: 16px;
  }

  .cmt > div > div:first-child > div {
    gap: 12px;
    margin-top: 16px;
  }

  .cmt > div > div:first-child > div > div > div {
    font-size: 1.6rem !important;
  }

  .cmt small {
    font-size: 0.85rem !important;
  }

  .cmt .btn {
    padding: 10px 18px !important;
    font-size: 0.9rem !important;
  }

  .cmt img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .css-modal-target {
    align-items: center;
    justify-content: center;
    padding: 15px;
  }
  .cmt {
    width: 100%;
    margin-top: 50px;
    max-height: 77vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.css-modal-close:before {
  pointer-events: none;
}
.css-modal-close:after {
  pointer-events: auto;
}

@media (max-width: 768px) {
  .css-modal-target .cmt button.btn {
    display: block;
    margin-left: -12px;
    margin-right: auto;
  }
}

.faq-section {
  background: var(--grad-light);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(95, 153, 165, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(95, 153, 165, 0.06) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}

.faq-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.faq-column-left,
.faq-column-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-entry {
  background: var(--c-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.4s var(--ease-main), box-shadow 0.4s var(--ease-main);
}

.faq-entry:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.faq-q-title {
  padding: 20px 28px;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-arrow {
  transition: transform 0.4s var(--ease-main);
  font-size: 1.1rem;
  color: var(--c-accent);
}

.faq-entry[data-state="open"] .faq-arrow {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  padding: 0 !important;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 0.45s var(--ease-main), padding 0.45s var(--ease-main),
    visibility 0s linear 0.45s;
}

.faq-entry[data-state="open"] .faq-body {
  max-height: 1200px;
  padding: 0 28px 24px !important;
  visibility: visible;
  transition: max-height 0.45s var(--ease-main), padding 0.45s var(--ease-main),
    visibility 0s linear 0s;
}

.faq-body p {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.6;
  color: var(--text-light);
}

.faq-subtitle {
  color: var(--text-dark) !important;
  opacity: 0.85;
}

.faq-entry {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s var(--ease-main);
}

.faq-entry.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .faq-grid-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .faq-q-title {
    font-size: 1rem;
    padding: 18px 20px;
  }
  .faq-entry[data-state="open"] .faq-body {
    padding: 0 20px 20px !important;
  }
  .faq-body p {
    font-size: 0.9rem;
  }
}

.client-feedback-block {
  background: var(--grad-dark);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  color: var(--text-light);
}

.client-feedback-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(95, 153, 165, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(95, 153, 165, 0.1) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.client-feedback-carousel {
  padding: 40px 0 80px;
  overflow: hidden;
}

.client-testimonial {
  background: var(--c-white);
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 320px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-strong);
  transition: all 0.4s var(--ease-main);
}

.client-testimonial:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.client-top-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 16px;
}

.client-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-accent);
  flex-shrink: 0;
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.client-fullname {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-dark);
}

.client-rating {
  color: #ffd700;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.client-comment {
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-dark);
  position: relative;
  padding: 0 10px;
}

.client-open-quote,
.client-close-quote {
  font-size: 6rem;
  color: var(--c-accent);
  opacity: 0.25;
  position: absolute;
  line-height: 1;
}

.client-open-quote {
  top: -20px;
  left: -10px;
}
.client-close-quote {
  bottom: -50px;
  right: -10px;
}

/* Swiper */
.client-feedback-carousel .swiper-slide {
  height: auto;
}

.client-feedback-carousel .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.client-feedback-carousel .swiper-pagination-bullet-active {
  background: var(--c-accent);
}

.client-feedback-carousel .swiper-button-next,
.client-feedback-carousel .swiper-button-prev {
  color: var(--c-accent);
  width: 44px;
  height: 44px;
  background: rgba(38, 52, 57, 0.5);
  border-radius: 50%;
}

.client-feedback-carousel .swiper-button-next:after,
.client-feedback-carousel .swiper-button-prev:after {
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .client-testimonial {
    height: 360px;
    padding: 24px;
  }
  .client-comment {
    font-size: 1rem;
  }
}

.final-cta-section {
  background: var(--grad-light);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(95, 153, 165, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(95, 153, 165, 0.06) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}

.final-cta-section .head-content p {
  font-size: 1.25rem;
  opacity: 0.85;
  margin: 0;
  color: var(--text-dark);
}

.final-main-card {
  background: var(--c-dark);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  box-shadow: var(--shadow-strong);
  position: relative;
  z-index: 1;
}

.final-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 48px;
}

.final-cta-row .btn {
  min-width: 280px;
  padding: 18px 32px;
  font-size: 1.1rem;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.contact-tile {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.4s var(--ease-main);
}

.contact-tile:hover {
  transform: translateY(-8px);
  background: rgba(95, 153, 165, 0.15);
}

.contact-tile.primary {
  background: linear-gradient(
    135deg,
    rgba(95, 153, 165, 0.25),
    rgba(38, 52, 57, 0.35)
  );
}

.contact-tile h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--c-accent);
}

.contact-value {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-desc {
  font-size: 0.98rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

.contact-tile .btn.small {
  padding: 12px 24px;
  font-size: 1rem;
  min-width: auto;
}

.final-footer-text {
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.75;
  margin-top: 32px;
}

.final-footer-text small {
  display: block;
  margin-top: 8px;
  opacity: 0.6;
}

@media (max-width: 992px) {
  .contacts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .final-cta-row {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
  .final-main-card {
    padding: 32px 20px;
  }
}
.contact-value {
  font-size: 23px;
  font-weight: 700;
}
@media (max-width: 380px) {
  .contact-value {
    font-size: 20px;
  }

  .final-cta-row .btn {
    min-width: 240px;
  }
}

.milti-back-shadow-sec {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  flex-direction: row;
  display: none;
  align-items: center;
  justify-content: center;
}
.milti-back-shadow-sec .milti-back-window {
  background-color: #ffffff;
  box-shadow: 0 0 15px #cddae7;
  border-radius: 16px;
  padding: 8px;
  max-width: 375px;
}
.milti-back-shadow-sec .milti-back-window {
  position: absolute;
  left: 50%;
  background: #fff;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 450px;
}
.milti-back-shadow-sec .milti-back-title-sec {
  padding: 8px 16px;
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  font-size: 18px;
  align-items: center;
  justify-content: space-between;
  line-height: 28px;
  font-weight: 300;
  position: relative;
  background: #5f99a5;
  font-family: sans-serif;
}
.milti-back-shadow-sec .milti-back-title-sec .milti-back-close {
  height: 27px;
  width: 27px;
  position: absolute;
  right: 25px;
  cursor: pointer;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.milti-back-shadow-sec .milti-back-close {
  transition: 0.2s;
}
.milti-back-shadow-sec .milti-back-title-sec .milti-back-close svg {
  height: 100%;
  width: 100%;
}
.milti-back-shadow-sec .milti-back-close svg {
  display: block;
}
.milti-back-shadow-sec .milti-back-window-content {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.milti-back-shadow-sec .milti-back-window-content .milti-back-inputs {
  width: 100%;
}
.milti-back-shadow-sec
  .milti-back-window-content
  .milti-back-inputs
  .milti-back-inputs-forminputs {
  display: grid;
  grid-gap: 20px;
}

.milti-back-shadow-sec
  .milti-back-window-content
  .milti-back-inputs
  .milti-back-inputs-forminputs
  input {
  width: 100%;
  height: 50px;
  display: block;
  border: 1px solid #ccc;
  color: #ccc;
  font-family: sans-serif;
  padding-left: 20px;
}
.milti-back-shadow-sec .milti-back-title-form {
  line-height: 54px;
  padding: 0 20px;
  font-size: 14px;
  text-align: center;
  outline: none;
  border-radius: 12px;
}
.milti-back-shadow-sec .milti-back-inputs [type="text"] {
  line-height: 54px;
  padding: 0 20px;
  font-size: 16px;
  text-align: center;
  outline: none;
  border-radius: 12px;
}
.milti-back-shadow-sec .politic {
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  padding-left: 25px;
  white-space: pre-line;
  padding-right: 25px;
  font-family: sans-serif;
}

.milti-back-shadow-sec .politic a {
  text-decoration: none;
  border-bottom: 1px solid #5f99a5;
  color: #5f99a5;
  display: inline-block;
  width: fit-content;
  transition: 0.3s;
}
.milti-back-shadow-sec .multi-btn-sec {
  text-align: center;
  margin: 30px auto 20px;
  width: fit-content;
  padding-bottom: 10px;
}
.milti-back-btn {
  border-radius: 50px;
  padding: 15px 25px;
  color: #fff;
  background: #5f99a5;
  font-family: sans-serif;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.02em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
}
.milti-back-shadow-sec .milti-back-modalmessage {
  padding-left: 25px;
  padding-right: 25px;
  font-size: 14px;
  height: 34px;
  color: red;
  text-align: center;
}

.multi-window-show {
  cursor: pointer;
}
.btn {
  text-decoration: none;
}

/* BLOG */

.blog-cont {
  padding: 160px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.container-blog {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}
.blog-cont a {
  text-decoration: none !important;
  color: inherit;
}

.blog__header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
}
.blog__title-wrap {
  grid-column: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.blog__main-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.2;
  color: #000000;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.4s ease-out 0.4s forwards;
}
.blog__subtitle {
  font-size: 26px;
  line-height: 1.5;
  color: #1e2a38;
  margin: 20px 0 0;
  max-width: 680px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.4s ease-out 0.8s forwards;
}
.blog__main-btn {
  margin-top: 32px;
  padding: 18px 44px;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff !important;
  /*         background:linear-gradient(135deg,#2c5f7a,#46728a); */
  background-color: #1e88e5;

  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(44, 95, 122, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.4s ease-out 1.1s forwards;
  transition: all 0.4s;
}
.blog__main-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(44, 95, 122, 0.5);
}

.blog__card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border: 4px solid transparent;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(
        rgba(255, 255, 255, 0.88),
        rgba(255, 255, 255, 0.88)
      )
      padding-box,
    linear-gradient(135deg, #2c5f7a, #46728a, #1e88e5, #ffc107) border-box;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transition: all 0.45s;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease-out forwards;
}
.blog__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}
.blog__card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
}
.blog__card-content {
  padding: 28px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog__card-title {
  font-size: 18px;
  font-weight: 800;
  color: #004c80;
  line-height: 1.3;
  margin-bottom: 12px;
}
.blog__card-text {
  font-size: 17px;
  line-height: 1.6;
  color: #1e2a38;
  flex-grow: 1;
  margin-bottom: 20px;
}
.blog__card-btn {
  margin-top: auto;
  padding: 16px 20px;
  background-color: #ffc107;
  /*   background:linear-gradient(135deg,#ff8c38,#e63946,#a0522d,#8b4513); */
  color: #000000;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  border-radius: 12px;
  transition: all 0.35s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.blog__card:hover .blog__card-btn {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.5);
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Анимации появления */
.blog__header > .blog__card:nth-of-type(1) {
  animation-delay: 0.9s;
}
.blog__header > .blog__card:nth-of-type(2) {
  animation-delay: 1.1s;
}
.blog__grid .blog__card:nth-child(1) {
  animation-delay: 1.3s;
}
.blog__grid .blog__card:nth-child(2) {
  animation-delay: 1.5s;
}
.blog__grid .blog__card:nth-child(3) {
  animation-delay: 1.7s;
}
.blog__grid .blog__card:nth-child(4) {
  animation-delay: 1.9s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-floating-img {
  position: absolute;
  top: 50%;
  right: -220px;
  transform: translateY(-50%);
  width: 820px;
  height: 100%;
  background: url("") center/cover no-repeat;
  border-radius: 32px;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: all 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-cont.animated .blog-floating-img {
  right: 20px;
  opacity: 0.15;
}

/* Адаптив */
@media (max-width: 1200px) {
  .container-blog {
    padding: 0 40px;
  }
  .blog__header {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .blog__title-wrap {
    grid-column: 1/-1;
    text-align: center;
    align-items: center;
  }
  .blog__subtitle {
    font-size: 19px;
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .container-blog {
    padding: 0 30px;
  }
  .blog__header {
    grid-template-columns: 1fr;
  }
  .blog__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .container-blog {
    padding: 0 20px;
  }
  .blog-cont {
    padding: 90px 0;
  }
  .blog__main-title {
    font-size: 36px;
  }
  .blog__subtitle {
    font-size: 17px;
    margin: 16px 0 0;
  }
  .blog__main-btn {
    margin-top: 28px;
    padding: 16px 36px;
    font-size: 17px;
  }
  .blog__card-img {
    height: 160px;
  }
  .blog__card-content {
    padding: 24px 20px;
  }
  .blog__card-title {
    font-size: 20px;
  }
  .blog__card-text {
    font-size: 16.5px;
  }
}
@media (max-width: 540px) {
  .container-blog {
    padding: 0 15px;
  }
  .blog__grid {
    grid-template-columns: 1fr;
  }
  .blog__card-img {
    height: 200px;
  }
  .blog__main-btn {
    min-width: auto;
    width: 100%;
    max-width: 320px;
  }
  .blog__subtitle {
    font-size: 16px;
  }
}

.articles__subtitle {
  color: #000;
  font-size: 22px;
  font-weight: 600;
}

.protect-portfolio {
  padding: 80px 20px;
  background: #d5e3e8;
  color: #171717;
}



.protect-portfolio__container {
  max-width: 1440px;
  margin: 0 auto;
}

.protect-portfolio__head {
  max-width: 800px;
  margin-bottom: 42px;
}

.protect-portfolio__title {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.protect-portfolio__text {
  max-width: 680px;
  margin: 0;
  color: #666;
  font-size: 18px;
  line-height: 1.6;
}


/* Ð¡ÐµÑ‚ÐºÐ° */

.protect-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}


/* ÐšÐ°Ñ€Ñ‚Ð¾Ñ‡ÐºÐ° */

.protect-portfolio__item {
  position: relative;
  display: flex;
  flex-direction: column;

  overflow: hidden;

  border-radius: 10px;

  background: #fff;

  text-decoration: none;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


/* ÐšÐ°Ñ€Ñ‚Ð¸Ð½ÐºÐ° */

.protect-portfolio__item img {
  display: block;

  width: 100%;
  height: auto;
  max-height: 200px;

  aspect-ratio: 4 / 3;

  object-fit: cover;

  transition: transform 0.5s ease;
}


/* Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ */

.protect-portfolio__info {
  padding: 18px 20px 12px;
}


/* ÐÐ°Ð·Ð²Ð°Ð½Ð¸Ðµ Ð¿Ñ€Ð¾ÐµÐºÑ‚Ð° */

.protect-portfolio__name {
  margin: 0 0 14px;

  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}


/* Ð¥Ð°Ñ€Ð°ÐºÑ‚ÐµÑ€Ð¸ÑÑ‚Ð¸ÐºÐ¸ */

.protect-portfolio__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.protect-portfolio__detail {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 8px;

  font-size: 13px;
  line-height: 1.35;
}

.protect-portfolio__detail-label {
  color: #777;
}

.protect-portfolio__detail-value {
  color: #222;
  font-weight: 500;
}


/* Hover */

.protect-portfolio__item:hover {
  transform: translateY(-3px);

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.09);
}

.protect-portfolio__item:hover img {
  transform: scale(1.04);
}


/* ÐŸÐ»Ð°Ð½ÑˆÐµÑ‚ */

@media (max-width: 1000px) {

  .protect-portfolio {
    padding: 65px 20px;
  }

  .protect-portfolio__grid {
    grid-template-columns: repeat(3, 1fr);
  }

}


/* ÐœÐ¾Ð±Ð¸Ð»ÑŒÐ½Ñ‹Ðµ */

@media (max-width: 650px) {

  .protect-portfolio {
    padding: 45px 15px;
  }

  .protect-portfolio__head {
    margin-bottom: 28px;
  }

  .protect-portfolio__title {
    margin-bottom: 14px;
    font-size: 34px;
  }

  .protect-portfolio__text {
    font-size: 16px;
    line-height: 1.5;
  }

  .protect-portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
  }

  .protect-portfolio__item img {
    aspect-ratio: 1 / 1;
  }

  .protect-portfolio__info {
    padding: 14px;
  }

  .protect-portfolio__name {
    margin-bottom: 11px;
    font-size: 16px;
  }

  .protect-portfolio__detail {
    grid-template-columns: 1fr;
    gap: 1px;

    font-size: 12px;
  }

}


/* ÐœÐ°Ð»ÐµÐ½ÑŒÐºÐ¸Ðµ ÑÐºÑ€Ð°Ð½Ñ‹ */

@media (max-width: 390px) {

  .protect-portfolio__grid {
    grid-template-columns: 1fr;
  }

  .protect-portfolio__item img {
    aspect-ratio: 4 / 3;
  }

}









.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Arial, sans-serif;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.brand-subtitle {
  margin-top: 3px;
  font-size: 13px;
  font-weight: 400;
  color: #aeaeae;
}

header .tel {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

header .mobTel {
  font-size: 20px;
  color: #ababab;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 720px) {
  header .tel {
    display: none;
  }
}

.contact-value a {
  text-decoration: none;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}

.prices {
  padding: 30px 0px 40px;
  background: #ffffff;
}

.prices__intro p {
  font-size: 22px;
  line-height: 1.5;
  color: #555555;
  max-width: 780px;
}

.prices__table-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(66, 165, 245, 0.15);
}

.prices__table {
  width: 100%;
  border-collapse: collapse;
  background: rgb(210 231 247 / 60%);
  backdrop-filter: blur(8px);
}

.prices__table th,
.prices__table td {
  padding: 24px 32px;
  border-bottom: 1px solid rgba(66, 165, 245, 0.15);
  font-size: 18px;
  color: #212121;
}

.prices__table th {
  background: linear-gradient(135deg, #568a95, #2a3c41);
  color: #ffffff;
  font-weight: 700;
}

.prices__table .prices__service {
  width: 75%;
}

.prices__table .prices__price {
  width: 25%;
  font-weight: 800;
  font-size: 20px;
  text-align: right;
  color: #ffffff !important;
}

.prices__table tbody td:last-child {
  text-align: right;
  font-weight: 900;
  font-size: 21px;
  color: #5f99a5;
}

.prices__table tr:hover {
  background: rgba(66, 165, 245, 0.08);
}

.prices__table tr:last-child td {
  border-bottom: none;
}

.prices__note {
  text-align: center;
  font-size: 18px;
  color: #263439;
}

.prices__note p {
  margin-bottom: 24px;
}

.prices__note .btn-yellow {
  font-size: 20px;
  padding: 18px 48px;
}

/* Мобильная версия */
@media (max-width: 992px) {


  .prices__table thead {
    display: none;
  }

  .prices__table,
  .prices__table tbody,
  .prices__table tr,
  .prices__table td {
    display: block;
  }

  .prices__table tr {
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(66, 165, 245, 0.12);
  }

  .prices__table tr:last-child {
    margin-bottom: 0;
  }

  .prices__table td {
    padding: 18px 24px;
    border: none;
    font-size: 17px;
  }

  .prices__table td:first-child {
    background: #5f99a5;
    color: #ffffff;
    font-weight: 700;
    font-size: 19px;
    text-align: center;
  }

  .prices__table td:last-child {
    text-align: center;
    font-size: 22px;
    font-weight: 900;
    color: #212121;
    padding-top: 8px;
  }
}

@media (max-width: 576px) {
  .hero-image {
    height: 400px;}

  .btn {
    min-width: 100%;
  }

  .prices .s-title {
    font-size: 38px;
  }

  .prices__table td {
    padding: 16px 20px;
  }

  .prices__table td:first-child {
    font-size: 18px;
  }

  .prices__table td:last-child {
    font-size: 20px;
  }
}

.prices h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text-dark);
}


@media (max-width: 360px) {

  .hero-title-block h1,
  .hero-title {
    font-size: 28px;
  }
  .hero-image {
    height: 340px;}


}



.foundation-choice__icon {
  color: #7fc98a;
}



/* ───────── Как выбрать фундамент ───────── */
.foundation-choice {
  position: relative;
  margin-top: 120px;
  padding: 100px 0 90px;
  overflow: hidden;
  background: radial-gradient(circle at 8% 10%, rgba(91, 171, 105, .10), #98858561 28%), radial-gradient(circle at 92% 90%, rgb(78 247 107 / 8%), transparent 30%);
}

.foundation-choice__head {
  max-width: 850px;
  margin: 0 auto 52px;
  text-align: center;
}

.foundation-choice__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--c-accent);
}

.foundation-choice__eyebrow::before,
.foundation-choice__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .7;
}

.foundation-choice__head h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.05;
}

.foundation-choice__head p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: .76;
}

.foundation-choice__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.foundation-choice__card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  background: #253239;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.foundation-choice__card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 60px rgba(0,0,0,.20);
  border-color: rgba(91,171,105,.45);
}

.foundation-choice__media {
  position: relative;
  height: 205px;
  overflow: hidden;
  background: #1d282d;
}

.foundation-choice__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.03) 30%, rgba(15,25,29,.82) 100%);
  pointer-events: none;
}

.foundation-choice__media > img:first-child {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.foundation-choice__card:hover .foundation-choice__media > img:first-child {
  transform: scale(1.06);
}

.foundation-choice__number {
  position: absolute;
  z-index: 2;
  left: 18px;
  top: 16px;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  color: rgba(255,255,255,.72);
}

.foundation-choice__icon {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 16px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  background: var(--c-accent);
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  transition:
    transform .35s ease,
    background-color .35s ease,
    box-shadow .35s ease;
}

.foundation-choice__icon::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: #fff;

  -webkit-mask-image: var(--icon-url);
  mask-image: var(--icon-url);

  -webkit-mask-position: center;
  mask-position: center;

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-size: contain;
  mask-size: contain;
}

.foundation-choice__card:hover .foundation-choice__icon {
  transform: translateY(-3px) scale(1.05);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.foundation-choice__card:hover .foundation-choice__icon::before {
  background: var(--c-accent);
}

.foundation-choice__body {
  padding: 25px 25px 24px;
}

/* SVG иконки подключаются через CSS mask, поэтому цвет управляется CSS,
   даже если SVG лежит отдельным файлом и используется не inline. */

.foundation-choice__body h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
  line-height: 1.18;
}

.foundation-choice__body p {
  min-height: 88px;
  margin: 0;
  font-size: .94rem;
  line-height: 1.7;
  opacity: .72;
}

.foundation-choice__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 19px;
}

.foundation-choice__tags span {
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  font-size: .68rem;
  line-height: 1;
  color: rgba(255,255,255,.70);
  background: rgba(255,255,255,.045);
}

.foundation-choice__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding: 25px 28px;
  border: 1px solid rgba(91,171,105,.28);
  border-radius: 22px;
  background: rgba(91,171,105,.07);
}

.foundation-choice__bottom-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.foundation-choice__bottom-text strong {
  font-size: 1.05rem;
}

.foundation-choice__bottom-text span {
  font-size: .88rem;
  opacity: .68;
}

.foundation-choice__bottom .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 1000px) {
  .foundation-choice__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .foundation-choice {
    margin-top: 80px;
    padding: 70px 0 60px;
  }

  .foundation-choice__head {
    margin-bottom: 34px;
  }

  .foundation-choice__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .foundation-choice__media {
    height: 190px;
  }

  .foundation-choice__body p {
    min-height: 0;
  }

  .foundation-choice__bottom {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .foundation-choice__bottom .btn {
    width: 100%;
  }
}




.foundation-types {
  position: relative;
  margin-top: 120px;
  padding: 95px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(91,171,105,.10), transparent 27%),
    radial-gradient(circle at 92% 85%, rgba(91,171,105,.07), transparent 28%);
}

.foundation-types__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 45px;
}

.foundation-types__head > div { max-width: 850px; }

.foundation-types__eyebrow {
  margin-bottom: 12px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  color: var(--c-accent);
}

.foundation-types__head h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.06;
}

.foundation-types__head p {
  max-width: 780px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  opacity: .72;
}

.foundation-types__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.foundation-types__card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 23px;
  background: #253239;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.foundation-types__card:hover {
  transform: translateY(-7px);
  border-color: rgba(91,171,105,.42);
  box-shadow: 0 28px 60px rgba(0,0,0,.20);
}

.foundation-types__media {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #192429;
}

.foundation-types__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02) 35%, rgba(14,24,28,.78) 100%);
  pointer-events: none;
}

.foundation-types__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.foundation-types__card:hover .foundation-types__media img {
  transform: scale(1.06);
}

.foundation-types__number {
  position: absolute;
  z-index: 2;
  left: 17px;
  top: 14px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .15em;
  color: rgba(255,255,255,.75);
}

.foundation-types__label {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 15px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(18,28,32,.68);
  color: rgba(255,255,255,.82);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .09em;
  backdrop-filter: blur(9px);
}

.foundation-types__body {
  padding: 24px 24px 23px;
}

.foundation-types__body h3 {
  min-height: 48px;
  margin: 0 0 12px;
  font-size: 1.27rem;
  line-height: 1.18;
}

.foundation-types__price {
  margin-bottom: 13px;
  color: #f1dc00;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.foundation-types__price span {
  margin-right: 5px;
  font-size: .78rem;
  font-weight: 700;
}

.foundation-types__price small {
  margin-left: 4px;
  font-size: .65rem;
  font-weight: 700;
}

.foundation-types__body p {
  min-height: 91px;
  margin: 0 0 19px;
  font-size: .91rem;
  line-height: 1.65;
  opacity: .70;
}

.foundation-types__body .btn {
  min-height: 46px;
  font-size: .82rem;
}

.foundation-types__note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  padding: 20px 22px;
  border: 1px solid rgba(91,171,105,.25);
  border-radius: 20px;
  background: rgba(91,171,105,.065);
}

.foundation-types__note-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--c-accent);
  color: #fff;
  font-size: 1.05rem;
}

.foundation-types__note > div:nth-child(2) {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
}

.foundation-types__note strong { font-size: .98rem; }
.foundation-types__note span { font-size: .84rem; opacity: .65; }
.foundation-types__note .btn { flex: 0 0 auto; white-space: nowrap; }

@media (max-width: 1000px) {
  .foundation-types__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .foundation-types {
    margin-top: 80px;
    padding: 70px 0 60px;
  }

  .foundation-types__head {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .foundation-types__head .btn { width: 100%; }

  .foundation-types__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .foundation-types__media { height: 205px; }

  .foundation-types__body h3,
  .foundation-types__body p { min-height: 0; }

  .foundation-types__note {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .foundation-types__note > div:nth-child(2) {
    min-width: calc(100% - 64px);
  }

  .foundation-types__note .btn { width: 100%; }
}




/* ───────── Блок «Как выполняем работу» ───────── */
.foundation-services {
  position: relative;
  margin-top: 120px;
  overflow: hidden;
}

.foundation-services__head {
  max-width: 900px;
  margin: 0 auto 46px;
  text-align: center;
}

.foundation-services__head h2 {
  margin: 0 0 16px;
}

.foundation-services__head p {
  max-width: 760px;
  margin: 0 auto;
  opacity: .82;
  line-height: 1.7;
}

.foundation-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.foundation-service-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  background: #26343a;
  box-shadow: 0 18px 45px rgba(10,18,22,.13);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.foundation-service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255,255,255,.20);
  box-shadow: 0 24px 55px rgba(10,18,22,.20);
}

.foundation-service-card__image {
  position: relative;
  height: 205px;
  overflow: hidden;
  background: #34454b;
}

.foundation-service-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.foundation-service-card:hover .foundation-service-card__image img {
  transform: scale(1.045);
}

.foundation-service-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,25,29,.04) 30%, rgba(15,25,29,.55) 100%);
  pointer-events: none;
}

.foundation-service-card__number {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: rgba(22,34,39,.72);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.foundation-service-card__body {
  padding: 25px 25px 27px;
}

.foundation-service-card__body h3 {
  margin: 0 0 13px;
  font-size: 22px;
  line-height: 1.18;
}

.foundation-service-card__body h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 13px;
  background: rgba(255,255,255,.22);
}

.foundation-service-card__body p {
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 16px;
  line-height: 1.65;
}

.foundation-service-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 19px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.foundation-service-card__tag i {
  font-size: 11px;
}

.foundation-services__objects {
  display: grid;
  grid-template-columns: 1.05fr 1.95fr;
  align-items: center;
  gap: 32px;
  margin-top: 34px;
  padding: 30px 34px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
}

.foundation-services__objects h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.foundation-services__objects p {
  margin: 0;
  line-height: 1.7;
  opacity: .82;
}

.foundation-services__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.foundation-services__chip {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  font-size: 13px;
  line-height: 1.2;
}

.foundation-services__cta {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

@media (max-width: 1100px) {
  .foundation-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .foundation-services__objects {
    grid-template-columns: 1fr;
  }

  .foundation-services__chips {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .foundation-services {
    margin-top: 80px;
  }

  .foundation-services__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .foundation-service-card__image {
    height: 190px;
  }

  .foundation-service-card__body {
    padding: 22px 20px 24px;
  }

  .foundation-services__objects {
    padding: 24px 20px;
  }

  .foundation-services__cta .btn {
    width: 100%;
  }
}



.faq-q-title[role="button"] {
  cursor: pointer;
  outline: none;
}

.faq-q-title[role="button"]:focus-visible {
  outline: 2px solid var(--c-accent, #8fc8dc);
  outline-offset: 3px;
}
