/* ========================================
   NEW LANDING PAGE STYLES
   Mobile-first hero section with video background
   Requires: header.css (for variables)
   ======================================== */

/* ----------------------------------------
   Spring Animation Custom Properties
   Figma: smart animate, custom spring
   stiffness: 100, damping: 15, mass: 1
   ---------------------------------------- */
:root {
  /* Spring easing curve (underdamped, slight overshoot) */
  --spring-easing: linear(
    0, 0.009, 0.035 2.1%, 0.141 4.4%, 0.723 12.9%, 0.938 16.7%,
    1.017, 1.077, 1.121, 1.149 24.3%, 1.159, 1.163, 1.161, 1.154 29.9%,
    1.129 32.8%, 1.051 39.6%, 1.017 43.1%, 0.991, 0.977 51%,
    0.974 53.8%, 0.975 57.1%, 0.997 69.8%, 1.003 76.9%, 1
  );
  --spring-duration: 800ms;
  /* Fallback for browsers without linear() support */
  --spring-easing-fallback: cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

/* Header colors: Uses default dark text theme from header.css */
/* No overrides needed - dark text is now the default */

/* ========================================
   HERO VIDEO SECTION
   Full-screen hero with video background
   ======================================== */

.hero-video-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 40px;
  margin-top: calc(var(--header-height) * -1);
  overflow: hidden;
}

/* Video Background Container */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Video Elements */
.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

/* Video display control */
.hero-video--mobile {
  display: block;
}

.hero-video--desktop {
  display: none;
}


/* Content Container */
.hero-video-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}


/* ----------------------------------------
   Trust Rating Badge (Top)
   Glassmorphic badge with platform icons + rating
   ---------------------------------------- */

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(239, 246, 255, 0.5); /* bg-blue-50/50 */
  border-radius: 40px;
  outline: 1.25px solid #ffffff;
  outline-offset: -1.25px;
  backdrop-filter: blur(77.5px);
  -webkit-backdrop-filter: blur(77.5px);
}

/* Platform Icons Container */
.hero-trust-platforms {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Platform Icon */
.hero-trust-platform {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
}

/* Rating Container */
.hero-trust-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-trust-star {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  object-fit: contain;
}

.hero-trust-score {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  line-height: 1;
}

.hero-trust-reviews {
  font-size: 12px;
  font-weight: 500;
  color: #737373;
  line-height: 1;
}


/* ----------------------------------------
   Hero Headlines
   ---------------------------------------- */

.hero-video-headline {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
  margin: 0;
  max-width: 600px;
}

.hero-video-subheadline-wrap {
  position: relative;
}

.hero-video-subheadline {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 0;
  max-width: 600px;
}

/* Decorative Elements - Hidden on mobile, shown on desktop */
.hero-handwritten-arrow,
.hero-brand-element {
  display: none;
}

@media (min-width: 992px) {
  .hero-handwritten-arrow {
    display: block;
    position: absolute;
    bottom: -65px;
    inset-inline-start: -67px;
    pointer-events: none;
  }

  .hero-brand-element {
    display: block;
    position: absolute;
    top: -36px;
    inset-inline-start: -178px;
    pointer-events: none;
  }

  /* RTL: Flip handwritten arrow */
  [dir="rtl"] .hero-handwritten-arrow {
    transform: scaleX(-1);
  }

  /* RTL: Adjust brand element position */
  [dir="rtl"] .hero-brand-element {
    top: 36px;
  }
}


/* ----------------------------------------
   CTA Buttons
   ---------------------------------------- */

.hero-video-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 280px;
  margin-top: 8px;
}

/* CTA buttons use unified .cta-btn from components.css */


/* ----------------------------------------
   Trust Features (3 checkmarks)
   ---------------------------------------- */

.hero-trust-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.hero-trust-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust-feature-icon {
  width: 24px;
  height: 24px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  border: 0.75px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-trust-feature-icon svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

.hero-trust-feature-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}


/* ----------------------------------------
   Trusted By Section (Logos)
   ---------------------------------------- */

.hero-trusted-by {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  width: 100%;
}

.hero-trusted-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Logos Carousel */
.hero-trusted-by .trusted-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 90%,
    rgba(0, 0, 0, 0.3) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 90%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.hero-trusted-by .trusted-carousel-track {
  display: flex;
  align-items: center;
  gap: 4px;
  width: max-content;
  animation: trusted-scroll 90s linear infinite;
}

/* Pause on hover (desktop) */
@media (hover: hover) {
  .hero-trusted-by .trusted-carousel:hover .trusted-carousel-track {
    animation-play-state: paused;
  }
}

.hero-trusted-by a.trusted-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  text-decoration: none;
}

.hero-trusted-by .trusted-logo-img {
  height: 100%;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.hero-trusted-by .trusted-logo-item:hover .trusted-logo-img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Infinite scroll animation */
@keyframes trusted-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* RTL: Reverse scroll direction */
@keyframes trusted-scroll-rtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

[dir="rtl"] .hero-trusted-by .trusted-carousel-track {
  animation-name: trusted-scroll-rtl;
}


/* ========================================
   TABLET BREAKPOINT (768px+)
   ======================================== */

@media (min-width: 768px) {
  .hero-video-section {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 60px;
  }

  .hero-video-inner {
    gap: 28px;
  }

  /* Trust Badge */
  .hero-trust-badge {
    padding: 4px 8px;
    gap: 12px;
  }

  .hero-trust-platform {
    width: 24px;
    height: 24px;
  }

  .hero-trust-star {
    width: 16px;
    height: 16px;
  }

  .hero-trust-score {
    font-size: 15px;
  }

  .hero-trust-reviews {
    font-size: 13px;
  }

  /* Headlines */
  .hero-video-headline {
    font-size: 48px;
    max-width: 700px;
  }

  .hero-video-subheadline {
    font-size: 20px;
    max-width: 560px;
  }

  /* CTAs - Side by side */
  .hero-video-ctas {
    flex-direction: row;
    max-width: none;
    width: auto;
  }

  /* Trust Features - Row layout */
  .hero-trust-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .hero-trust-feature-text {
    font-size: 14px;
  }

  /* Trusted By */
  .hero-trusted-by {
    gap: 24px;
    margin-top: 40px;
  }

  .hero-trusted-title {
    font-size: 14px;
  }

  .hero-trusted-by .trusted-carousel-track {
    gap: 4px;
  }

  .hero-trusted-by .trusted-logo-img {
    max-width: 140px;
  }
}


/* ========================================
   DESKTOP BREAKPOINT (992px+)
   ======================================== */

@media (min-width: 992px) {
  .hero-video-section {
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 80px;
  }

  /* Video swap */
  .hero-video--mobile {
    display: none;
  }

  .hero-video--desktop {
    display: block;
  }

  .hero-video-inner {
    gap: 32px;
  }

  /* Trust Badge */
  .hero-trust-badge {
    padding: 4px 8px;
    gap: 12px;
  }

  .hero-trust-platforms {
    gap: 10px;
  }

  .hero-trust-platform {
    width: 28px;
    height: 28px;
  }

  .hero-trust-score {
    font-size: 16px;
  }

  .hero-trust-reviews {
    font-size: 14px;
  }

  /* Headlines */
  .hero-video-headline {
    font-size: 80px;
    max-width: 978px;
  }

  .hero-video-subheadline {
    font-size: 24px;
    max-width: 572px;
  }

  /* Trust Features */
  .hero-trust-features {
    gap: 32px;
    margin-top: 20px;
  }

  .hero-trust-feature-icon {
    width: 28px;
    height: 28px;
  }

  .hero-trust-feature-icon svg {
    width: 18px;
    height: 18px;
  }

  .hero-trust-feature-text {
    font-size: 15px;
  }

  /* Trusted By */
  .hero-trusted-by {
    margin-top: 48px;
  }

  .hero-trusted-by .trusted-carousel-track {
    gap: 4px;
  }

  .hero-trusted-by .trusted-logo-img {
    max-width: 160px;
  }
}


/* ========================================
   ACCESSIBILITY & MOTION
   ======================================== */

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .hero-video-bg {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  }
}

