.landing-prefooter {
  position: relative;
  height: 600px;
  background-color: var(--color-indigo-base);
  background-size: cover;
  background-position: center 70%;
  background-repeat: no-repeat;
  overflow: hidden;
  margin-top: 80px;
}

.landing-prefooter__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0));
  z-index: 0;
}

@media (max-width: 767px) {
  .landing-prefooter {
    height: 400px;
    margin-top: 56px;
  }

  .landing-prefooter__container {
    padding: 40px 20px;
  }

  .landing-prefooter__left {
    gap: 16px;
  }

  .landing-prefooter__headline {
    font-size: 28px;
  }
}

@media (min-width: 768px) {
  .landing-prefooter {
    height: 500px;
  }
}

.landing-prefooter__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.landing-prefooter__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
  z-index: 1;
}

.landing-prefooter__headline {
  font-family: var(--font-family-regular);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2;
  color: white;
  margin: 0;
}

@media (min-width: 768px) {
  .landing-prefooter__headline {
    font-size: 48px;
  }
}

.landing-prefooter__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--color-indigo-base);
  color: var(--color-white);
  padding: 0 20px;
  border-radius: 99px;
  text-decoration: none;
  font-family: var(--font-family-regular);
  font-size: 15px;
  font-weight: 500;
  height: 44px;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(10, 122, 214, 0.25);
  width: fit-content;
}

.landing-prefooter__cta:hover {
  background: var(--color-indigo-dark);
  transform: translateY(-1px);
}

.landing-prefooter__phone {
  position: absolute;
  bottom: -80px;
  right: 20px;
  width: 250px;
  height: 400px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 32px;
  opacity: 0.6;
  z-index: 0;
}

@media (min-width: 768px) {
  .landing-prefooter__phone {
    width: 300px;
    height: 500px;
    bottom: -120px;
    right: 60px;
  }
}

.landing-footer {
  background: var(--color-white);
  border-radius: 48px 48px 0 0;
  margin-top: -60px;
  position: relative;
  z-index: 2;
  padding: 40px 0 0;
  overflow: hidden;
}

.landing-footer__container {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px 40px;
}

.landing-footer__header {
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

@media (min-width: 768px) {
  .landing-footer__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 120px;
  }
}

.landing-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.landing-footer__logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.landing-footer__logo-text {
  font-family: var(--font-family-bold);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-indigo-darker);
}

.landing-footer__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .landing-footer__content-wrapper {
    flex-direction: row;
    gap: 64px;
  }
}

.landing-footer__action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .landing-footer__action-grid {
    position: absolute;
    top: -60px;
    right: 0;
    width: 400px;
    transform: translateY(0);
    margin-top: 0;
  }
}

.landing-footer__action-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  aspect-ratio: 1;
  position: relative;
}

@media (min-width: 768px) {
  .landing-footer__action-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
}

.landing-footer__action-card:hover {
  transform: translateY(-2px);
}

.landing-footer__action-card--dark {
  background: var(--color-indigo-base);
  color: white;
}

.landing-footer__action-card--dark:hover {
  background: var(--color-indigo-dark);
  box-shadow: 0 8px 24px rgba(10, 122, 214, 0.25);
}

.landing-footer__action-card--beige {
  background: var(--color-indigo-darker);
  color: white;
}

.landing-footer__action-card--beige:hover {
  box-shadow: 0 8px 24px rgba(8, 48, 107, 0.4);
}

.landing-footer__action-arrow-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
}

.landing-footer__action-arrow {
  opacity: 0.9;
}

.landing-footer__action-text {
  font-family: var(--font-family-semibold);
  font-size: 15px;
  line-height: 1.2;
  margin-top: auto;
}

@media (min-width: 768px) {
  .landing-footer__action-text {
    font-size: 16px;
  }
}

.landing-footer__links-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  flex: 1;
}

@media (min-width: 640px) {
  .landing-footer__links-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .landing-footer__links-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

.landing-footer__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landing-footer__heading {
  font-family: var(--font-family-semibold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--color-gray-base);
  margin: 0;
  text-transform: uppercase;
}

.landing-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landing-footer__links li {
  margin: 0;
}

.landing-footer__links a {
  font-family: var(--font-family-regular);
  font-size: 15px;
  line-height: 1.4;
  color: var(--color-gray-darker);
  text-decoration: none;
  transition: color 0.2s ease;
}

.landing-footer__links a:hover {
  color: var(--color-primary-base);
}

.landing-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 20px;
  background: transparent;
  width: 100%;
  border-top: 1px solid var(--color-gray-lighter);
  margin-top: 40px;
}

.landing-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .landing-footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.landing-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.landing-footer__legal a {
  font-family: var(--font-family-regular);
  font-size: 11px;
  color: var(--color-gray-base);
  text-decoration: none;
  transition: color 0.2s ease;
}

.landing-footer__legal a:hover {
  color: var(--color-primary-base);
}

.landing-footer__copyright {
  font-family: var(--font-family-regular);
  font-size: 11px;
  color: var(--color-gray-base);
  margin: 0;
}

@media (min-width: 768px) {
  .landing-footer {
    margin-top: -80px;
    padding: 80px 40px 60px;
  }
}


