/* Home / Landing Page Styles */

/* --------------------------------------------
   Wedding Hero
   -------------------------------------------- */
.lv-hero-wedding {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 80vh;
  min-height: 100svh;
  overflow: hidden;
  background-color: #0f172a;
  background-image: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #312e81 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 1024px) {
  .lv-hero-wedding-bg img {
    animation: lv-hero-bg-zoom 22s ease-in-out infinite;
  }
}

@keyframes lv-hero-bg-zoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.lv-hero-wedding-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lv-hero-wedding-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0;
  transform: scale(1.03);
  filter: saturate(0.9) contrast(1.05);
  transition: opacity 0.6s ease, transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lv-hero-img-loaded {
  opacity: 0.55;
  transform: scale(1);
}

.lv-hero-img-error {
  display: none !important;
}

.lv-hero-wedding-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 23, 42, 0.90) 0%,
    rgba(15, 23, 42, 0.78) 35%,
    rgba(30, 27, 75, 0.55) 60%,
    rgba(49, 46, 129, 0.35) 100%
  );
  z-index: 1;
}

.lv-hero-wedding-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, transparent 40%, rgba(15, 23, 42, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

.lv-hero-wedding-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(circle at 75% 20%, rgba(255,255,255,0.03) 2px, transparent 2px),
    radial-gradient(circle at 60% 80%, rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(circle at 85% 60%, rgba(99, 102, 241, 0.06) 3px, transparent 3px);
  animation: lv-hero-particle-drift 20s ease-in-out infinite;
}

@keyframes lv-hero-particle-drift {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(10px, -8px); }
  50% { transform: translate(-5px, 5px); }
  75% { transform: translate(8px, 3px); }
}

@media (prefers-reduced-motion: reduce) {
  .lv-hero-wedding-particles {
    animation: none;
  }
  .lv-hero-wedding-image {
    transform: none !important;
    transition: opacity 0.3s ease !important;
  }
}

.lv-hero-wedding-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px 64px;
}

.lv-hero-wedding-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .lv-hero-wedding-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

.lv-hero-wedding-content {
  position: relative;
}

.lv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--lv-radius-full);
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--lv-text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(12px);
  animation: lv-fade-up 0.7s ease-out 0.1s forwards;
}

