/* aspectweldio: home page */
body.site.route-home {
  background:
    radial-gradient(circle at 20% 0%, rgba(227, 113, 17, 0.12), transparent 28%),
    radial-gradient(circle at 80% 15%, rgba(255, 255, 255, 0.04), transparent 20%),
    linear-gradient(180deg, var(--aw-bg-header) 0%, var(--aw-bg-main) 12%, var(--aw-bg-main) 100%);
}


body.site.route-home .container-breadcrumbs {
  display: none;
}

.aw-home-hero {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin: 0 0 34px;
  padding: 0;
}

.aw-home-hero__shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--aw-radius-lg);
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,0.035), transparent 22%),
    linear-gradient(180deg, rgba(27,30,34,0.96), rgba(20,23,27,0.94));
  box-shadow: var(--aw-shadow-soft);
}

.aw-home-hero__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(227,113,17,0.07), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.025), transparent 44%);
  pointer-events: none;
}

.aw-home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.aw-home-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.aw-home-hero__title {
  margin: 0;
  max-width: 8.9ch;
  color: var(--aw-text-primary);
  font-size: 64px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: none;
}

.aw-home-hero__text {
  max-width: 620px;
  margin-top: 20px;
  color: var(--aw-text-secondary);
  font-size: 17px;
  line-height: 1.75;
}

.aw-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.aw-home-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: .2s ease;
}

.aw-home-hero__btn,
.aw-home-hero__btn:is(:link, :visited, :hover, :focus) {
  text-decoration: none;
  color: inherit;
}

body.site .aw-home-hero__actions a.aw-home-hero__btn--primary,
body.site .aw-home-hero__actions a.aw-home-hero__btn--primary:is(:link, :visited) {
  background: #c86410;
  color: #F2F3F5 !important;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
}

body.site .aw-home-hero__actions a.aw-home-hero__btn--primary:is(:hover, :focus, :active) {
  background: #d96f14;
  color: #F2F3F5 !important;
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset;
}

body.site .aw-home-hero__actions a.aw-home-hero__btn--primary:is(:hover, :focus, :active) * {
  color: #F2F3F5 !important;
}

.aw-home-hero__btn--ghost {
  border: 1px solid var(--aw-border-soft);
  background: rgba(255,255,255,0.03);
  color: var(--aw-text-primary);
}

.aw-home-hero__btn--ghost:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.18);
}

.aw-home-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 30px;
  max-width: 720px;
}

.aw-home-hero__stat {
  padding: 18px 16px;
  border: 1px solid var(--aw-border-soft);
  border-radius: 18px;
  background: rgba(0,0,0,0.20);
}

.aw-home-hero__stat-value {
  color: var(--aw-text-primary);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
}

.aw-home-hero__stat-label {
  margin-top: 6px;
  color: var(--aw-text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.aw-home-hero__media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: linear-gradient(135deg, #272B30, #1D2024);
}

.aw-home-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aw-home-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23,24,26,0.14) 0%, rgba(23,24,26,0.05) 32%, rgba(23,24,26,0.18) 100%),
    radial-gradient(circle at 78% 28%, rgba(255,255,255,0.05), transparent 18%);
  pointer-events: none;
}

@media (max-width: 1279px) {
  .aw-home-hero__grid { grid-template-columns: 1fr; }
  .aw-home-hero__media { min-height: 380px; }
}

@media (max-width: 991.98px) {
  .aw-home-hero {
    margin: 0 0 24px;
    padding: 0;
  }

  .aw-homepage__container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .aw-home-hero__content { padding: 32px 24px; }
  .aw-home-hero__title { font-size: 44px; }
  .aw-home-hero__text { font-size: 16px; line-height: 1.8; }
}

@media (max-width: 767.98px) {
  .aw-home-hero__title { font-size: 36px; }
  .aw-home-hero__stats { grid-template-columns: 1fr; }
  .aw-home-hero__actions { flex-direction: column; }
  .aw-home-hero__btn { width: 100%; }
}

.aw-homepage {
  position: relative;
  z-index: 1;
  padding: 24px 0 72px;
}

.aw-homepage__container {
  width: 100%;
  max-width: var(--aw-container);
  margin: 0 auto;
  padding-left: var(--aw-shell-inline);
  padding-right: var(--aw-shell-inline);
  box-sizing: border-box;
}

.aw-home-section {
  margin-top: 18px;
}

