/* ==========================================================
   APPLY PAGE
========================================================== */

.apply-page {
  background: #100329;
}


/* ==========================================================
   APPLY HERO
========================================================== */

.apply-hero {
  position: relative;

  min-height: 950px;

  overflow: hidden;

  color: #ffffff;
  
  background: #0c021f;
    background:
      radial-gradient(
      ellipse 55% 75% at -12% 5%,
      rgba(145, 0, 255, 0.72) 0%,
      rgba(115, 0, 210, 0.42) 28%,
      rgba(60, 0, 110, 0.18) 52%,
      rgba(12, 2, 31, 0) 74%
    )
  
}
.apply-hero::before {
  content: "";

  position: absolute;
  z-index: 1;

  right: 23%;
  top: 28%;

  width: 620px;
  height: 300px;

  border-radius: 50%;

  background:
    radial-gradient(
      ellipse at 70% 50%,
      rgba(255, 175, 95, 0.30) 0%,
      rgba(255, 110, 80, 0.15) 28%,
      rgba(150, 75, 255, 0.07) 52%,
      transparent 75%
    );

  filter: blur(35px);

  mix-blend-mode: screen;

  pointer-events: none;
}



.hero-stars {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.star {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  opacity: 0.18;
  background: #ffffff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.85);
  animation: star-twinkle 3.6s ease-in-out infinite;
}

.star--1 {
  top: 12%;
  left: 7%;
  animation-delay: -0.4s;
  animation-duration: 3.2s;
}

.star--2 {
  top: 18%;
  left: 24%;
  width: 2px;
  height: 2px;
  animation-delay: -1.2s;
  animation-duration: 4.4s;
}

.star--3 {
  top: 8%;
  left: 42%;
  animation-delay: -2.3s;
  animation-duration: 3.8s;
}

.star--4 {
  top: 24%;
  left: 58%;
  width: 2px;
  height: 2px;
  animation-delay: -0.8s;
  animation-duration: 5.1s;
}

.star--5 {
  top: 11%;
  right: 19%;
  animation-delay: -1.9s;
  animation-duration: 3.5s;
}

.star--6 {
  top: 31%;
  right: 7%;
  width: 2px;
  height: 2px;
  animation-delay: -2.7s;
  animation-duration: 4.8s;
}

.star--7 {
  top: 46%;
  left: 11%;
  width: 2px;
  height: 2px;
  animation-delay: -1.6s;
  animation-duration: 3.1s;
}

.star--8 {
  top: 56%;
  left: 32%;
  animation-delay: -0.3s;
  animation-duration: 4.2s;
}

.star--9 {
  top: 42%;
  left: 48%;
  width: 2px;
  height: 2px;
  animation-delay: -2.4s;
  animation-duration: 5.4s;
}

.star--10 {
  top: 62%;
  right: 17%;
  animation-delay: -1.1s;
  animation-duration: 3.7s;
}

.star--11 {
  top: 72%;
  right: 5%;
  width: 2px;
  height: 2px;
  animation-delay: -3s;
  animation-duration: 4.5s;
}

.star--12 {
  top: 79%;
  left: 19%;
  animation-delay: -0.7s;
  animation-duration: 3.4s;
}

.star--13 {
  top: 83%;
  left: 54%;
  width: 2px;
  height: 2px;
  animation-delay: -2.1s;
  animation-duration: 5.2s;
}

.star--14 {
  top: 68%;
  left: 72%;
  animation-delay: -1.4s;
  animation-duration: 3.9s;
}

.star--15 {
  top: 37%;
  left: 84%;
  width: 2px;
  height: 2px;
  animation-delay: -2.8s;
  animation-duration: 4.7s;
}

@keyframes star-twinkle {
  0%,
  100% {
    opacity: 0.12;
    transform: scale(0.75);
  }

  45% {
    opacity: 0.9;
    transform: scale(1.35);
  }

  60% {
    opacity: 0.32;
    transform: scale(0.9);
  }
}

/*
  Η φωτογραφία καταλαμβάνει το δεξί μέρος.
*/
.apply-hero__photo {
  position: absolute;

  z-index: 0;

  top: 0;
  right: 0;
  bottom: 0;

  width: 60%;

  overflow: hidden;
}


/* Η πραγματική φωτογραφία */

.apply-hero__photo::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    url("/assets/images/boho_home.png")
    center/ cover
    no-repeat;
  filter:
    brightness(1.05)
    saturate(1.0);

  /*
    FADE ΤΗΣ ΙΔΙΑΣ ΤΗΣ ΦΩΤΟΓΡΑΦΙΑΣ
    προς τα αριστερά
  */

  -webkit-mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.18) 7%,
      rgba(0, 0, 0, 0.60) 16%,
      #000 27%,
      #000 100%
    );

  mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.18) 7%,
      rgba(0, 0, 0, 0.60) 16%,
      #000 27%,
      #000 100%
    );

  pointer-events: none;
}


