:root {
  --nictek-orange: #ff5a1f;
  --nictek-orange-dark: #e94812;
  --nictek-ink: #171a21;
  --nictek-muted: #66707a;
  --nictek-blue: #dceef9;
  --nictek-surface: #f6f7fb;
  --nictek-white: #ffffff;
  --nictek-dark: #3d4857;
  --nictek-radius: 24px;
  --nictek-shadow: 0 18px 48px rgba(45, 64, 82, 0.12);
  --nictek-max: 1760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--nictek-ink);
  background: var(--nictek-surface);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.search-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  top: 8px;
  left: 8px;
  z-index: 99999;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 18px;
  color: var(--nictek-white);
  background: var(--nictek-ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(220, 238, 249, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(29, 46, 61, 0.1);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) auto minmax(140px, 1fr);
  align-items: center;
  width: min(100%, var(--nictek-max));
  min-height: 86px;
  margin: 0 auto;
  padding: 0 34px;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  color: var(--nictek-orange);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1;
}

.site-brand .custom-logo-link {
  display: inline-flex;
}

.site-brand .custom-logo {
  width: auto;
  max-width: 132px;
  max-height: 48px;
}

.site-navigation {
  justify-self: center;
}

.site-menu,
.site-navigation ul {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.55vw, 30px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-menu > li {
  position: relative;
}

.site-menu > li > a {
  display: block;
  padding: 30px 0;
  color: var(--nictek-ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-menu > li > a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--nictek-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.site-menu > li:hover > a,
.site-menu > li.current-menu-item > a {
  color: var(--nictek-orange);
}

.site-menu > li:hover > a::after,
.site-menu > li.current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-menu .sub-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  display: block;
  min-width: 220px;
  padding: 10px;
  visibility: hidden;
  background: var(--nictek-white);
  border-radius: 14px;
  box-shadow: var(--nictek-shadow);
  opacity: 0;
  transform: translate(-50%, 10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.site-menu li:hover > .sub-menu,
.site-menu li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.site-menu .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 650;
}

.site-menu .sub-menu a:hover {
  color: var(--nictek-orange);
  background: #fff1eb;
}

@media (min-width: 1025px) {
  .site-menu > li:first-child > a::before {
    margin-right: 6px;
    content: "•";
  }

  .site-menu > li > a::after {
    bottom: 0;
    height: 3px;
  }

  .site-menu .submenu-toggle {
    display: none;
  }

  .site-menu > li > .sub-menu {
    top: 100%;
    left: 0;
    width: 270px;
    min-width: 270px;
    padding: 20px 32px;
    background: var(--nictek-white);
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .site-menu > li:hover > .sub-menu,
  .site-menu > li:focus-within > .sub-menu {
    transform: none;
  }

  .site-menu > li > .sub-menu > li > a {
    position: relative;
    padding: 10px 18px 10px 0;
    color: var(--nictek-ink);
    background: transparent;
    border-radius: 0;
    font-size: 16px;
    font-weight: 750;
    line-height: 1.35;
    white-space: nowrap;
  }

  .site-menu > li > .sub-menu > li.menu-item-has-children > a {
    border-bottom: 1px solid #aeb4b9;
  }

  .site-menu > li > .sub-menu > li.menu-item-has-children > a::after {
    position: absolute;
    top: 50%;
    right: 0;
    content: "›";
    color: #8d949a;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-50%);
  }

  .site-menu > li > .sub-menu > li.menu-item-has-children > a::before {
    position: absolute;
    top: 0;
    right: -32px;
    width: 32px;
    height: 100%;
    content: "";
  }

  .site-menu > li > .sub-menu > li.menu-item-has-children:hover > a,
  .site-menu > li > .sub-menu > li.menu-item-has-children:focus-within > a {
    color: var(--nictek-ink);
    border-bottom-color: var(--nictek-orange);
  }

  .site-menu > li > .sub-menu > li.menu-item-has-children:hover > a::after,
  .site-menu > li > .sub-menu > li.menu-item-has-children:focus-within > a::after {
    color: var(--nictek-orange);
  }

  .site-menu > li > .sub-menu > li > .sub-menu {
    top: 0;
    left: 270px;
    width: 314px;
    min-width: 314px;
    min-height: 360px;
    padding: 20px 30px;
    background: var(--nictek-white);
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .site-menu > li > .sub-menu > li:hover > .sub-menu,
  .site-menu > li > .sub-menu > li:focus-within > .sub-menu {
    transform: none;
  }

  .site-menu > li > .sub-menu > li > .sub-menu > li > a {
    padding: 6px 0;
    color: var(--nictek-ink);
    background: transparent;
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    white-space: nowrap;
  }

  .site-menu > li > .sub-menu > li > .sub-menu > li:first-child > a,
  .site-menu > li > .sub-menu > li > .sub-menu > li.current-menu-item > a,
  .site-menu > li > .sub-menu > li > .sub-menu > li > a:hover,
  .site-menu > li > .sub-menu > li > .sub-menu > li > a:focus {
    color: var(--nictek-ink);
    border-bottom: 1px solid var(--nictek-orange);
  }
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.header-actions__pill {
  display: flex;
  align-items: center;
  min-height: 43px;
  padding: 5px 11px;
  gap: 4px;
  background: var(--nictek-white);
  border-radius: 999px;
  box-shadow: 0 5px 18px rgba(39, 62, 80, 0.08);
}

.header-icon,
.header-search {
  position: relative;
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: var(--nictek-orange);
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.header-search {
  width: 43px;
  height: 43px;
  color: var(--nictek-white);
  background: var(--nictek-orange);
  box-shadow: 0 7px 18px rgba(255, 90, 31, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-icon:hover,
.header-icon:focus-visible {
  background: #fff1eb;
}

.header-search:hover,
.header-search:focus-visible {
  background: var(--nictek-orange-dark);
  transform: translateY(-1px);
}

.header-icon svg,
.header-search svg,
.site-search-form svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nictek-cart-count {
  position: absolute;
  top: -3px;
  right: -3px;
  display: grid;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  place-items: center;
  color: var(--nictek-white);
  background: var(--nictek-orange);
  border: 2px solid var(--nictek-white);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}

.menu-toggle {
  display: none;
}

.search-panel {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-items: start center;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s;
}

.search-panel.is-open {
  visibility: visible;
  opacity: 1;
}

.search-panel__backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(20, 31, 42, 0.5);
  cursor: pointer;
}

.search-panel__dialog {
  position: relative;
  width: min(760px, calc(100% - 32px));
  margin-top: 12vh;
  padding: 28px;
  background: var(--nictek-white);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(10, 28, 45, 0.25);
  transform: translateY(-16px);
  transition: transform 0.25s ease;
}

.search-panel.is-open .search-panel__dialog {
  transform: translateY(0);
}

.search-panel__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.search-panel__heading p {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.search-panel__close {
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--nictek-ink);
  background: #f3f5f7;
  border: 0;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.site-search-form {
  display: flex;
  padding: 6px;
  background: #f2f5f7;
  border: 1px solid #e5ebef;
  border-radius: 14px;
}

.site-search-form input[type="search"] {
  min-width: 0;
  flex: 1;
  padding: 13px 16px;
  color: var(--nictek-ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.site-search-form button {
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  gap: 8px;
  color: var(--nictek-white);
  background: var(--nictek-orange);
  border: 0;
  border-radius: 10px;
  font-weight: 750;
  cursor: pointer;
}

.hero-section {
  position: relative;
  width: min(calc(100% - 20px), 100%);
  min-height: clamp(650px, 54vw, 1010px);
  margin: 0 auto;
  overflow: hidden;
  background-color: #d8ebf8;
  background-image:
    linear-gradient(105deg, rgba(255, 255, 255, 0.4), transparent 38%),
    var(--nictek-home-hero-background, linear-gradient(transparent, transparent)),
    linear-gradient(115deg, #dcecf8 0%, #d8ebf8 44%, #afd7ee 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto, cover, auto;
  border-radius: 0 0 9px 9px;
}

.hero-section::before,
.hero-section::after {
  position: absolute;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::before {
  top: -58%;
  left: -26%;
  width: 98%;
  aspect-ratio: 1;
}

.hero-section::after {
  top: -50%;
  right: -28%;
  width: 85%;
  aspect-ratio: 1;
  border-color: rgba(50, 156, 219, 0.24);
}

.hero-section__orb {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.hero-section__orb--one {
  top: -40%;
  left: -18%;
  width: 78%;
  aspect-ratio: 1;
}

.hero-section__orb--two {
  top: -26%;
  right: -17%;
  width: 66%;
  aspect-ratio: 1;
  border-color: rgba(53, 160, 221, 0.18);
}

.hero-section__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(310px, 0.9fr) minmax(440px, 1.35fr) minmax(230px, 0.55fr);
  align-items: center;
  width: min(100%, var(--nictek-max));
  min-height: inherit;
  margin: 0 auto;
  padding: 72px 52px 90px;
  gap: clamp(22px, 3vw, 56px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--nictek-ink);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.hero-copy h1 {
  max-width: 560px;
  margin: 0;
  color: var(--nictek-orange);
  font-size: clamp(46px, 4vw, 76px);
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.12;
}

.hero-lead {
  margin: 22px 0 48px;
  color: #222932;
  font-size: clamp(18px, 1.4vw, 26px);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px 8px 20px;
  gap: 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(255, 90, 31, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--nictek-white);
  background: var(--nictek-orange);
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 90, 31, 0.25);
}

.button--light {
  color: var(--nictek-orange);
  background: var(--nictek-white);
}

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

.button--orange span {
  color: var(--nictek-orange);
  background: var(--nictek-white);
}

.button--small {
  min-height: 43px;
  padding-left: 16px;
  color: var(--nictek-orange);
  background: var(--nictek-white);
}

.hero-product img {
  width: 100%;
  filter: drop-shadow(0 18px 28px rgba(55, 75, 94, 0.09));
  mix-blend-mode: multiply;
}

.hero-product {
  position: relative;
  min-height: min(42vw, 705px);
}

.hero-product__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  object-fit: contain;
  opacity: 0;
  transform: translateX(20px) scale(0.985);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s ease;
}

.hero-product__slide.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0) scale(1);
}

.hero-feature-card {
  align-self: end;
  margin-bottom: 80px;
  padding: 30px 26px;
  color: var(--nictek-white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.hero-feature-card__kicker {
  margin: 0 0 2px;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-feature-card h2 {
  margin: 0 0 16px;
  font-size: 25px;
}

.hero-feature-card img {
  width: 96px;
  height: 86px;
  margin-bottom: 16px;
  object-fit: cover;
  background: var(--nictek-white);
  border-radius: 8px;
}

.hero-feature-card p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.55;
}

.hero-progress {
  position: absolute;
  right: 52px;
  bottom: 28px;
  left: 52px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 54px;
}

.hero-progress button {
  position: relative;
  height: 24px;
  padding: 10px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hero-progress button > span {
  display: block;
  width: 100%;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 99px;
}

.hero-progress button > span::before {
  display: block;
  width: 0;
  height: 100%;
  content: "";
  background: var(--nictek-white);
  border-radius: inherit;
}

.hero-progress button.is-active > span::before {
  width: 100%;
  animation: nictek-hero-progress 5s linear both;
}

@keyframes nictek-hero-progress {
  from { width: 0; }
  to { width: 100%; }
}

.products-section,
.blog-section {
  width: min(100%, var(--nictek-max));
  margin: 0 auto;
  padding: 118px 50px 130px;
}

.products-section {
  background-image: var(--nictek-home-products-background, none);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.blog-section {
  background-image: var(--nictek-home-news-background, none);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 62px;
  gap: 36px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 3vw, 56px);
  font-weight: 780;
  letter-spacing: 0.02em;
  line-height: 1.12;
}

.section-heading h2 span,
.about-heading h2 span {
  color: var(--nictek-orange);
}

.section-tabs {
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-tabs a {
  padding: 12px 24px;
  color: #4e5660;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.section-tabs a.is-active {
  color: var(--nictek-white);
  background: var(--nictek-orange);
  box-shadow: 0 10px 26px rgba(255, 90, 31, 0.32);
}

.product-grid,
.blog-grid {
  display: flex;
  overflow-x: auto;
  gap: clamp(24px, 3vw, 68px);
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-grid::-webkit-scrollbar,
.blog-grid::-webkit-scrollbar {
  display: none;
}

.product-grid > .product-card {
  flex: 0 0 calc((100% - clamp(24px, 3vw, 68px) - clamp(24px, 3vw, 68px)) / 3);
  scroll-snap-align: start;
}

.blog-grid > .blog-card {
  flex: 0 0 calc((100% - clamp(24px, 3vw, 68px) - clamp(24px, 3vw, 68px)) / 3);
  scroll-snap-align: start;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  overflow: hidden;
  background: var(--nictek-white);
  border: 1px solid #f2d9ce;
  border-radius: 10px;
  transition: color 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.product-card__image {
  display: grid;
  min-height: 350px;
  flex: 1;
  place-items: center;
  padding: 30px;
}

.product-card__image img {
  width: 80%;
  max-height: 310px;
  margin: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: opacity 0.28s ease;
}

.product-card__body {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: 25px 28px;
  gap: 12px;
}

.product-card h3 {
  margin: 0;
  font-size: 25px;
}

.product-card__price {
  color: var(--nictek-orange);
  font-size: 23px;
  font-weight: 800;
  transition: color 0.28s ease;
}

.product-card:hover,
.product-card:focus-within {
  color: var(--nictek-white);
  background: #f77a48;
  border-color: transparent;
  box-shadow: 0 18px 42px rgba(255, 90, 31, 0.18);
  transform: none;
}

.product-card:hover .product-card__image img,
.product-card:focus-within .product-card__image img {
  animation: none;
  transform: none;
}

.product-card:hover .product-card__image,
.product-card:focus-within .product-card__image {
  order: 2;
  min-height: 225px;
  padding-top: 0;
  opacity: 0.32;
}

.product-card:hover .product-card__body,
.product-card:focus-within .product-card__body {
  order: 1;
  grid-template-columns: 1fr auto;
  align-items: start;
  padding: 42px 30px 0;
}

.product-card:hover .product-card__price,
.product-card:focus-within .product-card__price {
  color: var(--nictek-white);
}

.product-card p,
.product-card .button {
  display: none;
  grid-column: 1 / -1;
}

.product-card:hover p,
.product-card:hover .button,
.product-card:focus-within p,
.product-card:focus-within .button {
  display: inline-flex;
}

.product-card:hover p,
.product-card:focus-within p {
  display: block;
}

.product-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1.6;
}

.product-card .button {
  width: max-content;
  margin-top: 34px;
}

@media (min-width: 768px) {
  .product-card__image {
    position: absolute;
    z-index: 0;
    inset: 0;
    min-height: 0;
  }

  .product-card__body {
    position: relative;
    z-index: 1;
    margin-top: auto;
  }

  .product-card:hover .product-card__image,
  .product-card:focus-within .product-card__image {
    min-height: 0;
    padding: 30px;
    pointer-events: none;
  }

  .product-card:hover .product-card__body,
  .product-card:focus-within .product-card__body {
    margin-top: 0;
  }
}

.carousel-controls {
  display: grid;
  grid-template-columns: 42px 42px 1fr;
  align-items: center;
  margin-top: 42px;
  gap: 12px;
}

.carousel-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--nictek-white);
  background: #bfc4ca;
  border: 0;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.carousel-arrow.is-active {
  background: var(--nictek-orange);
  box-shadow: 0 9px 18px rgba(255, 90, 31, 0.28);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  transform: translateY(-2px);
}

.carousel-line {
  height: 5px;
  margin-left: 18px;
  overflow: hidden;
  background: var(--nictek-white);
  border-radius: 99px;
}

.carousel-line i {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--nictek-orange);
  border-radius: inherit;
  transform: translateX(0);
  transition: width 0.25s ease, transform 0.25s ease;
}

.about-section {
  padding: 0 10px;
}

.about-section__inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  grid-template-rows: auto auto;
  width: min(100%, 1900px);
  min-height: 920px;
  margin: 0 auto;
  padding: 110px 10vw 100px;
  overflow: hidden;
  background-color: var(--nictek-white);
  background-image: var(--nictek-home-about-background, none);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image--small {
  grid-column: 1;
  grid-row: 1;
  width: 72%;
  height: 300px;
  justify-self: end;
  overflow: hidden;
  border-radius: 20px 20px 0 20px;
  box-shadow: var(--nictek-shadow);
}

.about-heading {
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  padding: 50px 0 50px 75px;
}

.about-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(33px, 3vw, 55px);
  line-height: 1.12;
}

.about-copy {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 2;
  min-height: 390px;
  padding: 110px 64px 40px 0;
}

.about-word {
  position: absolute;
  z-index: -1;
  top: 0;
  left: -20px;
  color: #f5f6f8;
  font-size: clamp(130px, 15vw, 280px);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 1;
}

.about-copy p {
  max-width: 560px;
  margin: 0 0 66px;
  color: #505b66;
  font-size: 14px;
  line-height: 1.8;
}

.about-image--large {
  position: relative;
  z-index: 3;
  grid-column: 2;
  grid-row: 2;
  min-height: 520px;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  box-shadow: var(--nictek-shadow);
}

.blog-card {
  min-height: 480px;
  padding: 36px 34px 30px;
  overflow: hidden;
  background: var(--nictek-white);
  border: 1px solid #f1d8ce;
  border-radius: 10px;
  box-shadow: 0 13px 26px rgba(236, 116, 69, 0.08);
}

.blog-card h3 {
  margin: 0 0 20px;
  color: var(--nictek-orange);
  font-size: clamp(21px, 1.8vw, 29px);
  line-height: 1.35;
}

.blog-card p {
  min-height: 76px;
  margin: 0 0 25px;
  color: #515963;
  font-size: 13px;
  line-height: 1.6;
}

.blog-card__excerpt > span {
  position: relative;
  display: block;
  max-height: calc(1.6em * 3);
  overflow: hidden;
}

.blog-card__image {
  display: block;
  width: 170px;
  height: 158px;
  overflow: hidden;
  border-radius: 8px;
}

.blog-card__image img,
img.blog-card__image {
  width: 170px;
  height: 158px;
  object-fit: cover;
}

.contact-cta {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 120px), 1800px);
  min-height: 330px;
  margin: 0 auto -95px;
  overflow: hidden;
  color: var(--nictek-white);
  background:
    linear-gradient(90deg, rgba(58, 78, 105, 0.92) 0%, rgba(86, 109, 136, 0.72) 45%, rgba(55, 76, 100, 0.34) 100%),
    var(--nictek-contact-cta-image, url("../images/contact-handshake.webp")) center right / cover no-repeat;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(32, 50, 68, 0.2);
}

.contact-cta__content {
  display: flex;
  min-height: 330px;
  align-items: center;
  justify-content: space-between;
  padding: 55px 70px;
  gap: 40px;
}

.contact-cta .eyebrow {
  color: var(--nictek-white);
}

.contact-cta h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(32px, 3.4vw, 60px);
  line-height: 1.25;
  text-transform: uppercase;
}

.contact-page {
  background: var(--nictek-white);
}

.contact-hero {
  position: relative;
  display: flex;
  width: min(calc(100% - 20px), 1900px);
  min-height: clamp(500px, 37vw, 710px);
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
  color: var(--nictek-white);
  background:
    linear-gradient(90deg, rgba(65, 84, 112, 0.76) 0%, rgba(108, 134, 165, 0.42) 42%, rgba(38, 55, 77, 0.16) 100%),
    var(--nictek-contact-hero-image, url("../images/contact-hero.webp")) center / cover no-repeat;
  border-radius: 0 0 9px 9px;
}

.contact-hero::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(115deg, rgba(211, 230, 246, 0.2), transparent 45%);
  pointer-events: none;
}

.contact-hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--nictek-max));
  margin: 0 auto;
  padding: 70px 50px;
}

.contact-hero .eyebrow {
  color: var(--nictek-white);
  font-size: 16px;
}

.contact-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(38px, 4vw, 66px);
  font-weight: 750;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(calc(100% - 100px), 1600px);
  margin: 0 auto;
  padding: 95px 0 110px;
  gap: 48px;
}

.contact-detail-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px 34px;
  text-align: center;
  background: var(--nictek-white);
  border: 1px solid #eef0f2;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(43, 58, 73, 0.1);
}

.contact-detail-card__icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--nictek-white);
  background: var(--nictek-orange);
  border-radius: 50%;
}

.contact-detail-card__icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail-card p,
.contact-detail-card a {
  max-width: 370px;
  margin: 0;
  color: #565f68;
  font-size: 17px;
  letter-spacing: 0.04em;
  line-height: 1.65;
}

.contact-detail-card a:hover {
  color: var(--nictek-orange);
}

.contact-form-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(520px, 1.5fr);
  width: min(calc(100% - 100px), 1600px);
  margin: 0 auto;
  padding: 90px 0 130px;
  gap: clamp(55px, 8vw, 150px);
  border-top: 1px solid #d9dde0;
}

