:root {
  --accent: #2F7BEA;
  --accent-dark: #1E5EC0;
  --accent-soft: #EDF4FF;
  --navy: #111B2E;
  --navy-2: #1B263A;
  --text: #182131;
  --text2: #5D697D;
  --muted: #7A869B;
  --border: #DCE3EE;
  --bg: #ffffff;
  --bg-soft: #F3F5F9;
  --card: #ffffff;
  --dark-card: #0E1422;
  --radius: 22px;
  --shadow: 0 12px 32px rgba(18, 28, 45, .08);
  --shadow-strong: 0 24px 56px rgba(18, 28, 45, .14);
  --font: "Manrope", Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.logo__mark img {
  display: block;
  width: auto;
  height: 62px;
  object-fit: contain;
}

.logo__title {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .05em;
}

.logo__sub {
  font-size: 12px;
  color: var(--muted);
}

.badge {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 900;
  border: 1px solid rgba(47, 123, 234, .16);
}

.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 14px;
  color: var(--text2);
}

.nav a:hover {
  color: var(--navy);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__phone,
.phone-inline 
.footer__cta {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  padding: 9px 14px;
  border-radius: 15px;
  background: rgba(17, 27, 46, .04);
  border: 1px solid var(--border);
  transition: .15s ease;
}

.header__phone:hover,
.phone-inline:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.header__phoneMain {
  font-weight: 900;
  font-size: 14px;
}

.header__phoneHint {
  font-size: 11px;
  color: var(--muted);
}

.section {
  padding: 54px 0;
}

.section--soft {
  background: var(--bg-soft);
}

.section-head {
  margin-bottom: 22px;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 10px;
  color: var(--navy);
  line-height: 1.08;
}

h1 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 900;
}

h2 {
  font-size: clamp(28px, 3vw, 50px);
  font-weight: 900;
}

h3 {
  font-size: 22px;
  font-weight: 800;
}

p {
  margin: 0;
}

.muted {
  color: var(--muted);
  line-height: 1.6;
}

.small-note,
.hint,
.small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn--primary,
.btn--hero {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(47, 123, 234, .28);
}

.btn--primary:hover,
.btn--hero:hover {
  background: var(--accent-dark);
}

.btn--hero {
  width: 100%;
  max-width: 430px;
}

.btn--ghost {
  background: #fff;
  color: var(--navy);
}

.btn--ghost-dark {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .18);
}

.btn--ghost-dark:hover {
  background: rgba(255, 255, 255, .13);
}

.btn--full {
  width: 100%;
}

.hero-v2 {
  padding: 22px 0 36px;
  background: var(--bg-soft);
}

.hero-v2__shell {
  display: grid;
  grid-template-columns: 1.14fr .86fr;
  border-radius: 26px;
  overflow: hidden;
  background: #EEF1F5;
  box-shadow: var(--shadow-strong);
}

.hero-v2__content {
  background:
    radial-gradient(800px 400px at 30% 10%, rgba(47, 123, 234, .12), transparent 60%),
    linear-gradient(180deg, rgba(20, 27, 42, .98), rgba(8, 12, 20, .96));
  color: white;
  padding: 42px 30px 30px;
  position: relative;
}

.hero-v2__badge {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  font-weight: 700;
}

.hero-v2__lead {
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
  line-height: 1.55;
  max-width: 560px;
}

.hero-v2__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-v2__actions .btn {
  min-width: 300px;
  text-align: center;
}

.hero-v2__note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, .58);
}

.hero-v2__visual {
  position: relative;
  background: #D9DEE7;
  min-height: 610px;
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider__seal {
  position: absolute;
  left: -54px;
  bottom: 78px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  color: var(--navy);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow);
  transform: rotate(-8deg);
}

.hero-slider__seal strong {
  font-size: 48px;
  line-height: 1;
}

.hero-slider__seal span {
  margin-top: -10px;
  font-weight: 800;
  text-transform: lowercase;
}

.hero-slider__seal small {
  font-size: 12px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-slider__dots {
  position: absolute;
  right: 22px;
  bottom: 18px;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, .42);
  border: 0;
  border-radius: 999px;
}

.hero-dot.is-active {
  background: white;
}