/*
  Soft transition μεταξύ solid dark
  και φωτογραφίας.
*/

.apply-hero__photo::before {
  content: "";

  position: absolute;

  inset: 0 auto 0 0;

  width: 120px;

  background:
    linear-gradient(
      90deg,
      #0c021f 0%,
      rgba(12, 2, 31, 0.55) 32%,
      rgba(12, 2, 31, 0) 100%
    );

  pointer-events: none;
}


/*
  Very subtle purple atmosphere
*/

.apply-hero::after {
  content: "";

  position: absolute;

  z-index: 0;

  left: 28%;
  bottom: -180px;

  width: 500px;
  height: 420px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(118, 81, 247, 0.10),
      transparent 68%
    );

  pointer-events: none;
}

/* ==========================================================
   CONTENT
========================================================== */

.apply-hero__content {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(470px, 0.92fr)
    minmax(470px, 540px);

  align-items: center;

  gap:
    clamp(55px, 6vw, 100px);

  width: 100%;

  max-width: 1500px;

  min-height: 690px;

  margin: 50px auto 0;

  padding:
    30px clamp(55px, 6vw, 100px)
    70px;
}


/* ==========================================================
   LEFT COPY
========================================================== */

.apply-hero__copy {
  position: relative;

  z-index: 3;

  align-self: center;

  max-width: 650px;

  padding-left: 50px;
}


.apply-eyebrow {
  margin:
    0
    0
    22px;

  color: rgba(202, 127, 255, 1);

  font-size: 13px;

  font-weight: 800;

  letter-spacing: 0.08em;
}


.apply-hero__copy h1 {
  max-width: 620px;

  margin: 0;

  color: #ffffff;

  font-size:
    clamp(43px, 4vw, 58px);

  font-weight: 800;

  line-height: 1.08;

  letter-spacing: -0.055em;
}


.apply-hero__copy h1 span {
  color: rgba(202, 127, 255, 1);
}


.apply-hero__subtitle {
  max-width: 520px;

  margin:
    32px
    0
    0;

  color:
    rgba(220, 213, 232, 0.72);

  font-size:
    clamp(15px, 1.05vw, 18px);

  font-weight: 500;

  line-height: 1.65;
}


/* ==========================================================
   FLOATING CARDS AREA
========================================================== */

.apply-floating {
  position: relative;

  width:
    min(100%, 540px);

  height: 205px;

  margin-top: 48px;
}


/*
  Πολύ subtle connecting glow.
*/

.apply-floating::before {
  content: "";

  position: absolute;

  z-index: 0;

  left: 16px;
  right: 40px;

  bottom: 59px;

  height: 1px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(118, 81, 247, 0.62),
      rgba(202, 127, 255, 0.52),
      transparent
    );

  box-shadow:
    0 0 16px
    rgba(118, 81, 247, 0.28);

  transform:
    rotate(-5deg);

  pointer-events: none;
}


/* ==========================================================
   FLOATING CARD
========================================================== */

.apply-floating__card {
  position: absolute;

  z-index: 1;

  display: grid;

  grid-template-columns:
    38px
    minmax(0, 1fr)
    auto;

  align-items: center;

  gap: 12px;

  min-height: 72px;

  padding:
    12px
    14px;

  border:
    1px solid
    rgba(202, 127, 255, 0.19);

  border-radius: 17px;

  color: #ffffff;

  background:
    rgba(255, 255, 255, 0.055);

  -webkit-backdrop-filter:
    blur(14px);

  backdrop-filter:
    blur(14px);

  box-shadow:
    0 14px 30px
    rgba(0, 0, 0, 0.19),

    inset 0 1px 0
    rgba(255, 255, 255, 0.08);

  animation:
    apply-float
    6s
    ease-in-out
    infinite;
}


.apply-floating__card--one {
  top: 0;

  left: 126px;

  width: 330px;
}