.contact-form-intro {
  padding-top: 20px;
}

.contact-form-intro h2 {
  margin: 0 0 28px;
  font-size: clamp(30px, 2.4vw, 44px);
  font-weight: 780;
  letter-spacing: 0.035em;
  line-height: 1.55;
  text-transform: uppercase;
}

.contact-form-intro p {
  max-width: 430px;
  margin: 0;
  color: #4b545d;
  font-size: 17px;
  line-height: 1.7;
}

.contact-form-wrap {
  min-width: 0;
}

.form-notice {
  margin-bottom: 22px;
  padding: 15px 18px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 650;
}

.form-notice--success {
  color: #175f38;
  background: #e8f8ee;
  border: 1px solid #b9e5c9;
}

.form-notice--error {
  color: #9a2e20;
  background: #fff0ed;
  border: 1px solid #f3c1ba;
}

.nictek-contact-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.nictek-contact-form label {
  display: block;
}

.nictek-contact-form input,
.nictek-contact-form textarea {
  width: 100%;
  padding: 0 24px;
  color: var(--nictek-ink);
  background: var(--nictek-white);
  border: 1px solid #d4d8dc;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nictek-contact-form input {
  height: 64px;
}

.nictek-contact-form textarea {
  min-height: 230px;
  padding-top: 20px;
  resize: vertical;
}

