/* ============================================
   WESCAN LANDING PAGE STYLES
   Single file, organized by section.
   Depends on css2/theme.css for design tokens.
   ============================================ */

/* ----------------------------------------
   0. BASE / RESET
   ---------------------------------------- */
.lp-main {
  overflow-x: hidden;
}

/* Section headers */
.lp-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.lp-section-header--light .lp-section-title,
.lp-section-header--light .lp-section-subtitle {
  color: var(--text-inverse);
}

.lp-section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw + 0.75rem, 2.25rem);
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0 0 12px;
}

.lp-section-subtitle {
  font-size: clamp(1rem, 1vw + 0.75rem, 1.25rem);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* ----------------------------------------
   0.1 BUTTONS — extends .btn from components.css
   LP-specific variants (accent colors, sizes).
   .btn--outline and .btn--ghost used directly.
   ---------------------------------------- */
.lp-btn--primary {
  background: var(--color-accent);
  color: var(--text-inverse);
  border-color: var(--color-accent);
}
.lp-btn--primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

.lp-btn--accent-lg {
  background: var(--color-accent);
  color: var(--text-inverse);
  border-color: var(--color-accent);
  font-size: 18px;
  padding: 16px 40px;
}
.lp-btn--accent-lg:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

.lp-btn--outline-light {
  background: transparent;
  color: var(--text-inverse);
  border-color: var(--surface-elevated);
  font-size: 18px;
  padding: 16px 40px;
}
.lp-btn--outline-light:hover {
  background: var(--surface-elevated);
  color: var(--color-primary);
}

.lp-btn--accent-sm {
  background: var(--color-accent);
  color: var(--text-inverse);
  border-color: var(--color-accent);
  font-size: 14px;
  padding: 10px 20px;
}
.lp-btn--accent-sm:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}
.lp-btn--accent-sm svg {
  flex-shrink: 0;
}

.lp-btn--outline-accent-sm {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
  font-size: 14px;
  padding: 10px 20px;
}
.lp-btn--outline-accent-sm:hover {
  background: var(--color-accent);
  color: var(--text-inverse);
}

/* ----------------------------------------
   0.2 SCROLL REVEAL ANIMATION
   ---------------------------------------- */
.lp-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.lp-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .lp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ----------------------------------------
   1. HERO
   ---------------------------------------- */
.lp-hero {
  background: linear-gradient(180deg, var(--surface-elevated) 0%, var(--surface-card) 100%);
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Subtle decorative accent shape behind the hero */
.lp-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(229, 114, 0, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.lp-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 43, 73, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.lp-hero__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.lp-hero__content {
  flex: 1 1 55%;
  min-width: 0;
}

.lp-hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw + 1rem, 3rem);
  line-height: 1.15;
  color: var(--text-primary);
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

.lp-hero__subtitle {
  font-size: clamp(1rem, 1vw + 0.75rem, 1.125rem);
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 20px;
  max-width: 520px;
}

.lp-hero__shipping-badge {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  border: 1px solid rgba(229, 114, 0, 0.15);
}

.lp-hero__ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

/* Google rating */
.lp-hero__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.lp-hero__stars {
  display: flex;
  gap: 2px;
}
.lp-star-icon {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  filter: drop-shadow(0 1px 2px rgba(229, 114, 0, 0.3));
}
.lp-hero__rating-text {
  font-size: 14px;
  color: var(--text-primary);
}
.lp-hero__rating-count {
  font-size: 14px;
  color: var(--text-muted);
}
.lp-hero__rating-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lp-hero__rating-link:hover {
  color: var(--color-accent);
}

/* Hero image */
.lp-hero__image {
  flex: 1 1 45%;
  min-width: 0;
}

.lp-hero__image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow:
    0 4px 8px rgba(0, 43, 73, 0.06),
    0 20px 60px rgba(0, 43, 73, 0.12);
  display: block;
}

.lp-hero__image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary-200) 100%);
  border-radius: 16px;
  box-shadow:
    0 4px 8px rgba(0, 43, 73, 0.06),
    0 20px 60px rgba(0, 43, 73, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  gap: 8px;
}
.lp-hero__image-placeholder small {
  font-size: 12px;
  opacity: 0.7;
}

