:root {
  --lu-green: #67cb2a;
  --lu-green-bright: #7de03a;
  --lu-green-dark: #52a822;
  --lu-green-glow: rgba(103, 203, 42, 0.45);
  --lu-dark: #0a0a0a;
  --lu-dark-soft: #141414;
  --lu-muted: #6b6b6b;
  --lu-muted-light: #999;
  --lu-border: #e5e5e5;
  --lu-bg: #f4f4f5;
  --lu-white: #ffffff;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Syne", var(--font-sans);
  --font-logo: "Montserrat", var(--font-sans);
  --radius: 1rem;
  --radius-lg: 1.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  font-family: var(--font-sans);
  color: var(--lu-dark);
  background: var(--lu-white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* ── Utilities ── */
.text-gradient {
  background: linear-gradient(135deg, var(--lu-green-bright) 0%, var(--lu-green) 50%, #a8f06a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Preloader ── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lu-dark);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0.6s;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
  width: min(280px, 80vw);
}

.preloader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 2rem;
}

.preloader-logo-text {
  font-family: var(--font-logo);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lu-white);
  letter-spacing: -0.04em;
  animation: preloaderPulse 1.6s ease-in-out infinite;
}

.preloader-logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lu-green);
  box-shadow: 0 0 20px var(--lu-green-glow);
  animation: preloaderBounce 1.6s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes preloaderBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.15); }
}

.preloader-bar {
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--lu-green-dark), var(--lu-green-bright));
  border-radius: inherit;
  transition: width 0.15s ease;
  box-shadow: 0 0 12px var(--lu-green-glow);
}

.preloader-caption {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

/* ── Follow Cursor ── */
.cursor-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.has-custom-cursor .cursor-wrap {
  opacity: 1;
}

body.has-custom-cursor.is-outside .cursor-wrap {
  opacity: 0;
}

.cursor-dot {
  display: none;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  border-radius: 50%;
  border: 3px solid var(--lu-green);
  box-shadow: 0 0 0 1px rgba(103, 203, 42, 0.25);
  transition: width 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              height 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              margin 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.25s ease,
              border-color 0.25s ease,
              border-width 0.25s ease;
  will-change: transform;
}

.cursor-ring.is-hover {
  width: 88px;
  height: 88px;
  margin: -44px 0 0 -44px;
  border-width: 3.5px;
  background: rgba(103, 203, 42, 0.1);
  border-color: var(--lu-green-bright);
  box-shadow: 0 0 24px rgba(103, 203, 42, 0.35);
}

.cursor-ring.is-click {
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  border-width: 4px;
  background: rgba(103, 203, 42, 0.15);
}

/* Cursor glow on hero */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  margin: -200px 0 0 -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 203, 42, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: transform;
}

body.has-custom-cursor .cursor-glow {
  opacity: 1;
}

body.has-custom-cursor.is-outside .cursor-glow {
  opacity: 0;
}

/* Page entrance after preload */
body.is-loading .hero-section .reveal {
  opacity: 0;
}

body.page-ready .hero-section .reveal {
  animation: heroEnter 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
}

body.page-ready .hero-section .reveal-delay-1 { animation-delay: 0.1s; }
body.page-ready .hero-section .reveal-delay-2 { animation-delay: 0.2s; }
body.page-ready .hero-section .reveal-delay-3 { animation-delay: 0.35s; }
body.page-ready .hero-section .reveal-delay-4 { animation-delay: 0.5s; }

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Magnetic hover lift on cards */
.service-card,
.why-card,
.project-card,
.testimonial-card {
  will-change: transform;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lu-green-dark);
  background: rgba(103, 203, 42, 0.12);
  border: 1px solid rgba(103, 203, 42, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lu-green);
  box-shadow: 0 0 8px var(--lu-green-glow);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.0625rem;
  color: var(--lu-muted);
  line-height: 1.7;
}