.nictek-contact-form input::placeholder,
.nictek-contact-form textarea::placeholder {
  color: #a1a5aa;
  letter-spacing: 0.035em;
}

.nictek-contact-form input:focus,
.nictek-contact-form textarea:focus {
  border-color: var(--nictek-orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.12);
}

.nictek-contact-form button[type="submit"] {
  min-height: 64px;
  padding: 12px 24px;
  color: var(--nictek-white);
  background: var(--nictek-orange);
  border: 0;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nictek-contact-form button[type="submit"]:hover,
.nictek-contact-form button[type="submit"]:focus-visible {
  background: var(--nictek-orange-dark);
  transform: translateY(-1px);
}

.contact-honeypot {
  position: absolute;
  top: -9999px;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  position: relative;
  padding: 205px 6vw 0;
  color: var(--nictek-white);
  background:
    radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.06), transparent 35%),
    linear-gradient(135deg, #44505f 0%, #34404f 100%);
}

.contact-page + .site-footer,
.page-main + .site-footer,
.archive-main + .site-footer,
.single-main + .site-footer,
.woo-main + .site-footer {
  padding-top: 90px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1.5fr;
  width: min(100%, var(--nictek-max));
  margin: 0 auto;
  padding-bottom: 70px;
  gap: 60px;
}