/* Focus states */
.hero-trusted-logo:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
  opacity: 1;
}


/* ========================================
   COMPLIANCE CAROUSEL SECTION
   ======================================== */

.compliance-section {
  position: relative;
  padding: 60px 0;
  background-color: #F8FAFC;
  overflow: hidden;
}

/* Background Images */
.compliance-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.compliance-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.compliance-bg-img--mobile {
  display: block;
  aspect-ratio: 400 / 1094; /* Prevent CLS */
}

.compliance-bg-img--desktop {
  display: none;
  aspect-ratio: 1440 / 716; /* Prevent CLS */
}

.compliance-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.compliance-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.compliance-header-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.compliance-eyebrow {
  font-size: 14px;
  font-weight: 500;
  color: #2D7577;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.compliance-title {
  font-size: 28px;
  font-weight: 700;
  color: #2A303B;
  margin: 0;
  line-height: 1.2;
}

/* Navigation Buttons */
.compliance-nav {
  display: flex;
  gap: 12px;
}

.compliance-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #0f172a;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* RTL: Flip arrow icons to match visual direction */
[dir="rtl"] .compliance-nav-btn svg {
  transform: scaleX(-1);
}

.compliance-nav-btn:hover {
  background: #0f172a;
  border-color: #0f172a;
  color: #fff;
}

.compliance-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.compliance-nav-btn:disabled:hover {
  background: #fff;
  border-color: #e2e8f0;
  color: #0f172a;
}

/* Carousel */
.compliance-carousel {
  overflow: visible;
}

/* Base: Desktop-first (clean, simple flex layout) */
.compliance-carousel-track {
  display: flex;
  align-items: stretch;
  gap: 12px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth ease-out */
}

/* Cards */
.compliance-card {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 300px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 1);
}

/* Mobile & Tablet: Native CSS scroll (below 992px) */
@media (max-width: 991px) {
  .compliance-carousel-track {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .compliance-carousel-track::-webkit-scrollbar {
    display: none;
  }

  .compliance-card {
    scroll-snap-align: start;
  }

  .compliance-card:first-of-type {
    margin-inline-start: 15px;
  }
}

/* Mobile-specific: Extend beyond parent padding */
@media (max-width: 767px) {
  .compliance-carousel-track {
    width: calc(100% + 20px);
    margin-inline-end: -20px;
    padding-inline-end: 20px;
  }
}

/* Tablet-specific: Extend beyond parent padding */
@media (min-width: 768px) and (max-width: 991px) {
  .compliance-carousel-track {
    width: calc(100% + 40px);
    margin-inline-end: -40px;
    padding-inline-end: 40px;
  }
}

.compliance-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.compliance-flag {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.compliance-country {
  font-size: 14px;
  font-weight: 600;
  color: #2A303B;
}

.compliance-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #2A303B;
  margin: 0 0 28px 0;
  line-height: 1.3;
}

.compliance-card-list {
  margin: 0;
  margin-bottom: 24px; /* Space before CTA */
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 10px;
}

.compliance-card-list li {
  position: relative;
  padding-left: 20px;
  font-size: 12px;
  color: #3E537C;
  line-height: 1.5;
}

.compliance-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  background: #3E537C;
  border-radius: 50%;
}

/* Card CTA - Button style with outline */
.compliance-card-cta {
  margin-top: auto;
  align-self: stretch;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 32px;
  border: 1px solid #94A3B8; /* slate-400 */
  background: transparent;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.compliance-card-cta-text {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: #1F2937; /* gray-800 */
  text-align: center;
}

.compliance-card-cta svg,
.compliance-card-cta img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #1F2937;
  transition: transform var(--transition-fast);
}

.compliance-card-cta:hover {
  background: rgba(148, 163, 184, 0.1);
  border-color: #64748B; /* slate-500 */
}

.compliance-card-cta:hover svg,
.compliance-card-cta:hover img {
  transform: translateX(4px);
}

/* RTL Support for compliance CTA */
[dir="rtl"] .compliance-card-cta svg,
[dir="rtl"] .compliance-card-cta img {
  transform: scaleX(-1);
}

[dir="rtl"] .compliance-card-cta:hover svg,
[dir="rtl"] .compliance-card-cta:hover img {
  transform: scaleX(-1) translateX(4px);
}

/* RTL Support */
[dir="rtl"] .compliance-header-text {
  text-align: right;
}


[dir="rtl"] .compliance-card-list li {
  padding-left: 0;
  padding-right: 20px;
  text-align: right;
}

[dir="rtl"] .compliance-card-list li::before {
  left: auto;
  right: 0;
}

/* ========================================
   COMPLIANCE - TABLET (768px+)
   ======================================== */

@media (min-width: 768px) {
  .compliance-section {
    padding: 80px 0;
  }

  .compliance-bg-img--mobile {
    display: none;
  }

  .compliance-bg-img--desktop {
    display: block;
  }

  .compliance-inner {
    padding: 0 40px;
  }

  .compliance-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
  }

  .compliance-title {
    font-size: 36px;
  }

  .compliance-carousel-track {
    gap: 12px;
  }

  .compliance-card {
    width: 340px;
    padding: 28px;
    border-radius: 24px;
  }

  .compliance-card-title {
    font-size: 20px;
  }

  .compliance-card-list li {
    font-size: 12px;
  }
}

/* ========================================
   COMPLIANCE - DESKTOP (992px+)
   ======================================== */

