/* =========================================================
   ОБЩИЕ СТИЛИ САЙТА «ИМПУЛЬС»
   Подключить до CSS остальных блоков.
   ========================================================= */

.impulse-site {
  --impulse-ink: #11181d;
  --impulse-ink-2: #19252c;
  --impulse-steel: #35454e;
  --impulse-muted: #66747b;
  --impulse-line: #d8dee0;
  --impulse-paper: #f3f4f1;
  --impulse-warm: #f6f1ea;
  --impulse-white: #ffffff;
  --impulse-orange: #ff6b2c;
  --impulse-orange-dark: #dc4e14;
  --impulse-blue: #1f5068;

  margin: 0;
  background: var(--impulse-white);
  color: var(--impulse-ink);
  font-family: Arial, Helvetica, sans-serif;
}

.impulse-site,
.impulse-site * {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.impulse-site button,
.impulse-site input,
.impulse-site select,
.impulse-site textarea {
  font: inherit;
}

.impulse-site button,
.impulse-site a {
  -webkit-tap-highlight-color: transparent;
}

.impulse-site button {
  cursor: pointer;
}

.impulse-section {
  padding: clamp(80px, 8vw, 126px) clamp(24px, 6.5vw, 104px);
}

.impulse-kicker,
.impulse-eyebrow {
  margin: 0;
  color: var(--impulse-orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.impulse-kicker--light {
  color: #ff8d5d;
}

.impulse-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  transition: 180ms ease;
}

.impulse-button--primary {
  background: var(--impulse-orange);
  color: var(--impulse-white);
}

.impulse-button--primary:hover {
  background: var(--impulse-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 107, 44, .2);
}

.impulse-button--outline-light {
  border-color: rgba(255, 255, 255, .48);
  background: transparent;
  color: var(--impulse-white);
}

.impulse-button--outline-light:hover {
  background: var(--impulse-white);
  color: var(--impulse-ink);
}

.impulse-button--dark {
  background: var(--impulse-ink);
  color: var(--impulse-white);
}

.impulse-section-intro {
  display: grid;
  grid-template-columns: 52px minmax(0, 1.25fr) minmax(270px, .62fr);
  gap: clamp(25px, 4vw, 64px);
  align-items: end;
}

.impulse-section-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--impulse-orange);
  border-radius: 50%;
  color: var(--impulse-orange-dark);
  font-size: 11px;
  font-weight: 900;
}

.impulse-section-intro h2,
.impulse-decision-copy h2,
.impulse-delivery h2,
.impulse-faq-heading h2,
.impulse-lead-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(38px, 4.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -.048em;
  font-weight: 720;
}

.impulse-section-intro > p {
  margin: 0;
  color: var(--impulse-muted);
  font-size: 17px;
  line-height: 1.58;
}

.impulse-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--impulse-ink);
  text-decoration: none;
}

.impulse-brand > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.impulse-brand strong {
  font-size: 24px;
  line-height: 1;
  letter-spacing: .08em;
}

.impulse-brand small {
  color: var(--impulse-muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .22em;
}

.impulse-brand-mark {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  gap: 3px;
  transform: skewX(-13deg);
}

.impulse-brand-mark i {
  width: 8px;
  display: block;
  background: var(--impulse-orange);
}

.impulse-brand-mark i:nth-child(1) { height: 16px; }
.impulse-brand-mark i:nth-child(2) { height: 25px; }
.impulse-brand-mark i:nth-child(3) { height: 35px; }

.impulse-hidden {
  display: none !important;
}

@media (max-width: 820px) {
  .impulse-section {
    padding: 75px 22px;
  }

  .impulse-section-intro {
    grid-template-columns: 42px 1fr;
    align-items: start;
  }

  .impulse-section-intro > p {
    grid-column: 2;
  }

  .impulse-section-intro h2,
  .impulse-decision-copy h2,
  .impulse-delivery h2,
  .impulse-faq-heading h2,
  .impulse-lead-copy h2 {
    font-size: 41px;
  }
}

@media (max-width: 520px) {
  .impulse-section-intro h2,
  .impulse-decision-copy h2,
  .impulse-delivery h2,
  .impulse-faq-heading h2,
  .impulse-lead-copy h2 {
    font-size: 37px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .impulse-site * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: .01ms !important;
  }
}
/* CSS БЛОКА */

.impulse-header {
  min-height: 86px;
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(245px, 1fr) auto minmax(270px, 1fr);
  align-items: center;
  gap: 30px;
  padding: 0 clamp(24px, 4.5vw, 74px);
  background: var(--impulse-white);
  border-bottom: 1px solid var(--impulse-line);
}

.impulse-header .impulse-brand {
  justify-self: start;
}

.impulse-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 42px);
}

