/*--------------------------------------------------------------
# Components
  - Header logo + menu + portal
  - Buttons
--------------------------------------------------------------*/

/* Logo */

.tf-header__logo img {
  width: auto;
  height: 48px;
  max-width: 100%;
}

/* Header layout (logo left, nav center, portal right) */

.tf-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.tf-header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

/* Menu */

.tf-header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0.75rem 2rem;
  border-radius: 70px;
  background: rgba(75, 147, 179, 0.1);
  height: 48px;
  box-sizing: border-box;
}

.tf-header__menu a {
  color: #000000;
  font-family: "Inter Tight", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  padding: 0;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.15s ease;
}

.tf-header__menu a:hover,
.tf-header__menu a:focus-visible {
  color: var(--tf-link);
  transform: translateY(-1px);
}

/* Portal button */

.tf-header__portal {
  position: relative;
  display: inline-block;
}

.tf-btn--portal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2.5rem;
  border-radius: 70px 70px 0 0;
  background: #ffffff;
  color: #000000;
  font-family: var(--tf-font-heading);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  width: 100%;
  min-width: 176px;
  position: relative;
  z-index: 0;
}

.tf-btn--portal::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(
    --tf-grad,
    linear-gradient(162deg, #38bdf8 31.72%, #8b5cf6 80.47%)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.tf-btn--portal:hover,
.tf-btn--portal:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

/* Chevron icon */

.tf-btn__chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(0);
  transition: transform 0.25s ease;
}

/* Dropdown */

.tf-portal-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  padding: 0.25rem 0;
  display: none;
}

.tf-portal-dropdown__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  border-radius: 0;
  font-family: var(--tf-font-heading);
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.tf-portal-dropdown__item:first-child {
  border-radius: 20px 20px 0 0;
}

.tf-portal-dropdown__item:last-child {
  border-radius: 0 0 20px 20px;
}

.tf-portal-dropdown__item:hover,
.tf-portal-dropdown__item:focus-visible {
  background: rgba(75, 147, 179, 0.08);
  color: var(--tf-link);
}

/* State class to open dropdown */

.tf-header__portal.is-open .tf-portal-dropdown {
  display: block;
}

.tf-header__portal:hover .tf-btn__chevron,
.tf-header__portal.is-open .tf-btn__chevron {
  transform: rotate(225deg) translateX(-3px);
}

@media (hover: hover) and (pointer: fine) {
  .tf-header__portal:hover .tf-portal-dropdown {
    display: block;
  }

  .tf-header__portal:hover .tf-btn__chevron,
  .tf-header__portal.is-open .tf-btn__chevron {
    transform: rotate(225deg) translateX(-3px);
  }
}

/* Buttons (global) */

.tf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 3rem;
  border-radius: 70px;
  border: none;
  font-family: var(--tf-font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  z-index: 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease,
    color 0.2s ease;
}

/* Primary gradient button */

.tf-btn--primary {
  color: #ffffff;
  background: var(--tf-grad);
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.15);
}

.tf-btn--primary:hover,
.tf-btn--primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 18px rgba(0, 0, 0, 0.18);
}

/* Outline button */

.tf-btn--outline {
  color: var(--tf-text);
  background: #ffffff;
  border: 1px solid var(--tf-border);
  box-shadow: none;
}

.tf-btn--outline:hover,
.tf-btn--outline:focus-visible {
  background: rgba(14, 41, 56, 0.04);
}

/* Header mobile behaviour */