/* ── Buttons ── */
.btn-lu-primary {
  background: var(--lu-green);
  color: var(--lu-dark);
  border: none;
  font-weight: 700;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  box-shadow: 0 4px 24px var(--lu-green-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-lu-primary:hover {
  background: var(--lu-green-bright);
  color: var(--lu-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--lu-green-glow);
}

.btn-lu-outline {
  background: transparent;
  color: inherit;
  border: 1.5px solid currentColor;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-lu-outline:hover {
  background: var(--lu-white);
  color: var(--lu-dark);
  transform: translateY(-2px);
}

.btn-lu-green {
  background: var(--lu-green);
  color: var(--lu-dark);
  border: none;
  font-weight: 700;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  box-shadow: 0 4px 24px var(--lu-green-glow);
}

.btn-lu-green:hover {
  background: var(--lu-green-bright);
  color: var(--lu-dark);
  transform: translateY(-2px);
}

.btn-lu-dark {
  background: var(--lu-dark);
  color: var(--lu-white);
  border: none;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-lu-dark:hover {
  background: #222;
  color: var(--lu-white);
  transform: translateY(-2px);
}

/* ── Navbar ── */
.navbar-levelup {
  padding: 1.25rem 0;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar-levelup.is-scrolled {
  padding: 0.75rem 0;
  background: rgba(10, 10, 10, 0.92);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.navbar-levelup .navbar-brand {
  font-family: var(--font-logo);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--lu-white) !important;
  letter-spacing: -0.02em;
}

.logo-text {
  font-family: var(--font-logo);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.navbar-levelup .nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s ease;
}

.navbar-levelup .nav-link:hover,
.navbar-levelup .nav-link.active {
  color: var(--lu-white) !important;
}

.navbar-levelup .navbar-toggler-icon {
  filter: invert(1);
}

.navbar-levelup.is-scrolled .btn-lu-primary,
.navbar-levelup .btn-lu-primary {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* ── Hero ── */
.hero-section {
  position: relative;
  padding: 9rem 0 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--lu-dark);
  color: var(--lu-white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(103, 203, 42, 0.35) 0%, transparent 70%);
  top: -15%;
  right: -10%;
}

.hero-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(103, 203, 42, 0.2) 0%, transparent 70%);
  bottom: 10%;
  left: -5%;
  animation-delay: -4s;
}

.hero-orb--3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  top: 40%;
  left: 40%;
  animation-delay: -8s;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lu-green);
  box-shadow: 0 0 12px var(--lu-green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.85); }
}

.hero-title {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  max-width: none;
  margin-bottom: 1.5rem;
  line-height: 1.08;
}

.hero-lead {
  font-size: clamp(1.0625rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 36rem;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-actions .btn-lu-outline {
  color: var(--lu-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-actions .btn-lu-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--lu-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--lu-green);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-stat span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-visual-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-ring {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(103, 203, 42, 0.2);
  animation: ringSpin 20s linear infinite;
}

.hero-visual-ring::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, var(--lu-green), transparent 30%);
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), black calc(100% - 2px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), black calc(100% - 2px));
  animation: ringSpin 8s linear infinite reverse;
}

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

.hero-visual {
  position: relative;
  max-width: 260px;
  filter: drop-shadow(0 0 40px var(--lu-green-glow));
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── Client strip ── */
.clients-strip {
  padding: 3.5rem 0;
  background: var(--lu-dark-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.clients-strip p {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin-bottom: 0;
}

.clients-marquee-wrap {
  position: relative;
  margin-top: 1.75rem;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.clients-marquee {
  display: flex;
  gap: 4rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.clients-marquee-wrap:hover .clients-marquee {
  animation-play-state: paused;
}

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

.client-logo-item {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.client-logo-item:hover {
  color: var(--lu-green);
}

/* ── Sections ── */
.section-block {
  padding: 6rem 0;
}

.section-block--dark {
  background: var(--lu-dark);
  color: var(--lu-white);
}

.section-block--dark .section-lead {
  color: rgba(255, 255, 255, 0.55);
}

.section-block--alt {
  background: var(--lu-bg);
}

/* ── About ── */
.about-highlight {
  position: relative;
  margin-top: 2rem;
  padding: 1.75rem;
  background: linear-gradient(135deg, rgba(103, 203, 42, 0.08) 0%, rgba(103, 203, 42, 0.02) 100%);
  border: 1px solid rgba(103, 203, 42, 0.2);
  border-radius: var(--radius);
}

.about-highlight p {
  font-size: 1.0625rem;
  color: var(--lu-white);
  margin: 0;
  line-height: 1.7;
}

/* ── We Believe slider ── */
.believe-section {
  padding: 0;
  background: var(--lu-dark);
  color: var(--lu-white);
  overflow: hidden;
}

.believe-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.believe-slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.believe-label {
  display: inline-flex;
  margin-bottom: 1.25rem;
}

.believe-carousel .carousel-inner {
  position: relative;
  min-height: 70vh;
}

.believe-carousel.carousel-fade .carousel-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.65s ease-in-out;
  transform: none !important;
  display: block;
  pointer-events: none;
}

.believe-carousel.carousel-fade .carousel-item.active {
  position: relative;
  height: auto;
  opacity: 1;
  pointer-events: auto;
}

.believe-slide {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 0 7rem;
}

.believe-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.believe-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 58% center;
}

.believe-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.55) 35%,
    rgba(10, 10, 10, 0.15) 65%,
    rgba(10, 10, 10, 0.05) 100%
  );
  pointer-events: none;
}

#about {
  background:  var(--lu-dark);
  color: var(--lu-white);
}

