:root {
  --alp-red: #D92335;
  --alp-heading: #322F2F;
  --alp-highlight: #FF6275;
  --alp-navy: #1B2A4A;
  --alp-text: #5A5A5A;
  --alp-border: #D0D0D0;
  --alp-white: #FFFFFF;
  --font-nav: "Jacques Francois", Georgia, serif;
  --font-body: "Inter", sans-serif;
  --font-poppins: "Poppins", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--alp-heading);
  background: var(--alp-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

/* Header / Nav */
.alp-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
}

.alp-navbar {
  padding-top: 18px;
  padding-bottom: 10px;
}

.alp-toggler {
  padding: 8px 10px;
  border: 0;
  border-radius: 8px;
  background: #D11F2D;
  box-shadow: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.alp-toggler:hover,
.alp-toggler:focus {
  background: #b01824;
  box-shadow: none;
}

.alp-toggler:focus-visible {
  outline: 2px solid rgba(209, 31, 45, 0.35);
  outline-offset: 2px;
}

.alp-toggler .navbar-toggler-icon {
  width: 1.35rem;
  height: 1.35rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.alp-brand img {
  height: auto;
  width: 185px;
}

.alp-nav .nav-link {
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 16.84px;
  color: #000000 !important;
  padding: 0.45rem 1.05rem !important;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}

.alp-nav .nav-link:hover,
.alp-nav .nav-link.active {
  color: var(--alp-red) !important;
}

.alp-nav .dropdown-toggle::after {
  margin-left: 0.35em;
  vertical-align: 0.15em;
  transition: transform 0.2s ease;
}

.alp-nav .dropdown:hover .dropdown-toggle::after,
.alp-nav .dropdown:focus-within .dropdown-toggle::after {
  transform: rotate(180deg);
}

.alp-dropdown {
  min-width: 230px;
  padding: 10px 8px;
  margin-top: 0;
  border: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(46, 52, 94, 0.16);
}

.alp-dropdown .dropdown-item {
  font-family: var(--font-nav);
  font-size: 15px;
  line-height: 1.3;
  color: #2E345E;
  padding: 10px 16px;
  border-radius: 7px;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease;
}

.alp-dropdown .dropdown-item:hover,
.alp-dropdown .dropdown-item:focus,
.alp-dropdown .dropdown-item.active {
  background: rgba(209, 31, 45, 0.08);
  color: #D11F2D;
}

.alp-dropdown .dropdown-item:hover::before,
.alp-dropdown .dropdown-item.active::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 3px;
  background: #D11F2D;
}

@media (min-width: 992px) {
  .alp-nav .dropdown {
    position: relative;
  }

  .alp-nav .dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
  }

  .alp-dropdown {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .alp-dropdown::before {
    content: "";
    position: absolute;
    top: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(90deg, #D11F2D 0%, #2E345E 100%);
  }

  .alp-nav .dropdown:hover > .alp-dropdown,
  .alp-nav .dropdown:focus-within > .alp-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.alp-offcanvas {
  z-index: 1045;
}

.alp-header__cta {
  align-items: center;
  white-space: nowrap;
  padding: 11px 20px;
  font-size: 14px;
}

@media (min-width: 992px) {
  .alp-navbar .container {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
    align-items: center;
    column-gap: 20px;
  }

  .alp-brand {
    grid-column: 1;
    justify-self: start;
  }

  .alp-offcanvas {
    grid-column: 2;
    justify-self: center;
    flex-grow: 0;
  }

  .alp-header__cta {
    grid-column: 3;
    justify-self: end;
  }

  .alp-nav {
    gap: 4px 8px;
  }
}

/* Hero */
.alp-hero {
  position: relative;
  padding: 230px 0 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--alp-white);
  background-image: url("../images/hero-banner.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.alp-hero__flag {
  position: absolute;
  top: 0;
  left: 0;
  width: min(42%, 520px);
  height: auto;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.alp-hero .container {
  z-index: 2;
}

.alp-hero__content {
  position: relative;
  padding-top: 12px;
  animation: alpFadeUp 0.8s ease both;
}

.alp-hero__accent {
  display: block;
  width: 42px;
  height: 3px;
  background: var(--alp-red);
  margin-bottom: 22px;
  border-radius: 2px;
}

.alp-hero__heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 54.2px;
  line-height: 1.15;
  color: var(--alp-heading);
  margin: 0 0 18px;
  max-width: 560px;
}

.alp-hero__heading span {
  color: var(--alp-highlight);
}

.alp-hero__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14.58px;
  line-height: 1.65;
  color: #322F2F;
  max-width: 480px;
  margin: 0 0 28px;
}

.alp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.alp-btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.14px;
  line-height: 1.2;
  border-radius: 8px;
  padding: 13px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.alp-btn--primary {
  background: var(--alp-red);
  border: 1.5px solid var(--alp-red);
  color: var(--alp-white);
}

.alp-btn--primary:hover {
  background: #c01d2e;
  border-color: #c01d2e;
  color: var(--alp-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 35, 53, 0.28);
}

.alp-btn--outline {
  background: var(--alp-white);
  border: 1.5px solid #9a9a9a;
  color: #1a1a1a;
}

.alp-btn--outline:hover {
  border-color: var(--alp-heading);
  color: var(--alp-heading);
  transform: translateY(-2px);
}

/* Feature row */
.alp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 560px;
  margin-top: 140px;
}

.alp-feature {
  padding: 0 26px;
  border-right: 1px solid #cfcfcf;
}

.alp-feature:first-child {
  padding-left: 0;
}

.alp-feature:last-child {
  border-right: 0;
  padding-right: 0;
}

.alp-feature__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--alp-navy);
  margin: 0 0 6px;
}