.apply-floating__card--two {
  top: 66px;

  left: 0;

  width: 270px;

  grid-template-columns:
    38px
    minmax(0, 1fr);

  animation-delay: -1.7s;
}


.apply-floating__card--three {
  right: 20px;

  bottom: 0;

  width: 330px;

  grid-template-columns:
    38px
    minmax(0, 1fr);

  animation-delay: -3.1s;
}


/* ==========================================================
   FLOATING ICON
========================================================== */

.apply-floating__icon {
  display: grid;

  width: 38px;
  height: 38px;

  place-items: center;

  border-radius: 50%;

  color: #caa9ff;

  background:
    rgba(118, 81, 247, 0.14);

  box-shadow:
    inset 0 0 0 1px
    rgba(202, 127, 255, 0.24);

  font-size: 17px;

  font-weight: 800;
}


.apply-floating__card strong {
  display: block;

  color: #ffffff;

  font-size: 13px;

  font-weight: 750;

  line-height: 1.15;
}


.apply-floating__card p {
  margin:
    5px
    0
    0;

  color:
    rgba(255, 255, 255, 0.55);

  font-size: 11px;

  font-weight: 500;

  line-height: 1.3;
}





@keyframes apply-float {

  0%,
  100% {
    transform:
      translateY(0);
  }

  50% {
    transform:
      translateY(-8px);
  }

}


/* ==========================================================
   FORM WRAPPER
========================================================== */

.apply-hero__form-wrap {
  position: relative;

  z-index: 4;

  display: flex;

  justify-content: flex-end;

  align-items: center;
}


/* ==========================================================
   FORM GLASS CARD
========================================================== */

.apply-form-card {
  width: 100%;
  max-width: 500px;

  padding:
    32px
    30px
    28px;

  border:
    1px solid
    rgba(255, 255, 255, 0.2);

  border-radius: 28px;

  background:
    rgba(124, 72, 142, 0.2);

  -webkit-backdrop-filter:
    blur(18px);

  backdrop-filter:
    blur(18px);

  box-shadow:
    0 25px 60px
    rgba(143, 40, 164, 0.28),

    inset 0 1px 0
    rgba(113, 34, 165, 0.08);
}


/* ==========================================================
   FORM HEADING
========================================================== */

.apply-form-card__heading p {
  margin:
    0
    0
    9px;

  color: #b98aff;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.08em;
}


.apply-form-card__heading h2 {
  margin: 0;

  color: #ffffff;

  font-size:
    clamp(28px, 2.2vw, 36px);

  font-weight: 800;

  line-height: 1.06;

  letter-spacing: -0.045em;
}


.apply-form-card__subtitle {
  max-width: 390px;

  margin-top: 13px;

  color:
    rgba(255, 255, 255, 0.8);

  font-size: 13px;

  font-weight: 500;

  line-height: 1.55;
}


/* ==========================================================
   FORM FIELDS
========================================================== */

.apply-form-card__fields {
  display: grid;

  gap: 15px;

  margin-top: 27px;
}


.apply-field {
  display: flex;

  flex-direction: column;

  gap: 7px;
}


.apply-field span {
  color:
    rgba(255, 255, 255, 0.8);

  font-size: 12px;

  font-weight: 650;
}


/* ==========================================================
   INPUT
========================================================== */

.apply-field input {
  width: 100%;

  height: 54px;

  padding:
    0
    21px;

  outline: none;

  border:
    1px solid
    rgba(255, 255, 255, 0.14);

  border-radius: 999px;

  color: #171126;

  background:
    rgba(255, 255, 255, 0.96);

  font: inherit;

  font-size: 14px;

  box-shadow:
    0 3px 10px
    rgba(0, 0, 0, 0.06);

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}


.apply-field input::placeholder {
  color: #968ea1;
}


.apply-field input:focus {
  border-color:
    rgba(202, 127, 255, 0.75);

  box-shadow:
    0 0 0 4px
    rgba(118, 81, 247, 0.13),

    0 5px 16px
    rgba(0, 0, 0, 0.08);
}


/* ==========================================================
   CONSENT
========================================================== */

.apply-form-card .consent {
  display: flex;

  gap: 9px;

  margin-top: 17px;

  align-items: flex-start;

  color:
    rgba(255, 255, 255, 0.55);

  font-size: 10.5px;

  font-weight: 500;

  line-height: 1.5;
}


