/* ==========================================================================
   Landing Page
   ========================================================================== */

/* --------------------------------------------------------------------------
   Font variables
   -------------------------------------------------------------------------- */
:root {
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
.ld-body {
  background: linear-gradient(135deg, #fafaf8 0%, #fff7ed 60%, #ffedd5 100%);
  color: var(--color-text-primary);
  font-family: var(--font-body);
}

/* --------------------------------------------------------------------------
   Shared typography helpers
   -------------------------------------------------------------------------- */
.ld-section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
}

.ld-label-primary {
  color: var(--color-primary);
}
.ld-label-light {
  color: var(--color-primary-light);
}

.ld-section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.ld-section-body {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
  font-family: var(--font-body);
}

.ld-text-primary {
  color: var(--color-primary);
}
.ld-text-light {
  color: var(--color-surface);
}
.ld-text-muted {
  color: rgba(255, 255, 255, 0.72);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.ld-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.6rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  transition: all 300ms linear;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1;
}

.ld-btn--primary {
  background-color: var(--color-primary);
  color: var(--color-surface);
  box-shadow: 0 4px 14px var(--color-shadow-accent);
}
.ld-btn--primary:hover {
  background-color: var(--color-primary-hover);
  color: var(--color-surface);
  box-shadow: 0 6px 20px var(--color-shadow-accent);
}

.ld-btn--outline {
  background-color: var(--color-surface);
  border-color: var(--color-text-primary);
  color: var(--color-text-primary);
}
.ld-btn--outline:hover {
  background-color: var(--color-text-primary);
  color: var(--color-surface);
}

.ld-btn--ghost {
  background-color: transparent;
  border-color: var(--color-surface);
  color: var(--color-surface);
}
.ld-btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--color-surface);
}

.ld-btn--pill {
  border-radius: 999px;
}

/* --------------------------------------------------------------------------
   Above fold wrapper (navbar + hero) - Radial gradient
   -------------------------------------------------------------------------- */
.ld-above-fold {
  position: relative;
  overflow-x: clip;
}

.ld-above-fold::after {
  content: "";
  position: absolute;
  right: -115.2px;
  top: -115.2px;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  background: radial-gradient(
    70.71% 70.71% at 50% 50%,
    #ea580c 0%,
    rgba(234, 88, 12, 0) 70%
  );
  opacity: 0.2;
  pointer-events: none;
  z-index: 99;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
header {
  position: sticky;
  top: 0;
  z-index: 1040;
  transition: background-color 0.25s ease;
}

header .ld-navbar {
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

header.is-scrolled .ld-navbar {
  background-color: var(--color-surface);
  border-bottom-color: var(--color-border);
  box-shadow: 0 8px 24px var(--color-shadow);
}

/* --------------------------------------------------------------------------
   NAVBAR
   -------------------------------------------------------------------------- */
.ld-navbar {
  background-color: transparent;
  border-bottom: 1px solid var(--color-border);
  padding: 0.85rem 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 1px 8px var(--color-shadow);
}

.ld-navbar__brand img {
  height: 34px;
  width: auto;
}

.ld-navbar__links {
  gap: 0.25rem;
}

.ld-navbar__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: all 300ms linear;
  line-height: 1.4;
}

.ld-navbar__link:hover,
.ld-navbar__link.active {
  color: var(--color-primary);
}

.ld-navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ld-navbar__login {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  transition: all 300ms linear;
}

.ld-navbar__login:hover {
  color: var(--color-primary);
}

.ld-navbar__cta {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
}

.ld-navbar__toggler {
  border: none;
  padding: 0.4rem;
}

.ld-navbar__toggler-line {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin: 0.22rem 0;
  border-radius: 2px;
  background: var(--color-text-primary);
}

.ld-navbar__toggler:focus {
  box-shadow: none;
}

.ld-navbar--open {
  background: var(--color-surface);
}

.ld-reveal {
  opacity: 1;
  transform: none;
}

.ld-motion-ready .ld-reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 600ms ease,
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ld-motion-ready .ld-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.ld-motion-ready .ld-reveal--from-left {
  transform: translateX(-1.5rem);
}

.ld-motion-ready .ld-reveal--from-right {
  transform: translateX(1.5rem);
}

.ld-motion-ready .ld-reveal--scale {
  transform: scale(0.96);
}

.ld-motion-ready .ld-reveal[data-ld-delay="1"] {
  transition-delay: 90ms;
}
.ld-motion-ready .ld-reveal[data-ld-delay="2"] {
  transition-delay: 180ms;
}
.ld-motion-ready .ld-reveal[data-ld-delay="3"] {
  transition-delay: 270ms;
}

@media (prefers-reduced-motion: reduce) {
  .ld-motion-ready .ld-reveal,
  .ld-motion-ready .ld-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 991.98px) {
  .ld-navbar .navbar-collapse {
    position: fixed;
    top: var(--ld-nav-top, 0px);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1039;
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-0.75rem);
    transition:
      height 300ms ease,
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms ease;
    padding-top: 0.75rem;
  }

  .ld-navbar .navbar-collapse.show,
  .ld-navbar--open .navbar-collapse {
    height: calc(100vh - var(--ld-nav-top, 0px));
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    overflow-y: auto;
    margin-top: 0;
    padding: 1rem;
    background: var(--color-surface);
    box-shadow: 0 12px 24px var(--color-shadow);
  }

  .ld-navbar__links {
    align-items: stretch;
    padding: 0.5rem 0;
    border-top: 1px solid var(--color-border);
  }

  .ld-navbar__link {
    padding: 0.85rem 1rem;
    border-radius: 8px;
    color: var(--color-text-primary);
    transition:
      background-color 180ms ease,
      color 180ms ease;
  }

  .ld-navbar__link:hover,
  .ld-navbar__link:focus {
    background: var(--color-primary-lightest);
    color: var(--color-primary);
  }

  .ld-navbar__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem 0 0.25rem;
  }

  .ld-navbar__login,
  .ld-navbar__cta {
    width: 100%;
    text-align: center;
  }

  .ld-navbar__login {
    padding: 0.85rem 1rem;
    background: var(--color-surface-alt);
  }

  .ld-navbar__cta {
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.ld-hero {
  position: relative;
  padding: 4.5rem 0 0;
}

.ld-hero::before {
  content: "";
  position: absolute;
  bottom: 60px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 237, 212, 0.7) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.ld-eyebrow {
  position: relative;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 0.5rem 1rem;
  padding-left: 1.5rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.ld-eyebrow::before {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 1rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-primary);
  border-radius: 100px;
}

.ld-hero__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

.ld-hero__title--accent {
  color: var(--color-primary);
  color: var(--color-primary);
}

.ld-hero__subtitle {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2rem;
  font-family: var(--font-body);
}

.ld-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.ld-hero__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.ld-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1.2;
}

.ld-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-success);
  flex-shrink: 0;
  transform: translateY(-0.5px);
}

.ld-check svg {
  display: block;
  width: 0.9rem;
  height: 0.9rem;
}

/* ---------- Hero visual ---------- */
.ld-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}

.ld-hero__card-shadow {
  position: absolute;
  width: min(100%, 420px);
  height: 240px;
  border-radius: 24px;
  background: var(--color-surface);
  opacity: 0.8;
  transform: translate(15px, 15px) rotate(10deg);
  box-shadow: 0 25px 50px -12px #ffedd4;
  filter: blur(0.2px);
}

.ld-hero__card {
  position: relative;
  z-index: 2;
  width: min(100%, 420px);
  height: 240px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(231, 229, 228, 0.9);
  border-radius: 22px;
  padding: 1.25rem 1.25rem 1.1rem;
  box-shadow: 0 25px 50px -12px #ffedd4;
  transform: rotate(10deg);
  backdrop-filter: blur(4px);
}