.lv-hero-title {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: var(--lv-font-extrabold);
  line-height: 1.15;
  color: white;
  margin: 0 0 1.25rem;
  opacity: 0;
  transform: translateY(12px);
  animation: lv-fade-up 0.7s ease-out 0.2s forwards;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.lv-hero-rotating-wrapper {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
}

.lv-hero-rotating-text {
  display: inline-block;
  color: var(--lv-primary-300);
  font-style: italic;
  position: relative;
  min-width: 200px;
  text-align: left;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

@media (max-width: 640px) {
  .lv-hero-rotating-text {
    min-width: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lv-hero-rotating-text {
    transition: none;
  }
  .lv-hero-badge,
  .lv-hero-title,
  .lv-hero-subtitle,
  .lv-hero-actions,
  .lv-hero-wedding-visual {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.lv-hero-subtitle {
  font-size: var(--lv-text-lg);
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  line-height: 1.65;
  margin: 0 0 2rem;
  opacity: 0;
  transform: translateY(12px);
  animation: lv-fade-up 0.7s ease-out 0.3s forwards;
}

.lv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  opacity: 0;
  transform: translateY(12px);
  animation: lv-fade-up 0.7s ease-out 0.4s forwards;
}

.lv-btn-hero-primary {
  background: white;
  color: var(--lv-primary-700);
  border: none;
  font-weight: 600;
}

.lv-btn-hero-primary:hover:not(:disabled) {
  background: var(--lv-bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.lv-btn-hero-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

.lv-btn-hero-ghost:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
}

/* Orbit Visual */
.lv-hero-wedding-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  opacity: 0;
  transform: translateY(12px);
  animation: lv-fade-up 0.7s ease-out 0.5s forwards;
  position: relative;
}

.lv-orbit-glow {
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, rgba(139, 92, 246, 0.08) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.lv-orbit {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  z-index: 1;
}

@media (max-width: 1023px) {
  .lv-orbit {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 640px) {
  .lv-orbit {
    width: 260px;
    height: 260px;
  }
}

.lv-orbit-center {
  position: relative;
  z-index: 2;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.35), 0 0 80px rgba(139, 92, 246, 0.2), inset 0 0 20px rgba(255,255,255,0.05);
  opacity: 0.95;
}

.lv-orbit-icon {
  width: 48%;
  height: 48%;
}

@media (max-width: 1023px) {
  .lv-orbit-center {
    width: 88px;
    height: 88px;
  }
  .lv-orbit-icon {
    width: 46%;
    height: 46%;
  }
  .lv-orbit-node {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
  }
}

@media (max-width: 640px) {
  .lv-orbit-center {
    width: 72px;
    height: 72px;
  }
  .lv-orbit-icon {
    width: 42%;
    height: 42%;
  }
  .lv-orbit-node {
    width: 34px;
    height: 34px;
    margin-top: -17px;
    margin-left: -17px;
    font-size: 0.6rem;
  }
}

.lv-orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  animation: lv-orbit-spin 32s linear infinite;
  opacity: 0.9;
}

@media (prefers-reduced-motion: reduce) {
  .lv-orbit-ring {
    animation: none;
  }
}

.lv-orbit-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  margin-left: -22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--lv-primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  opacity: 0.96;
}

.lv-orbit-node-icon {
  width: 55%;
  height: 55%;
  stroke: currentColor;
}

@media (max-width: 640px) {
  .lv-orbit-node {
    width: 34px;
    height: 34px;
    margin-top: -17px;
    margin-left: -17px;
    font-size: 0.6rem;
  }
}

.lv-orbit-node:nth-child(2) {
  transform: rotate(0deg) translateX(155px) rotate(0deg);
}

.lv-orbit-node:nth-child(3) {
  transform: rotate(90deg) translateX(155px) rotate(-90deg);
}

.lv-orbit-node:nth-child(4) {
  transform: rotate(180deg) translateX(155px) rotate(-180deg);
}

.lv-orbit-node:nth-child(5) {
  transform: rotate(270deg) translateX(155px) rotate(-270deg);
}

@media (max-width: 1023px) {
  .lv-orbit-node:nth-child(2) {
    transform: rotate(0deg) translateX(130px) rotate(0deg);
  }
  .lv-orbit-node:nth-child(3) {
    transform: rotate(90deg) translateX(130px) rotate(-90deg);
  }
  .lv-orbit-node:nth-child(4) {
    transform: rotate(180deg) translateX(130px) rotate(-180deg);
  }
  .lv-orbit-node:nth-child(5) {
    transform: rotate(270deg) translateX(130px) rotate(-270deg);
  }
}

@media (max-width: 640px) {
  .lv-orbit-node:nth-child(2) {
    transform: rotate(0deg) translateX(105px) rotate(0deg);
  }
  .lv-orbit-node:nth-child(3) {
    transform: rotate(90deg) translateX(105px) rotate(-90deg);
  }
  .lv-orbit-node:nth-child(4) {
    transform: rotate(180deg) translateX(105px) rotate(-180deg);
  }
  .lv-orbit-node:nth-child(5) {
    transform: rotate(270deg) translateX(105px) rotate(-270deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lv-orbit-node {
    transform: none !important;
  }
}

@keyframes lv-orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Hero animations */
@keyframes lv-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------
   Features Showcase
   -------------------------------------------- */
.lv-features-showcase {
  position: relative;
  padding: 5rem 0 6rem;
  background: linear-gradient(180deg, var(--lv-bg-secondary) 0%, var(--lv-bg-primary) 100%);
  overflow: hidden;
}

.lv-features-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.lv-features-glow-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -150px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
}

.lv-features-glow-2 {
  width: 500px;
  height: 500px;
  bottom: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 60%);
}

.lv-features-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.lv-features-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.lv-features-eyebrow {
  display: inline-block;
  font-size: var(--lv-text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lv-primary-600);
  background: var(--lv-primary-50);
  padding: 0.4rem 0.9rem;
  border-radius: var(--lv-radius-full);
  margin-bottom: 1.25rem;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

[data-theme="dark"] .lv-features-eyebrow {
  background: rgba(99, 102, 241, 0.15);
  color: var(--lv-primary-300);
}

.lv-features-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--lv-font-bold);
  color: var(--lv-text-primary);
  margin: 0 0 1rem;
  line-height: 1.2;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease-out 0.08s, transform 0.7s ease-out 0.08s;
}

.lv-features-subtitle {
  font-size: var(--lv-text-lg);
  color: var(--lv-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease-out 0.16s, transform 0.7s ease-out 0.16s;
}

.lv-motion-ready .lv-features-showcase:not(.lv-revealed) .lv-features-eyebrow,
.lv-motion-ready .lv-features-showcase:not(.lv-revealed) .lv-features-heading,
.lv-motion-ready .lv-features-showcase:not(.lv-revealed) .lv-features-subtitle {
  opacity: 0;
  transform: translateY(12px);
}

.lv-features-showcase.lv-revealed .lv-features-eyebrow,
.lv-features-showcase.lv-revealed .lv-features-heading,
.lv-features-showcase.lv-revealed .lv-features-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.lv-features-viewport {
  position: relative;
}

.lv-features-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1023px) {
  .lv-features-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .lv-features-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.5rem 0.25rem 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .lv-features-track::-webkit-scrollbar {
    display: none;
  }

  .lv-feature-card {
    scroll-snap-align: center;
    min-width: 85vw;
    max-width: 90vw;
  }
}

.lv-feature-card {
  position: relative;
  border-radius: var(--lv-radius-2xl);
  border: 1px solid var(--lv-border-color);
  background: var(--lv-bg-primary);
  padding: 2rem;
  height: 100%;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  opacity: 1;
  transform: translateY(0) translateX(0);
  will-change: transform;
}

.lv-feature-card:nth-child(1) {
  transform: none;
}

.lv-feature-card:nth-child(4) {
  transform: none;
}

.lv-motion-ready .lv-features-showcase:not(.lv-revealed) .lv-feature-card {
  opacity: 0;
  transform: translateY(24px);
}

.lv-motion-ready .lv-features-showcase:not(.lv-revealed) .lv-feature-card:nth-child(1) {
  transform: translateX(-30px) translateY(24px);
}

.lv-motion-ready .lv-features-showcase:not(.lv-revealed) .lv-feature-card:nth-child(4) {
  transform: translateX(30px) translateY(24px);
}

.lv-features-showcase.lv-revealed .lv-feature-card {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.lv-features-showcase.lv-revealed .lv-feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--lv-primary-400);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(99, 102, 241, 0.15);
}

[data-theme="dark"] .lv-features-showcase.lv-revealed .lv-feature-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(99, 102, 241, 0.25);
}