.impulse-nav button {
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: #3d494f;
  font-size: 13px;
  font-weight: 800;
}

.impulse-nav button:hover {
  color: var(--impulse-orange-dark);
}

.impulse-menu-toggle {
  display: none;
}

.impulse-header-contact {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 19px;
}

.impulse-header-contact > a {
  color: var(--impulse-ink);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.impulse-header-contact > button {
  min-height: 45px;
  padding: 0 18px;
  border: 1px solid var(--impulse-ink);
  background: transparent;
  color: var(--impulse-ink);
  font-size: 12px;
  font-weight: 850;
}

.impulse-header-contact > button:hover {
  border-color: var(--impulse-orange);
  background: var(--impulse-orange);
  color: var(--impulse-white);
}

.impulse-header-contact > button span {
  margin-left: 18px;
}

@media (max-width: 1180px) {
  .impulse-header {
    grid-template-columns: minmax(210px, 1fr) auto minmax(205px, 1fr);
    gap: 18px;
  }

  .impulse-nav {
    gap: 18px;
  }

  .impulse-header-contact > a {
    display: none;
  }
}

@media (max-width: 820px) {
  .impulse-header {
    min-height: 74px;
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .impulse-header .impulse-brand strong {
    font-size: 21px;
  }

  .impulse-header .impulse-brand-mark {
    width: 30px;
    height: 30px;
  }

  .impulse-header .impulse-brand-mark i:nth-child(1) { height: 14px; }
  .impulse-header .impulse-brand-mark i:nth-child(2) { height: 21px; }
  .impulse-header .impulse-brand-mark i:nth-child(3) { height: 30px; }

  .impulse-header-contact {
    display: none;
  }

  .impulse-menu-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 0 8px;
    border: 0;
    background: transparent;
  }

  .impulse-menu-toggle span {
    height: 2px;
    display: block;
    background: var(--impulse-ink);
  }

  .impulse-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    padding: 22px;
    background: var(--impulse-white);
    border-top: 1px solid var(--impulse-line);
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 18px 40px rgba(17, 24, 29, .12);
  }

  .impulse-nav.is-open {
    display: flex;
  }

  .impulse-nav button {
    font-size: 17px;
  }
}

/* CSS БЛОКА */

.impulse-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  grid-template-rows: minmax(660px, calc(100vh - 86px)) auto;
  overflow: hidden;
  background: var(--impulse-ink);
}

.impulse-hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(65px, 8vw, 118px) clamp(24px, 6.5vw, 104px);
  color: var(--impulse-white);
}

.impulse-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.impulse-eyebrow span {
  font-size: 9px;
}

.impulse-hero h1 {
  max-width: 850px;
  margin: 26px 0 0;
  font-size: clamp(48px, 5.25vw, 84px);
  line-height: .99;
  letter-spacing: -.055em;
  font-weight: 760;
}

.impulse-hero-lead {
  max-width: 740px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
}

.impulse-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.impulse-hero-note {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .47);
  font-size: 11px;
  line-height: 1.45;
}

.impulse-hero-visual {
  min-width: 0;
  position: relative;
  overflow: hidden;
  background: var(--impulse-warm);
}

.impulse-hero-visual img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
  object-position: 55% center;
  animation: impulse-hero-breathe 12s ease-in-out infinite alternate;
}

.impulse-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 29, .18), transparent 28%),
    linear-gradient(0deg, rgba(17, 24, 29, .45), transparent 34%);
}

.impulse-hero-visual-label {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  color: var(--impulse-white);
}

.impulse-hero-visual-label span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
}

.impulse-hero-visual-label strong {
  font-size: 17px;
  line-height: 1.35;
  text-align: right;
}