.ld-hero__floating-tag {
  position: absolute;
  z-index: 3;
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
  box-shadow: 0 25px 50px -12px #ffedd4;
  border: 1px solid rgba(231, 229, 228, 0.9);
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.ld-floating-tag__amount {
  font-size: 0.95rem;
  font-weight: 800;
}

.ld-floating-tag__label {
  font-size: 0.7rem;
  margin-top: 0.2rem;
}

.ld-floating-orange-tag__amount {
  color: var(--color-surface);
}

.ld-floating-orange-tag__label {
  color: var(--color-surface);
}

.ld-hero__floating-white-tag__amount {
  color: var(--color-text-primary);
}

.ld-hero__floating-white-tag__label {
  color: var(--color-text-secondary);
}

.ld-hero__orange-floating-tag {
  bottom: 0;
  right: 0;
  background: var(--color-primary);
  transform: translate(-50px, -20px);
  animation: ld-float-orange 4.8s linear infinite;
}

.ld-hero__white-floating-tag {
  top: 0;
  left: 0;
  background: var(--color-surface);
  transform: translate(50px, 20px);
  animation: ld-float-white 5.2s linear infinite;
}

@keyframes ld-float-orange {
  from {
    transform: translate(-50px, -20px) rotate(0deg) translateX(6px) rotate(0deg);
  }
  to {
    transform: translate(-50px, -20px) rotate(360deg) translateX(6px)
      rotate(-360deg);
  }
}

@keyframes ld-float-white {
  from {
    transform: translate(50px, 20px) rotate(0deg) translateX(5px) rotate(0deg);
  }
  to {
    transform: translate(50px, 20px) rotate(-360deg) translateX(5px)
      rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ld-hero__orange-floating-tag,
  .ld-hero__white-floating-tag {
    animation: none;
  }
}

.ld-hero__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ld-hero__card-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
}

.ld-hero__card-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ld-hero__card-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.ld-hero__card-amount {
  margin-top: 0.2rem;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-primary);
  letter-spacing: -0.04em;
}

.ld-hero__card-subtitle {
  margin-top: 0.35rem;
  font-size: 1rem;
  color: var(--color-text-secondary);
  font-style: italic;
}

.ld-hero__card-divider {
  height: 1px;
  background: #e5e1dc;
  margin: 1rem 0 0.9rem;
}

.ld-hero__card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ld-hero__card-grid span {
  display: block;
  font-size: 0.72rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.25rem;
}

.ld-hero__card-grid strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.ld-hero__card-grid .text-end strong {
  letter-spacing: -0.01em;
}

/* ---------- Trusted brand strip ---------- */
.ld-trusted {
  height: 200px;
  margin-top: 3.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  background: transparent;
}

.ld-trusted__label {
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

.ld-brand-slider-wrap {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.ld-brand-track {
  display: flex;
  width: max-content;
  animation: ld-marquee 28s linear infinite;
}

.ld-brand-track:hover {
  animation-play-state: paused;
}

@keyframes ld-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ld-brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.5rem;
  flex-shrink: 0;
}

.ld-brand-item img {
  max-height: 80px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(1);
  transition:
    opacity 0.2s,
    filter 0.2s;
}

.ld-brand-item img:hover {
  opacity: 0.85;
  filter: grayscale(0);
}

/* --------------------------------------------------------------------------
   HIDDEN OPPORTUNITY
   -------------------------------------------------------------------------- */
.ld-opportunity {
  background-color: var(--color-text-primary);
  padding: 5rem 0;
}

.ld-opportunity .ld-section-title {
  color: var(--color-surface);
}

.ld-opp-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  transition: background 0.2s;
}

.ld-opp-card:hover {
  background: rgba(255, 255, 255, 0.11);
}

.ld-opp-icon {
  font-size: 1rem;
  width: 1.8rem;
  height: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.ld-opp-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-surface);
  margin-bottom: 0.5rem;
}

.ld-opp-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------------
   BENEFITS
   -------------------------------------------------------------------------- */
.ld-benefits {
  background-color: var(--color-background);
  padding: 5rem 0;
}

.ld-benefit-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 2px 12px var(--color-shadow);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.ld-benefit-card:hover {
  box-shadow: 0 8px 28px var(--color-shadow);
  transform: translateY(-3px);
}

.ld-benefit-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.ld-benefit-card__sub {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* --------------------------------------------------------------------------
   THE SOLUTION
   -------------------------------------------------------------------------- */
.ld-solution {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  padding: 5rem 0;
  overflow-x: clip;
}

.ld-solution__points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.ld-solution__point {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.ld-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  margin-top: 0.45rem;
}

.ld-solution__point p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.ld-stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px var(--color-shadow);
}

.ld-stat-card__num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--color-text-primary);
  line-height: 1.1;
}

.ld-stat-card__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-top: 0.25rem;
}

.ld-stat-card__sub {
  font-size: 0.72rem;
  color: var(--color-text-secondary);
  margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   HOW IT WORKS
   -------------------------------------------------------------------------- */
.ld-how-works {
  background: var(--color-background);
  padding: 5rem 0;
}

.ld-step {
  text-align: center;
  padding: 2rem 1.25rem;
}

.ld-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-surface);
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 14px var(--color-shadow-accent);
}

.ld-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.ld-step__body {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* --------------------------------------------------------------------------
   TESTIMONIALS
   -------------------------------------------------------------------------- */
.ld-testimonials {
  background: var(--color-surface-alt);
  padding: 5rem 0;
}

.ld-review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1.75rem;
  height: 100%;
  box-shadow: 0 2px 12px var(--color-shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ld-review-card__stars {
  color: var(--color-primary);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.ld-review-card__text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

.ld-review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ld-review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ld-review-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-primary);
}

.ld-review-card__author span {
  font-size: 0.78rem;
  color: var(--color-text-secondary);
}

/* --------------------------------------------------------------------------
   FAQs
   -------------------------------------------------------------------------- */
.ld-faqs {
  background: var(--color-background);
  padding: 5rem 0;
}

.ld-accordion__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.ld-accordion__item .accordion-header {
  margin: 0;
}

.ld-accordion__btn {
  background: var(--color-surface);
  color: var(--color-text-primary);
  font-weight: 700;
  font-size: 0.95rem;
  height: 52px;
  padding: 0 1.4rem;
  border-radius: 10px;
  box-shadow: none;
  display: flex;
  align-items: center;
}

.ld-accordion__btn::after {
  filter: invert(42%) sepia(98%) saturate(1646%) hue-rotate(3deg)
    brightness(100%) contrast(102%);
}

.ld-accordion__btn:not(.collapsed) {
  color: var(--color-primary);
  background: var(--color-primary-lightest);
}

.ld-faq-panel {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 320ms ease,
    opacity 220ms ease;
}

.ld-faq-panel.is-open {
  opacity: 1;
}

.ld-accordion__body {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  padding: 0.5rem 1.4rem 1.25rem;
  background: var(--color-surface);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
footer {
  padding: 4.25rem 0 2.5rem;
  background: var(--color-surface);
  overflow-x: clip;
}

footer .ld-footer > .container > .row {
  row-gap: 2.75rem;
}

footer .ld-footer > .container > .row > [class*="col-"] {
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 992px) {
  footer .ld-footer > .container > .row {
    justify-content: space-between;
  }
}

@media (min-width: 1200px) {
  footer .container {
    max-width: 1160px;
  }
}

footer .ld-footer__logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

footer .ld-footer__logo {
  display: block;
  width: 60px;
  height: auto;
}

footer .ld-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-primary);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

footer .ld-footer__brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
}

footer .ld-footer__brand-name {
  white-space: nowrap;
}

footer .ld-footer__description {
  margin-top: 1rem;
  max-width: 360px;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
}

footer .ld-footer__heading {
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.82rem;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

footer .ld-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .ld-footer__links li + li {
  margin-top: 0.75rem;
}

footer .ld-footer__links a {
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
}

footer .ld-footer__links a:hover {
  color: var(--color-primary-hover);
}

footer .ld-footer__socials {
  display: flex;
  gap: 0.55rem;
}

footer .ld-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

footer .ld-footer__socials a:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-surface);
  transform: translateY(-2px);
}

footer .ld-footer__video-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-primary);
  font-weight: 700;
}

footer .ld-footer__video-link i {
  font-size: 0.9rem;
}