@media (max-width: 767px) {
  .tf-header__inner {
    flex-wrap: wrap;
    row-gap: 1rem;
  }

  .tf-header__nav-wrap {
    width: 100%;
    justify-content: space-between;
  }

  .tf-header__nav {
    flex: 1 1 auto;
    justify-content: center;
  }

  .tf-header__menu {
    flex: 1;
    padding: 0.5rem 1rem;
    gap: 1rem;
  }

  .tf-btn--portal {
    min-width: 176px;
    width: 100%;
    border-radius: 70px 70px 0 0;
  }
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/

.tf-hero {
  position: relative;
  overflow: hidden;
  max-height: 1200px;
  height: calc(100vh - 80px);
  height: calc(100svh - 80px);
}

.tf-header + .tf-hero {
  margin-top: -80px;
  padding-top: 80px;
  box-sizing: border-box;
}

.tf-hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.tf-hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tf-hero__content {
  position: relative;
  max-width: 55rem;
  margin: 0 auto;
  padding: 80px 0 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100%;
}

.tf-hero__eyebrow {
  font-family: var(--tf-font-heading);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  background: var(
    --tf-grad,
    linear-gradient(162deg, #38bdf8 31.72%, #8b5cf6 80.47%)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tf-hero__title {
  margin: 0;
  margin-top: 0.1em;
  color: #000;
  font-family: "Sora", system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.1;
  font-size: 40px;
}

.tf-hero__text {
  max-width: 621px;
  width: 100%;
  margin: 1.5rem auto 2.5rem;
  color: #5b5b5b;
  font-size: 18px;
  line-height: 1.5;
}

.tf-hero__cta {
  padding: 0.75rem 3rem;
  min-height: 48px;
  min-width: 227px;
}

/*--------------------------------------------------------------
# Strip
--------------------------------------------------------------*/

.tf-strip {
  background: linear-gradient(
    to bottom,
    rgba(246, 248, 251, 0) 0,
    rgba(246, 248, 251, 0) 30px,
    #f6f8fb 30px,
    #f6f8fb 100%
  );
  padding-bottom: 40px;
}

.tf-strip__inner {
  max-width: 1440px;
  margin: -40px auto 80px auto;
  border-radius: 30px;
  background: #fff;
  box-shadow: 5px 5px 15px 0 rgba(56, 189, 248, 0.3);
  padding: 32px 48px 48px;
}

.tf-strip__features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.tf-strip__feature {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  background: #fff;
  box-shadow: -5px -5px 15px 0 rgba(138, 91, 245, 0.3),
    5px 5px 15px 0 rgba(56, 189, 248, 0.3);
}

.tf-strip__feature-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tf-strip__feature-icon svg {
  width: 100%;
  height: 100%;
}

.tf-strip__feature-text {
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #000;
}

.tf-strip__title {
  margin: 0 0 24px;
  text-align: center;
  color: #000;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
}

.tf-strip__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1024px;
  gap: 32px;
}

.tf-strip__copy {
  margin: 0;
  max-width: 826px;
  color: #5b5b5b;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.tf-strip__btn {
  white-space: nowrap;
  padding: 0.75rem 2.5rem;
  min-height: 48px;
  min-width: 165px;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0e2938;
  border-color: #0e2938;
}

/*--------------------------------------------------------------
# Title animation
--------------------------------------------------------------*/

.tf-animate-title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  will-change: opacity, transform;
}

.tf-animate-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Stats
--------------------------------------------------------------*/

.tf-stats {
  background-color: #f6f8fb;
  padding-top: 20px;
}

.tf-stats__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 0 6.4375rem 0;
}

.tf-stats__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.7fr);
  column-gap: 2rem;
  align-items: center;
}

.tf-stats__left {
  position: relative;
}

.tf-stats__body {
  margin-left: 5.625rem;
}

.tf-stats__number-wrap {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  margin-bottom: -0.75rem;
}

.tf-stats__number {
  font-family: "Sora", system-ui, sans-serif;
  font-size: 8.4375rem;
  font-weight: 700;
  line-height: 6.25rem;
  color: #000;
  opacity: 0.15;
}

.tf-stats__number-suffix {
  font-family: "Sora", system-ui, sans-serif;
  font-size: 135px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  opacity: 0.15;
}

.tf-stats__label {
  max-width: 19.4375rem;
  margin: 0 0 0.75rem;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1667;
  color: #000;
}