.impulse-hero-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #0d1317;
  color: var(--impulse-white);
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.impulse-hero-metrics div {
  min-height: 105px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px clamp(22px, 4vw, 62px);
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.impulse-hero-metrics div:last-child {
  border-right: 0;
}

.impulse-hero-metrics strong {
  font-size: 25px;
  letter-spacing: -.04em;
}

.impulse-hero-metrics span {
  margin-top: 6px;
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
  line-height: 1.35;
}

@keyframes impulse-hero-breathe {
  from { transform: scale(1.01); }
  to { transform: scale(1.045); }
}

@media (max-width: 1180px) {
  .impulse-hero {
    grid-template-rows: minmax(610px, calc(100vh - 86px)) auto;
  }
}

@media (max-width: 820px) {
  .impulse-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 410px auto;
  }

  .impulse-hero-copy {
    padding: 70px 22px 54px;
  }

  .impulse-hero h1 {
    font-size: clamp(43px, 12vw, 64px);
  }

  .impulse-hero-lead {
    font-size: 18px;
  }

  .impulse-hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .impulse-hero-actions .impulse-button {
    width: 100%;
  }

  .impulse-hero-visual {
    min-height: 410px;
  }

  .impulse-hero-visual img {
    object-position: 64% center;
  }

  .impulse-hero-visual-label {
    left: 22px;
    right: 22px;
  }

  .impulse-hero-metrics {
    grid-column: 1;
    grid-template-columns: 1fr 1fr;
  }

  .impulse-hero-metrics div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }
}

@media (max-width: 520px) {
  .impulse-eyebrow {
    font-size: 9px;
  }

  .impulse-hero h1 {
    font-size: 42px;
  }

  .impulse-hero-visual {
    min-height: 330px;
  }

  .impulse-hero-visual-label strong {
    display: none;
  }

  .impulse-hero-metrics div {
    min-height: 92px;
    padding: 18px;
  }
}

/* CSS БЛОКА */

.impulse-products {
  background: var(--impulse-paper);
}

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

.impulse-product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--impulse-white);
  border: 1px solid var(--impulse-line);
  transition: 180ms ease;
}

.impulse-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(17, 24, 29, .1);
}

.impulse-product-visual {
  height: 255px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 40px;
  overflow: hidden;
  background: var(--impulse-ink-2);
}

.impulse-product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 25px 25px;
}

.impulse-product-visual > span {
  position: relative;
  z-index: 1;
  height: 22px;
  display: block;
  background: linear-gradient(180deg, #87949a, #3d4a50 70%);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 7px 0 #121b20;
}

.impulse-visual-z > span {
  transform: skewY(-5deg);
}

.impulse-visual-l > span {
  height: 15px;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 5px 0 #142027;
}

.impulse-visual-ranch {
  gap: 22px;
}

.impulse-visual-ranch > span {
  height: 18px;
  box-shadow: none;
}

.impulse-product-visual b {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 6px;
  color: rgba(255, 255, 255, .1);
  font-size: 92px;
  line-height: 1;
}

.impulse-product-copy {
  min-height: 385px;
  display: flex;
  flex-direction: column;
  padding: 29px;
}

.impulse-product-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.impulse-product-top p {
  margin: 0;
  color: var(--impulse-orange-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.impulse-product-top span {
  color: #a5afb3;
  font-size: 11px;
  font-weight: 900;
}

.impulse-product-copy h3 {
  margin: 18px 0 0;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.impulse-product-copy > p {
  margin: 15px 0 0;
  color: var(--impulse-muted);
  line-height: 1.55;
}

.impulse-fact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.impulse-fact-row span {
  padding: 7px 9px;
  background: var(--impulse-paper);
  border: 1px solid var(--impulse-line);
  color: #526068;
  font-size: 10px;
  font-weight: 750;
}

.impulse-text-cta {
  margin-top: auto;
  padding: 27px 0 0;
  border: 0;
  background: transparent;
  color: var(--impulse-ink);
  font-size: 13px;
  font-weight: 900;
  align-self: flex-start;
}

.impulse-text-cta span {
  margin-left: 20px;
  color: var(--impulse-orange-dark);
}

.impulse-text-cta:hover {
  color: var(--impulse-orange-dark);
}

.impulse-product-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  margin-top: 16px;
  background: var(--impulse-line);
  border: 1px solid var(--impulse-line);
}

.impulse-product-facts span {
  flex: 1 1 220px;
  padding: 18px 20px;
  background: var(--impulse-white);
  color: #4d5c63;
  font-size: 11px;
  text-align: center;
}

@media (max-width: 1180px) {
  .impulse-product-grid {
    grid-template-columns: 1fr;
  }

  .impulse-product-card {
    display: grid;
    grid-template-columns: minmax(320px, .78fr) 1.22fr;
  }

  .impulse-product-visual {
    height: 100%;
    min-height: 335px;
  }

  .impulse-product-copy {
    min-height: 335px;
  }
}

@media (max-width: 820px) {
  .impulse-product-card {
    grid-template-columns: 1fr;
  }

  .impulse-product-visual {
    height: 255px;
    min-height: 255px;
  }

  .impulse-product-copy {
    min-height: 380px;
  }
}

@media (max-width: 520px) {
  .impulse-product-visual {
    height: 225px;
    min-height: 225px;
    padding: 30px;
  }

  .impulse-product-copy {
    min-height: 400px;
    padding: 25px 22px;
  }
}

/* CSS БЛОКА */

.impulse-decision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--impulse-ink);
  color: var(--impulse-white);
}

.impulse-decision-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(70px, 8vw, 130px) clamp(24px, 7vw, 110px);
}