.lv-features-showcase.lv-revealed .lv-feature-card:nth-child(1) {
  transition: opacity 0.7s ease-out 0.05s, transform 0.7s ease-out 0.05s;
}

.lv-features-showcase.lv-revealed .lv-feature-card:nth-child(2) {
  transition: opacity 0.7s ease-out 0.13s, transform 0.7s ease-out 0.13s;
}

.lv-features-showcase.lv-revealed .lv-feature-card:nth-child(3) {
  transition: opacity 0.7s ease-out 0.21s, transform 0.7s ease-out 0.21s;
}

.lv-features-showcase.lv-revealed .lv-feature-card:nth-child(4) {
  transition: opacity 0.7s ease-out 0.29s, transform 0.7s ease-out 0.29s;
}

.lv-feature-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.lv-feature-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  top: -40px;
  right: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.lv-feature-card:hover .lv-feature-glow {
  opacity: 1;
}

.lv-feature-number {
  font-size: var(--lv-text-xs);
  font-weight: 700;
  color: var(--lv-primary-500);
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.lv-feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lv-gradient-primary);
  border-radius: var(--lv-radius-xl);
  color: white;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
}

.lv-feature-icon svg {
  width: 28px;
  height: 28px;
}

.lv-feature-card:hover .lv-feature-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.35);
}

.lv-feature-title {
  font-size: var(--lv-text-lg);
  font-weight: var(--lv-font-semibold);
  color: var(--lv-text-primary);
  margin: 0;
  line-height: 1.3;
}

.lv-feature-description {
  font-size: var(--lv-text-sm);
  color: var(--lv-text-secondary);
  line-height: 1.65;
  margin: 0;
  flex-grow: 1;
}

.lv-feature-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--lv-text-sm);
  font-weight: 600;
  color: var(--lv-primary-600);
  margin-top: auto;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.lv-feature-card:hover .lv-feature-action {
  opacity: 1;
  transform: translateX(0);
}

.lv-feature-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.35s ease;
}

.lv-feature-card:hover .lv-feature-arrow {
  transform: translateX(5px);
}

.lv-features-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lv-bg-primary);
  border: 1px solid var(--lv-border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  opacity: 0;
}

.lv-features-viewport:hover .lv-features-nav {
  opacity: 1;
}

@media (max-width: 640px) {
  .lv-features-nav {
    display: none;
  }
}

.lv-features-nav svg {
  width: 20px;
  height: 20px;
  color: var(--lv-text-secondary);
  transition: color 0.3s ease;
}

.lv-features-nav:hover svg {
  color: var(--lv-primary-600);
}

.lv-features-nav:hover {
  border-color: var(--lv-primary-400);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-50%) scale(1.05);
}

.lv-features-prev {
  left: -16px;
}

.lv-features-next {
  right: -16px;
}

@media (max-width: 1023px) {
  .lv-features-prev {
    left: -8px;
  }
  .lv-features-next {
    right: -8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lv-feature-card,
  .lv-feature-icon,
  .lv-feature-action,
  .lv-feature-arrow,
  .lv-features-eyebrow,
  .lv-features-heading,
  .lv-features-subtitle {
    transition: none !important;
  }

  .lv-feature-card:hover {
    transform: none;
  }

  .lv-feature-card:nth-child(1),
  .lv-feature-card:nth-child(4) {
    transform: none;
  }
}

/* --------------------------------------------
   Gallery Placeholder
   -------------------------------------------- */
.lv-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--lv-space-4);
}

.lv-gallery-item {
  position: relative;
  border-radius: var(--lv-radius-2xl);
  overflow: hidden;
  box-shadow: var(--lv-shadow-md);
  cursor: pointer;
}

.lv-gallery-image {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 250ms ease;
}

.lv-gallery-item:hover .lv-gallery-image {
  transform: scale(1.05);
}

.lv-gallery-placeholder {
  width: 100%;
  min-height: 240px;
  max-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--lv-gradient-hero), rgba(99, 102, 241, 0.15));
}

.lv-gallery-h-sm {
  min-height: 220px;
}

.lv-gallery-h-md {
  min-height: 260px;
}

.lv-gallery-h-lg {
  min-height: 300px;
}

.lv-gallery-h-xl {
  min-height: 340px;
}

.lv-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  opacity: 0;
  transition: opacity 250ms ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--lv-space-6);
}

.lv-gallery-item:hover .lv-gallery-overlay {
  opacity: 1;
}

.lv-gallery-overlay-btn {
  background: white;
  color: var(--lv-primary-700);
  padding: var(--lv-space-2) var(--lv-space-4);
  border-radius: var(--lv-radius-lg);
  font-size: var(--lv-text-sm);
  font-weight: var(--lv-font-semibold);
  text-decoration: none;
  transform: translateY(8px);
  transition: transform 250ms ease;
}

.lv-gallery-item:hover .lv-gallery-overlay-btn {
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .lv-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --------------------------------------------
   Workflow Section
   -------------------------------------------- */
.lv-workflow-section {
  position: relative;
  padding: 6rem 0 7rem;
  background: linear-gradient(180deg, var(--lv-bg-primary) 0%, var(--lv-bg-secondary) 100%);
  overflow: hidden;
}

.lv-workflow-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.lv-workflow-glow-1 {
  width: 500px;
  height: 500px;
  top: -180px;
  left: -120px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.07) 0%, transparent 60%);
}

.lv-workflow-glow-2 {
  width: 400px;
  height: 400px;
  bottom: -140px;
  right: -100px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 60%);
}

.lv-workflow-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.lv-workflow-header {
  text-align: center;
  margin-bottom: 4rem;
}