.alp-feature__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.45;
  color: var(--alp-navy);
  margin: 0;
  opacity: 0.9;
}

@keyframes alpFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About */
.alp-about {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(98.71deg, #99130F 2.36%, #2E345E 84.63%);
  overflow: hidden;
}

.alp-about__media {
  max-width: 560px;
}

.alp-about__img {
  width: 100%;
  height: auto;
  border-radius: 40px;
  object-fit: cover;
  display: block;
}

.alp-about__content {
  padding-left: 24px;
  max-width: 560px;
}

.alp-about__eyebrow {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 10px;
}

.alp-about__heading {
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 55px;
  line-height: 1.15;
  color: var(--alp-white);
  margin: 0 0 22px;
}

.alp-about__text {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.7;
  color: var(--alp-white);
  margin: 0 0 18px;
}

.alp-about__text:last-child {
  margin-bottom: 0;
}

.alp-about__btn {
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  background: var(--alp-white);
  border: none;
  border-radius: 0;
  padding: 8px 26px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.alp-about__btn:hover {
  background: #f2f2f2;
  color: #000000;
  transform: translateY(-2px);
}

/* Reading Now */
.alp-reading {
  padding: 90px 0;
  background: var(--alp-white);
}

.alp-reading__header {
  max-width: 820px;
  margin: 0 auto 48px;
}

.alp-reading__eyebrow {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D11F2D;
  margin: 0 0 10px;
}

.alp-reading__heading {
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 55px;
  line-height: 1.2;
  color: #2E345E;
  margin: 0 0 18px;
}

.alp-reading__intro {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.65;
  color: #444444;
  margin: 0;
}

.alp-reading__slider {
  overflow: hidden;
  padding-bottom: 4px;
}

.alp-reading__slider .swiper-slide {
  height: auto;
}

.alp-reading__pagination {
  position: static;
  margin-top: 24px;
  display: none;
}

.alp-reading__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #C8CDD8;
  opacity: 1;
}

.alp-reading__pagination .swiper-pagination-bullet-active {
  background: #D11F2D;
}

.alp-reading-card {
  height: 100%;
  max-width: 350px;
  width: 100%;
  margin: 0;
}

@media (min-width: 992px) {
  .alp-reading__slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transform: none !important;
  }

  .alp-reading__slider .swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }

  .alp-reading-card {
    max-width: none;
  }
}

.alp-reading-card__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
}

.alp-reading-card__title {
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: #2E345E;
  margin: 0 0 12px;
}

.alp-reading-card__text {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  margin: 0 0 16px;
}