.aw-homepage__panel {
  border: 1px solid var(--aw-border-soft);
  border-radius: var(--aw-radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  box-shadow: var(--aw-shadow-soft);
}

.aw-homepage__panel--flat {
  padding: clamp(20px, 2.4vw, 32px);
}

.aw-homepage__panel--cta {
  overflow: hidden;
}

.aw-homepage__module-stack {
  display: grid;
  gap: 20px;
}

@media (max-width: 991.98px) {
  .aw-homepage {
    padding-top: 16px;
    padding-bottom: 48px;
  }

  .aw-homepage__container {
    padding-left: var(--aw-shell-inline);
    padding-right: var(--aw-shell-inline);
  }
}

/* Home-only heading suppression migrated from legacy shared layer.
   Keeps the SEO header hidden on the live homepage without polluting the shared stylesheet. */
body.site.route-home .page-header--seo-only {
  display: none;
}


/* Homepage: popular products by category chips */


.aw-home-section--top-products {
  width: 100%;
}

.aw-home-top-products {
  width: 100%;
}

.aw-home-section--top-products .row {
  margin-left: 0;
  margin-right: 0;
}

.aw-home-section--top-products [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}


.aw-hitcats-block,
.aw-hitcats-block * {
  box-sizing: border-box;
}

.aw-hitcats-block {
  position: relative;
  width: 100%;
  padding: 0;
}

.aw-hitcats-shell {
  position: relative;
  width: 100%;
  padding: 22px 22px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at top center, rgba(227,113,17,0.10), transparent 34%),
    linear-gradient(180deg, rgba(39,43,48,0.94) 0%, rgba(30,33,39,0.96) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.aw-hitcats-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.aw-hitcats-eyebrow {
  display: none;
  /* hidden intentionally */
  /* was: inline-flex */
  align-items: center;
  align-self: flex-start;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(227,113,17,0.26);
  border-radius: 999px;
  background: rgba(227,113,17,0.08);
  color: var(--aw-accent, #E37111);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.aw-hitcats-title {
  margin: 0;
  color: var(--aw-text-primary, #F2F3F5);
  font-size: clamp(30px, 2.2vw, 34px);
  line-height: 1.08;
  font-weight: 700;
  text-transform: none;
}

.aw-hitcats-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.aw-hitcats-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: var(--aw-text-secondary, #C8CCD2);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-transform: none;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.aw-hitcats-chip:hover,
.aw-hitcats-chip:focus-visible {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  color: #fff;
  outline: none;
}

.aw-hitcats-chip.is-active {
  background: var(--aw-accent, #E37111);
  border-color: var(--aw-accent, #E37111);
  color: #17181A;
}

.aw-hitcats-panes {
  position: relative;
}

.aw-hitcats-pane {
  width: 100%;
}

.aw-hitcats-swiper {
  width: 100%;
}

.aw-hitcats-swiper .swiper {
  overflow: hidden;
  padding: 2px 1px 6px;
}

.aw-hitcats-swiper .swiper-wrapper {
  align-items: stretch;
}

.aw-hitcats-swiper .swiper-slide {
  height: auto;
}

.aw-hitcats-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(33,36,41,0.96) 0%, rgba(28,31,36,0.98) 100%);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.aw-hitcats-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}

.aw-hitcats-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 18px;
  background: linear-gradient(180deg, #242a31 0%, #1d2025 100%);
}

.aw-hitcats-card__image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.aw-hitcats-card__image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.aw-hitcats-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 20px 18px 18px;
}

.aw-hitcats-card__name {
  min-height: 52px;
}

.aw-hitcats-block .aw-hitcats-card__name a,
.aw-hitcats-block .aw-hitcats-card__name a:link,
.aw-hitcats-block .aw-hitcats-card__name a:visited,
.aw-hitcats-block .aw-hitcats-card__name a:hover,
.aw-hitcats-block .aw-hitcats-card__name a:focus {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--aw-text-primary, #F2F3F5) !important;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.aw-hitcats-card__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}

.aw-hitcats-card__price-label {
  margin-bottom: 6px;
  color: var(--aw-text-muted, #979DA6);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.aw-hitcats-card__price {
  color: var(--aw-text-secondary, #C8CCD2) !important;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 700;
}

.aw-hitcats-card__btn,
.aw-hitcats-card__btn:link,
.aw-hitcats-card__btn:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  color: var(--aw-text-primary, #F2F3F5);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.aw-hitcats-card__btn:hover,
.aw-hitcats-card__btn:focus-visible {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  color: #fff;
  outline: none;
}

.aw-hitcats-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

.aw-hitcats-pagination {
  position: static;
  inset: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aw-hitcats-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 5px;
  background: rgba(255,255,255,0.20);
  opacity: 1;
}

.aw-hitcats-pagination .swiper-pagination-bullet-active {
  background: var(--aw-accent, #E37111);
}

.aw-hitcats-empty {
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  color: var(--aw-text-secondary, #C8CCD2);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 991.98px) {
  .aw-hitcats-shell {
    padding: 18px 16px 16px;
    border-radius: 24px;
  }

  .aw-hitcats-title {
    font-size: 24px;
  }

  .aw-hitcats-card {
    border-radius: 22px;
  }

  .aw-hitcats-card__media {
    min-height: 190px;
    padding: 14px;
  }

  .aw-hitcats-card__image {
    max-height: 148px;
  }

  .aw-hitcats-block .aw-hitcats-card__name a,
  .aw-hitcats-block .aw-hitcats-card__name a:link,
  .aw-hitcats-block .aw-hitcats-card__name a:visited,
  .aw-hitcats-block .aw-hitcats-card__name a:hover,
  .aw-hitcats-block .aw-hitcats-card__name a:focus {
    font-size: 16px;
  }

  .aw-hitcats-card__bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .aw-hitcats-card__btn {
    width: 100%;
  }
}


/* ===== Advantages / Why choose us ===== */
.aw-home-section--advantages,
.aw-advantages {
  width: 100%;
}

.aw-advantages__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 7px 16px 8px;
  border-radius: 999px;
  border: 1px solid rgba(227,113,17,0.34);
  background: rgba(227,113,17,0.06);
  color: #E37111;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.aw-advantages__title {
  margin: 0 0 24px;
  color: #F2F3F5;
  font-size: clamp(28px, 2.5vw, 44px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.aw-advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.aw-advantages__card {
  display: flex;
  flex-direction: column;
  min-height: 212px;
  padding: 22px 24px 20px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(39,43,48,0.96) 0%, rgba(28,31,36,0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 14px 32px rgba(0,0,0,0.14);
}

.aw-advantages__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  min-height: 58px;
}

.aw-advantages__icon {
  flex: 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.aw-advantages__icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.aw-advantages__card-title {
  margin: 0;
  color: #F2F3F5;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
}

.aw-advantages__text {
  margin: 0;
  color: #C8CCD2;
  font-size: 15px;
  line-height: 1.6;
}

.aw-advantages__seo {
  color: #C8CCD2;
}

.aw-advantages__seo p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.75;
}

.aw-advantages__seo p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1199.98px) {
  .aw-advantages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .aw-advantages__eyebrow {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .aw-advantages__title {
    margin-bottom: 22px;
    font-size: 30px;
  }

  .aw-advantages__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 24px;
  }

  .aw-advantages__card {
    min-height: auto;
    padding: 20px 18px;
    border-radius: 22px;
  }

  .aw-advantages__head {
    gap: 12px;
    margin-bottom: 14px;
    min-height: auto;
  }

  .aw-advantages__icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .aw-advantages__icon img {
    width: 24px;
    height: 24px;
  }

  .aw-advantages__card-title {
    font-size: 16px;
  }

  .aw-advantages__text,
  .aw-advantages__seo p {
    font-size: 15px;
    line-height: 1.7;
  }
}
/* Homepage: manufacturers + certificates shared section */
.aw-home-section--brand-trust,
.aw-home-brand-trust {
  width: 100%;
}

.aw-home-brand-trust {
  --aw-brand-panel-desktop-height: 536px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.aw-home-brand-trust__panel {
  min-width: 0;
}

.aw-home-brand-trust__panel .aw-brand-panel {
  height: var(--aw-brand-panel-desktop-height);
  min-height: var(--aw-brand-panel-desktop-height);
}

.aw-brand-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px 26px 22px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 34% 0%, rgba(227,113,17,0.12), transparent 34%),
    linear-gradient(180deg, rgba(34,37,42,0.98) 0%, rgba(24,27,31,0.99) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 20px 48px rgba(0,0,0,0.18);
  overflow: hidden;
}

.aw-brand-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.aw-brand-panel__eyebrow {
  display: none;
}

.aw-brand-panel__title {
  margin: 0;
  color: #F2F3F5;
  font-family: var(--aw-font-headings, Montserrat, Arial, sans-serif);
  font-size: clamp(28px, 2.5vw, 42px);
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: -.03em;
}

.aw-brand-panel__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: #F17912;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none !important;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}

.aw-brand-panel__link:hover,
.aw-brand-panel__link:focus-visible {
  border-color: rgba(227,113,17,0.30);
  background: rgba(255,255,255,0.05);
  color: #fff;
  transform: translateY(-1px);
  outline: none;
}

.aw-brand-panel__body {
  flex: 1 1 auto;
}

.aw-brand-panel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.aw-brand-slider__nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.aw-brand-slider__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 0;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: #C8CCD2;
  font-size: 18px;
  line-height: 1;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease, color .2s ease, opacity .2s ease;
}

.aw-brand-slider__button:hover,
.aw-brand-slider__button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(227,113,17,0.30);
  background: rgba(255,255,255,0.05);
  color: #fff;
  outline: none;
}

.aw-brand-slider__button:disabled {
  opacity: .38;
  pointer-events: none;
}

.aw-brand-slider__pagination {
  position: static;
  width: auto;
  min-width: 84px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.aw-brand-slider__bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  opacity: 1;
  transition: width .2s ease, background-color .2s ease;
}

.aw-brand-slider__bullet.is-active {
  width: 28px;
  background: #E37111;
}

.aw-brand-pages {
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.aw-brand-page {
  display: none;
}

.aw-brand-page.is-active {
  display: block;
  flex: 1 1 auto;
  min-height: 0;
}

.aw-brand-grid {
  display: grid;
  gap: 16px;
}

.aw-brand-grid--manufacturers {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.aw-brand-grid--manufacturers-slider {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.aw-brand-grid--certificates {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 14px;
  height: 100%;
}

.aw-brand-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 176px;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(39,43,48,0.92) 0%, rgba(28,31,36,0.98) 100%);
  text-decoration: none !important;
  transition: transform .24s ease, border-color .24s ease, background-color .24s ease, box-shadow .24s ease;
  overflow: hidden;
}

.aw-brand-card--compact {
  min-height: 170px;
  padding: 18px;
  border-radius: 24px;
}

.aw-brand-card:hover,
.aw-brand-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(227,113,17,0.28);
  background: linear-gradient(180deg, rgba(44,48,54,0.94) 0%, rgba(31,34,39,0.98) 100%);
  box-shadow: 0 16px 32px rgba(0,0,0,0.18);
  outline: none;
}

.aw-brand-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 88px;
}

.aw-brand-card__media img {
  display: block;
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
}

.aw-brand-card__placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 78px;
  padding: 0 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #F2F3F5;
  font-family: var(--aw-font-headings, Montserrat, Arial, sans-serif);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .04em;
}

.aw-cert-card {
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  position: relative;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 0;
  height: 100%;
  padding: 12px 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(39,43,48,0.92) 0%, rgba(28,31,36,0.98) 100%);
  text-decoration: none !important;
  transition: transform .24s ease, border-color .24s ease, background-color .24s ease, box-shadow .24s ease;
  overflow: hidden;
}

.aw-cert-card--compact {
  min-height: 0;
  height: 100%;
}

.aw-cert-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(227,113,17,0.12), transparent 34%);
  opacity: 0;
  transition: opacity .24s ease;
  pointer-events: none;
}

.aw-cert-card:hover,
.aw-cert-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(227,113,17,0.28);
  background: linear-gradient(180deg, rgba(44,48,54,0.94) 0%, rgba(31,34,39,0.98) 100%);
  box-shadow: 0 16px 32px rgba(0,0,0,0.18);
  outline: none;
}

.aw-cert-card:hover::before,
.aw-cert-card:focus-visible::before {
  opacity: 1;
}

.aw-cert-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 8px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.aw-cert-card__media::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.aw-cert-card__media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 64px;
  object-fit: contain;
}

.aw-cert-card__file-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 64px;
  border-radius: 10px;
  background: #ffffff;
  color: #17181A;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.aw-cert-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.aw-cert-card__title {
  margin: 0;
  color: #F2F3F5;
  font-family: var(--aw-font-headings, Montserrat, Arial, sans-serif);
  font-size: 17px;
  line-height: 1.28;
  font-weight: 700;
}