footer .ld-footer__divider {
  margin: 3.5rem 0 1.5rem;
  border-top: 1px solid var(--color-border);
}

footer .ld-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

footer .ld-footer__bottom p {
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 767.98px) {
  footer .ld-footer > .container > .row > [class*="col-"] + [class*="col-"] {
    margin-top: 0.5rem;
  }

  footer .ld-footer__divider {
    margin-top: 2.75rem;
  }
}

@media (max-width: 991.98px) {
  footer {
    padding-top: 3.5rem;
  }

  footer .ld-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --------------------------------------------------------------------------
   CTA BOTTOM BANNER
   -------------------------------------------------------------------------- */
.ld-cta-bottom {
  background: linear-gradient(
    135deg,
    var(--color-text-primary) 0%,
    #2c1f1a 100%
  );
  padding: 5.5rem 0;
}

.ld-cta-bottom__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--color-surface);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.ld-cta-bottom__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.ld-cta-bottom__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .ld-hero {
    padding: 3.5rem 0 0;
    text-align: center;
  }

  .ld-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .ld-hero__actions {
    justify-content: center;
  }
  .ld-hero__trust {
    justify-content: center;
  }
  .ld-hero__visual {
    margin-top: 2.5rem;
    justify-content: center;
    min-height: 300px;
  }

  .ld-hero__card {
    transform: rotate(6deg);
  }

  .ld-hero__card-shadow {
    transform: translate(12px, 16px) rotate(6deg);
  }

  .ld-hero__white-floating-tag {
    transform: translate(8px, 8px);
    animation: ld-float-white-md 4.8s linear infinite;
  }

  .ld-hero__orange-floating-tag {
    transform: translate(-8px, -2px);
    animation: ld-float-orange-md 4.4s linear infinite;
  }

  .ld-navbar__actions {
    margin-top: 0.75rem;
  }

  .ld-solution__point {
    font-size: 0.9rem;
  }
}

@keyframes ld-float-orange-md {
  from {
    transform: translate(-8px, -2px) rotate(0deg) translateX(4px) rotate(0deg);
  }
  to {
    transform: translate(-8px, -2px) rotate(360deg) translateX(4px)
      rotate(-360deg);
  }
}

@keyframes ld-float-white-md {
  from {
    transform: translate(8px, 8px) rotate(0deg) translateX(4px) rotate(0deg);
  }
  to {
    transform: translate(8px, 8px) rotate(-360deg) translateX(4px)
      rotate(360deg);
  }
}

@media (max-width: 767.98px) {
  .ld-navbar .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .ld-hero__floating-tag {
    display: none;
  }

  .ld-hero__visual {
    min-height: 260px;
  }

  .ld-hero__card,
  .ld-hero__card-shadow {
    width: 100%;
    max-width: 340px;
  }

  .ld-cta-bottom__actions {
    flex-direction: column;
    align-items: center;
  }
}

/* --------------------------------------------------------------------------
   How It Works
   -------------------------------------------------------------------------- */
.ld-how {
  background: var(--color-surface);
}

.ld-how__hero {
  padding: 4.75rem 0 4.25rem;
  background: var(--color-surface-alt);
}

.ld-how__hero .ld-eyebrow {
  margin-bottom: 1rem;
}

.ld-hero-color {
  background: linear-gradient(
    180deg,
    #faf9f6 0%,
    #fef9f2 50%,
    #fdf5eb 100%
  ) !important;
}

body.ld-how > .ld-header,
body.ld-pricing > .ld-header,
body.ld-features > .ld-header,
body.ld-about > .ld-header,
body.ld-privacy > .ld-header,
body.ld-contact > .ld-header {
  position: sticky;
  top: 0;
  width: 100%;
}

.ld-hero-color {
  margin-top: -75px;
}

.ld-how__hero {
  padding-top: calc(4.75rem + 75px);
}
.ld-pricing__hero {
  padding-top: calc(3.75rem + 75px);
}
.ld-features__hero {
  padding-top: calc(4.5rem + 75px);
}
.ld-about__hero {
  padding-top: calc(4.5rem + 75px);
}
.ld-privacy__hero {
  padding-top: calc(4.5rem + 75px);
}
.ld-contact__hero {
  padding-top: calc(3.75rem + 75px);
}

.ld-how__hero-title {
  margin: 0 0 0.8rem;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
}

.ld-how__hero-title span {
  color: var(--color-primary);
}

.ld-how .ld-section-label,
.ld-pricing .ld-section-label,
.ld-faq .ld-section-label,
.ld-features .ld-section-label,
.ld-about .ld-section-label,
.ld-privacy .ld-section-label,
.ld-contact .ld-section-label,
.ld-signup .ld-section-label {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border: 1px solid #fdba74;
  border-radius: 999px;
  background: var(--color-primary-lightest);
  color: var(--color-primary);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.ld-pricing__intro h1 span,
.ld-features__hero h1 span,
.ld-about__hero-title span,
.ld-privacy__hero-title span,
.ld-contact__hero h1 span {
  color: var(--color-primary);
}

.ld-how__hero-copy {
  max-width: 710px;
  margin: 0 auto 1.75rem;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.ld-how__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.ld-how__steps,
.ld-how__tools,
.ld-how__solutions {
  padding: 4.75rem 0;
}

.ld-how__tools {
  background: var(--color-surface-alt);
}

.ld-how__heading {
  margin-bottom: 2.2rem;
}

.ld-how__heading .ld-section-label,
.ld-how__solutions > .container > .ld-section-label {
  margin-bottom: 0.5rem;
}

.ld-how__step-card {
  height: 100%;
  padding: 1.7rem;
  border-radius: 8px;
  background: var(--color-surface-alt);
}

.ld-how__number,
.ld-how__tool-card > i,
.ld-how__solution-card > i,
.ld-how__stats i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-surface);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 700;
}

.ld-how h3 {
  margin: 1rem 0 0.7rem;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.15;
}

.ld-how__step-card p,
.ld-how__tool-card p,
.ld-how__solution-card p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 0.8rem;
  line-height: 1.65;
}

.ld-how__tool-card {
  height: 100%;
  padding: 1.35rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 0 8px 16px var(--color-shadow);
}

.ld-how__tool-card > i,
.ld-how__solution-card > i,
.ld-how__stats i {
  width: 1.9rem;
  height: 1.9rem;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 0.78rem;
}

.ld-how__tool-card h3 {
  min-height: 2.4em;
  font-size: 0.9rem;
}

.ld-how__solutions {
  background: var(--color-surface);
}

.ld-how__solution-card {
  height: 100%;
  padding: 1.35rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff8ee;
  box-shadow: 0 8px 16px var(--color-shadow);
}

