:root {
  --bg-body: #ffffff;
  --bg-nav: #ffffff;
  --text-main: #000000;
  --text-sub: #0099ff;
  --text-desc: #000000;

  --hero-bg:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.96) 26.16%,
      #ffffff 74.06%,
      rgba(255, 255, 255, 0.95) 95.96%
    ),
    #ffffff;
  --hero-box-shadow: 0px 8px 0px #08a4ff;
  --hero-border-radius: 43px;

  --bg-size: 80px 80px, 80px 80px;

  --toggle-bg: #ffffff;
  --toggle-circle: #d9d9d9;
  --nav-shadow: 0px 4px 28.7px #08a4ff;

  --btn-gradient: linear-gradient(90deg, #1acfff 0%, #0076ff 100%);

  --text-hero-desc: #08a4ff;

  --lang-active-bg: linear-gradient(90deg, #08a4ff 0%, #056299 100%);
  --lang-active-text: linear-gradient(
    91.52deg,
    #ffffff -1.64%,
    #eeeeee 133.11%
  );
  --lang-inactive-bg: linear-gradient(
    91.52deg,
    #ffffff -1.64%,
    #eeeeee 133.11%
  );
  --lang-inactive-text: #000000;
  --lang-inactive-border: 1px solid rgba(0, 0, 0, 0.1);

  --blue-strip: #0a93e3;
  --play-btn-bg: rgba(255, 255, 255, 0.86);
  --play-icon-color: #49454f;
  --end-of-course-bg: linear-gradient(180deg, #08a4ff 0%, #056299 100%);
  --feature-title-color: linear-gradient(
    91.52deg,
    #ffffff -1.64%,
    #eeeeee 133.11%
  );
  --course-section-title-color: linear-gradient(
    91.52deg,
    #ffffff -1.64%,
    #eeeeee 133.11%
  );
  --metric-value-color: #000000;
  --faq-icon-color: #000000;
  --mission-wave-color: #000000;
  --guarantee-title-text: #ffffff;
  --primary-color: #eeeeee;
}

body.dark-mode {
  --bg-body: #000000;
  --bg-nav: #000000;
  --text-main: #ffffff;
  --text-sub: #1acfff;
  --text-desc: #e0e0e0;

  --hero-bg:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.589) 8.18%,
      rgba(0, 0, 0, 0.874) 12.51%,
      rgba(0, 0, 0, 0.6935) 25.85%,
      rgba(0, 0, 0, 0.608) 59.13%,
      rgba(0, 0, 0, 0.627) 62.46%,
      rgba(0, 0, 0, 0.6935) 83.18%,
      rgba(0, 0, 0, 0.95) 94.24%
    ),
    #000000;
  --hero-box-shadow: 0px 4px 0px rgba(163, 163, 163, 0.25);

  --bg-size: 80px 80px, 80px 80px;

  --toggle-bg: #333333;
  --toggle-circle: #ffffff;
  --nav-shadow: 0px 4px 28.7px rgba(8, 164, 255, 0.3);

  --play-btn-bg: #ffffff;
  --play-icon-color: #000000;

  --lang-active-bg: linear-gradient(90deg, #08a4ff 0%, #056299 100%);
  --lang-active-text: linear-gradient(
    91.52deg,
    #ffffff -1.64%,
    #eeeeee 133.11%
  );
  --lang-inactive-bg: linear-gradient(
    91.52deg,
    #ffffff -1.64%,
    #eeeeee 133.11%
  );
  --lang-inactive-text: #000000;
  --lang-inactive-border: none;
  --end-of-course-bg: linear-gradient(
    91.52deg,
    #ffffff -1.64%,
    #eeeeee 133.11%
  );
  --feature-title-color: linear-gradient(
    91.52deg,
    #000000 -1.64%,
    #000000 133.11%
  );
  --course-section-title-color: linear-gradient(
    91.52deg,
    #000000 -1.64%,
    #000000 133.11%
  );
  --metric-value-color: #ffffff;
  --faq-icon-color: #ffffff;
  --mission-wave-color: #ffffff;
  --guarantee-title-text: #000000;
  --primary-color: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lexend", sans-serif;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.neue-font {
  font-family: "Lexend", sans-serif;
  letter-spacing: -0.02em;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--hero-bg);
  background-color: var(--bg-body);
  background-size: var(--bg-size, auto);
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100vw;
  height: 12vh;
  background-color: var(--bg-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 8vw;
  padding-right: 8vw;
  box-shadow: var(--nav-shadow);
  z-index: 1000;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.logo-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 15vh;
  cursor: pointer;
  text-decoration: none;
}

.logo-img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.logo-light {
  display: block;
}

.logo-dark {
  display: none;
}

body.dark-mode .logo-light {
  display: none;
}

body.dark-mode .logo-dark {
  display: block;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 2vw;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
}

.whatsapp-btn:hover {
  transform: translateY(-2px) scale(1.05);
}

.whatsapp-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-enroll-btn-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  min-width: 120px;
  height: 40px;
  background: linear-gradient(90deg, #1acfff 0%, #0076ff 100%);
  border-radius: 30px;
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14.66px;
  line-height: 18px;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  white-space: nowrap;
}

.nav-enroll-btn-desktop:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 15px rgba(8, 164, 255, 0.4);
}

.theme-switch {
  position: relative;
  width: 6vh;
  height: 3vh;
}

.theme-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--toggle-bg);
  border-radius: 3vh;
  border: 0.2vh solid #888;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 2vh;
  width: 2vh;
  left: 0.3vh;
  bottom: 0.3vh;
  background-color: var(--toggle-circle);
  border-radius: 50%;
  transition: 0.4s;
}

input:checked + .slider {
  border-color: white;
}

input:checked + .slider:before {
  transform: translateX(3vh);
}

.btn-nav {
  background: linear-gradient(90deg, #1acfff 0%, #0076ff 100%);
  color: white;
  border: none;
  height: 5vh;
  padding: 0 2vw;
  border-radius: 2.5vh;
  font-size: 1.8vh;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 118, 255, 0.3);
}

.nav-buttons {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  z-index: 1001;
  padding: 12px 24px;
}

.nav-pill {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 25px 32px;
  gap: 50px;
  background: linear-gradient(90deg, #1acfff 0%, #0076ff 100%);
  border-radius: 30px;
  height: 35px;
}

.nav-pill-link {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(91.52deg, #ffffff -1.64%, #eeeeee 133.11%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.2s ease;
}

.nav-pill-link:hover {
  opacity: 0.85;
}

.nav-pill-divider {
  width: 1px;
  height: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(238, 238, 238, 0.8) 100%
  );
  border-radius: 1px;
}

.nav-enroll-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 25px 25px;
  min-width: 140px;
  background: #ffffff;
  border: 1.28px solid #08a4ff;
  box-shadow: 0px -5px 10.5px rgba(0, 0, 0, 0.25);
  border-radius: 60px;
  height: 40px;
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  color: #000000;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.nav-enroll-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px -5px 15px rgba(8, 164, 255, 0.4);
}

@media (max-width: 1024px) {
  .nav-buttons {
    gap: 12px;
    padding: 10px 20px;
    bottom: 18px;
  }

  .nav-pill {
    padding: 10px 20px;
    gap: 30px;
    height: 52px;
  }

  .nav-pill-link {
    font-size: 18px;
    line-height: 32px;
  }

  .nav-pill-divider {
    height: 32px;
  }

  .nav-enroll-btn {
    padding: 5px 18px;
    height: 52px;
    font-size: 18px;
    line-height: 32px;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 10vh;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .btn-nav {
    display: none;
  }

  .nav-enroll-btn-desktop {
    display: none;
  }

  .nav-buttons {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    gap: 8px;
    padding: 10px 16px;
    border-radius: 40px;
  }

  .nav-enroll-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 15px;
    min-width: 80px;
    background: #ffffff;
    border: 1.28px solid #08a4ff;
    box-shadow: 0px -5px 10.5px rgba(0, 0, 0, 0.25);
    border-radius: 60px;
    height: 30px;
    font-family: "Lexend", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 10px;
    text-align: center;
    color: #000000;
    cursor: pointer;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
  }

  .nav-pill {
    padding: 5px 15px;
    gap: 15px;
    height: 30px;
    border-radius: 20px;
  }

  .nav-pill-link {
    font-size: 11px;
    line-height: 20px;
  }

  .nav-pill-divider {
    height: 12px;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
  }

  .text-col {
    width: 100%;
    order: 1;
  }

  .video-col {
    width: 100%;
    order: 2;
    align-items: center;
  }

  .btn-hero {
    position: static;
    width: 256px;
    height: 58px;
    background: linear-gradient(90deg, #1acfff 0%, #0076ff 100%);
    border-radius: 67px;
    margin: 30px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 3;
    font-family: "Lexend", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
  }

  .btn-hero img {
    display: none;
  }
}

@media (max-width: 480px) {
  :root {
    --guarantee-title-text: #000000;
  }

  body.dark-mode {
    --guarantee-title-text: #ffffff;
  }

  .navbar {
    height: 53px;
    padding: 8.24px 10px;
    background: var(--bg-nav);
    box-shadow: 0px 4px 12.3px #08a4ff;
  }

  .nav-buttons {
    bottom: 12px;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 35px;
  }

  .nav-pill {
    padding: 4px 10px;
    gap: 8px;
    height: 30px;
    border-radius: 25px;
  }

  .nav-pill-link {
    font-size: 14px;
    line-height: 18px;
  }

  .nav-pill-divider {
    height: 10px;
  }

  .hero-title {
    font-size: 42px;
    line-height: 100%;
  }

  .hero-span {
    font-family: "Neue Montreal", sans-serif;
    color: var(--text-main);
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    text-align: left;
  }

  .hero-desc {
    font-size: 20px;
    line-height: 25px;
  }

  .course-section-title,
  .beginner-title {
    font-size: 32px;
    line-height: 40px;
  }

  .language-toggle {
    margin-top: 2vh;
    gap: 0;
    width: 271.17px;
    height: 23.81px;
    justify-content: space-between;
  }

  .lang-btn {
    width: 110.96px;
    height: 23.81px;
    min-width: 0;
    padding: 2.82px 6.86px;
    font-size: 12.912px;
    line-height: 16px;
    border-radius: 8.07px;
  }

  .logo-container {
    height: 36px;
  }

  .logo-img {
    height: 70px;
  }

  .theme-switch {
    width: 39px;
    height: 16.38px;
  }

  .slider {
    border-radius: 41px;
    border-width: 0.15vh;
  }

  .slider:before {
    height: 11px;
    width: 11px;
    left: 0.2vh;
    bottom: 0.15vh;
  }

  input:checked + .slider:before {
    transform: translateX(18px);
  }

  .whatsapp-btn {
    width: 45px;
    height: 45px;
  }

  .video-card-wrapper {
    width: 371px;
    max-width: 100%;
    margin: 0 auto;
  }

  .video-card {
    width: 371px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 371 / 216.69;
    border-radius: 19.7px;
  }

  .play-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 3px 5px;
    gap: 10px;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 26px;
  }

  .play-icon {
    width: 42px;
    height: 46px;
    fill: #49454f;
  }

  .hero-container {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
    gap: 24px;
    width: 100%;
    max-width: 393px;
    padding-bottom: 30px;
  }

  .text-col {
    display: contents;
  }

  .video-col,
  .video-col-mobile {
    display: contents;
  }

  .hero-title {
    order: 1;
    width: 361px;
    max-width: 100%;
    font-family: "Lexend", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 38px;
    line-height: 45px;
    color: var(--text-main);
    text-align: center;
  }

  .hero-title span {
    color: var(--text-sub);
    display: block;
  }

  .video-card-wrapper {
    order: 2;
    width: 345px;
    max-width: 100%;
    height: auto;
    position: relative;
    margin: 0 auto;
  }

  .hero-desc {
    order: 3;
    width: 361px;
    max-width: 100%;
    font-family: "Lexend", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: #08a4ff;
    text-align: left;
  }

  .hero-span {
    order: 4;
    width: 361px;
    max-width: 100%;
    font-family: "Lexend", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: #08a4ff;
    text-align: left;
    margin-top: -15px;
  }

  .btn-hero {
    order: 5;
  }

  .video-card {
    width: 345px;
    max-width: 100%;
    height: 294.76px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0.9px);
  }

  .play-btn {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6px 9px;
    gap: 10px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 45px;
    z-index: 2;
    cursor: pointer;
  }

  .play-icon {
    width: 32px;
    height: 35px;
    fill: #49454f;
  }

  .btn-hero {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 11px 45px;
    gap: 10px;
    width: 205px;
    height: 56px;
    background: linear-gradient(90deg, #1acfff 0%, #0076ff 100%);
    border-radius: 10px;
    order: 3;
    margin-top: 10px;
    font-family: "Lexend", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 118, 255, 0.4);
  }
}

.hero-container {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  background: var(--hero-bg);
  box-shadow: var(--hero-box-shadow);
  border-radius: var(--hero-border-radius);
  background-size: cover;
}