.hero-v2__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.mini-benefit {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.mini-benefit strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.mini-benefit span {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 420px;
  border-radius: 22px;
  overflow: hidden;
  background: #ECEEF3;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card__text {
  padding: 28px 28px 0;
}

.service-card__text p {
  color: var(--text2);
  line-height: 1.5;
}

.service-card__price {
  display: inline-flex;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 12px;
  background: white;
  font-weight: 900;
}

.service-card__image {
  margin-top: auto;
  height: 185px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__image--contain img {
  object-fit: contain;
  background: #ECEEF3;
  padding: 18px;
}

.service-card--photo .service-card__text {
  padding-bottom: 18px;
}

.idea-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.idea-card {
  min-height: 300px;
  background: #ECEEF3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.idea-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.idea-card--text {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.idea-card--text p {
  color: var(--text2);
  line-height: 1.5;
}

.idea-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
}

.idea-card__cta span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.idea-card__cta strong {
  font-size: 18px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.project-card img {
  height: 280px;
  object-fit: cover;
}

.project-card__body {
  padding: 18px;
}

.project-card__body p {
  color: var(--text2);
  line-height: 1.55;
}

.catalog-cta {
  padding: 16px 0 10px;
}

.catalog-cta__card {
  background: linear-gradient(135deg, #15203A 0%, #203155 100%);
  color: white;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-strong);
}

.catalog-cta__card h2 {
  color: white;
  margin-bottom: 8px;
  font-size: clamp(26px, 3vw, 40px);
}

.catalog-cta__card p {
  color: rgba(255, 255, 255, .72);
  max-width: 780px;
  line-height: 1.6;
}

.catalog-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.card p {
  color: var(--text2);
  line-height: 1.6;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--text2);
}

.list li {
  margin: 7px 0;
}

.quiz-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}

.quiz-card,
.summary-card {
  padding: 24px;
}

.quiz-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.quiz-counter {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 900;
  font-size: 12px;
}

.quiz-progress {
  min-width: 210px;
}

.quiz-progress__meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--muted);
}

.quiz-progress__track {
  height: 8px;
  background: #E6EDF8;
  border-radius: 999px;
  overflow: hidden;
}

.quiz-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 999px;
}

.quiz-step {
  display: none;
}

.quiz-step.is-active {
  display: block;
}

.quiz-step h4 {
  font-size: 22px;
  margin-bottom: 16px;
}

.quiz-subgroup {
  margin-top: 18px;
}

.quiz-subgroup h5 {
  font-size: 16px;
  margin-bottom: 10px;
}

.option-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}

.option-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.option-card input,
.check-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card,
.check-item {
  position: relative;
  display: block;
}

.option-chip,
.check-item>span {
  display: flex;
  min-height: 88px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  transition: .15s ease;
  cursor: pointer;
}

.option-chip strong,
.check-item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.option-chip small,
.check-item small {
  display: block;
  color: var(--muted);
  line-height: 1.45;
}

.option-card.is-active .option-chip,
.check-item.is-active>span {
  border-color: rgba(47, 123, 234, .38);
  box-shadow: 0 0 0 4px rgba(47, 123, 234, .08);
  background: #F9FBFF;
}

.check-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}

.custom-size {
  display: none;
  margin-top: 14px;
}

.custom-size.is-visible {
  display: block;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
}

.summary-card {
  position: sticky;
  top: 86px;
}

.summary-card__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 900;
  font-size: 12px;
}

.summary-card__price {
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}

.summary-card__package {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.summary-card__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 6px;
}

.summary-card__packageName {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
}

.summary-card__listWrap {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.summary-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text2);
  line-height: 1.6;
}

.summary-card__actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.package-card {
  position: relative;
}

.package-card__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #EEF2F8;
  font-size: 12px;
  font-weight: 900;
  color: var(--text2);
}

.package-card__price {
  font-size: 32px;
  font-weight: 900;
  color: var(--navy);
  margin: 16px 0 14px;
}

.package-card--accent {
  border-color: rgba(47, 123, 234, .28);
  box-shadow: 0 0 0 4px rgba(47, 123, 234, .06), var(--shadow);
}

.package-card--accent .package-card__eyebrow {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.step-card span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.faq details {
  border-top: 1px solid var(--border);
  padding: 14px 0;
}

.faq details:first-of-type {
  border-top: 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--navy);
}