@media (min-width: 992px) {
  .compliance-section {
    padding: 100px 0;
    overflow-x: clip; /* Prevent horizontal scrollbar from full-width carousel */
  }

  .compliance-inner {
    padding: 0 60px;
  }

  .compliance-title {
    font-size: 42px;
  }

  .compliance-eyebrow {
    font-size: 15px;
  }

  /* Carousel: Break out to full viewport width (screen edge to edge) */
  .compliance-carousel {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden; /* Hide overflow, JS controls scroll via transform */
  }

  .compliance-carousel-track {
    gap: 12px;
    padding-inline-start: 20px; /* Space before first card */
    user-select: none; /* Prevent text selection during drag */
    will-change: transform; /* Performance hint for GPU acceleration */
  }

  .compliance-card {
    width: 380px;
    padding: 32px;
    border-radius: 32px;
  }

  .compliance-flag {
    width: 32px;
    height: 32px;
  }

  .compliance-country {
    font-size: 14px;
  }

  .compliance-card-title {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .compliance-card-list {
    gap: 12px;
  }

  .compliance-card-list li {
    font-size: 12px;
  }
}


/* ========================================
   USER-FRIENDLY BY DESIGN SECTION
   Mobile-first approach
   ======================================== */

.user-friendly-section {
  padding-block-start: 60px;
  padding-block-end: 60px;
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF4F8 100%);
  overflow-x: clip;
}

.user-friendly-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header: Title + CTA */
.user-friendly-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  text-align: center;
}

.user-friendly-title {
  font-size: 28px;
  font-weight: 700;
  color: #1E293B;
  line-height: 1.2;
  margin: 0;
}

/* Main Content Area */
.user-friendly-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  min-height: 400px;
  padding-block-end: 40px;
}

/* Background 3D Landscape */
.user-friendly-landscape {
  position: absolute;
  bottom: 10%; /* Mobile: lifted 10% from bottom */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1170px;
  z-index: 1;
  pointer-events: none;
}

.user-friendly-landscape-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1320 / 834; /* Prevent CLS: reserve space before image loads */
}

/* Feature Menu */
.user-friendly-menu {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding: 6px;
  background: #EDF5FF;
  border: 1px solid #FFFFFF;
  border-radius: 100px;
  overflow-x: auto;
  width: calc(100% + 30px);
  margin-inline-end: -30px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(to right, #000 85%, transparent 100%);
  mask-image: linear-gradient(to right, #000 85%, transparent 100%);
}

.user-friendly-menu::-webkit-scrollbar {
  display: none;
}

.user-friendly-menu-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background: #F5F8FF;
  border: 1px solid #C9D3E6;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  color: #1D2027;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.user-friendly-menu-item:hover {
  background: #E8EEFF;
}

.user-friendly-menu-item.is-active {
  background: #2A303B;
  border-color: #2A303B;
  color: #fff;
}

/* Dashboard Mockup */
.user-friendly-dashboard {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
}

.user-friendly-dashboard-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1096 / 783; /* Prevent CLS: reserve space before image loads */
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* ----------------------------------------
   Tablet: 768px+
   ---------------------------------------- */
@media (min-width: 768px) {
  .user-friendly-section {
    padding-block-start: 80px;
    padding-block-end: 80px;
  }

  .user-friendly-inner {
    padding: 0 15px;
  }

  .user-friendly-header {
    gap: 28px;
    margin-bottom: 50px;
  }

  .user-friendly-title {
    font-size: 36px;
  }

  .user-friendly-content {
    min-height: 500px;
    padding-block-end: 60px;
  }

  .user-friendly-landscape {
    bottom: 0; /* Tablet/Desktop: reset to bottom */
  }

  .user-friendly-menu {
    flex-direction: column;
    position: absolute;
    inset-inline-start: 0;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    max-width: 220px;
    gap: 8px;
    padding: 16px 24px;
    overflow-x: visible;
    border-radius: 20px;
    margin-inline-start: -30px;
    margin-inline-end: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .user-friendly-dashboard {
    max-width: 80%;
    margin-inline-start: auto;
    margin-inline-end: -40px;
  }

  .user-friendly-dashboard-img {
    border-radius: 20px;
  }
}

/* ----------------------------------------
   Desktop: 992px+
   ---------------------------------------- */
@media (min-width: 992px) {
  .user-friendly-section {
    padding-block-start: 100px;
    padding-block-end: 100px;
  }

  .user-friendly-inner {
    padding: 0 15px;
  }

  .user-friendly-header {
    gap: 32px;
    margin-bottom: 60px;
  }

  .user-friendly-title {
    font-size: 42px;
  }

  .user-friendly-content {
    min-height: 600px;
    padding-block-end: 80px;
  }

  .user-friendly-menu {
    max-width: 258px;
    inset-inline-start: 0;
    gap: 10px;
    padding: 20px 24px;
    border-radius: 24px;
    margin-inline-start: -30px;
  }

  .user-friendly-menu-item {
    font-size: 15px;
  }

  .user-friendly-dashboard {
    max-width: 82%;
    margin-inline-end: -60px;
  }

  .user-friendly-dashboard-img {
    border-radius: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  }
}


/* ========================================
   MODULES SECTION
   Two-column sticky-scroll layout (desktop)
   Stacked layout (mobile)
   ======================================== */

.nl-modules-section {
  position: relative;
  padding: 60px 0;
  background-color: #F8FAFC;
  /* Note: overflow:hidden breaks position:sticky - removed for sticky to work */
}

/* Background Images */
.nl-modules-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.nl-modules-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

/* RTL: No transform needed - using inset:0 for full coverage */

.nl-modules-bg-img--mobile {
  display: block;
  aspect-ratio: 400 / 1784; /* Prevent CLS: match mobile bg dimensions */
}

.nl-modules-bg-img--desktop {
  display: none;
  aspect-ratio: 1440 / 1190; /* Prevent CLS: match desktop bg dimensions */
}

/* Inner Container */
.nl-modules-inner {
  position: relative;
  z-index: 1;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Layout Wrapper - Mobile: stacked */
.nl-modules-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Content Column */
.nl-modules-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.nl-modules-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-dark);
  margin: 0;
}

.nl-modules-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-secondary, #64748B);
  margin: 0;
  max-width: 560px;
  text-align: start;
}

/* Cards Container - Webflow dynamic list wrapper */
.nl-modules-cards-container {
  display: contents;
}

/* Cards Column - Mobile: stacked single column */
.nl-modules-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


/* ========================================
   MODULE CARD STYLES (from Webflow component)
   zenhr-uae-module-* classes
   ======================================== */

/* Card Base Styles */
.zenhr-uae-module-card {
  position: relative;
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Spring animation: 800ms, stiffness 100, damping 15, mass 1 */
  transition: transform var(--spring-duration, 800ms) var(--spring-easing, var(--spring-easing-fallback)),
              box-shadow var(--spring-duration, 800ms) var(--spring-easing, var(--spring-easing-fallback));
  cursor: pointer;
}