.alp-reading-card__link {
  display: inline-block;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 16px;
  color: #D11F2D;
  border-bottom: 1px solid #858585;
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.alp-reading-card__link:hover {
  color: #b01824;
  border-color: #b01824;
}

.alp-reading__cta {
  margin-top: 42px;
}

.alp-reading__btn {
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 18px;
  color: #F5F2F2;
  background: linear-gradient(165.8deg, #D11F2D 9.18%, #2E345E 84.19%);
  border: none;
  border-radius: 3px;
  padding: 12px 42px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.alp-reading__btn:hover {
  color: #F5F2F2;
  transform: translateY(-2px);
  opacity: 0.95;
}

/* Our Services */
.alp-services {
  padding: 70px 0 140px;
  background: #F2D7D2;
}

.alp-services__heading {
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 55px;
  line-height: 1.2;
  color: #2E345E;
  text-align: center;
  margin: 0 0 16px;
}

.alp-services__intro {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #2E345E;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
}

.alp-services__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px 35px;
  max-width: 1090px;
  margin: 0 auto 48px;
}

.alp-services__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 20.44px;
  line-height: 1.2;
  color: #373737;
  background: #F6F6F6;
  box-shadow: 0px 5.10968px 5.10968px rgba(0, 0, 0, 0.25);
  border-radius: 6.3871px;
  border: none;
  padding: 12px 40px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.alp-services__pill:hover,
.alp-services__pill.is-active {
  background: #D11F2D;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(209, 31, 45, 0.28);
}

.alp-services__bottom {
  max-width: 1180px;
  margin: 0 auto;
}

.alp-services__slider,
.alp-services__slider .swiper-wrapper,
.alp-services__slider .swiper-slide {
  background: transparent;
}

.alp-services__slider {
  overflow: hidden;
  height: 100%;
}

.alp-services__grid {
  height: 100%;
  box-sizing: border-box;
}

.alp-services__slider .swiper-slide {
  height: auto;
}

.alp-services__pagination {
  position: static;
  margin-top: 20px;
  display: none;
}

.alp-services__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #C8CDD8;
  opacity: 1;
}

.alp-services__pagination .swiper-pagination-bullet-active {
  background: #D11F2D;
}

@media (min-width: 992px) {
  .alp-services__slider {
    overflow: visible;
  }

  .alp-services__slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px 20px;
    height: 100%;
    transform: none !important;
    box-sizing: border-box;
    background: transparent;
  }

  .alp-services__slider .swiper-slide {
    width: auto !important;
    margin: 0 !important;
    height: auto;
    background: transparent;
    overflow: visible;
  }
}