.ld-how__solution-card h3 {
  min-height: 3.5em;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.ld-how__stats {
  padding: 2.8rem 0;
  background: #fff5e8;
}

.ld-how__stats i {
  display: flex;
  margin: 0 auto 0.65rem;
}

.ld-how__stats strong,
.ld-how__stats span {
  display: block;
}

.ld-how__stats strong {
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.1;
}

.ld-how__stats span {
  margin-top: 0.25rem;
  color: var(--color-text-secondary);
  font-size: 0.75rem;
}

.ld-how__cta {
  padding: 4.75rem 0;
  background: var(--color-text-primary);
}

.ld-how__cta h2 {
  max-width: 620px;
  margin: 0 auto 1rem;
  color: var(--color-surface);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.08;
}

.ld-how__cta > .container > p:not(.ld-section-label) {
  max-width: 550px;
  margin: 0 auto 1.6rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.7;
}

@media (max-width: 767.98px) {
  .ld-how__hero,
  .ld-how__steps,
  .ld-how__tools,
  .ld-how__solutions,
  .ld-how__cta {
    padding: 3.5rem 0;
  }

  .ld-how__step-card,
  .ld-how__tool-card,
  .ld-how__solution-card {
    padding: 1.25rem;
  }

  .ld-how__tool-card h3,
  .ld-how__solution-card h3 {
    min-height: 0;
  }

  .ld-how__stats {
    padding: 2.5rem 0;
  }
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.ld-pricing {
  background: linear-gradient(180deg, #faf9f6 0%, #fef9f2 50%, #fdf5eb 100%);
}

.ld-pricing__hero {
  padding: 3.75rem 0 4.5rem;
  background: transparent;
}

.ld-pricing__intro {
  max-width: 690px;
  margin: 0 auto 1.75rem;
}

.ld-pricing__intro .ld-eyebrow {
  margin-bottom: 1rem;
}

.ld-pricing__intro h1 {
  margin: 0 0 0.8rem;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.35rem);
  font-weight: 900;
  line-height: 1.08;
}

.ld-pricing__intro > p:not(.ld-eyebrow) {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.ld-pricing__guarantee {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 610px;
  margin: 0 auto 2.2rem;
  padding: 0.75rem 1rem;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  background: var(--color-primary-lightest);
  text-align: left;
}

.ld-pricing__card--featured.is-visible {
  box-shadow: 0 22px 38px var(--color-shadow-warm);
}

.ld-pricing__guarantee > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-surface);
  font-size: 0.9rem;
}

.ld-pricing__guarantee strong,
.ld-pricing__guarantee span {
  display: block;
}

.ld-pricing__guarantee strong {
  color: var(--color-text-primary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ld-pricing__guarantee span {
  margin-top: 0.15rem;
  color: var(--color-text-secondary);
  font-size: 0.64rem;
  line-height: 1.35;
}

.ld-pricing__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 475px;
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
  box-shadow: 0 14px 28px var(--color-shadow);
}

@keyframes ld-pricing-plan-in {
  from {
    opacity: 0;
    transform: translateY(1.5rem) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.ld-motion-ready .ld-pricing__card {
  animation: ld-pricing-plan-in 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ld-motion-ready .ld-pricing__hero .col-lg-4:nth-child(2) .ld-pricing__card {
  animation-delay: 100ms;
}
.ld-motion-ready .ld-pricing__hero .col-lg-4:nth-child(3) .ld-pricing__card {
  animation-delay: 200ms;
}

.ld-pricing__card--featured {
  border: 2px solid var(--color-primary);
  box-shadow: 0 18px 30px var(--color-shadow-warm);
}

.ld-pricing__popular {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.26rem 0.75rem;
  border-radius: 10px;
  background: var(--color-primary);
  color: var(--color-surface);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.ld-pricing__card h2 {
  margin: 0 0 0.75rem;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.ld-pricing__audience {
  min-height: 2.5em;
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 0.68rem;
  line-height: 1.4;
}

.ld-pricing__price {
  margin: 0.75rem 0 0;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.ld-pricing__price span {
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 500;
}

.ld-pricing__price--enterprise {
  font-size: 1.55rem;
}

.ld-pricing__fee {
  min-height: 1.2em;
  margin: 0.3rem 0 0;
  color: var(--color-primary);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.ld-pricing__divider {
  height: 1px;
  margin: 1rem 0;
  background: var(--color-border);
}

.ld-pricing__included {
  margin: 0 0 0.65rem;
  color: var(--color-text-secondary);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.ld-pricing__features {
  display: grid;
  gap: 0.56rem;
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
}

.ld-pricing__features li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--color-text-primary);
  font-size: 0.67rem;
  line-height: 1.25;
}

.ld-pricing__features li::before {
  position: absolute;
  top: 0.04rem;
  left: 0;
  color: var(--color-primary);
  content: "\2713";
  font-size: 0.72rem;
  font-weight: 700;
}

.ld-pricing__button {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--color-text-primary);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: all 200ms ease;
}

.ld-pricing__button--outline {
  border-color: var(--color-text-primary);
}
.ld-pricing__button--outline:hover {
  background: var(--color-text-primary);
  color: var(--color-surface);
}
.ld-pricing__button--primary {
  background: var(--color-primary);
  color: var(--color-surface);
}
.ld-pricing__button--primary:hover {
  background: var(--color-primary-hover);
  color: var(--color-surface);
}
.ld-pricing__button--dark {
  background: var(--color-text-primary);
  color: var(--color-surface);
}
.ld-pricing__button--dark:hover {
  background: var(--color-primary);
  color: var(--color-surface);
}

@media (max-width: 991.98px) {
  .ld-pricing__card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ld-motion-ready .ld-pricing__card {
    animation: none;
  }
}

@media (max-width: 767.98px) {
  .ld-pricing__hero {
    padding: 3rem 0;
  }

  .ld-pricing__intro h1 br {
    display: none;
  }

  .ld-pricing__guarantee {
    align-items: flex-start;
  }

  .ld-pricing__card {
    padding: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   Features
   -------------------------------------------------------------------------- */
.ld-features__hero {
  padding: 4.5rem 0 3.75rem;
  text-align: center;
  background: var(--color-surface-alt);
}

.ld-features__hero .ld-eyebrow {
  margin-bottom: 1rem;
}

.ld-features__hero h1 {
  margin: 0 0 0.85rem;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
}

.ld-features__hero-rule {
  display: block;
  width: 64px;
  height: 3px;
  margin: 0 auto 1.25rem;
  border-radius: 2px;
  background: var(--color-primary);
}

.ld-features__hero > .container > p:not(.ld-eyebrow) {
  max-width: 620px;
  margin: 0 auto;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
}

.ld-features__hero .ld-eyebrow {
  max-width: none;
  margin: 0 0 1rem;
  padding: 0.5rem 1rem 0.5rem 1.5rem;
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: left;
}

.ld-capabilities {
  padding: 4.5rem 0;
  background: var(--color-surface);
}

.ld-capabilities--alt {
  background: var(--color-surface-alt);
}

.ld-capabilities__heading {
  max-width: 640px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.ld-capabilities__heading .ld-section-body {
  color: var(--color-text-secondary);
}

.ld-capability-card {
  height: 100%;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-surface);
  box-shadow: 0 8px 18px var(--color-shadow);
}

.ld-capability-card h3 {
  margin: 0 0 0.6rem;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.ld-capability-card p {
  margin: 0;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.65;
}

.ld-features__cta {
  padding: 4.5rem 0;
  background: var(--color-text-primary);
  text-align: center;
}

.ld-features__cta h2 {
  margin: 0 0 0.85rem;
  color: var(--color-surface);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
}

.ld-features__cta-rule {
  display: block;
  width: 64px;
  height: 3px;
  margin: 0 auto 1rem;
  border-radius: 2px;
  background: var(--color-primary);
}

.ld-features__cta p {
  max-width: 520px;
  margin: 0 auto 1.6rem;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.7;
}

@media (max-width: 767.98px) {
  .ld-features__hero {
    padding: 3.25rem 0 3rem;
  }

  .ld-capabilities {
    padding: 3.25rem 0;
  }

  .ld-features__cta {
    padding: 3.25rem 0;
  }
}

/* --------------------------------------------------------------------------
   Who Uses TGCC
   -------------------------------------------------------------------------- */
.ld-whouses {
  padding: 4.5rem 0;
  background: var(--color-primary-light);
}

.ld-whouses__header {
  margin-bottom: 2rem;
}

.ld-whouses__header .ld-section-title {
  margin-bottom: 0.5rem;
}

.ld-whouses__header .ld-section-body {
  max-width: 560px;
  color: var(--color-text-secondary);
}

.ld-whouses__nav {
  display: inline-flex;
  gap: 0.6rem;
}

.ld-whouses__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-text-primary);
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: 0 6px 14px var(--color-shadow);
  transition:
    background-color 200ms ease,
    color 200ms ease;
}

.ld-whouses__arrow--next {
  background: var(--color-primary);
  color: var(--color-surface);
}

.ld-whouses__arrow:hover {
  background: var(--color-primary-hover);
  color: var(--color-surface);
}

.ld-whouses__arrow.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.ld-whouses__carousel .swiper-slide {
  height: auto;
}

.ld-whouses__card {
  height: 100%;
  padding: 1.5rem;
  border-radius: 12px;
  background: var(--color-surface);
  box-shadow: 0 10px 22px var(--color-shadow);
}

.ld-whouses__tag {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ld-whouses__card h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.ld-whouses__card h3 a {
  color: var(--color-text-primary);
  text-decoration: none;
}

.ld-whouses__card h3 a:hover {
  color: var(--color-primary);
}

.ld-whouses__location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 0.8rem;
}

.ld-whouses__location svg {
  flex-shrink: 0;
  color: var(--color-text-secondary);
}

@media (max-width: 991.98px) {
  .ld-whouses__nav {
    margin-top: 1.25rem;
  }
}

/* --------------------------------------------------------------------------
   About Us
   -------------------------------------------------------------------------- */
.ld-about__hero {
  padding: 4.5rem 0 3.5rem;
  background: var(--color-surface-alt);
}

.ld-about__hero .ld-eyebrow {
  margin-bottom: 1rem;
}

.ld-about__hero-title {
  margin: 0 0 1rem;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
}

.ld-about__hero-rule {
  display: block;
  width: 64px;
  height: 3px;
  margin: 0 auto 1.25rem;
  border-radius: 2px;
  background: var(--color-primary);
}

.ld-about__hero-copy {
  max-width: 620px;
  margin: 0 auto;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.7;
}

.ld-about__belief {
  padding: 4.5rem 0;
  background: var(--color-surface);
}

.ld-about__belief h2 {
  max-width: 780px;
  margin: 0 0 1.75rem;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
  line-height: 1.3;
}

.ld-about__belief p {
  margin: 0;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.75;
}

.ld-about__solution {
  padding: 4.75rem 0;
  overflow-x: clip;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}

.ld-about__engine-card {
  padding: 1.75rem;
  border-radius: 14px;
  background: var(--color-surface);
  box-shadow: 0 16px 32px var(--color-shadow);
}

.ld-about__engine-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.ld-about__engine-tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ld-about__engine-arrow {
  color: var(--color-primary);
  font-size: 1.1rem;
  line-height: 1;
}

.ld-about__engine-card h3 {
  margin: 0 0 0.6rem;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.ld-about__engine-card > p {
  margin: 0 0 1.15rem;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.65;
}

.ld-about__engine-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ld-about__engine-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
}

.ld-about__solution-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.ld-about__solution-note {
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
}

.ld-about__mission {
  padding: 4.75rem 0;
  background: var(--color-surface);
}

.ld-about__mission-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  border-radius: 16px;
  background: var(--color-primary-lightest);
}

.ld-about__mission-card blockquote {
  max-width: 720px;
  margin: 0 auto 1rem;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.45;
}

.ld-about__mission-card cite {
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-style: normal;
}

@media (max-width: 767.98px) {
  .ld-about__hero {
    padding: 3.25rem 0 2.75rem;
  }

  .ld-about__belief,
  .ld-about__solution,
  .ld-about__mission {
    padding: 3.25rem 0;
  }

  .ld-about__mission-card {
    padding: 2.25rem 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   Privacy Policy
   -------------------------------------------------------------------------- */
.ld-privacy__hero {
  padding: 4.5rem 0 3.5rem;
  background: var(--color-surface-alt);
}

.ld-privacy__hero .ld-eyebrow {
  margin-bottom: 1rem;
}

.ld-privacy__hero-title {
  margin: 0 0 1rem;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  font-weight: 900;
  line-height: 1.1;
}

.ld-privacy__hero-copy {
  max-width: 560px;
  margin: 0 auto;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
}

.ld-privacy {
  background: linear-gradient(180deg, #faf9f6 0%, #fef9f2 50%, #fdf5eb 100%);
}

.ld-privacy__content {
  padding: 3.5rem 0 4.75rem;
  background: transparent;
}

.ld-privacy__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.ld-privacy__card {
  padding: 1.75rem 2rem;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--color-surface);
  box-shadow: 0 6px 16px var(--color-shadow);
}

.ld-privacy__card--highlight {
  border-color: transparent;
}

.ld-privacy__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.85rem;
  border-radius: 8px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 0.9rem;
}

.ld-privacy__card h3 {
  margin: 0 0 0.75rem;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.ld-privacy__card p {
  margin: 0 0 0.85rem;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.7;
}

.ld-privacy__card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .ld-privacy__hero {
    padding: 3.25rem 0 2.75rem;
  }

  .ld-privacy__content {
    padding: 2.75rem 0 3.5rem;
  }

  .ld-privacy__card {
    padding: 1.4rem 1.5rem;
  }
}

/* --------------------------------------------------------------------------
    Landing Typography
    -------------------------------------------------------------------------- */
.ld-how,
.ld-pricing,
.ld-faq,
.ld-features,
.ld-about,
.ld-privacy,
.ld-contact,
.ld-signup,
.ld-login {
  font-family: var(--font-body);
}

.ld-how h1,
.ld-how h2,
.ld-how h3,
.ld-how h4,
.ld-how h5,
.ld-how h6,
.ld-pricing h1,
.ld-pricing h2,
.ld-pricing h3,
.ld-pricing h4,
.ld-pricing h5,
.ld-pricing h6,
.ld-faq h1,
.ld-faq h2,
.ld-faq h3,
.ld-faq h4,
.ld-faq h5,
.ld-faq h6,
.ld-features h1,
.ld-features h2,
.ld-features h3,
.ld-features h4,
.ld-features h5,
.ld-features h6,
.ld-about h1,
.ld-about h2,
.ld-about h3,
.ld-about h4,
.ld-about h5,
.ld-about h6,
.ld-privacy h1,
.ld-privacy h2,
.ld-privacy h3,
.ld-privacy h4,
.ld-privacy h5,
.ld-privacy h6,
.ld-contact h1,
.ld-contact h2,
.ld-contact h3,
.ld-contact h4,
.ld-contact h5,
.ld-contact h6,
.ld-signup h1,
.ld-signup h2,
.ld-signup h3,
.ld-signup h4,
.ld-signup h5,
.ld-signup h6,
.ld-login h1,
.ld-login h2,
.ld-login h3,
.ld-login h4,
.ld-login h5,
.ld-login h6 {
  font-family: var(--font-display);
}

.ld-how p,
.ld-how a,
.ld-how li,
.ld-how label,
.ld-how input,
.ld-how select,
.ld-how textarea,
.ld-how button,
.ld-pricing p,
.ld-pricing a,
.ld-pricing li,
.ld-pricing label,
.ld-pricing input,
.ld-pricing select,
.ld-pricing textarea,
.ld-pricing button,
.ld-faq p,
.ld-faq a,
.ld-faq li,
.ld-faq label,
.ld-faq input,
.ld-faq select,
.ld-faq textarea,
.ld-faq button,
.ld-features p,
.ld-features a,
.ld-features li,
.ld-features label,
.ld-features input,
.ld-features select,
.ld-features textarea,
.ld-features button,
.ld-about p,
.ld-about a,
.ld-about li,
.ld-about label,
.ld-about input,
.ld-about select,
.ld-about textarea,
.ld-about button,
.ld-privacy p,
.ld-privacy a,
.ld-privacy li,
.ld-privacy label,
.ld-privacy input,
.ld-privacy select,
.ld-privacy textarea,
.ld-privacy button,
.ld-contact p,
.ld-contact a,
.ld-contact li,
.ld-contact label,
.ld-contact input,
.ld-contact select,
.ld-contact textarea,
.ld-contact button,
.ld-signup p,
.ld-signup a,
.ld-signup li,
.ld-signup label,
.ld-signup input,
.ld-signup select,
.ld-signup textarea,
.ld-signup button,
.ld-login p,
.ld-login a,
.ld-login li,
.ld-login label,
.ld-login input,
.ld-login select,
.ld-login textarea,
.ld-login button {
  font-family: var(--font-body);
}

.ld-how__hero,
.ld-pricing__hero,
.ld-features__hero,
.ld-about__hero,
.ld-privacy__hero,
.ld-contact__hero {
  background: var(--color-surface-alt);
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.ld-form-control {
  display: block;
  width: 100%;
  min-height: 2.8rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  outline: none;
  background: var(--color-surface);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.4;
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease;
}

textarea.ld-form-control {
  min-height: 7rem;
  resize: vertical;
}

.ld-form-control::placeholder {
  color: #a8a29e;
}

.ld-form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.ld-contact__hero {
  padding: 3.75rem 0;
  background: var(--color-surface-alt);
}

.ld-contact__hero .ld-eyebrow {
  margin-bottom: 1rem;
}

.ld-contact__hero h1 {
  margin: 0 0 0.85rem;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  font-weight: 900;
  line-height: 1.1;
}

.ld-contact__hero > .container > p:not(.ld-eyebrow) {
  max-width: 550px;
  margin: 0 auto;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
}

.ld-contact__content {
  padding: 4.25rem 0;
  overflow-x: clip;
  background: var(--color-surface);
}

.ld-contact__title {
  margin: 0 0 1.25rem;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}

.ld-contact__form-wrap {
  max-width: 620px;
  margin: 0 auto;
}

.ld-contact__form label {
  display: block;
  margin: 0 0 0.35rem;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
}

.ld-contact__captcha {
  margin-top: 0.15rem;
}

.ld-contact__captcha p {
  margin: 0 0 0.85rem;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.7rem;
}

.ld-contact__captcha .text-danger {
  color: var(--color-primary) !important;
}

.ld-contact__captcha img {
  vertical-align: middle;
  margin-right: 0.5rem;
}

.ld-contact__captcha .txbx {
  display: inline-block;
  width: 10rem;
  min-height: 2.6rem;
  margin-top: 0.5rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.78rem;
}

.ld-contact__captcha input[type="submit"] {
  margin-top: 0.2rem;
}

.ld-contact__aside {
  padding-left: 2rem;
}

.ld-contact__support-block {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.ld-contact__support-block:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.ld-contact__support-block p {
  margin: 0 0 1rem;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.65;
}

.ld-contact__support-block a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.ld-contact__notice {
  padding: 0.85rem 1rem;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  background: var(--color-primary-lightest);
  color: var(--color-primary);
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .ld-contact__aside {
    padding-left: 0.75rem;
  }
}

@media (max-width: 767.98px) {
  .ld-contact__hero {
    padding: 3.25rem 0;
  }

  .ld-contact__content {
    padding: 3.25rem 0;
  }

  .ld-contact__aside {
    padding-left: 0.75rem;
  }
}

/* --------------------------------------------------------------------------
   Merchant Login
   -------------------------------------------------------------------------- */
.ld-login {
  background: var(--color-surface-alt);
}

.ld-login__header {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.ld-login__header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 0;
}

.ld-login .ld-navbar__actions {
  display: none;
}

.ld-login__brand img {
  display: block;
  width: 174px;
  height: auto;
}

.ld-login__phone {
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}

.ld-login__phone i {
  margin-right: 0.35rem;
  color: var(--color-text-secondary);
}

.ld-login__main {
  min-height: calc(100vh - 4rem);
  padding: 6.5rem 0;
  overflow-x: clip;
}

.ld-login__welcome {
  position: relative;
  min-height: 30rem;
  padding: 3.5rem 3.75rem;
  overflow: hidden;
  border-radius: 20px;
  background: var(--color-primary-lightest);
}

.ld-login__welcome h1 {
  position: relative;
  z-index: 1;
  margin: 1rem 0 1.15rem;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.45rem);
  font-weight: 900;
  line-height: 1.05;
}

.ld-login__welcome > p:last-of-type {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 1rem 0 0 0;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
}

.ld-login__rule {
  position: relative;
  z-index: 1;
  display: block;
  width: 72px;
  height: 3px;
  border-radius: 2px;
  background: var(--color-primary);
}

.ld-login__mark {
  position: absolute;
  right: 3.25rem;
  bottom: 2.25rem;
  display: grid;
  width: 8rem;
  height: 8rem;
  place-items: center;
  border-radius: 50%;
  background: #ffdfb5;
  z-index: 0;
  pointer-events: none;
}

.ld-login__mark span {
  display: grid;
  width: 5rem;
  height: 5rem;
  place-items: center;
  transform: rotate(-8deg);
  border-radius: 18px;
  background: #f7a264;
  color: var(--color-surface);
  font-size: 2rem;
}

.ld-login__card {
  padding: 2.75rem 2.5rem;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-surface);
  box-shadow: 0 18px 36px var(--color-shadow);
}

.ld-login__card h2 {
  margin: 0 0 0.7rem;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.05;
}

.ld-login__intro {
  margin: 0 0 1.75rem;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.6;
}

.ld-login__error {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  background: #fff1f2;
  color: #b42318;
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.45;
}

.ld-recover__main .ld-login__card {
  min-height: 28rem;
}

.ld-recover__success {
  margin-bottom: 1.25rem;
  padding: 1rem;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  background: #f0fdf4;
  color: #166534;
  font-family: var(--font-body);
  font-size: 0.76rem;
  line-height: 1.5;
}

.ld-recover__success a {
  color: #166534;
  font-weight: 700;
}

.ld-login__form label {
  display: block;
  margin: 0 0 0.4rem;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
}

.ld-login__input {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.8rem;
  margin-bottom: 1rem;
  padding: 0 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 9px;
  background: var(--color-surface);
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.ld-login__input:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.ld-login__input i {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
}

.ld-login__input input {
  width: 100%;
  padding: 0.75rem 0;
  border: 0;
  outline: 0;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.8rem;
}

.ld-login__input input::placeholder {
  color: #a8a29e;
}

.ld-login__submit {
  width: 100%;
  margin-top: 0.35rem;
}

.ld-login__forgot {
  margin: 1.35rem 0 1.6rem;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-align: center;
}

.ld-login__forgot a {
  color: var(--color-text-primary);
  font-weight: 600;
}

.ld-login__secure {
  margin: 0;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-align: center;
}

.ld-login__secure i {
  margin-right: 0.35rem;
}

@media (max-width: 991.98px) {
  .ld-login__main {
    padding: 4rem 0;
  }

  .ld-login__welcome {
    min-height: 24rem;
  }
}

@media (max-width: 767.98px) {
  .ld-login__main .row {
    margin-right: 0;
    margin-left: 0;
  }

  .ld-login__brand img {
    width: 150px;
  }

  .ld-login__phone {
    font-size: 0.7rem;
  }

  .ld-login__main {
    padding: 2rem 0 3rem;
  }

  .ld-login__welcome {
    min-height: 23rem;
    padding: 2.25rem 1.5rem;
  }

  .ld-login__welcome h1 {
    font-size: 2.35rem;
  }

  .ld-login__mark {
    right: 1.5rem;
    bottom: 1.5rem;
  }

  .ld-login__card {
    padding: 2rem 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   Signup Forms
   -------------------------------------------------------------------------- */
.ld-signup {
  background: var(--color-surface-alt);
  color: var(--color-text-primary);
  font-family: var(--font-body);
}
.ld-signup__page {
  min-height: 100vh;
  overflow-x: clip;
  background: transparent;
}
.ld-signup__page::before,
.ld-signup__page::after,
.ld-signup__page .page-content::before,
.ld-signup__page .page-content::after {
  display: none;
}
.ld-signup__page .page-content {
  max-width: 980px;
  padding: 3.5rem 1rem 5rem;
  margin: 0 auto;
}
.ld-signup__page .vertical-space2,
.ld-signup__page .vertical-space5,
.ld-signup__page .white-space {
  display: none;
}
.ld-signup__page .seven.columns {
  width: 100%;
  margin: 0 0 1.5rem;
  text-align: center;
}
.ld-signup__page .seven.columns h3 {
  margin: 0 0 1rem;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 900;
}
.ld-signup__page .progress {
  max-width: 500px;
  height: 0.45rem;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 999px;
  background: var(--color-primary-light);
}
.ld-signup__page .progress .bar {
  width: 35%;
  height: 100%;
  padding: 0;
  border-radius: inherit;
  background: var(--color-primary);
  color: transparent;
}
.ld-signup__page .eight.columns,
.ld-signup__page .sixteen.columns {
  position: static;
  float: none;
  width: 100%;
  margin: 0 auto 1.25rem;
}
.ld-signup__page .contact-form2,
.ld-signup__page .contact-form,
.ld-signup__page .well,
.ld-signup__page .erabox {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
  box-shadow: 0 10px 24px var(--color-shadow);
}
.ld-signup__page .eight.columns.contact-form2 {
  display: block;
  float: none;
  width: 660px;
  max-width: 100%;
  min-width: 0;
  padding: 1.25rem 1.5rem;
  margin: 0 auto 1.25rem;
}
.ld-signup__page .contact-form {
  display: block;
  float: none;
  width: 820px;
  max-width: 100%;
  min-width: 0;
  padding: 1.5rem;
  margin: 0 auto;
}
.ld-signup__page .well,
.ld-signup__page .erabox {
  padding: 1.5rem;
  margin: 0 0 1.25rem;
}
.ld-signup__page .well h4,
.ld-signup__page .erabox h5,
.ld-signup__page .contact-form2 h5 {
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-weight: 700;
}
.ld-signup__page .well h4 {
  margin: 0 0 0.9rem;
  font-size: 1.15rem;
}
.ld-signup__page .erabox h5,
.ld-signup__page .contact-form2 h5 {
  margin: 0.9rem 0 0.35rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
}
.ld-signup__page .erabox h5:first-child {
  margin-top: 0;
}
.ld-signup__page small {
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
}
.ld-signup__page .check {
  padding-left: 1.1rem;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.7;
}
.ld-signup__page .check li::marker {
  color: var(--color-primary);
}

.ld-signup__page input[type="checkbox"] {
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  margin: 0 0.45rem 0 0;
  vertical-align: middle;
  appearance: auto;
  -webkit-appearance: checkbox;
  accent-color: var(--color-primary);
}
.ld-signup__page .txbx,
.ld-signup__page .referral,
.ld-signup__page select,
.ld-signup__page input[type="text"],
.ld-signup__page input[type="email"] {
  display: block;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  outline: none;
  background: var(--color-surface);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  box-sizing: border-box;
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease;
}
.ld-signup__page .txbx:focus,
.ld-signup__page .referral:focus,
.ld-signup__page select:focus,
.ld-signup__page input[type="text"]:focus,
.ld-signup__page input[type="email"]:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}
.ld-signup__page .sendbtn,
.ld-signup__page input[type="submit"],
.ld-signup__page button.green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.7rem 1.35rem;
  border: 0;
  border-radius: 8px;
  background: var(--color-primary) !important;
  color: var(--color-surface) !important;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 200ms ease,
    transform 200ms ease;
}
.ld-signup__page .sendbtn:hover,
.ld-signup__page input[type="submit"]:hover,
.ld-signup__page button.green:hover {
  background: var(--color-primary-hover) !important;
  color: var(--color-surface) !important;
  transform: translateY(-1px);
}
.ld-signup__page .alert-success,
.ld-signup__page .alert-error {
  padding: 0.75rem 1rem;
  margin: 0.75rem 0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
}
.ld-signup__page .alert-success {
  background: #f0fdf4;
  color: #166534;
}
.ld-signup__page .alert-error {
  background: #fff1f2;
  color: #b42318;
}
.ld-signup__page a {
  color: var(--color-primary);
}
.ld-signup__page .aligncenter {
  text-align: center;
}
.ld-signup__page .aligncenter h3 {
  margin: 0 0 0.75rem;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: 1.65rem;
}
.ld-signup__page .aligncenter h4 {
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

@media (max-width: 767.98px) {
  .ld-signup__page .page-content {
    padding: 2.5rem 0.75rem 3.5rem;
  }
  .ld-signup__page .contact-form,
  .ld-signup__page .contact-form2,
  .ld-signup__page .well,
  .ld-signup__page .erabox {
    padding: 1.15rem;
  }
  .ld-signup__page .sendbtn,
  .ld-signup__page input[type="submit"] {
    width: 100%;
  }
}

.ld-how__hero {
  padding-top: calc(4.75rem + 75px);
}
.ld-pricing__hero {
  padding-top: calc(3.75rem + 75px);
}
.ld-features__hero {
  padding-top: calc(4.5rem + 75px);
}
.ld-about__hero,
.ld-privacy__hero {
  padding-top: calc(4.5rem + 75px);
}
.ld-contact__hero {
  padding-top: calc(3.75rem + 75px);
}

/* --------------------------------------------------------------------------
   Video Library
   -------------------------------------------------------------------------- */
.ld-video {
  background: linear-gradient(180deg, #faf9f6 0%, #fef9f2 50%, #fdf5eb 100%);
}

.ld-video__hero {
  padding: calc(4.5rem + 75px) 0 3.75rem;
  text-align: center;
}

.ld-video__hero .ld-eyebrow {
  margin-bottom: 1rem;
}

.ld-video__hero h1 {
  margin: 0 0 0.85rem;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
}

.ld-video__hero h1 span {
  color: var(--color-primary);
}

.ld-video__hero > .container > p:not(.ld-eyebrow) {
  max-width: 560px;
  margin: 0 auto;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.ld-video__content {
  padding: 1rem 0 5rem;
}

.ld-video__player {
  max-width: 920px;
  margin: 0 auto;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 0 16px 32px var(--color-shadow);
}

.ld-video__heading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.ld-video__heading .ld-section-label {
  margin: 0 0 0.3rem;
}

.ld-video__heading h2 {
  margin: 0;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.ld-video__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-surface);
  font-size: 0.85rem;
}

.ld-video__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  background: var(--color-text-primary);
}

.ld-video__frame iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
}

.ld-video__dashboard {
  max-width: 920px;
  margin: 4.5rem auto 0;
}

.ld-video__dashboard-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.ld-video__dashboard-heading .ld-section-label {
  margin: 0 0 0.35rem;
}

.ld-video__dashboard-heading h2 {
  margin: 0;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
}

.ld-video__dashboard-heading > p {
  max-width: 340px;
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 0.82rem;
  line-height: 1.65;
}

.ld-video__categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.ld-video__category {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 0 6px 14px var(--color-shadow);
}

.ld-video__category summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 3.8rem;
  padding: 0.85rem 1rem;
  color: var(--color-text-primary);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  list-style: none;
}

.ld-video__category summary::-webkit-details-marker {
  display: none;
}
.ld-video__category summary span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.ld-video__category summary span i {
  color: var(--color-primary);
}
.ld-video__category summary > i {
  color: var(--color-primary);
  font-size: 0.72rem;
  transition: transform 180ms ease;
}
.ld-video__category[open] summary > i {
  transform: rotate(45deg);
}

.ld-video__category ul {
  display: grid;
  gap: 0.2rem;
  margin: 0;
  padding: 0.1rem 1rem 1rem;
  list-style: none;
}

.ld-video__category a {
  display: block;
  padding: 0.5rem 0;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  font-size: 0.76rem;
  line-height: 1.35;
  text-decoration: none;
}

.ld-video__category a:hover {
  color: var(--color-primary);
}

@media (max-width: 767.98px) {
  .ld-video__hero {
    padding: calc(3.25rem + 75px) 0 2.75rem;
  }
  .ld-video__content {
    padding: 0 0 3.5rem;
  }
  .ld-video__player {
    padding: 1.15rem;
  }
  .ld-video__heading h2 {
    font-size: 1.15rem;
  }
  .ld-video__dashboard {
    margin-top: 3.25rem;
  }
  .ld-video__dashboard-heading {
    display: block;
  }
  .ld-video__dashboard-heading > p {
    margin-top: 0.75rem;
  }
  .ld-video__categories {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Legacy Video Dashboard
   -------------------------------------------------------------------------- */
.ld-video-dashboard {
  background: var(--color-surface-alt);
  color: var(--color-text-primary);
  font-family: var(--font-body);
}

.ld-video-dashboard #wrapper {
  background: transparent;
}

.ld-video-dashboard #wrapper > .navbar-static-top > .navbar-header,
.ld-video-dashboard #wrapper > .navbar-static-top > .navbar-top-links {
  display: none;
}

.ld-video-dashboard .navbar-static-top {
  min-height: 0;
  margin: 0;
  border: 0;
  background: transparent;
}

.ld-video-dashboard .sidebar {
  top: 75px;
  border-right: 1px solid var(--color-border);
  background: var(--color-surface);
}

.ld-video-dashboard .sidebar .nav > li > a,
.ld-video-dashboard .sidebar .nav-second-level > li > a {
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 0.8rem;
}

.ld-video-dashboard .sidebar #side-menu > li > a {
  color: var(--color-text-primary);
  font-weight: 700;
}

.ld-video-dashboard .sidebar #side-menu > li > a:hover,
.ld-video-dashboard .sidebar #side-menu > li > a:focus,
.ld-video-dashboard .sidebar .nav-second-level > li > a:hover,
.ld-video-dashboard .sidebar .nav-second-level > li > a:focus {
  background: var(--color-primary-lightest);
  color: var(--color-primary);
}

.ld-video-dashboard #page-wrapper {
  min-height: calc(100vh - 75px);
  border-left-color: var(--color-border);
  background: var(--color-surface-alt);
}

.ld-video-dashboard #page-wrapper .page-header,
.ld-video-dashboard #page-wrapper h1,
.ld-video-dashboard #page-wrapper h2,
.ld-video-dashboard #page-wrapper h3,
.ld-video-dashboard #page-wrapper h4 {
  color: var(--color-text-primary);
  font-family: var(--font-display);
}

.ld-video-dashboard #page-wrapper .page-header {
  border-bottom-color: var(--color-border);
}

.ld-video-dashboard #page-wrapper {
  padding: 2.75rem 2.25rem 4.5rem;
}

.ld-video-dashboard #page-wrapper > .row {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
}

.ld-video-dashboard #page-wrapper .page-header {
  margin: 0 0 2rem;
  padding: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.1;
}

.ld-video-dashboard #page-wrapper .col-lg-8 > h4 {
  margin: 0 0 1rem;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.ld-video-dashboard #page-wrapper .embed-responsive {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-text-primary);
  box-shadow: 0 16px 32px var(--color-shadow);
}