.apply-form-card .consent input {
  width: 15px;
  height: 15px;

  margin-top: 1px;

  flex:
    0
    0
    15px;

  accent-color: #7651f7;

  cursor: pointer;
}


.apply-form-card .consent span {
  display: block;
}


.apply-form-card .consent a {
  color: #c49aff;

  font-weight: 700;

  text-decoration: none;
}


.apply-form-card .consent a:hover {
  text-decoration: underline;
}


/* ==========================================================
   SUBMIT — SAME LANGUAGE AS SITE BUTTONS
========================================================== */

.apply-form-card__submit {
  display: inline-flex;

  width: 100%;

  height: 54px;

  margin-top: 18px;

  align-items: center;

  justify-content: center;

  gap: 13px;

  border:
    1px solid
    rgba(202, 127, 255, 0.86);

  border-radius: 999px;

  cursor: pointer;

  color: #ffffff;

  background:
    rgba(91, 36, 187, 0.27);

  box-shadow:
    0 10px 24px
    rgba(32, 5, 64, 0.16);

  font: inherit;

  font-size: 14px;

  font-weight: 750;

  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}


.apply-form-card__submit:hover {
  border-color:
    rgba(216, 168, 255, 1);

  background:
    rgba(118, 81, 247, 0.46);

  box-shadow:
    0 12px 27px
    rgba(74, 28, 157, 0.28),

    0 0 20px
    rgba(202, 127, 255, 0.13);

  transform:
    translateY(-2px);
}


.apply-form-card__submit-arrow {
  color: #ca7fff;

  font-size: 19px;

  line-height: 1;

  transition:
    transform 180ms ease;
}


.apply-form-card__submit:hover
.apply-form-card__submit-arrow {
  transform:
    translateX(4px);
}


/* ==========================================================
   NOTE
========================================================== */

.apply-form-card__note {
  margin:
    13px
    0
    0;

  color:
    rgba(255, 255, 255, 0.42);

  font-size: 10px;

  font-weight: 500;

  line-height: 1.45;

  text-align: center;
}


/* ==========================================================
   SMALL DESKTOP / LAPTOP
========================================================== */

@media
(min-width: 1051px)
and
(max-width: 1350px) {

  .apply-hero__content {
    grid-template-columns:
      minmax(400px, 0.9fr)
      minmax(420px, 480px);

    gap:
      clamp(35px, 4vw, 65px);

    padding-inline:
      clamp(35px, 5vw, 70px);
  }


  .apply-hero__copy {
    padding-left:
      clamp(20px, 5vw, 70px);
  }


  .apply-hero__copy h1 {
    font-size:
      clamp(40px, 4vw, 52px);
  }


  .apply-floating {
    transform:
      scale(0.9);

    transform-origin:
      left top;
  }


  .apply-form-card {
    max-width: 460px;
  }

}


/* ==========================================================
   TABLET
========================================================== */

@media
(min-width: 701px)
and
(max-width: 1050px) {

  .apply-hero {
    min-height: auto;
  }


  .apply-hero__photo {
    width: 54%;
  }


  .apply-hero__content {
    grid-template-columns:
      minmax(300px, 0.9fr)
      minmax(340px, 1fr);

    gap: 32px;

    min-height: 720px;

    margin-top: 60px;

    padding:
      50px
      34px
      70px;
  }


  .apply-hero__copy {
    padding-left: 0;
  }


  .apply-hero__copy h1 {
    font-size:
      clamp(37px, 5vw, 48px);
  }


  .apply-hero__subtitle {
    font-size: 15px;
  }


  /*
    Floating cards μικρότερα
    ώστε να μην πιέζουν τη φόρμα.
  */

  .apply-floating {
    width: 100%;

    height: 180px;

    margin-top: 40px;

    transform:
      scale(0.78);

    transform-origin:
      left top;
  }


  .apply-form-card {
    padding:
      27px
      24px
      24px;

    border-radius: 25px;
  }


  .apply-field input {
    height: 50px;
  }


  .apply-form-card__submit {
    height: 50px;
  }

}


/* ==========================================================
   MOBILE
========================================================== */

