.landing-page {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  background-color: #ffffff;
  overflow-x: hidden;
  padding-top: 93px; /* Match your header min-height */
}

.landing-page .header-responsive {
  display: flex;
  flex-direction: column;
  min-height: 93px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  align-self: stretch;
  width: 100%;
  background-color: #2c3e50;
  overflow: visible;
}

.landing-page .mobile-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.landing-page .mobile-dropdown.show {
  display: block;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.landing-page .mobile-menu-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.landing-page .mobile-menu-item {
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.landing-page .mobile-menu-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.landing-page .mobile-menu-item a {
  color: #f5f5f5;
  text-decoration: none;
  font-family: var(--paragraph-medium-20px-font-family);
  font-weight: var(--paragraph-medium-20px-font-weight);
  font-size: var(--paragraph-medium-20px-font-size);
  transition: color 0.3s ease;
}

.landing-page .mobile-menu-item a:hover {
  color: #ffffff;
}

.landing-page .mobile-register-button {
  background-color: #d01012;
  padding: 12px 24px;
  border-radius: 5px;
  margin-top: 10px;
}

.landing-page .mobile-register-button a {
  color: #ffffff !important;
  font-weight: 500;
}


.landing-page .header-contnet {
  max-width: 1152px;
  width: 100%;
  display: flex;
  height: 83px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 16px;
}

@media (min-width: 962px) {
  .landing-page .header-contnet {
    display: none;
  }
}

.landing-page .logo-no-background {
  position: relative;
  width: 107px;
  height: 81px;
  background-image: url('../assets/images/logo_B_nobackground.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.landing-page .menu-items {
  display: flex;
  width: 929px;
  height: 77px;
  align-items: center;
  justify-content: flex-end;
  gap: 75px;
  position: relative;
}

.landing-page .hamburger-menu-item {
  display: flex;
  flex-direction: column;
  width: 52.5px;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.landing-page .hamburger-menu-item:hover {
  opacity: 0.8;
}

.landing-page .div {
  position: relative;
  width: 52px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 7px;
  transition: all 0.3s ease;
}

.landing-page .hamburger-menu-item.active .div:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.landing-page .hamburger-menu-item.active .div:nth-child(2) {
  opacity: 0;
}

.landing-page .hamburger-menu-item.active .div:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.landing-page .header-contnet-2 {
  max-width: 1152px;
  width: 100%;
  display: flex;
  height: 83px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 16px;
}

@media (max-width: 961px) {
  .landing-page .header-contnet-2 {
    display: none;
  }
}

.landing-page .menu-item {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  position: relative;
  flex: 0 0 auto;
}

.landing-page .text-wrapper {
  position: relative;
  width: 119px;
  margin-top: -1.00px;
  font-family: var(--paragraph-medium-20px-font-family);
  font-weight: var(--paragraph-medium-20px-font-weight);
  color: #f5f5f5;
  font-size: var(--paragraph-medium-20px-font-size);
  text-align: center;
  letter-spacing: var(--paragraph-medium-20px-letter-spacing);
  line-height: var(--paragraph-medium-20px-line-height);
  font-style: var(--paragraph-medium-20px-font-style);
  text-decoration: none;
  transition: color 0.3s ease;
}

.landing-page .text-wrapper:hover {
  color: #ffffff;
}

.landing-page .menu-item-wrapper {
  display: flex;
  width: 98px;
  align-items: flex-start;
  padding: 10px;
  position: relative;
  background-color: #d01012;
  border-radius: 5px;
}

.landing-page .menu-item-2 {
  position: relative;
  flex: 1;
  margin-top: -1.00px;
  font-family: "Quicksand", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.landing-page .menu-item-2:hover {
  opacity: 0.8;
}

.landing-page .title-area {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding: 40px 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #2c3e50;
}

.landing-page .title-area-container {
  flex-wrap: wrap;
  max-width: 1152px;
  justify-content: center;
  gap: 40px;
  padding: 0px 16px;
  display: flex;
  align-items: center;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .landing-page .title-area-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}

.landing-page .title-area-content {
  flex-direction: column;
  min-width: 300px;
  gap: 24px;
  display: flex;
  align-items: flex-start;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .landing-page .title-area-content {
    min-width: 100%;
    align-items: center;
    text-align: center;
  }
}

.landing-page .heading {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Quicksand", Helvetica;
  font-weight: 700;
  color: var(--white-00);
  font-size: 48px;
  letter-spacing: 0;
  line-height: normal;
}

@media (max-width: 768px) {
  .landing-page .heading {
    font-size: 36px;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .landing-page .heading {
    font-size: 28px;
  }
}

.landing-page .paragraph-text {
  position: relative;
  align-self: stretch;
  opacity: 0.5;
  font-family: var(--paragraph-regular-20px-font-family);
  font-weight: var(--paragraph-regular-20px-font-weight);
  color: var(--white-00);
  font-size: var(--paragraph-regular-20px-font-size);
  letter-spacing: var(--paragraph-regular-20px-letter-spacing);
  line-height: var(--paragraph-regular-20px-line-height);
  font-style: var(--paragraph-regular-20px-font-style);
}

.landing-page .longer-button {
  display: flex;
  width: 270px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  position: relative;
  flex: 0 0 auto;
  background-color: var(--clikd-logoswitch-red);
  border-radius: 5px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

@media (max-width: 480px) {
  .landing-page .longer-button {
    width: 100%;
    max-width: 270px;
  }
}

.landing-page .longer-button:hover {
  opacity: 0.9;
}

.landing-page .button-text {
  position: relative;
  width: 304px;
  margin-top: -1.00px;
  margin-left: -27.00px;
  margin-right: -27.00px;
  font-family: var(--bold-14px-font-family);
  font-weight: var(--bold-14px-font-weight);
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  letter-spacing: var(--bold-14px-letter-spacing);
  line-height: var(--bold-14px-line-height);
  font-style: var(--bold-14px-font-style);
}

.landing-page .group {
  position: relative;
  max-width: 466px;
  width: 100%;
  max-height: 369.48px;
  height: auto;
  margin-top: -2.38px;
  aspect-ratio: 1.26;
}

@media (max-width: 768px) {
  .landing-page .group {
    max-width: 350px;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .landing-page .group {
    max-width: 280px;
  }
}

.landing-page .overlap-group {
  position: relative;
  width: 100%;
  height: 100%;
}

.landing-page .img {
  position: absolute;
  width: 31%;
  height: 45%;
  top: 55%;
  left: 69%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .landing-page .img {
    width: 35%;
    height: 40%;
    top: 60%;
    left: 65%;
  }
}

@media (max-width: 480px) {
  .landing-page .img {
    width: 40%;
    height: 35%;
    top: 65%;
    left: 60%;
  }
}

.landing-page .image {
  position: absolute;
  width: 96%;
  height: 93%;
  top: 3%;
  left: 0;
  /* background-image: url('https://c.animaapp.com/gdzpS8uZ/img/pxl_20250803_183656274-mp.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
}

.landing-page .image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.landing-page .spark-half {
  position: absolute;
  width: 21.375%;
  height: 21.375%;
  top: 1%;
  right: 0%;
  transform: rotate(-172.99deg);
}

@media (max-width: 768px) {
  .landing-page .spark-half {
    width: 27%;
    height: 27%;
    top: 2%;
    right: 2%;
  }
}

@media (max-width: 480px) {
  .landing-page .spark-half {
    width: 33.75%;
    height: 33.75%;
    top: 3%;
    right: 3%;
  }
}

.landing-page .group-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: rotate(180deg);
  object-fit: contain;
}

.landing-page .program {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.landing-page .feature-section {
  display: flex;
  flex-direction: column;
  max-width: 1152px;
  align-items: center;
  gap: 169px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.landing-page .frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.landing-page .text-wrapper-2 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--heading-4-font-family);
  font-weight: var(--heading-4-font-weight);
  color: var(--blue-1000);
  font-size: calc(var(--heading-4-font-size) * 0.8);
  text-align: center;
  letter-spacing: var(--heading-4-letter-spacing);
  line-height: var(--heading-4-line-height);
  font-style: var(--heading-4-font-style);
}

.landing-page .heading-text {
  opacity: 1;
  font-size: var(--paragraph-regular-20px-font-size);
  line-height: var(--paragraph-regular-20px-line-height);
  position: relative;
  align-self: stretch;
  font-family: var(--paragraph-regular-20px-font-family);
  font-weight: var(--paragraph-regular-20px-font-weight);
  color: var(--blue-1000);
  text-align: center;
  letter-spacing: var(--paragraph-regular-20px-letter-spacing);
  font-style: var(--paragraph-regular-20px-font-style);
}

.landing-page .feature-cards {
  display: flex;
  flex-wrap: wrap;
  min-width: 270px;
  max-width: 1152px;
  align-items: flex-start;
  justify-content: center;
  gap: 116px 13px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.landing-page .feature-card {
  display: inline-flex;
  flex-direction: column;
  min-width: 320px;
  max-width: 320px;
  height: 389px;
  align-items: center;
  gap: 11px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -5.00px;
  margin-bottom: -5.00px;
  border-radius: 10px;
  background-color: var(--white-00);
  border: 5px solid #e74c3c;
}

.landing-page .feature-card-2 {
  display: flex;
  justify-content: center;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.landing-page .feature-pic {
  position: relative;
  width: 310px;
  height: 202px;
  border-radius: 5px 5px 0px 0px;
  border: 0px none;
  /* background-image: url('https://c.animaapp.com/gdzpS8uZ/img/pxl_20250803_183656274-mp.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
}

.landing-page .feature-pic video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px 5px 0px 0px;
}

.landing-page .feature-card-wrapper .feature-pic {
  background-image: url('../assets/images/unearth\ engineering\ notebook.png');
}

.landing-page .no-code-robotics {
  position: relative;
  width: 295px;
  height: 164px;
  font-family: "Quicksand", Helvetica;
  font-weight: 500;
  color: var(--primary-1000);
  font-size: 20px;
  text-align: center;
  letter-spacing: -0.32px;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 5px 0;
}

.landing-page .span {
  letter-spacing: -0.32px;
  line-height: 24px;
}

.landing-page .text-wrapper-3 {
  letter-spacing: -0.32px;
  line-height: 24px;
}

.landing-page .bricks {
  position: absolute;
  width: 320px;
  height: 116px;
  top: -98px;
  left: 0px;
}

.landing-page .overlap-group-wrapper {
  position: relative;
  width: 320px;
  height: 70px;
  top: 23px;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing-page .overlap-group-2 {
  position: relative;
  width: 161px;
  height: 70px;
  left: -1px;
}

.landing-page .vector {
  position: absolute;
  width: 159px;
  height: 70px;
  top: 0;
  left: 1px;
}

.landing-page .feature-headline {
  position: absolute;
  width: 159px;
  height: 60px;
  top: 9px;
  left: 0;
  font-family: var(--bold-20px-font-family);
  font-weight: var(--bold-20px-font-weight);
  color: var(--white-00);
  font-size: var(--bold-20px-font-size);
  text-align: center;
  letter-spacing: var(--bold-20px-letter-spacing);
  line-height: var(--bold-20px-line-height);
  font-style: var(--bold-20px-font-style);
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-page .feature-card-wrapper {
  display: inline-flex;
  min-width: 320px;
  max-width: 320px;
  height: 389px;
  gap: 11px;
  flex: 0 0 auto;
  margin-top: -5.00px;
  margin-bottom: -5.00px;
  background-color: var(--white-00);
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 5px solid #f1c40f;
}

.landing-page .p {
  position: relative;
  width: 295px;
  height: 164px;
  font-family: "Quicksand", Helvetica;
  font-weight: 500;
  color: var(--primary-1000);
  font-size: 20px;
  text-align: center;
  letter-spacing: -0.32px;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 5px 0;
}

.landing-page .div-wrapper {
  display: inline-flex;
  min-width: 320px;
  max-width: 320px;
  height: 389px;
  gap: 11px;
  flex: 0 0 auto;
  margin-top: -5.00px;
  margin-bottom: -5.00px;
  background-color: var(--white-00);
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 5px solid #27ae60;
}

.landing-page .feature-pic-2 {
  position: relative;
  width: 310px;
  height: 202px;
  object-fit: cover;
  border-radius: 5px 5px 0px 0px;
}

.landing-page .group-3 {
  position: relative;
  width: 320px;
  height: 69px;
  top: 23px;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing-page .overlap-group-3 {
  position: relative;
  width: 160px;
  height: 69px;
  left: -1px;
}

.landing-page .vector-2 {
  position: absolute;
  width: 159px;
  height: 69px;
  top: 0;
  left: 1px;
}

.landing-page .feature-headline-2 {
  width: 159px;
  height: 58px;
  top: 10px;
  position: absolute;
  left: 0;
  font-family: var(--bold-20px-font-family);
  font-weight: var(--bold-20px-font-weight);
  color: var(--white-00);
  font-size: var(--bold-20px-font-size);
  text-align: center;
  letter-spacing: var(--bold-20px-letter-spacing);
  line-height: var(--bold-20px-line-height);
  font-style: var(--bold-20px-font-style);
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-page .feature-card-3 {
  display: flex;
  min-width: 320px;
  max-width: 320px;
  height: 389px;
  gap: 11px;
  flex: 1;
  flex-grow: 1;
  margin-top: -5.00px;
  margin-bottom: -5.00px;
  background-color: var(--white-00);
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 5px solid #3498db;
}

.landing-page .vector-3 {
  position: absolute;
  width: 160px;
  height: 70px;
  top: 0;
  left: 1px;
}

.landing-page .feature-headline-3 {
  width: 160px;
  height: 60px;
  top: 9px;
  position: absolute;
  left: 0;
  font-family: var(--bold-20px-font-family);
  font-weight: var(--bold-20px-font-weight);
  color: var(--white-00);
  font-size: var(--bold-20px-font-size);
  text-align: center;
  letter-spacing: var(--bold-20px-letter-spacing);
  line-height: var(--bold-20px-line-height);
  font-style: var(--bold-20px-font-style);
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-page .FA-qs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 40px 0px 50px;
  position: relative;
  /* Add a minimum height to establish the background area */
  min-height: 600px; /* Adjust as needed */
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.landing-page .FA-qs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh; /* Fixed height based on viewport */
  background-image: url(../assets/images/legosketch_backdrop.png);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Keeps background fixed to viewport */
  opacity: 0.05; /* Try 30% first to see if it shows */
  z-index: 0; /* Changed from -1 */
  pointer-events: none; /* So it doesn't block clicks */
}

.landing-page .FA-qs > * {
  position: relative;
  z-index: 1; /* Content stays on top */
}

.landing-page .accordion-content {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  align-items: center;
  gap: 50px;
  padding: 0px 16px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.landing-page .accordions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.landing-page .accordion {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid;
  border-color: #00000033;
  transition: background-color 0.3s ease-out;
}

.landing-page .accordion.active {
  background-color: #f8f9fa;
}

.landing-page .accordion-answer {
  width: 100%;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.landing-page .headline-button {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.landing-page .tittle {
  position: relative;
  flex: 1;
  font-family: var(--bold-18px-font-family);
  font-weight: var(--bold-18px-font-weight);
  color: var(--primary-1000);
  font-size: 18px;
  letter-spacing: var(--bold-18px-letter-spacing);
  line-height: var(--bold-18px-line-height);
  font-style: var(--bold-18px-font-style);
}

.landing-page .accordion-button {
  position: relative;
  width: 45px;
  height: 45px;
}

.landing-page .register {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 23px;
  padding: 40px 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-image: url(../assets/images/register.png);
  background-size: cover;
  background-position: 50% 50%;
}

.landing-page .headline-and {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  align-items: center;
  gap: 16px;
  padding: 0px 16px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.landing-page .logo-white-no {
  display: flex;
  flex-direction: column;
  width: 170.62px;
  align-items: flex-start;
  gap: 6.25px;
  padding: 6.25px;
  position: relative;
  flex: 0 0 auto;
}

.landing-page .frame-2 {
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.landing-page .to-start-the {
  position: relative;
  align-self: stretch;
  opacity: 0.9;
  font-family: var(--paragraph-medium-16px-font-family);
  font-weight: var(--paragraph-medium-16px-font-weight);
  color: var(--white-00);
  font-size: 18px;
  text-align: center;
  letter-spacing: var(--paragraph-medium-16px-letter-spacing);
  line-height: var(--paragraph-medium-16px-line-height);
  font-style: var(--paragraph-medium-16px-font-style);
}

.landing-page .about-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0px 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.landing-page .about-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../assets/images/legosketch_backdrop.png);
  background-size: cover;
  background-position: 50% 50%;
  opacity: 0.05; /* 5% opacity */
  z-index: 0;
  pointer-events: none;
}

.landing-page .about-us > * {
  position: relative;
  z-index: 1;
}

.landing-page .horizontal-section {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  align-items: center;
  gap: 23px;
  padding: 0px 16px 10px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.landing-page .lower-frame {
  display: flex;
  flex-direction: column;
  min-height: 442px;
  align-items: center;
  gap: 38px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

@media (max-width: 768px) {
  .landing-page .lower-frame {
    min-height: auto;
    gap: 24px;
  }
}

.landing-page .paragraph-text-2 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--paragraph-medium-20px-font-family);
  font-weight: var(--paragraph-medium-20px-font-weight);
  color: var(--primary-700);
  font-size: 18px;
  text-align: center;
  letter-spacing: var(--paragraph-medium-20px-letter-spacing);
  line-height: var(--paragraph-medium-20px-line-height);
  font-style: var(--paragraph-medium-20px-font-style);
}

.landing-page .image-2 {
  position: relative;
  width: 366px;
  height: 169px;
  object-fit: cover;
  max-width: 100%;
  height: auto;
  min-height: 150px;
  background: transparent;
  mix-blend-mode: multiply;
}

@media (max-width: 768px) {
  .landing-page .image-2 {
    width: 100%;
    max-width: 300px;
    height: auto;
    min-height: 120px;
  }
}

@media (max-width: 480px) {
  .landing-page .image-2 {
    width: 100%;
    max-width: 250px;
    height: auto;
    min-height: 100px;
  }
}

.landing-page .footer-responsive {
  align-items: center;
  gap: 10px;
  padding: 40px 10px;
  align-self: stretch;
  background-color: var(--primary-1000);
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.landing-page .footer-container {
  max-width: 1152px;
  align-items: flex-start;
  gap: 12px;
  padding: 0px 16px;
  opacity: 0.5;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.landing-page .row {
  display: flex;
  flex-wrap: wrap;
  min-width: 74px;
  align-items: center;
  justify-content: center;
  gap: 32px 65px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.landing-page .text-wrapper-4 {
  position: relative;
  width: fit-content;
  font-family: var(--paragraph-regular-20px-font-family);
  font-weight: var(--paragraph-regular-20px-font-weight);
  color: #ffffff;
  font-size: 14px;
  letter-spacing: var(--paragraph-regular-20px-letter-spacing);
  line-height: var(--paragraph-regular-20px-line-height);
  white-space: nowrap;
  font-style: var(--paragraph-regular-20px-font-style);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.landing-page .text-wrapper-4:hover {
  opacity: 0.8;
}

/* .landing-page .untitled-design {
  position: relative;
  width: 20px;
  height: 20px;
  aspect-ratio: 1;
  background-image: url(../assets/images/igwhilte.svg);
  background-size: cover;
  background-position: 50% 50%;
} */

.landing-page .vector-4 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
}

.landing-page .text-wrapper-5 {
  position: relative;
  height: 28px;
  font-family: var(--paragraph-regular-20px-font-family);
  font-weight: var(--paragraph-regular-20px-font-weight);
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  letter-spacing: var(--paragraph-regular-20px-letter-spacing);
  line-height: var(--paragraph-regular-20px-line-height);
  white-space: nowrap;
  font-style: var(--paragraph-regular-20px-font-style);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Safari-specific mobile menu fixes */
.landing-page .hamburger-menu-item {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}

.landing-page .mobile-dropdown {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.landing-page .mobile-dropdown.show {
  -webkit-animation: slideDown 0.3s ease-out;
  animation: slideDown 0.3s ease-out;
}

/* Ensure proper touch targets for Safari */
.landing-page .mobile-menu-item a {
  display: block;
  min-height: 44px; /* Apple's recommended minimum touch target */
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;

}

/* Container for side-by-side buttons */
.landing-page .register-buttons-container {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  justify-content: center;
}

/* Update longer-button for side-by-side layout */
.landing-page .register-buttons-container .longer-button {
  flex: 1;
  max-width: 280px;
  min-width: 200px;
}

/* Different colors for each button */
.landing-page .trial-register {
  background-color: #3498db; /* Blue for trial */
}

.landing-page .fall-register {
  background-color: var(--clikd-logoyellow); /* Keep your existing red */
}

.landing-page .trial-register:hover {
  opacity: 0.9; /* Keep existing hover effect */
}

.landing-page .fall-register:hover {
  opacity: 0.9; /* Keep existing hover effect */
}

/* Mobile responsive - stack vertically on small screens */
@media (max-width: 640px) {
  .landing-page .register-buttons-container {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .landing-page .register-buttons-container .longer-button {
    width: 100%;
    max-width: 320px;
  }
}