/* ============================================================
   Huzaifa Shiwani — One-Stop Digital Solutions
   Base theme: "Volt" (dark · lime/violet · Syne + Space Grotesk)
   Color themes override the variables in :root — see css/theme-*.css
   ============================================================ */

:root {
  --bg: #0a0a0f;
  --bg-soft: #11111a;
  --ink: #f2f2ee;
  --muted: #8d8d99;
  --accent: #c8ff3e;
  --accent-2: #8b7bff;

  /* RGB components for rgba() usage — keep in sync with the hex values above */
  --bg-rgb: 10, 10, 15;
  --panel-rgb: 17, 17, 26;
  --ink-rgb: 242, 242, 238;
  --accent-rgb: 200, 255, 62;
  --accent-2-rgb: 139, 123, 255;

  --line: rgba(var(--ink-rgb), 0.08);
  --font-display: "Syne", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scrollbar-width: thin; scrollbar-color: var(--accent) var(--bg); }


html,
body {
  width: 100%;
  overflow-x: hidden;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  position: relative; /* containing block for the full-page .flow-path-wrap */
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none; /* custom cursor */
}

@media (hover: none), (max-width: 991px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none !important; }
  .flow-path-wrap { display: none !important; }
}

a { color: inherit; text-decoration: none; }
.accent { color: var(--accent); }

::selection { background: var(--accent); color: var(--bg); }

/* ============ PRELOADER ============ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--ink);
  overflow: hidden;
  clip-path: circle(150% at 50% 45%);
}
.preloader-ambient {
  position: absolute;
  inset: -25%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 42% at 50% 45%, rgba(var(--accent-rgb), 0.16), transparent 65%),
    radial-gradient(ellipse 35% 30% at 78% 72%, rgba(var(--accent-2-rgb), 0.12), transparent 60%);
}
.preloader-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(var(--ink-rgb), 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--ink-rgb), 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 48%, #000 15%, transparent 72%);
  opacity: 0.85;
}
.preloader-stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.35rem, 3.2vw, 2rem);
  width: min(720px, calc(100% - 2.5rem));
}
.preloader-kicker {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1.5vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(var(--ink-rgb), 0.48);
}
.preloader-words {
  position: relative;
  width: 100%;
  height: clamp(4.5rem, 14vw, 7.5rem);
  overflow: hidden;
}
.pw-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 14vw, 7rem);
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--ink);
  text-shadow: 0 0 60px rgba(var(--accent-rgb), 0.22);
  visibility: hidden;
  opacity: 0;
}

.is-compositing {
  will-change: transform, opacity;
}
.pw-item.is-active {
  visibility: visible;
}
.pw-item.is-accent {
  background: linear-gradient(105deg, var(--accent) 10%, var(--accent-2) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 28px rgba(var(--accent-rgb), 0.28));
}
.preloader-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}
.pw-step {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(var(--ink-rgb), 0.18);
  border: 1px solid rgba(var(--ink-rgb), 0.12);
  transition: background 0.45s ease, box-shadow 0.45s ease, transform 0.45s ease;
}
.pw-step.is-done {
  background: rgba(var(--accent-rgb), 0.55);
  border-color: transparent;
}
.pw-step.is-active {
  background: var(--accent);
  border-color: transparent;
  transform: scale(1.25);
  box-shadow: 0 0 14px rgba(var(--accent-rgb), 0.65);
}
.preloader-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  width: min(280px, 72vw);
}
.preloader-progress-track {
  position: relative;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(var(--ink-rgb), 0.1);
  overflow: visible;
  box-shadow: inset 0 0 0 1px rgba(var(--ink-rgb), 0.06);
}
.preloader-progress-fill {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.45);
  transform: scaleX(0);
  transform-origin: left center;
  transition: none;
}
.preloader-progress-head {
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translate(50%, -50%);
  background: #fff;
  box-shadow:
    0 0 0 3px rgba(var(--accent-rgb), 0.35),
    0 0 18px rgba(var(--accent-rgb), 0.8);
}
.preloader-meta {
  display: inline-flex;
  align-items: baseline;
  gap: 0.14em;
  font-variant-numeric: tabular-nums;
}
.preloader-counter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  letter-spacing: 0.08em;
  min-width: 2.4ch;
  text-align: right;
  color: var(--accent);
}
.preloader-unit {
  font-family: var(--font-body);
  font-size: 0.78em;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  .preloader { clip-path: none; }
  .pw-item.is-active { opacity: 1; visibility: visible; transform: none; }
  .pw-step { transition: none; }
}

/* ============ CUSTOM CURSOR ============ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  z-index: 9000;
  pointer-events: none;
  border-radius: 50%;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--accent);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(var(--accent-rgb), 0.5);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
}
.cursor-ring.is-hover {
  width: 64px; height: 64px;
  border-color: var(--accent-2);
}




#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
}
.hero > .container-fluid {
  position: relative;
  z-index: 2;
}
.hero > .hero-bg-glow {
  z-index: 1;
}
.hero > .scroll-hint {
  z-index: 3;
}



/* ============ GLOBAL SVG PATH ============ */
.flow-path-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.flow-path-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.55;
}
.flow-dot,
.flow-dot-glow {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  pointer-events: none;
}
.flow-dot {
  width: 10px;
  height: 10px;
  background: #38e8ff;
  z-index: 2;
}
.flow-dot-glow {
  width: 32px;
  height: 32px;
  background: #38e8ff;
  opacity: 0.18;
  z-index: 1;
}