.aw-cert-card__text {
  display: none;
}

.aw-cert-card__zoom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  color: #F17912;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: .02em;
}

.aw-cert-card__zoom::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(241,121,18,0.28);
  background: rgba(241,121,18,0.10);
  box-shadow: inset 0 0 0 4px rgba(241,121,18,0.04);
}

/* aw-cert-lightbox styles moved to css/shared/ui.css (shared UI layer) */


@media (max-width: 1199.98px) {
  .aw-home-brand-trust {
    grid-template-columns: 1fr;
  }

  .aw-home-brand-trust__panel .aw-brand-panel {
    height: auto;
    min-height: 0;
  }

  .aw-brand-grid--manufacturers-slider {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aw-brand-grid--certificates {
    height: auto;
    grid-template-rows: none;
  }

  .aw-cert-card,
  .aw-cert-card--compact {
    height: auto;
  }
}

@media (max-width: 767.98px) {
  .aw-brand-panel {
    padding: 20px 18px 18px;
    border-radius: 24px;
  }

  .aw-brand-panel__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
  }

  .aw-brand-panel__title {
    font-size: 28px;
  }

  .aw-brand-panel__footer {
    margin-top: 16px;
  }

  .aw-brand-slider__button {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .aw-brand-grid--manufacturers,
  .aw-brand-grid--manufacturers-slider {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .aw-brand-card,
  .aw-brand-card--compact {
    min-height: 138px;
    padding: 16px;
    border-radius: 22px;
  }

  .aw-brand-card__media img {
    max-height: 64px;
  }

  .aw-cert-card {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    min-height: 96px;
    padding: 12px;
    border-radius: 20px;
  }

  .aw-cert-card__media {
    min-height: 72px;
    padding: 6px;
    border-radius: 16px;
  }

  .aw-cert-card__media::after {
    inset: 6px;
    border-radius: 10px;
  }

  .aw-cert-card__media img {
    height: 56px;
  }

  .aw-cert-card__content {
    gap: 6px;
  }

  .aw-cert-card__title {
    font-size: 15px;
  }

}


/* Homepage: clients + side trust stack */
.aw-home-section--proof {
  width: 100%;
}

.aw-home-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: 24px;
  align-items: stretch;
}

.aw-home-proof__main,
.aw-home-proof__side {
  min-width: 0;
}

.aw-home-proof__side {
  display: grid;
  gap: 24px;
  grid-auto-rows: minmax(0, 1fr);
}

.aw-home-proof__main--clients {
  align-self: stretch;
}

.aw-home-proof__main--clients .aw-brand-panel__head {
  justify-content: flex-start;
}

.aw-home-proof__main--clients > .aw-brand-panel,
.aw-home-proof__main--clients .aw-brand-panel--clients {
  min-height: 760px;
  height: 760px;
}

.aw-brand-panel--clients .aw-brand-pages {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.aw-brand-panel--clients .aw-brand-page {
  flex: 1 1 auto;
  min-height: 0;
}

.aw-brand-panel--clients .aw-brand-page.is-active {
  display: block;
}

.aw-brand-grid--clients {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 16px;
  min-height: 586px;
  height: 586px;
}

.aw-brand-card--client {
  min-height: 184px;
  height: 184px;
  padding: 20px;
  border-radius: 26px;
  cursor: default;
  text-decoration: none !important;
}

.aw-brand-card--client,
.aw-brand-card--client:hover,
.aw-brand-card--client:focus-visible {
  transform: none;
  border-color: rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(39,43,48,0.92) 0%, rgba(28,31,36,0.98) 100%);
  box-shadow: none;
  outline: none;
}

.aw-brand-card--client .aw-brand-card__media {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.aw-brand-card--client .aw-brand-card__media img {
  width: 100%;
  max-width: 100%;
  max-height: 102px;
  height: auto;
  object-fit: contain;
}

.aw-brand-card--ghost {
  pointer-events: none;
  opacity: .16;
}

.aw-brand-card--ghost .aw-brand-card__media {
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
}

@media (max-width: 1399.98px) {
  .aw-home-proof {
    grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1.14fr);
  }

  .aw-home-proof__main--clients > .aw-brand-panel,
  .aw-home-proof__main--clients .aw-brand-panel--clients {
    min-height: 736px;
    height: 736px;
  }

  .aw-brand-grid--clients {
    min-height: 562px;
    height: 562px;
  }

  .aw-brand-card--client {
    min-height: 176px;
    height: 176px;
  }
}

@media (max-width: 1199.98px) {
  .aw-home-proof {
    grid-template-columns: 1fr;
  }

  .aw-home-proof__main--clients > .aw-brand-panel,
  .aw-home-proof__main--clients .aw-brand-panel--clients {
    min-height: auto;
    height: auto;
  }

  .aw-brand-grid--clients {
    min-height: auto;
    height: auto;
    grid-template-rows: none;
  }

  .aw-brand-card--client {
    min-height: 172px;
    height: 172px;
  }

  .aw-proof-industries__grid {
    min-height: auto;
    height: auto;
    grid-template-rows: none;
  }

  .aw-proof-industries__item,
  .aw-proof-industries__ghost {
    min-height: 96px;
    height: auto;
  }
}

@media (max-width: 767.98px) {
  .aw-brand-grid--clients {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
  }

  .aw-brand-card--client {
    min-height: 140px;
    height: 140px;
    padding: 16px;
  }

  .aw-brand-card--client .aw-brand-card__media img {
    max-height: 74px;
  }

  .aw-proof-industries__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .aw-proof-industries__item,
  .aw-proof-industries__ghost {
    min-height: 88px;
    padding: 14px 16px;
    border-radius: 20px;
  }

  .aw-proof-industries__title {
    font-size: 18px;
  }
}


/* Homepage: right stack module (industries + reviews) */
.aw-home-proof-wrap {
  width: 100%;
}

.aw-home-proof--clients-reviews {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1.22fr);
  gap: 24px;
  align-items: stretch;
}