/* ----------------------------------------
   2. TURNAROUND TIMES
   ---------------------------------------- */
.lp-turnaround {
  background:
    linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-400) 50%, var(--color-primary) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle geometric overlay for depth */
.lp-turnaround::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 600px 400px at 10% 90%, rgba(229, 114, 0, 0.08), transparent),
    radial-gradient(ellipse 500px 300px at 90% 10%, rgba(255, 255, 255, 0.03), transparent);
  pointer-events: none;
}

.lp-turnaround .lp-container {
  position: relative;
  z-index: 1;
}

/* Unified panel — replaces individual boxy cards */
.lp-turnaround__panel {
  max-width: 720px;
  margin: 0 auto 28px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
}

/* Side-by-side options row */
.lp-turnaround__options {
  display: flex;
  align-items: stretch;
}

.lp-turnaround__option {
  flex: 1;
  padding: 36px 32px;
  text-align: center;
}

/* Soft vertical divider between Standard & Rush */
.lp-turnaround__divider {
  width: 1px;
  align-self: stretch;
  margin: 24px 0;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.2) 30%,
    rgba(255, 255, 255, 0.2) 70%,
    transparent
  );
}

/* Rush accent — subtle left edge glow instead of a hard border */
.lp-turnaround__option--rush {
  position: relative;
}

.lp-turnaround__rush-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}

.lp-turnaround__label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}

.lp-turnaround__rush-header .lp-turnaround__label {
  margin-bottom: 0;
}

.lp-turnaround__badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--text-inverse);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: 12px;
}

.lp-turnaround__timeframe {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  color: var(--text-inverse);
  margin-bottom: 12px;
}

.lp-turnaround__date {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
}

.lp-turnaround__date strong {
  color: var(--color-accent);
}

/* Urgent strip — inline bar at bottom of the panel */
.lp-turnaround__urgent-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-turnaround__urgent-content {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.lp-turnaround__urgent-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-accent);
  white-space: nowrap;
}

.lp-turnaround__urgent-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.lp-turnaround__urgent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.lp-turnaround__urgent-actions .lp-btn--accent-sm {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-inverse);
  border-color: rgba(255, 255, 255, 0.2);
  font-weight: 600;
}
.lp-turnaround__urgent-actions .lp-btn--accent-sm:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}
.lp-turnaround__urgent-actions .lp-btn--outline-accent-sm {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
}
.lp-turnaround__urgent-actions .lp-btn--outline-accent-sm:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-inverse);
}

/* Email response strip */
.lp-turnaround__email-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}
.lp-turnaround__email-strip svg {
  flex-shrink: 0;
  color: var(--color-accent);
}
.lp-turnaround__email-strip strong {
  color: var(--text-inverse);
}

/* ----------------------------------------
   3. TRUST BAR (Stats)
   ---------------------------------------- */
.lp-trust {
  background: var(--surface-elevated);
  padding: 64px 0;
  position: relative;
}

/* Subtle top border accent */
.lp-trust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

.lp-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.lp-trust__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
}

/* Dividers between stats */
.lp-trust__stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border-default);
}

.lp-trust__number {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(2rem, 3vw + 1rem, 2.625rem);
  line-height: 1.1;
  color: var(--color-primary);
}

.lp-trust__label {
  font-size: 15px;
  color: var(--text-secondary);
}

/* ----------------------------------------
   4. SERVICES
   ---------------------------------------- */
.lp-services {
  background: var(--surface-card);
  padding: 80px 0;
  position: relative;
}

/* Decision Tree */
.lp-decision-tree {
  max-width: 800px;
  margin: 0 auto 64px;
  background: var(--surface-elevated);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 6px 20px rgba(0, 0, 0, 0.06);
}

.lp-dt-step {
  margin-bottom: 32px;
}

.lp-dt-step--hidden {
  display: none;
}
.lp-dt-step--visible {
  display: block;
  animation: lp-slideDown 0.4s ease-out;
}

@keyframes lp-slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lp-dt-step__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--text-primary);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-dt-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  color: var(--text-inverse);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(229, 114, 0, 0.3);
}

