@font-face {
  font-family: "Bricolage";
  src: url("Bricolage_Grotesque/BricolageGrotesque-VariableFont_opsz,wdth,wght.ttf") format("truetype");
  font-weight: 100 900;
}

@font-face {
  font-family: "Bricolage Condensed";
  src: url("Bricolage_Grotesque/static/BricolageGrotesque_36pt_Condensed-ExtraBold.ttf") format("truetype");
  font-weight: 800;
}

@font-face {
  font-family: "Stereo";
  src: url("StereoGothicW01-800.ttf") format("truetype");
}

:root {
  --lime: #c9dc31;
  --black: #020202;
  --ink: #111111;
  --muted: #efefdb;
}

* {
  box-sizing: border-box;
}

html {
  background: #fff;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Bricolage", Arial, sans-serif;
  background: #fff;
  overflow-x: hidden;
}

.page {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}

.hero {
  position: relative;
  aspect-ratio: 1600 / 1028;
  min-height: 430px;
  margin: clamp(14px, 1.15vw, 24px);
  padding: 0;
  border-radius: clamp(28px, 4.2vw, 82px);
  color: #fff;
  text-align: center;
  background-image: url("export/jpg/1-1.jpg");
  background-size: cover;
  background-position: 56% center;
}


h1,
h2,
h3 {
  font-family: "Bricolage Condensed", "Bricolage", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand {
  font-family: "Stereo", "Bricolage", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
  text-align: center;
}

.hero .brand {
  position: absolute;
  z-index: 1;
  top: 23.7%;
  left: 50%;
  transform: translateX(-50%);
  width: min(76%, 650px);
  height: auto;
  display: block;
}

.brand sup {
  display: inline-block;
  margin-left: .12em;
  font-family: "Bricolage", Arial, sans-serif;
  font-size: .5em;
  font-weight: 800;
  line-height: 1;
  vertical-align: super;
}

.collab {
  position: absolute;
  z-index: 1;
  top: 35.1%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: var(--lime);
  font-family: "Stereo", sans-serif;
  font-size: clamp(30px, 5vw, 72px);
  line-height: 1;
}

.silence {
  position: absolute;
  z-index: 1;
  top: 39%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: min(50%, 350px);
  height: auto;
}

.hero p {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 15.5%;
  width: min(86%, 1300px);
  margin: 0;
  transform: translateX(-50%);
  font-size: clamp(20px, 6vw, 48px);
  font-weight: 300;
  line-height: 1.13;
}

.hero p span {
  color: var(--lime);
}

.pill {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: calc(.1% - 15px);
  display: inline-flex;
  min-width: clamp(146px, 18vw, 250px);
  min-height: clamp(48px, 5vw, 78px);
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  padding: clamp(10px, 1.2vw, 16px) clamp(26px, 2.8vw, 44px);
  border: 2px solid rgba(255, 255, 255, .28);
  border-radius: 14px;
  background: var(--lime);
  color: #000;
  font-family: "Bricolage Condensed", "Bricolage", Arial, sans-serif;
  font-size: clamp(22px, 2.1vw, 32px);
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .24);
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.pill:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .28);
  filter: brightness(1.03);
}

.pill:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.intro {
  padding: 28px 30px 0;
  text-align: center;
}

.intro h1 {
  margin: 0;
  font-family: "Stereo", "Bricolage", Arial, sans-serif;
  font-weight: 800;
  font-size: 26px;
  line-height: .96;
}

.intro h1 span,
.intro h3 span,
.answer h2 span,
.visual p span {
  color: var(--lime);
}

.intro h1 .question {
  color: #000;
}

.rule {
  width: 100%;
  height: 1px;
  margin: 11px auto 12px;
  background: #9b9b9b;
}

.intro p {
  margin: 0;
  font-size: 14px;
  line-height: 1.22;
}

.features-stack {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 32px 0 24px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(72px, 24vw, 104px);
  align-items: center;
  gap: clamp(10px, 3vw, 16px);
}

.feature-row-right {
  grid-template-columns: clamp(72px, 24vw, 104px) minmax(0, 1fr);
}

.feature-card {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px clamp(12px, 3.5vw, 16px);
  border-radius: 5px;
  color: #fff;
  background: #000;
  box-shadow: 6px 7px 14px rgba(0, 0, 0, .18);
}