.lv-workflow-eyebrow {
  display: inline-block;
  font-size: var(--lv-text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lv-primary-600);
  background: var(--lv-primary-50);
  padding: 0.4rem 0.9rem;
  border-radius: var(--lv-radius-full);
  margin-bottom: 1.25rem;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

[data-theme="dark"] .lv-workflow-eyebrow {
  background: rgba(99, 102, 241, 0.15);
  color: var(--lv-primary-300);
}

.lv-workflow-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--lv-font-bold);
  color: var(--lv-text-primary);
  margin: 0 0 1rem;
  line-height: 1.2;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease-out 0.08s, transform 0.7s ease-out 0.08s;
}

.lv-workflow-subtitle {
  font-size: var(--lv-text-lg);
  color: var(--lv-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease-out 0.16s, transform 0.7s ease-out 0.16s;
}

.lv-motion-ready .lv-workflow-section:not(.lv-revealed) .lv-workflow-eyebrow,
.lv-motion-ready .lv-workflow-section:not(.lv-revealed) .lv-workflow-heading,
.lv-motion-ready .lv-workflow-section:not(.lv-revealed) .lv-workflow-subtitle {
  opacity: 0;
  transform: translateY(12px);
}

.lv-workflow-section.lv-revealed .lv-workflow-eyebrow,
.lv-workflow-section.lv-revealed .lv-workflow-heading,
.lv-workflow-section.lv-revealed .lv-workflow-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.lv-workflow-timeline {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.lv-workflow-line {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lv-border-color);
  z-index: 0;
}

.lv-workflow-line-track {
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background: var(--lv-border-color);
}

.lv-workflow-line-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--lv-primary-500), var(--lv-secondary-500));
  transition: width 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lv-workflow-section.lv-revealed .lv-workflow-line-progress {
  width: 100%;
}

.lv-workflow-step {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.lv-motion-ready .lv-workflow-section:not(.lv-revealed) .lv-workflow-step {
  opacity: 0;
  transform: translateY(16px);
}

.lv-workflow-section.lv-revealed .lv-workflow-step {
  opacity: 1;
  transform: translateY(0);
}

.lv-workflow-section.lv-revealed .lv-workflow-step[data-step="1"] {
  transition-delay: 0.05s;
}

.lv-workflow-section.lv-revealed .lv-workflow-step[data-step="2"] {
  transition-delay: 0.15s;
}

.lv-workflow-section.lv-revealed .lv-workflow-step[data-step="3"] {
  transition-delay: 0.25s;
}

.lv-workflow-section.lv-revealed .lv-workflow-step[data-step="4"] {
  transition-delay: 0.35s;
}

.lv-workflow-node {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--lv-bg-primary);
  border: 2px solid var(--lv-border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.lv-workflow-section.lv-revealed .lv-workflow-node {
  border-color: var(--lv-primary-400);
  box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.08);
}

.lv-workflow-node:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: var(--lv-primary-500);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.18);
}

.lv-workflow-node-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lv-primary-600);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lv-workflow-section.lv-revealed .lv-workflow-node-number {
  opacity: 1;
  transform: scale(1);
}

.lv-workflow-section.lv-revealed .lv-workflow-step[data-step="1"] .lv-workflow-node-number {
  transition-delay: 0.2s;
}

.lv-workflow-section.lv-revealed .lv-workflow-step[data-step="2"] .lv-workflow-node-number {
  transition-delay: 0.3s;
}

.lv-workflow-section.lv-revealed .lv-workflow-step[data-step="3"] .lv-workflow-node-number {
  transition-delay: 0.4s;
}

.lv-workflow-section.lv-revealed .lv-workflow-step[data-step="4"] .lv-workflow-node-number {
  transition-delay: 0.5s;
}

.lv-workflow-node-icon {
  width: 24px;
  height: 24px;
  color: var(--lv-primary-600);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lv-workflow-node:hover .lv-workflow-node-icon {
  transform: rotate(-8deg) scale(1.1);
}

.lv-workflow-node-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: all 0.4s ease;
}

.lv-workflow-section.lv-revealed .lv-workflow-node-ring {
  border-color: rgba(99, 102, 241, 0.2);
}

.lv-workflow-node:hover .lv-workflow-node-ring {
  border-color: rgba(99, 102, 241, 0.35);
  inset: -10px;
}

.lv-workflow-content {
  position: relative;
}