body.dark-mode .hero-container {
  background:
    repeating-linear-gradient(
      to right,
      transparent,
      transparent 79px,
      rgba(60, 60, 60, 0.4) 79px,
      rgba(60, 60, 60, 0.4) 80px
    ),
    repeating-linear-gradient(
      to bottom,
      transparent,
      transparent 79px,
      rgba(60, 60, 60, 0.4) 79px,
      rgba(60, 60, 60, 0.4) 80px
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.589) 8.18%,
      rgba(0, 0, 0, 0.874) 12.51%,
      rgba(0, 0, 0, 0.6935) 25.85%,
      rgba(0, 0, 0, 0.608) 59.13%,
      rgba(0, 0, 0, 0.627) 62.46%,
      rgba(0, 0, 0, 0.6935) 83.18%,
      rgba(0, 0, 0, 0.95) 94.24%
    ),
    #000000;
  background-size:
    80px 80px,
    80px 80px,
    cover,
    cover;
}

.info-strip {
  width: 100%;
  height: 25px;
  background-color: #010890;
  display: flex;
  align-items: center;
  margin-bottom: 5vh;
  overflow: hidden;
  position: sticky;
  top: 12vh;
  z-index: 999;
}

.marquee-track {
  display: flex;
  align-items: center;
  position: absolute;
  animation: marquee-scroll 15s linear infinite;
}

.marquee-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  white-space: nowrap;
  padding: 0 20px;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(100vw);
  }

  100% {
    transform: translateX(-100%);
  }
}

.hero-content {
  width: 84vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 10vh;
  gap: 4vw;
  position: relative;
}

.video-col {
  width: 42%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5vh;
}

.video-card-wrapper {
  position: relative;
  width: 100%;
}

.video-card {
  width: 100%;
  aspect-ratio: 615 / 353;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(0.9px);
  transition: filter 0.3s;
  position: absolute;
  top: 0;
  left: 0;
}

.video-card:hover .video-thumb {
  filter: blur(2px);
}

.play-btn {
  position: relative;
  z-index: 2;
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.play-btn:hover {
  transform: scale(1.1);
}

.play-icon {
  width: 72px;
  height: 78px;
  fill: #49454f;

  width: 40px;
  height: 40px;
}

.language-toggle {
  display: flex;
  gap: 1.5vw;
  justify-content: flex-start;
  margin-top: 4vh;
}

.lang-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 7px 17px;
  gap: 10px;
  min-width: 140px;
  height: 50px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
}