.faq summary::marker {
  color: var(--accent);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}

.contact-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-mini {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.contact-mini div {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 16px;
}

.contact-mini strong {
  display: block;
  margin-bottom: 4px;
}

.contact-mini span {
  color: var(--muted);
  line-height: 1.5;
}

form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-size: 15px;
  font: inherit;
  outline: none;
  transition: .15s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(47, 123, 234, .42);
  box-shadow: 0 0 0 4px rgba(47, 123, 234, .08);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.status {
  margin-top: 8px;
  font-weight: 800;
}

.hp {
  display: none;
}

.footer {
  padding-top: 20px;
}

.mobile-sticky {
  display: none;
}

@media (max-width: 1100px) {
  .video-grid {
    grid-auto-columns: calc((100% - 18px) / 2);
  }


  .hero-v2__shell,
  .quiz-layout,
  .contact-layout,
  .catalog-cta__card {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-v2__visual {
    min-height: 420px;
  }

  .hero-slider__seal {
    left: 16px;
    bottom: 16px;
    width: 102px;
    height: 102px;
  }

  .service-grid,
  .idea-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-grid,
  .steps-grid,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .summary-card {
    position: static;
  }
}

@media (max-width: 900px) {
  .video-reviews__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .video-reviews__controls {
    align-self: flex-end;
  }

  .nav {
    display: none;
  }

  .header__row {
    flex-wrap: wrap;
  }

  .header__cta {
    width: 100%;
  }

  .header__phone {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-v2__content {
    padding: 28px 20px 24px;
  }

  .hero-v2__lead {
    font-size: 17px;
  }

  .hero-v2__actions {
    flex-direction: column;
  }

  .hero-v2__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-v2__visual {
    min-height: 320px;
  }

  .hero-v2__benefits,
  .service-grid,
  .idea-grid,
  .project-grid,
  .steps-grid,
  .grid,
  .grid--4,
  .option-grid,
  .check-grid,
  .form__row {
    grid-template-columns: 1fr;
  }

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

  .quiz-top {
    flex-direction: column;
  }

  .quiz-progress {
    min-width: 0;
    width: 100%;
  }

  .service-card,
  .idea-card {
    min-height: auto;
  }

  .idea-card img {
    height: 250px;
    object-fit: cover;
  }

  .project-card img {
    height: 220px;
  }

  .mobile-sticky {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    position: sticky;
    bottom: 0;
    z-index: 40;
    padding: 10px;
    background: rgba(255, 255, 255, .95);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(8px);
  }

  .mobile-sticky a {
    display: grid;
    place-items: center;
    min-height: 44px;
    border-radius: 14px;
    background: var(--navy);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
  }
}


/* ===== current layout: cleaned and consolidated ===== */
:root {
  --font-display: "Onest", Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

body {
  font-family: var(--font);
}

h1,
h2 {
  letter-spacing: -0.045em;
}

h1,
h2,
h3,
h4,
h5,
.btn--hero,
.promo-banner__eyebrow,
.promo-timer__item strong,
.project-card__overlay h3,
.range-services__title,
.add-services__title,
.steps-section__head h2 {
  font-family: var(--font-display);
}

h1 {
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 800;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
}

/* hero */
.hero-v2__content {
  padding: 30px 32px 34px;
}

.hero-v2__content h1,
.hero-v2__content .hero-v2__lead,
.hero-v2__content .hero-v2__badge {
  color: #fff;
}

.hero-v2__content h1 {
  font-size: clamp(34px, 5.4vw, 54px);
  line-height: 1.02;
  max-width: 720px;
  margin: 0 0 16px;
}

.hero-v2__lead {
  max-width: 600px;
  font-size: 21px;
  line-height: 1.52;
  color: rgba(255, 255, 255, .82);
}

.hero-v2__badge {
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.hero-v2__visual {
  min-height: 620px;
}

.hero-slider__seal {
  display: none;
}

.btn--hero {
  font-size: 17px;
  padding: 0 24px;
  max-width: 360px;
  min-height: 58px;
  border-radius: 18px;
}

.hero-v2__benefits { 
  gap: 18px;
  align-items: stretch;
  margin-top: 18px;
}

.mini-benefit {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 156px;
  padding: 20px 22px;
}

.mini-benefit > div {
  min-width: 0;
}

.mini-benefit__icon {
  width: 92px;
  height: 92px;
  min-width: 92px;
  min-height: 92px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  justify-self: start;
  align-self: start;
  padding: 0;
  line-height: 0;
  overflow: hidden;
  color: var(--accent-dark);
  background: linear-gradient(180deg, #fff, #F5F8FF);
  border: 1px solid rgba(47, 123, 234, .12);
  box-shadow: 0 10px 22px rgba(19, 34, 59, .08);
}

.mini-benefit__icon svg {
  display: block;
  width: 68px;
  height: 68px;
  margin: 5px auto;
  min-width: 0;
  min-height: 0;
  flex: none;
  color: #2f7bea;
}

.mini-benefit--measure .mini-benefit__icon svg {
  width: 68px;
  height: 68px;
}

.mini-benefit--installment .mini-benefit__icon svg {
  width: 72px;
  height: 72px;
}

.mini-benefit--masters .mini-benefit__icon svg {
  width: 82px;
  height: 82px;
}

.mini-benefit strong {
  font-size: 16px;
  line-height: 1.28;
  margin-bottom: 6px;
}

.mini-benefit span {
  display: block;
  font-size: 16px;
  line-height: 1.48;
  color: var(--text2);
}

/* service range slider */
.range-services {
  margin-bottom: 0;
}

.range-services__top {
  margin-bottom: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.range-services__title {
  max-width: 700px;
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.06;
}

.range-services__arrows {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.arrows__arrow {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.arrows__arrow:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  border-color: rgba(47, 123, 234, .24);
}

.range-services__slider {
  overflow: hidden;
}

.range-services__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 60px) / 4);
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.range-services__track::-webkit-scrollbar {
  display: none;
}

.slide-range-services {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 350px;
  background: #f3f5f9;
  scroll-snap-align: start;
}

.slide-range-services__image {
  position: absolute;
  inset: 0;
}

.slide-range-services__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-range-services__content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.slide-range-services__title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: #14151c;
}

.slide-range-services__text {
  margin: 0 0 20px;
  max-width: 250px;
  font-size: 14px;
  line-height: 1.3;
  color: #6b6d74;
}

.slide-range-services__price {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .9);
  color: #14151c;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 8px 20px rgba(20, 21, 28, .08);
}

.slide-range-services:nth-child(1) {
  background: #F1EDF8;
}

.slide-range-services:nth-child(2) {
  background: #EAF0F6;
}

.slide-range-services:nth-child(3) {
  background: #EEF0EC;
}

.slide-range-services:nth-child(4) {
  background: #F3F0EA;
}

.slide-range-services:nth-child(1) .slide-range-services__image img {
  object-fit: contain;
  object-position: right bottom;
  padding: 42px 22px 0;
}

.slide-range-services:nth-child(2) .slide-range-services__image img,
.slide-range-services:nth-child(3) .slide-range-services__image img,
.slide-range-services:nth-child(4) .slide-range-services__image img {
  object-position: center bottom;
}

/* promo banner */
.promo-banner {
  padding: 18px 0 12px;
  background: var(--bg-soft);
}

.promo-banner__card {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: center;
  padding: 26px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, #10203b 0%, #19315c 100%);
  box-shadow: var(--shadow-strong);
  color: #fff;
}

.promo-banner__eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f1edf8;
  color: #2f7bea;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.promo-banner__content h2 {
  color: #fff;
  margin-bottom: 10px;
  max-width: 620px;
  line-height: 1.08;
  font-size: clamp(28px, 3.2vw, 36px);
}

.promo-banner__content p {
  color: rgba(255, 255, 255, .76);
  max-width: 520px;
  font-size: 17px;
  line-height: 1.6;
}

.promo-banner__side {
  display: grid;
  gap: 14px;
  align-items: center;
}

.promo-banner__actions {
  margin-top: 0;
  display: flex;
  justify-content: flex-start;
}

.promo-banner__timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.promo-timer__item {
  padding: 14px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
}

.promo-timer__item strong {
  display: block;
  color: #fff;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1;
}

.promo-timer__item span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

/* ideas + projects */
.idea-card {
  min-height: 380px;
  border-radius: 22px;
}

.idea-card--text {
  padding: 26px;
}

.idea-card--text h3 {
  font-size: 20px;
  line-height: 1.18;
  margin-bottom: 6px;
}

.idea-card--text p {
  font-size: 16px;
  line-height: 1.55;
}

.idea-card__actions {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 27, 46, .08);
  display: flex;
}

.idea-card__actions .btn {
  width: 100%;
}

.btn--small {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  font-size: 14px;
}

.project-grid--compact {
  grid-template-columns: repeat(4, 1fr);
}

.project-card--overlay {
  position: relative;
  min-height: 360px;
  border: none;
}

.project-card--overlay img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.project-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px;
  background: linear-gradient(180deg, rgba(11, 20, 34, 0) 0%, rgba(11, 20, 34, .82) 100%);
}

.project-card__overlay h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
}