.lv-workflow-title {
  font-size: var(--lv-text-lg);
  font-weight: var(--lv-font-semibold);
  color: var(--lv-text-primary);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.lv-workflow-description {
  font-size: var(--lv-text-sm);
  color: var(--lv-text-secondary);
  line-height: 1.65;
  margin: 0;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

.lv-workflow-chevron {
  display: none;
  width: 20px;
  height: 20px;
  color: var(--lv-primary-400);
  margin-top: 0.75rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.lv-workflow-section.lv-revealed .lv-workflow-chevron {
  opacity: 1;
  transform: translateX(0);
}

.lv-workflow-step:hover .lv-workflow-chevron {
  color: var(--lv-primary-600);
  transform: translateX(3px);
}

@media (max-width: 1023px) {
  .lv-workflow-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .lv-workflow-line {
    top: 28px;
    bottom: 28px;
    left: 28px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .lv-workflow-line-track {
    position: absolute;
    inset: 0;
    border-radius: 2px;
    background: var(--lv-border-color);
  }

  .lv-workflow-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--lv-primary-500), var(--lv-secondary-500));
    transition: height 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .lv-workflow-section.lv-revealed .lv-workflow-line-progress {
    height: 100%;
  }

  .lv-workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    text-align: left;
    padding-bottom: 2.5rem;
  }

  .lv-workflow-step:last-child {
    padding-bottom: 0;
  }

  .lv-workflow-node {
    margin: 0;
    flex-shrink: 0;
  }

  .lv-workflow-content {
    flex: 1;
    padding-top: 0.25rem;
  }

  .lv-workflow-description {
    margin: 0;
    max-width: none;
  }

  .lv-workflow-chevron {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lv-workflow-section,
  .lv-workflow-eyebrow,
  .lv-workflow-heading,
  .lv-workflow-subtitle,
  .lv-workflow-step,
  .lv-workflow-node,
  .lv-workflow-node-number,
  .lv-workflow-node-icon,
  .lv-workflow-node-ring,
  .lv-workflow-line-progress,
  .lv-workflow-chevron {
    transition: none !important;
  }

  .lv-workflow-section.lv-revealed .lv-workflow-line-progress {
    width: 100%;
    height: 100%;
  }
}

/* --------------------------------------------
   Gallery Showcase
   -------------------------------------------- */
.lv-gallery-showcase {
  position: relative;
  padding: 6rem 0 7rem;
  background: linear-gradient(180deg, var(--lv-bg-secondary) 0%, var(--lv-bg-primary) 100%);
  overflow: hidden;
}

.lv-gallery-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  width: 600px;
  height: 600px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
  animation: lv-gallery-glow-breathe 6s ease-in-out infinite;
}

@keyframes lv-gallery-glow-breathe {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

.lv-gallery-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.lv-gallery-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.lv-gallery-eyebrow {
  display: inline-block;
  font-size: var(--lv-text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lv-primary-600);
  background: var(--lv-primary-50);
  padding: 0.4rem 0.9rem;
  border-radius: var(--lv-radius-full);
  margin-bottom: 1.25rem;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

[data-theme="dark"] .lv-gallery-eyebrow {
  background: rgba(99, 102, 241, 0.15);
  color: var(--lv-primary-300);
}

.lv-gallery-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--lv-font-bold);
  color: var(--lv-text-primary);
  margin: 0 0 1rem;
  line-height: 1.2;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease-out 0.08s, transform 0.7s ease-out 0.08s;
}

.lv-gallery-subtitle {
  font-size: var(--lv-text-lg);
  color: var(--lv-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease-out 0.16s, transform 0.7s ease-out 0.16s;
}

.lv-motion-ready .lv-gallery-showcase:not(.lv-revealed) .lv-gallery-eyebrow,
.lv-motion-ready .lv-gallery-showcase:not(.lv-revealed) .lv-gallery-heading,
.lv-motion-ready .lv-gallery-showcase:not(.lv-revealed) .lv-gallery-subtitle {
  opacity: 0;
  transform: translateY(12px);
}

.lv-gallery-showcase.lv-revealed .lv-gallery-eyebrow,
.lv-gallery-showcase.lv-revealed .lv-gallery-heading,
.lv-gallery-showcase.lv-revealed .lv-gallery-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.lv-gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1.25rem;
}

.lv-gallery-featured {
  grid-row: span 2;
}

.lv-gallery-card-wide {
  grid-column: span 3;
}

.lv-gallery-card {
  position: relative;
  border-radius: var(--lv-radius-2xl);
  overflow: hidden;
  border: 1px solid var(--lv-border-color);
  background: var(--lv-bg-primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  opacity: 1;
  transform: translateY(0) translateX(0);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s ease,
              border-color 0.5s ease;
  will-change: transform;
}

.lv-gallery-img-load {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lv-gallery-img-loaded {
  opacity: 1;
}

.lv-gallery-img-error {
  display: none !important;
}

.lv-gallery-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lv-gallery-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.lv-gallery-card:nth-child(1) .lv-gallery-fallback {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.08) 0%, transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
}

.lv-gallery-card:nth-child(2) .lv-gallery-fallback {
  background:
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.06) 0%, transparent 40%),
    radial-gradient(circle at 20% 70%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
    linear-gradient(145deg, #1e1b4b 0%, #312e81 60%, #4c1d95 100%);
}

.lv-gallery-card:nth-child(3) .lv-gallery-fallback {
  background:
    radial-gradient(circle at 40% 60%, rgba(255,255,255,0.05) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    linear-gradient(160deg, #0f172a 0%, #1e293b 50%, #312e81 100%);
}

.lv-gallery-card:nth-child(4) .lv-gallery-fallback {
  background:
    radial-gradient(circle at 60% 40%, rgba(255,255,255,0.07) 0%, transparent 40%),
    radial-gradient(circle at 30% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    linear-gradient(130deg, #1e293b 0%, #312e81 60%, #4c1d95 100%);
}

.lv-gallery-card:nth-child(5) .lv-gallery-fallback {
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,0.05) 0%, transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
    linear-gradient(155deg, #312e81 0%, #4c1d95 60%, #6b21a8 100%);
}

.lv-gallery-card:nth-child(6) .lv-gallery-fallback {
  background:
    radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 40%),
    radial-gradient(circle at 60% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    linear-gradient(140deg, #0f172a 0%, #1e1b4b 60%, #312e81 100%);
}

.lv-motion-ready .lv-gallery-showcase:not(.lv-revealed) .lv-gallery-card {
  opacity: 0;
}

.lv-motion-ready .lv-gallery-showcase:not(.lv-revealed) .lv-gallery-card:nth-child(1) {
  transform: translateX(-35px) translateY(0);
}

.lv-motion-ready .lv-gallery-showcase:not(.lv-revealed) .lv-gallery-card:nth-child(2) {
  transform: translateY(30px) translateX(0);
}

.lv-motion-ready .lv-gallery-showcase:not(.lv-revealed) .lv-gallery-card:nth-child(3) {
  transform: translateY(-25px) translateX(0);
}

.lv-motion-ready .lv-gallery-showcase:not(.lv-revealed) .lv-gallery-card:nth-child(4) {
  transform: translateX(35px) translateY(0);
}

.lv-motion-ready .lv-gallery-showcase:not(.lv-revealed) .lv-gallery-card:nth-child(5),
.lv-motion-ready .lv-gallery-showcase:not(.lv-revealed) .lv-gallery-card:nth-child(6) {
  transform: scale(0.96);
}

.lv-gallery-showcase.lv-revealed .lv-gallery-card {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.lv-gallery-showcase.lv-revealed .lv-gallery-card:nth-child(1) {
  transition: opacity 0.8s ease-out 0.05s, transform 0.8s ease-out 0.05s;
}

.lv-gallery-showcase.lv-revealed .lv-gallery-card:nth-child(2) {
  transition: opacity 0.8s ease-out 0.13s, transform 0.8s ease-out 0.13s;
}

.lv-gallery-showcase.lv-revealed .lv-gallery-card:nth-child(3) {
  transition: opacity 0.8s ease-out 0.21s, transform 0.8s ease-out 0.21s;
}

.lv-gallery-showcase.lv-revealed .lv-gallery-card:nth-child(4) {
  transition: opacity 0.8s ease-out 0.29s, transform 0.8s ease-out 0.29s;
}

.lv-gallery-showcase.lv-revealed .lv-gallery-card:nth-child(5) {
  transition: opacity 0.8s ease-out 0.37s, transform 0.8s ease-out 0.37s;
}

.lv-gallery-showcase.lv-revealed .lv-gallery-card:nth-child(6) {
  transition: opacity 0.8s ease-out 0.45s, transform 0.8s ease-out 0.45s;
}

.lv-gallery-featured {
  grid-row: span 2;
}

.lv-gallery-card-wide {
  grid-column: span 3;
}

.lv-gallery-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.lv-gallery-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.lv-gallery-card:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.lv-gallery-card:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

.lv-gallery-card:nth-child(6) {
  grid-column: 1 / -1;
  grid-row: 3;
}

.lv-gallery-image-wrap {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  z-index: 0;
}

.lv-gallery-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.lv-gallery-img-error {
  display: none;
}

.lv-gallery-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.lv-gallery-img-error + .lv-gallery-fallback {
  opacity: 1;
}

.lv-gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.45s ease;
}

.lv-gallery-card:hover .lv-gallery-card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.25) 50%, transparent 100%);
}

.lv-gallery-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--lv-radius-full);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.lv-gallery-card:hover .lv-gallery-badge {
  opacity: 1;
  transform: translateY(0);
}

.lv-gallery-card-title {
  font-size: var(--lv-text-lg);
  font-weight: var(--lv-font-semibold);
  color: white;
  margin: 0 0 0.25rem;
  line-height: 1.3;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lv-gallery-card:hover .lv-gallery-card-title {
  transform: translateY(-4px);
}

.lv-gallery-card-meta {
  font-size: var(--lv-text-sm);
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.4;
}

.lv-gallery-card-link {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  z-index: 3;
  opacity: 0;
  transform: translateX(8px) rotate(-45deg);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.35s ease;
}

.lv-gallery-card-link svg {
  width: 20px;
  height: 20px;
}

.lv-gallery-card-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 3;
  opacity: 0;
  transform: translateY(8px) scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

.lv-gallery-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.lv-gallery-card:hover .lv-gallery-card-icon {
  opacity: 1;
  transform: translateY(-3px) scale(1.08);
  background: rgba(255, 255, 255, 0.2);
}

.lv-gallery-featured .lv-gallery-card-icon {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lv-gallery-badge-featured {
  background: rgba(99, 102, 241, 0.25);
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.25);
}

.lv-gallery-card:hover .lv-gallery-card-link {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
  background: rgba(255, 255, 255, 0.25);
}

.lv-gallery-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: var(--lv-primary-400);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(99, 102, 241, 0.18);
}

[data-theme="dark"] .lv-gallery-card:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(99, 102, 241, 0.28);
}

.lv-gallery-card:hover .lv-gallery-image-wrap img {
  transform: scale(1.06);
}

@media (max-width: 1023px) {
  .lv-gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
    gap: 1.25rem;
  }

  .lv-gallery-featured {
    grid-row: span 2;
  }
}

@media (max-width: 640px) {
  .lv-gallery-masonry {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.5rem 0.25rem 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .lv-gallery-masonry::-webkit-scrollbar {
    display: none;
  }

  .lv-gallery-card {
    scroll-snap-align: center;
    min-width: 86vw;
    max-width: 90vw;
    flex-shrink: 0;
  }

  .lv-gallery-featured {
    grid-row: span 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lv-gallery-showcase,
  .lv-gallery-eyebrow,
  .lv-gallery-heading,
  .lv-gallery-subtitle,
  .lv-gallery-card,
  .lv-gallery-card-title,
  .lv-gallery-badge,
  .lv-gallery-card-link,
  .lv-gallery-card-overlay,
  .lv-gallery-image-wrap img,
  .lv-gallery-glow {
    transition: none !important;
    animation: none !important;
  }

  .lv-gallery-card:hover {
    transform: none;
  }

  .lv-gallery-card:hover .lv-gallery-card-link {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}

/* --------------------------------------------
   Trust Section
   -------------------------------------------- */
.lv-trust-section {
  position: relative;
  padding: 6rem 0 7rem;
  background: linear-gradient(180deg, #fafaff 0%, #f5f3ff 50%, #ffffff 100%);
  overflow: hidden;
}

[data-theme="dark"] .lv-trust-section {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 27, 75, 0.9) 50%, rgba(15, 23, 42, 0.95) 100%);
}

.lv-trust-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.lv-trust-header {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.lv-trust-eyebrow {
  display: inline-block;
  font-size: var(--lv-text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lv-primary-700);
  background: rgba(99, 102, 241, 0.08);
  padding: 0.4rem 0.9rem;
  border-radius: var(--lv-radius-full);
  margin-bottom: 1.25rem;
  opacity: 1;
  transform: translateY(0);
}

.lv-trust-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--lv-font-bold);
  color: var(--lv-text-primary);
  margin: 0 0 1rem;
  line-height: 1.2;
  opacity: 1;
  transform: translateY(0);
}

.lv-trust-subtitle {
  font-size: var(--lv-text-lg);
  color: var(--lv-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
  opacity: 1;
  transform: translateY(0);
}

.lv-motion-ready .lv-trust-section:not(.lv-revealed) .lv-trust-eyebrow,
.lv-motion-ready .lv-trust-section:not(.lv-revealed) .lv-trust-heading,
.lv-motion-ready .lv-trust-section:not(.lv-revealed) .lv-trust-subtitle {
  opacity: 0;
  transform: translateY(12px);
}

.lv-trust-section.lv-revealed .lv-trust-eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.lv-trust-section.lv-revealed .lv-trust-heading {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease-out 0.08s, transform 0.7s ease-out 0.08s;
}

.lv-trust-section.lv-revealed .lv-trust-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease-out 0.16s, transform 0.7s ease-out 0.16s;
}

.lv-trust-console {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
  max-width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(99, 102, 241, 0.1);
  border-radius: 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .lv-trust-console {
  background: rgba(30, 27, 75, 0.4);
  border-color: rgba(99, 102, 241, 0.18);
}

.lv-trust-panel:nth-child(1) { grid-column: 1; grid-row: 1; }
.lv-trust-panel:nth-child(2) { grid-column: 3; grid-row: 1; }
.lv-trust-panel:nth-child(3) { grid-column: 1; grid-row: 2; }
.lv-trust-panel:nth-child(4) { grid-column: 3; grid-row: 2; }

.lv-trust-panel {
  position: relative;
  width: 100%;
  max-width: 280px;
  padding: 1.5rem 1.25rem;
  border-radius: 22px;
  border: 1px solid rgba(99, 102, 241, 0.08);
  background: rgba(255, 255, 255, 0.6);
  text-align: center;
  cursor: pointer;
  z-index: 2;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s ease,
              border-color 0.5s ease,
              background 0.5s ease;
}

[data-theme="dark"] .lv-trust-panel {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(255, 255, 255, 0.06);
}

.lv-trust-panel::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.25), rgba(139, 92, 246, 0.25));
  opacity: 0.6;
}