.alp-service-box {
  text-align: center;
  padding: 22px 16px 20px;
  cursor: pointer;
  background: #FCF1ED;
  border-radius: 6.68px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.alp-service-box__icon {
  width: 72px;
  height: 68px;
  object-fit: contain;
  margin: 0 auto 10px;
  transition: transform 0.3s ease;
}

.alp-service-box__title {
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 23.07px;
  line-height: 1.25;
  color: #2E345E;
  margin: 0 0 8px;
  transition: color 0.25s ease;
}

.alp-service-box__text {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 14.32px;
  line-height: 1.45;
  color: #000000;
  margin: 0;
}

.alp-service-box--link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.alp-service-box:hover,
.alp-service-box.is-active {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(46, 52, 94, 0.12);
}

.alp-service-box:hover .alp-service-box__icon,
.alp-service-box.is-active .alp-service-box__icon {
  transform: translateY(-3px) scale(1.06);
}

.alp-service-box:hover .alp-service-box__title,
.alp-service-box.is-active .alp-service-box__title {
  color: #CE0815;
}

.alp-services-page {
  padding: 80px 0;
}

.alp-services-page .alp-service-box {
  cursor: default;
  padding: 28px 18px 24px;
  background: #FCF1ED;
}

.alp-services-page .alp-service-box--link {
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.alp-services-page .alp-service-box--link:hover {
  transform: translateY(-4px);
}

/* Service feature (ghostwriting etc.) */
.alp-service-feature {
  padding: 90px 0;
  background: var(--alp-white);
  overflow: hidden;
}

.alp-service-feature__content {
  max-width: 560px;
  padding-right: 24px;
}

.alp-service-feature__heading {
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 52px;
  line-height: 1.2;
  color: #2E345E;
  margin: 0 0 22px;
}

.alp-service-feature__text {
  font-family: var(--font-poppins);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.7;
  color: #2E345E;
  margin: 0 0 28px;
}

.alp-service-feature__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(165.8deg, #D11F2D 9.18%, #2E345E 84.19%);
  border: 0;
  border-radius: 4px;
  padding: 12px 28px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.alp-service-feature__btn:hover {
  color: #fff;
  opacity: 0.92;
  transform: translateY(-2px);
}

.alp-service-feature__media {
  max-width: 560px;
  margin-left: auto;
}

.alp-service-feature__img {
  width: 100%;
  height: auto;
  border-radius: 40px;
  object-fit: cover;
  display: block;
}

/* More Subjects */
.alp-subjects {
  padding: 40px 0 90px;
  background: var(--alp-white);
}

.alp-subjects__eyebrow {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D11F2D;
  text-align: center;
  margin: 0 0 10px;
}

.alp-subjects__heading {
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 55px;
  line-height: 1.2;
  color: #2E345E;
  text-align: center;
  margin: 0 0 54px;
}

.alp-subjects__slider {
  overflow: hidden;
  padding-bottom: 12px;
  padding-top: 16px;
}

.alp-subjects__slider .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

.alp-subjects__pagination {
  position: static;
  margin-top: 24px;
  display: none;
}

.alp-subjects__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #C8CDD8;
  opacity: 1;
}

.alp-subjects__pagination .swiper-pagination-bullet-active {
  background: #D11F2D;
}

.alp-subjects__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 135px;
  max-width: 100%;
  text-align: center;
  color: #000000;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
  margin: 0 auto;
}

.alp-subjects__item:hover,
.alp-subjects__item:focus-visible {
  transform: translateY(-8px);
  color: #D11F2D;
}

.alp-subjects__icon {
  width: 125px;
  height: 125px;
  margin-bottom: 12px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.alp-subjects__item:hover .alp-subjects__icon,
.alp-subjects__item:focus-visible .alp-subjects__icon {
  transform: scale(1.08);
  box-shadow: 0 12px 24px rgba(209, 31, 45, 0.22);
}

.alp-subjects__name {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.alp-subjects__item:hover .alp-subjects__name,
.alp-subjects__item:focus-visible .alp-subjects__name {
  color: #D11F2D;
}

@media (min-width: 1200px) {
  .alp-subjects__slider {
    overflow: visible;
  }

  .alp-subjects__slider .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    transform: none !important;
  }

  .alp-subjects__slider .swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }
}

/* Our Process */
.alp-process {
  padding: 60px 0 80px;
  background: linear-gradient(98.71deg, #D11F2D 2.36%, #2E345E 84.63%);
  overflow: hidden;
}

.alp-process__eyebrow {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin: 0 0 10px;
}

.alp-process__heading {
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 55px;
  line-height: 1.2;
  color: #FFFFFF;
  text-align: center;
  margin: 0 0 48px;
}

.alp-process__track {
  position: relative;
  padding: 20px 0 10px;
}

.alp-process__line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70%;
  height: auto;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  object-fit: contain;
}

.alp-process__slider {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.alp-process__steps {
  position: relative;
  z-index: 1;
}

.alp-process__slider .swiper-slide {
  height: auto;
}

.alp-process__pagination {
  position: static;
  margin-top: 28px;
  display: none;
}

.alp-process__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.alp-process__pagination .swiper-pagination-bullet-active {
  background: #FFFFFF;
}

.alp-process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  height: 100%;
}

@media (min-width: 992px) {
  .alp-process__slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
    transform: none !important;
  }

  .alp-process__slider .swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }
}

.alp-process__icon {
  width: 137px;
  height: 137px;
  object-fit: contain;
  flex-shrink: 0;
}

.alp-process__copy {
  max-width: 274px;
}

.alp-process__step--high .alp-process__copy {
  margin-top: 18px;
}

.alp-process__step--low .alp-process__copy {
  margin-bottom: 18px;
}

.alp-process__title {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 18.89px;
  line-height: 1.3;
  color: #FFFFFF;
  margin: 0 0 10px;
}

.alp-process__text {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16.19px;
  line-height: 20.23px;
  color: #FFFFFF;
  margin: 0;
}

/* Our Packages */
.alp-packages {
  padding: 90px 0;
  background: var(--alp-white);
}

.alp-packages__header {
  max-width: 880px;
  margin: 0 auto 48px;
}

.alp-packages__eyebrow {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D11F2D;
  margin: 0 0 10px;
}

.alp-packages__heading {
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 52px;
  line-height: 1.2;
  color: #2E345E;
  margin: 0 0 14px;
}