.catalog-cover__book img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

/* additional services */
.add-services__top {
  margin-bottom: 35px;
}

.add-services__title {
  margin: 0 0 10px;
  max-width: 656px;
  font-size: clamp(30px, 4vw, 46px);
}

.add-services__subtitle {
  margin: 0;
  max-width: 700px;
  color: var(--text2);
  font-size: 18px;
  line-height: 1.4;
}

.add-services__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card-add-services {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 335px;
  border-radius: 10px;
  overflow: hidden;
  padding: 30px;
}

.card-add-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 21, 28, 0) 6%, #14151c 92%);
  z-index: 2;
}

.card-add-services__image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.card-add-services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-add-services__content {
  position: relative;
  z-index: 3;
  margin-top: auto;
}

.card-add-services__title {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
}

.ordering-balcony-style.order-btn {
  margin-top: auto;
  border-radius: 6px;
  padding: 10px;
  backdrop-filter: blur(11.6px);
  background-color: rgba(20, 21, 28, .44);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ordering-balcony-style .order-btn__title {
  margin: 0 0 10px;
  color: #b5b8c2;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: .01em;
}

.ordering-balcony-style .order-btn__price {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .01em;
}

.ordering-balcony-style .order-btn__price span:first-child,
.ordering-balcony-style .order-btn__price span:last-child {
  font-size: 20px;
}

.ordering-balcony-style .order-btn__price span:last-child {
  font-weight: 300;
}

.ordering-balcony-style .order-btn__btn {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #fff;
  flex: none;
  display: grid;
  place-items: center;
}

.ordering-balcony-style .order-btn__btn::before {
  content: "↗";
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
  transform: translateY(-1px);
}

/* steps */
.steps-section {
  padding-top: 56px;
}

.steps-section__head {
  margin-bottom: 34px;
}

.steps-section__head h2 {
  max-width: 860px;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.steps-section__head .muted {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text2);
}

.steps-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.steps-line::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 28px;
  border-top: 2px dashed #cbd5e5;
}