/* Content sits above the path */
.site-nav, main, .site-footer { position: relative; z-index: 2; }

/* ============ SITE ATMOSPHERE ============ */
.site-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.site-atmosphere.is-below-hero {
  opacity: 1;
}
.atm-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  mix-blend-mode: screen;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.atm-glow--1 {
  width: min(70vw, 720px);
  height: min(70vw, 720px);
  top: -18%;
  left: -12%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.14) 0%, transparent 68%);
  opacity: 0.8;
}
.atm-glow--2 {
  width: min(60vw, 640px);
  height: min(60vw, 640px);
  top: 28%;
  right: -18%;
  background: radial-gradient(circle, rgba(var(--accent-2-rgb), 0.15) 0%, transparent 70%);
  opacity: 0.7;
}
.atm-glow--3 {
  width: min(55vw, 560px);
  height: min(55vw, 560px);
  bottom: -12%;
  left: 22%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.1) 0%, rgba(var(--accent-2-rgb), 0.07) 40%, transparent 70%);
  opacity: 0.65;
}
.atm-spotlight {
  position: absolute;
  top: 0;
  left: 0;
  width: min(52vw, 520px);
  height: min(52vw, 520px);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--accent-rgb), 0.16) 0%,
    rgba(var(--accent-2-rgb), 0.07) 40%,
    transparent 70%
  );
  opacity: 0;
  mix-blend-mode: soft-light;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.site-atmosphere.is-below-hero.is-interactive .atm-spotlight {
  opacity: 1;
}
.atm-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--ink-rgb), 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--ink-rgb), 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 10%, transparent 75%);
  opacity: 0.7;
}
.atm-noise {
  position: absolute;
  inset: -20%;
  width: 140%;
  height: 140%;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

main > .section {
  position: relative;
}
main > .hero::before {
  display: none;
}

@media (max-width: 991px) {
  .atm-glow { filter: blur(70px); opacity: 0.55; }
  .atm-noise { opacity: 0.025; }
  .atm-spotlight { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .site-atmosphere { opacity: 0 !important; }
  .atm-spotlight { display: none !important; }
}

/* ============ NAV ============ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-nav.is-scrolled {
  background: rgba(var(--bg-rgb), 0.82);
  backdrop-filter: blur(14px);
  padding: 0.85rem 0;
  border-bottom-color: var(--line);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Unbounded", var(--font-display);
  font-size: clamp(0.85rem, 3.5vw, 1.35rem);
  font-weight: 600;
  min-width: 0;
}
.logo-container .nav-logo { flex-shrink: 0; }
.nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    padding: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border-radius: 13px;
    color: #000;
}
.nav-links { gap: 2.2rem; }
.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--accent); }

.btn-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--accent);
  border-radius: 99px;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn-pill:hover { background: var(--accent); color: var(--bg); }

.nav-burger {
  background: none; border: 0;
  display: flex; flex-direction: column; gap: 6px;
  padding: 6px;
}
.nav-burger span { width: 26px; height: 2px; background: var(--ink); transition: transform 0.3s ease; }
.nav-burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-burger.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.6rem 1.5rem 2rem;
  background: rgba(var(--bg-rgb), 0.96);
  border-bottom: 1px solid var(--line);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
}

/* ============ HERO ============ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(var(--accent-2-rgb), 0.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.2rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 600;
}
.status-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.7); opacity: 0.6; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 9.6vw, 9.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; }
.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 2rem 3rem;
}
.hero-cta {
  flex: 0 0 auto;
  margin-left: auto;
  align-self: flex-end;
}
.hero-copy {
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
}
.hero-title {
  width: max-content;
  max-width: 100%;
}
.hero-sub {
  font-size: clamp(1rem, 1.05vw, 1.125rem);
  line-height: 1.65;
  color: var(--muted);
  width: 100%;
  text-align: left;
  letter-spacing: normal;
  margin: 1.75rem 0 0;
  text-wrap: pretty;
}

.btn-big {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2.4rem;
  background: var(--accent);
  color: var(--bg);
  border-radius: 99px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  transition: box-shadow 0.3s ease;
}
.btn-big:hover {
  color: var(--bg);
  box-shadow: 0 0 40px rgba(var(--accent-rgb), 0.45);
}

/* --- 3D floating scene --- */
.hero-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  perspective: 1100px;
  z-index: 1;
}
.hero-3d {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}
.float-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 1.3rem;
  background: rgba(var(--panel-rgb), 0.75);
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}
.fc-label { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.fc-meta { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.fc-1 { top: 18%; right: 18%; }
.fc-2 { top: 38%; right: 5%; border-color: rgba(var(--accent-rgb), 0.35); }
.fc-3 { bottom: 14%; right: 28%; }
.fc-4 { top: 58%; right: 16%; border-color: rgba(var(--accent-2-rgb), 0.4); }

.float-orb {
  position: absolute;
  border-radius: 50%;
}
.fo-1 {
  top: 10%; right: 42%;
  width: 90px; height: 90px;
  background: radial-gradient(circle at 32% 30%, var(--accent-2), color-mix(in srgb, var(--accent-2) 30%, black) 70%);
  opacity: 0.85;
}
.fo-2 {
  bottom: 18%; right: 38%;
  width: 46px; height: 46px;
  background: radial-gradient(circle at 32% 30%, var(--accent), color-mix(in srgb, var(--accent) 35%, black) 75%);
  opacity: 0.7;
}

@media (max-width: 991px) {
  .fc-1, .fc-2, .fc-3, .fc-4, .fo-1, .fo-2 { display: none; }
  .hero-scene { display: none; }
  .hero {
    padding: 5.5rem 0 2.75rem;
    min-height: auto;
  }
  .hero-title { font-size: clamp(2rem, 11vw, 3.25rem); line-height: 1; }
  .hero-eyebrow {
    font-size: 0.72rem;
    margin-bottom: 1rem;
    letter-spacing: 0.14em;
  }
  .hero-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 1.35rem;
  }
  .hero-copy {
    display: block;
    width: 100%;
  }
  .hero-title {
    width: auto;
    max-width: none;
  }
  .hero-sub {
    width: auto;
    min-width: 0;
  }
  .hero-cta {
    margin-left: 0;
    align-self: stretch;
  }
  .hero-sub {
    font-size: 0.94rem;
    margin-top: 1.25rem;
    line-height: 1.65;
  }
  .hero .container-fluid.px-4,
  .hero .container-fluid.px-lg-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .btn-big {
    width: 100%;
    justify-content: center;
    padding: 0.95rem 1.25rem;
    font-size: 0.92rem;
  }
  .scroll-hint { display: none; }

  .section { padding: 3rem 0; }
  .section-head { margin-bottom: 1.35rem; }
  .section-title { font-size: clamp(1.65rem, 7.5vw, 2.35rem); }
  .section-lead { font-size: 0.92rem; margin-top: 0.75rem; }
  .section-tag { margin-bottom: 0.65rem; font-size: 0.72rem; }

  .svc-tabs,
  .pf-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -0.5rem 1.15rem;
    padding: 0.1rem 0.5rem 0.45rem;
    gap: 0.5rem;
  }
  .svc-tabs::-webkit-scrollbar,
  .pf-filters::-webkit-scrollbar { display: none; }
  .svc-tab,
  .pf-filter {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0.55rem 1rem;
    font-size: 0.72rem;
  }

  /* mobile carousels — full width, arrows overlaid (no viewport gutter) */
  .m-carousel {
    position: relative;
    margin-top: 0.15rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    width: calc(100% + 1rem);
  }
  .m-carousel__viewport {
    overflow: hidden;
    margin: 0;
    width: 100%;
  }
  .m-carousel__track {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 !important;
    --bs-gutter-x: 0.65rem;
    --bs-gutter-y: 0;
  }
  .m-carousel__track::-webkit-scrollbar { display: none; }
  .m-carousel__track > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    scroll-snap-align: start;
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
  }
  .m-carousel__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(var(--bg-rgb), 0.94);
    color: var(--accent);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    transition: border-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
  }
  .m-carousel__arrow:hover { border-color: var(--accent); color: var(--ink); }
  .m-carousel__arrow:disabled { opacity: 0.35; cursor: default; }
  .m-carousel__arrow--prev { left: 0.3rem; }
  .m-carousel__arrow--next { right: 0.3rem; }

  .m-carousel .reveal-card,
  .m-carousel .reveal-row,
  .m-carousel .svc-card,
  .m-carousel .stat,
  .m-carousel .model-card,
  .m-carousel .pf-card {
    opacity: 1 !important;
    transform: none !important;
  }

  .service-card,
  .model-card {
    padding: 1.35rem 1.2rem;
  }
  .service-card h3,
  .model-card h3,
  .pf-body h3 { font-size: 1.12rem; }
  .service-card p,
  .model-card p,
  .pf-body p,
  .pf-case-study p { font-size: 0.86rem; }

  .pf-filters { margin-bottom: 1rem; }
  .pf-body { padding: 1.15rem 1.15rem 1.25rem; }
  .stat { padding: 1.5rem 1rem; }

  .cube-stage {
    min-height: 210px;
    margin-bottom: 0.5rem;
  }
  .cube {
    width: 130px;
    height: 130px;
    transform: scale(0.92);
  }
  .cube-face { font-size: 1.65rem; }
  .cf-front  { transform: translateZ(65px); }
  .cf-back   { transform: rotateY(180deg) translateZ(65px); }
  .cf-right  { transform: rotateY(90deg) translateZ(65px); }
  .cf-left   { transform: rotateY(-90deg) translateZ(65px); }
  .cf-top    { transform: rotateX(90deg) translateZ(65px); }
  .cf-bottom { transform: rotateX(-90deg) translateZ(65px); }
  .skill-bars { margin-top: 1.25rem; gap: 1.1rem; }

  main .container-fluid.px-4,
  main .container-fluid.px-lg-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .form-container { margin: 0; }
  .contact-form { margin-top: 1.25rem; }
  .btn-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    margin-top: 1.35rem;
  }
  .contact { padding-bottom: 3.5rem; }
  .contact-title { margin-bottom: 1.25rem; }

  .site-footer .container-fluid {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .footer-socials {
    order: 2;
  }

  .skills .row { --bs-gutter-y: 1.5rem; }
  .skills .col-lg-5,
  .skills .col-lg-7 { text-align: left; }

  .timeline .tl-item { padding: 1.35rem 0; }
  .tl-body h3 { font-size: 1.15rem; }

  .portfolio { overflow: hidden; }
  .models { padding-top: 0; }
  .stats { padding-top: 0; }
  .client-logos { padding-top: 0; }

  .site-nav .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

@media (min-width: 992px) {
  .m-carousel__arrow { display: none; }
  .m-carousel__viewport { margin: 0; overflow: visible; }
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border: 0;
  background: none;
  padding: 0;
  pointer-events: auto;
  cursor: pointer;
  transition: color 0.25s ease, opacity 0.35s ease;
}
.scroll-hint:hover {
  color: var(--ink);
}
.scroll-hint.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.scroll-hint-line {
  width: 1px;
  height: 48px;
  background: var(--line);
  overflow: hidden;
  position: relative;
}
.scroll-hint-line span {
  display: block;
  width: 100%;
  height: 50%;
  background: var(--accent);
  animation: scrollLine 1.8s ease-in-out infinite;
  will-change: transform;
}
@keyframes scrollLine {
  0% { transform: translate3d(0, -100%, 0); }
  100% { transform: translate3d(0, 200%, 0); }
}

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.3rem 0;
  overflow: hidden;
  background: var(--bg-soft);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.marquee-track i { color: var(--accent); font-style: normal; }
@keyframes marquee {
  to { transform: translate3d(-50%, 0, 0); }
}

/* ============ SECTIONS (shared) ============ */
.section { padding: clamp(5rem, 10vw, 9rem) 0; }
.section-head { margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: capitalize;
}

/* ============ SERVICES — TABS ============ */
.svc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.6rem;
}
.svc-tab {
  padding: 0.7rem 1.5rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.svc-tab:hover { color: var(--ink); border-color: rgba(var(--accent-rgb), 0.45); }
.svc-tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  font-weight: 500;
}