.lv-trust-panel:nth-child(1)::before,
.lv-trust-panel:nth-child(3)::before {
  right: -50px;
}

.lv-trust-panel:nth-child(2)::before,
.lv-trust-panel:nth-child(4)::before {
  left: -50px;
}

.lv-motion-ready .lv-trust-section:not(.lv-revealed) .lv-trust-panel {
  opacity: 0;
  transform: translateY(16px);
}

.lv-trust-section.lv-revealed .lv-trust-panel:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease-out 0.75s, transform 0.7s ease-out 0.75s, box-shadow 0.5s ease, border-color 0.5s ease, background 0.5s ease;
}

.lv-trust-section.lv-revealed .lv-trust-panel:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease-out 0.87s, transform 0.7s ease-out 0.87s, box-shadow 0.5s ease, border-color 0.5s ease, background 0.5s ease;
}

.lv-trust-section.lv-revealed .lv-trust-panel:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease-out 0.99s, transform 0.7s ease-out 0.99s, box-shadow 0.5s ease, border-color 0.5s ease, background 0.5s ease;
}

.lv-trust-section.lv-revealed .lv-trust-panel:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease-out 1.11s, transform 0.7s ease-out 1.11s, box-shadow 0.5s ease, border-color 0.5s ease, background 0.5s ease;
}