.impulse-decision-copy > p:not(.impulse-kicker) {
  max-width: 680px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 18px;
  line-height: 1.62;
}

.impulse-decision-copy .impulse-button {
  margin-top: 34px;
}

.impulse-factor-list {
  border-left: 1px solid rgba(255, 255, 255, .15);
}

.impulse-factor-list article {
  min-height: 170px;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 25px;
  padding: 31px clamp(28px, 5vw, 75px);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  align-items: center;
}

.impulse-factor-list article:last-child {
  border-bottom: 0;
}

.impulse-factor-list article > span {
  color: #ff8a58;
  font-size: 11px;
  font-weight: 900;
}

.impulse-factor-list h3 {
  margin: 0;
  font-size: 23px;
}

.impulse-factor-list p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .54);
  line-height: 1.5;
}

@media (max-width: 820px) {
  .impulse-decision {
    grid-template-columns: 1fr;
  }

  .impulse-factor-list {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
  }
}

@media (max-width: 520px) {
  .impulse-decision-copy {
    padding: 72px 22px;
  }

  .impulse-factor-list article {
    padding: 28px 22px;
  }
}

/* CSS БЛОКА */

.impulse-factory {
  background: var(--impulse-warm);
}

.impulse-factory-stage {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  margin-top: 55px;
  background: var(--impulse-ink-2);
}

.impulse-factory-image {
  min-height: 610px;
  position: relative;
  overflow: hidden;
}

.impulse-factory-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(.66);
}

.impulse-factory-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 24, 29, .6), transparent 55%);
}

.impulse-factory-image > span {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 26px;
  padding: 9px 12px;
  background: rgba(17, 24, 29, .84);
  color: var(--impulse-white);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}

.impulse-factory-proofs {
  align-self: center;
  padding: clamp(35px, 5vw, 70px);
  color: var(--impulse-white);
}

.impulse-factory-proofs article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.impulse-factory-proofs article:last-child {
  border-bottom: 0;
}

.impulse-factory-proofs article > span {
  color: #ff8a58;
  font-size: 11px;
  font-weight: 900;
}

.impulse-factory-proofs h3 {
  margin: 0;
  font-size: 22px;
}

.impulse-factory-proofs p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .55);
  line-height: 1.5;
}

@media (max-width: 820px) {
  .impulse-factory-stage {
    grid-template-columns: 1fr;
  }

  .impulse-factory-image {
    min-height: 440px;
  }
}

@media (max-width: 520px) {
  .impulse-factory-image {
    min-height: 330px;
  }

  .impulse-factory-proofs {
    padding: 32px 22px;
  }
}
/* CSS БЛОКА */

.impulse-order {
  background: var(--impulse-white);
}

.impulse-order-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  border-top: 1px solid #cbd2d4;
  border-bottom: 1px solid #cbd2d4;
}

.impulse-order-grid article {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid #cbd2d4;
}

.impulse-order-grid article:last-child {
  border-right: 0;
}

.impulse-order-grid article > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--impulse-paper);
  color: var(--impulse-orange-dark);
  font-size: 11px;
  font-weight: 900;
}

.impulse-order-grid article > div {
  margin-top: auto;
}

.impulse-order-grid h3 {
  margin: 0;
  font-size: 24px;
}

