/* ===== Components ===== */

/* Headings */
.hero__title {
  display: inline-block;
  flex-direction: column;
  justify-content: center;
}

.hero__heading {
  text-align: left;
  text-transform: uppercase;
  letter-spacing: -0.4rem;
}

.text-color--emphasis {
  color: var(--text-color-emphasis);
}

.hero__heading span {
  display: block;
}

.hero__subheading {
  text-align: left;
}

.hero__img {
  width: 100%;
  max-width: 520px;     /* tune for your design */
  justify-self: end;    /* keep image anchored in column 2 */
}

.hero__img img {
  width: 100%;
  height: auto;
  display: block;       /* removes inline gap */
}

.module__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.module__heading {
  text-align: left;
  text-transform: uppercase;
}

.module__subheading {
  text-align: left;
}

.module__body {
  text-align: left;
  font-size: var(--fs-body);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .module__title h2 {
    font-size: var(--fs-h2);
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .module__title h2 {
    font-size: var(--fs-h2);
  }
}

@media (min-width: 1440px) and (max-width: 1999px) {
  .module__title h2 {
    font-size: var(--fs-h2);
  }
}

/* Buttons & CTAs */
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
  text-transform: uppercase;

}

.hero__cta a {
  text-decoration: none;
}

@media (min-width: 768px) {
  .hero__cta {
    max-width: 50%;
  }
}

@media (min-width: 1440px) {
  .hero__cta {
    max-width: 33%;
  }
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.hero__button--primary {
  background-color: var(--bg-primary-cta);
  color: var(--color-primary-cta-text);
}

.hero__button--secondary {
  background-color: #ffffff;
  font-weight: 700;
}

.hero__button--linkedin-blue {
  background-color: var(--bg-linkedin-blue);
  color: var(--color-primary-cta-text);
  font-weight: 700;
}

.about-principles ul {
  text-decoration: none;
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
}


/* Cards */
.card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-align: left;
  justify-content: start;
  padding: var(--card-padding);
  alignment-baseline: text-top;
  background: var(--bg-card-off-white);
  border-radius: 0.8rem;
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  border: 1px solid var(--border-card-white);
  margin: 0.5rem;

}

.card__heading {
  font-size: var(--fs-card-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-bottom: 0.5rem;
  padding: 0rem;
  text-align: center;
}

.card__subheading {
  font-size: var(--fs-card-subheading);
  font-weight: 500;
  padding: 0rem;
  text-align: center;
  letter-spacing: -0.1rem;

}

.card__heading,
.card__subheading {
  text-wrap: balance;
  /* nicer line breaks when supported */
  white-space: normal;
  /* allow wrapping */
  overflow-wrap: anywhere;
  /* prevent overflow on tiny screens */
}

.card__body {
  padding: 0rem;
  margin: 0rem 0.5rem 0.5rem 0.5rem;
}

/*__Sticky Nav__*/
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  will-change: transform;
  transition: transform 0.3s ease-out;
  overflow: hidden;
}

.sticky-nav__list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 0;
  list-style: none;
  flex-wrap: nowrap;

}

.sticky-nav__link {
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
  font-size: var(--fs-body);
  white-space: nowrap;

  font-family: "Fjalla One";
}

.sticky-nav__sep {
  list-style: none;
  color: var(--accent);
}

.sticky-nav-scope {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 425px) {

  .sticky-nav__sep {
    display: none;
  }
}

@media (max-width: 375px) {

  .sticky-nav__list {
    justify-content: space-around;
  }

  .sticky-nav__sep {
    display: none;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {


  .sticky-nav__list {
    justify-content: space-around;
  }
}

@media (min-width: 1440px) and (max-width: 1999px) {


  .sticky-nav__list {
    justify-content: space-around;
  }

  .sticky-nav__sep {
    display: none;
  }

}

@media (min-width: 2000px) {
  .sticky-nav__sep {
    display: none;
  }

  .sticky-nav__list {
    justify-content: space-around;
  }
}

/* ===========================
   SWIPER 
   =========================== */
/* LOGO MARQUEE */

.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-marquee .swiper-wrapper {
  width: 50% !important;
  align-items: baseline;
  transition-timing-function: linear !important;
  /* constant motion */
}

@media (min-width: 768px) {
  .logo-marquee .swiper-wrapper {
    width: 25% !important;
  }
}

.logo-marquee__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.4rem;
  flex-shrink: 0;
}

.logo-marquee__img {
  height: 12rem;
  width: auto;
  /* preserve aspect ratio */
  max-width: none;
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (min-width: 375px) {
  .logo-marquee__img {
    height: 12rem;
  }
}

@media (min-width: 768px) {
  .logo-marquee__img {
    height: 15rem;
  }

  .logo-marquee__slide {
    padding: 1rem 1.6rem;
  }

  .logo-marquee::before,
  .logo-marquee::after {
    width: 4rem;
  }
}

@media (min-width: 1024px) {
  .logo-marquee__img {
    height: 15rem;
  }
}

@media (min-width: 2000px) {
  .logo-marquee__img {
    height: 22rem;
  }
}

.logo-marquee__img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Fade edges */
.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 6rem;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg,
      var(--bg-module-black) 0%,
      rgba(255, 255, 255, 0) 100%);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg,
      var(--bg-module-black) 0%,
      rgba(255, 255, 255, 0) 100%);
}


/* AI_CAROUSEL */
/* ===========================
   AI CAROUSEL (LinkedIn-style)
   =========================== */

.ai-carousel {
  width: 100%;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.ai-carousel__slide {
  height: auto;
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #ffffff;
  border-radius: 1.2rem;
  /* box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16); */
  padding: var(--carousel-card-padding);
}

.ai-carousel__text {
  margin: 0;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  overflow-wrap: anywhere;
}

/* Pagination dots */
.ai-carousel__pagination .swiper-pagination-bullet {
  opacity: 0.25;
}

.ai-carousel__pagination .swiper-pagination-bullet-active {
  opacity: 0.75;
}

.ai-carousel__text span {
  display: block;
  font-weight: 700;
  color: var(--text-color-emphasis);
  font-family: var(--font-heading);
}

/* ===========================
   FAQ / ACCORDION
   =========================== */

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.faq__item {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: 1.6rem;
}

.faq__item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding-bottom: 1.6rem;
}

/* Remove default disclosure triangle */
.faq__question {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: 575;
  line-height: var(--lh-tight);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.faq__question::-webkit-details-marker {
  display: none;
}

/* Plus / minus indicator */
.faq__question::after {
  content: "+";
  font-size: 2.2rem;
  font-weight: 300;
  transition: transform 0.25s ease;
}

.faq__item[open] .faq__question::after {
  content: "–";
}

/* Answer panel */
.faq__answer {
  padding-top: 1.2rem;
  max-width: 72rem;
}

.faq__answer p {
  opacity: 0.85;
}

/* Focus styles */
.faq__question:focus-visible {
  outline: 2px solid var(--text-color-emphasis);
  outline-offset: 4px;
}

.solution-icon::before {
  content: "→";
  font-weight: 700;
}

/* module__eyebrow */
.module__eyebrow {
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.8rem;
  margin-top: 0.8rem;
}

.font-weight-700 {
  font-weight: 700 !important;
}

.text-color--white {
  color: white'
}