.aw-home-proof__side--stack > .aw-proof-stack {
  height: 100%;
}

.aw-proof-stack {
  display: grid;
  gap: 24px;
  grid-template-rows: minmax(0, 1.08fr) minmax(0, 0.92fr);
  min-height: 100%;
}

.aw-proof-side__panel {
  min-width: 0;
}

.aw-proof-industries {
  min-height: 0;
}

.aw-proof-industries .aw-brand-pages {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.aw-proof-industries .aw-brand-page {
  flex: 1 1 auto;
  min-height: 0;
}

.aw-proof-industries .aw-brand-page.is-active {
  display: block;
}

.aw-proof-industries__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-height: 224px;
  height: 224px;
}

.aw-proof-industries__item,
.aw-proof-industries__ghost {
  position: relative;
  min-height: 0;
  height: 100%;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(39,43,48,0.82) 0%, rgba(28,31,36,0.94) 100%);
}

.aw-proof-industries__ghost {
  pointer-events: none;
  opacity: .16;
}

.aw-proof-industries__index {
  display: block;
  margin-bottom: 10px;
  color: #979DA6;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .12em;
}

.aw-proof-industries__title {
  margin: 0;
  color: #F2F3F5;
  font-family: var(--aw-font-headings, Montserrat, Arial, sans-serif);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.aw-proof-reviews {
  min-height: 0;
}

.aw-proof-reviews .aw-brand-panel__head {
  margin-bottom: 14px;
}

.aw-proof-reviews .aw-brand-panel {
  padding-top: 22px;
  padding-bottom: 18px;
}

.aw-proof-review {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.aw-proof-review__name {
  margin: 0 0 8px;
  color: #F2F3F5;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.aw-proof-review__stars {
  margin-bottom: 10px;
  color: #F17912;
  font-size: 16px;
  letter-spacing: .18em;
}

.aw-proof-review__text {
  margin: 0;
  color: #C8CCD2;
  font-size: 14px;
  line-height: 1.58;
}

.aw-proof-review__cta {
  margin-top: auto;
  padding-top: 12px;
  color: #979DA6;
  font-size: 13px;
  line-height: 1.5;
}

.aw-proof-review__cta a {
  color: #F17912;
  text-decoration: none;
}

.aw-proof-review__cta a:hover,
.aw-proof-review__cta a:focus-visible {
  color: #ffffff;
}

@media (max-width: 1399.98px) {
  .aw-home-proof--clients-reviews {
    grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1.16fr);
  }

  .aw-proof-industries__title {
    font-size: 18px;
  }
}

@media (max-width: 1199.98px) {
  .aw-home-proof--clients-reviews {
    grid-template-columns: 1fr;
  }

  .aw-proof-stack {
    grid-template-rows: auto auto;
  }
}

@media (max-width: 767.98px) {
  .aw-proof-industries__grid {
    grid-template-columns: 1fr;
  }

  .aw-proof-industries__item {
    min-height: 84px;
    padding: 14px 16px;
  }

  .aw-proof-industries__title {
    font-size: 18px;
  }

  .aw-proof-review__name {
    font-size: 17px;
  }

  .aw-proof-review__text {
    font-size: 13px;
    line-height: 1.55;
  }
}

/* Homepage: about-company + faq */
.aw-home-about-faq-wrap {
  width: 100%;
  margin-top: 56px;
}

.aw-home-about-faq {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.aw-home-about-faq__main,
.aw-home-about-faq__side {
  min-width: 0;
}

.aw-about-panel,
.aw-faq-panel {
  position: relative;
  min-height: 100%;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 34% 0%, rgba(227,113,17,0.12), transparent 34%),
    linear-gradient(180deg, rgba(34,37,42,0.98) 0%, rgba(24,27,31,0.99) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 20px 48px rgba(0,0,0,0.18);
  overflow: hidden;
}

.aw-about-panel {
  display: grid;
  grid-template-columns: minmax(220px, 38%) minmax(0, 1fr);
  min-height: 540px;
}

.aw-about-panel__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #101215;
}

.aw-about-panel__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,12,14,0.08) 0%, rgba(10,12,14,0.18) 100%);
  pointer-events: none;
}