.believe-quote {
  margin: 0;
  padding: 0;
}

.believe-quote p {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6.5vw, 4.75rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.believe-quote footer {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  font-style: normal;
}

.believe-indicators {
  position: static;
  margin: 0;
  gap: 0.5rem;
  justify-content: center;
}

.believe-indicators [data-bs-target] {
  width: 2rem;
  height: 3px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
  transition: width 0.3s ease, background 0.3s ease;
}

.believe-indicators .active {
  width: 3rem;
  background: var(--lu-green);
  box-shadow: 0 0 12px var(--lu-green-glow);
}

.believe-footer {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 3rem;
  pointer-events: none;
}

.believe-footer > * {
  pointer-events: auto;
}

.believe-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.believe-control {
  position: static;
  width: auto;
  height: auto;
  transform: none;
  opacity: 1;
  z-index: 2;
  padding: 0;
  border: none;
  background: none;
}

.believe-control::after {
  display: none;
}

.believe-control-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: var(--lu-white);
  font-size: 1.125rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.believe-control:hover .believe-control-icon {
  background: rgba(103, 203, 42, 0.15);
  border-color: var(--lu-green);
  color: var(--lu-green);
}

@media (max-width: 991.98px) {
  .believe-slide {
    padding: 7rem 0 6.5rem;
    align-items: flex-end;
  }

  .believe-slide-bg img {
    object-fit: cover;
    object-position: 60% top;
  }

  .believe-slide-content {
    text-align: center;
  }

  .believe-label {
    margin-inline: auto;
  }

  .believe-quote {
    max-width: none;
    text-align: center;
  }

  .believe-quote p {
    font-size: clamp(1.875rem, 8vw, 3rem);
  }

  .believe-footer {
    bottom: 1.25rem;
    min-height: 4.5rem;
    padding-bottom: 0.5rem;
  }
}

/* ── Service cards ── */
.service-card {
  position: relative;
  height: 100%;
  padding: 2rem;
  background: var(--lu-white);
  border: 1px solid var(--lu-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lu-green), var(--lu-green-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(103, 203, 42, 0.3);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(103, 203, 42, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--lu-muted);
  margin: 0;
  line-height: 1.65;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(103, 203, 42, 0.2), rgba(103, 203, 42, 0.05));
  color: var(--lu-green-dark);
  border-radius: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-4deg);
  background: linear-gradient(135deg, rgba(103, 203, 42, 0.35), rgba(103, 203, 42, 0.1));
}

/* ── Why Choose Us ── */
.why-section {
  position: relative;
  background: var(--lu-dark);
  color: var(--lu-white);
  padding: clamp(5.5rem, 10vw, 8.5rem) 0;
  overflow: hidden;
}

.why-section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.why-section-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.why-section-orb--1 {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(103, 203, 42, 0.18) 0%, transparent 70%);
}