.alp-packages__intro {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.5;
  color: #4B5563;
  margin: 0;
}

.alp-packages__slider {
  overflow: hidden;
  padding: 8px 4px 4px;
}

.alp-packages__slider .swiper-slide {
  height: auto;
}

.alp-packages__pagination {
  position: static;
  margin-top: 28px;
  display: none;
}

.alp-packages__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #C8CDD8;
  opacity: 1;
}

.alp-packages__pagination .swiper-pagination-bullet-active {
  background: #D11F2D;
}

@media (min-width: 992px) {
  .alp-packages__slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transform: none !important;
  }

  .alp-packages__slider .swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }
}

.alp-package {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #F6F8FC;
  border: 0.775377px solid #F6F8FC;
  box-shadow: 0px 3.10151px 13.1814px rgba(0, 0, 0, 0.25);
  border-radius: 14.7322px;
  padding: 32px 28px 28px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.alp-package__title {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 27.91px;
  line-height: 1.25;
  color: #0B1F4D;
  margin: 0 0 26px;
  transition: color 0.3s ease;
}

.alp-package__desc {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 14.27px;
  line-height: 1.5;
  color: #4B5563;
  margin: 0 0 25px;
  transition: color 0.3s ease;
  max-width: 285px;
}

.alp-package__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex-grow: 1;
}

.alp-package__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 12.72px;
  line-height: 2.4;
  color: #111827;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.alp-package__list li:last-child {
  margin-bottom: 0;
}

.alp-package__list i {
  color: #BF0A30;
  font-size: 12px;
  transition: color 0.3s ease;
}

.alp-package__btn {
  align-self: flex-start;
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 13.96px;
  line-height: 1.2;
  color: #FFFFFF;
  background: #0B1F4D;
  border: none;
  border-radius: 7px;
  padding: 12px 40px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
}

.alp-package__btn:hover {
  color: #FFFFFF;
  background: #081633;
}

.alp-package:hover {
  background: #0B1F4D;
  border-color: #0B1F4D;
}

.alp-package:hover .alp-package__title,
.alp-package:hover .alp-package__desc,
.alp-package:hover .alp-package__list li {
  color: #FFFFFF;
}

.alp-package:hover .alp-package__list i {
  color: #E8C547;
}

.alp-package:hover .alp-package__btn {
  background: #BF0A30;
  color: #FFFFFF;
}

/* Children's Books */
.alp-kids {
  padding: 80px 0;
  background: #FCF1ED;
}

.alp-kids__container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.alp-kids__eyebrow {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D11F2D;
  text-align: center;
  margin: 0 0 10px;
}

.alp-kids__heading {
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 55px;
  line-height: 1.2;
  color: #2E345E;
  text-align: center;
  margin: 0 0 48px;
}

.alp-kids__slider {
  overflow: hidden;
  padding-top: 16px;
  padding-bottom: 12px;
}

.alp-kids__slider .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

.alp-kids__pagination {
  position: static;
  margin-top: 24px;
  display: none;
}

.alp-kids__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #C8CDD8;
  opacity: 1;
}

.alp-kids__pagination .swiper-pagination-bullet-active {
  background: #D11F2D;
}

.alp-kids__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 200px;
  max-width: 100%;
  color: #1B1B1B;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .alp-kids__slider {
    overflow: visible;
  }

  .alp-kids__slider .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    transform: none !important;
  }

  .alp-kids__slider .swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }
}

.alp-kids__item:hover,
.alp-kids__item:focus-visible {
  transform: translateY(-8px);
  color: #D11F2D;
}

.alp-kids__icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 16px;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.alp-kids__item:hover .alp-kids__icon,
.alp-kids__item:focus-visible .alp-kids__icon {
  transform: scale(1.08);
  filter: drop-shadow(0 12px 18px rgba(209, 31, 45, 0.18));
}

.alp-kids__title {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 21.99px;
  line-height: 1.3;
  color: #1B1B1B;
  transition: color 0.3s ease;
}

.alp-kids__item:hover .alp-kids__title,
.alp-kids__item:focus-visible .alp-kids__title {
  color: #D11F2D;
}

/* Kids banner */
.alp-kids-banner {
  padding: 130px 0 150px;
  background: url("../images/kids-banner.webp") center center / cover no-repeat;
}