.svc-panel { display: none; }
.svc-panel.is-active { display: block; }

/* ============ SERVICE CARDS ============ */
.service-card {
  position: relative;
  height: 100%;
  padding: 2.2rem 2rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  transform-style: preserve-3d;
  transition: border-color 0.35s ease;
}
.service-card:hover { border-color: rgba(var(--accent-rgb), 0.4); }
.sc-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.2em;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 1rem 0 0.8rem;
  transform: translateZ(30px);
}
.service-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  transform: translateZ(18px);
}

/* ============ ENGAGEMENT MODELS ============ */
.models { padding-top: 0; }
.model-card {
  height: 100%;
  padding: 2.4rem 2.2rem;
  background: linear-gradient(160deg, rgba(var(--accent-rgb), 0.07), rgba(var(--accent-2-rgb), 0.05)), var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color 0.35s ease, transform 0.35s ease;
}
.model-card:hover {
  border-color: rgba(var(--accent-rgb), 0.45);
  transform: translateY(-6px);
}
.mc-icon {
  display: inline-block;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.model-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}
.model-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* ============ PORTFOLIO ============ */
.portfolio { padding-top: 0; }
.pf-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.6rem;
}
.pf-filter {
  padding: 0.6rem 1.4rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.pf-filter:hover { color: var(--ink); border-color: rgba(var(--accent-rgb), 0.45); }
.pf-filter.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  font-weight: 500;
}