.lang-btn.active {
  background: var(--lang-active-bg);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.lang-btn.active {
  background: var(--lang-active-bg);
  color: white;
  -webkit-text-fill-color: white;
}

.lang-btn.active span {
  background: var(--lang-active-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lang-btn:not(.active) {
  background: var(--lang-inactive-bg);
  color: var(--lang-inactive-text);
  -webkit-text-fill-color: var(--lang-inactive-text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lang-btn:not(.active):hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lang-btn.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(8, 164, 255, 0.4);
}

body.dark-mode .lang-btn.active:hover {
  box-shadow: 0 4px 15px rgba(240, 152, 25, 0.4);
}

.text-col {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2.5vh;
  justify-content: center;
}

.hero-title {
  font-family: "Neue Montreal", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 49px;
  line-height: 59px;
  color: var(--text-main);
}

.hero-title span {
  color: var(--text-sub);
  display: block;
}

.hero-desc {
  font-family: "Neue Montreal", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: var(--text-hero-desc);
  width: 100%;
  max-width: 650px;
}

.hero-span {
  font-family: "Neue Montreal", sans-serif;
  color: var(--text-main);
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  margin-top: -2.5vh;
}

.highlight-text {
  color: var(--text-main);
  font-weight: 600;
}

.wavy-underline {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  position: static;
  width: auto;
  height: auto;
}

.btn-hero {
  display: inline-block;
  margin-top: 2vh;
  width: 205px;
  height: 51px;
  background: var(--btn-gradient);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s;
  font-family: "Neue Montreal", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #ffffff;
  position: static;
}

.btn-hero:hover {
  transform: scale(1.05);
}

.end-of-the-course-section {
  width: 100%;
  background: var(--bg-body);
  padding: 80px 0;
}

.course-section-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.course-section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.course-section-title {
  font-family: "Lexend", sans-serif;
  font-size: 70px;
  font-weight: 500;
  line-height: 84px;
  text-align: center;
  color: var(--text-main);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
}

.course-section-title .course-highlight {
  color: #08a4ff;
  font-style: italic;
}

.course-title-wave {
  width: 438px;
  height: 12px;
}

.course-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 50px;
  width: 100%;
  max-width: 1400px;
}

.course-feature-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
  gap: 5px;
  width: 100%;
  max-width: 350px;
  min-height: 200px;
  background: #ffffff;
  box-shadow: 8px 8px 0px rgba(8, 164, 255, 0.67);
  border-radius: 32px;
  border-color: #999999;
  border: 1px solid;
  margin: 0 auto;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.course-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 12px 12px 0px rgba(8, 164, 255, 0.8);
}

.feature-illustration {
  position: relative;
  width: 100%;
  max-width: 340px;
  height: auto;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.illustration-circle {
  position: absolute;
  width: 238px;
  height: 238px;
  background: #e6e6e6;
  border-radius: 50%;
  z-index: 0;
}

.feature-img {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: contain;
  z-index: 1;
  transition: transform 0.3s ease;
}

.course-feature-card:hover .feature-img {
  transform: scale(1.05);
}

.feature-text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 12px;
  width: 100%;
}

.feature-title {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  color: #000000;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  margin: 0;
}

.feature-desc {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #000000;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  margin: 0;
}

body.dark-mode .end-of-the-course-section {
  background: var(--bg-body);
}

body.dark-mode .course-section-title {
  color: var(--text-main);
}

body.dark-mode .course-section-title .course-highlight {
  color: #1acfff;
}

body.dark-mode .course-feature-card {
  background: linear-gradient(180deg, #000000 0%, #404040 100%);
  box-shadow: 8px 8px 0px rgba(26, 207, 255, 0.5);
  border: 1px solid #f0f0f0f0;
}

body.dark-mode .course-feature-card:hover {
  box-shadow: 12px 12px 0px rgba(26, 207, 255, 0.7);
}

body.dark-mode .feature-title {
  color: #ffffff;
}

body.dark-mode .feature-desc {
  color: #e0e0e0;
}

.roas-mission {
  width: 100%;
  padding: 80px 8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

.mission-statement {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  max-width: 1077px;
  position: relative;
}

.mission-objects {
  position: absolute;
  top: 10px;
  right: -50px;
  width: 363px;
  height: 17px;
}

.mission-title {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  text-align: center;
  color: var(--text-main);
}

.mission-highlight {
  position: relative;
  display: inline;
  color: #08a4ff;
}

.mission-wave {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 15px;
  fill: var(--mission-wave-color);
}

.mission-text {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1077px;
}

.mission-text strong {
  font-weight: 600;
}

.instructor-card {
  position: relative;
  width: 100%;
  max-width: 1260px;
  height: 606px;
  background: #fcfcfc;
  box-shadow: 11px 13px 21.3px rgba(0, 0, 0, 0.25);
  border-radius: 78px;
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: visible;
}

.instructor-content {
  flex: 1;
  padding: 60px 20px 60px 60px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 700px;
}

.instructor-label {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: #08a4ff;
}

.instructor-name {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  color: #000000;
}

.instructor-bio {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  color: #000000;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.instructor-image {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 610px;
  height: 607px;
  border-radius: 41px;
  overflow: hidden;
  flex-shrink: 0;
}

.instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

body.dark-mode .instructor-card {
  background: #ffffff;
  box-shadow: 11px 13px 21.3px rgba(0, 0, 0, 0.4);
}

body.dark-mode .instructor-name,
body.dark-mode .instructor-bio {
  color: #000000;
}

.proof-of-work {
  width: 100%;
  padding: 80px 8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.proof-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  position: relative;
}

.proof-title-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 0;
  background: transparent;
  height: auto;
  min-width: auto;
  max-width: 1044px;
}

.proof-title-text {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 70px;
  line-height: 84px;
  text-align: center;
  color: var(--text-main);
}

.proof-title-text .proof-highlight-word {
  color: #08a4ff;
}

.proof-decoration {
  position: absolute;
  right: -100px;
  top: -30px;
  transform: rotate(-28.46deg);
  width: 325px;
  height: 166px;
}

.proof-subtitle {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 38px;
  text-align: center;
  color: var(--text-main);
  max-width: 1044px;
  margin-bottom: 60px;
}

.proof-highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.proof-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  width: 120%;
  height: auto;
  z-index: -1;
  pointer-events: none;
}

.proof-underline {
  display: none;
}

.proof-results-grid {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.proof-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.proof-card.card-left {
  flex-direction: row-reverse;
  justify-content: flex-start;
}

.proof-card.card-right {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.proof-card-image {
  position: relative;
  width: 801px;
  height: 397px;
  flex-shrink: 0;
}

.card-image-shadow {
  display: none;
}

.card-image-content {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 100%;
  border: 2.6px solid #000000;
  border-radius: 21px;
  overflow: hidden;
  background: #ffffff;
  filter: drop-shadow(10px 11px 0px rgba(8, 164, 255, 0.86));
}

.card-image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.card-image-content.scale-110 img {
  transform: scale(1.1);
}

.card-image-content.scale-120 img {
  transform: scale(1.2);
}

.card-image-content.scale-130 img {
  transform: scale(1.3);
}

.card-image-content.scale-140 img {
  transform: scale(1.4);
}

.card-image-content.scale-150 img {
  transform: scale(1.5);
}

.card-image-content.scale-160 img {
  transform: scale(1.6);
}

.card-image-content.scale-170 img {
  transform: scale(1.7);
}

.card-image-content.scale-180 img {
  transform: scale(1.8);
}

.card-image-content.scale-200 img {
  transform: scale(2);
}

.card-image-content.pos-center img {
  object-position: center center;
}

.card-image-content.pos-top img {
  object-position: center top;
}

.card-image-content.pos-bottom img {
  object-position: center bottom;
}

.card-image-content.pos-left img {
  object-position: left center;
}

.card-image-content.pos-right img {
  object-position: right center;
}

.card-image-content.pos-top-left img {
  object-position: left top;
}

.card-image-content.pos-top-right img {
  object-position: right top;
}

.card-image-content.pos-bottom-left img {
  object-position: left bottom;
}

.card-image-content.pos-bottom-right img {
  object-position: right bottom;
}

.card-image-content.pos-x-25 img {
  object-position: 25% center;
}

.card-image-content.pos-x-75 img {
  object-position: 75% center;
}

.card-image-content.pos-y-25 img {
  object-position: center 25%;
}

.card-image-content.pos-y-75 img {
  object-position: center 75%;
}

.card-image-content.crop-left img {
  object-position: right center;
}

.card-image-content.crop-right img {
  object-position: left center;
}

.card-image-content.crop-top img {
  object-position: center bottom;
}

.card-image-content.crop-bottom img {
  object-position: center top;
}

.card-image-content.crop-sidebar-left img {
  object-position: 70% center;
  transform: scale(1.15);
}

.card-image-content.crop-metrics img {
  object-position: center 20%;
  transform: scale(1.2);
}

.card-image-content.crop-performance img {
  object-position: 60% 30%;
  transform: scale(1.3);
}

.card-image-content.crop-custom img {
  transform-origin: var(--crop-origin, center center);
  transform: scale(var(--crop-scale, 1));
  object-position: var(--crop-position, center center);
}

.blur-on-gif-result {
  position: absolute;
  left: 0;
  top: 0;
  width: 32%;
  height: 100%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2;
  pointer-events: none;
}

.blur-on-image-result {
  position: absolute;
  left: 0;
  top: 0;
  width: 25%;
  height: 100%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2;
  pointer-events: none;
}

.proof-card-metrics {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 14px;
  width: 350px;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-label {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #08a4ff;
}

.metric-value {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: var(--metric-value-color);
}

.proof-underline-mobile {
  display: none;
}

body.dark-mode .proof-title-text {
  color: #ffffff;
}

@media (max-width: 768px) {
  .navbar {
    height: 10vh;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .logo-main {
    font-size: 3vh;
  }

  .logo-icon-box {
    width: 2.5vh;
    height: 2.5vh;
  }

  .btn-nav {
    display: none;
  }

  .info-strip {
    height: auto;
    padding: 1vh 0;
    margin-bottom: 4vh;
  }

  .marquee-group span {
    font-size: 1.6vh;
    line-height: 1.4;
  }

  .hero-content {
    flex-direction: column;
    width: 90vw;
    gap: 5vh;
  }

  .text-col {
    width: 100%;
    text-align: center;
    align-items: center;
    order: 1;
  }

  .hero-title {
    font-size: 4vh;
  }

  .hero-desc {
    font-size: 1.8vh;
    max-width: 100%;
  }

  .btn-hero {
    width: 100%;
    padding: 1.5vh 0;
  }

  .video-col {
    width: 100%;
    order: 2;
    align-items: center;
  }

  .play-btn {
    width: 7vh;
    height: 7vh;
  }

  .language-toggle {
    justify-content: center;
    width: 100%;
    gap: 3vw;
  }

  .lang-btn {
    min-width: 120px;
    height: 45px;
    padding: 5px 15px;
    font-size: 18px;
    line-height: 30px;
  }

  .btn-hero {
    justify-content: center;
  }

  .end-of-the-course-section {
    padding: 60px 0;
    margin-top: 40px;
  }

  .course-section-container {
    padding: 0 20px;
    gap: 40px;
  }

  .course-section-title {
    font-size: 36px;
    line-height: 44px;
  }

  .course-title-wave {
    width: 300px;
    height: 10px;
  }

  .course-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
  }

  .feature-illustration {
    width: 200px;
    height: 200px;
  }

  .illustration-circle {
    width: 160px;
    height: 160px;
  }

  .feature-title {
    font-size: 20px;
    line-height: 26px;
  }

  .feature-desc {
    font-size: 16px;
    line-height: 22px;
  }

  .roas-mission {
    padding: 60px 5vw;
    gap: 60px;
  }

  .mission-statement {
    max-width: 100%;
    gap: 25px;
  }

  .mission-objects {
    display: none;
  }

  .mission-title {
    font-size: 32px;
    line-height: 42px;
  }

  .mission-text {
    font-size: 18px;
    line-height: 24px;
  }

  .instructor-card {
    flex-direction: column-reverse;
    border-radius: 40px;
    min-height: auto;
  }

  .instructor-content {
    padding: 40px 30px;
    max-width: 100%;
  }

  .instructor-label {
    font-size: 20px;
    line-height: 26px;
  }

  .instructor-name {
    font-size: 32px;
    line-height: 40px;
  }

  .instructor-bio {
    font-size: 16px;
    line-height: 22px;
  }

  .instructor-image {
    width: 100%;
    height: 350px;
    min-height: auto;
    border-radius: 40px 40px 0 0;
  }

  .proof-of-work {
    padding: 60px 5vw;
  }

  .proof-header {
    margin-bottom: 20px;
  }

  .proof-title-box {
    min-width: auto;
    width: 100%;
    padding: 0;
    height: auto;
  }

  .proof-title-text {
    font-size: 36px;
    line-height: 44px;
  }

  .proof-decoration {
    display: none;
  }

  .proof-subtitle {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 40px;
  }

  .proof-results-grid {
    gap: 60px;
  }

  .proof-card {
    flex-direction: column;
    gap: 30px;
  }

  .proof-card.card-right {
    flex-direction: column;
  }

  .proof-card.card-right .proof-card-metrics {
    order: 1;
  }

  .proof-card.card-right .proof-card-image {
    order: 0;
  }

  .proof-card-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    aspect-ratio: 801/397;
  }

  .card-image-content {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    filter: drop-shadow(8px 9px 0px rgba(8, 164, 255, 0.86));
  }

  .card-image-content img {
    border-radius: 14px;
  }

  .proof-card-metrics {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .metric-item {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .navbar {
    height: 53px;
    padding: 8.24px 20px;
    background: var(--bg-nav);
    box-shadow: 0px 4px 12.3px #08a4ff;
  }

  .logo-container {
    height: 36px;
  }

  .theme-switch {
    width: 34px;
    height: 14.38px;
  }

  .slider {
    border-radius: 41px;
    border-width: 0.15vh;
  }

  .slider:before {
    height: 11px;
    width: 11px;
    left: 0.2vh;
    bottom: 0.15vh;
  }

  input:checked + .slider:before {
    transform: translateX(18px);
  }

  .end-of-the-course-section {
    padding: 50px 0;
    margin-top: 30px;
  }

  .course-section-container {
    padding: 0 15px;
    gap: 30px;
  }

  .course-section-title {
    font-size: 24px;
    line-height: 32px;
  }

  .course-title-wave {
    width: 100px;
    height: 8px;
  }

  .course-features-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .course-feature-card {
    max-width: 100%;
  }

  .feature-illustration {
    width: 180px;
    height: 180px;
  }

  .illustration-circle {
    width: 140px;
    height: 140px;
  }

  .feature-title {
    font-size: 26px;
    line-height: 32px;
    padding: 0 16px;
  }

  .feature-desc {
    font-size: 22px;
    line-height: 25px;
    padding: 0 20px;
  }

  .course-curriculum {
    padding: 40px 4vw;
  }

  .curriculum-header {
    margin-bottom: 30px;
    gap: 15px;
  }

  .curriculum-title-wrapper {
    padding: 15px 20px;
  }

  .curriculum-oval {
    width: 280px;
    height: 110px;
  }

  .curriculum-title {
    font-size: 24px;
    line-height: 30px;
  }

  .curriculum-subtitle {
    font-size: 20px;
    line-height: 25px;
    max-width: 341px;
  }

  .curriculum-cards-container {
    gap: 25px;
  }

  .curriculum-card .card-shadow {
    top: 6.78px;
    left: 3.23px;
    border-radius: 6.45px;
  }

  .curriculum-card .card-content {
    min-height: 170px;
    padding: 7.42px 15.16px;
    flex-direction: row;
    align-items: center;
    gap: 13px;
    border-radius: 6.45px;
    border-width: 0.65px;
  }

  .curriculum-card .card-number {
    font-family: "Lexend", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 49px;
    min-width: 44px;
    color: #08a4ff;
  }

  .curriculum-card .card-separator {
    width: 1px;
    height: 145px;
    background: #000000;
  }

  .curriculum-card .card-info {
    gap: 5.16px;
  }

  .curriculum-card-title {
    font-size: 19px;
    line-height: 24px;
  }

  .curriculum-card-list {
    font-size: 12px;
    line-height: 15px;
    padding-left: 18px;
  }

  .guarantee-section {
    margin-top: 40px;
    gap: 15px;
  }

  .guarantee-header {
    gap: 5px;
  }

  .guarantee-title-our {
    font-size: 24px;
    line-height: 30px;
  }

  .guarantee-title-box {
    padding: 6px 20px;
  }

  .guarantee-title-text {
    font-size: 24px;
    line-height: 30px;
  }

  .guarantee-description {
    font-size: 16px;
    line-height: 22px;
    padding: 0 20px;
  }

  .guarantee-refund {
    font-size: 16px;
    line-height: 22px;
    flex-direction: column;
    align-items: center;
  }

  .refund-dash {
    display: none;
  }

  .guarantee-wave {
    width: 160px;
    height: 8px;
    top: 30%;
    left: 50%;
  }

  .roas-mission {
    padding: 40px 20px;
    gap: 40px;
  }

  .mission-statement {
    gap: 20px;
    max-width: 336px;
  }

  .mission-title {
    font-family: "Lexend", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    color: var(--text-main);
    max-width: 318px;
  }

  .mission-text {
    font-family: "Lexend", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    color: var(--text-main);
    max-width: 336px;
  }

  .instructor-card {
    width: 368px;
    max-width: 100%;
    height: 1100px;
    margin: 0 auto;
    background: #fcfcfc;
    box-shadow: 11px 13px 21.3px rgba(0, 0, 0, 0.25);
    border-radius: 47px;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }

  .instructor-content {
    padding: 29px 28px 0px;
    max-width: 312px;
    order: 1;
  }

  .instructor-label {
    font-family: "Lexend", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #08a4ff;
  }

  .instructor-name {
    font-family: "Lexend", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 32px;
    color: #000000;
  }

  .instructor-bio {
    font-family: "Lexend", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    color: #000000;
    max-width: 312px;
  }

  .instructor-br {
    display: none;
  }

  .instructor-image {
    position: relative;
    width: 301px;
    height: 352px;
    border-radius: 41px;
    top: auto;
    right: auto;
    transform: none;
    order: 2;
  }

  .instructor-image img {
    border-radius: 41px;
  }

  .proof-of-work {
    padding: 40px 20px;
    background-color: transparent;
  }

  .proof-header {
    margin-bottom: 20px;
  }

  .proof-title-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 0;
    width: 100%;
    height: auto;
    background: transparent;
    border-radius: 0;
  }

  .proof-title-text {
    font-family: "Lexend", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 34px;
    text-align: center;
    color: var(--text-main);
    width: 100%;
    max-width: 100%;
    height: auto;
    word-wrap: break-word;
  }

  .proof-title-text .proof-highlight-word {
    color: #08a4ff;
  }

  .proof-subtitle {
    position: relative;
    width: 353px;
    height: auto;
    min-height: 50px;

    font-family: "Lexend", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 19px;
    line-height: 24px;
    text-align: center;

    color: var(--text-main);
    margin-bottom: 25px;
  }

  .proof-highlight {
    position: relative;
    display: inline-block;
  }

  .proof-underline {
    display: none;
  }

  .proof-dash {
    display: none;
  }

  .proof-underline-mobile {
    display: block;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -15px;
    height: auto;
  }

  .proof-results-grid {
    gap: 30px;
  }

  .proof-card {
    flex-direction: column !important;
    gap: 15px;
    background-color: var(--bg-main);
    padding: 15px;
    border-radius: 12px;
  }

  .proof-card.card-right {
    flex-direction: column !important;
  }

  .proof-card .proof-card-image {
    order: 1;
  }

  .proof-card .proof-card-metrics {
    order: 0;
  }

  .proof-card.card-right .proof-card-image {
    order: 1;
  }

  .proof-card.card-right .proof-card-metrics {
    order: 0;
  }

  .proof-card.card-left {
    flex-direction: column !important;
  }

  .proof-card.card-left .proof-card-image {
    order: 1;
  }

  .proof-card.card-left .proof-card-metrics {
    order: 0;
  }

  .proof-card-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }

  .card-image-shadow {
    left: 4px;
    top: 4px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
  }

  .card-image-content {
    border-width: 1px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 0;
  }

  .card-image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .proof-card-metrics {
    gap: 8px;
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .metric-item {
    gap: 4px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .metric-label {
    font-size: 17px;
    line-height: 22px;
    color: #08a4ff;
    font-weight: 600;
  }

  .metric-label::after {
    content: ":";
  }

  .metric-value {
    font-size: 17px;
    line-height: 22px;
    color: var(--metric-value-color);
    font-weight: 600;
  }

  .additional-access {
    padding: 40px 4vw;
    gap: 35px;
  }

  .additional-access-title {
    font-size: 18px;
    line-height: 24px;
  }

  .additional-access-wave {
    width: 120px;
  }

  .access-items-container {
    gap: 60px;
  }

  .access-item {
    gap: 15px;
  }

  .access-item.item-highlighted {
    padding: 25px 15px;
  }

  .access-item.item-content-top .access-icon {
    transform: rotate(0deg);
  }

  .access-item.item-content-bottom .access-icon {
    transform: rotate(0deg);
  }

  .access-item-image {
    width: 120px;
    height: 120px;
  }

  .access-pricing {
    gap: 15px;
  }

  .original-price {
    font-size: 22px;
    line-height: 28px;
  }

  .free-badge {
    padding: 3px 12px;
  }

  .free-text {
    font-size: 20px;
    line-height: 26px;
  }

  .access-item-title {
    font-size: 18px;
    line-height: 24px;
  }

  .access-item-desc {
    font-size: 14px;
    line-height: 20px;
  }
}

.get-certified-section {
  padding: 80px 8vw;
  background-color: #f4f4f4;
}

body.dark-mode .get-certified-section {
  background-color: #f0f0f0;
}

.get-certified-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto;
  grid-template-areas:
    "title image"
    "decor image"
    "benefits image"
    "button image";
  gap: 20px 60px;
  max-width: 1530px;
  margin: 0 auto;
  padding: 60px 80px;
  border-radius: 20px;
  align-items: center;
}

.get-certified-title {
  grid-area: title;
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 55px;
  text-align: center;
  color: #000000;
}

body.dark-mode .get-certified-title {
  color: #000000;
}

.certified-highlight {
  color: #08a4ff;
}

.certified-objects {
  grid-area: decor;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: -100px;
  margin-left: 50px;
}

.certified-objects svg {
  max-width: 100%;
  height: auto;
}

.get-certified-image {
  grid-area: image;
  display: flex;
  justify-content: center;
  align-items: center;
}

.get-certified-image .certificate-light {
  display: block;
  width: 600px;
  height: 430px;
  object-fit: cover;
  border: 9px solid #000000;
  box-sizing: border-box;
  border-radius: 0;
}

.get-certified-image .certificate-dark {
  display: none;
  width: 600px;
  height: 430px;
  object-fit: cover;
  border: 9px solid #000000;
  box-sizing: border-box;
  border-radius: 0;
}

body.dark-mode .get-certified-image .certificate-light {
  display: none;
}

body.dark-mode .get-certified-image .certificate-dark {
  display: block;
  border-color: #0d1b2a;
}

.certification-benefits {
  grid-area: benefits;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  width: 100%;
}

.benefit-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
  width: 100%;
  height: 30px;
}

.benefit-item .benefit-icon {
  width: 21px;
  height: 20px;
  flex: none;
  color: #000000;
}

body.dark-mode .benefit-item .benefit-icon {
  color: #000000;
}

.benefit-item span {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: #000000;
}

body.dark-mode .benefit-item span {
  color: #000000;
}

.btn-enroll-cert {
  grid-area: button;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 9.72px 11.47px 8.77px;
  gap: 6.74px;
  width: 255.6px;
  height: 58px;
  background: linear-gradient(90deg, #1acfff 0%, #0076ff 100%);
  border-radius: 67.44px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  justify-self: center;
  text-decoration: none;
}

.btn-enroll-cert:hover {
  transform: scale(1.05);
}

.btn-enroll-cert-text {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 32.37px;
  line-height: 40px;
  text-align: center;
  background: linear-gradient(91.52deg, #ffffff -1.64%, #eeeeee 133.11%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

@media (max-width: 1200px) {
  .get-certified-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    gap: 40px;
  }

  .get-certified-image {
    width: 100%;
    justify-content: center;
  }

  .get-certified-image .certificate-light,
  .get-certified-image .certificate-dark {
    width: 100%;
    max-width: 670px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .get-certified-section {
    padding: 60px 5vw;
  }

  .get-certified-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    gap: 30px;
  }

  .get-certified-title {
    font-size: 32px;
    line-height: 45px;
  }

  .get-certified-image .certificate-light,
  .get-certified-image .certificate-dark {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-width: 6px;
  }

  .benefit-item span {
    font-size: 20px;
    line-height: 26px;
  }

  .benefit-item .benefit-icon {
    width: 18px;
    height: 18px;
  }

  .btn-enroll-cert {
    width: 220px;
    height: 50px;
    text-decoration: none;
  }

  .btn-enroll-cert-text {
    font-size: 26px;
    line-height: 32px;
    text-decoration: none;
  }
}

@media (max-width: 480px) {
  .get-certified-section {
    padding: 40px 4vw;
  }

  .get-certified-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 15px;
    gap: 20px;
  }

  .get-certified-title {
    order: 1;
    font-size: 26px;
    line-height: 36px;
  }

  .certified-objects {
    order: 2;
    margin-top: -22px;
    margin-bottom: 5px;
    margin-left: 60px;
    width: 100px;
    height: auto;
  }

  .get-certified-image {
    order: 3;
    width: 100%;
  }

  .get-certified-image .certificate-light,
  .get-certified-image .certificate-dark {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-width: 4px;
  }

  .certification-benefits {
    order: 4;
    gap: 12px;
    align-items: center;
  }

  .benefit-item {
    gap: 12px;
  }

  .benefit-item span {
    font-size: 16px;
    line-height: 22px;
  }

  .benefit-item .benefit-icon {
    width: 16px;
    height: 16px;
  }

  .btn-enroll-cert {
    order: 5;
    width: 180px;
    height: 44px;
    text-decoration: none;
  }

  .btn-enroll-cert-text {
    font-size: 20px;
    line-height: 26px;
    text-decoration: none;
  }
}

.no-nonsense-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 8vw;
  gap: 80px;
  background-color: var(--bg-body);
}

.no-nonsense-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 122px;
  max-width: 1301px;
  width: 100%;
}

.no-nonsense-illustration {
  flex-shrink: 0;
  width: 412px;
  height: 372px;
}

.illustration-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.no-nonsense-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 35px;
  max-width: 629px;
}

.no-nonsense-title {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 55px;
  color: var(--text-main);
}

.no-nonsense-title .highlight-blue {
  color: #08a4ff;
}

.no-nonsense-features {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
  width: 100%;
}

.feature-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  width: 100%;
}

.feature-heading {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: #08a4ff;
}

.feature-description {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  color: var(--text-main);
}

.btn-enroll-no-nonsense {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 9.57px 12.51px;
  gap: 7.36px;
  width: 279px;
  height: 63.31px;
  background: linear-gradient(90deg, #1acfff 0%, #0076ff 100%);
  border-radius: 73.61px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
}

.btn-enroll-no-nonsense:hover {
  transform: scale(1.05);
}

.btn-enroll-text {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 35.34px;
  line-height: 44px;
  text-align: center;
  background: linear-gradient(91.52deg, #ffffff -1.64%, #eeeeee 133.11%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 1200px) {
  .no-nonsense-container {
    gap: 80px;
  }

  .no-nonsense-illustration {
    width: 350px;
    height: 316px;
  }

  .no-nonsense-title {
    font-size: 36px;
    line-height: 50px;
  }
}

@media (max-width: 992px) {
  .no-nonsense-section {
    padding: 60px 5vw;
    gap: 50px;
  }

  .no-nonsense-container {
    flex-direction: column;
    gap: 50px;
  }

  .no-nonsense-illustration {
    width: 320px;
    height: 290px;
  }

  .no-nonsense-content {
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
  }

  .no-nonsense-title {
    text-align: left;
  }

  .no-nonsense-features {
    align-items: flex-start;
  }

  .feature-block {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .no-nonsense-section {
    padding: 50px 5vw;
    gap: 40px;
  }

  .no-nonsense-illustration {
    width: 280px;
    height: 253px;
  }

  .no-nonsense-title {
    font-size: 28px;
    line-height: 40px;
  }

  .feature-heading {
    font-size: 20px;
    line-height: 26px;
  }

  .feature-description {
    font-size: 16px;
    line-height: 22px;
  }

  .btn-enroll-no-nonsense {
    width: 240px;
    height: 55px;
  }

  .btn-enroll-text {
    font-size: 28px;
    line-height: 36px;
  }
}

@media (max-width: 480px) {
  .no-nonsense-section {
    padding: 40px 4vw;
    gap: 30px;
  }

  .no-nonsense-illustration {
    width: 220px;
    height: 199px;
  }

  .no-nonsense-title {
    font-size: 22px;
    line-height: 32px;
  }

  .no-nonsense-features {
    gap: 15px;
  }

  .feature-heading {
    font-size: 18px;
    line-height: 24px;
  }

  .feature-description {
    font-size: 14px;
    line-height: 20px;
  }

  .btn-enroll-no-nonsense {
    width: 200px;
    height: 48px;
  }

  .btn-enroll-text {
    font-size: 22px;
    line-height: 28px;
  }
}

.course-for-you-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 8vw;
  background-color: #f4f4f4;
}

body.dark-mode .course-for-you-section {
  background-color: #ffffff;
}

.course-for-you-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  max-width: 1400px;
  width: 100%;
}

.course-for-you-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
  flex: 1;
  max-width: 600px;
}

.course-for-you-header-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px 20px;
  gap: 10px;
  height: 59px;
  background: #08a4ff;
}

