:root {
  --b2c-font: var(--ash-font-body, "Manrope", "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  --b2c-text: var(--ash-color-text, #121a2b);
  --b2c-muted: var(--ash-color-text-muted, #52627d);
  --b2c-primary: var(--ash-color-primary, #5476ff);
  --b2c-primary-strong: var(--ash-color-primary-strong, #3156dc);
  --b2c-primary-soft: var(--ash-color-primary-soft, #e8efff);
  --b2c-surface: var(--ash-color-surface, #ffffff);
  --b2c-surface-soft: var(--ash-color-surface-soft, #f5f8ff);
  --b2c-line: var(--ash-color-border, #dbe5ff);
  --b2c-shadow: var(--ash-shadow-card, 0 18px 42px rgba(37, 58, 116, 0.1));

  /* Card rhythm rules:
     product cards: 24px outer radius, 16px media radius, 24px desktop gap, 16px mobile gap;
     text cards: 24px outer radius, 32px desktop padding, 24px mobile padding;
     inset photo cards: 24px outer radius, 12px media radius;
     large forms and media panels may use 28-32px radius only when they are not repeated cards. */
  --b2c-radius-card: var(--ash-radius-card, 24px);
  --b2c-radius-inner: var(--ash-radius-media, 16px);
  --b2c-radius-media-inset: var(--ash-radius-control, 12px);
  --b2c-radius-panel: var(--ash-radius-panel, 32px);
  --b2c-radius-pill: var(--ash-radius-pill, 999px);
  --b2c-card-gap: var(--ash-space-6, 24px);
  --b2c-card-gap-mobile: var(--ash-space-4, 16px);
  --b2c-card-padding-text: var(--ash-space-8, 32px);
  --b2c-card-padding-text-mobile: var(--ash-space-6, 24px);
  --b2c-card-padding-photo: var(--ash-space-6, 24px);
  --b2c-card-padding-photo-mobile: var(--ash-space-5, 20px);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--b2c-font);
  color: var(--b2c-text);
  background: var(--b2c-surface-soft);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main,
header,
footer,
main p,
main li,
main a,
main button,
main input,
main textarea,
main select {
  font-family: var(--b2c-font);
}

main .text-uppercase,
main .text-lg-uppercase {
  text-transform: none !important;
}

main h1,
main h2,
main h3,
main .h1-title,
main .h2-title,
main .h2-title-36,
main .main-title {
  color: var(--b2c-text);
  letter-spacing: 0 !important;
  line-height: 1.08;
  text-wrap: balance;
}

main p,
main li {
  color: var(--b2c-muted);
  line-height: 1.6;
}

.container {
  max-width: var(--ash-container, 1180px);
}

header {
  top: 0;
  z-index: 1000;
}

.navbar-wrapper {
  min-height: 76px;
  padding: 14px clamp(18px, 1.8vw, 32px);
  border: 1px solid var(--ash-color-border-glass, rgba(219, 229, 255, 0.92));
  border-radius: var(--b2c-radius-pill);
  background: var(--ash-color-surface-glass, rgba(255, 255, 255, 0.94));
  box-shadow: var(--ash-shadow-navigation, 0 14px 34px rgba(31, 52, 105, 0.08));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.head-menu-desktop {
  align-items: center;
  gap: 16px !important;
  margin: 0;
}

.head-menu-desktop a,
.menu-items a {
  color: var(--b2c-text);
  font-weight: 700;
  letter-spacing: 0 !important;
  text-decoration: none;
  white-space: nowrap;
}

.head-menu-desktop a:hover,
.menu-items a:hover {
  color: var(--b2c-primary-strong);
}

header a[href^="tel"] {
  white-space: nowrap;
  font-size: 0.98rem;
  line-height: 1.15;
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .header-phone-link {
    display: none !important;
  }
}

.custom-submenu {
  border: 1px solid var(--b2c-line);
  border-radius: 20px;
  background: var(--b2c-surface);
  box-shadow: var(--b2c-shadow);
  overflow: hidden;
}

.btn,
.btn-main,
.button,
.button-primary,
.button-secondary {
  min-height: 54px;
  border-radius: var(--b2c-radius-pill) !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  line-height: 1.15;
  text-decoration: none !important;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.btn:hover,
.btn-main:hover,
.button:hover {
  transform: translateY(-1px);
}

.btn-primary,
.btn-main,
.button-primary {
  border-color: transparent !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--b2c-primary-strong), var(--ash-color-primary, #4d87f7) 58%, var(--ash-color-accent-strong, #39bdcf)) !important;
  box-shadow: 0 16px 30px rgba(84, 118, 255, 0.26);
}

.btn-primary:hover,
.btn-main:hover,
.button-primary:hover {
  color: #fff !important;
  box-shadow: 0 20px 38px rgba(84, 118, 255, 0.32);
}

.btn-outline-light,
.btn-white,
.button-secondary {
  border: 1px solid rgba(219, 229, 255, 0.94) !important;
  color: var(--b2c-text) !important;
  background: rgba(255, 255, 255, 0.9) !important;
}

.video-hero {
  padding: 24px 0 78px;
}

.video-hero .video-wrapper {
  min-height: 640px;
  border-radius: 34px;
  box-shadow: var(--b2c-shadow);
}

.video-wrapper::before {
  background: linear-gradient(90deg, rgba(8, 18, 42, 0.68), rgba(8, 18, 42, 0.24) 55%, rgba(8, 18, 42, 0.1));
}

.main-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 64px;
  top: 50% !important;
  right: 64px;
  left: 64px !important;
  width: auto !important;
  max-width: none !important;
  height: auto !important;
  transform: translateY(-50%);
}

.main-content .btn-main {
  position: static !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  justify-self: end;
  min-width: 220px;
  width: auto !important;
  padding-right: 28px;
  padding-left: 28px;
}

.main-content h1,
.main-content h2,
.main-content h3 {
  color: #fff !important;
  letter-spacing: 0 !important;
}

.main-content h1 {
  max-width: 720px;
  margin: 0;
  font-size: 3.5rem !important;
  line-height: 1.02;
}

.main-content h2 {
  max-width: 600px;
  margin-top: 16px !important;
  font-size: 1.45rem !important;
  line-height: 1.22;
  opacity: 0.92;
}

.main-content h3 {
  max-width: 560px;
  margin-top: 14px;
  font-size: 1rem !important;
  line-height: 1.5;
  opacity: 0.88;
}

.services-item,
.accordion-item,
.card,
.bg-light-blue,
.bg-light-gray-v2 {
  border: 1px solid var(--b2c-line);
  border-radius: var(--b2c-radius-card) !important;
}

main .services-item,
main .accordion-item,
main .card,
main .bg-light-blue,
main .bg-light-gray-v2,
main .bg-blue.br-24,
main .bg-dark.br-24 {
  border-radius: var(--b2c-radius-card) !important;
}

main .services-item.p-24-lg-40,
main .bg-light-blue.p-24-lg-40,
main .bg-light-gray-v2.p-24-lg-40,
main .bg-blue.p-24-lg-40,
main .bg-dark.p-24-lg-40,
main .bg-light-blue.p-24-xl-32,
main .bg-light-gray-v2.p-24-xl-32,
main .bg-blue.p-24-xl-32,
main .bg-dark.p-24-xl-32 {
  padding: var(--b2c-card-padding-text) !important;
}

main .bg-light-blue.p-20-lg-24,
main .bg-light-gray-v2.p-20-lg-24,
main .bg-blue.p-20-lg-24,
main .bg-dark.p-20-lg-24 {
  padding: var(--b2c-card-padding-photo) !important;
}

main .bg-light-blue > img.br-12,
main .bg-light-gray-v2 > img.br-12,
main .bg-blue > img.br-12,
main .bg-dark > img.br-12 {
  border-radius: var(--b2c-radius-media-inset) !important;
}

.services-item.p-24-lg-40,
.bg-light-blue.p-24-lg-40,
.bg-light-gray-v2.p-24-lg-40,
.bg-blue.p-24-lg-40,
.bg-dark.p-24-lg-40,
.bg-light-blue.p-24-xl-32,
.bg-light-gray-v2.p-24-xl-32,
.bg-blue.p-24-xl-32,
.bg-dark.p-24-xl-32 {
  padding: var(--b2c-card-padding-text) !important;
}

.bg-light-blue.p-20-lg-24,
.bg-light-gray-v2.p-20-lg-24,
.bg-blue.p-20-lg-24,
.bg-dark.p-20-lg-24 {
  padding: var(--b2c-card-padding-photo) !important;
}

.bg-light-blue > img.br-12,
.bg-light-gray-v2 > img.br-12,
.bg-blue > img.br-12,
.bg-dark > img.br-12 {
  border-radius: var(--b2c-radius-media-inset) !important;
}

.services-item {
  position: relative;
  min-height: 220px;
  color: var(--b2c-text);
  background: linear-gradient(180deg, #fff, #f7faff) !important;
  box-shadow: 0 14px 32px rgba(35, 58, 120, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.services-item:hover {
  border-color: rgba(84, 118, 255, 0.42);
  box-shadow: 0 22px 48px rgba(35, 58, 120, 0.14);
  transform: translateY(-3px);
}

.services-item h3 {
  font-size: 1.7rem !important;
  line-height: 1.14;
  letter-spacing: 0 !important;
}

.services-item div {
  color: var(--b2c-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.py-section-100 {
  padding-top: 82px;
  padding-bottom: 82px;
}

.h2-title,
.h2-title-36 {
  font-size: 2.75rem !important;
}

.cost-wrapper {
  border: 1px solid rgba(219, 229, 255, 0.16);
  border-radius: 28px !important;
  padding: 42px;
  background: radial-gradient(circle at top left, rgba(84, 118, 255, 0.32), transparent 34%), #121a2b !important;
  box-shadow: var(--b2c-shadow);
}

.cost-wrapper h2,
.cost-wrapper div {
  letter-spacing: 0 !important;
}

.form__container,
.site-lead-form,
.local-form {
  font-family: var(--b2c-font);
}

.site-lead-form,
.local-form {
  border: 1px solid var(--b2c-line);
  border-radius: var(--b2c-radius-card);
  background: var(--b2c-surface);
  box-shadow: 0 16px 38px rgba(35, 58, 120, 0.08);
}

.site-lead-form label,
.local-form label,
.site-lead-form .form-field-label,
.local-form .form-field-label {
  color: var(--b2c-text);
  font-weight: 800;
  letter-spacing: 0 !important;
}

.site-lead-form input,
.site-lead-form textarea,
.site-lead-form select,
.local-form input,
.local-form textarea,
.local-form select {
  min-height: 54px;
  border: 1px solid #d8e3ff !important;
  border-radius: 16px !important;
  color: var(--b2c-text);
  background: #f7faff !important;
  font-family: var(--b2c-font);
}

.site-lead-form input:focus,
.site-lead-form textarea:focus,
.site-lead-form select:focus,
.local-form input:focus,
.local-form textarea:focus,
.local-form select:focus {
  outline: 0;
  border-color: var(--b2c-primary) !important;
  box-shadow: 0 0 0 4px rgba(84, 118, 255, 0.18);
}

#callbackModal .modal-content {
  position: relative;
  padding-top: 68px;
  border: 0;
  border-radius: var(--b2c-radius-panel);
  box-shadow: 0 26px 70px rgba(11, 22, 52, 0.24);
}

#callbackModal .callback-modal-title {
  position: absolute;
  top: 26px;
  left: 28px;
  right: 72px;
  margin: 0;
  color: var(--b2c-text);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

/* The modal itself is the visual container. Keep the shared page form unframed here. */
#callbackModal .site-lead-form,
#callbackModal .local-form {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 1199.98px) {
  .navbar-wrapper {
    padding: 12px 16px;
    border-radius: 26px;
  }

  .navbar-collapse {
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--b2c-shadow);
  }

  .main-content {
    padding: 44px;
    right: 44px;
    left: 44px !important;
  }

  .main-content h1 {
    font-size: 3.1rem !important;
  }
}

@media (max-width: 767.98px) {
  .video-hero {
    padding: 16px 0 54px;
  }

  .video-hero .video-wrapper {
    min-height: 590px;
    border-radius: 26px;
  }

  .main-content {
    grid-template-columns: 1fr;
    align-content: end;
    padding: 30px 22px;
    top: auto !important;
    right: 22px;
    bottom: 82px;
    left: 22px !important;
    transform: none;
  }

  .main-content .btn-main {
    justify-self: stretch;
    width: 100% !important;
    min-width: 0;
  }

  .main-content h1 {
    font-size: 2.35rem !important;
  }

  .main-content h2 {
    font-size: 1.25rem !important;
  }

  .main-content h3 {
    font-size: 1rem !important;
  }

  .btn,
  .btn-main,
  .button {
    width: 100%;
    min-height: 52px;
    white-space: normal;
  }

  .h2-title,
  .h2-title-36 {
    font-size: 2rem !important;
  }

  .py-section-100 {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .cost-wrapper {
    padding: 24px;
  }

  main .services-item.p-24-lg-40,
  main .bg-light-blue.p-24-lg-40,
  main .bg-light-gray-v2.p-24-lg-40,
  main .bg-blue.p-24-lg-40,
  main .bg-dark.p-24-lg-40,
  main .bg-light-blue.p-24-xl-32,
  main .bg-light-gray-v2.p-24-xl-32,
  main .bg-blue.p-24-xl-32,
  main .bg-dark.p-24-xl-32 {
    padding: var(--b2c-card-padding-text-mobile) !important;
  }

  main .bg-light-blue.p-20-lg-24,
  main .bg-light-gray-v2.p-20-lg-24,
  main .bg-blue.p-20-lg-24,
  main .bg-dark.p-20-lg-24 {
    padding: var(--b2c-card-padding-photo-mobile) !important;
  }

  .services-item.p-24-lg-40,
  .bg-light-blue.p-24-lg-40,
  .bg-light-gray-v2.p-24-lg-40,
  .bg-blue.p-24-lg-40,
  .bg-dark.p-24-lg-40,
  .bg-light-blue.p-24-xl-32,
  .bg-light-gray-v2.p-24-xl-32,
  .bg-blue.p-24-xl-32,
  .bg-dark.p-24-xl-32 {
    padding: var(--b2c-card-padding-text-mobile) !important;
  }

  .bg-light-blue.p-20-lg-24,
  .bg-light-gray-v2.p-20-lg-24,
  .bg-blue.p-20-lg-24,
  .bg-dark.p-20-lg-24 {
    padding: var(--b2c-card-padding-photo-mobile) !important;
  }
}

.site-lead-form__expectation {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  color: var(--b2c-muted, #5f6f8f);
  font-size: 14px;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Shared header parity with the LSTK complect pages. */
header {
  padding: 18px 0 0;
  border-bottom: 0 !important;
  background: transparent !important;
}

.navbar-wrapper.container {
  width: min(1300px, calc(100% - 80px));
  max-width: 1300px;
}

.navbar-wrapper {
  min-height: 82px;
  padding: 12px 12px 12px 18px !important;
  gap: clamp(14px, 1.7vw, 28px);
  border: 1px solid rgba(219, 229, 255, 0.92);
  border-radius: var(--b2c-radius-pill);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(31, 52, 105, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.navbar-wrapper > a:first-child {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  margin: 0 !important;
}

.navbar-wrapper .logo {
  width: clamp(104px, 8.3vw, 118px);
  max-width: none;
  margin: 0 !important;
}

.navbar-wrapper > .d-flex {
  flex: 0 0 auto;
  gap: 0 !important;
}

.header-phone-link,
.navbar-wrapper > .d-flex > a.d-sm-none {
  display: none !important;
}

.navbar-wrapper > .d-flex .btn-primary {
  display: inline-flex !important;
  width: auto;
  min-width: clamp(170px, 13.5vw, 196px);
  min-height: 52px;
  padding: 0 clamp(20px, 2vw, 30px);
  font-size: 16px;
}

@media (min-width: 1200px) {
  .navbar-collapse {
    display: flex !important;
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
    padding: 0 !important;
  }

  .navbar-collapse > .d-flex {
    width: 100%;
    justify-content: center !important;
    gap: 0 !important;
  }

  .head-menu-desktop {
    display: inline-flex !important;
    flex: 0 1 auto;
    align-items: center;
    justify-content: center;
    gap: 2px !important;
    width: auto;
    max-width: 100%;
    min-height: 60px;
    margin: 0;
    padding: 4px;
    border: 1px solid rgba(17, 28, 51, 0.1);
    border-radius: var(--b2c-radius-pill);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .head-menu-desktop li {
    display: inline-flex;
  }

  .head-menu-desktop li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    min-height: 52px;
    padding: 0 clamp(10px, 0.95vw, 17px);
    border-radius: var(--b2c-radius-pill);
    color: var(--b2c-text);
    font-size: clamp(13px, 0.76vw, 15px);
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  }

  .head-menu-desktop li a:hover:not(.is-active),
  .head-menu-desktop li a:focus-visible:not(.is-active) {
    color: var(--b2c-primary-strong);
    background: rgba(84, 118, 255, 0.08);
    outline: 0;
  }

  .head-menu-desktop li a.is-active,
  .head-menu-desktop li a.is-active:hover,
  .head-menu-desktop li a.is-active:focus-visible {
    color: #fff !important;
    background: linear-gradient(135deg, #6f93ff 0%, #3e69f3 100%);
    box-shadow: 0 12px 24px rgba(55, 96, 235, 0.22);
  }

  .mobile-menu-line,
  .navbar-collapse .d-xl-none,
  .mobile-logo {
    display: none !important;
  }
}

@media (max-width: 1199.98px) {
  .navbar-wrapper.container {
    width: min(100% - 32px, 720px);
    max-width: min(100% - 32px, 720px);
  }

  .navbar-wrapper {
    min-height: 76px;
    padding: 13px 18px !important;
    border-radius: 28px;
  }

  .navbar-wrapper:has(.navbar-collapse.show) {
    border-color: transparent;
    background: transparent !important;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  header:has(.navbar-collapse.show)::before {
    content: none;
    display: none;
  }

  .burger-btn {
    position: relative;
    top: auto;
    right: auto;
    width: 44px;
    min-width: 44px;
    height: 44px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 14px;
    background: transparent;
  }

  .burger-btn span {
    position: absolute;
    width: 28px !important;
    height: 2px;
    margin: 0;
    background: var(--b2c-primary);
  }

  .burger-btn span:nth-of-type(1) {
    transform: translateY(-6px);
  }

  .burger-btn span:nth-of-type(2) {
    transform: translateY(0);
  }

  .burger-btn span:nth-of-type(3) {
    transform: translateY(6px);
  }

  .burger-btn:not(.collapsed) {
    position: fixed;
    top: 44px;
    right: 30px;
    z-index: 1102;
  }

  .burger-btn:not(.collapsed) span:nth-of-type(1) {
    transform: rotate(45deg);
  }

  .burger-btn:not(.collapsed) span:nth-of-type(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .burger-btn:not(.collapsed) span:nth-of-type(3) {
    width: 28px !important;
    transform: rotate(-45deg);
  }

  .navbar-collapse {
    position: fixed;
    top: 18px;
    right: 0;
    z-index: 1100;
    isolation: isolate;
    width: min(354px, calc(100vw - 32px));
    min-width: 0;
    max-width: none;
    height: calc(100dvh - 18px);
    padding: 94px 22px 28px !important;
    border: 1px solid rgba(219, 229, 255, 0.92);
    border-right: 0;
    border-radius: 26px 0 0 0;
    background: #fff !important;
    box-shadow: -22px 0 52px rgba(18, 32, 72, 0.16);
    overflow-y: auto;
  }

  .navbar-collapse.show::before {
    content: none !important;
    display: none !important;
  }

  .navbar-collapse > .d-flex {
    min-height: 100%;
    gap: 0 !important;
  }

  .head-menu-mobile {
    width: 100%;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .head-menu-mobile li a,
  .head-menu-mobile li a.fs-14 {
    display: block !important;
    margin: 0 0 28px !important;
    padding: 0;
    color: var(--b2c-text);
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.25;
    text-decoration: none;
  }

  .head-menu-mobile li a.is-active {
    color: var(--b2c-primary-strong);
  }

  .mobile-menu-line {
    width: 100%;
    margin: 8px 0 28px;
    border-top: 1px solid #dee2ee;
    opacity: 1;
  }

  .navbar-collapse .d-xl-none {
    width: 100%;
  }

  .navbar-collapse .d-xl-none > a {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--b2c-text);
    font-size: 16px;
    line-height: 1.25;
    text-decoration: none;
  }

  .navbar-collapse .btn-primary {
    width: 100%;
    min-height: 60px;
    font-size: 17px;
  }

  .mobile-logo {
    position: absolute;
    top: 31px;
    left: 22px;
    z-index: 1102;
    width: 118px !important;
    max-width: 118px !important;
    height: auto !important;
  }
}

@media (max-width: 420px) {
  .navbar-collapse {
    width: calc(100vw - 32px);
  }

  .mobile-logo {
    left: 22px;
    right: auto;
  }
}

/* B2C home rebuild */
.b2c-home-hero {
  padding: 22px 0 64px;
}

.b2c-home-hero__media {
  position: relative;
  height: min(50vw, 560px);
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(219, 229, 255, 0.92);
  border-radius: 34px;
  background: #111a2e;
  box-shadow: 0 26px 58px rgba(28, 45, 93, 0.16);
}

.b2c-home-hero__video,
.b2c-home-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b2c-home-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 17, 38, 0.78), rgba(8, 17, 38, 0.48) 48%, rgba(8, 17, 38, 0.12));
}

.b2c-home-hero__motion-toggle {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(8, 17, 38, 0.78);
  color: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.18s ease, border-color 0.18s ease;
}

.b2c-home-hero__motion-toggle:hover {
  border-color: #ffffff;
  background: rgba(8, 17, 38, 0.92);
}

.b2c-home-hero__motion-toggle:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.92);
  outline-offset: 3px;
}

.b2c-home-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr auto;
  gap: var(--b2c-card-gap);
  width: 100%;
  min-height: 100%;
  padding: 58px;
}

.b2c-home-hero h1 {
  grid-column: 1 / -1;
  align-self: start;
  max-width: 820px;
  margin: 0;
  color: #fff !important;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.03;
}

.b2c-home-hero p {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.45;
}

.b2c-home-hero__lead {
  position: relative;
  min-height: 5.8em;
}

.b2c-home-hero__lead-short,
.b2c-home-hero__lead-full {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.b2c-home-hero__lead-full {
  opacity: 0;
  transform: translateY(12px);
}

.b2c-home-hero__media:hover .b2c-home-hero__lead-short,
.b2c-home-hero__media:focus-within .b2c-home-hero__lead-short {
  opacity: 0;
  transform: translateY(-8px);
}

.b2c-home-hero__media:hover .b2c-home-hero__lead-full,
.b2c-home-hero__media:focus-within .b2c-home-hero__lead-full {
  opacity: 1;
  transform: translateY(0);
}

.b2c-home-hero__actions {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  margin: 0;
}

.b2c-home-hero__actions .btn {
  min-width: 210px;
  padding-right: 26px;
  padding-left: 26px;
}

.ash-video-feature-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(219, 229, 255, 0.92);
  border-radius: 34px;
  background: #111a2e;
  box-shadow: 0 26px 58px rgba(28, 45, 93, 0.16);
}

.ash-video-feature-card__video,
.ash-video-feature-card__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ash-video-feature-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 17, 38, 0.78), rgba(8, 17, 38, 0.46) 52%, rgba(8, 17, 38, 0.12)),
    linear-gradient(180deg, rgba(8, 17, 38, 0.12), rgba(8, 17, 38, 0.48));
}

.ash-video-feature-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: inherit;
  padding: 58px;
  color: #fff;
}

.ash-video-feature-card__title {
  max-width: 760px;
  margin: 0;
  color: #fff !important;
  font-size: clamp(42px, 4.2vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0 !important;
  text-transform: none !important;
  text-wrap: balance;
}

.ash-video-feature-card__title span {
  display: block;
}

.ash-video-feature-card__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 30px;
  align-self: end;
}

.ash-video-feature-card__lead {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 500;
  line-height: 1.45;
}

.ash-video-feature-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.ash-video-feature-card__actions .btn {
  min-width: 210px;
  padding-right: 26px;
  padding-left: 26px;
}

.b2c-home-section {
  scroll-margin-top: 128px;
  padding: 72px 0;
}

.b2c-home-section--first {
  padding-top: 8px;
}

.b2c-home-heading {
  display: flex;
  max-width: 760px;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.b2c-home-heading--compact {
  margin-bottom: 24px;
}

.b2c-home-heading h2,
.b2c-request-panel__copy h2,
.b2c-trust-card--main h2 {
  margin: 0;
  color: var(--b2c-text);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.08;
}

.b2c-home-heading p,
.b2c-request-panel__copy p,
.b2c-trust-card--main p {
  max-width: 690px;
  margin: 0;
  color: var(--b2c-muted);
  font-size: 18px;
  line-height: 1.55;
}

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

.b2c-scenario-card,
.b2c-choice-card,
.b2c-kit-card,
.b2c-trust-card,
.b2c-price-factor,
.b2c-project-card {
  border: 1px solid var(--b2c-line);
  border-radius: var(--b2c-radius-card);
  background: #fff;
  box-shadow: 0 14px 32px rgba(35, 58, 120, 0.07);
}

.b2c-scenario-card,
.b2c-choice-card,
.b2c-trust-card,
.b2c-text-link {
  color: var(--b2c-text);
  text-decoration: none;
}

.b2c-scenario-card {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(180deg, #fff, #f7faff);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.b2c-scenario-card--wide {
  background:
    linear-gradient(135deg, rgba(49, 86, 220, 0.12), rgba(57, 189, 207, 0.08)),
    #fff;
}

.b2c-scenario-card--accent {
  color: #fff;
  background: linear-gradient(135deg, var(--b2c-primary-strong), var(--ash-color-primary, #4d87f7) 58%, var(--ash-color-accent-strong, #39bdcf));
  box-shadow: 0 18px 36px rgba(84, 118, 255, 0.24);
}

.b2c-scenario-card:hover,
.b2c-choice-card:hover,
.b2c-trust-card:hover,
.b2c-project-card:hover {
  border-color: rgba(84, 118, 255, 0.44);
  box-shadow: 0 22px 48px rgba(35, 58, 120, 0.13);
  transform: translateY(-3px);
}

.b2c-scenario-card span {
  margin-bottom: 14px;
  color: var(--b2c-primary-strong);
  font-size: 15px;
  font-weight: 800;
}

.b2c-scenario-card--accent span {
  color: rgba(255, 255, 255, 0.84);
}

.b2c-scenario-card h3,
.b2c-choice-card h3,
.b2c-kit-card h3,
.b2c-trust-card h3,
.b2c-project-card h3 {
  margin: 0;
  color: inherit;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.16;
}

.b2c-scenario-card p,
.b2c-choice-card p,
.b2c-kit-card p,
.b2c-trust-card p,
.b2c-project-card p {
  margin: 14px 0 0;
  color: var(--b2c-muted);
  font-size: 16px;
  line-height: 1.55;
}

.b2c-scenario-card--accent p {
  color: rgba(255, 255, 255, 0.84);
}

.b2c-scenarios-head {
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 30px;
}

.b2c-scenarios-head .b2c-home-heading {
  margin-bottom: 0;
}

.b2c-build-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: var(--b2c-card-gap);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 4px 14px;
  scroll-padding-left: 4px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.b2c-build-carousel::-webkit-scrollbar {
  display: none;
}

.b2c-build-slide {
  display: grid;
  min-width: 0;
  min-height: 392px;
  grid-template-columns: minmax(300px, 0.78fr) minmax(440px, 1.22fr);
  gap: 14px;
  padding: 14px;
  scroll-snap-align: start;
  border: 1px solid var(--b2c-line);
  border-radius: var(--b2c-radius-card);
  background: #fff;
  box-shadow: 0 18px 42px rgba(35, 58, 120, 0.08);
}

.b2c-build-slide__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border-radius: var(--b2c-radius-inner);
  background:
    linear-gradient(135deg, rgba(232, 239, 255, 0.9), rgba(245, 248, 255, 0.94));
}

.b2c-build-slide__eyebrow {
  margin-bottom: 16px;
  color: var(--b2c-primary-strong);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.b2c-build-slide h3 {
  max-width: 10.6em;
  margin: 0;
  color: var(--b2c-text);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
  text-wrap: balance;
}

.b2c-build-slide p {
  max-width: 28em;
  margin: 18px 0 0;
  color: var(--b2c-muted);
  font-size: 18px;
  line-height: 1.5;
}

.b2c-build-slide__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
}

.b2c-build-slide__facts span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(84, 118, 255, 0.2);
  border-radius: var(--b2c-radius-pill);
  padding: 7px 13px;
  color: var(--b2c-muted);
  background: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
}

.b2c-build-slide__button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 13px 22px;
  border: 1px solid rgba(84, 118, 255, 0.28);
  border-radius: var(--b2c-radius-pill);
  color: var(--b2c-text);
  background: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.b2c-build-slide__button:hover,
.b2c-build-slide__button:focus-visible,
.b2c-build-slide__button--primary {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(90deg, var(--b2c-primary-strong), var(--ash-color-accent-strong, #39bdcf));
  box-shadow: 0 14px 26px rgba(49, 86, 220, 0.2);
  outline: none;
}

.b2c-build-slide__button:active {
  transform: translateY(1px);
}

.b2c-build-slide__media {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: var(--b2c-radius-media-inset);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(12, 24, 52, 0.58), rgba(49, 86, 220, 0.34)),
    linear-gradient(135deg, #dfe8ff, #edf4ff);
}

.b2c-build-slide__media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.58);
  border-radius: calc(var(--b2c-radius-media-inset) + 8px);
  pointer-events: none;
}

.b2c-build-slide__media span,
.b2c-build-slide__media strong {
  position: relative;
  z-index: 1;
}

.b2c-build-slide__media span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.b2c-build-slide__media strong {
  max-width: 10em;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.04;
  text-wrap: balance;
}

.b2c-build-slide__media--garage {
  background:
    linear-gradient(145deg, rgba(12, 24, 52, 0.52), rgba(84, 118, 255, 0.28)),
    linear-gradient(135deg, #edf4ff, #d8e6ff);
}

.b2c-build-slide__media--workshop {
  background:
    linear-gradient(145deg, rgba(12, 24, 52, 0.5), rgba(57, 189, 207, 0.24)),
    linear-gradient(135deg, #eef5ff, #d9eff6);
}

.b2c-build-slide__media--garden {
  background:
    linear-gradient(145deg, rgba(12, 24, 52, 0.48), rgba(84, 118, 255, 0.22)),
    linear-gradient(135deg, #f3f8ff, #dceaff);
}

.b2c-build-slide__media--storage {
  background:
    linear-gradient(145deg, rgba(12, 24, 52, 0.54), rgba(49, 86, 220, 0.28)),
    linear-gradient(135deg, #edf3ff, #dfe8ff);
}

.b2c-build-slide__media--custom {
  background:
    linear-gradient(145deg, rgba(49, 86, 220, 0.78), rgba(57, 189, 207, 0.78)),
    linear-gradient(135deg, #eaf1ff, #dcecff);
}

.b2c-project-grid {
  display: grid;
  grid-template-columns: 1.16fr 1fr 1fr;
  gap: var(--b2c-card-gap);
}

.b2c-project-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.b2c-project-card__image {
  display: block;
  width: calc(100% - 32px);
  margin: 16px 16px 0;
  aspect-ratio: 1 / 0.74;
  overflow: hidden;
  border-radius: var(--b2c-radius-inner);
  background: #eef4ff;
}

.b2c-project-card__image img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center 60%;
  transition: transform 0.22s ease;
}

.b2c-project-card:hover .b2c-project-card__image img {
  transform: scale(1.035);
}

.b2c-project-card__body {
  display: flex;
  min-height: 305px;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
}

.b2c-project-card__price {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.b2c-project-card__price strong {
  color: var(--b2c-text);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.b2c-project-card__price span {
  color: var(--b2c-muted);
  font-size: 14px;
  line-height: 1.35;
}

.b2c-text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--b2c-primary-strong);
  font-weight: 800;
}

.b2c-text-link:hover {
  color: var(--b2c-primary-strong);
}

.b2c-home-center {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.b2c-typical-projects__head {
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.b2c-typical-projects__copy {
  display: flex;
  max-width: 760px;
  flex-direction: column;
  gap: 14px;
}

.b2c-typical-projects__head h2 {
  max-width: 760px;
  margin: 0;
  color: var(--b2c-text);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

.b2c-heading-line {
  display: block;
}

.b2c-typical-projects__head p {
  max-width: 680px;
  margin: 0;
  color: #44516c;
  font-size: 18px;
  line-height: 1.55;
}

.b2c-carousel-controls {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  margin-bottom: 2px;
}

.b2c-carousel-control {
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid var(--b2c-line);
  border-radius: var(--b2c-radius-pill);
  color: var(--b2c-primary-strong);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(35, 58, 120, 0.08);
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.b2c-carousel-control span {
  display: block;
  margin-top: -3px;
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

.b2c-carousel-control:hover,
.b2c-carousel-control:focus-visible {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(90deg, var(--b2c-primary-strong), var(--ash-color-accent-strong, #39bdcf));
  box-shadow: 0 14px 28px rgba(49, 86, 220, 0.22);
  outline: none;
}

.b2c-carousel-control:disabled {
  opacity: 0.38;
  pointer-events: none;
}

.b2c-typical-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, calc((100% - 48px) / 3));
  gap: var(--b2c-card-gap);
  overflow-x: auto;
  overflow-y: hidden;
  margin: -34px -18px -52px;
  padding: 42px 18px 72px;
  scroll-padding-left: 18px;
  scroll-snap-type: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.b2c-typical-carousel::-webkit-scrollbar {
  display: none;
}

.b2c-typical-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  scroll-snap-align: start;
  border: 0;
  border-radius: var(--b2c-radius-card);
  background: #fff;
  box-shadow: 0 22px 54px rgba(35, 58, 120, 0.1);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.b2c-typical-card:hover {
  box-shadow: 0 24px 52px rgba(35, 58, 120, 0.13);
  transform: translateY(-3px);
}

.b2c-typical-card__image {
  display: block;
  width: 100%;
  margin: 0;
  aspect-ratio: 1 / 0.8;
  overflow: hidden;
  border-radius: var(--b2c-radius-card) var(--b2c-radius-card) 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent),
    linear-gradient(145deg, rgba(234, 241, 255, 0.96), rgba(211, 225, 255, 0.84));
}

.b2c-typical-card__image img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center 54%;
  transition: transform 0.22s ease;
}

.b2c-typical-card__image--model img {
  object-fit: cover;
  object-position: center 58%;
  transform: scale(1.02);
}

.b2c-typical-card:hover .b2c-typical-card__image img {
  transform: scale(1.035);
}

.b2c-typical-card:hover .b2c-typical-card__image--model img {
  transform: scale(1.06);
}

.b2c-typical-card__body {
  display: flex;
  min-height: 314px;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px 20px 22px;
}

.b2c-typical-card__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  color: var(--b2c-muted);
  font-size: 15px;
  line-height: 1.32;
}

.b2c-typical-card__meta span:last-child {
  text-align: right;
}

.b2c-typical-card h3 {
  min-height: 2.18em;
  margin: 0;
  color: var(--b2c-text);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.09;
}

.b2c-typical-card p {
  display: none;
  min-height: 4.38em;
  margin: 0;
  overflow: hidden;
  color: var(--b2c-muted);
  font-size: 17px;
  line-height: 1.46;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.b2c-typical-card__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.b2c-typical-card__facts div {
  display: grid;
  min-height: 66px;
  align-content: center;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid rgba(18, 26, 43, 0.1);
  border-radius: var(--b2c-radius-inner);
  background: rgba(255, 255, 255, 0.72);
}

.b2c-typical-card__facts span {
  color: var(--b2c-muted);
  font-size: 14px;
  line-height: 1.2;
}

.b2c-typical-card__facts strong {
  color: var(--b2c-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.16;
}

.b2c-typical-card__price {
  display: grid;
  gap: 4px;
  margin-top: auto;
}

.b2c-typical-card__price strong {
  color: var(--b2c-text);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.b2c-typical-card__price span {
  color: var(--b2c-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.28;
}

.b2c-typical-card__button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--b2c-line);
  border-radius: var(--b2c-radius-pill);
  color: var(--b2c-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.b2c-typical-card__button:hover,
.b2c-typical-card__button:focus-visible,
.b2c-typical-card__button--primary {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(90deg, var(--b2c-primary-strong), var(--ash-color-accent-strong, #39bdcf));
  box-shadow: 0 14px 26px rgba(49, 86, 220, 0.2);
}

/* Realized LSTK objects page */
.ash-objects-heading {
  max-width: 12.6em;
  margin: 0 0 14px;
  color: var(--b2c-text);
  font-size: clamp(44px, 4.1vw, 64px) !important;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0 !important;
  text-transform: none !important;
  text-wrap: balance;
}

.ash-objects-hero__lead,
.ash-objects-section-lead {
  max-width: 560px;
  color: var(--b2c-muted);
  font-size: clamp(17px, 1.25vw, 20px) !important;
  font-weight: 500;
  line-height: 1.55;
  margin-top: 0;
}

.ash-section-title.ash-objects-heading {
  margin: 0;
  font-size: 44px !important;
}

.ash-section-lead.ash-objects-hero__lead,
.ash-section-lead.ash-objects-section-lead {
  max-width: 690px;
  font-size: 18px !important;
  font-weight: 400;
}

.ash-objects-hero .row {
  align-items: center !important;
}

.ash-objects-hero .btn {
  max-width: 380px;
  margin-left: auto;
}

.ash-objects-stat {
  display: grid;
  align-content: space-between;
  gap: 22px;
  min-height: 168px;
}

.ash-objects-stat__value {
  color: var(--b2c-text);
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 800;
  line-height: 1.05;
  text-wrap: balance;
}

.ash-objects-stat__label {
  color: var(--b2c-muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.ash-objects-grid {
  --bs-gutter-x: var(--b2c-card-gap);
  row-gap: 0;
}

.ash-object-card {
  padding: 16px !important;
  color: var(--b2c-text);
  text-decoration: none;
  border: 1px solid var(--b2c-line);
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 10px 24px rgba(33, 48, 87, 0.075);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ash-object-card--button {
  width: 100%;
  appearance: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.ash-object-card:hover {
  border-color: rgba(84, 118, 255, 0.34);
  background: #fff !important;
  box-shadow: 0 18px 40px rgba(39, 58, 105, 0.11);
  transform: translateY(-2px);
}

.ash-object-card--button:focus-visible {
  outline: 3px solid rgba(84, 118, 255, 0.34);
  outline-offset: 4px;
}

.ash-object-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--b2c-radius-media-inset);
  border: 1px solid rgba(219, 229, 255, 0.76);
  background:
    linear-gradient(180deg, rgba(246, 249, 255, 0.94), rgba(232, 239, 255, 0.86));
}

.ash-object-card__media .ash-object-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  border: 0;
  border-radius: 0 !important;
  object-fit: cover;
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.ash-object-card__image--primary {
  z-index: 1;
  opacity: 1;
}

.ash-object-card__image--hover {
  z-index: 2;
  opacity: 0;
}

.ash-object-card:hover .ash-object-card__image--primary,
.ash-object-card--button:focus-visible .ash-object-card__image--primary {
  opacity: 0;
  transform: scale(1.025);
}

.ash-object-card:hover .ash-object-card__image--hover,
.ash-object-card--button:focus-visible .ash-object-card__image--hover {
  opacity: 1;
  transform: scale(1.025);
}

.ash-object-card__topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 12px;
  color: var(--b2c-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.ash-object-card__title {
  display: -webkit-box;
  min-height: calc(1.14em * 2);
  max-height: calc(1.14em * 2);
  margin: 0 0 18px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--b2c-text);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.14;
  text-wrap: balance;
}

.ash-object-card__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.ash-object-card__facts div {
  display: grid;
  gap: 6px;
  min-height: 78px;
  padding: 13px 14px;
  border: 1px solid rgba(219, 229, 255, 0.9);
  border-radius: var(--b2c-radius-inner);
  background: rgba(255, 255, 255, 0.72);
}

.ash-object-card__facts span {
  color: var(--b2c-muted);
  font-size: 13px;
  line-height: 1.25;
}

.ash-object-card__facts strong {
  color: var(--b2c-text);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.ash-object-card__works {
  display: -webkit-box;
  min-height: calc(1.5em * 3);
  margin-bottom: 22px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: var(--b2c-muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.ash-object-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  color: var(--b2c-primary-strong) !important;
  border: 1px solid rgba(84, 118, 255, 0.36) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ash-object-card:hover .ash-object-card__button,
.ash-object-card--button:focus-visible .ash-object-card__button {
  color: #fff !important;
  border-color: transparent !important;
  background: linear-gradient(135deg, var(--b2c-primary) 0%, #36b8d4 100%) !important;
  box-shadow: 0 14px 28px rgba(49, 86, 220, 0.18);
}

.ash-object-card:active .ash-object-card__button {
  transform: translateY(1px);
}

@media (hover: none) {
  .ash-object-card:hover .ash-object-card__image--primary {
    opacity: 1;
    transform: none;
  }

  .ash-object-card:hover .ash-object-card__image--hover {
    opacity: 0;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ash-object-card__media .ash-object-card__image,
  .ash-object-card__button {
    transition: none;
  }

  .ash-object-card:hover .ash-object-card__image--primary,
  .ash-object-card:hover .ash-object-card__image--hover,
  .ash-object-card--button:focus-visible .ash-object-card__image--primary,
  .ash-object-card--button:focus-visible .ash-object-card__image--hover {
    transform: none;
  }
}

.ash-projects-showcase {
  overflow: hidden;
}

.ash-projects-showcase__head {
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.ash-projects-showcase__copy {
  display: flex;
  max-width: 760px;
  flex-direction: column;
  gap: 14px;
}

.ash-projects-showcase__copy h2 {
  margin: 0;
}

.ash-projects-showcase__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

.ash-projects-showcase__link {
  color: var(--b2c-primary-strong);
  font-size: 20px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ash-projects-showcase__link:hover,
.ash-projects-showcase__link:focus-visible {
  color: var(--b2c-primary-strong);
}

.ash-projects-showcase__controls {
  display: flex;
  gap: 10px;
}

.ash-projects-showcase__control {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(84, 118, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--b2c-primary);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.ash-projects-showcase__control::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.ash-projects-showcase__control--prev::before {
  transform: translateX(2px) rotate(225deg);
}

.ash-projects-showcase__control--next::before {
  transform: translateX(-2px) rotate(45deg);
}

.ash-projects-showcase__control:hover,
.ash-projects-showcase__control:focus-visible {
  border-color: transparent;
  background: linear-gradient(135deg, var(--b2c-primary) 0%, #36b8d4 100%);
  color: #fff;
  transform: translateY(-1px);
}

.ash-projects-showcase__control:disabled {
  opacity: 0.36;
  cursor: default;
  transform: none;
}

.ash-projects-showcase__track {
  display: flex;
  gap: var(--b2c-card-gap);
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 -2px;
  padding: 0 2px 14px;
  scroll-padding-left: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.ash-projects-showcase__track::-webkit-scrollbar {
  display: none;
}

.ash-projects-showcase__track:focus-visible {
  outline: 3px solid rgba(84, 118, 255, 0.22);
  outline-offset: 8px;
}

.ash-projects-showcase__slide {
  flex: 0 0 clamp(320px, calc((100% - (var(--b2c-card-gap) * 2)) / 3), 420px);
  min-width: 0;
  scroll-snap-align: start;
}

.ash-projects-showcase__card {
  min-height: 100%;
}

@media (max-width: 991.98px) {
  .ash-projects-showcase__head {
    align-items: start;
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }

  .ash-projects-showcase__actions {
    justify-content: space-between;
    width: 100%;
  }

  .ash-projects-showcase__slide {
    flex-basis: clamp(300px, 48vw, 390px);
  }
}

@media (max-width: 575.98px) {
  .ash-projects-showcase__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .ash-projects-showcase__controls {
    order: -1;
  }

  .ash-projects-showcase__link {
    font-size: 17px;
  }

  .ash-projects-showcase__track {
    gap: var(--b2c-card-gap-mobile);
    margin-right: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
    padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  }

  .ash-projects-showcase__slide {
    flex-basis: min(86vw, 360px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ash-projects-showcase__control {
    transition: none;
  }
}

body.has-project-modal {
  overflow: hidden;
}

.ash-project-modal[hidden] {
  display: none;
}

.ash-project-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.ash-project-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 19, 35, 0.62);
}

.ash-project-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1220px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 28px;
  border: 1px solid var(--b2c-line);
  border-radius: var(--b2c-radius-panel);
  background: var(--b2c-surface);
  box-shadow: 0 28px 80px rgba(11, 24, 57, 0.28);
}

.ash-project-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--b2c-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--b2c-text);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.ash-project-modal__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 28px;
}

.ash-project-modal__gallery,
.ash-project-modal__info {
  min-width: 0;
}

.ash-project-modal__image-frame {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  place-items: center;
  border-radius: var(--b2c-radius-card);
  background: var(--b2c-surface-soft);
}

.ash-project-modal__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ash-project-modal__nav {
  position: absolute;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--b2c-primary);
  cursor: pointer;
  font-size: 38px;
  line-height: 1;
  transform: translateY(-50%);
}

.ash-project-modal__nav--prev {
  left: 14px;
}

.ash-project-modal__nav--next {
  right: 14px;
}

.ash-project-modal__counter {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: var(--b2c-radius-pill);
  background: rgba(18, 26, 43, 0.82);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.ash-project-modal__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.ash-project-modal__thumbs button {
  flex: 0 0 86px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  background: var(--b2c-primary-soft);
  cursor: pointer;
}

.ash-project-modal__thumbs button.is-active {
  border-color: var(--b2c-primary);
}

.ash-project-modal__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ash-project-modal__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 4px 4px 0;
}

.ash-project-modal__kicker {
  color: var(--b2c-primary-strong);
  font-size: 15px;
  font-weight: 800;
}

.ash-project-modal__info h2 {
  margin: 0;
  color: var(--b2c-text);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.08;
}

.ash-project-modal__info p {
  margin: 0;
  color: var(--b2c-muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.ash-project-modal__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ash-project-modal__facts div {
  display: grid;
  gap: 7px;
  min-height: 84px;
  padding: 14px 16px;
  border: 1px solid var(--b2c-line);
  border-radius: var(--b2c-radius-inner);
  background: var(--b2c-surface-soft);
}

.ash-project-modal__facts span,
.ash-project-modal__works span {
  color: var(--b2c-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.ash-project-modal__facts strong {
  color: var(--b2c-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.ash-project-modal__works {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--b2c-line);
  border-radius: var(--b2c-radius-inner);
  background: var(--b2c-surface-soft);
}

.ash-project-modal__cta {
  min-height: 54px;
  margin-top: auto;
}

@media (max-width: 991.98px) {
  .ash-project-modal {
    align-items: start;
    padding: 12px;
  }

  .ash-project-modal__dialog {
    max-height: calc(100vh - 24px);
    padding: 18px;
    border-radius: 24px;
  }

  .ash-project-modal__layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ash-project-modal__close {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 575.98px) {
  .ash-project-modal__image-frame {
    aspect-ratio: 1 / 1;
  }

  .ash-project-modal__nav {
    width: 44px;
    height: 44px;
    font-size: 30px;
  }

  .ash-project-modal__thumbs button {
    flex-basis: 68px;
  }

  .ash-project-modal__facts {
    grid-template-columns: 1fr;
  }
}

.b2c-choice-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 34px;
  align-items: start;
}

.b2c-choice-grid {
  display: grid;
  gap: 18px;
}

.b2c-choice-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.b2c-choice-card span,
.b2c-trust-card span {
  display: inline-flex;
  margin-top: 20px;
  color: var(--b2c-primary-strong);
  font-size: 15px;
  font-weight: 800;
}

.b2c-kit-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.b2c-kit-card {
  min-height: 205px;
  padding: 24px;
  background: #fff;
}

.b2c-kit-card:nth-child(1),
.b2c-kit-card:nth-child(4) {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(84, 118, 255, 0.12), rgba(255, 255, 255, 0.96));
}

.b2c-kit-card:nth-child(2),
.b2c-kit-card:nth-child(3),
.b2c-kit-card:nth-child(5),
.b2c-kit-card:nth-child(6) {
  grid-column: span 1;
}

.b2c-kit-shared {
  --assembly-card-radius: var(--b2c-radius-card, 24px);
  --assembly-card-gap: var(--b2c-card-gap, 24px);
  --assembly-card-gap-mobile: var(--b2c-card-gap-mobile, 16px);
  --assembly-card-padding: var(--b2c-card-padding-text, 32px);
  --assembly-card-padding-mobile: var(--b2c-card-padding-text-mobile, 24px);
}

.b2c-kit-shared .assembly-kit-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.b2c-kit-shared .assembly-kit-heading .h2-title {
  max-width: 760px;
  margin: 0 0 14px !important;
  color: var(--b2c-text);
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: none;
}

.b2c-kit-shared .assembly-kit-heading__text {
  max-width: 680px;
  color: var(--b2c-muted);
  line-height: 1.55;
}

.b2c-kit-shared .power-grid {
  --power-card-gap: var(--assembly-card-gap);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--power-card-gap);
  margin-right: 0;
  margin-left: 0;
}

.b2c-kit-shared .power-grid > [class*="col-"] {
  width: auto;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
  margin-bottom: 0 !important;
}

.b2c-kit-shared .assembly-kit-card {
  min-height: 248px;
}

.b2c-kit-shared .power-item {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 244px;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--assembly-card-gap);
  overflow: hidden;
  padding: var(--assembly-card-padding-mobile) !important;
  border: 1px solid transparent;
  border-radius: var(--assembly-card-radius);
  background: var(--b2c-primary);
  color: #fff;
  outline: none;
  transition: background-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.b2c-kit-shared .power-item.power-item--gray {
  border-color: var(--b2c-line);
  background: #eff1f8;
  color: var(--b2c-text);
}

.b2c-kit-shared .power-grid .power-item:hover,
.b2c-kit-shared .power-grid .power-item:focus,
.b2c-kit-shared .power-grid .power-item:focus-visible {
  background: #232323;
  color: #fff;
  box-shadow: 0 18px 44px rgba(35, 35, 35, 0.18);
  transform: translateY(-2px);
}

.b2c-kit-shared .power-grid .power-item.power-item--gray:hover,
.b2c-kit-shared .power-grid .power-item.power-item--gray:focus,
.b2c-kit-shared .power-grid .power-item.power-item--gray:focus-visible {
  border-color: var(--b2c-primary);
  background: var(--b2c-primary);
  color: #fff;
}

.b2c-kit-shared .power-item__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.b2c-kit-shared .power-item__title {
  display: grid;
  max-width: 12em;
  gap: 0;
  margin-bottom: 0 !important;
  font-size: 20px;
  line-height: 1.18;
}

.b2c-kit-shared .power-item__title span {
  display: block;
}

.b2c-kit-shared .power-item__icon {
  --icon-size: 56px;
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  background-color: currentColor;
  color: #fff;
  transition: color 0.24s ease, transform 0.24s ease;
  -webkit-mask: var(--icon) center / var(--icon-size) var(--icon-size) no-repeat;
  mask: var(--icon) center / var(--icon-size) var(--icon-size) no-repeat;
}

.b2c-kit-shared .power-item.power-item--gray .power-item__icon {
  color: var(--b2c-primary);
}

.b2c-kit-shared .power-grid .power-item:hover .power-item__icon,
.b2c-kit-shared .power-grid .power-item:focus .power-item__icon,
.b2c-kit-shared .power-grid .power-item:focus-visible .power-item__icon {
  color: #fff;
  transform: translateY(-2px);
}

.b2c-kit-shared .power-item__icon--kit-profiles {
  --icon: url("/images/kit/include-icon-1.svg");
  --icon-size: 58px;
}

.b2c-kit-shared .power-item__icon--kit-fasteners {
  --icon: url("/images/kit/profit-icon-2.svg");
  --icon-size: 58px;
}

.b2c-kit-shared .power-item__icon--kit-docs {
  --icon: url("/images/kit/profit-icon-4.svg");
  --icon-size: 52px;
}

.b2c-kit-shared .power-item__icon--kit-delivery {
  --icon: url("/images/kit/choice-icon-3.svg");
  --icon-size: 58px;
}

.b2c-kit-shared .power-item__text {
  position: relative;
  min-height: calc(1.36em * 5);
  margin-top: auto;
  font-size: 16px !important;
  line-height: 1.36;
}

.b2c-kit-shared .power-item__text-base,
.b2c-kit-shared .power-item__text-more {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 34em;
  margin: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.b2c-kit-shared .power-item__text-base {
  opacity: 1;
}

.b2c-kit-shared .power-item__text-more {
  opacity: 0;
  transform: translateY(8px);
}

.b2c-kit-shared .power-item:hover .power-item__text-base,
.b2c-kit-shared .power-item:focus .power-item__text-base,
.b2c-kit-shared .power-item:focus-visible .power-item__text-base {
  opacity: 0;
  transform: translateY(-8px);
}

.b2c-kit-shared .power-item:hover .power-item__text-more,
.b2c-kit-shared .power-item:focus .power-item__text-more,
.b2c-kit-shared .power-item:focus-visible .power-item__text-more {
  opacity: 1;
  transform: translateY(0);
}

.b2c-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: stretch;
}

.b2c-flow__media {
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--b2c-line);
  border-radius: var(--b2c-radius-card);
  background: #dfe8f8;
  box-shadow: 0 16px 38px rgba(35, 58, 120, 0.08);
}

.b2c-flow__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b2c-flow__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.b2c-step-list {
  display: grid;
  gap: 12px;
}

.b2c-step-card {
  padding: 20px 22px;
  border: 1px solid var(--b2c-line);
  border-radius: var(--b2c-radius-inner);
  background: rgba(255, 255, 255, 0.78);
}

.b2c-step-card__index {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--b2c-primary-strong);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.b2c-step-card h3 {
  margin: 0;
  color: var(--b2c-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.b2c-step-card p {
  margin: 8px 0 0;
  color: var(--b2c-muted);
  font-size: 15px;
  line-height: 1.5;
}

.b2c-flow--steps-only {
  grid-template-columns: 1fr;
}

.b2c-flow--steps-only .b2c-flow__content {
  display: grid;
  gap: 24px;
}

.b2c-flow--steps-only .b2c-step-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.b2c-flow--steps-only .b2c-step-card {
  min-height: 286px;
  padding: 32px;
}

.b2c-flow--steps-only .b2c-step-card h3 {
  font-size: 24px;
  line-height: 1.12;
}

.b2c-flow--steps-only .b2c-step-card p {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.58;
}

.b2c-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.b2c-trust-card {
  display: flex;
  min-height: 225px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: #fff;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.b2c-trust-card--main {
  grid-row: span 2;
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  background: linear-gradient(135deg, var(--b2c-primary-strong), var(--ash-color-primary, #4d87f7) 58%, var(--ash-color-accent-strong, #39bdcf));
  box-shadow: 0 18px 36px rgba(84, 118, 255, 0.24);
}

.b2c-trust-card--main h2 {
  color: #fff;
}

.b2c-trust-card--main p {
  color: rgba(255, 255, 255, 0.88);
}

.b2c-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
  margin-top: 34px;
}

.b2c-stat-grid div {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.b2c-stat-grid strong {
  display: block;
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.b2c-stat-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.35;
}

.b2c-stat-grid strong .purecounter {
  display: inline;
  max-width: none;
  margin-top: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.b2c-price-factor-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.b2c-price-factor {
  position: relative;
  display: flex;
  aspect-ratio: 3 / 4;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  gap: 12px;
  padding: 24px;
  background: #f6f9ff;
  isolation: isolate;
  outline: none;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.b2c-price-factor__icon {
  order: 2;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.b2c-price-factor strong {
  position: relative;
  z-index: 2;
  order: 1;
  color: var(--b2c-text);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  transition: color 0.22s ease;
}

.b2c-price-factor span {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  margin-top: 0;
  color: var(--b2c-muted);
  font-size: 15px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(10px);
  transition: color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.b2c-price-factor:hover,
.b2c-price-factor:focus,
.b2c-price-factor:focus-visible {
  border-color: transparent;
  background: linear-gradient(135deg, var(--b2c-primary-strong), var(--ash-color-accent-strong, #39bdcf));
  box-shadow: 0 22px 48px rgba(49, 86, 220, 0.2);
  transform: translateY(-2px);
}

.b2c-price-factor:hover strong,
.b2c-price-factor:focus strong,
.b2c-price-factor:focus-visible strong,
.b2c-price-factor:hover span,
.b2c-price-factor:focus span,
.b2c-price-factor:focus-visible span {
  color: #fff;
}

.b2c-price-factor:hover span,
.b2c-price-factor:focus span,
.b2c-price-factor:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.b2c-price-factor:hover .b2c-price-factor__icon,
.b2c-price-factor:focus .b2c-price-factor__icon,
.b2c-price-factor:focus-visible .b2c-price-factor__icon {
  opacity: 0.14;
  transform: scale(1.06);
}

.b2c-faq {
  max-width: 920px;
}

.b2c-faq .accordion-item {
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 28px rgba(35, 58, 120, 0.06);
}

.b2c-faq .accordion-button {
  min-height: 78px;
  color: var(--b2c-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.b2c-faq .accordion-body p {
  margin: 0;
  color: var(--b2c-muted);
}

.b2c-home-section--faq .landing-faq-list {
  display: grid;
  width: 100%;
  gap: 14px;
}

.b2c-home-section--faq .landing-faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(214, 225, 255, 0.9);
  border-radius: var(--b2c-radius-card);
  box-shadow: var(--b2c-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.b2c-home-section--faq .landing-faq-item summary {
  position: relative;
  display: block;
  min-height: 64px;
  padding: 21px 70px 21px 24px;
  color: var(--b2c-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.b2c-home-section--faq .landing-faq-item summary::-webkit-details-marker {
  display: none;
}

.b2c-home-section--faq .landing-faq-item summary::marker {
  content: "";
}

.b2c-home-section--faq .landing-faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 28px;
  height: 28px;
  border-radius: var(--b2c-radius-pill);
  background:
    linear-gradient(#fff, #fff) center / 12px 2px no-repeat,
    linear-gradient(#fff, #fff) center / 2px 12px no-repeat,
    var(--b2c-primary);
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.b2c-home-section--faq .landing-faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.b2c-home-section--faq .landing-faq-item p {
  max-width: 74ch;
  margin: 0;
  padding: 0 24px 24px;
  color: var(--b2c-muted);
  font-size: 16px;
  line-height: 1.55;
}

.b2c-request-section {
  padding-bottom: 90px;
}

.b2c-request-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.b2c-request-panel__copy {
  position: sticky;
  top: 118px;
}

.b2c-request-panel__form .form__container,
.b2c-request-panel__form .site-lead-form,
.b2c-request-panel__form .local-form {
  width: 100%;
}

.lstk-inline-request-section {
  padding-bottom: 88px;
}

.lstk-inline-request-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 44px);
  align-items: stretch;
}

.lstk-inline-request-card__media {
  min-height: 430px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(35, 58, 120, 0.08);
}

.lstk-inline-request-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 56%;
}

.lstk-inline-request-card__content {
  display: grid;
  align-content: start;
  gap: 22px;
  min-width: 0;
  padding: clamp(28px, 3vw, 36px);
  border: 2px solid var(--b2c-primary);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(35, 58, 120, 0.08);
}

.lstk-inline-request-card__copy {
  display: grid;
  gap: 10px;
}

.lstk-inline-request-card__copy .b2c-section-kicker {
  display: inline-grid;
  grid-template-columns: 28px auto;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0;
  color: var(--b2c-primary-strong);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.lstk-inline-request-card__copy .b2c-section-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.58;
}

.lstk-inline-request-card__copy h2 {
  max-width: 680px;
  margin: 0;
  color: var(--b2c-text);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.lstk-inline-request-card__copy p {
  max-width: 760px;
  margin: 0;
  color: var(--b2c-muted);
  font-size: 18px;
  line-height: 1.45;
}

.lstk-inline-request-card__form .site-lead-form {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lstk-inline-request-card__form .site-lead-form > .row {
  margin: 0;
}

.lstk-inline-request-card__form .site-lead-form > .row > .col-12 {
  padding: 0;
}

.lstk-inline-request-card__form .site-lead-form .d-xl-flex {
  display: block !important;
  margin: 0 !important;
}

.lstk-inline-request-card__form .site-lead-form .perezvonim-form-body {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  margin: 0 0 22px;
}

.site-lead-form:not(.local-form) .perezvonim-form-body {
  display: flex !important;
}

.lstk-inline-request-card__form .site-lead-form .perezvonim-form-body > .form-field {
  width: 100%;
  min-width: 0;
}

.lstk-inline-request-card__form .site-lead-form .form-field--question,
.lstk-inline-request-card__form .site-lead-form .form-field-wide {
  grid-column: 1 / -1;
}

.lstk-inline-request-card__form .site-lead-form .form-field-label {
  margin-bottom: 6px;
  color: var(--b2c-text);
  font-size: 14px;
  font-weight: 800;
}

.lstk-inline-request-card__form .site-lead-form .form-control {
  min-height: 62px;
  padding: 15px 22px;
  border: 1px solid #d8e3ff !important;
  border-radius: 16px !important;
  background: #f7faff !important;
  color: var(--b2c-text);
  font-size: 16px;
  box-shadow: none;
}

.lstk-inline-request-card__form .site-lead-form textarea.form-control {
  min-height: 128px;
  resize: vertical;
}

.lstk-inline-request-card__form .site-lead-form .form-control::placeholder {
  color: #7b8192;
}

.lstk-inline-request-card__form .site-lead-form .btn-primary {
  min-height: 62px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--b2c-primary-strong), var(--ash-color-primary, #4d87f7) 58%, var(--ash-color-accent-strong, #39bdcf));
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(84, 118, 255, 0.22);
}

.lstk-inline-request-card__form .site-lead-form .btn-primary:hover,
.lstk-inline-request-card__form .site-lead-form .btn-primary:focus-visible {
  transform: translateY(-1px);
}

.lstk-inline-request-card__form .site-lead-form .text-center {
  text-align: center !important;
}

.lstk-inline-request-card__form .site-lead-form .fs-10 {
  max-width: 620px;
  margin: 0 auto;
  color: var(--b2c-muted) !important;
  font-size: 11px !important;
  line-height: 1.5;
  opacity: 0.72 !important;
}

.lstk-inline-request-card__form .site-lead-form + .form__container_success {
  margin-top: 18px;
  border-radius: 16px;
  background: #e5ecff;
  color: var(--b2c-primary-strong);
}

@media (max-width: 1199.98px) {
  .b2c-home-hero {
    padding-top: 14px;
  }

  .b2c-home-hero__media {
    height: auto;
    min-height: 520px;
  }

  .b2c-home-hero__content {
    gap: 20px;
    padding: 48px;
  }

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

  .ash-video-feature-card {
    min-height: 500px;
  }

  .ash-video-feature-card__content {
    padding: 48px;
  }

  .ash-video-feature-card__bottom {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .ash-video-feature-card__actions {
    justify-content: flex-start;
  }

  .b2c-typical-projects__head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 18px;
  }

  .b2c-typical-projects__head p {
    max-width: 640px;
  }

  .b2c-scenarios-head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .b2c-build-slide {
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  }

  .b2c-scenario-grid,
  .b2c-project-grid,
  .b2c-choice-panel,
  .b2c-flow,
  .b2c-trust-grid,
  .b2c-request-panel {
    grid-template-columns: 1fr 1fr;
  }

  .b2c-kit-grid,
  .b2c-price-factor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b2c-price-factor-grid .b2c-price-factor:last-child {
    grid-column: 1 / -1;
  }

  .b2c-kit-card:nth-child(n) {
    grid-column: auto;
  }

  .b2c-flow__media {
    min-height: 540px;
  }

  .lstk-inline-request-card {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
    gap: 28px;
  }

  .lstk-inline-request-card__media {
    min-height: 410px;
  }

  .b2c-trust-card--main {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 767.98px) {
  .b2c-home-hero {
    padding: 10px 0 46px;
  }

  .b2c-home-hero__media {
    min-height: 560px;
    border-radius: 26px;
  }

  .b2c-home-hero__shade {
    background: linear-gradient(180deg, rgba(8, 17, 38, 0.38), rgba(8, 17, 38, 0.82));
  }

  .b2c-home-hero__content {
    display: flex;
    width: 100%;
    min-height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 32px 24px;
  }

  .b2c-home-hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .ash-video-feature-card {
    min-height: 540px;
    border-radius: 26px;
  }

  .ash-video-feature-card__shade {
    background: linear-gradient(180deg, rgba(8, 17, 38, 0.36), rgba(8, 17, 38, 0.86));
  }

  .ash-video-feature-card__content {
    padding: 32px 24px;
  }

  .ash-video-feature-card__title {
    font-size: 34px;
    line-height: 1.08;
  }

  .ash-video-feature-card__bottom {
    gap: 22px;
  }

  .ash-video-feature-card__lead {
    max-width: 100%;
    font-size: 17px;
  }

  .ash-video-feature-card__actions {
    width: 100%;
  }

  .ash-video-feature-card__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .b2c-home-hero p {
    max-width: 100%;
    margin-top: 12px;
    font-size: 17px;
  }

  .b2c-home-hero__lead {
    min-height: 0;
  }

  .b2c-home-hero__lead-short {
    display: none;
  }

  .b2c-home-hero__lead-full {
    position: static;
    display: block;
    opacity: 1;
    transform: none;
  }

  .b2c-home-hero__actions,
  .b2c-home-center {
    margin-top: 22px;
    width: 100%;
    justify-content: stretch;
  }

  .b2c-home-hero__actions .btn,
  .b2c-home-center .btn {
    width: 100%;
    min-width: 0;
  }

  .b2c-home-section {
    padding: 50px 0;
  }

  .b2c-home-section--first {
    padding-top: 0;
  }

  .b2c-home-heading h2,
  .b2c-request-panel__copy h2,
  .b2c-trust-card--main h2 {
    font-size: 32px;
  }

  .b2c-home-heading p,
  .b2c-request-panel__copy p,
  .b2c-trust-card--main p {
    font-size: 16px;
  }

  .b2c-typical-projects__head {
    margin-bottom: 24px;
  }

  .b2c-typical-projects__head h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .b2c-typical-projects__head p {
    font-size: 16px;
  }

  .b2c-typical-projects__copy {
    gap: 12px;
  }

  .b2c-scenarios-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
    margin-bottom: 24px;
  }

  .b2c-scenarios-head .b2c-carousel-controls {
    justify-self: start;
  }

  .ash-section-head {
    gap: 12px;
    margin-bottom: 24px;
  }

  .ash-section-title,
  main .ash-section-title.h1-title,
  main .ash-section-title.h2-title,
  main .ash-section-title.h2-title-36,
  main .ash-section-title.main-title {
    font-size: 32px !important;
  }

  .ash-section-title.ash-objects-heading {
    font-size: 32px !important;
  }

  .ash-section-lead,
  main .ash-section-lead,
  main .ash-section-lead.fs-lg-20,
  main .ash-section-lead.fs-lg-24,
  main .ash-section-lead.fw-medium,
  main .ash-section-lead.fw-semibold,
  main .ash-section-lead.fw-bold {
    font-size: 16px !important;
  }

  .ash-section-lead.ash-objects-hero__lead,
  .ash-section-lead.ash-objects-section-lead {
    font-size: 16px !important;
  }

  .b2c-carousel-control {
    width: 46px;
    height: 46px;
  }

  .b2c-typical-carousel {
    grid-auto-columns: minmax(292px, 86vw);
    gap: var(--b2c-card-gap-mobile);
    margin: -26px -12px -40px;
    padding: 34px 12px 58px;
    scroll-padding-left: 12px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  }

  .b2c-build-carousel {
    grid-auto-columns: calc(100% - 8px);
    gap: var(--b2c-card-gap-mobile);
    padding-bottom: 10px;
  }

  .b2c-build-slide {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }

  .b2c-build-slide__copy {
    order: 2;
    padding: 20px;
  }

  .b2c-build-slide__media {
    order: 1;
    min-height: 190px;
    aspect-ratio: 16 / 10;
    padding: 20px;
  }

  .b2c-build-slide h3 {
    font-size: 25px;
  }

  .b2c-build-slide p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.45;
  }

  .b2c-build-slide__facts {
    gap: 7px;
    padding-top: 18px;
  }

  .b2c-build-slide__facts span {
    min-height: 30px;
    padding: 6px 11px;
    font-size: 13px;
  }

  .b2c-build-slide__button {
    width: 100%;
    min-height: 44px;
    margin-top: 16px;
    font-size: 16px;
  }

  .b2c-build-slide__media strong {
    font-size: 30px;
  }

  .b2c-typical-card__body {
    min-height: 0;
    padding: 18px 20px 20px;
  }

  .b2c-typical-card h3 {
    font-size: 25px;
  }

  .b2c-typical-card p {
    font-size: 16px;
  }

  .b2c-typical-card__price strong {
    font-size: 31px;
  }

  .b2c-scenario-grid,
  .b2c-project-grid,
  .b2c-choice-panel,
  .b2c-choice-grid,
  .b2c-kit-grid,
  .b2c-flow,
  .b2c-trust-grid,
  .b2c-stat-grid,
  .b2c-price-factor-grid,
  .b2c-request-panel {
    grid-template-columns: 1fr;
  }

  .b2c-price-factor-grid .b2c-price-factor:last-child {
    grid-column: auto;
  }

  .b2c-project-grid {
    gap: var(--b2c-card-gap-mobile);
  }

  .b2c-trust-card--main {
    grid-column: auto;
  }

  .b2c-scenario-card,
  .b2c-choice-card,
  .b2c-kit-card,
  .b2c-trust-card,
  .b2c-price-factor {
    min-height: 0;
    padding: 22px;
  }

  .b2c-price-factor {
    aspect-ratio: 3 / 4;
    min-height: 260px;
  }

  .b2c-price-factor span {
    position: static;
    margin-top: auto;
    opacity: 1;
    transform: none;
  }

  .b2c-project-card__body {
    min-height: 0;
  }

  .b2c-project-card__price strong {
    font-size: 28px;
  }

  .b2c-flow__media {
    min-height: 330px;
  }

  .b2c-request-panel__copy {
    position: static;
  }

  .lstk-inline-request-section {
    padding-bottom: 56px;
  }

  .lstk-inline-request-card {
    grid-template-columns: 1fr;
  }

  .lstk-inline-request-card__media {
    height: clamp(300px, 78vw, 360px);
    min-height: 0;
  }

  .lstk-inline-request-card__content {
    padding: 24px;
    border-radius: 16px;
  }

  .lstk-inline-request-card__copy h2 {
    font-size: 30px;
  }

  .lstk-inline-request-card__copy p {
    font-size: 16px;
  }

  .lstk-inline-request-card__form .site-lead-form .perezvonim-form-body {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lstk-inline-request-card__form .site-lead-form .form-field--question,
  .lstk-inline-request-card__form .site-lead-form .form-field-wide {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .b2c-home-hero__media {
    min-height: 540px;
  }

  .b2c-home-hero h1 {
    font-size: 31px;
  }

  .b2c-home-hero__content {
    padding: 28px 20px;
  }

  .b2c-faq .accordion-button {
    min-height: 72px;
    font-size: 16px;
  }

  .b2c-home-section--faq .landing-faq-item summary {
    min-height: 60px;
    padding: 18px 58px 18px 20px;
    font-size: 16px;
  }

  .b2c-home-section--faq .landing-faq-item summary::after {
    right: 20px;
    width: 26px;
    height: 26px;
  }

  .b2c-home-section--faq .landing-faq-item p {
    padding: 0 20px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .b2c-scenario-card,
  .b2c-choice-card,
  .b2c-trust-card,
  .b2c-project-card,
  .b2c-project-card__image img {
    transition: none;
  }
}

/* Landing process block: keep the merged steps layout after shared responsive rules. */
.b2c-flow.b2c-flow--steps-only {
  grid-template-columns: 1fr;
}

.b2c-flow.b2c-flow--steps-only .b2c-step-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1199px) {
  .b2c-flow.b2c-flow--steps-only .b2c-step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .b2c-flow.b2c-flow--steps-only .b2c-step-list {
    grid-template-columns: 1fr;
  }

}

footer.site-footer {
  display: block;
  padding: clamp(34px, 5vw, 72px) 0 28px;
  background: transparent;
}

.site-footer .footer-shell {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  padding: clamp(24px, 3.6vw, 40px) 0 0;
  border-top: 1px solid rgba(17, 28, 51, 0.12);
}

.site-footer .footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.site-footer .footer-brand,
.site-footer .footer-contact {
  display: grid;
  gap: 22px;
}

.site-footer .footer-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 16px;
}

.site-footer .footer-logo img {
  display: block;
  width: 104px;
  height: auto;
}

.site-footer .footer-logo:focus-visible,
.site-footer .footer-contact__link:focus-visible,
.site-footer .footer-social:focus-visible {
  outline: 3px solid rgba(84, 118, 255, 0.24);
  outline-offset: 4px;
}

.site-footer .footer-company,
.site-footer .footer-disclaimer,
.site-footer .footer-address {
  margin: 0;
  color: rgba(79, 91, 116, 0.76);
  font-size: 14px;
  line-height: 1.62;
}

.site-footer .footer-contact {
  justify-self: end;
  min-width: min(100%, 360px);
}

.site-footer .footer-contact__item {
  display: grid;
  gap: 6px;
}

.site-footer .footer-contact__label {
  color: rgba(79, 91, 116, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.site-footer .footer-contact__link {
  width: fit-content;
  color: var(--b2c-primary-strong);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer .footer-contact__link:hover {
  color: #1e45c4;
  transform: translateY(-1px);
}

.site-footer .footer-phone-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer .footer-socials {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-footer .footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--b2c-radius-pill);
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-footer .footer-social:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.site-footer .footer-social img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.site-footer .footer-address {
  color: var(--b2c-muted);
  font-style: normal;
}

.site-footer .footer-disclaimer {
  max-width: 980px;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 28, 51, 0.08);
}

@media (max-width: 820px) {
  .site-footer .footer-main {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-contact {
    justify-self: start;
    min-width: 0;
  }
}

@media (max-width: 580px) {
  footer.site-footer {
    padding-top: 30px;
  }

  .site-footer .footer-shell {
    padding-top: 22px;
  }

  .site-footer .footer-brand,
  .site-footer .footer-contact {
    gap: 18px;
  }
}

@media (min-width: 768px) {
  .b2c-kit-shared .power-item {
    padding: var(--assembly-card-padding) !important;
  }

  .b2c-kit-shared .power-item__title {
    font-size: 24px;
  }
}

@media (min-width: 992px) {
  .b2c-kit-shared .power-item {
    min-height: 250px;
  }
}

@media (max-width: 767.98px) {
  .b2c-kit-shared .power-grid {
    --power-card-gap: var(--assembly-card-gap-mobile);
    grid-template-columns: 1fr;
  }

  .b2c-kit-shared .assembly-kit-heading {
    margin-bottom: 24px;
  }

  .b2c-kit-shared .assembly-kit-card {
    min-height: 230px;
  }

  .b2c-kit-shared .power-item {
    min-height: 236px;
    gap: var(--assembly-card-gap);
  }
}

.eyebrow,
.section-kicker,
.b2c-section-kicker,
.request-highlight__eyebrow,
.hero-benefit-panel__kicker,
main .eyebrow,
main .section-kicker,
main .b2c-section-kicker,
main .request-highlight__eyebrow,
main .hero-benefit-panel__kicker {
  display: none !important;
}

.ash-section-title,
.ash-section-title.h1-title,
.ash-section-title.h2-title,
.ash-section-title.h2-title-36,
.ash-section-title.main-title,
.b2c-home-heading h2,
.b2c-typical-projects__head h2,
.b2c-request-panel__copy h2,
.b2c-trust-card--main h2,
.lstk-inline-request-card__copy h2,
main .ash-section-title,
main .ash-section-title.h1-title,
main .ash-section-title.h2-title,
main .ash-section-title.h2-title-36,
main .ash-section-title.main-title,
main .b2c-home-heading h2,
main .b2c-typical-projects__head h2,
main .b2c-request-panel__copy h2,
main .b2c-trust-card--main h2,
main .lstk-inline-request-card__copy h2 {
  line-height: 1.06 !important;
  letter-spacing: 0 !important;
}

.b2c-heading-line,
main .b2c-heading-line {
  line-height: inherit;
}

/* Process steps: concise by default, detailed on intent. */
.b2c-flow.b2c-flow--steps-only .b2c-step-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.b2c-flow.b2c-flow--steps-only .b2c-step-card {
  position: relative;
  display: grid;
  align-items: start;
  min-height: 0;
  aspect-ratio: 1 / 1;
  padding: 32px;
  overflow: hidden;
  border-color: var(--b2c-line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 32px rgba(35, 58, 120, 0.08);
  transition:
    background 0.26s ease,
    border-color 0.26s ease,
    box-shadow 0.26s ease,
    transform 0.26s ease;
}

.b2c-flow.b2c-flow--steps-only .b2c-step-card__index {
  display: none;
}

.b2c-flow.b2c-flow--steps-only .b2c-step-card h3,
.b2c-flow.b2c-flow--steps-only .b2c-step-card p {
  grid-area: 1 / 1;
  margin: 0;
  transition:
    opacity 0.2s ease,
    transform 0.24s ease;
}

.b2c-flow.b2c-flow--steps-only .b2c-step-card h3 {
  max-width: 11ch;
  font-size: 24px;
  line-height: 1.12;
}

.b2c-flow.b2c-flow--steps-only .b2c-step-card p {
  align-self: start;
  color: rgba(255, 255, 255, 0.94);
  font-size: 17px;
  line-height: 1.58;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.b2c-flow.b2c-flow--steps-only .b2c-step-card:hover,
.b2c-flow.b2c-flow--steps-only .b2c-step-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, var(--b2c-primary-strong), var(--ash-color-primary, #4d87f7) 58%, var(--ash-color-accent-strong, #39bdcf));
  box-shadow: 0 18px 36px rgba(84, 118, 255, 0.24);
  transform: translateY(-2px);
}

.b2c-flow.b2c-flow--steps-only .b2c-step-card:hover h3,
.b2c-flow.b2c-flow--steps-only .b2c-step-card:focus-visible h3 {
  opacity: 0;
  transform: translateY(-12px);
}

.b2c-flow.b2c-flow--steps-only .b2c-step-card:hover p,
.b2c-flow.b2c-flow--steps-only .b2c-step-card:focus-visible p {
  opacity: 1;
  transform: translateY(0);
}

.b2c-flow.b2c-flow--steps-only .b2c-step-card:focus-visible {
  outline: 3px solid rgba(49, 86, 220, 0.28);
  outline-offset: 4px;
}

@media (max-width: 1199px) {
  .b2c-flow.b2c-flow--steps-only .b2c-step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .b2c-flow.b2c-flow--steps-only .b2c-step-list {
    grid-template-columns: 1fr;
  }

  .b2c-flow.b2c-flow--steps-only .b2c-step-card {
    aspect-ratio: auto;
    min-height: 220px;
    gap: 18px;
    padding: 24px;
  }

  .b2c-flow.b2c-flow--steps-only .b2c-step-card h3,
  .b2c-flow.b2c-flow--steps-only .b2c-step-card p {
    grid-area: auto;
    opacity: 1;
    transform: none;
  }

  .b2c-flow.b2c-flow--steps-only .b2c-step-card h3 {
    max-width: none;
  }

  .b2c-flow.b2c-flow--steps-only .b2c-step-card p {
    align-self: end;
    color: var(--b2c-muted);
    font-size: 16px;
    line-height: 1.55;
  }

  .b2c-flow.b2c-flow--steps-only .b2c-step-card:hover,
  .b2c-flow.b2c-flow--steps-only .b2c-step-card:focus-visible {
    border-color: var(--b2c-line);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 32px rgba(35, 58, 120, 0.08);
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .b2c-flow.b2c-flow--steps-only .b2c-step-card,
  .b2c-flow.b2c-flow--steps-only .b2c-step-card h3,
  .b2c-flow.b2c-flow--steps-only .b2c-step-card p {
    transition: none;
  }
}