.alp-kids-banner__container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.alp-kids-banner__content {
  max-width: 630px;
  margin: 0 auto;
  text-align: center;
}

.alp-kids-banner__heading {
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 55px;
  line-height: 1.2;
  color: #2E345E;
  margin: 0 0 18px;
}

.alp-kids-banner__text {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: #1B1B1B;
  text-transform: none;
  margin: 0 0 28px;
}

.alp-kids-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(165.8deg, #D11F2D 9.18%, #2E345E 84.19%);
  border: 0;
  border-radius: 3px;
  padding: 12px 28px;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.alp-kids-banner__btn:hover {
  color: #fff;
  opacity: 0.92;
  transform: translateY(-2px);
}

/* Reviews */
.alp-reviews {
  padding: 80px 0;
  background: #fff;
}

.alp-reviews__heading {
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 55px;
  line-height: 1.2;
  color: #2E345E;
  text-align: center;
  margin: 0 0 16px;
}

.alp-reviews__intro {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #2E345E;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.alp-reviews__slider {
  padding-bottom: 40px;
  overflow: hidden;
}

.alp-reviews__slider .swiper-slide {
  height: auto;
}

.alp-reviews__pagination {
  position: static;
  margin-top: 8px;
}

.alp-reviews__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #C8CDD8;
  opacity: 1;
}

.alp-reviews__pagination .swiper-pagination-bullet-active {
  background: #D11F2D;
}

.alp-review {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #F3F3F3;
  border-radius: 10px;
  padding: 35px 20px 45px;
  height: 100%;
  overflow: hidden;
}

.alp-review__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 98px;
  width: 98px;
}

.alp-review__avatar {
  width: 78px;
  height: 78px;
  padding: 5px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2E345E 0%, #D11F2D 100%);
  margin-bottom: 8px;
}

.alp-review__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.alp-review__name {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: #0E2C5D;
  margin-bottom: 2px;
}

.alp-review__role {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 10px;
  line-height: 1.3;
  color: #52627A;
}

.alp-review__body {
  flex: 1;
  min-width: 0;
  padding-top: 2px;
}

.alp-review__stars {
  width: 78px;
  height: auto;
  margin-bottom: 10px;
}

.alp-review__text {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.45;
  color: #0D2344;
  margin: 0;
  position: relative;
  z-index: 1;
}

.alp-review__quote {
  position: absolute;
  right: 16px;
  bottom: 10px;
  width: 42px;
  height: auto;
  opacity: 0.55;
  pointer-events: none;
}

.alp-reviews__actions {
  text-align: center;
  margin-top: 40px;
}

.alp-reviews__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(165.8deg, #D11F2D 9.18%, #2E345E 84.19%);
  border: 0;
  border-radius: 3px;
  padding: 12px 28px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.alp-reviews__btn:hover {
  color: #fff;
  opacity: 0.92;
  transform: translateY(-2px);
}

/* Contact page section */
.alp-contact-page {
  padding: 80px 0;
  background: #F9E7D7;
  overflow: hidden;
}

.alp-contact-card {
  height: 100%;
  background: #2E345E;
  border-radius: 16px;
  padding: 48px 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.alp-contact-card__eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.alp-contact-card__title {
  margin: 0 0 36px;
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 52px;
  line-height: 1.2;
  color: #fff;
}

.alp-contact-card__list {
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.alp-contact-card__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-poppins);
  font-weight: 300;
  font-size: 23px;
  line-height: 1.4;
  color: #fff;
}

.alp-contact-card__list i {
  flex-shrink: 0;
  width: 22px;
  text-align: center;
  font-size: 18px;
  color: #fff;
}

.alp-contact-card__list a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.alp-contact-card__list a:hover {
  color: #fff;
  opacity: 0.85;
}

.alp-contact-card__social-title {
  margin: 0 0 18px;
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 52px;
  line-height: 1.2;
  color: #fff;
}

.alp-contact-card__social {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 20px;
}

.alp-contact-card__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.alp-contact-card__social a:hover {
  color: #fff;
  opacity: 0.85;
  transform: translateY(-2px);
}

.alp-contact-page__form-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 8px;
}

/* FAQ + Contact */
.alp-faq-contact {
  padding: 80px 0;
  background: #F9E7D7;
  overflow: hidden;
}

.alp-faq__eyebrow {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D11F2D;
  margin: 0 0 10px;
}