/* Step 1 grid — product cards */
.lp-dt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.lp-dt-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: var(--surface-elevated);
  border: 2px solid var(--border-default);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
}
.lp-dt-card:hover {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
  box-shadow: 0 2px 8px rgba(0, 43, 73, 0.08);
}
.lp-dt-card[aria-checked='true'] {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  box-shadow: 0 0 0 3px rgba(229, 114, 0, 0.15);
}

.lp-dt-card__icon {
  width: 36px;
  height: 36px;
  color: var(--color-primary);
  transition: color 0.25s ease;
}
.lp-dt-card[aria-checked='true'] .lp-dt-card__icon {
  color: var(--color-accent);
}

.lp-dt-card__label {
  line-height: 1.3;
}

/* Step 2 — quantity options */
.lp-dt-qty-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lp-dt-qty {
  flex: 1 1 0;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 20px;
  background: var(--surface-elevated);
  border: 2px solid var(--border-default);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-body);
  text-align: center;
}
.lp-dt-qty:hover {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
  box-shadow: 0 2px 8px rgba(0, 43, 73, 0.08);
}
.lp-dt-qty[aria-checked='true'] {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
  box-shadow: 0 0 0 3px rgba(229, 114, 0, 0.15);
}

.lp-dt-qty__count {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
}
.lp-dt-qty__label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Result panel */
.lp-dt-result--hidden {
  display: none;
}
.lp-dt-result--visible {
  display: block;
  animation: lp-slideDown 0.4s ease-out;
}

.lp-dt-result__inner {
  background: var(--color-primary-light);
  border: 2px solid var(--color-primary-200);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.lp-dt-result__text {
  font-size: 18px;
  color: var(--text-primary);
  margin: 0 0 20px;
  line-height: 1.5;
}
.lp-dt-result__text strong {
  color: var(--color-primary);
  font-weight: 700;
}

.lp-dt-result__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.lp-dt-result__alt {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}
.lp-dt-result__alt a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lp-dt-result__alt a:hover {
  color: var(--color-accent);
}

/* Service cards */
.lp-services__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

/* Extends .card from components.css — overrides for LP look */
.lp-service-card {
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
/* Subtle top-edge accent on hover */
.lp-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-400));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lp-service-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 8px rgba(0, 43, 73, 0.04),
    0 16px 40px rgba(0, 43, 73, 0.1);
}
.lp-service-card:hover::before {
  opacity: 1;
}

.lp-service-card__icon-wrap {
  margin-bottom: 16px;
}

.lp-service-card__icon-placeholder {
  width: 56px;
  height: 56px;
  background: var(--color-primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: var(--color-primary);
}

.lp-service-card__icon-placeholder svg {
  width: 100%;
  height: 100%;
}

.lp-service-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.125rem, 1.5vw + 0.75rem, 1.25rem);
  color: var(--text-primary);
  margin: 0 0 10px;
}

.lp-service-card__badge {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  line-height: 1.4;
  border: 1px solid rgba(229, 114, 0, 0.1);
}

.lp-service-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 16px;
  flex-grow: 1;
}

.lp-service-card__min {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border-top: 1px solid var(--border-default);
  padding-top: 12px;
  margin-top: auto;
}

/* Also-offer text */
.lp-services__also {
  text-align: center;
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
  padding: 20px 24px;
  background: var(--surface-elevated);
  border-radius: 10px;
  border: 1px dashed var(--border-default);
}
.lp-services__also a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
.lp-services__also a:hover {
  color: var(--color-accent);
}

/* ----------------------------------------
   5. HOW IT WORKS
   ---------------------------------------- */
.lp-howitworks {
  background: var(--surface-elevated);
  padding: 80px 0;
  position: relative;
}

/* Top accent bar */
.lp-howitworks::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

.lp-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.lp-step {
  flex: 0 1 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  border-radius: 14px;
  transition: background 0.3s ease;
}
.lp-step:hover {
  background: var(--surface-card);
}

.lp-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: var(--text-inverse);
  border-radius: 50%;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(229, 114, 0, 0.3);
}

.lp-step__icon-wrap {
  margin-bottom: 16px;
}

.lp-step__icon {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
}

.lp-step__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.lp-step__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 8px;
  max-width: 240px;
}

.lp-step__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}
.lp-step__link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--color-accent);
}