.steps-line__item {
  position: relative;
  display: flex;
  justify-content: flex-start;
}

.steps-line__icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(180deg, #27477d 0%, #111b2e 100%);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(17, 27, 46, .18);
}

.steps-line__icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.steps-grid--showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.step-card--showcase {
  min-height: 100%;
  padding: 18px 20px 18px;
  border-radius: 10px;
  background: #f4f6fa;
  border: 1px solid #e2e7f0;
  box-shadow: none;
}

.step-card--showcase .step-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #e8ebf2;
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 18px;
}

.step-card--showcase h3 {
  font-size: 20px;
  line-height: 1.24;
  margin-bottom: 14px;
}

.step-card--showcase p {
  color: var(--text2);
  font-size: 16px;
  line-height: 1.55;
}

.step-card__cta {
  margin-top: 24px;
  width: 100%;
  max-width: 168px;
  min-height: 50px;
  border-radius: 6px;
  font-size: 14px;
}

.step-card__contact {
  margin-top: 18px;
  color: var(--text2);
  font-size: 14px;
  line-height: 1.5;
}

.step-card__contact strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: .01em;
}

.step-card__list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.step-card__list li {
  position: relative;
  min-height: 32px;
  padding-left: 44px;
  color: var(--text2);
  font-size: 15px;
  line-height: 1.35;
  display: flex;
  align-items: center;
}

.step-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: #2f7bea;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
}