.footer-brand {
	display: inline-flex;
	margin-bottom: 22px;
	align-items: center;
}

.footer-brand img {
	display: block;
	width: 145px;
	max-width: 100%;
	height: auto;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
	display: grid;
	width: 32px;
	height: 32px;
	place-items: center;
	background: rgba(255, 255, 255, 0.13);
	border-radius: 50%;
	font-size: 18px;
	font-weight: 800;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
	background: var(--nictek-orange);
	transform: translateY(-2px);
}

.social-links img {
	display: block;
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.social-link--meta span {
	display: block;
	font-family: Arial, sans-serif;
	font-size: 19px;
	font-weight: 900;
	line-height: 1;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
}

.footer-menu {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 9px;
  list-style: none;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--nictek-white);
}

.footer-contact strong {
  margin-bottom: 8px;
}

.footer-contact p {
  max-width: 420px;
  margin: 0;
  line-height: 1.65;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--nictek-max));
  min-height: 100px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.payment-badges {
  display: flex;
  gap: 6px;
}

.payment-badges span {
  padding: 3px 6px;
  color: #273341;
  background: var(--nictek-white);
  border-radius: 3px;
  font-size: 9px;
  font-weight: 800;
}

.back-to-top {
  position: fixed;
  z-index: 999;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--nictek-white);
  background: var(--nictek-orange);
  border-radius: 9px;
  box-shadow: 0 9px 22px rgba(255, 90, 31, 0.28);
  font-size: 21px;
}