.aw-about-panel__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aw-about-panel__body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 34px 32px 32px;
}

.aw-about-panel__eyebrow,
.aw-faq-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(227,113,17,0.32);
  background: rgba(227,113,17,0.08);
  color: #F17912;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.aw-about-panel__title,
.aw-faq-panel__title {
  margin: 0;
  color: #F2F3F5;
  font-family: var(--aw-font-headings, Montserrat, Arial, sans-serif);
  font-size: clamp(32px, 2.6vw, 46px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.aw-about-panel__text {
  max-width: 420px;
  margin: 0;
  color: #979DA6;
  font-size: 16px;
  line-height: 1.62;
  font-weight: 500;
}

.aw-about-panel__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: auto;
}

.aw-about-card {
  min-height: 118px;
  padding: 20px 20px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(18,20,24,0.92) 0%, rgba(11,13,16,0.98) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.aw-about-card__index {
  display: block;
  margin-bottom: 10px;
  color: #F2F3F5;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.aw-about-card__title {
  margin: 0;
  color: #C8CCD2;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
}

.aw-faq-panel {
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: 34px 28px 28px;
}

.aw-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.aw-faq-item {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}

.aw-faq-item[open] {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.03) 100%);
}

.aw-faq-item__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px 20px;
  color: #F2F3F5;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
  cursor: pointer;
}