/* Card Gradients via custom attribute */
[card-color="payroll"] {
  background: linear-gradient(180deg, #125A66 0%, #258698 100%);
}

[card-color="attendance-and-time-tracking"] {
  background: linear-gradient(180deg, #494AB4 0%, #6F6FD1 100%);
}

[card-color="employee-self-service"] {
  background: linear-gradient(180deg, #1D3144 0%, #42556A 100%);
}

[card-color="employee-management"] {
  background: linear-gradient(180deg, #121C66 0%, #256698 100%);
}

[card-color="performance-and-evaluation"] {
  background: linear-gradient(180deg, #965B0A 0%, #B67E30 100%);
}

[card-color="reporting-and-analytics"] {
  background: linear-gradient(180deg, #772D51 0%, #9F6581 100%);
}

[card-color="applicant-tracking-system"] {
  background: linear-gradient(180deg, #3b0764 0%, #86198f 100%);
  background-blend-mode: soft-light;
}

/* Card Header */
.zenhr-uae-module-card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.zenhr-uae-module-card-icon-wrap {
  order: -1;
  flex-shrink: 0;
  width: 140px;
  height: 70px;
  aspect-ratio: 2 / 1; /* Prevent CLS: reserve space before image loads */
}

.zenhr-uae-module-card-icon {
  width: 100%;
  aspect-ratio: 2 / 1; /* Prevent CLS: match 200x100 dimensions */
  height: 100%;
  object-fit: contain;
  opacity: 0.9;
  transform: scaleX(-1);
}

/* RTL: Double-flip to show original orientation */
[dir="rtl"] .zenhr-uae-module-card-icon {
  transform: scaleX(1);
}

.zenhr-uae-module-card-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
  gap: 8px;
  flex: 1;
}

.zenhr-uae-module-card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: #FFFFFF;
  margin: 0;
}

.zenhr-uae-module-card-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Card Body - CTA only (features removed) */
.zenhr-uae-module-card-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-block-start: auto;
}

/* Card Features */
.zenhr-uae-module-card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zenhr-uae-module-feature {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.zenhr-uae-module-feature img {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  flex-shrink: 0;
  opacity: 0.9;
  aspect-ratio: 1 / 1;
}

.zenhr-uae-module-feature p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Card CTA */
.zenhr-uae-module-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s ease,
              border-color 0.25s ease,
              transform 0.25s ease;
}

.zenhr-uae-module-card-cta:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}

/* Card Hover State */
.zenhr-uae-module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2),
              0 4px 12px rgba(0, 0, 0, 0.1);
}


/* ----------------------------------------
   MODULES SECTION - Tablet (768px+)
   ---------------------------------------- */
@media (min-width: 768px) {
  .nl-modules-section {
    padding: 80px 0;
  }

  .nl-modules-bg-img--mobile {
    display: none;
  }

  .nl-modules-bg-img--desktop {
    display: block;
  }

  .nl-modules-layout {
    gap: 40px;
  }

  .nl-modules-content {
    gap: 20px;
  }

  .nl-modules-title {
    font-size: 36px;
  }

  .nl-modules-subtitle {
    font-size: 18px;
    max-width: 640px;
  }

  .nl-modules-cards {
    gap: 20px;
  }

  /* Card tablet styles */
  .zenhr-uae-module-card {
    border-radius: 32px;
    padding: 28px;
    gap: 20px;
  }

  .zenhr-uae-module-card-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .zenhr-uae-module-card-icon-wrap {
    order: 0;
    width: 120px;
    height: 60px;
  }

  .zenhr-uae-module-card-icon {
    transform: scaleX(1);
  }

  .zenhr-uae-module-card-title {
    font-size: 20px;
  }

  .zenhr-uae-module-card-desc {
    font-size: 14px;
  }

  .zenhr-uae-module-card-body {
    align-items: flex-start;
  }

  .zenhr-uae-module-card-cta {
    display: inline-flex;
    width: auto;
    padding: 14px 24px;
    font-size: 15px;
  }
}


/* ----------------------------------------
   MODULES SECTION - Desktop (992px+)
   Flexbox layout with negative margin technique for full-width expansion
   ---------------------------------------- */
@media (min-width: 992px) {
  .nl-modules-section {
    padding: 100px 0;
  }

  /* Layout: Flexbox for sticky sidebar */
  .nl-modules-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 42px;
  }

  /* Left Column: Sticky sidebar */
  .nl-modules-content {
    flex: 0 0 40%;
    max-width: 40%;
    position: sticky;
    top: calc(var(--header-height, 80px) + 40px);
    align-items: flex-start;
    text-align: left;
    gap: 24px;
    height: fit-content;
  }

  .nl-modules-title {
    font-size: 42px;
  }

  .nl-modules-subtitle {
    font-size: 18px;
    max-width: 100%;
  }

  /* Cards wrapper: flex column */
  .nl-modules-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  /* Cards: default styling */
  .zenhr-uae-module-card {
    border-radius: 36px;
    padding: 32px;
  }

  /* Expanded card styles moved to .has-expanded-card grid layout below */

  .zenhr-uae-module-card-title {
    font-size: 22px;
  }

  .zenhr-uae-module-card-desc {
    font-size: 15px;
  }

  .zenhr-uae-module-card-icon-wrap {
    width: 140px;
    height: 70px;
  }

  .zenhr-uae-module-feature img {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
  }
}


/* ----------------------------------------
   MODULES SECTION - Large Desktop (1200px+)
   ---------------------------------------- */
@media (min-width: 1200px) {
  .nl-modules-content {
    flex: 0 0 38%;
    max-width: 38%;
  }

  .nl-modules-cards {
    gap: 28px;
  }

  /* Expanded card styles handled by .has-expanded-card grid layout */

  .nl-modules-title {
    font-size: 48px;
  }

  .nl-modules-subtitle {
    font-size: 20px;
  }

  .zenhr-uae-module-card {
    border-radius: 40px;
    padding: 36px;
  }

  .zenhr-uae-module-card-title {
    font-size: 24px;
  }

  .zenhr-uae-module-card-desc {
    font-size: 16px;
  }

  .zenhr-uae-module-card-icon-wrap {
    width: 160px;
    height: 80px;
  }

  .zenhr-uae-module-card-cta {
    padding: 14px 28px;
    font-size: 15px;
  }
}


/* ========================================
   EXPANDED CARD - Grid Layout (992px+)
   Uses display:contents to make expanded card
   span full width while collapsed cards stay
   in right column
   ======================================== */
@media (min-width: 992px) {
  /* Switch to grid when any card is expanded */
  .nl-modules-layout.has-expanded-card {
    display: grid;
    grid-template-columns: 40% 1fr;
    column-gap: 42px; /* Match flexbox layout gap (42px at 992px) */
    row-gap: 24px; /* Match cards internal gap (24px at 992px) */
  }

  /* Content: Same position, same sticky behavior, same width */
  .nl-modules-layout.has-expanded-card .nl-modules-content {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    /* Override flexbox max-width so content fills grid column */
    width: 100%;
    max-width: 100%;
    /* Sticky already applied from base 992px styles */
  }

  /* Cards container: disappears, children become grid items */
  .nl-modules-layout.has-expanded-card .nl-modules-cards {
    display: contents;
  }

  /* Collapsed cards: Stay in column 2 (right side) */
  .nl-modules-layout.has-expanded-card .zenhr-uae-module-card:not(.is-expanded) {
    grid-column: 2;
  }

  /* Expanded card: Full width, spans both columns */
  .nl-modules-layout.has-expanded-card .zenhr-uae-module-card.is-expanded {
    grid-column: 1 / -1;
    width: 100%;
    margin-inline-start: 0;
  }
}