.impulse-order-grid p {
  margin: 12px 0 0;
  color: var(--impulse-muted);
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .impulse-order-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impulse-order-grid article:nth-child(-n+2) {
    border-bottom: 1px solid #cbd2d4;
  }

  .impulse-order-grid article:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 520px) {
  .impulse-order-grid {
    grid-template-columns: 1fr;
  }

  .impulse-order-grid article {
    min-height: 235px;
    border-right: 0;
    border-bottom: 1px solid #cbd2d4;
  }

  .impulse-order-grid article:last-child {
    border-bottom: 0;
  }
}

/* CSS БЛОКА */

.impulse-delivery {
  display: grid;
  grid-template-columns: 1fr 1.05fr auto;
  gap: clamp(30px, 5vw, 75px);
  align-items: center;
  padding: clamp(55px, 6vw, 90px) clamp(24px, 6.5vw, 104px);
  background: var(--impulse-blue);
  color: var(--impulse-white);
}

.impulse-delivery h2 {
  font-size: clamp(34px, 3vw, 50px);
}

.impulse-delivery-points {
  display: grid;
  gap: 22px;
}

.impulse-delivery-points p {
  margin: 0;
  display: grid;
  gap: 7px;
}

.impulse-delivery-points strong {
  font-size: 16px;
}

.impulse-delivery-points span {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.5;
}

.impulse-delivery .impulse-button {
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .impulse-delivery {
    grid-template-columns: 1fr 1fr;
  }

  .impulse-delivery .impulse-button {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .impulse-delivery {
    grid-template-columns: 1fr;
  }
}

/* CSS БЛОКА */

.impulse-faq {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(55px, 9vw, 150px);
  background: var(--impulse-paper);
}

.impulse-faq-heading h2 {
  max-width: 580px;
}

.impulse-faq-heading > p:not(.impulse-kicker) {
  max-width: 430px;
  color: var(--impulse-muted);
  line-height: 1.55;
}

.impulse-phone-card {
  max-width: 330px;
  margin-top: 34px;
  padding: 21px 22px;
  display: grid;
  gap: 7px;
  border: 1px solid var(--impulse-line);
  background: var(--impulse-white);
  color: var(--impulse-ink);
  text-decoration: none;
}

.impulse-phone-card span {
  color: var(--impulse-muted);
  font-size: 10px;
}

.impulse-phone-card strong {
  font-size: 19px;
}

.impulse-faq-list {
  border-top: 1px solid var(--impulse-line);
}

.impulse-faq-item {
  border-bottom: 1px solid var(--impulse-line);
}

.impulse-faq-item button {
  width: 100%;
  display: grid;
  grid-template-columns: 34px 1fr 30px;
  gap: 15px;
  align-items: center;
  padding: 22px 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--impulse-ink);
}

.impulse-faq-item button > span {
  color: var(--impulse-orange-dark);
  font-size: 10px;
  font-weight: 900;
}

.impulse-faq-item button strong {
  font-size: 16px;
  line-height: 1.4;
}

.impulse-faq-item button i {
  color: var(--impulse-blue);
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
}

.impulse-faq-item > p {
  margin: -3px 45px 24px 49px;
  color: var(--impulse-muted);
  line-height: 1.62;
}

@media (max-width: 820px) {
  .impulse-faq {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 520px) {
  .impulse-faq-item button {
    grid-template-columns: 28px 1fr 24px;
    gap: 9px;
  }

  .impulse-faq-item > p {
    margin-left: 37px;
    margin-right: 24px;
  }
}
/* CSS БЛОКА */

.impulse-lead {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(50px, 8vw, 125px);
  background: var(--impulse-ink-2);
  color: var(--impulse-white);
}

.impulse-lead-copy {
  align-self: center;
}

.impulse-lead-copy > p:not(.impulse-kicker) {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .61);
  font-size: 18px;
  line-height: 1.6;
}

.impulse-lead-points {
  display: grid;
  gap: 12px;
  margin-top: 31px;
}

