/* 
      :root {
        
        --amz: #005c7e;
        --text: #111;
        --container: 1200px;
        --header-h: 68px;
      }

      * { margin: 0; padding: 0; box-sizing: border-box; }
      body { font-family: Arial, Helvetica, sans-serif; color: var(--text); background: #fff; }

    
      .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: var(--header-h);
        background: #fff;
        border-bottom: 1px solid #eee;
        z-index: 1000;
      }

      .header__inner {
        max-width: var(--container);
        margin: 0 auto;
        height: 100%;
        padding: 0 18px;
        display: flex;
        align-items: center;
        gap: 28px;
      }

      .brand {
        display: flex;
        align-items: center;
        gap: 16px;
        min-width: 280px;
      }

      .brand img {
        height: 55px;
        width: auto;
        display: block;
        object-fit: contain;
      }

      .nav { flex: 1; }
      .nav__list {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 22px;
        flex-wrap: wrap;
      }

      .nav__item { position: relative; }

      .nav__link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 10px 2px;
        cursor: pointer;

        text-decoration: none;
        color: #111;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .6px;
        text-transform: uppercase;
        user-select: none;
      }

      .nav__caret { font-size: 10px; transform: translateY(-1px); }

     
      .mega {
        position: absolute;
        left: 0;
        top: calc(100% + 12px);
        width: min(980px, 85vw);
        background: #fff;
        border: 1px solid #f0f0f0;
        box-shadow: 0 10px 28px rgba(0,0,0,.08);
        border-radius: 10px;
        padding: 26px;
        display: none;
        z-index: 1200;
      }

      .nav__item--mega:hover .mega,
      .nav__item--mega:focus-within .mega {
        display: block;
      }


     
.nav__item--mega {
  position: relative;
}

.nav__item--mega::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: min(980px, 85vw); 
  height: 12px;           
}

      .mega::before {
        content: "";
        position: absolute;
        top: -8px;
        left: 34px;
        width: 14px;
        height: 14px;
        background: #fff;
        border-left: 1px solid #f0f0f0;
        border-top: 1px solid #f0f0f0;
        transform: rotate(45deg);
      }

      .mega__grid {
        display: grid;
        grid-template-columns: 1.1fr 1.6fr 1.3fr;
        gap: 42px;
        align-items: start;
      }

      .mega__title {
        color: var(--amz);
        font-weight: 900;
        font-size: 12px;
        letter-spacing: .6px;
        text-transform: uppercase;
        margin-bottom: 12px;
      }

      .mega__catLink {
        display: inline-block;
        color: var(--amz);
        text-decoration: none;
        font-weight: 900;
        font-size: 12px;
        letter-spacing: .6px;
        text-transform: uppercase;
        margin-bottom: 12px;
      }

      .mega__list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 14px;
      }

      .mega__item { display: inline-flex; align-items: center; gap: 10px; }

      .mega__itemBtn {
        appearance: none;
        border: none;
        background: transparent;
        cursor: pointer;
        padding: 2px 0;

        color: #111;
        font-size: 13px;
        font-weight: 600;
        text-align: left;
      }

      .mega__itemBtn:hover { color: var(--amz); }

      .mega__preview {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 200px;
      }

      .mega__preview img {
        
        height: auto;
        object-fit: contain;
      }

     
      .hero {
        margin-top: var(--header-h);
        position: relative;
        height: calc(100vh - var(--header-h));
        min-height: 520px;
        overflow: hidden;
        background: #000;
      }

      .hero__fallback {
        position: absolute;
        inset: 0;
        z-index: 0;
        background-size: cover;
        background-position: center;
        filter: contrast(1.05) saturate(1.05);
      }

      .hero__video { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
      .hero__video iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 120vw;
        height: 67.5vw;
        min-width: 120%;
        min-height: 120%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        border: 0;
      }
      @media (max-aspect-ratio: 16/9) {
        .hero__video iframe { width: 177.78vh; height: 100vh; }
      }

      .hero__overlay {
        position: absolute;
        inset: 0;
        z-index: 2;
        background: linear-gradient(
          to bottom,
          rgba(0,0,0,.35) 0%,
          rgba(0,0,0,.12) 55%,
          rgba(0,0,0,.25) 100%
        );
      }

      .hero__content {
        position: relative;
        z-index: 3;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: 28px 18px;
      }

      .hero__scrollHint {
        color: rgba(255,255,255,.9);
        font-size: 12px;
        letter-spacing: .4px;
        text-shadow: 0 2px 10px rgba(0,0,0,.35);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        user-select: none;
      }

      .hero__dot {
        width: 6px; height: 6px; border-radius: 999px;
        background: rgba(255,255,255,.9);
        animation: pulse 1.6s ease-in-out infinite;
      }
      @keyframes pulse {
        0%, 100% { transform: translateY(0); opacity: .65; }
        50% { transform: translateY(-4px); opacity: 1; }
      }

     
      @media (max-width: 900px) {
        .brand { min-width: unset; }
        .mega { width: min(980px, 92vw); }
        .mega__grid { grid-template-columns: 1fr; gap: 22px; }
        .mega::before { left: 22px; }
        .mega__preview { justify-content: flex-start; }
      }

      
      .products {
        background: #fff;
        padding: 54px 0 64px;
      }

      .products__container {
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 18px;
      }

      .products__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        margin-bottom: 18px;
      }

      .products__title {
        font-size: 34px;
        font-weight: 900;
        letter-spacing: -0.2px;
        line-height: 1.1;
      }
      .products__title span { color: var(--amz); }

      .products__all {
        font-size: 13px;
        font-weight: 700;
        color: #111;
        text-decoration: none;
        border-bottom: 1px solid #111;
        padding-bottom: 2px;
      }

      .products__wrap {
        position: relative;
        display: flex;
        align-items: center;
        gap: 14px;
      }

      
.products__viewport {
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
  padding-top: 6px; 
}

      .products__track {
        display: flex;
        gap: 17px;
        transition: transform 450ms ease;
        will-change: transform;
      }

      .products__arrow {
        appearance: none;
        border: none;
        background: transparent;
        cursor: pointer;
        font-size: 40px;
        line-height: 1;
        color: var(--amz);
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        user-select: none;
      }

      .productCard {
        flex: 0 0 auto;
        width: 340px;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 14px;
        overflow: hidden;
        transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
        cursor: pointer;
      }

      
.productCard:hover {
  border-color: #18a2cc; 
transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 2px var(--amz),   
    0 10px 22px rgba(0,0,0,.06); 
}





.productCard:focus-within {
  border-color: var(--amz);
}

     

      .productCard:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(0,0,0,.06);
      }

      .productCard__img {
        height: 260px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 18px;
      }

      .productCard__img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

      .productCard__meta { padding: 18px 18px 20px; }

      .productCard__label { font-size: 11px; color: #666; margin-bottom: 6px; }

      .productCard__name {
        font-size: 18px;
        font-weight: 900;
        letter-spacing: .2px;
        margin-bottom: 18px;
      }

      .productCard__from { font-size: 11px; color: #666; margin-bottom: 6px; }

      .productCard__price { font-size: 16px; font-weight: 900; }

      @media (max-width: 1100px) {
        .productCard { width: 310px; }
        .products__title { font-size: 30px; }
      }

      @media (max-width: 900px) {
        .products__header { flex-direction: column; align-items: flex-start; }
        .products__arrow { display: none; }
        .products__viewport { overflow-x: auto; scroll-snap-type: x mandatory; }
        .products__track { transition: none; }
        .productCard { scroll-snap-align: start; }
      }

      
      .promo {
        background: #fff;
        padding: 18px 0 64px;
      }

      .promo__container {
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 18px;
      }

      .promo__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
      }

      .promoCard {
        position: relative;
        display: block;
        border-radius: 0;
        overflow: hidden;
        min-height: 520px;
        border: 10px solid #fff;
        background: #000;
        text-decoration: none;
      }

      .promoCard__bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transform: scale(1.02);
        transition: transform 600ms ease;
      }

      .promoCard__overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to bottom,
          rgba(0,0,0,.08) 0%,
          rgba(0,0,0,.25) 55%,
          rgba(0,0,0,.45) 100%
        );
      }

      .promoCard__content {
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 54px 46px 44px;
        color: #fff;
      }

      .promoCard__title {
        
        font-size: 50px;
        font-weight: 900;
        letter-spacing: -1px;
        line-height: 0.9;
        text-shadow: 0 10px 26px rgba(0,0,0,.25);
        margin-bottom: 12px;
      }

      .promoCard__text {
        font-size: 26px;
        line-height: 1.25;
        color: rgba(255,255,255,.92);
        text-shadow: 0 10px 26px rgba(0,0,0,.20);
        margin-bottom: 22px;
      }

      .promoCard__text strong { font-weight: 900; color: #fff; }

      .promoCard__cta {
        width: fit-content;
        display: inline-flex;
        align-items: center;
        gap: 14px;
        background: rgba(255,255,255,.95);
        color: #111;
        border-radius: 999px;
        padding: 12px 18px;
        font-weight: 700;
        font-size: 16px;
      }

      .promoCard__icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: var(--amz);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        line-height: 1;
      }

      .promoCard:hover .promoCard__bg { transform: scale(1.06); }

      @media (max-width: 980px) {
        .promo__grid { grid-template-columns: 1fr; }
        .promoCard { min-height: 460px; }
        .promoCard__content { padding: 42px 28px 28px; }
        .promoCard__text { font-size: 22px; }
      }

    
      .heroBanner {
        position: relative;
        width: 100%;
        min-height: 420px;
        height: 46vh;
        max-height: 520px;
        overflow: hidden;
        background: #000;
        border-top: 10px solid #fff;
        border-bottom: 10px solid #fff;
      }

      .heroBanner__bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: left center;
        transform: scale(1.02);
      }

      .heroBanner__shade {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to right,
          rgba(0,0,0,.05) 0%,
          rgba(0,0,0,.18) 52%,
          rgba(0,0,0,.22) 100%
        );
      }

      .heroBanner__container {
        position: relative;
        height: 100%;
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 18px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
      }

      .heroBanner__panel {
        width: min(720px, 92%);
        padding: 28px 26px 26px;
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 26px;
        row-gap: 12px;
        align-items: center;

        background: rgba(0,0,0,.30);
        backdrop-filter: blur(1px);
        border-radius: 6px;
      }

      .heroBanner__title {
      
        font-size: 50px;
        font-weight: 900;
        letter-spacing: -2px;
        line-height: 0.9;
        color: #fff;
        text-transform: uppercase;
        text-shadow: 0 14px 34px rgba(0,0,0,.30);
      }

      .heroBanner__copy {
        color: rgba(255,255,255,.94);
        font-size: 28px;
        line-height: 1.15;
      }

      .heroBanner__copyLight { font-weight: 500; }
      .heroBanner__copyStrong { font-weight: 900; color: #fff; }

      .heroBanner__btn {
        grid-column: 2 / 3;
        justify-self: end;

        display: inline-flex;
        align-items: center;
        gap: 14px;
        background: rgba(255,255,255,.95);
        color: #111;
        border-radius: 999px;
        padding: 12px 18px;
        font-weight: 700;
        font-size: 16px;
        text-decoration: none;
      }

      .heroBanner__btnIcon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: var(--amz);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
      }

      
      @media (max-width: 900px) {
        .heroBanner { height: auto; min-height: 520px; }
        .heroBanner__container { justify-content: center; padding: 0 12px; }
        .heroBanner__panel { grid-template-columns: 1fr; width: 100%; }
        .heroBanner__btn { grid-column: 1; justify-self: start; }
        .heroBanner__copy { font-size: 22px; }
      }

     
      .section { padding: 70px 0; }
      .container { max-width: var(--container); margin: 0 auto; padding: 0 18px; }

      .kickerTitle {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 18px;
        margin-bottom: 26px;
      }

      .kickerTitle h2 {
        font-size: 40px;
        font-weight: 900;
        letter-spacing: -0.4px;
        line-height: 1.05;
      }
      .kickerTitle h2 .amz { color: var(--amz); }

      .kickerTitle p {
        max-width: 760px;
        color: #777;
        font-size: 14px;
        line-height: 1.55;
      }

      .linkUnderline {
        font-size: 13px;
        font-weight: 700;
        color: #111;
        text-decoration: none;
        border-bottom: 1px solid #111;
        padding-bottom: 2px;
        white-space: nowrap;
      }

    
      .servicesGrid {
        display: grid;
        grid-template-columns: 1.2fr 1.2fr 1fr;
        gap: 18px;
      }

      .serviceCard {
        position: relative;
        height: 420px;
        border-radius: 18px;
        overflow: hidden;
        display: block;
        text-decoration: none;
        background: #000;
      }

      .serviceCard__bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transform: scale(1.02);
        transition: transform 600ms ease;
      }

      .serviceCard__overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(0,0,0,.82) 0%,
          rgba(0,0,0,.28) 55%,
          rgba(0,0,0,.08) 100%
        );
      }

      .serviceCard__content {
        position: absolute;
        left: 22px;
        right: 22px;
        bottom: 22px;
        color: #fff;
      }

      .serviceCard__title {
        font-size: 28px;
        font-weight: 900;
        line-height: 1.05;
        margin-bottom: 10px;
      }

      .serviceCard__smallLink {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 12px;
        color: rgba(255,255,255,.9);
        text-decoration: none;
      }

      .serviceCard__smallLink::after {
        content: "";
        width: 86px;
        height: 1px;
        background: rgba(255,255,255,.65);
        transform: translateY(1px);
      }

      .serviceCard:hover .serviceCard__bg { transform: scale(1.07); }

      
      .factory { background: #fff; padding: 0 0 80px; }

      .factory__band {
        background: #000;
        height: 260px;
        position: relative;
        overflow: hidden;
      }

      .factory__bandInner {
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 18px;
        height: 100%;
        display: flex;
        align-items: center;
      }

      .factory__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: min(520px, 80vw);
        height: 96px;
        background: #005c7e;
        color: #fff;
        font-weight: 800;
        text-decoration: none;
        border-radius: 2px;
        position: relative;
      }

      .factory__btn::after {
        content: "";
        position: absolute;
        bottom: 22px;
        left: 50%;
        width: 160px;
        height: 1px;
        background: rgba(255,255,255,.8);
        transform: translateX(-50%);
      }

      .factory__videoWrap {
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 18px;
        display: flex;
        justify-content: center;
        transform: translateY(-110px);
      }

      .factory__video {
        width: min(980px, 92vw);
        aspect-ratio: 16 / 9;
        background: #111;
        overflow: hidden;
        border-radius: 2px;
        box-shadow: 0 18px 44px rgba(0,0,0,.18);
      }

      .factory__video iframe { width: 100%; height: 100%; border: 0; }

      .factory__headline {
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 18px;
        transform: translateY(-72px);
        text-align: center;
      }

      .factory__headline h3 {
        font-size: clamp(32px, 4vw, 44px);
        font-weight: 900;
        line-height: 1.12;
      }

      .factory__headline h3 .amz { color: var(--amz); }
      .factory__headline h3 .white { color: #005c7e; }

    
      .reseller {
        position: relative;
        height: 520px;
        overflow: hidden;
        background: #000;
      }

      .reseller__bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transform: scale(1.02);
      }

      .reseller__shade {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(0,0,0,.25) 0%, rgba(0,0,0,.05) 60%);
      }

      .reseller__container {
        position: relative;
        height: 100%;
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 18px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
      }

      .reseller__card {
        width: min(460px, 92vw);
        background: #005c7e;
        color: #fff;
        padding: 34px 30px;
        border-radius: 2px;
      }

      .reseller__card h3 {
        font-size: 28px;
        font-weight: 900;
        margin-bottom: 10px;
      }

      .reseller__card p {
        font-size: 13px;
        line-height: 1.55;
        opacity: .92;
        margin-bottom: 16px;
        max-width: 380px;
      }

      .reseller__more {
        font-size: 12px;
        font-weight: 800;
        color: #fff;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,.75);
        padding-bottom: 2px;
      }

    
      .newsGrid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 22px;
        margin-top: 18px;
      }

      .newsCard {
        text-decoration: none;
        color: #111;
        display: block;
      }

      .newsCard__img {
        height: 240px;
        background: #eee;
        overflow: hidden;
      }

      .newsCard__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.02);
        transition: transform 500ms ease;
      }

      .newsCard:hover .newsCard__img img { transform: scale(1.07); }

      .newsCard__title {
        margin-top: 14px;
        font-size: 16px;
        font-weight: 900;
        line-height: 1.25;
      }

      .newsCard__desc {
        margin-top: 10px;
        font-size: 12px;
        line-height: 1.6;
        color: #6a6a6a;
      }

      .newsCard__more {
        margin-top: 12px;
        font-size: 10px;
        font-weight: 900;
        color: var(--amz);
        letter-spacing: .6px;
        text-transform: uppercase;
      }

    
      .footer {
        background: #000;
        color: #fff;
        padding: 64px 0 38px;
      }

      .footer__container {
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 18px;
      }

      .footer__top {
        display: grid;
        grid-template-columns: 320px repeat(4, 1fr);
        gap: 34px;
        align-items: start;
      }

      .footer__brand { display: flex; flex-direction: column; gap: 16px; }

      .footer__logo {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        font-weight: 900;
        letter-spacing: .8px;
        text-transform: uppercase;
      }

      .footer__logoMark {
        width: 34px;
        height: 34px;
      
      }

      .footer__meta {
        color: rgba(255,255,255,.65);
        font-size: 13px;
        line-height: 1.6;
        margin-top: 6px;
      }

      .footerCol__title {
        color: rgba(255,255,255,.6);
        font-size: 14px;
        margin-bottom: 12px;
      }

      .footerCol__list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .footerCol__list a {
        color: #fff;
        text-decoration: none;
        font-weight: 800;
        font-size: 14px;
      }

      .footerCol__list a:hover { color: rgba(255,255,255,.8); }

      .footer__social {
        display: flex;
        gap: 10px;
        margin-top: 10px;
        flex-wrap: wrap;
      }

      .socialBtn {
        width: 34px;
        height: 34px;
        border-radius: 4px;
        background: rgba(255,255,255,.10);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 900;
      }

      .footer__bottom {
        margin-top: 42px;
        padding-top: 22px;
        border-top: 1px solid rgba(255,255,255,.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,.55);
        font-size: 13px;
      }

   
      @media (max-width: 1100px) {
        .servicesGrid { grid-template-columns: 1fr 1fr; }
        .newsGrid { grid-template-columns: repeat(2, 1fr); }
        .footer__top { grid-template-columns: 1fr 1fr; }
      }

      @media (max-width: 700px) {
        .kickerTitle { flex-direction: column; align-items: flex-start; }
        .kickerTitle h2 { font-size: 34px; }

        .servicesGrid { grid-template-columns: 1fr; }
        .serviceCard { height: 380px; }

        .newsGrid { grid-template-columns: 1fr; }

        .reseller { height: 520px; }
        .reseller__container { justify-content: center; }

        .factory__band { height: 220px; }
        .factory__videoWrap { transform: translateY(-90px); }
        .factory__headline { transform: translateY(-56px); }
      } */