.course-for-you-header-text {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 55px;
  background: linear-gradient(91.52deg, #ffffff -1.64%, #eeeeee 133.11%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.course-for-you-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
  flex: 1;
  max-width: 600px;
}

.course-not-for-you-header {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 55px;
  color: #08a4ff;
  margin: 0;
  padding: 0;
}

.course-for-you-divider {
  width: 2px;
  min-height: 450px;
  background-color: #000000;
  flex-shrink: 0;
}

body.dark-mode .course-for-you-divider {
  background-color: #000000;
}

.course-for-you-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 37px;
}

.course-for-you-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.check-icon,
.cross-icon {
  flex-shrink: 0;
}

.course-for-you-text {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: #000000;
}

body.dark-mode .course-for-you-text {
  color: #000000;
}

@media (max-width: 1200px) {
  .course-for-you-container {
    gap: 40px;
  }

  .course-for-you-header-text {
    font-size: 32px;
    line-height: 44px;
  }

  .course-not-for-you-header {
    font-size: 32px;
    line-height: 44px;
  }

  .course-for-you-text {
    font-size: 20px;
    line-height: 26px;
  }
}

@media (max-width: 992px) {
  .course-for-you-section {
    padding: 60px 5vw;
  }

  .course-for-you-container {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .course-for-you-left,
  .course-for-you-right {
    max-width: 100%;
    width: 100%;
    align-items: center;
  }

  .proof-underline {
    display: none;
  }

  .course-for-you-divider {
    width: 80%;
    height: 2px;
    min-height: auto;
  }

  .course-for-you-items {
    align-items: flex-start;
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .course-for-you-section {
    padding: 50px 5vw;
  }

  .course-for-you-left,
  .course-for-you-right {
    gap: 30px;
  }

  .course-for-you-header-box {
    padding: 0px 15px;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .course-for-you-header-text {
    font-size: 24px;
    line-height: 33px;
  }

  .course-not-for-you-header {
    font-size: 24px;
    line-height: 33px;
    text-align: center;
  }

  .course-for-you-items {
    gap: 25px;
  }

  .proof-underline {
    display: none;
  }

  .course-for-you-item {
    gap: 16px;
  }

  .check-icon,
  .cross-icon {
    width: 32px;
    height: 32px;
  }

  .course-for-you-text {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  .course-for-you-section {
    padding: 40px 4vw;
  }

  .course-for-you-left,
  .course-for-you-right {
    gap: 25px;
  }

  .course-for-you-header-box {
    padding: 8px 12px;
  }

  .course-for-you-header-text {
    font-size: 20px;
    line-height: 28px;
  }

  .course-not-for-you-header {
    font-size: 20px;
    line-height: 28px;
  }

  .course-for-you-items {
    gap: 20px;
  }

  .course-for-you-item {
    gap: 12px;
  }

  .check-icon,
  .cross-icon {
    width: 28px;
    height: 28px;
  }

  .course-for-you-text {
    font-size: 16px;
    line-height: 22px;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@400;600;700&display=swap");

:root {
  --faq-blue: #08a4ff;
  --line: rgba(255, 255, 255, 0.75);
  --bg: #0b0b0b;

  --grad: linear-gradient(91.52deg, #ffffff -1.64%, #eeeeee 133.11%);
}

.faq-section {
  background: var(--bg);
  padding: 80px 24px;
  font-family:
    "Neue Montreal",
    "Lexend",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
}

.faq-wrap {
  max-width: 1050px;
  margin: 0 auto;
}

.faq-title {
  margin: 0 0 60px;
  text-align: center;
  font-family: "Neue Montreal", "Lexend", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 70px;
  line-height: 84px;
  color: #000000;
}

.faq-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 33px;
}

.faq-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  border: none;
}

.faq-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 21.78px;
  user-select: none;
  padding: 0;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 21.78px;
  flex: 1;
}

.faq-q {
  display: block;
  font-family: "Neue Montreal", "Lexend", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
  color: #000000;
}

.faq-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 6.21px;
  gap: 4.78px;
  width: 35.35px;
  height: 35.35px;
  min-width: 35.35px;
  min-height: 35.35px;
  background: #08a4ff;
  border-radius: 17.67px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13.66px;
  height: 1.91px;
  background: var(--faq-icon-color);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background 0.2s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background: var(--faq-icon-color);
}

.faq-item[open] .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}

.faq-panel {
  margin-left: calc(35.35px + 21.78px);
  margin-top: 21.78px;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-item[open] .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel > * {
  overflow: hidden;
}

.faq-a {
  margin: 0;
  font-family: "Neue Montreal", "Lexend", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
}

.faq-divider {
  width: 927px;
  max-width: 100%;
  height: 0;
  border: none;
  border-top: 1px solid #000000;
  margin: 0;
  flex-shrink: 0;
}

body:not(.dark-mode) .faq-section {
  background: #ffffff;
}

body:not(.dark-mode) .faq-title {
  color: #000000;
}

body:not(.dark-mode) .faq-q {
  color: #000000;
}

body:not(.dark-mode) .faq-a {
  color: #000000;
}

body:not(.dark-mode) .faq-divider {
  border-top-color: #000000;
}

body.dark-mode .faq-section {
  background: #0b0b0b;
}

body.dark-mode .faq-title {
  color: #ffffff;
}

body.dark-mode .faq-q {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

body.dark-mode .faq-a {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

body.dark-mode .faq-divider {
  border-top-color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1200px) {
  .faq-title {
    font-size: 56px;
    line-height: 67px;
  }

  .faq-q {
    font-size: 30px;
    line-height: 37px;
  }

  .faq-a {
    font-size: 22px;
    line-height: 27px;
  }
}

@media (max-width: 992px) {
  .faq-title {
    font-size: 48px;
    line-height: 58px;
  }

  .faq-q {
    font-size: 26px;
    line-height: 32px;
  }

  .faq-a {
    font-size: 20px;
    line-height: 25px;
  }

  .faq-list {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 20px;
  }

  .faq-title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 40px;
  }

  .faq-q {
    font-size: 22px;
    line-height: 28px;
  }

  .faq-a {
    font-size: 18px;
    line-height: 24px;
  }

  .faq-summary {
    gap: 16px;
  }

  .faq-panel {
    margin-left: calc(35.35px + 16px);
  }

  .faq-list {
    gap: 20px;
  }

  .faq-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    border-radius: 15px;
  }

  .faq-icon::before,
  .faq-icon::after {
    width: 12px;
    height: 1.5px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 40px 16px;
  }

  .faq-title {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 30px;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    flex: 0 0 24px;
    border-radius: 12px;
    padding: 4px;
  }

  .faq-icon::before,
  .faq-icon::after {
    width: 10px;
    height: 1.2px;
  }

  .faq-summary {
    gap: 12px;
    align-items: flex-start;
  }

  .faq-panel {
    margin-left: calc(24px + 12px);
    margin-top: 16px;
  }

  .faq-content {
    gap: 16px;
  }

  .faq-q {
    font-size: 18px;
    line-height: 23px;
  }

  .faq-a {
    font-size: 15px;
    line-height: 20px;
  }

  .faq-list {
    gap: 16px;
  }
}

.footer-image {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 0;
}

.footer-image svg {
  width: 100%;
  height: auto;
  display: block;
}

.footer-image img {
  width: 100%;
  max-height: 775px;
  object-fit: contain;
}

.footer-image .footer-svg-light {
  display: block;
}

.footer-image .footer-svg-dark {
  display: none;
}

body.dark-mode .footer-image .footer-svg-light {
  display: none;
}

body.dark-mode .footer-image .footer-svg-dark {
  display: block;
}

@media (max-width: 480px) {
  .footer-image {
    width: calc(100% - 19px);
    max-width: 383px;
  }

  .footer-image svg {
    width: 100%;
    height: 195px;
    object-fit: cover;
    object-position: center;
  }

  .footer-image img {
    width: 100%;
    height: 195px;
    object-fit: cover;
    object-position: center;
  }
}

.access-pricing {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.original-price {
  position: relative;
  display: inline-block;
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 30px;
  color: var(--text-main);
}

.price-strike {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: auto;
  pointer-events: none;
}

.free-badge {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 4px 16px;
  background: #08a4ff;
  border-radius: 4px;
}

.free-text {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
}

@media (max-width: 768px) {
  .original-price {
    font-size: 20px;
    line-height: 26px;
  }

  .free-text {
    font-size: 16px;
    line-height: 20px;
  }
}

@media (max-width: 480px) {
  .access-pricing {
    gap: 8px;
  }

  .original-price {
    font-size: 18px;
    line-height: 24px;
  }

  .free-badge {
    padding: 3px 12px;
  }

  .free-text {
    font-size: 14px;
    line-height: 18px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    width: 100%;
  }

  .info-strip {
    width: 100%;
    height: 30px;
    padding: 1px 0;
    margin-bottom: 30px;
    top: 53px;
  }

  .marquee-group span {
    font-size: 12px;
    line-height: 15px;
  }

  .hero-content {
    width: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 0 16px;
    gap: 20px;
    align-items: center;
  }

  .text-col {
    width: 100%;
    order: 1;
    gap: 16px;
    align-items: flex-start;
    position: relative;
  }

  .hero-title {
    font-size: 42px;
    line-height: 100%;
    width: 100%;
    max-width: 100%;
    text-align: left;
  }

  .hero-desc {
    font-size: 21px;
    line-height: 25px;
    width: 100%;
    max-width: 345px;
    text-align: left;
  }

  .highlight-text {
    font-style: italic;
  }

  .video-col {
    width: 100%;
    order: 2;
    align-items: center;
    gap: 0;
    position: relative;
  }

  .video-card-wrapper {
    width: 371px;
    max-width: 100%;
  }

  .video-card-wrapper::before {
    display: none;
  }

  .video-card {
    width: 100%;
    height: 216.69px;
    aspect-ratio: auto;
    border-radius: 19.7px;
  }

  .video-thumb {
    object-fit: cover;
  }

  .play-btn {
    width: 52px;
    height: 52px;
    padding: 3px 5px;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 26px;
  }

  .play-icon {
    width: 32px;
    height: 32px;
  }

  .video-col::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 371px;
    max-width: 100%;
    height: 52.77px;
    background: transparent;
    border-radius: 0 0 14.23px 14.23px;
    z-index: 0;
  }

  .language-toggle {
    width: 100%;
    justify-content: center;
    gap: 49.25px;
    margin-top: 15px;
    padding: 0 15px;
    position: relative;
    z-index: 1;
  }

  .lang-btn {
    min-width: 110.96px;
    height: 23.81px;
    padding: 2.82px 6.86px;
    gap: 4.03px;
    border-radius: 8.07px;
    font-size: 12.91px;
    line-height: 16px;
  }

  .lang-btn.active {
    background: linear-gradient(90deg, #08a4ff 0%, #056299 100%);
  }

  .lang-btn.active span {
    font-size: 12.91px;
  }

  .lang-btn:not(.active) {
    background: linear-gradient(91.52deg, #ffffff -1.64%, #eeeeee 133.11%);
    border: 0.55px solid #000000;
  }

  .lang-btn:not(.active) span {
    font-size: 12.91px;
    color: #000000;
  }

  .btn-hero {
    width: 256px;
    height: 58.09px;
    padding: 9.73px 11.48px 8.78px;
    gap: 6.75px;
    background: linear-gradient(90deg, #1acfff 0%, #0076ff 100%);
    border-radius: 67.55px;
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 30px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    order: 100;
    text-decoration: none;
  }

  .btn-hero img {
    width: 100%;
    height: auto;
    max-width: 155px;
  }
}

.icon-light {
  display: block;
}

.icon-dark {
  display: none;
}

body.dark-mode .icon-light {
  display: none;
}

body.dark-mode .icon-dark {
  display: block;
}

.access-item-image img {
  width: 100%;
  height: auto;
  max-width: 476px;
}

.item-content-right .access-item-image img,
.item-right .access-item-image img {
  max-width: 324px;
}

@media (max-width: 480px) {
  .additional-access {
    padding: 60px 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .additional-access-header {
    flex-direction: column;
    gap: 15px;
  }

  .additional-access-title {
    font-size: 27px;
    line-height: 34px;
    text-align: center;
  }

  .additional-access-wave {
    width: 140px;
  }

  .access-items-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 61px;
    width: 100%;
  }

  .access-item,
  .access-item.item-content-top,
  .access-item.item-content-bottom {
    display: flex;
    flex-direction: column !important;
    align-items: center !important;
    width: 330px;
    max-width: 100%;
    padding: 0;
    gap: 0;
    height: auto;
    position: relative;
  }

  .access-item-image {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 0;
    margin-bottom: 20px;
  }

  .access-item-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    order: 1;
    width: 100%;
    max-width: 100%;
  }

  .proof-circle {
    display: none;
  }

  .proof-underline {
    position: absolute;
    display: flow-root;
    width: 100%;
    height: auto;
    z-index: -1;
    pointer-events: none;
  }

  .access-item-title {
    order: 1;
    font-family: "Lexend", sans-serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text-main);
  }

  .access-item-desc {
    order: 2;
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    font-size: 19px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-main);
    width: 316px;
    max-width: 100%;
  }

  .access-pricing {
    order: 3;
    width: 182.81px;
    height: 31.95px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 33.28px;
    position: relative;
  }

  .original-price {
    font-family: "Lexend", sans-serif;
    font-weight: 600;
    font-size: 24.4px;
    line-height: 31px;
    color: var(--text-main);
    width: 71.44px;
    height: 30.62px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .price-strike {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .free-badge {
    width: 78.09px;
    height: 31.95px;
    padding: 0;
    background: #08a4ff;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .free-text {
    font-family: "Lexend", sans-serif;
    font-weight: 600;
    font-size: 24.4px;
    line-height: 31px;
    text-align: center;
    color: #000000;
    width: 71.44px;
  }

  .access-item-image img {
    height: 140px;
    width: 220px;
    object-fit: contain;
    max-width: 100%;
  }
}

.course-underline-mobile-img {
  display: none;
}

.mobile-course-span {
  position: relative;
  display: inline-block;
}

@media (max-width: 768px) {
  .course-underline-mobile-img {
    display: block;
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: auto;
  }

  .course-section-title {
    position: relative;
    margin-bottom: 25px;
  }

  .course-section-title span {
    position: static;
    display: flex;
  }

  .course-title-wave {
    width: 90px;
    height: 8px;
    position: absolute;
    left: 0;
    bottom: -8px;
  }
}

.struggles-section {
  width: 100%;
  padding: 60px 8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
}

.struggles-header {
  text-align: center;
  margin-bottom: 60px;
}

.struggles-title {
  font-family: "Lexend", sans-serif;
  font-weight: 500;
  font-size: 70px;
  line-height: 84px;
  text-align: center;
  color: var(--text-main);
}

.struggles-highlight {
  font-style: italic;
  position: relative;
  display: inline-block;
  color: var(--text-sub);
}

.struggles-highlight .wavy-underline-blue {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: auto;
}

.struggles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}

.struggles-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.struggles-card-image {
  width: 182px;
  height: 182px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.struggles-card-light {
  display: block;
}

.struggles-card-dark {
  display: none;
}

body.dark-mode .struggles-card-light {
  display: none;
}

body.dark-mode .struggles-card-dark {
  display: block;
}

.struggles-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.struggles-card-title {
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: var(--text-main);
  margin-bottom: 12px;
}

.struggles-card-desc {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: var(--text-main);
  max-width: 330px;
}

@media (max-width: 1024px) {
  .struggles-title {
    font-size: 48px;
    line-height: 58px;
  }

  .struggles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .struggles-section {
    padding: 40px 5vw;
  }

  .struggles-header {
    margin-bottom: 40px;
  }

  .struggles-title {
    font-size: 32px;
    line-height: 40px;
  }

  .struggles-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .struggles-card {
    padding: 15px;
  }

  .struggles-card-image {
    width: 150px;
    height: 150px;
  }

  .struggles-card-title {
    font-size: 20px;
    line-height: 24px;
  }

  .struggles-card-desc {
    font-size: 16px;
    line-height: 20px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .struggles-title {
    font-size: 32px;
    line-height: 38px;
  }

  .struggles-card-image {
    width: 160px;
    height: 180px;
  }

  .struggles-card-title {
    font-size: 22px;
    line-height: 26px;
  }

  .struggles-card-desc {
    font-size: 16px;
    line-height: 20px;
  }
}

@media (max-width: 1200px) {
  .course-section-container {
    padding: 0 40px;
  }

  .course-section-title {
    font-size: 55px;
    line-height: 66px;
  }

  .course-features-grid {
    gap: 40px 30px;
  }

  .course-feature-card {
    max-width: 380px;
    min-height: 480px;
    padding: 35px 24px;
  }

  .feature-title {
    font-size: 22px;
    line-height: 27px;
  }

  .feature-desc {
    font-size: 18px;
    line-height: 22px;
  }
}

@media (max-width: 1024px) {
  .course-section-title {
    font-size: 48px;
    line-height: 58px;
  }

  .course-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }

  .course-feature-card {
    max-width: 400px;
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .end-of-the-course-section {
    padding: 60px 0;
    margin-top: 40px;
  }

  .course-section-container {
    padding: 0 20px;
    gap: 40px;
  }

  .course-section-title {
    font-size: 32px;
    line-height: 40px;
  }

  .course-section-title .course-highlight {
    display: block;
  }

  .course-features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 400px;
    margin: 0 auto;
  }

  .course-feature-card {
    max-width: 100%;
    min-height: auto;
    padding: 30px 20px;
  }

  .feature-illustration {
    min-height: 220px;
    max-width: 280px;
  }

  .feature-img {
    max-height: 220px;
  }

  .feature-title {
    font-size: 20px;
    line-height: 24px;
  }

  .feature-desc {
    font-size: 16px;
    line-height: 20px;
  }
}

@media (max-width: 480px) {
  .end-of-the-course-section {
    padding: 40px 0;
    margin-top: 30px;
  }

  .course-section-container {
    padding: 0 15px;
    gap: 30px;
  }

  .course-section-title {
    font-size: 28px;
    line-height: 34px;
  }

  .course-features-grid {
    max-width: 350px;
  }

  .course-feature-card {
    padding: 25px 18px;
    border-radius: 24px;
    box-shadow: 6px 6px 0px rgba(8, 164, 255, 0.67);
  }

  .course-feature-card:hover {
    box-shadow: 8px 8px 0px rgba(8, 164, 255, 0.8);
  }

  .feature-illustration {
    min-height: 180px;
    max-width: 240px;
  }

  .feature-img {
    max-height: 180px;
  }

  .feature-title {
    font-size: 18px;
    line-height: 22px;
  }

  .feature-desc {
    font-size: 14px;
    line-height: 18px;
  }

  body.dark-mode .course-feature-card {
    box-shadow: 6px 6px 0px rgba(26, 207, 255, 0.5);
  }

  body.dark-mode .course-feature-card:hover {
    box-shadow: 8px 8px 0px rgba(26, 207, 255, 0.7);
  }
}

.course-curriculum-new {
  width: 100%;
  padding: 80px 8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-body);
}

.curriculum-header-new {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 1208px;
}

.curriculum-title-new {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 70px;
  line-height: 84px;
  text-align: center;
  color: var(--text-main);
}

.curriculum-subtitle-new {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  color: var(--text-main);
  max-width: 1208px;
}

.curriculum-cards-new {
  width: 100%;
  max-width: 1098px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.curriculum-module-card {
  box-sizing: border-box;
  width: 100%;
  max-width: 1098px;
  background: #ffffff;
  border: 1px solid #000000;
  box-shadow: 7.4px 7.4px 0px #08a4ff;
  border-radius: 24px;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.curriculum-module-card:hover {
  transform: translateY(-3px);
  box-shadow: 10px 10px 0px #08a4ff;
}

.module-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 40px 85px;
  gap: 31.5px;
}

.module-number {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 100px;
  line-height: 125px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #08a4ff;
  min-width: 163px;
  flex-shrink: 0;
}

.module-divider {
  width: 1px;
  height: 120px;
  background: #000000;
  border-radius: 0;
  flex-shrink: 0;
}

.module-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1;
}

.module-title {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 32px;
  color: #000000;
  margin: 0;
}

.module-topics {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #000000;
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.module-topics li {
  margin-bottom: 3px;
}

.module-topics li:last-child {
  margin-bottom: 0;
}

body.dark-mode .curriculum-module-card {
  background: linear-gradient(180deg, #636363 0%, #1e1e1e 100%);
  border: 0.93px solid #f0f0f0f0;
  box-shadow: 7.4px 7.4px 0px rgba(8, 164, 255, 0.5);
}

body.dark-mode .module-number {
  color: #ffffff;
}

body.dark-mode .module-title,
body.dark-mode .module-topics {
  color: #ffffff;
}

body.dark-mode .module-divider {
  background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
  .curriculum-title-new {
    font-size: 52px;
    line-height: 62px;
  }

  .curriculum-subtitle-new {
    font-size: 20px;
    line-height: 26px;
  }

  .module-content {
    padding: 30px 40px;
    gap: 25px;
  }

  .module-number {
    font-size: 80px;
    line-height: 100px;
    min-width: 130px;
  }

  .module-divider {
    height: 100px;
  }

  .module-title {
    font-size: 22px;
    line-height: 28px;
  }

  .module-topics {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 768px) {
  .course-curriculum-new {
    padding: 60px 5vw;
  }

  .curriculum-header-new {
    margin-bottom: 40px;
    gap: 20px;
  }

  .curriculum-title-new {
    font-size: 36px;
    line-height: 44px;
  }

  .curriculum-subtitle-new {
    font-size: 16px;
    line-height: 22px;
  }

  .curriculum-cards-new {
    gap: 20px;
  }

  .curriculum-module-card {
    border-radius: 12px;
    box-shadow: 4px 4px 0px #08a4ff;
  }

  .module-content {
    flex-direction: row;
    align-items: flex-start;
    padding: 16px 12px;
    gap: 12px;
  }

  .module-number {
    font-size: 28px;
    line-height: 32px;
    min-width: 32px;
    flex-shrink: 0;
  }

  .module-divider {
    display: block;
    width: 1px;
    height: auto;
    min-height: 60px;
    align-self: stretch;
  }

  .module-info {
    gap: 6px;
    flex: 1;
  }

  .module-title {
    font-size: 12px;
    line-height: 15px;
    font-weight: 500;
  }

  .module-topics {
    font-size: 10px;
    line-height: 14px;
    padding-left: 12px;
  }

  .module-topics li {
    margin-bottom: 2px;
  }
}

@media (max-width: 480px) {
  .curriculum-title-new {
    font-size: 28px;
    line-height: 34px;
  }

  .curriculum-subtitle-new {
    font-size: 14px;
    line-height: 20px;
  }

  .module-content {
    padding: 14px 10px;
    gap: 10px;
  }

  .module-number {
    font-size: 24px;
    line-height: 28px;
    min-width: 28px;
  }

  .module-divider {
    min-height: 50px;
  }

  .module-title {
    font-size: 11px;
    line-height: 14px;
  }

  .module-topics {
    font-size: 9px;
    line-height: 13px;
    padding-left: 10px;
  }
}

.guarantee-new-section {
  width: 100%;
  padding: 80px 8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-body);
}

.guarantee-new-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 46px;
  max-width: 1044px;
  width: 100%;
}

.guarantee-new-title {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 70px;
  line-height: 84px;
  text-align: center;
  color: var(--text-main);
}

.guarantee-highlight {
  color: #08a4ff;
}

.guarantee-new-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.guarantee-new-text {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  color: var(--text-main);
  margin: 0;
}

.guarantee-action-text {
  color: #08a4ff;
  font-weight: 700;
}

.guarantee-refund-text {
  color: #08a4ff;
  font-weight: 700;
}

.guarantee-promise-text {
  font-family: "Lexend", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  color: #08a4ff;
  margin: 0;
  margin-top: 10px;
}

.roas-mission-new {
  width: 100%;
  padding: 80px 8vw;
  display: flex;
  justify-content: center;
  background: var(--bg-body);
}

.mission-new-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 60px;
  max-width: 1400px;
  width: 100%;
}

.mission-illustration {
  flex-shrink: 0;
  width: 525px;
  height: auto;
}

.mission-illustration img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.mission-new-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  max-width: 626px;
}

.mission-new-title {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  color: var(--text-main);
  margin: 0;
}

.mission-new-highlight {
  color: #08a4ff;
}

.mission-new-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mission-new-text p {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: var(--text-main);
  margin: 0;
}

.mission-new-text strong {
  font-weight: 700;
}

body.dark-mode .guarantee-new-section {
  background-color: #000000;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
}

body.dark-mode .roas-mission-new {
  background-color: #000000;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
}

.instructor-section {
  width: 100%;
  padding: 40px 8vw 80px;
  display: flex;
  justify-content: center;
  background: var(--bg-body);
}

.instructor-card {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 1328px;
  min-height: 721px;
  background: #ffffff;
  border: 2px solid #08a4ff;
  box-shadow: 7px -7px 0px rgba(8, 164, 255, 0.69);
  border-radius: 55px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: visible;
}

.instructor-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 70px 50px;
  gap: 15px;
}

.instructor-label {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 38px;
  color: #08a4ff;
}

.instructor-name {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 55px;
  line-height: 66px;
  color: #000000;
  margin: 0;
}

.instructor-bio {
  max-width: 621px;
}

.instructor-bio p {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #000000;
  margin: 0;
}

.instructor-br {
  display: block;
  margin: 12px 0;
}

.instructor-image {
  position: absolute;
  right: -30px;
  top: 293px;
  width: 732px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  border-radius: 92px;
}

.instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  border-radius: 92px;
}

body.dark-mode .instructor-card {
  background: linear-gradient(
    264.57deg,
    rgba(102, 102, 102, 0.59) -0.2%,
    rgba(0, 0, 0, 0.65) 13.53%,
    rgba(20, 20, 20, 0.93) 57.61%,
    rgba(0, 0, 0, 0.96) 78.5%,
    rgba(102, 102, 102, 0.31) 96.75%
  );
  box-shadow: -6px 6px 31.6px rgba(8, 164, 255, 0.34);
  border-radius: 37px;
  border: none;
}

body.dark-mode .instructor-label {
  color: #ffffff;
}

body.dark-mode .instructor-name {
  color: #ffffff;
}

body.dark-mode .instructor-bio p {
  color: #ffffff;
}

body.dark-mode .instructor-image {
  background: linear-gradient(
    271.14deg,
    rgba(0, 0, 0, 0) 14.29%,
    rgba(0, 0, 0, 0.17) 84.48%
  );
  border-radius: 0px;
}

@media (max-width: 1400px) {
  .instructor-card {
    min-height: 600px;
  }

  .instructor-image {
    width: 550px;
    height: 700px;
    top: -99px;
    border-radius: 70px;
  }

  .instructor-image img {
    border-radius: 70px;
  }
}

@media (max-width: 1200px) {
  .instructor-card {
    min-height: 550px;
  }

  .instructor-content {
    padding: 50px 40px;
    max-width: 55%;
  }

  .instructor-label {
    font-size: 28px;
    line-height: 34px;
  }

  .instructor-name {
    font-size: 45px;
    line-height: 54px;
  }

  .instructor-bio p {
    font-size: 20px;
    line-height: 28px;
  }

  .instructor-image {
    width: 450px;
    height: 600px;
    top: -49px;
    border-radius: 60px;
  }

  .instructor-image img {
    border-radius: 60px;
  }
}

@media (max-width: 1024px) {
  .instructor-section {
    padding: 60px 5vw 80px;
  }

  .instructor-card {
    flex-direction: column;
    border-radius: 28px;
    box-shadow: 5px -5px 0px rgba(8, 164, 255, 0.69);
    min-height: auto;
    padding-top: 350px;
    overflow: hidden;
  }

  .instructor-content {
    padding: 30px 30px 40px;
    max-width: 100%;
    order: 2;
  }

  .instructor-label {
    font-size: 24px;
    line-height: 30px;
  }

  .instructor-name {
    font-size: 38px;
    line-height: 46px;
  }

  .instructor-bio {
    max-width: 100%;
  }

  .instructor-bio p {
    font-size: 18px;
    line-height: 26px;
  }

  .instructor-image {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 100%;
    max-width: 450px;
    height: 380px;
    border-radius: 50px 50px 0 0;
  }

  .instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 26px 26px 0 0;
  }
}