.why-section-orb--2 {
  width: 420px;
  height: 420px;
  bottom: -140px;
  left: -100px;
  background: radial-gradient(circle, rgba(103, 203, 42, 0.1) 0%, transparent 70%);
}

.why-section .section-label {
  color: var(--lu-green-bright);
  background: rgba(103, 203, 42, 0.12);
  border-color: rgba(103, 203, 42, 0.25);
}

.why-header {
  max-width: 44rem;
  margin-bottom: clamp(3rem, 6vw, 4.75rem);
}

.why-title {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.why-lead {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.75;
  margin: 0;
  max-width: 38rem;
}

.why-grid {
  --bs-gutter-x: 1.75rem;
  --bs-gutter-y: 1.75rem;
}

.why-section .why-card {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  min-height: clamp(15rem, 28vw, 18rem);
  height: 100%;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}

.why-section .why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lu-green), var(--lu-green-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-section .why-card:hover {
  transform: translateY(-10px);
  border-color: rgba(103, 203, 42, 0.35);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(103, 203, 42, 0.12);
}

.why-section .why-card:hover::before {
  transform: scaleX(1);
}

.why-section .why-card-num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, rgba(103, 203, 42, 0.55) 0%, rgba(103, 203, 42, 0.1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.25rem;
}

.why-section .why-card h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  margin-bottom: 0.875rem;
  color: var(--lu-white);
  transition: color 0.25s ease;
}

.why-section .why-card:hover h3 {
  color: var(--lu-green-bright);
}

.why-section .why-card p {
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.75;
  max-width: 28rem;
}

/* ── Portfolio ── */
.portfolio-section {
  position: relative;
  background: var(--lu-dark);
  color: var(--lu-white);
  overflow: hidden;
}

.portfolio-section > .container {
  position: relative;
  z-index: 1;
}