:root {
  --amz: #005c7e;
  --text: #111;
  --container: 1200px;
  --header-h: 84px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
}

body.menu-open {
  overflow: hidden;
}

/* =========================
   HEADER
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 220px;
  text-decoration: none;
}

.brand img {
  height: 55px;
  width: auto;
  display: block;
  object-fit: contain;
  max-width: 100%;
}

.nav {
  flex: 1;
}

.nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 2px;
  cursor: pointer;
  text-decoration: none;
  color: #111;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  user-select: none;
}

.nav__caret {
  font-size: 10px;
  transform: translateY(-1px);
}

.menuToggle {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menuToggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #111;
  border-radius: 999px;
}

/* =========================
   MEGA MENU
========================= */
.mega {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  width: min(980px, 85vw);
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 26px;
  display: none;
  z-index: 1200;
}

.nav__item--mega:hover .mega,
.nav__item--mega:focus-within .mega {
  display: block;
}

.nav__item--mega {
  position: relative;
}

.nav__item--mega::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: min(980px, 85vw);
  height: 12px;
}

.mega::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 34px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid #f0f0f0;
  border-top: 1px solid #f0f0f0;
  transform: rotate(45deg);
}

.mega__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.mega__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mega__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mega__itemBtn {
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 2px 0;
  color: #111;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}

.mega__itemBtn:hover {
  color: var(--amz);
}

.mega__preview {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
}

.mega__preview img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
}