.pf-card {
  height: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color 0.35s ease;
}
.pf-card:hover { border-color: rgba(var(--accent-rgb), 0.4); }

.pf-cover {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.pf-cover-img {
  padding: 0;
  background: var(--bg-soft);
}
.pf-cover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.45s ease;
}
.pf-card:hover .pf-cover-img img { transform: scale(1.04); }
.pf-cover-fallback {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 35%, #222), color-mix(in srgb, var(--accent-2) 25%, var(--bg)));
  text-decoration: none;
  color: inherit;
}
.pf-body h3 a {
  color: inherit;
  transition: color 0.25s ease;
}
.pf-body h3 a:hover { color: var(--accent); }

/* ============ CLIENT LOGOS ============ */
.client-logos { padding-top: 0; }

.client-logos-marquee {
  margin-top: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.client-logos-track {
  display: flex;
  width: max-content;
  animation: client-logos-marquee 50s linear infinite;
}

.client-logos-marquee:hover .client-logos-track {
  animation-play-state: paused;
}

.client-logos-set {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: 0 clamp(1rem, 2vw, 1.75rem);
  margin: 0;
  list-style: none;
}

.client-logos-set li {
  flex: 0 0 auto;
}

.client-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 7rem;
  height: 4.25rem;
  padding: 0.55rem 1.1rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.3s ease;
}