.feature-card h2 {
  margin: 0;
  color: #fff;
  font-family: "Stereo", "Bricolage", Arial, sans-serif;
  font-size: var(--feature-title-size, 13px);
  line-height: var(--feature-title-line, .84);
  text-align: left;
  word-break: normal;
}

.feature-card h2 span {
  color: var(--lime);
}

.feature-row-right .feature-card h2 {
  text-align: right;
}

.feature-arrow {
  display: block;
  width: min(var(--arrow-width), 30%);
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.feature-arrow-left {
  transform: scaleX(-1);
}

.feature-icon {
  display: grid;
  width: clamp(72px, 24vw, 104px);
  height: clamp(72px, 24vw, 104px);
  place-items: center;
  justify-self: center;
  border-radius: 50%;
  background: #000;
  box-shadow: 7px 9px 14px rgba(0, 0, 0, .18);
  overflow: hidden;
}

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

.features-stack+p {
  max-width: 620px;
  margin: 18px auto 32px !important;
  font-size: 16px !important;
  line-height: 1.24 !important;
}

.info-panel {
  position: relative;
  width: min(100%, 1040px);
  margin: 0 auto 42px;
  padding-left: 36px;
  padding-right: 0;
}

.info-panel-right {
  padding-right: 36px;
  padding-left: 0;
}

.info-panel-right h3 {
  padding-left: 30px
}

.info-panel-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.info-panel-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.info-panel-right .info-panel-bg {
  transform: scaleX(-1);
}

.info-panel-mark {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 0;
  width: 82px;
  height: 82px;
}

.info-panel-right .info-panel-mark {
  right: 0;
  left: auto;
}

.info-panel-content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  padding: 20px 18px 20px 32px;
  color: #fff;
  text-align: left;

}

.info-panel h3 {
  margin: 0 0 20px;
  color: #fff;
  font-family: "Stereo", "Bricolage", Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
}

.info-panel-right .info-panel-content {
  padding-right: 46px;
  padding-left: 24px;
}

.info-panel h3 span {
  color: var(--lime);
}

.info-panel p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.22;
}

.info-panel p strong {
  font-weight: 900;
}



.info-panel-license .info-panel-card {
  min-height: 220px;
}

.info-panel-new .info-panel-bg {
  display: none;
}

.info-panel-new .info-panel-content {}

.modes {
  position: relative;
  height: 210px;
  margin-top: 20px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #fff;
  overflow: hidden;
}

.mode-band {
  position: absolute;
  left: -58%;
  width: 190%;
  background: var(--lime);
  text-align: center;
}

.mode-band-top {
  top: 28px;
  z-index: 2;
  display: grid;
  min-height: 72px;
  place-items: center;
  transform: rotate(6deg);
  box-shadow: 0 14px 22px rgba(0, 0, 0, .18);
}

.mode-band-top h2 {
  text-align: left;
}

.mode-band-bottom {
  bottom: 20px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 92px;
  padding: 14px 20px 18px;
  transform: rotate(-8deg);
  box-shadow: 0 -10px 22px rgba(0, 0, 0, .12);
}

.mode-band h2 {
  margin: 0;
  font-family: "Stereo", "Bricolage", Arial, sans-serif;
  font-size: 15px;
  line-height: .88;
}

.mode-icons,
.mode-labels {
  display: grid;
  grid-template-columns: repeat(3, clamp(50px, 9vw, 100px));
  gap: clamp(10px, 3vw, 36px);
  justify-content: center;
  text-align: center;
}

.mode-icons img {
  display: block;
  width: 50px;
  height: auto;
  margin: 0 auto;
}

.mode-labels {
  font-family: "Stereo", "Bricolage", Arial, sans-serif;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  align-items: center;
}

.mode-labels span {
  display: block;
  text-align: center;
  width: 100%;
}


.visual {
  padding: 32px 18px 34px;
}

.visual-card {
  position: relative;
  aspect-ratio: 565 / 420;
  max-width: 680px;
  margin: 0 auto;
  overflow: hidden;
}