/* =========================
   MOBILE MENU
========================= */
.mobileMenuOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 1090;
}

.mobileMenuOverlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobileMenu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(92vw, 380px);
  height: 100vh;
  background: #fff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.16);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1100;
  overflow-y: auto;
  padding: 18px 20px 28px;
}

.mobileMenu.is-open {
  transform: translateX(0);
}

.mobileMenu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
  margin-bottom: 18px;
}

.mobileMenu__logo {
  height: 42px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.mobileMenu__close {
  border: none;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  color: #111;
}

.mobileNav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobileNav__item {
  border-bottom: 1px solid #f1f1f1;
}

.mobileNav__toggle,
.mobileNav__link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  text-decoration: none;
  background: transparent;
  border: none;
  color: #111;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  cursor: pointer;
}

.mobileNav__icon {
  font-size: 24px;
  color: var(--amz);
  transition: transform 0.2s ease;
}

.mobileNav__item.is-open .mobileNav__icon {
  transform: rotate(45deg);
}

.mobileNav__submenu {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.mobileNav__submenu > div {
  overflow: hidden;
}

.mobileNav__item.is-open .mobileNav__submenu {
  grid-template-rows: 1fr;
}

.mobileNav__submenu a {
  display: block;
  padding: 10px 0 10px 10px;
  text-decoration: none;
  color: #444;
  font-size: 14px;
  font-weight: 600;
}

/* =========================
   HERO
========================= */
.hero {
  margin-top: var(--header-h);
  position: relative;
  height: calc(100vh - var(--header-h));
  min-height: 520px;
  overflow: hidden;
  background: #000;
}

.hero__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: contrast(1.05) saturate(1.05);
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 67.5vw;
  min-width: 120%;
  min-height: 120%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}