.ld-video-dashboard #page-wrapper .embed-responsive iframe {
  border: 0;
}

@media (max-width: 767.98px) {
  .ld-video-dashboard .sidebar {
    top: 75px;
  }
  .ld-video-dashboard #page-wrapper {
    min-height: calc(100vh - 75px);
  }
  .ld-video-dashboard #page-wrapper {
    padding: 2rem 1rem 3.5rem;
  }
}

/* Landing presentation for the existing video library markup. */
.ld-video-dashboard #wrapper > .navbar-static-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 55px;
  min-height: 55px;
  margin-bottom: 0;
  padding: 0;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.ld-video-dashboard #wrapper > .navbar-static-top > .navbar-header,
.ld-video-dashboard #wrapper > .navbar-static-top > .navbar-top-links {
  display: block;
}

.ld-video-dashboard #wrapper > .navbar-static-top .navbar-header {
  display: flex;
  align-items: center;
  float: none;
  height: 55px;
  margin-left: 8.33%;
}

.ld-video-dashboard #wrapper > .navbar-static-top .navbar-header::before,
.ld-video-dashboard #wrapper > .navbar-static-top .navbar-header::after {
  display: none;
}

.ld-video-dashboard #wrapper > .navbar-static-top .navbar-header img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.ld-video-dashboard #wrapper > .navbar-static-top .navbar-header::after {
  margin-left: 0.65rem;
  color: var(--color-text-primary);
  content: "The Gift Card Cafe";
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