/* Expanded Card Grid - Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .nl-modules-layout.has-expanded-card {
    grid-template-columns: 38% 1fr;
    /* column-gap stays 42px (layout gap unchanged at 1200px) */
    row-gap: 28px; /* Match cards internal gap (28px at 1200px) */
  }
}


/* ========================================
   MODULE CARD EXPANDED STATE
   Inline expandable card (accordion-style)
   Card expands in place, other cards shift down
   ======================================== */

/* Close Button (img) - Hidden by default */
.zenhr-uae-module-card-close {
  display: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.zenhr-uae-module-card-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Expanded Card State - Inline expansion */
.zenhr-uae-module-card.is-expanded {
  cursor: default;
  transform: none;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.zenhr-uae-module-card.is-expanded:hover {
  transform: none;
}

/* Focus styles for keyboard navigation */
.zenhr-uae-module-card:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
}

.zenhr-uae-module-card-close:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
  border-radius: 50%;
}

/* Show close button when expanded */
.zenhr-uae-module-card.is-expanded .zenhr-uae-module-card-close {
  display: block;
}

/* Expanded card header - Mobile: icon + close on top row, info below */
.zenhr-uae-module-card.is-expanded .zenhr-uae-module-card-header {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

/* Mobile expanded: icon first, close button last (same row), info full width below */
.zenhr-uae-module-card.is-expanded .zenhr-uae-module-card-icon-wrap {
  order: -2;
}

.zenhr-uae-module-card.is-expanded .zenhr-uae-module-card-close {
  order: -1;
}

.zenhr-uae-module-card.is-expanded .zenhr-uae-module-card-info {
  order: 0;
  flex-basis: 100%;
}

/* Expanded card body - flex column for CTA + feature cards wrapper */
.zenhr-uae-module-card.is-expanded .zenhr-uae-module-card-body {
  display: flex;
  flex-direction: column;
  margin-block-start: 20px;
}

/* Feature cards container - Webflow dynamic list wrapper */
.zenhr-uae-module-feature-cards-container {
  display: none;
}

.zenhr-uae-module-card.is-expanded .zenhr-uae-module-feature-cards-container {
  display: block;
}

/* Feature cards wrapper - Grid layout for feature cards */
.zenhr-uae-module-feature-cards {
  display: none;
}

.zenhr-uae-module-card.is-expanded .zenhr-uae-module-feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

/* Hide CTA when expanded */
.zenhr-uae-module-card.is-expanded .zenhr-uae-module-card-cta {
  display: none;
}

/* Feature Card Styles */
.zenhr-uae-module-feature-card {
  display: flex;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  outline: 1px solid rgba(255, 255, 255, 0.15);
  outline-offset: -1px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  gap: 8px;
  /* Equal height: grid align-items:stretch (default) + height:100% */
  height: 100%;
  /* Spring animation for feature cards */
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}

/* Animate feature cards when parent is expanded */
.zenhr-uae-module-card.is-expanded .zenhr-uae-module-feature-card {
  animation: featureCardSpring var(--spring-duration, 800ms) var(--spring-easing, var(--spring-easing-fallback)) forwards;
}

/* Staggered animation delays for feature cards */
.zenhr-uae-module-card.is-expanded .zenhr-uae-module-feature-card:nth-child(1) { animation-delay: 0ms; }
.zenhr-uae-module-card.is-expanded .zenhr-uae-module-feature-card:nth-child(2) { animation-delay: 50ms; }
.zenhr-uae-module-card.is-expanded .zenhr-uae-module-feature-card:nth-child(3) { animation-delay: 100ms; }
.zenhr-uae-module-card.is-expanded .zenhr-uae-module-feature-card:nth-child(4) { animation-delay: 150ms; }
.zenhr-uae-module-card.is-expanded .zenhr-uae-module-feature-card:nth-child(5) { animation-delay: 200ms; }
.zenhr-uae-module-card.is-expanded .zenhr-uae-module-feature-card:nth-child(6) { animation-delay: 250ms; }

/* Spring animation keyframes */
@keyframes featureCardSpring {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.zenhr-uae-module-feature-card-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: #FFFFFF;
  margin: 0;
}

.zenhr-uae-module-feature-card-desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Feature Card CTA - Learn more link */
.zenhr-uae-module-feature-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-block-start: auto;
  padding-block-start: 4px;
  text-decoration: none;
  transition: opacity 0.2s ease, gap 0.2s ease;
}

.zenhr-uae-module-feature-card-cta:hover {
  opacity: 0.85;
}

.zenhr-uae-module-feature-card-cta:hover img {
  transform: translateX(2px);
}

.zenhr-uae-module-feature-card-cta-text {
  font-size: 13px;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0;
}

.zenhr-uae-module-feature-card-cta img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

/* RTL Support for feature card CTA */
[dir="rtl"] .zenhr-uae-module-feature-card-cta img {
  transform: scaleX(-1);
}

[dir="rtl"] .zenhr-uae-module-feature-card-cta:hover img {
  transform: scaleX(-1) translateX(-2px);
}


/* ----------------------------------------
   EXPANDED CARD - Tablet (768px+)
   ---------------------------------------- */
@media (min-width: 768px) {
  .zenhr-uae-module-card.is-expanded .zenhr-uae-module-card-body {
    margin-block-start: 24px;
  }

  .zenhr-uae-module-card.is-expanded .zenhr-uae-module-feature-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .zenhr-uae-module-feature-card {
    padding: 20px;
    border-radius: 24px;
    gap: 10px;
  }

  .zenhr-uae-module-feature-card-title {
    font-size: 16px;
  }

  .zenhr-uae-module-feature-card-desc {
    font-size: 14px;
  }

  .zenhr-uae-module-feature-card-cta {
    gap: 8px;
    padding-block-start: 6px;
  }

  .zenhr-uae-module-feature-card-cta-text {
    font-size: 14px;
  }

  .zenhr-uae-module-feature-card-cta img {
    width: 18px;
    height: 18px;
  }
}


/* ----------------------------------------
   EXPANDED CARD - Desktop (992px+)
   Full-width card spanning both columns
   ---------------------------------------- */
@media (min-width: 992px) {
  /* Expanded card header - horizontal layout for full width */
  .zenhr-uae-module-card.is-expanded .zenhr-uae-module-card-header {
    flex-wrap: nowrap;
    gap: 24px;
  }

  /* Reset order for desktop - info first, icon, then close */
  .zenhr-uae-module-card.is-expanded .zenhr-uae-module-card-icon-wrap {
    order: 0;
  }

  .zenhr-uae-module-card.is-expanded .zenhr-uae-module-card-close {
    order: 0;
  }

  .zenhr-uae-module-card.is-expanded .zenhr-uae-module-card-info {
    order: 0;
    flex-basis: auto;
    flex: 1;
    min-width: 300px;
    /* No max-width - let it breathe at full width */
  }

  .zenhr-uae-module-card.is-expanded .zenhr-uae-module-feature-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .zenhr-uae-module-feature-card {
    padding: 24px;
    border-radius: 28px;
    gap: 12px;
  }

  .zenhr-uae-module-feature-card-title {
    font-size: 18px;
  }

  .zenhr-uae-module-feature-card-desc {
    font-size: 14px;
  }

  .zenhr-uae-module-feature-card-cta {
    padding-block-start: 8px;
  }
}