@media (max-width: 768px) {
  .instructor-section {
    padding: 40px 5vw 60px;
  }

  .instructor-card {
    border-radius: 24px;
    padding-top: 300px;
  }

  .instructor-content {
    padding: 25px 25px 35px;
    gap: 12px;
  }

  .instructor-label {
    font-size: 20px;
    line-height: 24px;
  }

  .instructor-name {
    font-size: 28px;
    line-height: 34px;
  }

  .instructor-bio p {
    font-size: 16px;
    line-height: 24px;
  }

  .instructor-image {
    max-width: 350px;
    height: 320px;
    border-radius: 40px 40px 0 0;
  }

  .instructor-image img {
    border-radius: 22px 22px 0 0;
  }
}

@media (max-width: 480px) {
  .instructor-section {
    padding: 20px 5vw 40px;
  }

  .instructor-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 31px 26px 0 !important;
    width: 348px;
    max-width: 100%;
    min-height: auto;
    background: #ffffff;
    border: 2px solid #08a4ff;
    box-shadow: -6px 6px 31.6px rgba(8, 164, 255, 0.34);
    border-radius: 37px;
    position: relative;
    overflow: hidden;
  }

  body.dark-mode .instructor-card {
    background: linear-gradient(
      264.57deg,
      rgba(102, 102, 102, 0.42) -0.2%,
      rgba(0, 0, 0, 0.65) 13.53%,
      rgba(20, 20, 20, 0.93) 57.61%,
      rgba(0, 0, 0, 0.96) 78.5%,
      rgba(102, 102, 102, 0.07) 96.75%
    ) !important;
    border: 2px solid transparent !important;
    box-shadow: -6px 6px 31.6px rgba(8, 164, 255, 0.34) !important;
  }

  .instructor-content {
    order: 1;
    padding: 0;
    gap: 12px;
    width: 100%;
    max-width: 296px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .instructor-label {
    font-family: "Lexend", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    color: #000000;
  }

  body.dark-mode .instructor-label {
    color: #ffffff;
  }

  .instructor-name {
    font-family: "Lexend", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
    color: #000000;
  }

  body.dark-mode .instructor-name {
    color: #ffffff;
  }

  .instructor-bio {
    max-width: 296px;
    width: 100%;
  }

  .instructor-bio p {
    font-family: "Lexend", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #000000;
  }

  body.dark-mode .instructor-bio p {
    color: #ffffff;
  }

  .instructor-br {
    display: block;
    margin: 8px 0;
  }

  .instructor-image {
    order: 2;
    position: static !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100%;
    max-width: 374px;
    height: 435px;
    margin-top: 20px;
    border-radius: 34px;
    overflow: hidden;
  }

  .instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    margin-top: -20px;
  }
}