.tf-stats__headline {
  max-width: 30.375rem;
  margin: 0 0 0.5rem;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1111;
  background: var(
    --tru-puprle-blue,
    linear-gradient(116deg, #38bdf8 31.85%, #8b5cf6 61.03%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.tf-stats__text {
  max-width: 28.625rem;
  margin: 0;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  color: #5b5b5b;
}

.tf-stats__right {
  display: flex;
  justify-content: flex-end;
}

.tf-stats__image-wrap {
  max-width: 39.25rem;
  border-radius: 1.25rem;
  overflow: hidden;
  background-color: #e6f1ff;
  filter: drop-shadow(5px 5px 15px rgba(56, 189, 248, 0.3));
}

.tf-stats__image {
  display: block;
  width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# AI section
--------------------------------------------------------------*/

.tf-ai {
  background-color: #ffffff;
  padding: 80px 0;
}

.tf-ai__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}

.tf-ai__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
  column-gap: 5rem;
  align-items: center;
}

.tf-ai__left {
  display: flex;
  justify-content: flex-start;
}

.tf-ai__image-wrap {
  width: 100%;
}

.tf-ai__image {
  display: block;
  width: 100%;
  height: auto;
}

.tf-ai__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tf-ai__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 71.569px;
  height: 27.797px;
  border-radius: 70px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  text-align: center;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  padding: 0;
  margin: 0 0 16px;
}