.lp-step__connector {
  display: flex;
  align-items: center;
  padding-top: 34px;
  flex-shrink: 0;
  width: 60px;
  color: var(--color-accent);
}
.lp-step__connector svg {
  width: 100%;
  height: auto;
}

/* ----------------------------------------
   6. CLIENT LOGOS
   ---------------------------------------- */
.lp-logos {
  background: var(--surface-card);
  padding: 80px 0;
}

.lp-logos .lp-section-title {
  text-align: center;
  margin-bottom: 40px;
}

.lp-logos__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
  justify-items: center;
}

.lp-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

/* When using real logo images */
.lp-logos__item img {
  width: 150px;
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.4s ease, transform 0.3s ease;
}
.lp-logos__item img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Placeholder */
.lp-logos__placeholder {
  width: 160px;
  height: 60px;
  background: var(--surface-elevated);
  border: 1px dashed var(--border-default);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-muted);
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.4s ease;
}
.lp-logos__item:hover .lp-logos__placeholder {
  filter: grayscale(0%) opacity(1);
}

/* ----------------------------------------
   7. FINAL CTA
   ---------------------------------------- */
.lp-final-cta {
  background:
    linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-400) 50%, var(--color-primary) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Decorative glow */
.lp-final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(229, 114, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.lp-final-cta__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.lp-final-cta__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw + 0.75rem, 2.25rem);
  color: var(--text-inverse);
  margin: 0 0 16px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.lp-final-cta__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto 32px;
  max-width: 560px;
  line-height: 1.5;
}

.lp-final-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.lp-final-cta__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* ============================================
   RESPONSIVE — TABLET (max-width: 1280px)
   ============================================ */
@media (max-width: 1280px) {
  .lp-services__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-turnaround__panel {
    max-width: 600px;
  }

  /* Hero: text 60%, image 40% */
  .lp-hero__content {
    flex: 1 1 60%;
  }
  .lp-hero__image {
    flex: 1 1 40%;
  }

  /* Decorative shapes scaled down */
  .lp-hero::before {
    width: 350px;
    height: 350px;
    opacity: 0.5;
  }
  .lp-hero::after {
    width: 245px;
    height: 245px;
    opacity: 0.5;
  }
}