.portfolio-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(103, 203, 42, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.portfolio-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(103, 203, 42, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.portfolio-section .container {
  position: relative;
  z-index: 1;
}

.portfolio-section .section-label {
  color: var(--lu-green-bright);
  background: rgba(103, 203, 42, 0.12);
  border-color: rgba(103, 203, 42, 0.25);
}

.portfolio-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.portfolio-header-lead {
  max-width: 26rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.portfolio-slider {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 4.5rem;
}

.portfolio-track-wrap {
  overflow: hidden;
  width: 100%;
  padding: 0.5rem 0 1rem;
}

.portfolio-track {
  display: flex;
  align-items: center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.portfolio-track-spacer {
  flex: 0 0 1rem;
  width: 1rem;
  height: 1px;
  pointer-events: none;
}

.portfolio-track .project-card + .project-card {
  margin-left: 1.25rem;
}

.portfolio-track .project-card {
  flex: 0 0 min(56rem, calc(100vw - 8rem));
  width: min(56rem, calc(100vw - 8rem));
  max-width: none;
  margin: 0;
  opacity: 0.45;
  transform: scale(0.94);
  cursor: pointer;
  transition: opacity 0.4s ease,
              transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}

.portfolio-track .project-card.is-adjacent {
  opacity: 0.65;
  transform: scale(0.97);
}

.portfolio-track .project-card.is-active {
  opacity: 1;
  transform: scale(1);
  cursor: default;
}

.portfolio-track .project-card:not(.is-active) .project-card-body {
  display: none;
}

.portfolio-track .project-card:not(.is-active) {
  flex-direction: column;
  align-self: center;
}

.portfolio-track .project-card:not(.is-active) .project-card-trigger {
  flex: 1 1 auto;
  max-width: 100%;
  height: 100%;
}

.portfolio-track .project-card:not(.is-active) .project-card-img-wrap {
  height: 100%;
}

.portfolio-track .project-card:not(.is-active) img {
  aspect-ratio: unset;
  min-height: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.portfolio-track .project-card.is-active:hover {
  transform: translateY(-8px) scale(1);
}

.portfolio-track .project-card:not(.is-active):hover {
  opacity: 0.8;
  transform: scale(0.98);
}

@media (min-width: 768px) {
  .portfolio-track .project-card {
    flex: 0 0 min(56rem, calc(100vw - 12rem));
    width: min(56rem, calc(100vw - 12rem));
    height: 20rem;
    min-height: 20rem;
    max-height: 20rem;
  }

  .portfolio-track .project-card.is-active {
    flex-direction: row;
    align-items: stretch;
  }

  .portfolio-track .project-card.is-active .project-card-trigger {
    flex: 0 0 52%;
    max-width: 52%;
    align-self: stretch;
    height: auto;
  }

  .portfolio-track .project-card.is-active .project-card-img-wrap {
    height: 100%;
    min-height: 100%;
  }

  .portfolio-track .project-card.is-active img {
    aspect-ratio: unset;
    min-height: 100%;
    height: 100%;
  }

  .portfolio-track .project-card.is-active .project-card-body {
    flex: 1;
    justify-content: center;
    padding: 2rem 2rem 2rem 1.75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
  }

  .portfolio-track .project-card.is-active .project-card-body h3 {
    font-size: 1.35rem;
  }
}

.portfolio-carousel-footer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 3rem;
  margin-top: 1.5rem;
}

.portfolio-indicators {
  display: flex;
  margin: 0;
  gap: 0.5rem;
  justify-content: center;
}

.portfolio-indicator {
  width: 2rem;
  height: 3px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
  transition: width 0.3s ease, background 0.3s ease;
}

.portfolio-indicator.active {
  width: 3rem;
  background: var(--lu-green);
  box-shadow: 0 0 12px var(--lu-green-glow);
}

.portfolio-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.portfolio-control {
  position: static;
  width: auto;
  height: auto;
  transform: none;
  opacity: 1;
  z-index: 2;
  padding: 0;
  border: none;
  background: none;
}

.portfolio-control::after {
  display: none;
}

.portfolio-control-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: var(--lu-white);
  font-size: 1.125rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.portfolio-control:hover .portfolio-control-icon {
  background: rgba(103, 203, 42, 0.15);
  border-color: var(--lu-green);
  color: var(--lu-green);
}

.project-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
  height: 100%;
}

.project-card:hover {
  border-color: rgba(103, 203, 42, 0.4);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(103, 203, 42, 0.15);
}

.project-card-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  position: relative;
  z-index: 2;
}

.project-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.project-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 240px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card:hover .project-card-overlay {
  opacity: 1;
}

.project-play {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lu-green);
  color: var(--lu-dark);
  font-size: 1.75rem;
  box-shadow: 0 8px 32px var(--lu-green-glow);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.project-play i {
  margin-left: 0.15rem;
}

.project-card:hover .project-play {
  transform: scale(1);
}

.project-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lu-green);
  background: rgba(103, 203, 42, 0.12);
  border: 1px solid rgba(103, 203, 42, 0.28);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.project-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-card-meta {
  margin-bottom: 0.75rem;
}

.project-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.625rem;
  color: var(--lu-white);
  transition: color 0.2s ease;
}

.project-card:hover .project-card-body h3 {
  color: var(--lu-green-bright);
}

.project-card-body p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 1.25rem;
  line-height: 1.65;
  flex-grow: 1;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lu-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.625rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  align-self: flex-start;
}

.project-link:hover {
  background: rgba(103, 203, 42, 0.15);
  border-color: var(--lu-green);
  color: var(--lu-green-bright);
}

/* Portfolio modal */
.portfolio-modal .modal-content {
  background: var(--lu-dark-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.portfolio-modal {
  --bs-modal-zindex: 10050;
}

#portfolioModal {
  z-index: 10050;
}

.modal-backdrop {
  z-index: 10040 !important;
}

.portfolio-modal .modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 1.5rem;
}

.portfolio-modal-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.portfolio-modal-external {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lu-green-bright);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(103, 203, 42, 0.35);
  background: rgba(103, 203, 42, 0.1);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.portfolio-modal-external:hover {
  color: var(--lu-white);
  background: rgba(103, 203, 42, 0.22);
  border-color: var(--lu-green);
}

.portfolio-modal .modal-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lu-white);
  margin-top: 0.5rem;
}

.portfolio-modal .modal-body {
  padding: 0;
}