@media
(max-width: 700px) {

  .apply-hero {
    min-height: auto;

    padding-bottom: 70px;
  }


  /*
    Στο mobile η φωτογραφία γίνεται
    background πίσω από τη φόρμα.
  */

  .apply-hero__photo {
    top: auto;

    bottom: 0;

    width: 100%;

    height: 58%;

    opacity: 0.72;

    background-position:
      center;
  }


  .apply-hero__photo::before {
    top: 0;

    width: 100%;
    height: 150px;

    background:
      linear-gradient(
        180deg,
        #0c021f,
        rgba(12, 2, 31, 0)
      );
  }


  .apply-hero__content {
    display: flex;

    min-height: 0;

    margin-top: 30px;

    padding:
      65px
      20px
      20px;

    flex-direction: column;

    align-items: stretch;

    gap: 50px;
  }


  .apply-hero__copy {
    width: 100%;

    max-width: 500px;

    padding-left: 0;
  }


  .apply-eyebrow {
    margin-bottom: 17px;

    font-size: 12px;
  }


  .apply-hero__copy h1 {
    font-size:
      clamp(37px, 10vw, 49px);
  }


  .apply-hero__subtitle {
    max-width: 440px;

    margin-top: 25px;

    font-size: 15px;
  }


  /* floating cards */

  .apply-floating {
    width: 100%;

    height: 170px;

    margin-top: 38px;

    transform:
      scale(0.77);

    transform-origin:
      left top;
  }


  /* form */

  .apply-hero__form-wrap {
    width: 100%;

    justify-content: center;
  }


  .apply-form-card {
    max-width: 500px;

    padding:
      28px
      22px
      24px;

    border-radius: 26px;

    background:
      rgba(20, 9, 32, 0.68);
  }


  .apply-form-card__heading h2 {
    font-size: 30px;
  }


  .apply-form-card__subtitle {
    font-size: 12.5px;
  }


  .apply-field input {
    height: 52px;

    padding-inline: 19px;
  }


  .apply-form-card__submit {
    height: 52px;
  }

}


/* ==========================================================
   VERY SMALL MOBILE
========================================================== */

@media
(max-width: 430px) {

  .apply-hero__content {
    padding-inline: 17px;
  }


  .apply-floating {
    width: 125%;

    transform:
      scale(0.68);

    transform-origin:
      left top;

    margin-bottom: -35px;
  }


  .apply-form-card {
    padding:
      26px
      18px
      22px;
  }

}











/* ==========================================================
   APPLY PAGE — STEPS LOCAL LAYOUT
   Only affects the steps section inside .apply-page
========================================================== */


/* =========================================================================================
   SECTION
========================================= */

.apply-page .switch-steps {
  padding-top: 90px;
  padding-bottom: 40px;

}

.apply-page .switch-steps {
  position: relative;
  overflow: visible;
  z-index: 1;

}


/* PURPLE LIGHT */
.apply-page .switch-steps::before {
  content: "";

  position: absolute;
  z-index: 0;

  left: -300px;
  bottom: 100px;

  width: 750px;
  height: 650px;

  border-radius: 50%;
  border:none;
  background:
    radial-gradient(
      ellipse,
      rgba(115, 54, 255, 0.34) 0%,
      rgba(103, 42, 230, 0.20) 24%,
      rgba(89, 32, 190, 0.09) 46%,
      transparent 74%
    );

  pointer-events: none;
}


/* ORANGE LIGHT */
.apply-page .switch-steps::after {
  content: "";

  position: absolute;
  z-index: 0;

  right: -260px;
  top: 400px;

  width: 760px;
  height: 680px;

  border-radius: 50%;
  background:
    radial-gradient(
      ellipse,
      rgba(253, 100, 50, 0.3) 0%,
      rgba(235, 70, 90, 0.17) 24%,
      rgba(45, 0, 31, 0.07) 50%,
      transparent 78%
    );

  pointer-events: none;
}


/* το πραγματικό content πάνω από τα φώτα */
.apply-page .switch-steps__inner {
  position: relative;
  z-index: 2;
}





/* =========================================
   MAIN LAYOUT

   Αντί για:
   intro αριστερά / cards δεξιά

   γίνεται:
   intro πάνω
   cards κάτω
========================================= */

.apply-page .switch-steps__inner {
  display: grid;

  grid-template-columns: 1fr;

  width: 90%;
  max-width: 1180px;

  margin: 0 auto;

  row-gap: 72px;
}


/* =========================================
   INTRO — CENTER
========================================= */

.apply-page .switch-steps__intro {
  display: flex;

  width: 100%;
  max-width: 720px;

  margin: 0 auto;

  align-items: center;

  text-align: center;
}


/* EYEBROW */

.apply-page
.switch-steps__intro
.section-eyebrow {
  margin: 0;

  text-align: center;
}