.page-main,
.archive-main,
.single-main,
.woo-main {
  min-height: 60vh;
  background: var(--nictek-white);
}

.woo-main {
  width: min(calc(100% - 40px), 1360px);
  margin: 0 auto;
  padding: 70px 0 100px;
}

.single-entry {
  width: min(calc(100% - 40px), 980px);
  margin: 0 auto;
  padding: 80px 0 100px;
}

.single-entry__header h1 {
  margin: 0 0 34px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.12;
}

.single-entry__image {
  margin-bottom: 44px;
  overflow: hidden;
  border-radius: 20px;
}

.single-entry__content {
  color: #39434e;
  font-size: 18px;
}

.page-entry__header,
.archive-heading {
  width: min(calc(100% - 40px), 1240px);
  margin: 0 auto;
  padding: 70px 0 24px;
}

.page-entry__content {
  width: min(calc(100% - 40px), 1240px);
  margin: 0 auto;
  padding-bottom: 80px;
}

.page-entry__content > .elementor,
.page-entry__content > .entry-content {
  width: auto;
  max-width: none;
}

.elementor-page .page-entry__content {
  width: 100%;
  max-width: none;
  padding-bottom: 0;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(calc(100% - 40px), 1240px);
  margin: 0 auto;
  padding-bottom: 80px;
  gap: 30px;
}