.visual-asset {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.visual-card p {
  position: absolute;
  z-index: 1;
  right: 8%;
  bottom: 26%;
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.08;
  text-align: left;
}

.faq {
  padding: 54px 30px 0;
}

.answer {
  position: relative;
  margin: 3px 0 24px;
}

.answer-right {
  text-align: right;
}

.number {
  position: absolute;
  z-index: 0;
  top: -32px;
  color: rgba(201, 220, 49, .24);
  font-family: "Stereo", sans-serif;
  font-size: 66px;
  line-height: 1;
}

.answer-left .number {
  left: 8px;
}

.answer-left:first-child .number {

  transform: rotate(-7deg);
  transform-origin: center;
}

.answer-right .number {
  right: 8px;
  transform: rotate(7deg);
  transform-origin: center;
}

.answer-left.last .number {
  transform: rotate(-7deg);
  transform-origin: center;
}

.answer h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  font-family: "Stereo", "Bricolage", Arial, sans-serif;
  font-size: 24px;
  line-height: .93;
}

.answer p {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.3;
}

.down {
  display: block;
  width: auto;
  max-width: 100px;
  height: auto;
  margin-left: 0;
  margin-right: auto;
  margin-top: 10px;
}

.last {
  margin-bottom: 62px;
}

.answer-right .down {
  margin-left: auto;
  margin-right: 0;
}

.contact {
  padding: 8px 24px 74px;
}

.contact-form {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: 34px clamp(24px, 5vw, 56px);
  border: clamp(12px, 2vw, 18px) solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    repeating-linear-gradient(135deg,
      #f0f0f0 0 2px,
      transparent 2px 10px) border-box;
}

.contact-copy,
.form-grid,
.contact-preference,
.privacy-checks,
.contact-submit {
  position: relative;
}

.contact-copy {
  margin-bottom: 30px;
}

.contact-copy h2 {
  margin: 0 0 8px;
  font-family: "Bricolage Condensed", "Bricolage", Arial, sans-serif;
  font-size: clamp(20px, 4.8vw, 34px);
  line-height: 1;
}

.contact-copy p {
  margin: 0;
  max-width: 720px;
  font-size: clamp(17px, 3.8vw, 25px);
  line-height: 1.22;
}

.contact-copy p span {
  display: block;
  color: #7b8b12;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 4px;
}

.form-grid label span {
  color: #8c8c8c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d8d8d8;
  border-radius: 0;
  padding: 10px 12px;
  color: #151515;
  background: #fff;
  font: 400 16px/1.2 "Bricolage", Arial, sans-serif;
  resize: vertical;
}

.form-grid textarea {
  min-height: 74px;
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: #1c65d8;
  outline: 1px solid #1c65d8;
  outline-offset: 0;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #69717d;
  opacity: .88;
}

.contact-preference {
  margin: 16px 0 0;
  padding: 0;
  border: 0;
}

.contact-preference legend {
  margin: 0 0 16px;
  color: #000;
  font-size: clamp(19px, 4vw, 27px);
  font-weight: 900;
  line-height: 1.1;
}

.contact-preference label,
.privacy-checks label {
  display: inline-flex;
  align-items: flex-start;
  gap: 7px;
  margin-right: 18px;
  color: #4c4c4c;
  font-size: 16px;
  line-height: 1.35;
}

.contact-preference input,
.privacy-checks input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--lime);
}

.privacy-checks {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
}

.privacy-checks label {
  margin: 0;
}

.contact-submit {
  display: flex;
  width: min(100%, 520px);
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 0 22px 0 0;
  padding: 13px 18px 13px 24px;
  color: #000;
  background: var(--lime);
  cursor: pointer;
  font-family: "Bricolage Condensed", "Bricolage", Arial, sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  transition: filter .18s ease, transform .18s ease;
}

.contact-submit:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.contact-submit:focus-visible {
  outline: 3px solid #000;
  outline-offset: 4px;
}

.submit-arrow {
  width: 24px;
  height: 24px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: rotate(45deg);
}

.footer {
  position: relative;
  min-height: 185px;
  padding: 42px 24px 64px;
  color: #fff;
  background: url("export/jpg/14.jpg") center bottom / 100% 100% no-repeat;
}

.footer-logo {
  display: block;
  position: relative;
  z-index: 1;
  width: min(68%, 260px);
  height: auto;
  margin: 0 auto;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 14px 0 22px;
  color: var(--lime);
}

.socials span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  padding: 4px;
}

.socials svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

address {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  width: max-content;
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-style: normal;
  line-height: 1.18;
}

.footer-new {
  position: absolute;
  top: -14px;
  left: 29px;
  display: inline-block;
  padding: 1px 4px;
  transform: rotate(-7deg);
  color: #000;
  background: var(--lime);
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
}

.footer-arrow {
  position: absolute;
  top: 2px;
  left: -26px;
  width: 18px;
  height: auto;
}