.client-logo-link:hover,
.client-logo-link:focus-visible {
  border-color: rgba(var(--accent-rgb), 0.42);
  outline: none;
}

.client-logo-link img {
  display: block;
  width: auto;
  max-width: 9.5rem;
  height: 2.75rem;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter 0.35s ease;
}

.client-logo-link:hover img,
.client-logo-link:focus img,
.client-logo-link:focus-visible img {
  filter: grayscale(0);
}

@keyframes client-logos-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .client-logos-marquee {
    -webkit-mask-image: none;
    mask-image: none;
    overflow: visible;
  }

  .client-logos-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 1rem;
  }

  .client-logos-set[aria-hidden="true"] {
    display: none;
  }
}

.pf-cover span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  letter-spacing: 0.05em;
  color: var(--ink);
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}
.pf-cover em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(var(--ink-rgb), 0.75);
}
.pf-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.14), transparent 55%);
}
.pf-cover-1 { background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 55%, #222), color-mix(in srgb, var(--accent) 18%, var(--bg))); }
.pf-cover-2 { background: linear-gradient(135deg, color-mix(in srgb, var(--accent-2) 65%, #111), color-mix(in srgb, var(--accent-2) 20%, var(--bg))); }
.pf-cover-3 { background: linear-gradient(135deg, #1f8a70, #0c352c); }
.pf-cover-4 { background: linear-gradient(135deg, #c2543a, #4a1d12); }
.pf-cover-5 { background: linear-gradient(135deg, #2d6cdf, #122a57); }
.pf-cover-6 { background: linear-gradient(135deg, #7b3fd4, #2a1450); }
.pf-cover-7 { background: linear-gradient(135deg, #d49a2c, #4d3608); }
.pf-cover-8 { background: linear-gradient(135deg, #d43f6e, #4d1023); }
.pf-cover-9 { background: linear-gradient(135deg, #2ca9b8, #0b3338); }

.pf-body { padding: 1.6rem 1.6rem 1.8rem; }
.pf-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.pf-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}
.pf-body p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
.pf-case-study {
  margin-bottom: 1.1rem;
}
.pf-case-study p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 0.65rem;
}
.pf-case-study p:last-child {
  margin-bottom: 0;
}
.pf-case-study strong {
  color: var(--accent);
  font-weight: 600;
}
.pf-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.pf-stats b {
  color: var(--accent);
  font-weight: 700;
  margin-right: 0.3rem;
}

/* ============ STATS ============ */
.stats { padding-top: 0; }
.stat {
  padding: 2.4rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(var(--panel-rgb), 0.55);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  color: var(--accent);
}
.stat-num i { font-style: normal; }
.stat-label {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ SKILLS / CUBE ============ */
.cube-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  perspective: 900px;
}
.cube {
  position: relative;
  width: 200px; height: 200px;
  transform-style: preserve-3d;
}
.cube-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--accent);
  background: rgba(var(--panel-rgb), 0.85);
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  border-radius: 10px;
  box-shadow: inset 0 0 60px rgba(var(--accent-rgb), 0.06);
}
.cf-front  { transform: translateZ(100px); }
.cf-back   { transform: rotateY(180deg) translateZ(100px); }
.cf-right  { transform: rotateY(90deg) translateZ(100px); }
.cf-left   { transform: rotateY(-90deg) translateZ(100px); }
.cf-top    { transform: rotateX(90deg) translateZ(100px); }
.cf-bottom { transform: rotateX(-90deg) translateZ(100px); }

.skill-bars { margin-top: 2.4rem; display: flex; flex-direction: column; gap: 1.5rem; }
.sb-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.55rem;
}
.sb-head b { color: var(--accent); font-weight: 600; }
.sb-track {
  height: 4px;
  background: var(--line);
  border-radius: 99px;
  overflow: hidden;
}
.sb-fill {
  height: 100%;
  width: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left center;
}

/* ============ EXPERIENCE / TIMELINE ============ */
.timeline { display: flex; flex-direction: column; }
.tl-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
}
.tl-item:first-child { border-top: 1px solid var(--line); }
.tl-year {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.tl-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  margin-bottom: 0.2rem;
}
.tl-co {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.7rem;
}
.tl-body p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 44rem;
  margin: 0;
}
@media (max-width: 767px) {
  .tl-item { grid-template-columns: 1fr; gap: 0.6rem; padding: 1.5rem 0; }

  .contact { padding-top: 1.5rem; padding-bottom: 3rem; overflow: hidden; }
  .contact-title {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
    margin-bottom: 1.25rem;
    word-break: break-word;
  }
  .contact-cta {
    width: 100%;
    max-width: 100%;
    padding: 0.85rem 1rem;
    font-size: clamp(0.75rem, 3.2vw, 0.88rem);
    justify-content: center;
    gap: 0.5rem;
  }
  .contact-cta span {
    overflow-wrap: anywhere;
    text-align: center;
    line-height: 1.35;
  }
  .contact-cta svg { flex-shrink: 0; width: 18px; height: 18px; }
  .contact-meta {
    font-size: 0.72rem;
    line-height: 1.65;
    letter-spacing: 0.06em;
    padding: 0;
  }

  .custom-input { padding: 14px 16px; }
  select.custom-input { height: 52px; }
}

/* ============ CONTACT ============ */
.contact { padding-bottom: clamp(6rem, 12vw, 10rem); }
.contact-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 10vw, 9rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.contact-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-cta { font-size: clamp(0.9rem, 2.4vw, 1.15rem); }
.contact-meta {
  margin-top: 2.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}


.contact-form{
    margin-top: 1.75rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-alert {
  max-width: 720px;
  margin: 0 auto 1.25rem;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.55;
  text-align: center;
}
.form-alert--success {
  background: rgba(56, 232, 255, 0.12);
  border: 1px solid rgba(56, 232, 255, 0.35);
  color: var(--ink) !important;
}
.form-alert--error {
  background: rgba(255, 90, 90, 0.1);
  border: 1px solid rgba(255, 90, 90, 0.35);
  color: var(--ink);
}
.form-alert a { color: var(--accent); text-decoration: underline; }

.custom-input{
    background:linear-gradient(160deg, rgba(var(--accent-rgb), 0.07), rgba(var(--accent-2-rgb), 0.05)), var(--bg-soft) !important;
    border:1px solid rgba(255,255,255,0.1);
    color:#fff;
    padding:16px 20px;
    border-radius:16px;
}

.custom-input::placeholder {
    color: #fff !important;
    opacity: .8; /* Firefox */
}


.custom-input:focus{
    background:rgba(255,255,255,0.06);
    border-color:var(--accent);
    box-shadow:none;
    color:#fff;
}

.custom-input::placeholder{
    color:rgba(255,255,255,0.5);
}

select.custom-input {
    width: 100%;
    height: 56px;
    padding: 0 50px 0 20px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-position: right 20px center !important;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 20px center,
        linear-gradient(
            160deg,
            rgba(var(--accent-rgb), 0.07),
            rgba(var(--accent-2-rgb), 0.05)
        ),
        var(--bg-soft) !important;
}

.form-container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
}


.btn-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.75rem;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #18b957);
    color: #ffffff !important;
}

.whatsapp-btn:hover{
  box-shadow: 0 22px 48px rgba(37, 211, 102, 0.32);
}

[type="submit"]{
  border:none;
}

/* ============ FOOTER ============ */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.6rem 0;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  background: var(--bg-soft);
}
.footer-socials {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--ink);
  border: 1px solid rgba(var(--ink-rgb), 0.14);
  background: rgba(var(--panel-rgb), 0.55);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.footer-social:hover {
  color: var(--accent);
  border-color: rgba(var(--accent-rgb), 0.45);
  background: rgba(var(--accent-rgb), 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(var(--accent-rgb), 0.18);
}
.theme-links a { color: var(--accent); }
.theme-links a:hover { text-decoration: underline; }

/* ============ REVEAL DEFAULTS (set by JS, fallback visible) ============ */
.reveal-row, .reveal-card { opacity: 1; }
body.js-anim .reveal-row, body.js-anim .reveal-card { opacity: 0; }

@media (max-width: 991px) {
  body.js-anim .reveal-row,
  body.js-anim .reveal-card {
    opacity: 1;
    transform: none;
  }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  .marquee-track, .scroll-hint-line span, .status-dot { animation: none !important; }
}


/* ============ MOBILE RESPONSIVE ============ */

@media (max-width: 991px) {
  #backToTop {
    cursor: pointer;
    bottom: 88px;
    right: 16px;
  }
  .cursor-dot,
  .cursor-ring { display: none !important; }
  body { cursor: auto; }
}

@media (hover: none) {
  #backToTop,
  .magnetic,
  .btn-big,
  .btn-pill {
    cursor: pointer;
  }
}

@media (max-width: 575px) {
  .site-nav { padding: 0.85rem 0; }
  .site-nav.is-scrolled { padding: 0.65rem 0; }
  .nav-logo { font-size: 1.15rem; }
  .mobile-menu a { font-size: 1.15rem; }

  main .container-fluid.px-4,
  main .container-fluid.px-lg-5 {
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
  }

  .hero {
    padding-bottom: 9rem;
  }

  .m-carousel {
    margin-left: -0.35rem;
    margin-right: -0.35rem;
    width: calc(100% + 0.7rem);
  }
  .pf-stats {
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-start;
  }
}

button#loadMoreBtn {
    border: none;
}


#backToTop {
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: #000;
    font-size: 26px;
    font-weight: 500;
    font-family: 'Unbounded';
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
    cursor: none;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}