@media (max-width: 1024px) {
  .guarantee-new-title {
    font-size: 52px;
    line-height: 62px;
  }

  .guarantee-new-text,
  .guarantee-promise-text {
    font-size: 24px;
    line-height: 30px;
  }
}

@media (max-width: 768px) {
  .guarantee-new-section {
    padding: 20px 5vw;
  }

  .guarantee-new-container {
    gap: 30px;
  }

  .guarantee-new-title {
    font-size: 36px;
    line-height: 44px;
  }

  .guarantee-new-content {
    gap: 16px;
  }

  .guarantee-new-text,
  .guarantee-promise-text {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  .guarantee-new-title {
    font-size: 28px;
    line-height: 34px;
  }

  .guarantee-new-text,
  .guarantee-promise-text {
    font-size: 16px;
    line-height: 22px;
  }
}

@media (max-width: 1200px) {
  .mission-new-container {
    gap: 40px;
  }

  .mission-illustration {
    width: 400px;
  }

  .mission-new-title {
    font-size: 40px;
    line-height: 48px;
  }

  .mission-new-text p {
    font-size: 18px;
    line-height: 22px;
  }
}

@media (max-width: 1024px) {
  .mission-new-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .mission-illustration {
    width: 100%;
    max-width: 450px;
    order: 1;
  }

  .mission-new-content {
    order: 2;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .mission-new-title {
    text-align: center;
  }

  .mission-new-text {
    align-items: center;
  }

  .mission-new-text p {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .roas-mission-new {
    padding: 20px 5vw;
  }

  .mission-illustration {
    max-width: 350px;
  }

  .mission-new-title {
    font-size: 32px;
    line-height: 40px;
  }

  .mission-new-content {
    gap: 20px;
  }

  .mission-new-text p {
    font-size: 16px;
    line-height: 22px;
  }
}

@media (max-width: 480px) {
  .mission-illustration {
    max-width: 280px;
  }

  .mission-new-title {
    font-size: 26px;
    line-height: 32px;
  }

  .mission-new-text p {
    font-size: 14px;
    line-height: 20px;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .instructor-section {
    padding: 40px 5vw 60px;
  }
}

.stats-carousel-section {
  width: 100%;
  padding: 60px 0;
  overflow: hidden;
  background: var(--bg-body);
}

.stats-carousel-container {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.stats-carousel-container::-webkit-scrollbar {
  display: none;
}

.stats-carousel-container:active {
  cursor: grabbing;
}

.stats-carousel-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 58px;
  padding: 0 calc((100vw - 965px) / 2);
  width: fit-content;
  transition: transform 0.3s ease;
}

.stats-carousel-slide {
  flex: none;
  width: 965px;
  height: 375px;
}

.stats-slide-content {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.stats-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 20, 60, 0.7) 0%,
    rgba(0, 20, 60, 0.3) 50%,
    rgba(0, 20, 60, 0) 100%
  );
  z-index: 1;
}

.stats-slide-text {
  position: relative;
  z-index: 2;
  padding: 40px 60px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stats-slide-headline {
  font-family: "Lexend", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  color: #ffffff;
  margin: 0;
}

.stats-slide-description {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  color: #ffffff;
  margin: 0;
}

.stats-slide-description-large {
  max-width: 360px;
}

.stats-slide-source {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
  opacity: 0.8;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .stats-carousel-track {
    gap: 30px;
    padding: 0 5vw;
  }

  .stats-carousel-slide {
    width: 800px;
    height: 310px;
  }

  .stats-slide-headline {
    font-size: 36px;
    line-height: 44px;
  }

  .stats-slide-description {
    font-size: 20px;
    line-height: 26px;
  }

  .stats-slide-source {
    font-size: 16px;
    line-height: 20px;
  }
}

@media (max-width: 768px) {
  .stats-carousel-section {
    padding: 40px 0;
  }

  .stats-carousel-track {
    gap: 20px;
    padding: 0 5vw;
  }

  .stats-carousel-slide {
    width: 90vw;
    height: auto;
  }

  .stats-slide-content {
    border-radius: 0;
  }

  .stats-slide-text {
    padding: 30px;
    max-width: 70%;
  }

  .stats-slide-headline {
    font-size: 28px;
    line-height: 34px;
  }

  .stats-slide-description {
    font-size: 16px;
    line-height: 22px;
  }

  .stats-slide-description-large {
    max-width: 100%;
  }

  .stats-slide-source {
    font-size: 14px;
    line-height: 18px;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .stats-carousel-section {
    padding: 30px 0;
  }

  .stats-carousel-track {
    gap: 15px;
    padding: 0 4vw;
  }

  .stats-carousel-slide {
    width: 92vw;
    height: 45vw;
  }

  .stats-slide-text {
    padding: 20px;
    max-width: 80%;
  }

  .stats-slide-headline {
    font-size: 20px;
    line-height: 26px;
  }

  .stats-slide-description {
    font-size: 14px;
    line-height: 20px;
  }

  .stats-slide-source {
    font-size: 12px;
    line-height: 16px;
  }
}

.bonus-bundles-section {
  width: 100%;
  padding: 80px 8vw;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bonus-header-container {
  text-align: center;
  margin-bottom: 60px;
}

.bonus-section-title {
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  font-size: 54px;
  line-height: 1.1;
  color: var(--text-main);
}

.bonus-worth {
  color: #005bbc;
  color: #08a4ff;
}

.bonus-grid {
  scale: 0.7;
  margin-bottom: -20rem;
  margin-top: -15rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
  width: 100%;
  max-width: 1400px;
}

.bonus-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #000000;
  padding: 48px 33px;
  gap: 22px;
  width: 470px;
  background: #ffffff;
  box-shadow: 11px 11px 0px rgba(8, 164, 255, 0.67);
  border-radius: 36px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  overflow: hidden;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 14px 14px 0px rgba(8, 164, 255, 0.8);
}

.bonus-image-wrapper {
  width: 378px;
  height: auto;
  border-radius: 0;
  overflow: hidden;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.bonus-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.bonus-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 13px;
  width: 100%;
  max-width: 402px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.bonus-title-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.bonus-card-title {
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  font-size: 23px;
  line-height: 33px;
  text-align: center;
  color: #000000;
  margin: 0;
  width: 100%;
}

.bonus-value {
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  font-size: 23px;
  line-height: 33px;
  text-align: center;
  color: #000000;
  margin: 0 0 10px 0;
}

.bonus-description {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  color: #000000;
  text-align: left;
  width: 100%;
}

.bonus-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.bonus-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  color: #000000;
}

.bonus-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000000;
  font-size: 22px;
  line-height: 32px;
}

body.dark-mode .bonus-card {
  background: linear-gradient(180deg, #000000 0%, #404040 100%);
  border-color: #08a4ff;
  box-shadow: 11px 11px 0px rgba(8, 164, 255, 0.3);
  border: 1px solid #ffffff;
}

body.dark-mode .bonus-card-title {
  color: #ffffff;
}

body.dark-mode .bonus-list li {
  color: #e0e0e0;
}

body.dark-mode .bonus-value {
  color: #1acfff;
}

body.dark-mode .bonus-description {
  color: #e0e0e0;
}

body.dark-mode .bonus-list li::before {
  color: #1acfff;
}

@media (max-width: 1024px) {
  .bonus-grid {
    scale: 1;
    gap: 30px;
    margin-bottom: 0rem;
    margin-top: 0rem;
  }

  .bonus-section-title {
    font-size: 42px;
  }

  .bonus-card {
    width: 440px;
  }
}

@media (max-width: 768px) {
  .bonus-bundles-section {
    padding: 60px 5vw;
  }

  .bonus-grid {
    scale: 1;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0rem;
    margin-top: 0rem;
    gap: 40px;
  }

  .bonus-section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .bonus-card {
    width: 100%;
    max-width: 470px;
    padding: 30px 24px;
    border-radius: 28px;
  }

  .bonus-image-wrapper {
    width: 100%;
    max-width: 360px;
  }

  .bonus-card-title {
    font-size: 22px;
    line-height: 28px;
  }

  .bonus-description {
    font-size: 18px;
    line-height: 28px;
  }

  .bonus-list li {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 480px) {
  .bonus-section-title {
    font-size: 28px;
  }

  .bonus-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .bonus-image-wrapper {
    max-width: 280px;
  }

  .bonus-card-title {
    font-size: 20px;
    line-height: 26px;
  }

  .bonus-description {
    font-size: 16px;
    line-height: 24px;
  }

  .bonus-list li {
    font-size: 16px;
    line-height: 24px;
  }
}

.course-fit-section {
  width: 100%;
  padding: 80px 8vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.course-fit-container {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1250px;
  min-height: 737px;
  background: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 0px 3px 25.9px rgba(8, 164, 255, 0.56);
  border-radius: 60px;
  padding: 60px 40px;
  gap: 0;
}

.course-fit-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 40px;
}

.course-fit-title {
  font-family: "Lexend", sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 38px;
  color: #000000;
  margin: 0 0 16px 0;
}

.course-fit-divider {
  width: 100%;
  max-width: 345px;
  height: 0;
  border: 1px solid #000000;
  margin-bottom: 24px;
}

.fit-not-for-you .course-fit-divider {
  max-width: 399px;
}

.course-fit-vertical-divider {
  width: 0;
  height: 600px;
  border: 1px solid #000000;
  flex-shrink: 0;
}

.course-fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.course-fit-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.fit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fit-icon svg {
  width: 24px;
  height: 24px;
}

.fit-text {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}

body.dark-mode .course-fit-container {
  background: #111111;
  border-color: #08a4ff;
  box-shadow: 0px 3px 25.9px rgba(8, 164, 255, 0.35);
}

body.dark-mode .course-fit-title {
  color: #ffffff;
}

body.dark-mode .course-fit-divider {
  border-color: rgba(255, 255, 255, 0.3);
}

body.dark-mode .course-fit-vertical-divider {
  border-color: rgba(255, 255, 255, 0.3);
}

body.dark-mode .fit-text {
  color: #e0e0e0;
}

@media (max-width: 1200px) {
  .course-fit-container {
    max-width: 1100px;
    padding: 50px 30px;
    gap: 0;
  }

  .course-fit-column {
    padding: 0 30px;
  }

  .course-fit-title {
    font-size: 28px;
    line-height: 34px;
  }

  .fit-text {
    font-size: 18px;
    line-height: 22px;
  }
}

@media (max-width: 1024px) {
  .course-fit-container {
    flex-direction: column;
    min-height: auto;
    padding: 50px 40px;
    gap: 50px;
    border-radius: 40px;
  }

  .course-fit-column {
    padding: 0;
    width: 100%;
  }

  .course-fit-vertical-divider {
    display: none;
  }

  .course-fit-divider,
  .fit-not-for-you .course-fit-divider {
    max-width: 100%;
  }

  .fit-not-for-you {
    padding-top: 40px;
    border-top: 1px solid #000000;
  }

  body.dark-mode .fit-not-for-you {
    border-top-color: rgba(255, 255, 255, 0.3);
  }
}

@media (max-width: 768px) {
  .course-fit-section {
    padding: 60px 5vw;
  }

  .course-fit-container {
    padding: 40px 30px;
    gap: 40px;
    border-radius: 32px;
  }

  .course-fit-title {
    font-size: 24px;
    line-height: 30px;
  }

  .fit-text {
    font-size: 16px;
    line-height: 22px;
  }

  .course-fit-list {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .course-fit-section {
    padding: 40px 16px;
  }

  .course-fit-container {
    padding: 0;
    gap: 50px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    border: none;
  }

  .course-fit-column {
    padding: 0;
  }

  .course-fit-title {
    font-family: "Lexend", sans-serif;
    font-size: 40px;
    line-height: 120%;
    color: var(--text-main);
    margin-bottom: 20px;
    text-align: center;
  }

  .course-fit-divider {
    display: none;
  }

  .fit-not-for-you {
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  body.dark-mode .fit-not-for-you {
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .fit-text {
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 150%;
    color: var(--text-main);
  }

  .fit-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
  }

  .fit-icon img {
    width: 18px;
    height: 18px;
  }

  .fit-icon svg {
    width: 18px;
    height: 18px;
  }

  .course-fit-list li {
    gap: 12px;
    align-items: flex-start;
  }

  .course-fit-list {
    gap: 20px;
  }

  body.dark-mode .course-fit-container {
    background: transparent;
    box-shadow: none;
    border: none;
  }

  body.dark-mode .course-fit-title {
    color: #ffffff;
  }

  body.dark-mode .fit-text {
    color: rgba(255, 255, 255, 0.9);
  }
}

.certification-apart-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.certification-apart-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  min-height: 627px;
  background: #ffffff;
  box-shadow: 0px 4px 27.6px 3px rgba(8, 164, 255, 0.39);
  padding: 86px 60px 80px 88px;
  gap: 40px;
}

.certification-apart-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
}

.certification-apart-title {
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 137.61%;
  color: #000000;
  margin: 0 0 26px 0;
}

.certification-apart-subtitle {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  margin: 0 0 18px 0;
}

.certification-apart-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px 0;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.certification-apart-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
}

.cert-check-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.cert-check-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.cert-list-text {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 29px;
  color: #000000;
}

.certification-apart-footer {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  margin: 0 0 30px 0;
  max-width: 494px;
}

.btn-certification-enroll {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 9.72px 11.47px 8.77px;
  gap: 6.74px;
  width: 255.6px;
  height: 58px;
  background: linear-gradient(90deg, #1acfff 0%, #0076ff 100%);
  border-radius: 67.44px;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin-left: 98px;
}

.btn-certification-enroll:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26, 207, 255, 0.4);
}

.btn-certification-text {
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: 32.37px;
  line-height: 40px;
  text-align: center;
  background: linear-gradient(91.52deg, #ffffff -1.64%, #eeeeee 133.11%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.certification-apart-image {
  flex-shrink: 0;
  max-width: 724px;
}

.certification-apart-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 9px solid #000000;
  border-radius: 8px;
  box-sizing: border-box;
}

body.dark-mode .certification-apart-card {
  background: #ffffff;
  box-shadow: 0px 4px 27.6px 3px rgba(8, 164, 255, 0.25);
}

body.dark-mode .certification-apart-title {
  color: #000000;
}

body.dark-mode .certification-apart-subtitle {
  color: #000000;
}

body.dark-mode .cert-list-text {
  color: #000000;
}

body.dark-mode .certification-apart-footer {
  color: #000000;
}

body.dark-mode .certification-apart-image img {
  border-color: #000000;
}

@media (max-width: 1400px) {
  .certification-apart-card {
    padding: 60px 50px;
    gap: 30px;
  }

  .certification-apart-image {
    max-width: 550px;
  }

  .certification-apart-title {
    font-size: 28px;
  }

  .certification-apart-subtitle,
  .cert-list-text,
  .certification-apart-footer {
    font-size: 18px;
  }

  .btn-certification-enroll {
    margin-left: 60px;
  }
}

@media (max-width: 1200px) {
  .certification-apart-card {
    flex-direction: column;
    align-items: center;
    padding: 50px 40px;
    gap: 40px;
  }

  .certification-apart-content {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .certification-apart-list li {
    justify-content: flex-start;
    text-align: left;
  }

  .certification-apart-footer {
    max-width: 100%;
    text-align: center;
  }

  .btn-certification-enroll {
    margin-left: 0;
  }

  .certification-apart-image {
    max-width: 600px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .certification-apart-section {
    padding: 60px 5vw;
  }

  .certification-apart-card {
    padding: 40px 30px;
    gap: 30px;
    border-radius: 24px;
    min-height: auto;
  }

  .certification-apart-title {
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 16px;
  }

  .certification-apart-subtitle {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 16px;
  }

  .cert-list-text {
    font-size: 16px;
    line-height: 24px;
  }

  .certification-apart-list {
    gap: 14px;
    margin-bottom: 20px;
  }

  .certification-apart-footer {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 24px;
  }

  .btn-certification-enroll {
    width: 220px;
    height: 50px;
    padding: 8px 16px;
  }

  .btn-certification-text {
    font-size: 24px;
    line-height: 32px;
  }

  .certification-apart-image {
    max-width: 100%;
  }

  .certification-apart-image img {
    border-width: 6px;
  }
}

@media (max-width: 480px) {
  .certification-apart-section {
    padding: 0;
  }

  .certification-apart-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    border-radius: 0px;
    gap: 16px;
    min-height: auto;
  }

  .certification-apart-image {
    order: 1;
    width: 100%;
    max-width: 250px;
    margin: 0 auto 8px auto;
  }

  .certification-apart-image img {
    border-width: 4px;
    border-radius: 4px;
  }

  .certification-apart-content {
    order: 2;
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .certification-apart-title {
    font-size: 25px;
    line-height: 130%;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
  }

  .certification-apart-subtitle {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 12px;
    text-align: left;
  }

  .certification-apart-list {
    gap: 10px;
    margin-bottom: 16px;
  }

  .certification-apart-list li {
    gap: 10px;
    align-items: flex-start;
    text-align: left;
    justify-content: flex-start;
  }

  .cert-list-text {
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
  }

  .cert-check-icon {
    width: 16px;
    height: 16px;
    margin-top: 2px;
  }

  .cert-check-icon img {
    width: 16px;
    height: 16px;
  }

  .certification-apart-footer {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
    padding: 0 20px;
    text-align: center;
    max-width: 100%;
  }

  .btn-certification-enroll {
    width: 160px;
    height: 42px;
    margin: 0 auto;
    padding: 8px 12px;
  }

  .btn-certification-text {
    font-size: 18px;
    line-height: 24px;
  }
}

.roles-expect-section {
  width: 100%;
  padding: 80px 8vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-body);
}

body.dark-mode .roles-expect-section {
  background: #000000;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.roles-expect-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.roles-expect-title {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  color: var(--text-main);
  max-width: 1000px;
}

.roles-highlight {
  color: #08a4ff;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.role-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  border: 1px solid var(--text-main);
  border-radius: 15px;
  background: transparent;
  min-height: 350px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.role-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 30px rgba(8, 164, 255, 0.15);
}

.role-icon {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.role-icon img {
  width: 100%;
  height: 100%;
  object-fit: fit;
}

.role-img-light {
  display: block;
}

.role-img-dark {
  display: none;
}

body.dark-mode .role-img-light {
  display: none;
}

body.dark-mode .role-img-dark {
  display: block;
}

.role-divider {
  width: 90%;
  height: 0;
  border: 1px solid var(--text-main);
  margin-bottom: 20px;
}

.role-title {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  text-align: center;
  color: var(--text-main);
  margin-bottom: 10px;
}

.role-salary {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: var(--text-main);
  opacity: 0.8;
}

.role-salary-highlight {
  color: #08a4ff;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .roles-expect-title {
    font-size: 40px;
    line-height: 50px;
  }

  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .role-card {
    min-height: 320px;
  }

  .role-icon {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .roles-expect-section {
    padding: 60px 5vw;
  }

  .roles-expect-title {
    font-size: 32px;
    line-height: 40px;
  }

  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .role-card {
    padding: 25px 15px;
    min-height: 300px;
  }

  .role-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }

  .role-title {
    font-size: 18px;
    line-height: 24px;
  }

  .role-salary {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 480px) {
  .roles-expect-section {
    padding: 50px 4vw;
  }

  .roles-expect-container {
    gap: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .roles-expect-title {
    font-size: 28px;
    line-height: 34px;
    text-align: center;
  }

  .roles-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: center;
    gap: 55px 74px;
    width: 100%;
    max-width: 341px;
  }

  .role-card {
    box-sizing: border-box;
    width: 341px;
    max-width: 100%;
    min-height: 359px;
    padding: 0;
    border: 1px solid var(--text-main);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
  }

  .role-icon {
    width: 150px;
    height: 150px;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .role-divider {
    width: 269px;
    max-width: 80%;
    border: 1px solid var(--text-main);
    margin-bottom: 15px;
  }

  .role-title {
    font-family: "Neue Montreal", "Lexend", sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 29px;
    text-align: center;
    color: var(--text-main);
    padding: 0 15px;
    margin-bottom: 10px;
  }

  .role-salary {
    font-family: "Neue Montreal", "Lexend", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: var(--text-main);
    padding: 0 15px;
    margin-bottom: 20px;
  }

  .role-salary-highlight {
    color: #08a4ff;
  }
}

.pricing-plan-section {
  width: 100%;
  padding: 80px 8vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-body);
  background-image:
    linear-gradient(rgba(8, 164, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 164, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  position: relative;
}

.pricing-plan-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.pricing-plan-title {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 70px;
  line-height: 84px;
  text-align: center;
  color: var(--text-main);
}

.pricing-cards-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  width: 100%;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
  border-radius: 26px;
  width: 320px;
  min-height: 700px;
  backdrop-filter: blur(17.5px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card-featured {
  background: linear-gradient(180deg, #351bc9 0%, #141c86 100%);
  box-shadow: 4.42px 4.42px 48px rgba(8, 164, 255, 0.4);
}

.pricing-card-light {
  background: rgba(8, 164, 255, 0.23);
  box-shadow: 4.42px 4.42px 48px rgba(8, 164, 255, 0.4);
}

.pricing-card-standard {
  background: #ffffff;
  box-shadow: 4.42px 4.42px 48px rgba(8, 164, 255, 0.4);
}

body.dark-mode .pricing-card-light {
  background: rgb(181, 238, 255);
}

body.dark-mode .pricing-card-standard {
  background: rgba(255, 255, 255, 0.95);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  left: 30px;
  padding: 6px 16px;
  border-radius: 13.5px;
  font-family: "Poppins", "Lexend", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 10px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0.83px;
  text-transform: uppercase;
}

.pricing-badge-white {
  background: #ffffff;
  color: #5c92ff;
}

.pricing-badge-blue {
  background: linear-gradient(90deg, #1acfff 0%, #0076ff 100%);
  color: #ffffff;
}

.pricing-price {
  font-family: "Poppins", "Lexend", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 46px;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 10px;
}

.pricing-price-dark {
  color: #231d4f;
}

.pricing-card-title {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 37px;
  color: #ffffff;
  margin-bottom: 10px;
}

.pricing-title-dark {
  color: #231d4f;
}

.pricing-card-subtitle {
  font-family: "Poppins", "Lexend", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 23px;
  color: #ffffff;
  margin-bottom: 25px;
  min-height: 46px;
}

.pricing-subtitle-dark {
  color: #000000;
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
  flex-grow: 1;
}

.pricing-feature {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.feature-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.feature-check-white {
  background: rgba(255, 255, 255, 0.1);
  position: relative;
}

.feature-check-white::after {
  content: "✓";
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
}

.feature-check-blue {
  background: rgba(8, 164, 255, 0.19);
  position: relative;
}

.feature-check-blue::after {
  content: "✓";
  color: #08a4ff;
  font-size: 12px;
  font-weight: bold;
}

.feature-x {
  background: rgba(8, 164, 255, 0.19);
  position: relative;
}

.feature-x::after {
  content: "✕";
  color: #ce3e3e;
  font-size: 12px;
  font-weight: bold;
}

.feature-text {
  font-family: "Poppins", "Lexend", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 23px;
  color: #ffffff;
}

.feature-text-dark {
  color: #000000;
}

.pricing-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  background: linear-gradient(90deg, #1acfff 0%, #0076ff 100%);
  border-radius: 24px;
  font-family: "Poppins", "Lexend", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 23px;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 15px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 20px rgba(8, 164, 255, 0.35);
}

.pricing-refund {
  font-family: "Poppins", "Lexend", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14.7px;
  line-height: 22px;
  text-align: center;
  color: #ffffff;
}

.pricing-refund-dark {
  color: #000000;
}

.refund-highlight {
  color: black;
}

@media (max-width: 1200px) {
  .pricing-cards-wrapper {
    flex-wrap: wrap;
    gap: 25px;
  }

  .pricing-card {
    width: 300px;
    padding: 35px 25px;
  }
}

@media (max-width: 1024px) {
  .pricing-plan-title {
    font-size: 50px;
    line-height: 60px;
  }

  .pricing-cards-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 400px;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .pricing-plan-section {
    padding: 60px 5vw;
  }

  .pricing-plan-title {
    font-size: 40px;
    line-height: 50px;
  }

  .pricing-plan-container {
    gap: 40px;
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .pricing-price {
    font-size: 32px;
    line-height: 40px;
  }

  .pricing-card-title {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (max-width: 480px) {
  .pricing-plan-section {
    padding: 50px 4vw;
  }

  .pricing-plan-title {
    font-size: 32px;
    line-height: 40px;
  }

  .pricing-card {
    padding: 25px 18px;
    border-radius: 20px;
  }

  .pricing-badge {
    font-size: 9px;
    padding: 5px 12px;
  }

  .pricing-price {
    font-size: 28px;
    line-height: 36px;
  }

  .pricing-card-title {
    font-size: 22px;
    line-height: 28px;
  }

  .pricing-card-subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  .feature-text {
    font-size: 14px;
    line-height: 20px;
  }

  .pricing-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    height: auto !important;
    min-height: auto !important;
    padding-bottom: 30px !important;
  }

  .hero-content {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 0 20px !important;
    gap: 24px !important;
    justify-content: flex-start !important;
  }

  .text-col,
  .video-col,
  .video-col-mobile {
    display: contents !important;
  }

  .hero-title {
    order: 1 !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 38px !important;
    line-height: 45px !important;
    margin-bottom: 0 !important;
  }

  .video-card-wrapper {
    order: 2 !important;
    width: 100% !important;
    max-width: 345px !important;
    margin: 0 auto !important;
  }

  .hero-desc {
    order: 3 !important;
    width: 100% !important;
    text-align: left !important;
    font-size: 17px !important;
    line-height: 20px !important;
  }

  .hero-span {
    order: 4 !important;
    width: 100% !important;
    text-align: left !important;
    font-size: 17px !important;
    line-height: 20px !important;
    margin-top: 0 !important;
  }

  .btn-hero {
    order: 5 !important;
    width: 100% !important;
    max-width: 256px !important;
    margin-top: 10px !important;
  }

  .video-card {
    width: 100% !important;
    max-width: 345px !important;
    height: auto !important;
    aspect-ratio: 590/345 !important;
  }

  .video-col {
    width: auto !important;
  }
}

.mobile-video-only {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile-video-only {
    display: block !important;
    width: 100% !important;
    max-width: 345px !important;
    margin: 20px auto !important;
    order: 5 !important;
  }

  .desktop-video-only {
    display: none !important;
  }

  .video-col,
  .video-col-mobile {
    display: none !important;
  }

  .hero-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    height: auto !important;
    min-height: auto !important;
    padding-bottom: 30px !important;
  }

  .hero-content {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 0 20px !important;
    gap: 24px !important;
  }

  .text-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    width: 100% !important;
    align-items: center !important;
  }

  .hero-title {
    width: 100% !important;
    text-align: left !important;
    font-size: 45px !important;
    line-height: 45px !important;
  }

  .hero-desc,
  .hero-span {
    text-align: left !important;
    width: 100% !important;
  }

  .btn-hero {
    margin-top: 10px !important;
  }
}

.crop-proof img {
  object-fit: cover;
  object-position: 65% 50%;
  transform: scale(1.3);
  transform-origin: 85% 20%;
}

.blur-on-gif-result,
.blur-on-image-result {
  position: absolute;
  left: 0;
  top: 0;
  width: 32%;
  height: 100%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2;
  pointer-events: none;
}

.proof-card-metrics {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 14px;
  width: 350px;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (max-width: 1200px) {
  .proof-card {
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 30px;
    text-align: center;
  }

  .proof-card-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    aspect-ratio: 801/397;
  }

  .proof-card-metrics {
    width: 100%;
    align-items: center;
  }

  .metric-item {
    align-items: center;
  }
}

.site-footer {
  width: 100%;
  background: var(--bg-body);
  padding: 60px 8vw 100px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 300px;
}

.footer-logo {
  height: 60px;
  scale: 3.5;
  width: auto;
  object-fit: contain;
}

.footer-logo.logo-light {
  display: block;
}

.footer-logo.logo-dark {
  display: none;
}

body.dark-mode .footer-logo.logo-light {
  display: none;
}

body.dark-mode .footer-logo.logo-dark {
  display: block;
}

.footer-tagline {
  font-family: "Lexend", sans-serif;
  font-size: 14px;
  color: var(--text-main);
  opacity: 0.8;
  margin-top: 30px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links-title,
.footer-contact-title {
  font-family: "Lexend", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list li a {
  font-family: "Lexend", sans-serif;
  font-size: 16px;
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-list li a:hover {
  color: #08a4ff;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-phone,
.footer-contact-email {
  font-family: "Lexend", sans-serif;
  font-size: 14px;
  color: var(--text-main);
}

.footer-contact-email a {
  color: #08a4ff;
  text-decoration: none;
}

.footer-contact-email a:hover {
  text-decoration: underline;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(8, 164, 255, 0.2);
  text-align: center;
}

.footer-bottom p {
  font-family: "Lexend", sans-serif;
  font-size: 14px;
  color: var(--text-main);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 5vw 20px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-links-list {
    align-items: center;
  }

  .footer-contact {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 30px 5vw 100px;
  }

  .footer-logo {
    height: 50px;
  }

  .footer-links-title,
  .footer-contact-title {
    font-size: 16px;
  }

  .footer-links-list li a {
    font-size: 14px;
  }

  .footer-bottom {
    margin-top: 25px;
  }
}

.footer-section {
  display: none;
}