@media (max-aspect-ratio: 16/9) {
  .hero__video iframe {
    width: 177.78vh;
    height: 100vh;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.12) 55%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 28px 18px;
}

.hero__scrollHint {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  letter-spacing: 0.4px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}

.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.65;
  }
  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

/* =========================
   CARROSSEL
========================= */
.products {
  background: #fff;
  padding: 54px 0 64px;
}

.products__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.products__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.products__title {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.2px;
  line-height: 1.1;
}

.products__title span {
  color: var(--amz);
}

.products__all {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 2px;
}

.products__wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.products__viewport {
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
  padding-top: 6px;
}

.products__track {
  display: flex;
  gap: 17px;
  transition: transform 450ms ease;
  will-change: transform;
}

.products__arrow {
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 40px;
  line-height: 1;
  color: var(--amz);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.productCard {
  flex: 0 0 auto;
  width: 340px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.productCard:hover {
  border-color: #18a2cc;
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 2px var(--amz), 0 10px 22px rgba(0, 0, 0, 0.06);
}

.productCard:focus-within {
  border-color: var(--amz);
}

.productCard__img {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.productCard__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.productCard__meta {
  padding: 18px 18px 20px;
}

.productCard__label {
  font-size: 11px;
  color: #666;
  margin-bottom: 6px;
}

.productCard__name {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.2px;
  margin-bottom: 18px;
}

.productCard__from {
  font-size: 11px;
  color: #666;
  margin-bottom: 6px;
}

.productCard__price {
  font-size: 16px;
  font-weight: 900;
}

/* =========================
   PROMO
========================= */
.promo {
  background: #fff;
  padding: 18px 0 64px;
}

.promo__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.promo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.promoCard {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 520px;
  border: 10px solid #fff;
  background: #000;
  text-decoration: none;
}

.promoCard__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 600ms ease;
}

.promoCard__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.25) 55%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.promoCard__content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 54px 46px 44px;
  color: #fff;
}