.aw-faq-item__summary::-webkit-details-marker {
  display: none;
}

.aw-faq-item__question {
  min-width: 0;
}

.aw-faq-item__icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.aw-faq-item__icon::before,
.aw-faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: #F17912;
  transform: translate(-50%, -50%);
  transition: transform .2s ease, opacity .2s ease;
}

.aw-faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.aw-faq-item[open] .aw-faq-item__icon::after {
  opacity: 0;
}

.aw-faq-item__content {
  padding: 0 22px 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.aw-faq-item__content p {
  margin: 18px 0 0;
  color: #979DA6;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

@media (max-width: 1279.98px) {
  .aw-about-panel {
    grid-template-columns: minmax(200px, 34%) minmax(0, 1fr);
  }
}

@media (max-width: 1199.98px) {
  .aw-home-about-faq {
    grid-template-columns: 1fr;
  }

  .aw-about-panel,
  .aw-faq-panel {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .aw-home-about-faq-wrap {
    margin-top: 42px;
  }

  .aw-about-panel {
    grid-template-columns: 1fr;
  }

  .aw-about-panel__media {
    min-height: 260px;
  }

  .aw-about-panel__body,
  .aw-faq-panel {
    padding: 24px 20px 20px;
  }

  .aw-about-panel__cards {
    grid-template-columns: 1fr;
  }

  .aw-about-panel__title,
  .aw-faq-panel__title {
    font-size: 28px;
  }

  .aw-faq-item__summary {
    padding: 18px 18px 16px;
    font-size: 15px;
  }

  .aw-faq-item__content {
    padding: 0 18px 18px;
  }

  .aw-faq-item__content p,
  .aw-about-panel__text,
  .aw-about-card__title {
    font-size: 15px;
  }
}

.aw-kcats,
.aw-kcats * {
  box-sizing: border-box;
}

.aw-kcats {
  position: relative;
  width: 100%;
  margin: 0;
  color: var(--aw-text-primary, #F2F3F5);
}

.aw-kcats__shell {
  position: relative;
  width: 100%;
  padding: 24px 24px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 18% 0%, rgba(227,113,17,.16), transparent 34%),
    radial-gradient(circle at 52% 12%, rgba(255,255,255,.035), transparent 24%),
    linear-gradient(90deg, rgba(22,28,38,.98) 0%, rgba(39,34,30,.98) 48%, rgba(43,45,49,.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 20px 48px rgba(0,0,0,.22);
  overflow: hidden;
}

.aw-kcats__head {
  margin: 0 0 18px;
}

.aw-kcats__title {
  margin: 0;
  max-width: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--aw-font-headings, Montserrat, Arial, sans-serif);
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--aw-text-primary, #F2F3F5);
}

.aw-kcats__swiper.swiper {
  overflow: hidden;
  padding: 2px 1px 4px;
}

.aw-kcats .swiper-wrapper {
  align-items: stretch;
}

.aw-kcats__slide.swiper-slide {
  height: auto;
}

.aw-kcats__link {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 316px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none !important;
  background: linear-gradient(180deg, rgba(37,44,54,.96) 0%, rgba(34,34,34,.98) 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background-color .24s ease;
}

.aw-kcats__link:hover,
.aw-kcats__link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(227,113,17,.24);
  box-shadow: 0 16px 34px rgba(0,0,0,.20);
  outline: none;
}

.aw-kcats__media {
  position: relative;
  width: 100%;
  height: 174px;
  overflow: hidden;
  background:
    radial-gradient(circle at 38% 34%, rgba(227,113,17,.10), transparent 18%),
    linear-gradient(180deg, #6c7480 0%, #49525d 56%, #2d3742 100%);
}

.aw-kcats__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 8%, rgba(23,24,26,.06) 42%, rgba(23,24,26,.78) 100%);
  pointer-events: none;
}

.aw-kcats__media.is-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(227,113,17,.18), transparent 22%),
    linear-gradient(180deg, #5e6875 0%, #323c48 100%);
}

.aw-kcats__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aw-kcats__fallback {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 64px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #F2F3F5;
  font-family: var(--aw-font-headings, Montserrat, Arial, sans-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .04em;
}

.aw-kcats__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 118px;
  padding: 16px 18px 18px;
}

.aw-kcats__name {
  margin: 0;
  min-height: 2.45em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: var(--aw-font-headings, Montserrat, Arial, sans-serif);
  font-size: 17px;
  line-height: 1.22;
  font-weight: 700;
  color: var(--aw-text-primary, #F2F3F5);
}

.aw-kcats__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  font-family: var(--aw-font-headings, Montserrat, Arial, sans-serif);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--aw-accent, #E37111);
}

.aw-kcats__cta::after {
  content: "→";
  font-size: 14px;
  line-height: 1;
}

.aw-kcats__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
}

.aw-kcats__nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.aw-kcats__button.swiper-button-prev,
.aw-kcats__button.swiper-button-next {
  position: static;
  inset: auto;
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: #C8CCD2;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease, color .2s ease, opacity .2s ease;
}

.aw-kcats__button.swiper-button-prev:hover,
.aw-kcats__button.swiper-button-next:hover,
.aw-kcats__button.swiper-button-prev:focus-visible,
.aw-kcats__button.swiper-button-next:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(227,113,17,.30);
  background: rgba(255,255,255,.05);
  color: #fff;
  outline: none;
}

.aw-kcats__button.swiper-button-disabled {
  opacity: .38;
  pointer-events: none;
}

.aw-kcats__button.swiper-button-prev::after,
.aw-kcats__button.swiper-button-next::after {
  font-size: 17px;
  font-weight: 700;
}

.aw-kcats__pagination.swiper-pagination {
  position: static;
  width: auto;
  min-width: 84px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.aw-kcats__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  opacity: 1;
  transition: width .2s ease, background-color .2s ease;
}