.portfolio-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.portfolio-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 767.98px) {
  .portfolio-header {
    margin-bottom: 2rem;
  }

  .portfolio-header-lead {
    max-width: none;
  }

  .portfolio-slider {
    padding-bottom: 5.5rem;
  }

  .portfolio-carousel-footer {
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
  }

  .portfolio-controls {
    position: static;
    justify-content: center;
  }

  .portfolio-track .project-card.is-active {
    height: auto;
    min-height: unset;
    max-height: none;
  }

  .portfolio-track .project-card:not(.is-active) {
    height: 11rem;
    min-height: 11rem;
    max-height: 11rem;
  }

  .project-card img {
    min-height: 200px;
  }
}

/* ── Case study ── */
.case-study-box {
  position: relative;
  background: var(--lu-dark);
  color: var(--lu-white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  overflow: hidden;
}

.case-study-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--lu-green), transparent 40%, rgba(103, 203, 42, 0.3));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.case-study-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--lu-green-glow) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.case-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.case-step {
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.case-step:last-child {
  border-right: none;
}

.case-step-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lu-green);
  margin-bottom: 0.75rem;
}

.case-step p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.case-step-result p {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--lu-green-bright);
}

/* ── Testimonials ── */
.testimonial-card {
  position: relative;
  padding: 2.25rem;
  background: var(--lu-white);
  border: 1px solid var(--lu-border);
  border-radius: var(--radius-lg);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 3px;
  background: linear-gradient(180deg, var(--lu-green), var(--lu-green-bright));
  border-radius: 0 2px 2px 0;
}

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

.testimonial-card blockquote {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.55;
  padding-left: 0.5rem;
}

.testimonial-card blockquote::before {
  content: "\201C";
  font-family: var(--font-display);
  color: var(--lu-green);
  font-size: 3rem;
  line-height: 0.5;
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 800;
}

/* ── CTA ── */
.cta-section {
  position: relative;
  padding: 6rem 0;
  text-align: center;
  background: var(--lu-dark);
  color: var(--lu-white);
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 120%, rgba(103, 203, 42, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 20%, rgba(103, 203, 42, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
}

.cta-section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 16ch;
  margin: 0 auto 1rem;
}

.cta-section .section-lead {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 auto 2.5rem;
}

.cta-section .btn-lu-outline {
  color: var(--lu-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-section .btn-lu-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--lu-white);
}

/* ── Footer ── */
.site-footer {
  background: var(--lu-dark-soft);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
  padding-bottom: 0.5rem;
}

.footer-brand {
  display: inline-block;
  font-family: var(--font-logo);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--lu-white);
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.footer-brand:hover {
  color: var(--lu-green);
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  max-width: 22rem;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.25rem;
}

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

.footer-nav li {
  margin-bottom: 0.625rem;
}

.footer-nav .footer-link {
  font-size: 0.9375rem;
  font-weight: 500;
}

.footer-link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--lu-green);
}

.footer-bottom {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

.footer-cta {
  font-weight: 600;
  color: var(--lu-green);
}

.footer-cta:hover {
  color: var(--lu-green-bright);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  gap: 0.875rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.contact-list li:last-child {
  margin-bottom: 0;
}

.contact-list i {
  color: var(--lu-green);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .footer-top .col-md-4:first-child {
    margin-bottom: 0.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start !important;
  }
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 7rem;
    min-height: auto;
  }

  .hero-title {
    max-width: none;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .case-steps {
    grid-template-columns: 1fr;
  }

  .case-step {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
  }

  .case-step:last-child {
    border-bottom: none;
  }

  .section-block {
    padding: 4rem 0;
  }
}

@media (max-width: 575.98px) {
  .hero-stat strong {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-scale,
  .reveal-left {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none !important;
  }

  .preloader {
    display: none;
  }

  body.is-loading {
    overflow: auto;
  }

  .cursor-wrap,
  .cursor-glow {
    display: none !important;
  }

  .hero-orb,
  .hero-visual,
  .hero-visual-ring,
  .hero-visual-ring::before,
  .hero-badge-dot,
  .clients-marquee {
    animation: none;
  }
}


#services, #case-study, #testimonials {
  display: none;
}