.promoCard__title {
  font-size: 50px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 0.9;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  margin-bottom: 12px;
}

.promoCard__text {
  font-size: 26px;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  margin-bottom: 22px;
}

.promoCard__text strong {
  font-weight: 900;
  color: #fff;
}

.promoCard__cta {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 16px;
}

.promoCard__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--amz);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.promoCard:hover .promoCard__bg {
  transform: scale(1.06);
}

/* =========================
   BANNER
========================= */
.heroBanner {
  position: relative;
  width: 100%;
  min-height: 420px;
  height: 46vh;
  max-height: 520px;
  overflow: hidden;
  background: #000;
  border-top: 10px solid #fff;
  border-bottom: 10px solid #fff;
}

.heroBanner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: left center;
  transform: scale(1.02);
}

.heroBanner__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.18) 52%,
    rgba(0, 0, 0, 0.22) 100%
  );
}

.heroBanner__container {
  position: relative;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.heroBanner__panel {
  width: min(720px, 92%);
  padding: 28px 26px 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 26px;
  row-gap: 12px;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(1px);
  border-radius: 6px;
}

.heroBanner__title {
  font-size: 50px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.9;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

.heroBanner__copy {
  color: rgba(255, 255, 255, 0.94);
  font-size: 28px;
  line-height: 1.15;
}

.heroBanner__copyLight {
  font-weight: 500;
}

.heroBanner__copyStrong {
  font-weight: 900;
  color: #fff;
}

.heroBanner__btn {
  grid-column: 2 / 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
}

.heroBanner__btnIcon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--amz);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* =========================
   UTIL
========================= */
.section {
  padding: 70px 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.kickerTitle {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.kickerTitle h2 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.4px;
  line-height: 1.05;
}

.kickerTitle h2 .amz {
  color: var(--amz);
}

.kickerTitle p {
  max-width: 760px;
  color: #777;
  font-size: 14px;
  line-height: 1.55;
}

.linkUnderline {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 2px;
  white-space: nowrap;
}

/* =========================
   SERVIÇOS
========================= */
.servicesGrid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  gap: 18px;
}

.serviceCard {
  position: relative;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: #000;
}

.serviceCard__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 600ms ease;
}