.alp-faq__heading,
.alp-contact__heading {
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 42px;
  line-height: 1.2;
  color: #2E345E;
  margin: 0 0 14px;
}

.alp-faq__heading span,
.alp-contact__heading span {
  color: #D11F2D;
}

.alp-faq__intro,
.alp-contact__intro {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #2E345E;
  margin: 0 0 28px;
}

.alp-faq {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 16.4586px;
  --bs-accordion-inner-border-radius: 16.4586px;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-bg: transparent;
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-active-color: #fff;
  --bs-accordion-btn-color: #2E345E;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.alp-faq__item {
  border: 0 !important;
  border-radius: 16.4586px;
  overflow: hidden;
  background: #F3F3F3;
  transition: background 0.25s ease;
}

.alp-faq__item.is-active,
.alp-faq__item:has(.collapse.show) {
  background: linear-gradient(90deg, #D11F2D 0%, #2E345E 100%);
}

.alp-faq__button {
  position: relative;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  color: #2E345E !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  padding: 22px 48px 22px 24px;
  gap: 12px;
}

.alp-faq__button::after {
  display: none !important;
}

.alp-faq__icon {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  font-size: 16px;
  line-height: 1;
  color: #2E345E;
  transition: transform 0.25s ease, color 0.25s ease;
}

.alp-faq__button:not(.collapsed) {
  color: #fff !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  padding-bottom: 10px;
}

.alp-faq__button:not(.collapsed) .alp-faq__icon {
  color: #fff;
  transform: translateY(-50%) rotate(0deg);
}

.alp-faq__button:hover,
.alp-faq__button:focus {
  color: #2E345E !important;
  background-color: transparent !important;
  z-index: 1;
}

.alp-faq__button:not(.collapsed):hover,
.alp-faq__button:not(.collapsed):focus {
  color: #fff !important;
}

.alp-faq .accordion-collapse,
.alp-faq .accordion-body {
  background: transparent !important;
}

.alp-faq__body {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  padding: 0 48px 22px 24px;
}

.alp-contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.alp-contact__field {
  position: relative;
  background: #F5F5F5;
  border-radius: 6.41px;
  padding: 0 0 0 28px;
}

.alp-contact__field input,
.alp-contact__field textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: #2E345E;
  padding: 24px 0 12px;
  resize: none;
}

.alp-contact__field textarea {
  padding-top: 28px;
  min-height: 140px;
}

.alp-contact__field label {
  position: absolute;
  top: 50%;
  left: 28px;
  transform: translateY(-50%);
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2;
  color: #000000;
  margin: 0;
  pointer-events: none;
  transition: top 0.2s ease, transform 0.2s ease, font-size 0.2s ease;
}

.alp-contact__field--message label {
  top: 24px;
  transform: none;
}

.alp-contact__field input:focus + label,
.alp-contact__field input:not(:placeholder-shown) + label,
.alp-contact__field textarea:focus + label,
.alp-contact__field textarea:not(:placeholder-shown) + label {
  top: 8px;
  transform: none;
  font-size: 12px;
}

.alp-contact__field--message {
  min-height: 140px;
}