.ld-video-dashboard #wrapper > .navbar-static-top .navbar-top-links {
  display: flex;
  align-items: center;
  float: none;
  height: 55px;
  margin: 0 8.33% 0 0;
  padding: 0;
}

.ld-video-dashboard #wrapper > .navbar-static-top .navbar-top-links li {
  display: block;
}

.ld-video-dashboard #wrapper > .navbar-static-top .navbar-top-links a {
  display: inline-block;
  min-height: 0;
  padding: 0.45rem 0.8rem;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
}

.ld-video-dashboard #wrapper > .navbar-static-top .dropdown-toggle::after {
  display: none;
}

.ld-video-dashboard
  #wrapper
  > .navbar-static-top
  .navbar-top-links
  li:last-child
  a {
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-surface);
}

.ld-video-dashboard #page-wrapper {
  min-height: 100vh;
  margin: 0;
  padding: 0 8.33% 5rem;
  border: 0;
}

.ld-video-dashboard #page-wrapper > .row {
  max-width: none;
}

.ld-video-dashboard #page-wrapper > .row:first-child {
  margin-right: -9.1%;
  margin-left: -9.1%;
  padding: 2rem 9.1% 1.55rem;
  background: var(--color-primary-lightest);
}

.ld-video-dashboard #page-wrapper .page-header {
  margin: 0;
  padding: 0;
  border: 0;
}