.serviceCard__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.28) 55%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.serviceCard__content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: #fff;
}

.serviceCard__title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 10px;
}

.serviceCard__smallLink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.serviceCard__smallLink::after {
  content: "";
  width: 86px;
  height: 1px;
  background: rgba(255, 255, 255, 0.65);
  transform: translateY(1px);
}

.serviceCard:hover .serviceCard__bg {
  transform: scale(1.07);
}

/* =========================
   FÁBRICA
========================= */
.factory {
  background: #fff;
  padding: 0 0 80px;
}

.factory__band {
  background: #000;
  height: 260px;
  position: relative;
  overflow: hidden;
}

.factory__bandInner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
}

.factory__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(520px, 80vw);
  height: 96px;
  background: #005c7e;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border-radius: 2px;
  position: relative;
}

.factory__btn::after {
  content: "";
  position: absolute;
  bottom: 22px;
  left: 50%;
  width: 160px;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(-50%);
}

.factory__videoWrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  justify-content: center;
  transform: translateY(-110px);
}

.factory__video {
  width: min(980px, 92vw);
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.factory__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.factory__headline {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
  transform: translateY(-72px);
  text-align: center;
}

.factory__headline h3 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.12;
}

.factory__headline h3 .amz {
  color: var(--amz);
}

/* =========================
   REVENDEDOR
========================= */
.reseller {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: #000;
}

