:root {
  --navy: #29296b;
  --mint: #58c4b6;
  --blue: #114F93;
  --white: #ffffff;
  --max-width: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Assistant", "Helvetica Neue", sans-serif;
  color: var(--white);
  background: var(--white);
  direction: rtl;
}

img {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  right: 8px;
  z-index: 10000;
  padding: 10px 16px;
  color: #ffffff;
  background: #000000;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #f2f2ef;
}

.hero__image {
  position: absolute;
  inset: 0;
  background: url("../assets/hero_deck.webp") center top / cover no-repeat;
}

.logo {
  position: absolute;
  top: clamp(20px, 3vw, 40px);
  right: clamp(20px, 3vw, 40px);
  z-index: 2;
  width: clamp(180px, 14vw, 258px);
  height: auto;
}


.hero::before {
    content: "";
    position: absolute;
    width: clamp(300px, 30vw, 480px);
    height: clamp(300px, 30vw, 480px);

    top: 0;
    right: 0;

    transform: translate(40%, -50%);

    border-radius: 50%;



    background: radial-gradient(
        circle,
        rgba(255, 255, 255, .81) 0%,
        rgba(255, 255, 255, 0.65) 30%,
        rgba(255, 255, 255, 0.04) 60%,
        rgba(255, 255, 255, 0) 100%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
}


.hero__copy {
  position: relative;
  z-index: 1;
  width: 45%;
  margin-right: auto;
  margin-left: 0;
  padding: 75px 0 140px;
  text-align: right;
}

.hero h1 {
  margin: 0;
  color: var(--mint);
  font-size: clamp(51px, 6vw, 97px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -2px;
}

.hero__sub {
  margin: 15px 0 0;
  color: #114F93;
  font-weight: 500;
  font-size: clamp(35px, 4.5vw, 70px);
}

.hero__separator {
  display: block;
  width: clamp(250px, 30vw, 490px);
  height: auto;
  margin-right: 0;
  object-fit: contain;
}

.hero__lead {
  margin: 15px 0 0;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 45px);
  line-height: 1.25;
}

.main {
  background: linear-gradient(
    #ffffff 0 18px,
    var(--navy) 18px calc(100% - 108px),
    #ffffff calc(100% - 108px)
  );
}

.form-card {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
  padding: 14px clamp(20px, 3vw, 30px) clamp(20px, 3vw, 30px);
  text-align: center;
  background: var(--mint);
  border-radius: 15px;
}

.form-card--top {
  margin-top: -100px;
}

.form-card h2 {
  margin: 0 0 8px;
  font-size: clamp(25px, 4vw, 35px);
}

.form-card--bottom {
  margin-bottom: 0;
  padding-top: 17px;
  padding-bottom: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.form-card--bottom h2 {
  margin-bottom: 4px;
  font-size: 29px;
}

.form-card--bottom > p {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 700;
}

.lead-form {
  max-width: 1124px;
  margin: 0 auto;
}
.form-grid {
  display: flex; 
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 17px 0;

}

.form-grid > label {
  width: 32.5%;
}

.form-grid > label:nth-child(1),
.form-grid > label:nth-child(2) {
  width: 15.5%;
}

.form-grid .wide {
  grid-column: span 2;
}

.form-grid input {
  width: 100%;
  height: clamp(37px, 3vw, 50px);
  padding: 0 13px;
  font-size: clamp(18px, 2vw, 25px);
  color: #0b4d91;
  text-align: right;
  background: #ffffff;
  border: 0;
  border-radius: 10px;
}

.form-grid input::placeholder {
  color: #0b4d91;
  opacity: 1;
}

.file-field {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: clamp(37px, 3vw, 50px);
  padding: 0 13px;
  overflow: hidden;
  color: #0b4d91;
  font-size: clamp(18px, 2vw, 25px);
  background: #ffffff;
  border-radius: 10px;
}

.file-field input {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
}

.privacy {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin: 10px 0 3px;
  font-size: clamp(18px, 2vw, 25px);
}

.privacy input {
  width: 17px;
  height: 17px;
  margin: 0;
  appearance: none;
  background: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
}

.privacy input:checked {
  background: radial-gradient(circle, var(--blue) 0 45%, #ffffff 48% 100%);
}

.privacy input:focus-visible,
.form-grid input:focus-visible,
.lead-form button:focus-visible {
  outline: 3px solid #10105d;
  outline-offset: 2px;
}

.lead-form button {
  width: 32.5%;
  height: clamp(40px, 3vw, 50px);
  color: #ffffff;
  font-size: clamp(25px, 3vw, 35px);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  background: var(--blue);
  border: 0;
  border-radius: 10px;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.form-status {
  min-height: 16px;
  margin: 5px 0 0;
  font-size: clamp(28px, 2vw, 38px);
}

.intro {
  padding: clamp(30px, 3vw, 40px) 20px 20px;
  text-align: center;
}

.intro p {
  margin: 0 0 clamp(30px, 3vw, 40px);
  font-size: clamp(26px, 2vw, 38px);
  line-height: 1.2;
  text-wrap: balance;
}
.intro p b {
  margin-bottom: 10px;
  display: block;
}

.intro__big {
  font-size: clamp(25px, 3vw, 45px) !important;
  font-weight: 500;
}

.intro strong,
.about strong {
  color: var(--mint);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 2vw, 30px);
}

.chips span {
  min-width: 165px;
  padding: clamp(8px, 2vw, 14px) 20px;
  line-height: 1;
  font-size: clamp(25px, 4vw, 35px);
  font-weight: 700;
  background: var(--mint);
  border-radius: 20px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  padding-top: 15px;
}

.info-box {
  min-height: 203px;
  padding: clamp(15px, 3vw, 25px);
  border: clamp(4px, .5vw, 6px) solid var(--mint);
  border-radius: 15px;
}

.info-box h2 {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 18px;
  color: var(--mint);
  font-size: clamp(30px, 3vw, 39px);
}

.info-box h2 img {
  width: clamp(37px, 3vw, 48px);
  height: clamp(37px, 3vw, 48px);
}

.info-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-box li {
  position: relative;
  margin: 6px 0;
  display: flex; 
  align-items: flex-start;
  gap: clamp(20px, 2vw, 30px);
  font-size: clamp(25px, 3vw, 30px);
  line-height: 1.3;
  text-wrap: balance;
}

.info-box li::before {
  display: block;
  margin-top: 6px;
  min-width: clamp(25px, 3vw, 31px);
  width: clamp(25px, 3vw, 31px);
  height: clamp(25px, 3vw, 31px);
  content: "";
  background: url("../assets/list_check.svg") center / contain no-repeat;
}

.about {
  padding: 34px 20px 30px;
  text-align: center;
}

.about h2 {
  margin: 0 0 8px;
  color: var(--mint);
  font-size: clamp(35px, 3vw, 49px);
  text-wrap: balance;
}

.about p {
  margin: 7px 0;
  font-size: clamp(27px, 3vw, 30px);
  line-height: 1.45;
  text-wrap: balance;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 700px) {
  .container,
  .form-card {
    width: min(calc(100% - 42px), 520px);
  }


  .hero__image {
    background-image: url("../assets/hero_mob.webp");
    background-position: center top;
    background-size: 100% auto;
  }

  .hero__image:after {
    content: '';
    display: block; 
    position: absolute; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    top: 60vw;
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.7) 10%,
      rgba(255,255,255,1) 25%,
      rgba(255,255,255,1) 70%,
      #ffffff 100%
  );
  }



  .hero__copy {
    width: 100%;
    margin: 0;
    padding: 75vw 20px 160px;
    text-align: center;
  }
  .hero__separator {
    margin: 0 auto;
  }







  .hero__lead {
    display: none;
  }

  .main {
    background: linear-gradient(
      #ffffff 0 0,
      var(--navy) 0 calc(100% - 270px),
      #ffffff calc(100% - 270px)
    );
  }



  .form-card--top {
    margin-top: -140px;
  }

  .form-grid > label {
    width: 100%;
  }
  .form-grid > label:nth-child(1), .form-grid > label:nth-child(2) {
    width: 48%;
  }

  .form-grid .wide {
    grid-column: auto;
  }



  .privacy {
    margin: 10px 0;
  }

  .lead-form button {
    width: 100%;
  }



  .intro__big {
    display: none;
  }



  .chips {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 0 5px;
  }

  .chips span {
    border-radius: 10px;
    padding: 15px 10px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 4px;
  }
  .deck-only {
    display: none;
  }




}

.grecaptcha-badge {
  visibility: hidden;
}