.archive-card {
  overflow: hidden;
  background: var(--nictek-white);
  border: 1px solid #edf0f2;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(42, 60, 75, 0.08);
}

.archive-card > div {
  padding: 24px;
}

@media (max-width: 1240px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-menu,
  .site-navigation ul {
    gap: 15px;
  }

  .site-menu > li > a {
    font-size: 12px;
  }

  .hero-section__content {
    grid-template-columns: minmax(280px, 0.8fr) minmax(390px, 1.2fr);
  }

  .hero-feature-card {
    display: none;
  }

  .about-section__inner {
    padding-right: 6vw;
    padding-left: 6vw;
  }
}

@media (max-width: 1024px) {
  .site-header__inner {
    min-height: 72px;
    padding: 0 24px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: end;
    padding: 0;
    gap: 5px;
    background: var(--nictek-white);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    order: 2;
  }

  .menu-toggle span:not(.screen-reader-text) {
    width: 19px;
    height: 2px;
    background: var(--nictek-orange);
    border-radius: 99px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-navigation {
    position: fixed;
    z-index: 1;
    top: 72px;
    right: 0;
    bottom: 0;
    width: min(410px, 88vw);
    padding: 26px;
    visibility: hidden;
    background: var(--nictek-white);
    box-shadow: -20px 30px 60px rgba(28, 45, 59, 0.16);
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }

  .site-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .site-menu,
  .site-navigation ul {
    display: block;
  }

  .site-menu > li > a {
    padding: 16px 6px;
    border-bottom: 1px solid #edf0f2;
    font-size: 15px;
  }

  .site-menu > li > a::after {
    display: none;
  }

  .site-menu .sub-menu {
    position: static;
    min-width: 0;
    padding: 0 0 5px 14px;
    visibility: visible;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .header-actions {
    justify-self: end;
  }

  .hero-section {
    min-height: 720px;
  }

  .hero-section__content {
    grid-template-columns: 1fr 1.12fr;
    padding: 45px 36px 80px;
  }

  .hero-copy h1 {
    font-size: clamp(43px, 6vw, 62px);
  }

  .product-grid,
  .blog-grid {
    gap: 20px;
  }

  .product-grid > .product-card {
    flex-basis: calc((100% - 20px) / 2);
  }

  .blog-grid > .blog-card {
    flex-basis: calc((100% - 20px) / 2);
  }

  .product-card {
    min-height: 430px;
  }

  .product-card__image {
    min-height: 280px;
  }

  .about-section__inner {
    min-height: 0;
    padding: 80px 50px;
  }

  .about-heading {
    padding-left: 40px;
  }

  .about-image--large {
    min-height: 420px;
  }

  .contact-cta {
    width: calc(100% - 48px);
  }

  .contact-cta__content {
    padding: 50px;
  }

  .contact-details,
  .contact-form-section {
    width: calc(100% - 48px);
  }

  .contact-details {
    gap: 22px;
  }

  .contact-detail-card {
    min-height: 260px;
    padding: 30px 22px;
  }

  .contact-form-section {
    grid-template-columns: minmax(250px, 0.72fr) minmax(430px, 1.35fr);
    gap: 50px;
  }
}

@media (max-width: 767px) {
  .site-header__inner {
    grid-template-columns: 1fr auto auto;
    min-height: 64px;
    padding: 0 14px;
    gap: 8px;
  }

  .site-brand {
    font-size: 25px;
  }

  .site-brand .custom-logo {
    max-width: 104px;
    max-height: 38px;
  }

  .header-actions__pill .header-icon:first-child {
    display: none;
  }

  .header-actions__pill {
    min-height: 38px;
    padding: 3px 7px;
  }

  .header-search,
  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .site-navigation {
    top: 64px;
  }

  .hero-section {
    width: calc(100% - 10px);
    min-height: 820px;
  }

  .hero-section__content {
    grid-template-columns: 1fr;
    align-content: start;
    padding: 66px 22px 80px;
    gap: 28px;
  }

  .hero-copy h1 {
    max-width: 480px;
    font-size: clamp(39px, 12vw, 56px);
  }

  .hero-lead {
    margin: 16px 0 30px;
    font-size: 17px;
  }

  .hero-product {
    min-height: min(92vw, 520px);
    max-width: 570px;
    margin: 0 auto;
  }

  .hero-progress {
    right: 20px;
    bottom: 20px;
    left: 20px;
    gap: 14px;
  }

  .products-section,
  .blog-section {
    padding: 78px 20px 90px;
  }

  .section-heading--split {
    display: block;
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: 35px;
  }

  .section-tabs {
    margin-top: 28px;
    overflow-x: auto;
  }

  .section-tabs a {
    white-space: nowrap;
  }

  .archive-grid {
    grid-template-columns: 1fr;
  }

  .product-grid > .product-card,
  .blog-grid > .blog-card {
    flex-basis: 88%;
  }

  .product-card,
  .blog-card {
    min-height: 0;
  }

  .product-card__image {
    min-height: 320px;
  }

  .carousel-line i {
    width: 50%;
  }

  .product-card:hover .product-card__image,
  .product-card:focus-within .product-card__image {
    min-height: 240px;
  }

  .about-section__inner {
    display: flex;
    padding: 58px 20px;
    flex-direction: column;
    border-radius: 22px;
  }

  .about-image--small {
    width: 78%;
    height: 230px;
    align-self: flex-start;
  }

  .about-heading {
    padding: 42px 0;
  }

  .about-heading h2 {
    font-size: 34px;
  }

  .about-copy {
    min-height: 300px;
    padding: 84px 0 45px;
  }

  .about-word {
    left: -10px;
    font-size: 110px;
  }

  .about-copy p {
    margin-bottom: 36px;
  }

  .about-image--large {
    width: 100%;
    min-height: 320px;
    border-radius: 16px;
  }

  .blog-card {
    padding: 28px;
  }

  .contact-cta {
    width: calc(100% - 28px);
    min-height: 390px;
    margin-bottom: -70px;
  }

  .contact-cta__content {
    min-height: 390px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 38px 28px;
  }

  .contact-cta h2 {
    font-size: 34px;
  }

  .contact-hero {
    width: calc(100% - 10px);
    min-height: 520px;
    background-position: 58% center;
  }

  .contact-hero__content {
    padding: 50px 24px;
  }

  .contact-hero h1 {
    max-width: 530px;
    font-size: 37px;
  }

  .contact-details {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    padding: 60px 0 75px;
  }

  .contact-detail-card {
    min-height: 230px;
  }

  .contact-form-section {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    padding: 60px 0 85px;
    gap: 42px;
  }

  .contact-form-intro h2 {
    font-size: 31px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .nictek-contact-form {
    gap: 16px;
  }

  .nictek-contact-form input,
  .nictek-contact-form button[type="submit"] {
    height: 58px;
    min-height: 58px;
  }

  .site-footer {
    padding: 145px 24px 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 45px;
    gap: 38px 24px;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    min-height: 130px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
  }

  .search-panel__dialog {
    padding: 20px;
  }

  .site-search-form button {
    width: 52px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