.tf-ai__headline {
  margin: 0;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
  background: var(
    --tru-puprle-blue,
    linear-gradient(116deg, #38bdf8 31.85%, #8b5cf6 61.03%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.tf-ai__subheadline {
  margin: 0;
  margin-top: 4px;
  color: #000;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}

.tf-ai__text {
  margin: 16px 0 24px;
  max-width: 28.625rem;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #5b5b5b;
}

@media (max-width: 767px) {
  .tf-ai__grid {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  .tf-ai__left {
    order: 1;
  }

  .tf-ai__right {
    order: 2;
  }
}

/* ============================================================
   CARD STACK SECTION
   ============================================================ */

.tf-card-stack {
  background: #000;
  width: 100%;
}

.tf-card-stack__trigger {
  background: #000;
  width: 100%;
}

.tf-card-stack__inner {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 4rem;
  background: #000;
  box-sizing: border-box;
}

.tf-card-stack__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* ── Left: Text column ── */
.tf-card-stack__inner-text {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

/* "NEW" badge */
.tf-ai__badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: transparent;
  cursor: default;
}

.tf-card-stack__headline {
  color: #fff;
  font-size: clamp(1.75rem, 2.4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.tf-card-stack__subheadline {
  color: #38BDF8;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.tf-card-stack__text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9375rem;
  line-height: 1.75;
  max-width: 44ch;
  margin: 0;
}

.tf-card-stack__btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.tf-card-stack__btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff;
}

/* ── Right: Cards column ── */
.tf-card-stack__scope {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* 4-col × 2-row grid */
.tf-card-stage {
  display: grid;
  grid-template-columns: repeat(4, 150px);
  grid-template-rows: repeat(2, 95px);
  gap: 14px;
}

/* ── Base card ── */
.tf-card3d {
  width: 150px;
  height: 95px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  /* start invisible — JS will animate in */
  opacity: 0;
}

/* Dark navy cards — cols 1 & 2 */
.tf-card3d--dark {
  background: linear-gradient(145deg, #0d1b3e 0%, #132347 40%, #1a3060 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

/* Light white cards — cols 3 & 4 */
.tf-card3d--light {
  background: linear-gradient(145deg, #e0e0e0 0%, #f0f0f0 50%, #ffffff 100%);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

/* Gold chip */
.tf-card3d::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  width: 30px;
  height: 22px;
  border-radius: 4px;
  background: linear-gradient(135deg, #c8930a, #f0c040, #c8930a);
}

/* Grid positions */
.tf-card3d--1 { grid-column: 1; grid-row: 1; }
.tf-card3d--2 { grid-column: 2; grid-row: 1; }
.tf-card3d--3 { grid-column: 1; grid-row: 2; }
.tf-card3d--4 { grid-column: 2; grid-row: 2; }
.tf-card3d--5 { grid-column: 3; grid-row: 1; }
.tf-card3d--6 { grid-column: 4; grid-row: 1; }
.tf-card3d--7 { grid-column: 3; grid-row: 2; }
.tf-card3d--8 { grid-column: 4; grid-row: 2; }

/* ── Responsive ── */
@media (max-width: 1200px) {
  .tf-card-stack__inner {
    padding: 4rem 2.5rem;
  }

  .tf-card-stage {
    grid-template-columns: repeat(4, 120px);
    grid-template-rows: repeat(2, 76px);
    gap: 10px;
  }

  .tf-card3d {
    width: 120px;
    height: 76px;
  }

  .tf-card-stack__inner-text {
    flex: 0 0 360px;
  }
}

@media (max-width: 900px) {
  .tf-card-stack__content {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .tf-card-stack__inner-text {
    flex: none;
    width: 100%;
    max-width: 500px;
    align-items: center;
    text-align: center;
  }

  .tf-card-stack__text {
    max-width: 52ch;
  }

  .tf-card-stack__scope {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .tf-card-stack__inner {
    padding: 3rem 1.5rem;
  }

  .tf-card-stage {
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: repeat(4, 82px);
    gap: 10px;
  }

  .tf-card3d {
    width: 130px;
    height: 82px;
  }

  /* Reflow: 2×4 */
  .tf-card3d--1 { grid-column: 1; grid-row: 1; }
  .tf-card3d--2 { grid-column: 2; grid-row: 1; }
  .tf-card3d--3 { grid-column: 1; grid-row: 2; }
  .tf-card3d--4 { grid-column: 2; grid-row: 2; }
  .tf-card3d--5 { grid-column: 1; grid-row: 3; }
  .tf-card3d--6 { grid-column: 2; grid-row: 3; }
  .tf-card3d--7 { grid-column: 1; grid-row: 4; }
  .tf-card3d--8 { grid-column: 2; grid-row: 4; }
}

/*--------------------------------------------------------------
# Testimonials (slider)
--------------------------------------------------------------*/

.tf-testimonials {
  position: relative;
  background-image: url("https://wpmarketing.lioneight.dev/wp-content/uploads/2026/03/testimonials-bg.webp");
  background-size: cover;
  background-position: center;
  padding: 3rem 1.5rem;
}

.tf-testimonials__inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow */
.tf-testimonials__eyebrow {
  margin: 0;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
  background: var(
    --tru-puprle-blue,
    linear-gradient(116deg, #38bdf8 31.85%, #8b5cf6 61.03%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Stars */
.tf-testimonials__stars {
  margin-top: 24px;
  display: inline-flex;
  gap: 2px;
}

.tf-testimonials__star {
  width: 20px;
  height: 20px;
  fill: url(#tf-testimonials-star-grad);
}

/* Quote */
.tf-testimonials__quote {
  margin: 0 auto 40px auto;
  max-width: 600px;
  color: #fff;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

/* Footer (logo + client) */
.tf-testimonials__footer {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  opacity: 0.5;
}

.tf-testimonials__logo {
  width: 48px;
  height: 30px;
  object-fit: contain;
}

.tf-testimonials__client-name {
  color: #fff;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 22px;
  text-align: left;
}

.tf-testimonials__client-meta {
  color: #fff;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
}

/* Arrows */
.tf-testimonials__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tf-testimonials__arrow--prev {
  left: 0;
}

.tf-testimonials__arrow--next {
  right: 0;
}

/* Tablet ≥ 768px */
@media (min-width: 768px) {
  .tf-testimonials {
    padding: 4rem 2rem;
  }
  .tf-testimonials__eyebrow {
    font-size: 32px;
  }
  .tf-testimonials__quote {
    font-size: 20px;
    line-height: 30px;
  }
  .tf-testimonials__logo {
    width: 58px;
    height: 37px;
  }
}

/* Laptop ≥ 1024px */
@media (min-width: 1024px) {
  .tf-testimonials {
    padding: 5rem 3rem;
  }
  .tf-testimonials__eyebrow {
    font-size: 40px;
  }
  .tf-testimonials__quote {
    font-size: 24px;
    line-height: 32px;
  }
}

/* Desktop ≥ 1681px */
@media (min-width: 1681px) {
  .tf-testimonials {
    padding: 6rem 4rem;
  }
}

/*--------------------------------------------------------------
# Utilities / misc
--------------------------------------------------------------*/

.drag-proxy {
  visibility: hidden;
  position: absolute;
}

@media (min-width: 768px) {
  .actions {
    display: none;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background-color: #000;
  padding: 7.5rem 4rem;
}

.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
}

/* ── Grid: 4 columns side by side ── */
.footer__grid {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
}

/* Each column stacks its children vertically */
.footer__col {
  display: flex;
  flex-direction: column;
}

/* ============================================================
   COL 1 — Brand
   gap to col 2: 246px → 256px (16rem)
   ============================================================ */

.footer__col--brand {
  width: 361px;
  flex-shrink: 0;
  gap: 3rem; /* 48px: logo → social row */
  margin-right: 16rem; /* 256px gap to col 2 */
}

.footer__logo-link {
  display: block;
  line-height: 0;
}

/* Social icons + Login button in one row */
.footer__brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* 24px between icons */
}

.footer__social-link {
  display: block;
  line-height: 0;
  transition: opacity 0.2s ease;
}

.footer__social-link:hover {
  opacity: 0.6;
}

.footer__login-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 3.5rem;
  border-radius: 70px;
  border: 1px solid transparent;
  background:
    linear-gradient(#000, #000) padding-box,
    linear-gradient(90deg, #38BDF8 0%, #8B5CF6 100%) border-box;
  color: #38BDF8;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  height: 48px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  z-index: 0;
  transition: color 0.3s ease;
}

/* Gradient fill layer — fades in on hover */
.footer__login-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 70px;
  background: linear-gradient(90deg, #38BDF8 0%, #8B5CF6 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.footer__login-btn:hover {
  color: #fff;
}

.footer__login-btn:hover::before {
  opacity: 1;
}

/* ============================================================
   COL 2 — Navigation
   gap to col 3: 161px → 160px (10rem)
   ============================================================ */

.footer__col--nav {
  flex-shrink: 0;
  gap: 1rem; /* 16px: heading → list */
  margin-right: 10rem; /* 160px gap to col 3 */
}

.footer__col-heading {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Inter Tight", sans-serif;
  font-size: 1.125rem; /* 18px */
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Inter Tight", sans-serif;
  font-size: 1.125rem; /* 18px */
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__nav-link:hover {
  color: #fff;
}

/* ============================================================
   COL 3 — Legal
   gap to col 4: 135px → 128px (8rem)

   Opacity calculation:
     Designer set opacity: 0.5 on the column
     and opacity: 0.8 on the text.
     Combined: 0.5 × 0.8 = 0.40
     → rgba(255, 255, 255, 0.40)
   ============================================================ */

.footer__col--legal {
  flex-shrink: 0;
  margin-right: 8rem; /* 128px gap to col 4 */
  justify-content: center;
}

.footer__col--legal .footer__nav-list {
  gap: 1rem;
}

.footer__col--legal .footer__nav-link {
  color: rgba(255, 255, 255, 0.4);
}

.footer__col--legal .footer__nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   COL 4 — IFA (center-aligned)
   ============================================================ */

.footer__col--ifa {
  align-items: center;
  text-align: center;
  gap: 1.5rem; /* 24px: text → image */
}

.footer__ifa-text {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Inter Tight", sans-serif;
  font-size: 1.125rem; /* 18px */
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.footer__ifa-img {
  width: 158px;
  height: 165px;
  aspect-ratio: 158 / 165;
  object-fit: contain;
  display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Laptop: ≤ 1680px ── */
@media (max-width: 1680px) {
  .footer__col--brand {
    margin-right: 8rem; /* tighten brand → nav gap */
  }

  .footer__col--nav {
    margin-right: 6rem;
  }

  .footer__col--legal {
    margin-right: 5rem;
  }
}

/* ── Tablet: ≤ 1024px ── */
@media (max-width: 1024px) {
  .footer {
    padding: 5rem 2rem;
  }

  .footer__grid {
    flex-wrap: wrap;
    gap: 3rem;
  }

  .footer__col--brand {
    width: 100%;
    flex-direction: column;
    margin-right: 0;
  }

  .footer__col--nav {
    margin-right: 4rem;
  }

  .footer__col--legal {
    margin-right: 0;
  }

  .footer__col--ifa {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    text-align: left;
  }
}

/* ── Mobile: ≤ 768px ── */
@media (max-width: 768px) {
  .footer {
    padding: 4rem 1.5rem;
  }

  .footer__grid {
    flex-direction: column;
    gap: 2.5rem;
  }

  .footer__col--brand {
    width: 100%;
    margin-right: 0;
  }

  .footer__logo-link svg {
    width: 100%;
    max-width: 280px;
    height: auto;
  }

  .footer__col--nav,
  .footer__col--legal {
    margin-right: 0;
  }

  .footer__col--ifa {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer__login-btn {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }
}

.entry-footer {
  display: none;
}