/* ----------------------------------------
   REDUCED MOTION - Accessibility
   ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .zenhr-uae-module-card {
    transition: none;
  }

  .zenhr-uae-module-feature-card {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .zenhr-uae-module-card-close {
    transition: none;
  }
}


/* ========================================
   ESS MOBILE APP SECTION
   Employee Self-Service app promotion
   Mobile-first approach
   ======================================== */

.ess-app-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

/* Background Images */
.ess-app-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ess-app-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.ess-app-bg-img--mobile {
  display: block;
  aspect-ratio: 400 / 1223; /* Prevent CLS: match mobile bg dimensions */
}

.ess-app-bg-img--desktop {
  display: none;
  aspect-ratio: 1440 / 1248; /* Prevent CLS: match desktop bg dimensions */
}

/* Inner Container */
.ess-app-inner {
  position: relative;
  z-index: 1;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* Text Content */
.ess-app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  max-width: 800px;
}

.ess-app-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #2A303B;
  margin: 0;
}

.ess-app-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #62769D;
  margin: 0;
}

/* Mockups */
.ess-app-mockups {
  width: 100%;
}

.ess-app-mockups-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1271 / 803; /* Prevent CLS: reserve space before image loads */
}

/* App Store Badges */
.ess-app-badges {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.ess-app-badge {
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
  will-change: transform; /* GPU acceleration */
}

.ess-app-badge:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.ess-app-badge-img {
  display: block;
  height: auto;
  max-height: 48px;
  width: auto;
  aspect-ratio: 171 / 51; /* Prevent CLS */
}


/* ----------------------------------------
   ESS SECTION - Tablet (768px+)
   ---------------------------------------- */
@media (min-width: 768px) {
  .ess-app-section {
    padding: 80px 0;
  }

  .ess-app-inner {
    gap: 40px;
  }

  .ess-app-title {
    font-size: 36px;
  }

  .ess-app-subtitle {
    font-size: 18px;
  }

  .ess-app-badges {
    gap: 16px;
  }

  .ess-app-badge-img {
    max-height: 52px;
  }
}


/* ----------------------------------------
   ESS SECTION - Desktop (992px+)
   ---------------------------------------- */
@media (min-width: 992px) {
  .ess-app-section {
    padding: 100px 0;
  }

  .ess-app-bg-img--mobile {
    display: none;
  }

  .ess-app-bg-img--desktop {
    display: block;
  }

  .ess-app-inner {
    gap: 48px;
  }

  .ess-app-title {
    font-size: 42px;
  }

  .ess-app-subtitle {
    font-size: 18px;
    max-width: 700px;
  }
}


/* ========================================
   ROI SECTION
   Proven ROI statistics with card layout
   Mobile-first approach
   ======================================== */

.roi-section {
  padding: 60px 0;
}

.roi-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* Header */
.roi-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  max-width: 700px;
}

.roi-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #2A303B;
  margin: 0;
}

.roi-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #62769D;
  margin: 0;
}

/* Cards Container */
.roi-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* Card Base Styles */
.roi-card {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  outline: 1px solid rgba(203, 213, 225, 0.6);
  outline-offset: -1px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
}

/* Primary Card (Large) */
.roi-card--primary {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.roi-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 320px;
}

.roi-card-value {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.2;
  color: #1E293B;
  margin: 0;
}

.roi-card--primary .roi-card-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #1E293B;
  margin: 0;
}

.roi-card-bg {
  position: absolute;
  inset-inline-end: 0;
  inset-block-start: 0;
  inset-block-end: 0;
  width: auto;
  height: 100%;
  mix-blend-mode: luminosity;
  opacity: 0.8;
  object-fit: cover;
  object-position: center;
}

.roi-card-bg--mobile {
  display: block;
}

.roi-card-bg--desktop {
  display: none;
}

[dir="rtl"] .roi-card-bg {
  transform: scaleX(-1);
}

/* Secondary Cards Container */
.roi-cards-secondary {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Secondary Cards */
.roi-card--secondary {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.roi-card-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #64748B;
  margin: 0;
}

.roi-card--secondary .roi-card-value {
  font-size: 52px;
}

.roi-card--secondary .roi-card-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #1E293B;
  margin: 0;
}


/* ----------------------------------------
   ROI SECTION - Tablet (768px+)
   ---------------------------------------- */
@media (min-width: 768px) {
  .roi-section {
    padding: 80px 0;
  }

  .roi-inner {
    gap: 40px;
  }

  .roi-title {
    font-size: 36px;
  }

  .roi-subtitle {
    font-size: 18px;
  }

  .roi-card--primary {
    padding: 32px;
  }

  .roi-card-value {
    font-size: 50px;
  }

  .roi-card--primary .roi-card-text {
    font-size: 24px;
  }

  /* Secondary cards in row */
  .roi-cards-secondary {
    flex-direction: row;
    gap: 12px;
  }

  .roi-card--secondary {
    flex: 1;
    padding: 24px;
  }

  .roi-card--secondary .roi-card-value {
    font-size: 60px;
  }

  .roi-card--secondary .roi-card-text {
    font-size: 15px;
  }
}


/* ----------------------------------------
   ROI SECTION - Desktop (992px+)
   ---------------------------------------- */
@media (min-width: 992px) {
  .roi-section {
    padding: 100px 0;
  }

  .roi-inner {
    gap: 48px;
  }

  .roi-title {
    font-size: 42px;
  }

  /* Cards in single row: primary 45.3%, secondary fills rest */
  .roi-cards {
    flex-direction: row;
    gap: 12px;
  }

  .roi-card--primary {
    flex: 0 0 45.3%;
    padding: 40px;
  }

  .roi-card-content {
    max-width: 380px;
  }

  .roi-card-value {
    font-size: 58px;
  }

  .roi-card--primary .roi-card-text {
    font-size: 22px;
  }

  .roi-card-bg--mobile {
    display: none;
  }

  .roi-card-bg--desktop {
    display: block;
  }

  /* Secondary cards container fills remaining space */
  .roi-cards-secondary {
    flex: 1;
    gap: 12px;
  }

  .roi-card--secondary {
    padding: 24px 32px;
    gap: 16px;
  }

  .roi-card-label {
    font-size: 16px;
  }

  .roi-card--secondary .roi-card-value {
    font-size: 68px;
  }

  .roi-card--secondary .roi-card-text {
    font-size: 16px;
  }
}


/* ========================================
   SUPPORT SECTION
   World-class support with stats cards
   Mobile-first approach
   ======================================== */