.aw-kcats__pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: var(--aw-accent, #E37111);
}

@media (max-width: 1023.98px) {
  .aw-kcats__shell {
    padding: 20px 18px 16px;
    border-radius: 26px;
  }

  .aw-kcats__title {
    font-size: 26px;
    white-space: normal;
  }

  .aw-kcats__link {
    min-height: 294px;
  }

  .aw-kcats__media {
    height: 160px;
  }
}

@media (max-width: 767.98px) {
  .aw-kcats__shell {
    padding: 18px 16px 16px;
    border-radius: 22px;
  }

  .aw-kcats__title {
    font-size: 22px;
    white-space: normal;
  }

  .aw-kcats__link {
    min-height: 282px;
    border-radius: 22px;
  }

  .aw-kcats__media {
    height: 154px;
  }

  .aw-kcats__body {
    min-height: 108px;
    padding: 14px 16px 16px;
  }

  .aw-kcats__name {
    font-size: 16px;
  }

  .aw-kcats__footer {
    margin-top: 14px;
  }

  .aw-kcats__button.swiper-button-prev,
  .aw-kcats__button.swiper-button-next {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }
}

.aw-home-contact-wrap {
  width: 100%;
  margin-top: 56px;
}

.aw-home-contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(500px, 0.82fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 30% 0%, rgba(227, 113, 17, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(31, 34, 39, 0.98) 0%, rgba(20, 22, 26, 0.99) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 22px 54px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.aw-home-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 28%),
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.04), transparent 26%);
  pointer-events: none;
}

.aw-home-contact__intro,
.aw-home-contact__form-wrap {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.aw-home-contact__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 6px;
}

.aw-contact-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(227, 113, 17, 0.36);
  background: rgba(227, 113, 17, 0.08);
  color: #f17912;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.aw-contact-panel__title {
  max-width: 22ch;
  margin: 14px 0 0;
  color: #f2f3f5;
  font-family: var(--aw-font-headings, Montserrat, Arial, sans-serif);
  font-size: clamp(36px, 3.2vw, 56px);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.aw-contact-panel__text {
  max-width: 620px;
  margin: 16px 0 0;
  color: #c8ccd2;
  font-size: 15px;
  line-height: 1.68;
}

#aw-home-consultation .aw-home-contact__form-wrap {
  justify-self: end;
  width: 100%;
  max-width: 510px;
  padding: 18px 18px 12px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(8, 10, 14, 0.96) 0%, rgba(5, 7, 10, 0.99) 100%);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
}

#aw-home-consultation .aw-home-contact__form-wrap::after {
  content: "* обязательное поле для заполнения";
  display: block;
  margin-top: 6px;
  color: #8f98a4;
  font-size: 10px;
  line-height: 1.4;
}

#aw-home-consultation .aw-home-contact__form-wrap :is(
  .wjcallbackform,
  .wjcallbackform-wrapper,
  .modal-dialog,
  .modal-content,
  .aw-wjc-form,
  .aw-wjc-form__inner,
  .aw-wjc-form__form
) {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  float: none !important;
}

#aw-home-consultation .aw-home-contact__form-wrap :is(.aw-wjc-form__header, .modal-header) {
  display: block !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
  border: 0 !important;
}

#aw-home-consultation .aw-home-contact__form-wrap :is(.aw-wjc-form__title, .modal-title) {
  display: block;
  margin: 0 !important;
  color: #f2f3f5 !important;
  font-family: var(--aw-font-headings, Montserrat, Arial, sans-serif);
  font-size: 17px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  text-align: left !important;
  text-transform: none !important;
}

#aw-home-consultation .aw-home-contact__form-wrap :is(
  .aw-wjc-form__desc,
  .informtext,
  .one-click-desc,
  .aw-wjc-form__item label,
  .aw-wjc-form__item .control-label,
  .aw-wjc-form__item .form-label,
  .aw-wjc-form__item .field-label,
  .aw-wjc-form__item .form-text,
  .aw-wjc-form__item .validation-advice,
  .aw-wjc-form__item .validation-message,
  .aw-wjc-form__item .field-validation-error,
  .aw-wjc-form__item .help-inline,
  .aw-wjc-form__item .help-block,
  .aw-wjc-form__item .invalid-feedback,
  .aw-wjc-form__item .text-danger,
  .aw-wjc-form__item [role="alert"],
  .aw-wjc-form__item [aria-live="polite"],
  .aw-wjc-form__item [aria-live="assertive"]
) {
  display: none !important;
}

#aw-home-consultation .aw-home-contact__form-wrap :is(.aw-wjc-form__fields, .modal-body) {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  margin: 0 !important;
  padding: 0 !important;
  align-items: start !important;
}

#aw-home-consultation .aw-home-contact__form-wrap :is(
  .aw-wjc-form__item,
  .control-group,
  .form-group,
  .field,
  .controls
) {
  min-width: 0;
  width: 100%;
  margin: 0 !important;
  box-sizing: border-box;
  float: none !important;
}

#aw-home-consultation .aw-home-contact__form-wrap .aw-wjc-form__item--half {
  grid-column: span 1;
}

#aw-home-consultation .aw-home-contact__form-wrap :is(
  .aw-wjc-form__item--full,
  .aw-wjc-form__item--email,
  .aw-wjc-form__item--message,
  .aw-wjc-form__item--file,
  .aw-wjc-form__item--consent,
  .aw-wjc-form__item--other
) {
  grid-column: 1 / -1;
}

#aw-home-consultation .aw-home-contact__form-wrap .aw-wjc-form__item--consent {
  display: none !important;
}