.reseller__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.reseller__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.05) 60%);
}

.reseller__container {
  position: relative;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.reseller__card {
  width: min(460px, 92vw);
  background: #005c7e;
  color: #fff;
  padding: 34px 30px;
  border-radius: 2px;
}

.reseller__card h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 10px;
}

.reseller__card p {
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.92;
  margin-bottom: 16px;
  max-width: 380px;
}

.reseller__more {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  padding-bottom: 2px;
}

/* =========================
   NEWS
========================= */
.newsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 18px;
}

.newsCard {
  text-decoration: none;
  color: #111;
  display: block;
}

.newsCard__img {
  height: 240px;
  background: #eee;
  overflow: hidden;
}

.newsCard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 500ms ease;
}

.newsCard:hover .newsCard__img img {
  transform: scale(1.07);
}

.newsCard__title {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.newsCard__desc {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.6;
  color: #6a6a6a;
}

.newsCard__more {
  margin-top: 12px;
  font-size: 10px;
  font-weight: 900;
  color: var(--amz);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #000;
  color: #fff;
  padding: 64px 0 38px;
}

.footer__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.footer__top {
  display: grid;
  grid-template-columns: 320px repeat(4, 1fr);
  gap: 34px;
  align-items: start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.footer__meta {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 6px;
}

.footerCol__title {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 12px;
}

.footerCol__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footerCol__list a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

.footerCol__list a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.socialBtn {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.footer__bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 1100px) {
  .servicesGrid {
    grid-template-columns: 1fr 1fr;
  }

  .newsGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .productCard {
    width: 310px;
  }

  .products__title {
    font-size: 30px;
  }
}

@media (max-width: 980px) {
  .promo__grid {
    grid-template-columns: 1fr;
  }

  .promoCard {
    min-height: 460px;
  }

  .promoCard__content {
    padding: 42px 28px 28px;
  }

  .promoCard__text {
    font-size: 22px;
  }
}

@media (max-width: 900px) {
  .brand {
    min-width: unset;
  }

  .mega {
    width: min(980px, 92vw);
  }

  .mega__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .mega::before {
    left: 22px;
  }

  .mega__preview {
    justify-content: flex-start;
  }

  .heroBanner {
    height: auto;
    min-height: 520px;
  }

  .heroBanner__container {
    justify-content: center;
    padding: 0 12px;
  }

  .heroBanner__panel {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .heroBanner__btn {
    grid-column: 1;
    justify-self: start;
  }

  .heroBanner__copy {
    font-size: 22px;
  }

  .products__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .products__arrow {
    display: none;
  }

  .products__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .products__track {
    transition: none;
  }

  .productCard {
    scroll-snap-align: start;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 88px;
  }

  .nav--desktop {
    display: none;
  }

  .menuToggle {
    display: inline-flex;
  }

  .header__inner {
    padding: 0 14px;
  }

  .brand {
    flex: 1;
  }

  .brand img {
    height: 46px;
  }

  .hero {
    min-height: 420px;
  }

  .products {
    padding: 38px 0 48px;
  }

  .products__title {
    font-size: 28px;
  }

  .productCard {
    width: 82vw;
    max-width: 320px;
  }

  .productCard__img {
    height: 220px;
  }

  .promo {
    padding: 8px 0 38px;
  }

  .promoCard {
    min-height: 380px;
    border-width: 6px;
  }

  .promoCard__content {
    padding: 28px 20px 22px;
  }

  .promoCard__title {
    font-size: 36px;
  }

  .promoCard__text {
    font-size: 20px;
  }

  .heroBanner__title {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .heroBanner__copy {
    font-size: 20px;
  }

  .section {
    padding: 48px 0;
  }

  .kickerTitle {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
  }

  .kickerTitle h2 {
    font-size: 30px;
  }

  .servicesGrid {
    grid-template-columns: 1fr;
  }

  .serviceCard {
    height: 320px;
  }

  .serviceCard__title {
    font-size: 24px;
  }

  .factory__band {
    height: 180px;
  }

  .factory__btn {
    width: 100%;
    height: 78px;
    text-align: center;
    padding: 0 16px;
  }

  .factory__videoWrap {
    transform: translateY(-64px);
    padding: 0 14px;
  }

  .factory__headline {
    transform: translateY(-36px);
  }

  .factory__headline h3 {
    font-size: 28px;
  }

  .reseller {
    height: 430px;
  }

  .reseller__container {
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 24px;
  }

  .reseller__card {
    width: 100%;
    padding: 24px 20px;
  }

  .footer {
    padding: 42px 0 28px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__bottom {
    margin-top: 28px;
    padding-top: 18px;
    text-align: center;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 700px) {
  .kickerTitle h2 {
    font-size: 34px;
  }

  .newsGrid {
    grid-template-columns: 1fr;
  }

  .factory__band {
    height: 220px;
  }

  .factory__videoWrap {
    transform: translateY(-90px);
  }

  .factory__headline {
    transform: translateY(-56px);
  }
}

@media (max-width: 540px) {
  :root {
    --header-h: 82px;
  }

  .header__inner {
    gap: 10px;
  }

  .brand img {
    height: 38px;
  }

  .menuToggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: 360px;
  }

  .hero__scrollHint {
    font-size: 13px;
  }

  .products__title {
    font-size: 24px;
  }

  .productCard {
    width: 86vw;
  }

  .productCard__img {
    height: 200px;
    padding: 12px;
  }

  .productCard__name {
    font-size: 16px;
  }

  .promoCard__title,
  .heroBanner__title {
    font-size: 30px;
  }

  .promoCard__text,
  .heroBanner__copy {
    font-size: 18px;
  }

  .kickerTitle h2 {
    font-size: 26px;
  }

  .serviceCard {
    height: 280px;
  }

  .factory__headline h3 {
    font-size: 24px;
  }

  .mobileMenu {
    width: 100vw;
    max-width: 100vw;
    padding: 16px;
  }
}


main {
  min-height: 100vh;
}

.hero,
.productHero {
  margin-top: var(--header-h);
}

.main-content {
  margin-top: var(--header-h);
}