.support-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

/* Background Images */
.support-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.support-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.support-bg-img--mobile {
  display: block;
  aspect-ratio: 400 / 1674;
}

.support-bg-img--desktop {
  display: none;
  aspect-ratio: 1440 / 900;
}

/* Inner Container - Matching design system */
.support-inner {
  position: relative;
  z-index: 1;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* Header - Centered like other sections */
.support-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  max-width: 700px;
}

.support-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #2A303B;
  margin: 0;
}

.support-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #64748B;
  margin: 0;
}

/* Stats Cards Grid */
.support-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.support-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 369px;
  padding: 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 32px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12),
              0 20px 48px rgba(0, 0, 0, 0.1);
}

/* Inner Card with Glassmorphism - Design system padding (px-7 py-5) */
.support-card-inner {
  padding: 20px 28px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 32px;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
  backdrop-filter: blur(48px);
  -webkit-backdrop-filter: blur(48px);
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  width: auto;
  transition: background-color 0.3s ease, outline-color 0.3s ease;
}

.support-card:hover .support-card-inner {
  background-color: rgba(0, 0, 0, 0.15);
  outline-color: rgba(255, 255, 255, 0.2);
}

.support-card-number {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  margin: 0;
}

.support-card-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #FFFFFF;
  margin: 0;
}

/* RTL: Force line-height for numbers */
[dir="rtl"] .support-card-number {
  line-height: 1 !important;
}

/* ----------------------------------------
   SUPPORT SECTION - Tablet (768px+)
   ---------------------------------------- */
@media (min-width: 768px) {
  .support-section {
    padding: 80px 0;
  }

  .support-inner {
    gap: 40px;
  }

  .support-header {
    gap: 16px;
  }

  .support-title {
    font-size: 36px;
  }

  .support-subtitle {
    font-size: 18px;
  }

  .support-cards {
    gap: 20px;
  }

  .support-card {
    padding: 28px;
    min-height: 478px;
  }

  .support-card-number {
    font-size: 56px;
  }

  .support-card-label {
    font-size: 18px;
  }
}

/* ----------------------------------------
   SUPPORT SECTION - Desktop (992px+)
   ---------------------------------------- */
@media (min-width: 992px) {
  .support-section {
    padding: 100px 0;
  }

  .support-inner {
    gap: 48px;
  }

  .support-bg-img--mobile {
    display: none;
  }

  .support-bg-img--desktop {
    display: block;
  }

  .support-header {
    gap: 20px;
  }

  .support-title {
    font-size: 42px;
  }

  /* 3-column grid on desktop */
  .support-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .support-card {
    padding: 32px;
  }

  .support-card-inner {
    padding: 20px 28px;
    gap: 10px;
  }

  .support-card-number {
    font-size: 64px;
  }

  .support-card-label {
    font-size: 20px;
  }
}

/* ----------------------------------------
   SUPPORT SECTION - Large Desktop (1200px+)
   ---------------------------------------- */
@media (min-width: 1200px) {
  .support-inner {
    gap: 60px;
  }

  .support-title {
    font-size: 48px;
  }

  .support-cards {
    gap: 28px;
  }

  .support-card {
    padding: 36px;
  }
}


/* ========================================
   EMPOWER SECTION
   ZenHR empowers every role in the organization
   Mobile-first approach
   ======================================== */

/* Section Container */
.empower-section {
  padding: 60px 0;
  background: rgba(255, 255, 255, 0.6);
  border-top: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}

.empower-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* Header */
.empower-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  max-width: 700px;
}

.empower-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #2A303B;
}

.empower-subtitle {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #62769D;
}

/* Cards Grid */
.empower-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* Card */
.empower-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(229, 236, 255, 0.6);
  border-radius: 32px;
  backdrop-filter: blur(48px);
  -webkit-backdrop-filter: blur(48px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.empower-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05),
              0 16px 40px rgba(0, 0, 0, 0.08);
}

.empower-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  pointer-events: none;
  z-index: 2;
}

/* Card Image */
.empower-card-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  aspect-ratio: 780 / 720;
}

.empower-card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease;
}

.empower-card:hover .empower-card-img {
  transform: scale(1.05);
}

.empower-card-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(
    to top,
    rgba(229, 236, 255, 1) 0%,
    rgba(229, 236, 255, 0.85) 25%,
    rgba(229, 236, 255, 0.4) 60%,
    rgba(229, 236, 255, 0) 100%
  );
  transition: bottom 0.3s ease;
}

.empower-card:hover .empower-card-gradient {
  bottom: -5%;
}

/* Card Content */
.empower-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 50%;
  padding: 20px 16px 24px;
}

.empower-card-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 8px 16px;
  background: #FFFFFF;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: #1F2937;
}

.empower-card-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  padding-inline-start: 16px;
}

.empower-card-list li {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #475569;
}


/* ----------------------------------------
   Tablet (768px+)
   ---------------------------------------- */
@media (min-width: 768px) {
  .empower-section {
    padding: 80px 0;
  }

  .empower-inner {
    gap: 40px;
  }

  .empower-header {
    gap: 16px;
  }

  .empower-title {
    font-size: 36px;
  }

  .empower-subtitle {
    font-size: 17px;
  }

  .empower-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .empower-card-badge {
    padding: 10px 20px;
    font-size: 15px;
  }

  .empower-card-list li {
    font-size: 14px;
  }
}


/* ----------------------------------------
   Desktop (992px+)
   ---------------------------------------- */
@media (min-width: 992px) {
  .empower-section {
    padding: 100px 0;
  }

  .empower-inner {
    align-items: flex-start;
    gap: 48px;
  }

  .empower-header {
    align-items: flex-start;
    text-align: start;
    gap: 20px;
    max-width: 800px;
  }

  .empower-title {
    font-size: 42px;
  }

  .empower-subtitle {
    font-size: 18px;
  }

  .empower-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .empower-card-content {
    gap: 10px;
    padding: 16px 16px 20px;
  }

  .empower-card-badge {
    padding: 8px 12px;
    font-size: 13px;
  }

  .empower-card-list li {
    font-size: 12px;
  }
}


/* ----------------------------------------
   Large Desktop (1200px+)
   ---------------------------------------- */
@media (min-width: 1200px) {
  .empower-cards {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }

  .empower-card-content {
    gap: 12px;
    padding: 20px 10px 24px;
  }

  .empower-card-badge {
    padding: 10px 16px;
    font-size: 14px;
  }

  .empower-card-list li {
    font-size: 13px;
  }
}


/* ========================================
   TESTIMONIALS SECTION
   Trusted by businesses carousel
   Mobile-first approach
   ======================================== */

.nl-testimonials-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 60px 0;
  overflow: hidden;
}

/* Header - Constrained width */
.nl-testimonials-header {
  max-width: 1170px;
  width: 100%;
  padding: 0 15px;
  text-align: center;
}

/* Title */
.nl-testimonials-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #2A303B;
  margin: 0;
}