#aw-home-consultation .aw-home-contact__form-wrap :is(
  .aw-wjc-form__control,
  input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="file"]),
  select,
  textarea
) {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 42px !important;
  padding: 10px 16px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #1d2024 !important;
  color: #f2f3f5 !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

#aw-home-consultation .aw-home-contact__form-wrap :is(textarea.aw-wjc-form__control, textarea) {
  min-height: 96px !important;
  resize: vertical !important;
}

#aw-home-consultation .aw-home-contact__form-wrap :is(
  .aw-wjc-form__control::placeholder,
  input::placeholder,
  textarea::placeholder
) {
  color: #7f8792 !important;
  opacity: 1;
}

#aw-home-consultation .aw-home-contact__form-wrap :is(
  .aw-wjc-form__control:focus,
  input:focus,
  textarea:focus,
  select:focus
) {
  border-color: rgba(227, 113, 17, 0.42) !important;
  box-shadow: 0 0 0 3px rgba(227, 113, 17, 0.1) !important;
  outline: none !important;
}

#aw-home-consultation .aw-home-contact__form-wrap :is(
  .aw-wjc-form__actions,
  .modal-footer,
  .form-actions
) {
  width: 100% !important;
  margin-top: 12px !important;
  padding: 0 !important;
  border: 0 !important;
  display: block !important;
}

#aw-home-consultation .aw-home-contact__form-wrap :is(
  .aw-wjc-form__submit,
  button,
  .btn,
  input[type="submit"],
  input[type="button"]
) {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 42px !important;
  padding: 10px 18px !important;
  border: 0 !important;
  border-radius: 18px !important;
  background: #e37111 !important;
  color: #17181a !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  text-transform: none !important;
  box-shadow: 0 10px 22px rgba(227, 113, 17, 0.2);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

#aw-home-consultation .aw-home-contact__form-wrap :is(
  .aw-wjc-form__submit:hover,
  button:hover,
  .btn:hover,
  input[type="submit"]:hover,
  input[type="button"]:hover
) {
  background: #f17912 !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(227, 113, 17, 0.24);
}

#aw-home-consultation .aw-home-contact__form-wrap :is(
  .invalid,
  .has-error input,
  .has-error textarea,
  .has-error select
) {
  border-color: rgba(255, 93, 93, 0.55) !important;
}

#aw-home-consultation .aw-home-contact__form-wrap :is(
  .aw-wjc-form__item.invalid .aw-wjc-form__control,
  .aw-wjc-form__control.invalid,
  .aw-wjc-form__item.invalid input,
  .aw-wjc-form__item.invalid textarea,
  .aw-wjc-form__item.invalid select
) {
  border-color: rgba(255, 93, 93, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(255, 93, 93, 0.08) !important;
}


#aw-home-consultation .aw-home-contact__form-wrap :is(
  .aw-wjc-form.is-submitting .aw-wjc-form__submit,
  .aw-wjc-form__submit:disabled
) {
  opacity: 0.82 !important;
  cursor: wait !important;
  transform: none !important;
  box-shadow: 0 10px 22px rgba(227, 113, 17, 0.16) !important;
}

#aw-home-consultation .aw-home-contact__form-wrap :is(
  .aw-wjc-form.is-success .aw-wjc-form__inner,
  .aw-wjc-form.is-success
) {
  display: block !important;
}

#aw-home-consultation .aw-home-contact__form-wrap .aw-wjc-form__success {
  display: none;
  padding: 6px 0 2px;
}

#aw-home-consultation .aw-home-contact__form-wrap .aw-wjc-form__success-title {
  margin: 0;
  color: #f2f3f5;
  font-family: var(--aw-font-headings, Montserrat, Arial, sans-serif);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

#aw-home-consultation .aw-home-contact__form-wrap .aw-wjc-form__success-text {
  margin: 12px 0 0;
  color: #c8ccd2;
  font-size: 15px;
  line-height: 1.6;
}


@media (max-width: 1399.98px) {
  .aw-home-contact {
    grid-template-columns: minmax(0, 1.06fr) minmax(480px, 0.94fr);
    gap: 26px;
  }

  .aw-contact-panel__title {
    max-width: 20ch;
    font-size: clamp(34px, 3.1vw, 50px);
  }

  #aw-home-consultation .aw-home-contact__form-wrap {
    max-width: 500px;
  }
}

@media (max-width: 1199.98px) {
  .aw-home-contact {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .aw-home-contact__intro {
    padding: 4px 0 0;
  }

  .aw-contact-panel__title {
    max-width: 24ch;
  }

  #aw-home-consultation .aw-home-contact__form-wrap {
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .aw-home-contact-wrap {
    margin-top: 40px;
  }

  .aw-home-contact {
    gap: 18px;
    padding: 18px;
    border-radius: 24px;
  }

  .aw-home-contact__intro {
    padding: 4px 0 0;
  }

  #aw-home-consultation .aw-home-contact__form-wrap {
    padding: 14px 14px 10px;
    border-radius: 22px;
  }

  .aw-contact-panel__title {
    max-width: none;
    font-size: clamp(32px, 10vw, 42px);
    line-height: 0.96;
    text-wrap: pretty;
  }

  .aw-contact-panel__text {
    font-size: 15px;
    line-height: 1.62;
  }

  #aw-home-consultation .aw-home-contact__form-wrap :is(.aw-wjc-form__fields, .modal-body) {
    grid-template-columns: 1fr;
  }

  #aw-home-consultation .aw-home-contact__form-wrap :is(
    .aw-wjc-form__item--half,
    .aw-wjc-form__item--full,
    .aw-wjc-form__item--email,
    .aw-wjc-form__item--message,
    .aw-wjc-form__item--file,
    .aw-wjc-form__item--consent,
    .aw-wjc-form__item--other
  ) {
    grid-column: 1 / -1;
  }
}


#aw-home-consultation .aw-home-contact__form-wrap .aw-wjc-form__transport {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