/* videos */
.video-reviews__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.video-reviews__controls {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.video-reviews__slider {
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.video-reviews__slider::-webkit-scrollbar {
  display: none;
}

.video-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  align-items: start;
}

.video-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 20px;
  overflow: visible;
  scroll-snap-align: start;
}

.video-card::after {
  content: none;
}

.video-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.video-card__quote {
  position: relative;
  z-index: 2;
  margin: -42px 16px 0;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(17, 27, 46, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(6, 11, 20, 0.18);
}

.video-card__quote p {
  color: rgba(255, 255, 255, 0.96);
  font-size: 15px;
  line-height: 1.5;
}

.video-card__quote span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* footer */
.site-footer {
  background: #111B2E;
  color: #fff;
  padding: 28px 0;
  margin-top: 28px;
}

.site-footer__shell {
  padding: 0;
  background: transparent;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
}

.site-footer__main {
  display: grid;
  gap: 22px;
}

.site-footer__brand {
  margin: 0;
}

.logo--footer .logo__title,
.logo--footer .logo__sub {
  color: #fff;
}

.logo--footer .logo__sub {
  color: rgba(255, 255, 255, .68);
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  column-gap: 28px;
  row-gap: 10px;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
}

.site-footer__nav a:hover {
  color: #fff;
}

.site-footer__aside {
  display: grid;
  gap: 20px;
  justify-items: start;
}

.site-footer__work {
  color: rgba(255, 255, 255, .84);
}

.site-footer__work h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
}

.site-footer__work p {
  margin: 0 0 6px;
  line-height: 1.5;
}

.site-footer__cities {
  margin-top: 10px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.5;
}

.site-footer__contacts {
  display: grid;
  gap: 14px;
}

.footer-phone {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
  font-weight: 800;
}

.footer-phone__hint {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  font-weight: 600;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .04);
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

/* responsive */
@media (max-width: 1180px) {
  .range-services__track {
    grid-auto-columns: calc((100% - 20px) / 2);
  }

  .add-services__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) {
  .hero-v2__content h1 {
    font-size: clamp(36px, 5vw, 48px);
  }

  .project-grid--compact,
  .steps-grid--showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-line::before {
    display: none;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }
}

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

  .hero-v2__visual {
    min-height: 420px;
    order: -1;
  }

  .hero-v2__content {
    padding: 28px 20px 26px;
  }

  .hero-v2__content h1 {
    font-size: 34px;
  }

  .hero-v2__lead {
    font-size: 18px;
  }

  .btn--hero {
    max-width: none;
  }

  .hero-v2__benefits,
  .project-grid--compact,
  .idea-grid,
  .steps-grid--showcase,
  .steps-line {
    grid-template-columns: 1fr;
  }

  .mini-benefit {
    grid-template-columns: 92px 1fr;
    min-height: auto;
  }

  .range-services__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .range-services__arrows {
    align-self: flex-end;
  }

  .range-services__track {
    grid-auto-columns: minmax(0, calc((100% - 20px) / 2));
  }

  .promo-banner__card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .promo-banner__content h2 {
    font-size: 30px;
  }

  .promo-banner__timer {
    grid-template-columns: repeat(3, 1fr);
  }

  .promo-banner__actions {
    justify-content: center;
    margin-top: 20px;
  }

  .idea-grid > :nth-child(1) {
    order: 2;
  }

  .idea-grid > :nth-child(2) {
    order: 1;
  }

  .idea-grid > :nth-child(3) {
    order: 4;
  }

  .idea-grid > :nth-child(4) {
    order: 3;
  }

  .steps-line {
    display: none;
  }

  .idea-card {
    min-height: auto;
  }

  .idea-card--text {
    display: block;
    min-height: auto;
    padding: 20px;
  }

  .idea-card__actions {
    margin-top: 16px;
    padding-top: 12px;
  }

  .idea-card img {
    height: 300px;
    object-fit: cover;
  }

  .video-grid {
    grid-auto-columns: 100%;
  }

  .add-services__cards {
    grid-template-columns: 1fr;
  }

  .catalog-cta__card {
    flex-direction: column;
    align-items: flex-start;
  }

  .catalog-cover__book img {
    width: 180px;
    height: 240px;
  }

  .site-footer__nav {
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
  }
}