.ld-video-dashboard #page-wrapper > .row:nth-child(2) {
  width: calc(100% - 328px);
  max-width: 650px;
  margin: 2rem 0 0 328px;
}

.ld-video-dashboard #page-wrapper > .row:nth-child(2) .col-lg-8 {
  width: 100%;
}

.ld-video-dashboard .sidebar {
  position: absolute;
  top: 185px;
  left: 8.33%;
  width: 300px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: 0 8px 20px var(--color-shadow);
}

.ld-video-dashboard .sidebar .sidebar-nav.navbar-collapse {
  padding: 0.55rem 0;
}

.ld-video-dashboard .sidebar ul li {
  width: 100%;
}

.ld-video-dashboard .sidebar #side-menu > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 1.15rem;
  font-size: 0.82rem;
  text-decoration: none;
}

.ld-video-dashboard .sidebar #side-menu > li:first-child > a {
  display: block;
  width: 95%;
  margin: 0 auto 0.5rem;
  padding: 0.7rem 0.6rem;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  background: var(--color-primary-lightest);
  color: var(--color-primary);
  font-size: 0.76rem;
}

.ld-video-dashboard .sidebar .nav-second-level > li > a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.55rem 1.15rem 0.55rem 2.1rem;
  font-size: 0.74rem;
  text-decoration: none;
}