.lv-trust-panel:hover {
  transform: translateY(-6px);
  border-color: var(--lv-primary-400);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(99, 102, 241, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .lv-trust-panel:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(99, 102, 241, 0.2);
  background: rgba(30, 27, 75, 0.7);
}

.lv-trust-panel-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .lv-trust-panel-icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.15));
}

.lv-trust-panel-symbol {
  font-size: 28px;
  line-height: 1;
  display: block;
}

.lv-trust-panel:hover .lv-trust-panel-icon {
  transform: scale(1.08) rotate(3deg);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.18), rgba(139, 92, 246, 0.18));
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.12);
}

.lv-trust-panel-title {
  font-size: var(--lv-text-lg);
  font-weight: var(--lv-font-semibold);
  color: var(--lv-text-primary);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.lv-trust-panel-text {
  font-size: var(--lv-text-sm);
  color: var(--lv-text-secondary);
  line-height: 1.65;
  margin: 0;
}

.lv-trust-panel-status {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  background: rgba(99, 102, 241, 0.08);
  color: var(--lv-primary-700);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

[data-theme="dark"] .lv-trust-panel-status {
  background: rgba(99, 102, 241, 0.15);
  color: var(--lv-primary-300);
}

.lv-trust-hub {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  z-index: 3;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.7s ease-out 0.35s, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s;
}

.lv-motion-ready .lv-trust-section:not(.lv-revealed) .lv-trust-hub {
  opacity: 0;
  transform: scale(0.85);
}

.lv-trust-section.lv-revealed .lv-trust-hub {
  opacity: 1;
  transform: scale(1);
}

.lv-trust-hub-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, rgba(139, 92, 246, 0.08) 40%, transparent 70%);
  z-index: 0;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 1s ease-out 0.4s, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s;
}