/* TITLE */

.apply-page
.switch-steps__intro h2 {
  max-width: 750px;

  margin:
    16px
    auto
    20px;

  text-align: center;

  font-size:
    clamp(30px, 2.35vw, 45px);

  line-height: 1.04;
}


/* SUBTITLE */

.apply-page
.switch-steps__intro > p {
  max-width: 540px;

  margin: 0 auto;

  text-align: center;

  font-size: 16px;

  line-height: 1.6;
}


/* =========================================
   REMOVE CTA ONLY ON APPLY PAGE
========================================= */

.apply-page .switch-steps__cta {
  display: flex;
  width: 266px;
  height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  margin: 60px auto 0;
  padding: 0 24px;
  border-radius: 999px;
  color: #ffffff;
  background:rgba(71, 8, 82, 0.3);
  border: 1.5px solid rgba(208, 0, 249, 0.85);
  box-shadow: 0 12px 30px rgba(225, 32, 255, 0.16);
  font-size: 14px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease;
}

.apply-page  .switch-steps__cta :hover {
  box-shadow: 0 10px 40px rgba(225, 32, 255, 0.28);
  transform: translateY(-3px);
}



/* =========================================
   CARDS FLOW
========================================= */

.apply-page .switch-steps__flow {
  width: 100%;

  max-width: 1040px;

  margin: 0 auto;

  padding-top: 24px;
}


/* =========================================
   REMOVE DESKTOP STAGGER
   ώστε τα cards να είναι καθαρά στην ίδια σειρά
========================================= */

.apply-page .step-card--two,
.apply-page .step-card--three {
  margin-top: 0;
}


/* ==========================================================
   TABLET
========================================================== */

@media (min-width: 701px) and (max-width: 1050px) {

  .apply-page .switch-steps {
    padding:
      90px
      30px
      110px;
  }


  .apply-page .switch-steps__inner {
    width: 94%;

    max-width: 850px;

    row-gap: 58px;
  }


  .apply-page
  .switch-steps__intro h2 {
    max-width: 620px;

    font-size:
      clamp(36px, 5vw, 46px);
  }


  .apply-page
  .switch-steps__intro > p {
    max-width: 500px;
  }


  .apply-page
  .switch-steps__flow {
    max-width: 820px;
  }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {

  .apply-page .switch-steps {
    padding:
      78px
      20px
      90px;
  }


  .apply-page .switch-steps__inner {
    width: 100%;

    max-width: 420px;

    row-gap: 60px;
  }


  .apply-page .switch-steps__intro {
    width: 100%;

    max-width: 380px;
  }


  .apply-page
  .switch-steps__intro
  .section-eyebrow {
    font-size: 12px;
  }


  .apply-page
  .switch-steps__intro h2 {
    max-width: 360px;

    margin:
      14px
      auto
      18px;

    font-size:
      clamp(31px, 9vw, 38px);

    line-height: 1.05;
  }


  .apply-page
  .switch-steps__intro > p {
    max-width: 330px;

    margin: 0 auto;

    font-size: 15px;

    line-height: 1.6;
  }


  .apply-page
  .switch-steps__flow {
    width: 100%;

    max-width: 400px;

    margin: 0 auto;
  }

}










/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1180px) {
  .apply-hero__content {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 72px;
  }

  .apply-hero__copy {
    max-width: 100%;
    padding-left: 0;
    padding-top: 36px;
  }

  .apply-hero__form-wrap {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .apply-hero {
    min-height: auto;
  }

  .apply-hero__content {
    gap: 36px;
    min-height: 0;
    padding: 28px var(--page-padding) 56px;
  }

  .apply-hero__copy {
    padding-top: 38px;
  }

  .apply-hero__copy h1 {
    font-size: clamp(38px, 10vw, 52px);
    line-height: 1.1;
  }

  .apply-hero__subtitle {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.6;
  }

  .apply-hero__cta {
    width: 236px;
    margin-top: 38px;
  }

  .apply-form-card {
    max-width: none;
    padding: 28px 22px 24px;
    border-radius: 22px;
  }

  .apply-form-card__heading h2 {
    font-size: 25px;
  }

  .apply-field input,
  .apply-form-card__submit {
    height: 54px;
  }
}

@media (max-width: 390px) {
  .apply-hero__cta {
    width: 100%;
  }

  .apply-form-card {
    padding: 24px 18px 22px;
  }
}