@media (max-width: 640px) {
  .range-services__track {
    grid-auto-columns: 100%;
    gap: 16px;
  }

  .video-grid {
    grid-auto-columns: 100%;
    gap: 16px;
  }

  .add-services__cards,
  .site-footer__nav {
    grid-template-columns: 1fr;
  }

  .slide-range-services {
    min-height: 404px;
  }

  .slide-range-services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .96) 42%, rgba(255, 255, 255, .72) 62%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
  }

  .slide-range-services__image {
    inset: 116px 0 0 0;
  }

  .slide-range-services:nth-child(1) .slide-range-services__image img {
    padding: 18px 16px 0;
    object-position: right bottom;
  }

  .slide-range-services__content {
    padding: 20px 20px 22px;
    justify-content: flex-start;
  }

  .slide-range-services__title {
    font-size: 26px;
    line-height: 1.1;
    margin-bottom: 10px;
    max-width: 300px;
  }

  .slide-range-services__text {
    font-size: 16px;
    line-height: 1.4;
    color: #465269;
    max-width: 300px;
    margin-bottom: 18px;
  }

  .slide-range-services__price {
    margin-top: 0;
    font-size: 14px;
  }

  .promo-banner__card {
    padding: 18px;
    border-radius: 22px;
  }

  .promo-banner__timer {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .promo-banner__timer .promo-timer__item:last-child {
    display: none;
  }

  .promo-timer__item {
    padding: 12px 8px;
    border-radius: 14px;
  }

  .promo-timer__item strong {
    font-size: 30px;
  }

  .idea-grid {
    gap: 14px;
  }

  .idea-card {
    min-height: auto;
    border-radius: 20px;
  }

  .idea-card--text {
    padding: 18px 18px 16px;
  }

  .idea-card--text h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .idea-card--text p {
    font-size: 15px;
    line-height: 1.5;
  }

  .idea-card__actions {
    margin-top: 14px;
    padding-top: 12px;
  }

  .idea-card__actions .btn {
    min-height: 44px;
  }

  .idea-card img {
    height: 330px;
  }

  .video-reviews__slider {
    overflow-x: auto;
  }

  .video-card img {
    height: 360px;
  }

  .video-card__quote {
    margin: -34px 12px 0;
    padding: 14px 16px;
  }
  
}

.lead-form-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.lead-form-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.lead-form-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lead-form-card__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
}

.lead-form-card__content h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
}

.lead-form-card__content .muted {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text2);
}

.lead-form-card__form {
  display: flex;
  align-items: center;
}

.lead-form-card__form form {
  width: 100%;
  display: grid;
  gap: 14px;
}

.lead-form-card__row {
  grid-template-columns: 1fr 1fr;
}

.lead-form-card__agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.45;
}

.lead-form-card__agree input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: none;
}

.lead-form-card__agree span {
  display: block;
}

.lead-form-card__submit {
  min-height: 56px;
}

@media (max-width: 900px) {
  .lead-form-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .lead-form-card__row {
    grid-template-columns: 1fr;
  }

  .lead-form-card__content h2 {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .lead-form-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .lead-form-card {
    padding: 18px;
    border-radius: 20px;
  }

  .lead-form-card__content h2 {
    font-size: 26px;
  }

  .lead-form-card__content .muted {
    font-size: 15px;
  }
}

/* portfolio slider */
.portfolio-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.portfolio-controls {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.portfolio-slider {
  overflow: hidden;
}

.portfolio-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.portfolio-track::-webkit-scrollbar {
  display: none;
}

.portfolio-slide {
  scroll-snap-align: start;
}

.portfolio-slide.project-card--overlay {
  min-height: 360px;
}

.portfolio-slide.project-card--overlay img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .portfolio-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }
}

@media (max-width: 900px) {
  .portfolio-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .portfolio-controls {
    align-self: flex-end;
  }

  .portfolio-track {
    grid-auto-columns: 100%;
  }
}

@media (max-width: 640px) {
  .header__row > .logo {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .header__row > .logo .logo__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .header__row > .logo .logo__sub {
    max-width: 300px;
  }

  .header__row > .logo .logo__mark img {
    height: 54px;
  }

  .portfolio-track {
    gap: 16px;
  }

  .portfolio-slide.project-card--overlay,
  .portfolio-slide.project-card--overlay img {
    min-height: 320px;
  }
}