/* ============================================
   RESPONSIVE — Small tablet (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .lp-logos__grid {
    grid-template-columns: repeat(4, 1fr);
  }

}

/* ============================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  /* --- Hero --- */
  .lp-hero {
    padding: 40px 0 60px;
  }
  .lp-hero__inner {
    flex-direction: column;
    gap: 32px;
  }
  .lp-hero__content {
    flex: none;
    width: 100%;
    padding: 0;
  }
  .lp-hero__image {
    flex: none;
    width: 100%;
  }
  .lp-hero__image img {
    max-height: 300px;
    object-fit: cover;
  }
  .lp-hero__image-placeholder {
    max-height: 300px;
  }
  .lp-hero__ctas {
    flex-direction: column;
  }
  .lp-hero__ctas .btn {
    width: 100%;
    text-align: center;
  }
  .lp-hero__shipping-badge {
    display: block;
    text-align: center;
  }
  .lp-hero__rating {
    justify-content: center;
  }
  /* Hide decorative shapes */
  .lp-hero::before,
  .lp-hero::after {
    display: none;
  }

  /* --- Turnaround --- */
  .lp-turnaround {
    padding: 60px 0;
  }
  .lp-turnaround__options {
    flex-direction: column;
  }
  .lp-turnaround__divider {
    width: auto;
    height: 1px;
    margin: 0 24px;
    background: linear-gradient(
      to right,
      transparent,
      rgba(255, 255, 255, 0.2) 30%,
      rgba(255, 255, 255, 0.2) 70%,
      transparent
    );
  }
  .lp-turnaround__option {
    padding: 28px 24px;
  }
  .lp-turnaround__urgent-strip {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 20px 24px;
  }
  .lp-turnaround__urgent-content {
    justify-content: center;
  }
  .lp-turnaround__urgent-actions {
    flex-direction: column;
    width: 100%;
  }
  .lp-turnaround__urgent-actions .btn {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
    border-radius: 8px;
    justify-content: center;
  }
  .lp-turnaround__email-strip {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* --- Trust --- */
  .lp-trust__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .lp-trust__stat:not(:last-child)::after {
    display: none;
  }
  /* Horizontal dividers between stacked stats */
  .lp-trust__stat {
    padding: 20px 0;
  }
  .lp-trust__stat:not(:last-child) {
    border-bottom: 1px solid var(--border-default);
  }

  /* --- Services: Carousel --- */
  .lp-services {
    padding: 60px 0;
  }
  .lp-services__cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .lp-services__cards::-webkit-scrollbar {
    display: none;
  }
  .lp-service-card {
    flex: 0 0 85vw;
    max-width: 85vw;
    scroll-snap-align: start;
  }

  /* Decision tree */
  .lp-decision-tree {
    padding: 24px 20px;
  }
  .lp-dt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-dt-qty-options {
    flex-direction: column;
  }

  /* --- How it works: Numbered list --- */
  .lp-howitworks {
    padding: 60px 0;
  }
  .lp-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .lp-step {
    flex: none;
    width: 100%;
    max-width: none;
    text-align: left;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
    border-radius: 0;
  }
  .lp-step:hover {
    background: transparent;
  }
  .lp-step__number {
    width: 32px;
    height: 32px;
    font-size: 16px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .lp-step__icon-wrap {
    display: none;
  }
  .lp-step__connector {
    display: none;
  }
  .lp-step__title {
    font-size: 16px;
    margin: 0 0 4px;
  }
  .lp-step__desc {
    font-size: 14px;
    max-width: none;
    margin: 0;
  }
  .lp-step__link {
    margin-top: 4px;
    display: inline-block;
  }

  /* --- Logos: Horizontal scroll --- */
  .lp-logos {
    padding: 60px 0;
  }
  .lp-logos__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 24px;
    padding-right: 40px;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .lp-logos__grid::-webkit-scrollbar {
    display: none;
  }
  .lp-logos__item {
    flex: 0 0 auto;
    width: 120px;
    scroll-snap-align: start;
    padding: 8px;
  }
  .lp-logos__item img {
    width: 120px;
    height: auto;
    max-height: 50px;
    filter: none;
    opacity: 1;
  }

  /* --- Final CTA: Tighter --- */
  .lp-final-cta {
    padding: 48px 0;
  }
  .lp-final-cta__subtitle {
    font-size: 15px;
  }
  .lp-final-cta__buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .lp-final-cta__buttons .btn {
    width: 100%;
    max-width: 320px;
  }

}

/* ============================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  .lp-container {
    padding: 0 16px;
  }

  /* Hero */
  .lp-hero {
    padding: 32px 0 40px;
  }
  .lp-hero__image img {
    max-height: 250px;
  }

  /* Turnaround */
  .lp-turnaround__option {
    padding: 24px 16px;
  }
  .lp-turnaround__timeframe {
    font-size: 20px;
  }
  .lp-turnaround__urgent-actions .btn {
    font-size: 15px;
  }

  /* Decision tree with scroll hint */
  .lp-dt-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .lp-dt-card {
    padding: 14px 8px;
    min-width: 140px;
  }
  .lp-dt-card__icon {
    width: 28px;
    height: 28px;
  }
  .lp-dt-card__label {
    font-size: 12px;
  }

  /* Trust */
  .lp-trust__label {
    font-size: 13px;
  }

  /* Service cards slightly wider in carousel */
  .lp-service-card {
    flex: 0 0 88vw;
    max-width: 88vw;
  }
  .lp-services__cards {
    padding-left: 16px;
    margin-left: -16px;
    margin-right: -16px;
    padding-right: 16px;
  }

  /* How it works */
  .lp-steps {
    gap: 20px;
  }
  .lp-step__number {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  .lp-step__desc {
    font-size: 13px;
  }

  /* Logos */
  .lp-logos__item {
    width: 100px;
  }
  .lp-logos__item img {
    width: 100px;
  }
  .lp-logos__grid {
    gap: 20px;
  }

  /* Final CTA */
  .lp-final-cta {
    padding: 40px 0;
  }
  .lp-final-cta__subtitle {
    font-size: 14px;
  }
  .lp-final-cta__buttons .btn {
    max-width: 100%;
  }

}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .lp-services__cards {
    scroll-snap-type: none;
  }

}