.footer a {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
}

@media (min-width: 760px) {

  .page {
    overflow: visible;
  }

  .intro,
  .faq {
    width: min(100%, 1300px);
    margin: 0 auto;
  }

  .intro {
    padding: 82px 76px 0;
  }

  .intro h1 {
    font-size: 36px;
  }

  .rule {
    margin: 24px auto 24px;
  }

  .intro p {
    font-size: 35px;
    line-height: 1.16;
  }

  .answer p {
    font-size: 17px;
    line-height: 1.22;
  }

  .features-stack {
    max-width: 100%;
    gap: 48px;
    margin: 76px auto 58px;
  }

  .feature-row {
    gap: 44px;
  }

  .feature-card {
    min-height: 112px;
    padding: 40px;
    border-radius: 20px;
  }

  .features-stack+p {
    max-width: 920px;
    font-size: 35px !important;
    line-height: 1.16 !important;
  }

  .info-panel {
    width: min(100%, 1110px);
    margin-bottom: 56px;
    padding-left: 98px;
  }

  .info-panel-right {
    padding-right: 98px;
    padding-left: 0;
  }

  .info-panel-card {
    min-height: 315px;
  }

  .info-panel-new .info-panel-bg {
    display: block;
  }

  .info-panel-mark {
    top: 32px;
    width: 130px;
    height: 130px;
  }

  .info-panel-content {
    padding: 54px 66px 56px 38px;
  }

  .info-panel-right .info-panel-content {
    padding-right: 118px;
    padding-left: 30px;
  }

  .info-panel h3 {
    margin-bottom: 104px;
    font-size: 40px;
    padding-left: 108px;
  }

  .info-panel-right h3 {
    padding-left: 30px;
  }

  .info-panel p {
    font-size: 34px;
    line-height: 1.14;
  }

  .info-panel-battery .info-panel-card {
    min-height: 320px;
  }

  .info-panel-battery .info-panel-content {
    padding-top: 44px;
  }

  .info-panel-battery h3 {
    margin-bottom: 66px;
  }

  .info-panel-license .info-panel-card {
    min-height: 340px;
  }

  .info-panel-license h3 {
    margin-bottom: 62px;
  }

  .info-panel-license p {
    font-size: 29px;
  }

  .modes {
    height: 620px;
    margin-top: 34px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .mode-band-top {
    top: 58px;
    min-height: 116px;
  }

  .mode-band-bottom {
    bottom: 82px;
    min-height: 155px;
    padding-bottom: 34px;
  }

  .mode-band h2 {
    font-size: 30px;
  }

  .mode-icons,
  .mode-labels {
    grid-template-columns: repeat(3, clamp(80px, 10vw, 140px));
    gap: clamp(20px, 4vw, 60px);
  }

  .mode-icons img {
    width: 50px;
  }

  .mode-labels {
    font-size: 30px;
  }

  .mode-labels span:not(:last-child)::after {
    margin: 0 12px;
  }

  .visual {
    padding: 88px clamp(64px, 8vw, 110px) 64px;
  }

  .visual-card {
    max-width: 760px;
  }

  .visual-card p {
    right: 8%;
    bottom: 26%;
    font-size: 26px;
  }

  .faq {
    padding: 110px 300px 0;
  }

  .answer {
    margin: 16px 0 118px;
  }

  .number {
    top: -148px;
    font-size: 165px;
  }

  .answer h2 {
    margin-bottom: 38px;
    font-size: 25px;
  }

  .last {
    margin-bottom: 170px;
  }

  .contact {
    padding: 0 clamp(54px, 9vw, 120px) 108px;
  }

  .contact-form {
    padding: 44px clamp(46px, 5vw, 68px) 48px;
  }

  .form-grid {
    gap: 15px;
  }

  .form-grid input {
    min-height: 54px;
    font-size: 18px;
  }

  .form-grid textarea {
    min-height: 88px;
    font-size: 18px;
  }

  .contact-preference label,
  .privacy-checks label {
    font-size: 18px;
  }

  .footer {
    min-height: 300px;
    padding: 86px clamp(120px, 12vw, 170px) 74px;
  }

  .footer-logo {
    width: min(62%, 416px);
  }

  .socials {
    gap: 28px;
    margin: 28px 0 32px;
  }

  .socials span {
    width: 34px;
    height: 34px;
    padding: 7px;
  }

  address,
  .footer a {
    font-size: 16px;
  }

  address {
    gap: 12px;
  }

  .footer-new {
    top: -20px;
    left: 44px;
    padding: 2px 6px;
    font-size: 12px;
  }

  .footer-arrow {
    top: 4px;
    left: -46px;
    width: 33px;
  }

  .footer a {
    right: clamp(100px, 11vw, 160px);
    bottom: 78px;
  }
}

@media (max-width: 360px) {
  .intro {
    padding-inline: 22px;
  }

  .features-stack {
    margin-inline: -4px;
  }

}

@media (max-width: 600px) {

  html,
  body,
  .page {
    width: 100%;
    max-width: 100%;
  }

  .navbar {
    top: 14px;
    height: 44px;
    padding-inline: 12px;
  }

  .navbar-links {
    width: min(100%, 320px);
    justify-content: space-between;
  }

  .navbar-links li {
    width: auto;
  }

  .navbar-links a {
    font-size: 12px;
  }

  .hero {
    display: grid;

    aspect-ratio: auto;
    margin: 14px;
    border-radius: 26px;
    background-image: url("export/25.png");

  }

  .hero .brand {
    top: 24%;
    width: 82%;
    max-width: 310px;
  }

  .collab {
    top: 34.5%;
    font-size: 34px;
  }

  .silence {
    top: 44.5%;
    width: 58%;
    max-width: 220px;
  }

  .hero p {
    bottom: 17%;
    width: 82%;
    font-size: 25px;
    line-height: 1.12;
  }

  .pill {
    bottom: -15px;
    min-width: 134px;
    min-height: 50px;
    border-radius: 12px;
    font-size: 22px;
  }

  .intro {
    padding: 46px 22px 0;
    text-align: left;
  }

  .intro h1 {
    font-size: clamp(22px, 5.4vw, 35px);
    line-height: .98;
    overflow-wrap: normal;
  }

  .intro h1 span {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
  }

  .intro p {
    max-width: 100%;
    font-size: clamp(19px, 4.8vw, 25px);
    line-height: 1.18;
  }

  .features-stack {
    gap: 38px;
    margin: 54px -22px 44px;
  }

  .feature-card {
    min-width: 0;
    min-height: clamp(96px, 22vw, 120px);
    padding: 20px 28px 20px 30px;
    border-radius: 0 34px 34px 0;
  }

  .feature-card h2 {
    font-size: clamp(13px, 2.8vw, 20px) !important;
    line-height: .98 !important;
  }

  .feature-row,
  .feature-row-right {
    width: 100%;
    gap: clamp(18px, 4.4vw, 24px);
  }

  .feature-row {
    grid-template-columns: minmax(0, 1fr) clamp(84px, 20vw, 102px);
    padding-right: 22px;
  }

  .feature-row-right {
    grid-template-columns: clamp(84px, 20vw, 102px) minmax(0, 1fr);
    padding-left: 22px;
    margin-right: -22px;
    width: calc(100% + 22px);
  }

  .feature-row-right .feature-card {
    justify-content: flex-end;
    padding-right: 0;
    padding-left: 28px;
    border-radius: 34px 0 0 34px;
  }

  .feature-row-right .feature-card h2 {
    padding-right: 16px;
  }

  .feature-arrow {
    display: none;
  }

  .feature-icon {
    width: clamp(84px, 20vw, 102px);
    height: clamp(84px, 20vw, 102px);
  }

  .features-stack+p {
    max-width: 96%;
    margin: 0 auto 54px !important;
    font-size: clamp(19px, 4.5vw, 24px) !important;
    line-height: 1.18 !important;
    text-align: center;
  }

  .info-panel {
    width: 100%;
    margin-bottom: 52px;
    padding: 0;
  }

  .info-panel-right {
    padding: 0;
  }

  .info-panel-mark {
    top: 9px;
    left: 0;
    width: 40px;
    height: 40px;
  }

  .info-panel-right .info-panel-mark {
    right: 0;
    left: auto;
  }

  .info-panel-right .info-panel-bg {
    content: url("export/28.png");
    transform: none;
  }

  .info-panel-card {
    overflow: visible;
    min-height: 187px;
    border-radius: 0px;

  }



  .info-panel-bg {
    display: block;
    object-fit: fill;
  }

  .info-panel-license .info-panel-bg {
    content: url("export/29.png");
  }

  .info-panel-new .info-panel-card {
    background-image: url("export/27.png");
    background-size: cover;
    background-position: center;
  }

  .info-panel-content,
  .info-panel-right .info-panel-content {
    display: block;
    min-height: inherit;
    padding: 24px 20px 22px 16px;

  }

  .info-panel h3 {
    margin-bottom: 16px;
    padding-left: 56px;
    font-size: clamp(14px, 3.5vw, 22px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .info-panel-right h3 {
    padding-left: 0;
  }

  .info-panel p {
    font-size: clamp(14px, 4vw, 22px);
    line-height: 1.18;
    margin-top: 50px;
  }

  .info-panel-license p {
    font-size: clamp(13px, 3.8vw, 20px);
  }

  .modes {
    height: 300px;
    margin-top: 10px;
  }

  .mode-band-bottom {
    bottom: 54px;
  }

  .mode-band {
    left: -55%;
    width: 210%;
  }

  .mode-band h2 {
    font-size: 17px;
  }

  .mode-icons,
  .mode-labels {
    grid-template-columns: repeat(3, 58px);
    gap: 16px;
  }

  .mode-icons img {
    width: 48px;
  }

  .visual {
    padding: 38px 20px 42px;
  }

  .visual-card {
    aspect-ratio: 1 / 1;
  }

  .visual-card p {
    right: 7%;
    bottom: 35%;
    font-size: 20px;
  }

  .faq {
    padding: 50px 24px 0;
  }

  .answer {
    margin-bottom: 54px;
  }

  .answer h2 {
    font-size: clamp(21px, 6vw, 26px);
  }

  .answer p {
    font-size: 14px;
  }

  .number {
    top: -28px;
    font-size: 64px;
  }

  .last {
    margin-bottom: 84px;
  }

  .contact {
    padding: 0 14px 62px;
  }

  .contact-form {
    padding: 28px 22px 30px;
  }

  .contact-copy {
    margin-bottom: 24px;
  }

  .contact-copy h2 {
    font-size: clamp(18px, 5.8vw, 25px);
  }

  .contact-copy p {
    font-size: clamp(16px, 4.5vw, 19px);
  }

  .contact-preference label {
    margin-bottom: 10px;
  }

  .privacy-checks {
    margin-bottom: 28px;
  }

  .contact-submit {
    width: 100%;
  }

  .footer {
    padding: 44px 24px 82px;
    background-size: cover;
  }

  address {
    width: min(100%, 260px);
  }

  .footer a {
    right: 24px;
    bottom: 28px;
  }
}

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: clamp(14px, 3%, 28px);
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  transition: top 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.is-fixed {
  top: 0;
  background: var(--black);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.32);
}

.navbar-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-links li {
  width: clamp(80px, 10vw, 130px);
  text-align: center;
}

.navbar-links a {
  font-family: "Bricolage Condensed", "Bricolage", Arial, sans-serif;
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  transition: color 0.2s ease;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--lime);
}

.navbar.is-fixed .navbar-links a {
  text-shadow: none;
}

/* ─── Barra di scorrimento ─── */
.navbar-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 0%;
  height: 3px;
  background: var(--lime);
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ─── Scroll-reveal ─── */
.js [data-a] {
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

.js [data-a="fade"] {
  opacity: 0;
}

.js [data-a="up"] {
  opacity: 0;
  transform: translateY(36px);
}

.js [data-a="left"] {
  opacity: 0;
  transform: translateX(-36px);
}

.js [data-a="right"] {
  opacity: 0;
  transform: translateX(36px);
}

.js [data-a="zoom"] {
  opacity: 0;
  transform: scale(0.94);
}

.js [data-a="rule"] {
  transform: scaleX(0);
  transform-origin: left;
}

.js [data-a].is-visible {
  opacity: 1;
}

.js [data-a="up"].is-visible,
.js [data-a="left"].is-visible,
.js [data-a="right"].is-visible,
.js [data-a="zoom"].is-visible,
.js [data-a="rule"].is-visible {
  transform: none;
}

@media (max-width: 600px) {
  .navbar {
    top: 14px;
    height: 44px;
    padding-inline: 12px;
  }

  .navbar.is-fixed {
    top: 0;
  }

  .navbar-links {
    width: min(100%, 320px);
    justify-content: space-between;
  }

  .navbar-links li {
    width: auto;
  }

  .navbar-links a {
    font-size: 14px;
  }
}
