/* Hero play button — centered above title */
.lf-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0 auto 28px;
  transition: transform 0.2s, opacity 0.2s;
}

.lf-play-btn:hover {
  opacity: 0.8;
  transform: scale(1.08);
}

.lf-play-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.18);
}

.lf-play-btn:hover .lf-play-icon {
  border-color: #fff;
  background: rgba(0, 0, 0, 0.32);
}

/* Lightbox */
.lf-lb {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.lf-lb--open {
  opacity: 1;
  pointer-events: all;
}

.lf-lb-inner {
  position: relative;
  width: min(90vw, 1000px);
  aspect-ratio: 16 / 9;
  transform: scale(0.94);
  transition: transform 0.22s ease;
}

.lf-lb--open .lf-lb-inner {
  transform: scale(1);
}

.lf-lb-video {
  width: 100%;
  height: 100%;
}

.lf-lb-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.lf-lb-close {
  position: absolute;
  top: -44px;
  right: -4px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 6px 10px;
  transition: color 0.15s;
}

.lf-lb-close:hover {
  color: #fff;
}

/* Standalone 3D model video — full row before feat section */
.lf-solo-vid-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 0;
  padding: 0 32px;
  box-sizing: border-box;
}

.lf-solo-vid {
  width: 100%;
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .lf-play-icon {
    width: 60px;
    height: 60px;
  }
  .lf-lb-inner {
    width: 95vw;
  }
}

/* ── Trust section ────────────────────────────────────────── */
.testimonial-section-3 {
  padding-top: 80px !important;
  padding-bottom: 72px;
  background: radial-gradient(ellipse 70% 55% at 50% 30%, rgba(31, 98, 255, 0.07) 0%, transparent 70%), #000 !important;
}

/* Headline */
.lf-trust-intro {
  text-align: center;
  margin-bottom: 52px;
}

.lf-trust-h {
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0;
}

/* Fix award text color on black bg, tighten */
.testimonial-award {
  color: #fff !important;
}

.testimonial-awards {
  margin-bottom: 44px !important;
  gap: 52px !important;
}

/* Hide original text from about-copy section */
.about-copy-copy h1.heading-main {
  display: none;
}

/* Solo video intro text */
.lf-solo-intro {
  text-align: center;
  padding: 72px 24px 40px;
  background: #000;
}

.lf-solo-intro-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 30px;
  font-weight: 400;
  line-height: 57px;
  max-width: 900px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}

/* ── Features section headline ───────────────────────────── */
.lf-feat-title-wrap {
  text-align: center;
  margin-bottom: 80px;
}

.lf-feat-eyebrow {
  color: #1eabc7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.lf-feat-headline {
  font-size: clamp(2.6rem, 4vw, 3.8rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  line-height: 1.1 !important;
  margin: 0 !important;
}

/* ── Logo marquee ─────────────────────────────────────────── */
.lf-logo-strip {
  overflow: hidden;
  padding: 32px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.lf-logo-strip-label {
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

@keyframes lf-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.lf-logo-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  animation: lf-marquee 65s linear infinite;
}

.lf-logo-track:hover {
  animation-play-state: paused;
}

.lf-logo-name {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0 48px;
  transition: color 0.3s;
}

.lf-logo-name:hover {
  color: rgba(255, 255, 255, 0.85);
}

.lf-logo-dot {
  color: rgba(255, 255, 255, 0.2);
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1;
}

/* ── How It Works — luxury glow redesign ─────────────────── */
.process-section {
  padding: 100px 3% 120px !important;
  background:
    radial-gradient(ellipse 70% 50% at 50% -5%, rgba(30, 171, 199, 0.16) 0%, transparent 65%),
    radial-gradient(ellipse 45% 35% at 15% 110%, rgba(30, 171, 199, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 45% 35% at 85% 110%, rgba(30, 171, 199, 0.08) 0%, transparent 70%),
    #000 !important;
  background-image:
    radial-gradient(ellipse 70% 50% at 50% -5%, rgba(30, 171, 199, 0.16) 0%, transparent 65%),
    radial-gradient(ellipse 45% 35% at 15% 110%, rgba(30, 171, 199, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 45% 35% at 85% 110%, rgba(30, 171, 199, 0.08) 0%, transparent 70%) !important;
}

.lf-process-eyebrow {
  color: #1eabc7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.process-heading {
  font-size: clamp(2.6rem, 4vw, 4rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  background: linear-gradient(160deg, #ffffff 30%, rgba(255, 255, 255, 0.65) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.process-title-wrap {
  margin-bottom: 56px !important;
}

.paragraph-111 {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 17px !important;
  line-height: 1.65 !important;
  max-width: 520px;
  margin: 0 auto !important;
}

.process-grid-2 {
  grid-column-gap: 32px !important;
  margin-top: 12px !important;
}

.process-card-primary {
  background: rgba(255, 255, 255, 0.028) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 20px !important;
  padding: 48px 36px !important;
  transition: border-color 0.35s, background 0.35s, box-shadow 0.35s !important;
  position: relative;
}

.process-card-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(30, 171, 199, 0.07) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s;
}

.process-card-primary:hover {
  background: rgba(30, 171, 199, 0.05) !important;
  border-color: rgba(30, 171, 199, 0.25) !important;
  box-shadow: 0 0 48px rgba(30, 171, 199, 0.08), 0 0 1px rgba(30, 171, 199, 0.4) !important;
}

.process-card-primary:hover::before {
  opacity: 1;
}

.feature-icon-square {
  background: linear-gradient(145deg, #1eabc7, #31637a) !important;
  box-shadow:
    0 0 0 7px rgba(30, 171, 199, 0.12),
    0 0 28px rgba(30, 171, 199, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
  border: 1px solid rgba(30, 171, 199, 0.4) !important;
  width: 64px !important;
  height: 64px !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  margin-bottom: 32px !important;
}

.feature-title {
  font-size: 21px !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
  color: #fff !important;
  margin-bottom: 14px !important;
}

.feature-paragraph {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
}

.feature-paragraph strong {
  color: #fff !important;
}

.feature-paragraph .link-33 {
  color: #1eabc7 !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.process-arrow-01 {
  opacity: 0.55 !important;
  filter: none !important;
}