.impulse-lead-points span {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.impulse-lead-points span::before {
  content: "✓";
  margin-right: 12px;
  color: #ff8a58;
  font-weight: 900;
}

.impulse-lead-phone {
  margin-top: 36px;
  display: grid;
  gap: 6px;
  color: var(--impulse-white);
  text-decoration: none;
}

.impulse-lead-phone small {
  color: rgba(255, 255, 255, .46);
}

.impulse-lead-phone strong {
  font-size: 22px;
}

.impulse-lead-form {
  min-height: 550px;
  padding: clamp(28px, 4.5vw, 58px);
  background: var(--impulse-white);
  color: var(--impulse-ink);
}

.impulse-form-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 34px;
  color: #a0aaae;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.impulse-form-progress span.is-active,
.impulse-form-progress span.is-done {
  color: var(--impulse-ink);
}

.impulse-form-progress span.is-done::after {
  content: " ✓";
  color: var(--impulse-orange-dark);
}

.impulse-form-progress i {
  height: 1px;
  background: var(--impulse-line);
}

.impulse-form-step {
  display: grid;
  gap: 19px;
}

.impulse-form-step label {
  display: grid;
  gap: 8px;
  color: #45535a;
  font-size: 11px;
  font-weight: 800;
}

.impulse-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.impulse-form-step input,
.impulse-form-step select,
.impulse-form-step textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #ccd4d7;
  border-radius: 0;
  outline: none;
  background: #fbfcfb;
  color: var(--impulse-ink);
}

.impulse-form-step input:focus,
.impulse-form-step select:focus,
.impulse-form-step textarea:focus {
  border-color: var(--impulse-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 44, .1);
}

.impulse-form-step textarea {
  resize: vertical;
}

.impulse-form-button {
  width: 100%;
}

.impulse-back-link {
  justify-self: start;
  padding: 0 0 4px;
  border: 0;
  background: transparent;
  color: var(--impulse-blue);
  font-size: 11px;
  font-weight: 800;
}

.impulse-form-legal {
  margin: 0;
  color: #929ca1;
  font-size: 9px;
  line-height: 1.45;
}

.impulse-success-state {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.impulse-success-state > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7f2e8;
  color: #2f6a42;
  font-size: 25px;
}

.impulse-success-state .impulse-kicker {
  margin-top: 27px;
}

.impulse-success-state h3 {
  margin: 14px 0 0;
  font-size: 34px;
  line-height: 1.1;
}

.impulse-success-state > p:not(.impulse-kicker) {
  color: var(--impulse-muted);
  line-height: 1.55;
}

.impulse-success-state .impulse-button {
  margin-top: 18px;
}

@media (max-width: 820px) {
  .impulse-lead {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .impulse-lead-form {
    min-height: 0;
    padding: 34px 23px;
  }
}

@media (max-width: 520px) {
  .impulse-field-row {
    grid-template-columns: 1fr;
  }
}

/* CSS БЛОКА */

.impulse-footer {
  display: grid;
  grid-template-columns: 1.05fr 1fr auto auto;
  gap: 45px;
  align-items: center;
  padding: 58px clamp(24px, 6.5vw, 104px) 24px;
  background: #0d1317;
  color: rgba(255, 255, 255, .55);
}

.impulse-footer-brand {
  color: var(--impulse-white);
}

.impulse-footer > p {
  max-width: 450px;
  margin: 0;
  line-height: 1.5;
}

.impulse-footer-nav {
  display: flex;
  gap: 22px;
}

.impulse-footer-nav button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
}

.impulse-footer-nav button:hover {
  color: var(--impulse-white);
}

.impulse-footer-phone {
  color: var(--impulse-white);
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.impulse-footer > small {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 9px;
}

.impulse-mobile-actions {
  display: none;
}

@media (max-width: 1180px) {
  .impulse-footer {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 70px;
  }

  .impulse-footer {
    grid-template-columns: 1fr;
    padding: 55px 22px 40px;
  }

  .impulse-footer-nav {
    flex-wrap: wrap;
  }

  .impulse-mobile-actions {
    position: fixed;
    z-index: 60;
    left: 10px;
    right: 10px;
    bottom: 9px;
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    min-height: 56px;
    box-shadow: 0 14px 35px rgba(17, 24, 29, .3);
  }

  .impulse-mobile-actions a,
  .impulse-mobile-actions button {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
  }

  .impulse-mobile-actions a {
    background: var(--impulse-white);
    color: var(--impulse-ink);
    border: 1px solid var(--impulse-line);
  }

  .impulse-mobile-actions button {
    gap: 20px;
    background: var(--impulse-orange);
    color: var(--impulse-white);
  }
}