.lv-trust-section.lv-revealed .lv-trust-hub-glow {
  opacity: 1;
  transform: scale(1);
}

.lv-trust-hub-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(99, 102, 241, 0.15);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lv-trust-hub-ring-1 {
  transition-delay: 0.5s;
}

.lv-trust-hub-ring-2 {
  inset: -18px;
  transition-delay: 0.65s;
}

.lv-trust-section.lv-revealed .lv-trust-hub-ring {
  opacity: 1;
  transform: scale(1);
}

.lv-trust-hub-ring {
  animation: lv-orbit-spin 32s linear infinite;
}

.lv-trust-hub-core {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lv-primary-500), var(--lv-secondary-500));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: white;
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.3), 0 0 80px rgba(139, 92, 246, 0.18);
  overflow: hidden;
}

.lv-trust-hub-symbol {
  font-size: 46px;
  line-height: 1;
  display: block;
  animation: lv-trust-hub-breathe 4s ease-in-out infinite;
}

.lv-trust-hub-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}

.lv-trust-hub-label-name {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: white;
}

.lv-trust-hub-label-sub {
  display: none;
}

.lv-trust-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.lv-trust-connector-line {
  stroke: rgba(99, 102, 241, 0.18);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 7 11;
  animation: lv-trust-pulse 3s linear infinite;
  transition: stroke 0.3s ease, stroke-width 0.3s ease;
}

.lv-trust-connector-line.lv-trust-connector-active {
  stroke: rgba(99, 102, 241, 0.55);
  stroke-width: 2.2;
}

.lv-trust-hub.lv-trust-hub-active .lv-trust-hub-glow {
  opacity: 1;
  transform: scale(1.15);
}

.lv-trust-hub.lv-trust-hub-active .lv-trust-hub-ring {
  border-color: rgba(99, 102, 241, 0.35);
}

.lv-trust-hub.lv-trust-hub-active .lv-trust-hub-core {
  box-shadow: 0 0 60px rgba(99, 102, 241, 0.45), 0 0 100px rgba(139, 92, 246, 0.25);
}

@keyframes lv-trust-pulse {
  to {
    stroke-dashoffset: -18;
  }
}

@keyframes lv-trust-hub-breathe {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@media (max-width: 1023px) {
  .lv-trust-console {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.5rem;
    max-width: 480px;
    padding: 2.5rem 1.5rem;
  }

  .lv-trust-panel:nth-child(1),
  .lv-trust-panel:nth-child(2),
  .lv-trust-panel:nth-child(3),
  .lv-trust-panel:nth-child(4) {
    grid-column: 1;
    grid-row: auto;
    max-width: 100%;
  }

  .lv-trust-hub {
    grid-column: 1;
    grid-row: auto;
    order: 0;
    width: 100px;
    height: 100px;
    margin-bottom: 0.5rem;
  }

  .lv-trust-hub-core {
    width: 56px;
    height: 56px;
  }

  .lv-trust-hub-symbol {
    font-size: 28px;
  }

  .lv-trust-panel::before {
    display: none;
  }

  .lv-trust-connectors {
    display: none;
  }
}

@media (max-width: 640px) {
  .lv-trust-section {
    padding: 4rem 0 5rem;
  }

  .lv-trust-console {
    padding: 2rem 1rem;
    border-radius: 22px;
  }

  .lv-trust-panel {
    padding: 1.5rem 1.25rem;
  }

  .lv-trust-connectors {
    display: none;
  }

  .lv-trust-hub {
    width: 90px;
    height: 90px;
    margin-bottom: 1rem;
  }

  .lv-trust-hub-core {
    width: 60px;
    height: 60px;
  }

  .lv-trust-hub-symbol {
    font-size: 32px;
  }

  .lv-trust-hub-label-name {
    font-size: 0.65rem;
  }

  .lv-trust-hub-label-sub {
    font-size: 0.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lv-trust-section,
  .lv-trust-eyebrow,
  .lv-trust-heading,
  .lv-trust-subtitle,
  .lv-trust-panel,
  .lv-trust-panel-icon,
  .lv-trust-hub,
  .lv-trust-hub-glow,
  .lv-trust-hub-ring,
  .lv-trust-hub-core,
  .lv-trust-hub-symbol {
    transition: none !important;
    animation: none !important;
  }

  .lv-trust-section.lv-revealed .lv-trust-eyebrow,
  .lv-trust-section.lv-revealed .lv-trust-heading,
  .lv-trust-section.lv-revealed .lv-trust-subtitle,
  .lv-trust-section.lv-revealed .lv-trust-panel,
  .lv-trust-section.lv-revealed .lv-trust-hub {
    opacity: 1;
    transform: none;
  }

  .lv-trust-panel:hover {
    transform: none;
  }
}
