@charset "UTF-8";
@import url("fonts/Montserrat/style.css");
:root {
  --accent: #7775c6;
  --text: #707271;
  --global: #525252;
  --dark: #000;
  --light: #fff;
  --gradient: linear-gradient(90deg, #acddd1 0%, #9ccfdf 24%, #b0a7e3 48%, #c5a7d7 64%, #e7c7b7 84%, #e6e0bc 100%);
  --text-gradient: linear-gradient(90deg, #f1f7cd 0%, #bfe8e0 13%, #b9d8fb 27%, #c9c2f8 41%, #ebb2dc 55%, #f2c6cc 70%, #efe7bf 84%, #c6edf0 100%);
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.45;
  background: #fff;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

p,
h1,
h2,
figure,
dl,
dd {
  margin: 0;
}

p {
  margin-bottom: 0.9rem;
}

strong {
  font-weight: bolder;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 16px 24px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  font: 700 1rem/1 "Montserrat", Arial, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.button--gradient {
  background: var(--gradient);
}

.text--gradient {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  width: 100%;
  min-height: 180px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 3rem;
  background: #000;
}
.site-header .button {
  justify-self: end;
  padding: 16px;
}
.site-header .site-header__product {
  text-align: center;
  color: #fff;
  line-height: 1.2em;
}
.site-header .site-header__product h3 {
  margin: 0 0 20px 0;
  font-size: 24px;
  line-height: 1em;
}
.site-header .site-header__product p {
  font-size: 1.1em;
}
.site-header .site-header__product small {
  font-size: 0.8em;
  font-style: italic;
  font-weight: 200;
}
.site-header .site-header__price {
  font-size: 1.2em;
}
@media (max-width: 1024px) {
  .site-header {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .site-header {
    grid-template-columns: 88px 1fr auto;
    min-height: 110px;
    padding: 0 1rem;
  }
  .site-header .site-header__product {
    margin: 1rem 0 0 0;
    font-size: 0.9em;
  }
  .site-header .site-header__product h3 {
    font-size: 20px;
  }
  .site-header .button {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 12px;
  }
}
@media (max-width: 565px) {
  .site-header .site-header__product {
    font-size: 0.6em;
  }
  .site-header .site-header__product h3 {
    font-size: 16px;
  }
}
@media (max-width: 460px) {
  .site-header {
    grid-template-columns: 66px 1fr auto;
  }
  .site-header .button {
    min-height: 36px;
    font-size: 10px;
  }
  .site-header .site-header__product {
    font-size: 0.72em;
  }
}
@media (max-width: 339px) {
  .site-header .site-header__product {
    display: none;
  }
}

.brand-mark {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}
.brand-mark svg {
  display: block;
  width: auto;
  height: 132px;
}
@media (max-width: 767px) {
  .brand-mark svg {
    height: 78px;
  }
}
@media (max-width: 460px) {
  .brand-mark svg {
    height: 66px;
  }
}

.hero {
  min-height: calc(100svh - 226px);
  display: flex;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8rem;
  color: #fff;
  background-color: #000;
  background-image: url("images/hero/hero-desktop.jpg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto;
}
.hero__content {
  width: 340px;
}
.hero__title {
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
}
.hero__subtitle {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.1;
}
.hero .button {
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .hero {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .hero__content {
    width: 330px;
  }
}
@media (max-width: 767px) {
  .hero {
    min-height: calc(100svh - 110px);
    align-items: flex-start;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
    background-image: url("images/hero/hero-mobile.jpg");
    background-position: center bottom;
  }
  .hero__content {
    width: 100%;
    transform: none;
  }
  .hero__title {
    font-size: 24px;
  }
}

.overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 730px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 8rem;
}
.overview__copy {
  align-self: center;
  padding: 0 5rem 0 1rem;
}
.overview h1 {
  margin-top: 10px;
  color: var(--text);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}
.overview dl strong {
  color: var(--global);
}
.overview__video {
  position: relative;
  overflow: hidden;
}
.overview__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .overview {
    grid-template-columns: 1fr 1fr;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .overview__copy {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .overview {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 2rem 2rem 0;
  }
  .overview__copy {
    padding-right: 0;
  }
  .overview h1 {
    font-size: 38px;
  }
  .overview__video {
    min-height: 400px;
    margin: 40px -2rem 0;
  }
}

.lead {
  margin-top: 22px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
  border: 1px solid var(--accent);
  border-radius: 10px;
  overflow: hidden;
  line-height: 1.2em;
  font-size: 16px;
}
.spec-grid div {
  min-height: 106px;
  padding: 16px;
  border-right: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
}
.spec-grid div:nth-child(2n) {
  border-right: 0;
}
.spec-grid div:nth-last-child(-n+2) {
  border-bottom: 0;
}
.spec-grid dt {
  font-weight: 700;
  margin-bottom: 10px;
}
.spec-grid dd {
  margin-top: 4px;
}
.spec-grid span {
  font-size: 0.9rem;
}
@media (max-width: 767px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }
  .spec-grid div,
  .spec-grid div:nth-child(2n),
  .spec-grid div:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid var(--accent);
    text-align: center;
  }
  .spec-grid div:last-child {
    border-bottom: 0;
  }
}

.feature {
  min-height: 782px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 8rem;
  color: #fff;
  background-position: center;
  background-size: cover;
}
.feature--01 {
  background-image: url("images/features/feature-01.jpg");
}
.feature--02 {
  background-image: url("images/features/feature-02.jpg");
}
.feature--03 {
  background-image: url("images/features/feature-03.jpg");
}
.feature--04 {
  background-image: url("images/features/feature-04.jpg");
}
.feature--05 {
  background-image: url("images/features/feature-05.jpg");
}
.feature--06 {
  background-image: url("images/features/feature-06.jpg");
}
.feature--07 {
  background-image: url("images/features/feature-07.jpg");
}
.feature--08 {
  background-image: url("images/features/feature-08.jpg");
}
.feature__copy {
  width: min(50%, 34rem);
}
.feature__copy > p:not(.eyebrow) {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.1;
}
.feature h2 {
  margin-top: 10px;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
}
.feature__icons {
  display: flex;
  gap: 30px;
  margin-top: 22px;
}
.feature__icons img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .feature {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .feature__copy {
    width: min(42%, 34rem);
  }
}
@media (max-width: 767px) {
  .feature {
    min-height: 760px;
    align-items: flex-start;
    padding: 3rem 2rem 1rem;
  }
  .feature--01 {
    background-image: url("images/features/feature-01_mobile.jpg");
  }
  .feature--02 {
    background-image: url("images/features/feature-02_mobile.jpg");
  }
  .feature--03 {
    background-image: url("images/features/feature-03_mobile.jpg");
  }
  .feature--04 {
    background-image: url("images/features/feature-04_mobile.jpg");
  }
  .feature--05 {
    background-image: url("images/features/feature-05_mobile.jpg");
  }
  .feature--06 {
    background-image: url("images/features/feature-06_mobile.jpg");
  }
  .feature--07 {
    background-image: url("images/features/feature-07_mobile.jpg");
  }
  .feature--08 {
    background-image: url("images/features/feature-08_mobile.jpg");
  }
  .feature__copy {
    width: 100%;
  }
  .feature__copy > p:not(.eyebrow) {
    font-size: 18px;
  }
  .feature h2 {
    font-size: 24px;
  }
  .feature__icons {
    gap: 10px;
  }
  .feature__icons img {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 420px) {
  .feature h2 {
    font-size: 22px;
  }
}

.comparison,
.accessories,
.distributors,
.order-section,
.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
}

.comparison,
.accessories,
.distributors {
  padding: 5rem 9.35rem;
  text-align: center;
}
.comparison h2,
.accessories h2,
.distributors h2 {
  margin: 18px auto 0;
  max-width: 980px;
  color: var(--global);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .comparison,
  .accessories,
  .distributors {
    min-height: 0;
    padding: 3rem 1rem;
  }
  .comparison h2,
  .accessories h2,
  .distributors h2 {
    font-size: 31px;
    line-height: 1.08;
  }
}
@media (max-width: 420px) {
  .comparison h2,
  .accessories h2,
  .distributors h2 {
    font-size: 22px;
  }
}

.comparison {
  min-height: 760px;
}
.comparison__image {
  height: 480px;
  margin-top: 28px;
  background: url("images/comparison/comparazione-desktop.png") center/contain no-repeat;
}
@media (max-width: 767px) {
  .comparison__image {
    height: 420px;
    background-image: url("images/comparison/comparazione-mobile-3.png");
  }
}

.video-band {
  height: min(56.25vw, 810px);
  max-width: var(--max-width);
  margin: 0 auto;
  overflow: hidden;
  background: #000;
}
.video-band video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 810px;
}

.accessories-carousel {
  position: relative;
  margin-top: 44px;
  overflow: hidden;
}
.accessories-carousel__track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  transition: transform 0.35s ease;
}
@media (max-width: 767px) {
  .accessories-carousel__track {
    display: flex;
    width: 100%;
  }
}

.accessory-card {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 12px;
  color: var(--text);
  text-transform: uppercase;
  font-weight: 700;
}
.accessory-card img {
  width: 200px;
  height: 158px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .accessory-card {
    flex: 0 0 100%;
  }
}

.carousel-button {
  display: none;
}
@media (max-width: 767px) {
  .carousel-button {
    position: absolute;
    top: 42%;
    z-index: 2;
    display: block;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    cursor: pointer;
  }
  .carousel-button::before {
    content: "";
    position: absolute;
    inset: 13px;
    border-top: 2px solid var(--text);
    border-left: 2px solid var(--text);
  }
  .carousel-button--prev {
    left: 0;
  }
  .carousel-button--prev::before {
    transform: rotate(-45deg);
  }
  .carousel-button--next {
    right: 0;
  }
  .carousel-button--next::before {
    transform: rotate(135deg);
  }
}

.carousel-dots {
  display: none;
}
@media (max-width: 767px) {
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
  }
  .carousel-dots button {
    width: 18px;
    height: 18px;
    padding: 0;
    border: 2px solid var(--text);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
  }
  .carousel-dots button.is-active {
    width: 32px;
    background: var(--text);
  }
}

.distributors__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 44px;
}
.distributors__grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 16px;
}
.distributors__grid img {
  width: 220px;
  height: 60px;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .distributors__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .distributors__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .distributors__grid a {
    min-height: 78px;
    padding: 8px;
  }
  .distributors__grid img {
    width: 150px;
    height: 54px;
  }
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 520px) 583px;
  column-gap: 70px;
  row-gap: 16px;
  min-height: 835px;
  padding: 128px 128px 128px 148px;
  align-items: center;
  color: #fff;
  background: #000 url("images/order-section/background-form-desktop.jpg") center/cover no-repeat;
}
.order-section h2 {
  margin-bottom: 4px;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.order-section__copy {
  align-self: center;
  padding-top: 6px;
}
.order-section__copy > p:last-child:not(.price) {
  font-size: 16px;
  line-height: 1.2;
}
.order-section__intro {
  max-width: 520px;
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.1;
}
@media (max-width: 1024px) {
  .order-section {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    column-gap: 3rem;
    row-gap: 16px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .order-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: 0;
    padding: 2rem 1rem;
    color: var(--text);
    background: #fff;
  }
  .order-section h2 {
    font-size: 24px;
  }
  .order-section__intro {
    font-size: 18px;
  }
}

.discount,
.price {
  font-size: 16px;
  line-height: 1.2;
}

.discount {
  margin-top: 0;
  margin-bottom: 24px;
}
.discount strong {
  font-weight: 800;
}

.price {
  margin-bottom: 4px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 10px;
  row-gap: 9px;
  align-self: center;
  padding: 48px 48px 47px;
  border-radius: 7px;
  color: var(--text);
  background: #fff;
}
.order-form label {
  display: grid;
  gap: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}
.order-form input:not([type=checkbox]) {
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid #cfcfcf;
  font: inherit;
}
.order-form__fieldset {
  display: contents;
  min-inline-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.order-form__full {
  grid-column: 1/-1;
}
.order-form__acceptance {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 8px;
  margin-top: 4px;
  font-weight: 400 !important;
}
.order-form__acceptance input {
  width: 13px;
  height: 13px;
  margin: 3px 0 0;
}
.order-form__acceptance a {
  text-decoration: underline;
}
.order-form__submit {
  width: 88%;
  min-height: 47px;
  margin: 28px auto 0;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .order-form {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
    border: 1px solid #eee;
  }
}

.message {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 7px;
  background: #fff;
  color: var(--global);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  white-space: pre-line;
}
.message[hidden] {
  display: none;
}
.message::before {
  display: inline-flex;
  flex: 0 0 24px;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  font-family: Arial, sans-serif;
}
.message-success::before {
  content: "✓";
  background: #22a447;
}
.message-error::before {
  content: "×";
  background: #d73434;
}
@media (max-width: 767px) {
  .message {
    grid-column: 1;
  }
}

.site-footer {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.site-footer img {
  width: 182px;
  height: auto;
}