/* Footer - Constrained width */
.nl-testimonials-footer {
  max-width: 1170px;
  width: 100%;
  padding: 0 15px;
  display: flex;
  justify-content: center;
}

/* Carousel Container - Full width */
.nl-testimonials-carousel {
  position: relative;
  width: 100%;
  overflow: clip;
  /* Padding to prevent hover lift clipping */
  padding: 8px 0;
  margin: -8px 0;
  /* Fade edges for peek effect */
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 90%,
    rgba(0, 0, 0, 0.3) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 90%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

/* Carousel Track - Infinite scroll */
.nl-testimonials-carousel-track {
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: max-content;
  animation: nl-testimonials-scroll 120s linear infinite;
}

/* Pause on hover (desktop) */
@media (hover: hover) {
  .nl-testimonials-carousel:hover .nl-testimonials-carousel-track {
    animation-play-state: paused;
  }
}

/* Scroll Animation */
@keyframes nl-testimonials-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* RTL: Reverse scroll direction */
@keyframes nl-testimonials-scroll-rtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

[dir="rtl"] .nl-testimonials-carousel-track {
  animation-name: nl-testimonials-scroll-rtl;
}

/* Testimonial Card (Link) */
.nl-testimonials-card {
  flex-shrink: 0;
  width: 320px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nl-testimonials-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nl-testimonials-card:focus-visible {
  outline: 2px solid var(--color-primary, #2D7577);
  outline-offset: 2px;
}

/* Quote */
.nl-testimonials-quote {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: #475569;
  margin: 0;
  flex: 1;
}

/* Card Footer - Company + Logo */
.nl-testimonials-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(203, 213, 225, 0.4);
}

/* Company Name */
.nl-testimonials-company {
  font-size: 11px;
  font-weight: 700;
  color: #1F2937;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Company Logo */
.nl-testimonials-logo {
  height: 50px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.nl-testimonials-card:hover .nl-testimonials-logo {
  filter: grayscale(0%);
  opacity: 1;
}


/* ----------------------------------------
   TESTIMONIALS - Tablet (768px+)
   ---------------------------------------- */
@media (min-width: 768px) {
  .nl-testimonials-section {
    padding: 80px 0;
    gap: 36px;
  }

  .nl-testimonials-title {
    font-size: 36px;
  }

  .nl-testimonials-carousel-track {
    gap: 16px;
  }

  .nl-testimonials-card {
    width: 360px;
    padding: 24px;
    gap: 16px;
    border-radius: 28px;
  }

  .nl-testimonials-quote {
    font-size: 14px;
    line-height: 1.6;
  }

  .nl-testimonials-company {
    font-size: 12px;
  }

  .nl-testimonials-card-footer {
    gap: 14px;
    padding-top: 14px;
  }

  .nl-testimonials-logo {
    height: 56px;
    max-width: 132px;
  }
}


/* ----------------------------------------
   TESTIMONIALS - Desktop (992px+)
   ---------------------------------------- */
@media (min-width: 992px) {
  .nl-testimonials-section {
    padding: 100px 0;
    gap: 44px;
  }

  .nl-testimonials-title {
    font-size: 42px;
  }

  .nl-testimonials-carousel-track {
    gap: 20px;
  }

  .nl-testimonials-card {
    width: 400px;
    padding: 28px;
    gap: 20px;
    border-radius: 32px;
  }

  .nl-testimonials-quote {
    font-size: 15px;
  }

  .nl-testimonials-company {
    font-size: 13px;
  }

  .nl-testimonials-card-footer {
    gap: 16px;
    padding-top: 16px;
  }

  .nl-testimonials-logo {
    height: 60px;
    max-width: 144px;
  }
}


/* ----------------------------------------
   TESTIMONIALS - Reduced Motion
   ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .nl-testimonials-carousel-track {
    animation: none;
  }
}


/* ========================================
   INTEGRATIONS SECTION
   Marketplace integrations showcase
   Single CSS Grid for Webflow compatibility
   Mobile-first approach
   ======================================== */

/* ========================================
   INTEGRATIONS SECTION
   → Moved to components.css (site-wide component)
   Used on: Landing pages, product pages
   Requires: integrations-infinite-scroll.js
   ======================================== */


/* ========================================
   AWARDS SECTION
   Recognition and achievements showcase
   Mobile-first approach
   ======================================== */

.nl-awards-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.nl-awards-inner {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* Header */
.nl-awards-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  width: 100%;
}

.nl-awards-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-dark);
  margin: 0;
}

.nl-awards-subtitle-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nl-awards-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-secondary, #64748B);
  margin: 0;
}

/* Brand element - hidden on mobile */
.nl-awards-brand-element {
  display: none;
}

/* Awards Grid */
.nl-awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Mobile: 4 columns */
  gap: 16px;
  width: 100%;
}

.nl-awards-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nl-awards-item:hover {
  transform: translateY(-2px);
}

.nl-awards-logo {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}

.nl-awards-item:hover .nl-awards-logo {
  opacity: 1;
}

/* CTA */
.nl-awards-cta {
  display: flex;
  justify-content: center;
  width: 100%;
}


/* ----------------------------------------
   AWARDS - Tablet (768px+)
   ---------------------------------------- */
@media (min-width: 768px) {
  .nl-awards-section {
    padding: 80px 0;
  }

  .nl-awards-inner {
    gap: 40px;
  }

  .nl-awards-header {
    gap: 16px;
  }

  .nl-awards-title {
    font-size: 36px;
  }

  .nl-awards-subtitle {
    font-size: 18px;
  }

  .nl-awards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .nl-awards-item {
    padding: 12px;
  }
}


/* ----------------------------------------
   AWARDS - Desktop (992px+)
   ---------------------------------------- */
@media (min-width: 992px) {
  .nl-awards-section {
    padding: 100px 0;
  }

  .nl-awards-inner {
    gap: 48px;
  }

  .nl-awards-header {
    gap: 20px;
  }

  .nl-awards-title {
    font-size: 42px;
  }

  .nl-awards-subtitle {
    font-size: 18px;
  }

  /* Brand element - shown on desktop */
  .nl-awards-brand-element {
    display: block;
    position: absolute;
    top: -133px;
    inset-inline-end: 45px;
    pointer-events: none;
  }

  /* RTL: Adjust brand element position */
  [dir="rtl"] .nl-awards-brand-element {
    top: 36px;
  }

  .nl-awards-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
  }

  .nl-awards-item {
    padding: 12px;
    border-radius: 16px;
  }
}


/* ----------------------------------------
   AWARDS - Large Desktop (1200px+)
   ---------------------------------------- */
@media (min-width: 1200px) {
  .nl-awards-title {
    font-size: 48px;
  }

  .nl-awards-subtitle {
    font-size: 20px;
  }

  .nl-awards-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 0;
  }

  .nl-awards-item {
    padding: 10px;
  }
}


/* ----------------------------------------
   AWARDS - Reduced Motion
   ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .nl-awards-item {
    transition: none;
  }

  .nl-awards-logo {
    transition: none;
  }
}