.alp-contact__btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(165.8deg, #D11F2D 9.18%, #2E345E 84.19%);
  border: 0;
  border-radius: 3px;
  padding: 12px 36px;
  margin-top: 8px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.alp-contact__btn:hover {
  color: #fff;
  opacity: 0.92;
  transform: translateY(-2px);
}

/* Platforms */
.alp-platforms {
  background: #34345D;
  border-top: 1px solid #F9E7D7;
  padding: 28px 0;
  overflow: hidden;
}

.alp-platforms__slider {
  width: 100%;
  padding: 0 20px;
}

.alp-platforms__slider .swiper-wrapper {
  transition-timing-function: linear !important;
  align-items: center;
}

.alp-platforms__slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

.alp-platforms__logo {
  width: auto;
  max-width: 100%;
  height: 48px;
  object-fit: contain;
}

/* Footer */
.alp-footer {
  background: linear-gradient(177.54deg, #D11F2D 2.1%, #2E345E 94.17%);
  color: #fff;
  padding: 70px 0 0;
}

.alp-footer__top {
  padding-bottom: 40px;
}

.alp-footer__brand {
  display: inline-block;
  margin-bottom: 18px;
}

.alp-footer__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 132px;
  padding: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.alp-footer__logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.alp-footer__about {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 22px;
  max-width: 430px;
}

.alp-footer__social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.alp-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 15px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.alp-footer__social a:hover {
  background: #fff;
  color: #2E345E;
  transform: translateY(-2px);
}

.alp-footer__heading {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 21.03px;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 18px;
}

.alp-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alp-footer__links a {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
  transition: opacity 0.25s ease;
}

.alp-footer__links a:hover {
  color: #fff;
  opacity: 0.8;
}

.alp-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.alp-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
}

.alp-footer__contact i {
  margin-top: 3px;
  font-size: 14px;
  width: 16px;
  flex-shrink: 0;
}

.alp-footer__contact a {
  color: #fff;
  word-break: break-word;
}

.alp-footer__contact a:hover {
  color: #fff;
  opacity: 0.8;
}

.alp-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.alp-footer__copy {
  margin: 0;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}

.alp-footer__legal {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.alp-footer__legal a {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  transition: opacity 0.25s ease;
}

.alp-footer__legal a:hover {
  color: #fff;
  opacity: 0.8;
}

/* About page hero — same banner as home, custom left-bottom art */
.alp-about-hero {
  justify-content: center;
  padding: 320px 0 300px;
  text-align: center;
  background: none;
}

.alp-about-hero .alp-hero__flag {
  width: min(42%, 700px);
}

.alp-about-hero__right {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 1150px;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: right bottom;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.alp-about-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.alp-about-hero__title {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 64px;
  line-height: 1.15;
  color: #1B1B1B;
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.alp-about-hero__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 72px;
  height: 3px;
  background: #FF6275;
  transform: translateX(-50%);
}

.alp-about-hero__tagline {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #2E345E;
  max-width: 640px;
  margin: 18px auto 0;
}

.alp-thanks {
  padding: 80px 0;
  background: #FCF1ED;
}

.alp-thanks__card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 56px 44px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.alp-thanks__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(165.8deg, #D11F2D 9.18%, #2E345E 84.19%);
  color: #fff;
  font-size: 28px;
}

.alp-thanks__title {
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 42px;
  line-height: 1.2;
  color: #2E345E;
  margin: 0 0 14px;
}

.alp-thanks__text {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0 0 28px;
}

.alp-thanks__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.alp-legal {
  padding: 80px 0;
  background: #FCF1ED;
}

.alp-legal__content {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  padding: 48px 44px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.alp-legal__updated {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #D11F2D;
  margin: 0 0 20px;
}

.alp-legal__content h2 {
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.3;
  color: #2E345E;
  margin: 32px 0 12px;
}

.alp-legal__content p {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0 0 14px;
}

.alp-legal__content a {
  color: #D11F2D;
  text-decoration: none;
}

.alp-legal__content a:hover {
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .alp-legal {
    padding: 50px 0;
  }

  .alp-legal__content {
    padding: 28px 20px;
  }

  .alp-legal__content h2 {
    font-size: 22px;
  }
}

.alp-about-mission__card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.alp-about-mission__title {
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.25;
  color: #2E345E;
  margin: 0 0 14px;
}

.alp-about-mission__text {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

.alp-about-mission__cta {
  margin-top: 40px;
}

/* Quote modal */
.alp-modal .modal-dialog {
  max-width: 520px;
}

.alp-modal__content {
  position: relative;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(46, 52, 94, 0.28);
}

.alp-modal__content::before {
  content: "";
  display: block;
  height: 6px;
  background: linear-gradient(90deg, #D11F2D 0%, #2E345E 100%);
}

.alp-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #F3F3F3;
  color: #2E345E;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.alp-modal__close:hover {
  background: #D11F2D;
  color: #fff;
  transform: rotate(90deg);
}

.alp-modal__body {
  padding: 32px 40px 40px;
}

.alp-modal__eyebrow {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D11F2D;
  margin: 0 0 8px;
}

.alp-modal__title {
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2;
  color: #2E345E;
  margin: 0 0 10px;
}

.alp-modal__intro {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: #5A5A5A;
  margin: 0 0 24px;
}

.alp-modal__form .alp-contact__field--message textarea {
  min-height: 110px;
}

.alp-modal__form .alp-contact__btn {
  width: 100%;
  margin-top: 4px;
}