.ld-video-dashboard .sidebar .fa.arrow:before {
  content: "\f105";
  margin-right: 5px;
}

.ld-video-dashboard .sidebar .nav-second-level {
  display: block;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition:
    max-height 360ms ease,
    opacity 220ms ease,
    visibility 360ms ease;
}

.ld-video-dashboard .sidebar .nav > li.is-open > .nav-second-level {
  max-height: 38rem;
  visibility: visible;
  opacity: 1;
}

.ld-video-dashboard .sidebar .nav a.is-current {
  background: var(--color-primary-lightest);
  color: var(--color-primary);
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .ld-video-dashboard #wrapper > .navbar-static-top .navbar-header {
    width: calc(100% - 2rem);
    margin: 0 1rem;
  }

  .ld-video-dashboard #wrapper > .navbar-static-top .navbar-toggle {
    display: block;
    margin: 0 0.75rem 0 0;
    padding: 0.4rem;
    border-color: var(--color-border);
  }

  .ld-video-dashboard #wrapper > .navbar-static-top .navbar-toggle .icon-bar {
    background: var(--color-text-primary);
  }
  .ld-video-dashboard #wrapper > .navbar-static-top .navbar-top-links {
    display: none;
  }
  .ld-video-dashboard #page-wrapper {
    padding: 0 1rem 3.5rem;
  }
  .ld-video-dashboard #page-wrapper > .row:first-child {
    margin: 0 -1rem;
    padding: 1.75rem 1rem 1.25rem;
  }
  .ld-video-dashboard #page-wrapper > .row:nth-child(2) {
    width: 100%;
    margin: 1.5rem 0 0;
  }

  .ld-video-dashboard .sidebar {
    position: fixed;
    top: 55px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
    display: none;
    width: auto;
    margin: 0;
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    box-shadow: 0 12px 24px var(--color-shadow);
  }

  .ld-video-dashboard.ld-video-menu-open .sidebar {
    display: block;
  }

  .ld-video-dashboard .sidebar .sidebar-nav.navbar-collapse {
    display: block;
    height: auto;
    padding: 1rem 0;
    border: 0;
  }
}
