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

:root {
  --nav-h: 72px;
  --radius: 12px;
  --bg: #000000;
  --bg2: #0a0a0a;
  --bg3: #0f0f0f;
  --radius-lg: 20px;
  --text: #f0ede8;
  --muted: #9996a0;
  --accent: #e85d26;
  --surface: #141414;
  --accent2: #ff8c00;
  --border: rgba(255, 255, 255, 0.08);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  cursor: none;
  color: white;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  background: black;
  font-family: var(--font-body);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

button {
  cursor: none;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/*! START CUSTOM CURSOR */

#cursor-dot {
  width: 8px;
  height: 8px;
  top: -100px;
  left: -100px;
  z-index: 99999;
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  background: #8E0E00;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

#cursor-ring {
  width: 36px;
  top: -100px;
  left: -100px;
  height: 36px;
  z-index: 99998;
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  border: 2px solid #8E0E00;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease, border-color 0.3s ease;
}

body.cursor-hover #cursor-dot {
  width: 12px;
  height: 12px;
  background: #8E0E00;
}

body.cursor-hover #cursor-ring {
  width: 40px;
  height: 40px;
  border-color: linear-gradient(to bottom, #1f1c18, #8e0e00);
  ;
}

/*! END CUSTOM CURSOR */


/*! START LOADER */

.container {
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 1180px;
}

#loader {
  inset: 0;
  z-index: 9999;
  display: flex;
  position: fixed;
  background: #000;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  height: 80px;
  width: 500px;
  max-width: 90vw;
  position: relative;
  text-align: center;
}

.loader-inner span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  color: transparent;
  background: linear-gradient(to bottom, #8e0e00, #8e0e00);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  animation: loadWord 1.2s ease forwards;
}

.loader-inner span:nth-child(1) {
  animation-delay: 0.2s;
}

.loader-inner span:nth-child(2) {
  animation-delay: 1.4s;
}

.loader-inner span:nth-child(3) {
  animation-delay: 2.6s;
}

@keyframes loadWord {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }

  20% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
}

/*! END LOADER */


/*! START NAVBAR */

#navbar {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  padding: 0 2rem;
  position: fixed;
  align-items: center;
  height: var(--nav-h);
  justify-content: center;
  background: #000000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition);
}

.nav-inner {
  gap: 1rem;
  width: 100%;
  display: flex;
  max-width: 1220px;
  align-items: center;
  background: transparent;
  justify-content: space-between;
}

.logo {
  gap: 0.6rem;
  display: flex;
  align-items: center;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: flex;
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  background: linear-gradient(to bottom, #8e0e006e, #8e0e00);
}

.logo-text {
  font-weight: 700;
  font-size: 1.15rem;
  font-family: var(--font-display);
}

.nav-links {
  gap: 0.25rem;
  display: flex;
  align-items: center;
}

.nav-btn {
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 8px;
  position: relative;
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  color: rgba(255, 255, 255, 0.832);
  font-family: var(--font-body);
  transition: color var(--transition);
}

.nav-btn::after {
  left: 50%;
  width: 0%;
  height: 2px;
  content: "";
  bottom: -4px;
  position: absolute;
  transform: translateX(-50%);
  transition: width 0.3s ease;
  background: linear-gradient(to bottom, #8e0e006e, #8e0e00);
}

.nav-btn:hover {
  color: var(--text);
}

.nav-btn:hover::after {
  width: 100%;
}

.nav-item {
  position: relative;
}

.nav-item>.nav-btn {
  gap: 4px;
  display: flex;
  align-items: center;
}

.caret {
  font-size: 0.7rem;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  min-width: 280px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.drop-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  transition: background var(--transition);
  color: var(--text);
}

.drop-item:hover {
  background: var(--surface);
}

.drop-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.drop-item strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.2;
}

.drop-item em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--muted);
}

.cta-btn {
  padding: 0.55rem 1.25rem;
  border-radius: 8px;
  background: linear-gradient(to bottom, #8e0e006e, #8e0e00);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
  transition: opacity var(--transition), transform var(--transition);
}

.cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/*? FULL-SCREEN MOBILE MENU OVERLAY */

#mobile-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

#mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}

.mob-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  z-index: 10;
  font-family: var(--font-body);
  letter-spacing: 0;
  transition: opacity 0.2s;
}

.mob-close-btn:hover {
  opacity: 0.6;
}

.mob-nav-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem 2rem;
  gap: 0;
}

.mob-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  position: relative;
}

.mob-nav-row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mob-nav-row-label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.mob-nav-arrow {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  font-weight: 300;
  transition: transform 0.25s ease, color 0.25s;
}

.mob-nav-row:hover .mob-nav-arrow {
  transform: translateX(4px);
  color: var(--text);
}

#mobile-menu .mob-sub {
  display: none;
  flex-direction: column;
  gap: 0;
  background: transparent;
  padding-left: 0;
  overflow: hidden;
}

#mobile-menu .mob-sub.open {
  display: flex;
}

#mobile-menu .mob-sub a {
  font-size: 0.9rem;
  padding: 0.65rem 0.5rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: transparent;
  transition: color 0.2s;
}

#mobile-menu .mob-sub a i {
  width: 14px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

#mobile-menu .mob-sub a:hover {
  color: var(--text);
}

#mobile-menu .mob-services-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 0;
  font-size: 1.15rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  width: 100%;
  background: transparent;
  color: var(--text);
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}

#mobile-menu .mob-services-toggle .mob-caret {
  transition: transform 0.3s ease;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

#mobile-menu .mob-services-toggle.open .mob-caret {
  transform: rotate(180deg);
}

.mob-footer {
  padding: 1.5rem 2rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mob-footer-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.mob-socials {
  display: flex;
  gap: 0.75rem;
}

.mob-social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 0.8rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.mob-social-icon:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.07);
}

.mob-cta {
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff !important;
  text-align: center;
  padding: 0.85rem !important;
  border-radius: 10px;
  border: none !important;
  font-weight: 600;
}

/*! END NAVBAR */


/*! START HERO */

#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.28;
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-video-gradient-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg,
      rgba(0, 0, 0, 0.97) 0%,
      rgba(0, 0, 0, 0.80) 35%,
      rgba(0, 0, 0, 0.20) 68%,
      transparent 100%);
}

.hero-video-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to bottom, transparent, #000000);
}

.hero-video-gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 22%;
  background: linear-gradient(to top, transparent, #000000);
}

.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 74% 42%,
      rgba(232, 93, 38, 0.07) 0%,
      transparent 70%);
  pointer-events: none;
}

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

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.20;
  z-index: 2;
}

.b1 {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  top: -10%;
  right: -10%;
  animation: blobFloat 8s ease-in-out infinite alternate;
  -webkit-animation: blobFloat 8s ease-in-out infinite alternate;
}

.b2 {
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle, var(--accent2), transparent 70%);
  bottom: 0;
  right: 20%;
  animation: blobFloat 11s ease-in-out infinite alternate-reverse;
}

.b3 {
  width: 25vw;
  height: 25vw;
  background: radial-gradient(circle, #6633ff, transparent 70%);
  top: 30%;
  left: 5%;
  animation: blobFloat 9s ease-in-out infinite alternate;
  opacity: 0.15;
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(3%, 5%) scale(1.05);
  }
}

.hero-container {
  width: 100%;
  max-width: 1290px;
  padding: 0 2rem;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: calc(var(--nav-h) + 5rem) 0 6rem;
}

.hero-content {
  flex: 1;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.0rem, 3.9vw, 4.0rem);
  font-weight: 800;
  line-height: 1.1;
  margin-top: 30px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-heading .line {
  display: block;
}

.hero-heading .accent {
  color: #8e0e00;
}

#red {
  color: #8e0e00;
  font-size: 23px;
  letter-spacing: 0.1em;
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 460px;
  font-weight: 700;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.stat span {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* RIGHT VISUAL */
.hero-visual {
  flex: 0 0 480px;
  height: 480px;
  position: relative;
}

.hv-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(232, 93, 38, 0.18);
  animation: ringPulse 3.5s ease-in-out infinite;
}

.hv-glow-ring2 {
  width: 420px;
  height: 420px;
  border-color: rgba(232, 93, 38, 0.08);
  animation-delay: 1.2s;
  animation-duration: 4.5s;
}

@keyframes ringPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.04);
    opacity: 0.6;
  }
}

.hero-circle {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #8e0e006e, #8e0e00);
  border: px solid rgba(2, 1, 1, 0.433);
  box-shadow:
    0 0 60px rgba(232, 93, 38, 0.12),
    0 0 120px rgba(232, 93, 38, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbBreath 5s ease-in-out infinite;
}

@keyframes orbBreath {

  0%,
  100% {
    box-shadow: 0 0 60px rgba(232, 93, 38, 0.12), 0 0 120px rgba(232, 93, 38, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  50% {
    box-shadow: 0 0 80px rgba(232, 93, 38, 0.22), 0 0 160px rgba(232, 93, 38, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
}

.hc-inner {
  text-align: center;
}

.hc-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  background: white;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.hc-sub {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: white;
  margin-top: 4px;
  text-transform: uppercase;
}

.hv-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  animation: orbitSpin 18s linear infinite;
}

@keyframes orbitSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hv-dot {
  position: absolute;
  border-radius: 50%;
}

.hv-dot1 {
  width: 10px;
  height: 10px;
  background: var(--accent);
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--accent);
}

.hv-dot2 {
  width: 7px;
  height: 7px;
  background: var(--accent2);
  bottom: -3.5px;
  left: 25%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--accent2);
}

.hv-dot3 {
  width: 6px;
  height: 6px;
  background: #8888ff;
  bottom: 30%;
  right: -3px;
  box-shadow: 0 0 10px #8888ff;
}

.floating-card {
  position: absolute;
  background: black;
  border: 1px solid #8e0e00;
  border-radius: 14px;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.fc-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.fc-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.fc-text em {
  font-style: normal;
  font-size: 0.67rem;
  color: var(--muted);
}

/* LEFT SIDE CARDS */
.fc1 {
  top: 8%;
  left: -8%;
  animation: floatCard 4.2s ease-in-out infinite alternate;
}

.fc2 {
  top: 50%;
  left: -18%;
  transform: translateY(-50%);
  animation: floatCard 5s ease-in-out infinite alternate;
  animation-delay: 1.2s;
}

.fc3 {
  bottom: 10%;
  left: -5%;
  animation: floatCard 4.6s ease-in-out infinite alternate;
  animation-delay: 0.6s;
}

@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.fc2 {
  animation: floatCardMid 5s ease-in-out infinite alternate;
  animation-delay: 1.2s;
}

@keyframes floatCardMid {
  0% {
    top: 50%;
    transform: translateY(-50%);
  }

  100% {
    top: calc(50% - 10px);
    transform: translateY(-50%);
  }
}

.hv-badge {
  position: absolute;
  background: linear-gradient(to bottom, #8e0e006e, #8e0e00);
  border-radius: 14px;
  padding: 0.65rem 1.1rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(232, 38, 38, 0.35);
  animation: floatCard 4s ease-in-out infinite alternate;
  -webkit-animation: floatCard 4s ease-in-out infinite alternate;
}

.hv-badge-3 {
  top: 8%;
  right: -8%;
  animation-delay: 0.4s;
  animation-duration: 4.4s;
  background: #000000;
  border: 1.5px solid var(--accent);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.7);
}

.hv-badge-2 {
  top: 50%;
  right: -18%;
  animation: floatCardMid 4.8s ease-in-out infinite alternate;
  animation-delay: 1.4s;
  background: #000000;
  border: 1.5px solid var(--accent);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.7);
}

.hv-badge-1 {
  bottom: 10%;
  right: -5%;
  animation-delay: 1.8s;
}

.hv-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hv-badge-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  margin-top: 3px;
}

@media (max-width: 960px) {

  #navbar {
    background: #000000 !important;
  }

  .logo-img-wrap {
    margin-left: -7px;
  }

  .hero-inner {
    flex-direction: column;
    padding-top: calc(var(--nav-h) + 3rem);
    padding-bottom: 4rem;
    gap: 2.5rem;
  }

  .hero-video {
    opacity: 0.14;
  }

  .hero-video-gradient-left {
    background: rgba(0, 0, 0, 0.92);
  }

  .hero-visual {
    flex: none;
    width: 100%;
    max-width: 400px;
    height: 380px;
    margin: 0 auto;
    position: relative;
  }

  .hv-glow-ring {
    width: 270px;
    height: 270px;
  }

  .hv-glow-ring2 {
    width: 340px;
    height: 340px;
  }

  .hv-orbit {
    width: 270px;
    height: 270px;
  }

  .hero-circle {
    width: 168px;
    height: 168px;
  }

  .hc-logo {
    font-size: 2.2rem;
  }

  .fc1 {
    top: 6%;
    left: 1%;
    animation: none;
    padding: 0.45rem 0.7rem;
    border-radius: 10px;
  }

  .fc2 {
    top: 46%;
    left: -2%;
    transform: translateY(-50%);
    animation: none;
    padding: 0.45rem 0.7rem;
    border-radius: 10px;
  }

  .fc3 {
    bottom: 6%;
    left: 3%;
    animation: none;
    padding: 0.45rem 0.7rem;
    border-radius: 10px;
  }

  .fc-text strong {
    font-size: 0.72rem;
  }

  .fc-text em {
    font-size: 0.62rem;
  }

  .hv-badge-3 {
    top: 6%;
    right: 1%;
    animation: none;
    padding: 0.45rem 0.8rem;
    border-radius: 10px;
  }

  .hv-badge-2 {
    top: 46%;
    right: -2%;
    animation: none;
    transform: translateY(-50%);
    padding: 0.45rem 0.8rem;
    border-radius: 10px;
  }

  .hv-badge-1 {
    bottom: 6%;
    right: 3%;
    animation: none;
    padding: 0.45rem 0.8rem;
    border-radius: 10px;
  }

  .hv-badge-num {
    font-size: 1.15rem;
  }

  .hv-badge-label {
    font-size: 0.57rem;
  }
}

@media (max-width: 540px) {

  .hero-container {
    padding: 0 1rem;
  }

  .hero-inner {
    padding-top: calc(var(--nav-h) + 2rem);
    gap: 2rem;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .hero-visual {
    max-width: 340px;
    height: 320px;
  }

  .hv-glow-ring {
    width: 210px;
    height: 210px;
  }

  .hv-glow-ring2 {
    width: 268px;
    height: 268px;
  }

  .hv-orbit {
    width: 210px;
    height: 210px;
  }

  .hero-circle {
    width: 134px;
    height: 134px;
  }

  .hc-logo {
    font-size: 1.75rem;
  }

  .hc-sub {
    font-size: 0.52rem;
  }

  .fc1 {
    top: 4%;
    left: 0%;
    padding: 0.38rem 0.6rem;
    border-radius: 9px;
    animation: none;
  }

  .fc2 {
    top: 48%;
    left: 1%;
    transform: translateY(-50%);
    padding: 0.38rem 0.6rem;
    border-radius: 9px;
    animation: none;
  }

  .fc3 {
    bottom: 3%;
    left: 3%;
    padding: 0.38rem 0.6rem;
    border-radius: 9px;
    animation: none;
  }

  .fc-text strong {
    font-size: 0.66rem;
  }

  .fc-text em {
    font-size: 0.57rem;
  }

  .hv-badge-3 {
    top: 4%;
    right: 0%;
    padding: 0.38rem 0.7rem;
    border-radius: 9px;
    animation: none;
  }

  .hv-badge-2 {
    top: 48%;
    right: 1%;
    transform: translateY(-50%);
    padding: 0.38rem 0.7rem;
    border-radius: 9px;
    animation: none;
  }

  .hv-badge-1 {
    bottom: 3%;
    right: 3%;
    padding: 0.38rem 0.7rem;
    border-radius: 9px;
    animation: none;
  }

  .hv-badge-num {
    font-size: 1rem;
  }

  .hv-badge-label {
    font-size: 0.52rem;
  }
}

@media (max-width: 375px) {

  .hero-visual {
    max-width: 300px;
    height: 290px;
  }

  .hv-glow-ring {
    width: 185px;
    height: 185px;
  }

  .hv-glow-ring2 {
    width: 238px;
    height: 238px;
  }

  .hv-orbit {
    width: 185px;
    height: 185px;
  }

  .hero-circle {
    width: 118px;
    height: 118px;
  }

  .hc-logo {
    font-size: 1.55rem;
  }

  .fc1, .fc2, .fc3 {
    padding: 0.32rem 0.5rem;
  }

  .fc-text strong {
    font-size: 0.6rem;
  }

  .fc-text em {
    font-size: 0.52rem;
  }

  .hv-badge-1, .hv-badge-2, .hv-badge-3 {
    padding: 0.32rem 0.58rem;
  }

  .hv-badge-num {
    font-size: 0.9rem;
  }

  .hv-badge-label {
    font-size: 0.48rem;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  background: linear-gradient(to bottom, #8e0e006e, #8e0e00);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity var(--transition), transform var(--transition);
  font-family: var(--font-body);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  border: 1px solid white;
  color: var(--text);
  font-size: 0.95rem;
  transition: background var(--transition), border-color var(--transition);
  font-family: var(--font-body);
}

.btn-ghost:hover {
  background: var(--surface);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.95rem;
  transition: background var(--transition);
  font-family: var(--font-body);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

/*! END HERO */


/*! START TICKER */

.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.6rem 0;
  background: var(--bg2);
}

.ticker {
  display: flex;
  gap: 2rem;
  animation: ticker 22s linear infinite;
  width: max-content;
}

.ticker span {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--muted);
  white-space: nowrap;
}

.ticker .dot {
  color: var(--accent);
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/*! END TICKER */


/*! START SECTION COMMONS */

.section-tag {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: #8e0e00;
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.services-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.services-heading-row .section-heading {
  margin-bottom: 0;
}

.explore-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  color: #111;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}

.explore-now-btn .explore-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #8E0E00;
  color: #fff;
  font-size: 1rem;
  transition: background 0.25s ease, transform 0.25s ease;
}

.explore-now-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.explore-now-btn:hover .explore-arrow {
  background: #c01200;
  transform: rotate(45deg);
}

.sc-has-dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible !important;
  padding: 0 !important;
}

.sc-card-link {
  display: block;
  flex: 1;
  text-decoration: none;
  color: inherit;
  padding: 2rem 2rem 1rem 2rem;
}

.sc-has-dropdown .sc-arrow-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}

.sc-has-dropdown .sc-num {
  margin-top: 0;
}

.sc-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 2rem);
  margin: 0.5rem 1rem 1rem 1rem;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease;
  letter-spacing: 0.02em;
}

.sc-dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
}

.sc-dropdown-caret {
  transition: transform 0.25s ease;
  display: inline-block;
}

.sc-dropdown-toggle[aria-expanded="true"] .sc-dropdown-caret {
  transform: rotate(180deg);
}

.sc-dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  margin: 0 1rem 1rem 1rem;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.sc-dropdown-menu.open {
  display: flex;
}

.sc-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  color: #e0ddd8;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.18s ease, color 0.18s ease;
}

.sc-dropdown-item:last-child {
  border-bottom: none;
}

.sc-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.sc-dropdown-item i {
  color: #ffffff;
  font-size: 0.9rem;
  width: 18px;
  text-align: center;
  opacity: 0.85;
}

#services {
  padding: 4rem 0 5rem 0;
}

.services-container {
  max-width: 1220px;
  margin: 0 auto;
}

.services-swiper-wrap {
  position: relative;
  margin-top: 2.5rem;
}

.swiper-services {
  overflow: hidden;
}

.service-card {
  border-radius: 24px;
  padding: 2rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.32s ease, border-color 0.32s ease;
  text-decoration: none;
  color: var(--text);
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card.sc-1 {
  background: linear-gradient(to bottom, #1f1c18, #8e0e00);
  border: 1px solid rgba(0, 0, 0, 0.626);
}

.service-card.sc-1 .sc-tags span {
  background: rgba(232, 93, 38, 0.10);
  border: 1px solid rgba(112, 106, 106, 0.765);
  color: rgba(244, 242, 241, 0.95);
}

.service-card.sc-1 .sc-arrow-btn:hover,
.service-card.sc-1:hover .sc-arrow-btn {
  background: rgba(16, 16, 16, 0.708);
}

.service-card.sc-2 {
  background: linear-gradient(to bottom, #1f1c18, #8e0e00);
  border: 1px solid rgba(8, 8, 8, 0.841);
}

.service-card.sc-2 .sc-tags span {
  background: rgba(232, 93, 38, 0.10);
  border: 1px solid rgba(112, 106, 106, 0.765);
  color: rgba(244, 242, 241, 0.95);
}

.service-card.sc-2:hover .sc-arrow-btn {
  background: rgba(16, 16, 16, 0.708);
}

.service-card.sc-3 {
  background: linear-gradient(to bottom, #1f1c18, #8e0e00);
  border: 1px solid rgba(8, 8, 8, 0.841);
}

.service-card.sc-3 .sc-tags span {
  background: rgba(232, 93, 38, 0.10);
  border: 1px solid rgba(112, 106, 106, 0.765);
  color: rgba(244, 242, 241, 0.95);
}

.service-card.sc-3:hover .sc-arrow-btn {
  background: rgba(16, 16, 16, 0.708);
}

.service-card.card-accent {
  background: #1c1608;
  border: 1px solid rgba(255, 160, 30, 0.18);
}

.sc-arrow-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: background 0.25s, border-color 0.25s, transform 0.28s ease, color 0.25s;
  flex-shrink: 0;
}

.service-card:hover .sc-arrow-btn {
  transform: rotate(45deg);
  color: #fff;
}

.sc-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 2.5rem;
  opacity: 0.38;
  color: var(--text);
}

.sc-icon {
  display: none;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: #ffffff;
}

.service-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  color: rgba(200, 196, 208, 0.70);
  flex: 1;
}

.sc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
}

.sc-tags span {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.sc-arrow {
  display: none;
}

.sc-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.4rem;
  transition: background 0.25s, transform 0.25s;
  flex-shrink: 0;
}

.service-card:hover .sc-icon-wrap {
  background: rgba(255, 255, 255, 0.14);
  transform: scale(1.08);
}

.service-card.sc-4,
.service-card.sc-5,
.service-card.sc-6,
.service-card.sc-7,
.service-card.sc-8,
.service-card.sc-9 {
  background: linear-gradient(to bottom, #1f1c18, #8e0e00);
  border: 1px solid rgba(8, 8, 8, 0.841);
}

.service-card.sc-4 .sc-tags span,
.service-card.sc-5 .sc-tags span,
.service-card.sc-6 .sc-tags span,
.service-card.sc-7 .sc-tags span,
.service-card.sc-8 .sc-tags span,
.service-card.sc-9 .sc-tags span {
  background: rgba(232, 93, 38, 0.10);
  border: 1px solid rgba(112, 106, 106, 0.765);
  color: rgba(244, 242, 241, 0.95);
}

.service-card.sc-4:hover .sc-arrow-btn,
.service-card.sc-5:hover .sc-arrow-btn,
.service-card.sc-6:hover .sc-arrow-btn,
.service-card.sc-7:hover .sc-arrow-btn,
.service-card.sc-8:hover .sc-arrow-btn,
.service-card.sc-9:hover .sc-arrow-btn {
  background: rgba(16, 16, 16, 0.708);
}

/*! END SECTION COMMONS */


/*! START ABOUT STRIP */

#about-strip {
  padding: 4rem 0 4rem 0;
}

.about-container {
  max-width: 1220px;
  margin: 0 auto;
}

.about-flex {
  display: flex;
  gap: 5rem;
  align-items: center;
}

.about-left {
  flex: 1;
  min-width: 0;
}

.about-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.about-left>p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.8;
  font-size: 0.97rem;
}

blockquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--surface);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--muted);
}

blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--accent);
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.75rem 0;
}

.about-badges span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: border-color 0.25s, color 0.25s;
}

.about-badges span:hover {
  border-color: rgba(232, 93, 38, 0.35);
  color: var(--text);
}

.about-right {
  flex: 0 0 420px;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
  position: relative;
}

.about-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 93, 38, 0.13), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.av-card {
  position: relative;
  z-index: 1;
  background: black;
  border: 1px solid #f0ebeb;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
  overflow: hidden;
}

.av-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 93, 38, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.av-card:hover {
  border-color: rgba(232, 93, 38, 0.30);
  transform: translateY(-3px);
}

.av-card:hover::after {
  opacity: 1;
}

.ac3 {
  grid-column: 1 / -1;
}

.about-visual .counter {
  color: #8e0e00;
}

.av-card span {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.av-card p {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0;
}

.av-blob {
  display: none;
}

@media (max-width: 900px) {
  .about-flex {
    flex-direction: column;
    gap: 3rem;
  }

  .about-right {
    flex: none;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 540px) {
  .about-container {
    padding: 0 1.25rem;
  }

  .about-visual {
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
  }

  .av-card {
    padding: 1.4rem 1rem;
  }

  .av-card span {
    font-size: 2rem;
  }
}

/*! END ABOUT STRIP */


/*! START CTA BAND */

#cta-band {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #8e0e006e, #8e0e00);
  text-align: center;
}

#cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

#cta-band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.cta-band-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

#cta-band .btn-primary {
  font-weight: 800;
  background: #fff;
  color: #8e0e00;
}

#cta-band .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

/*! END CTA BAND */


/*! START FAQ */

#faq {
  padding: 2rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  background: var(--bg);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text);
  text-align: left;
  transition: background var(--transition);
  font-family: var(--font-body);
}

.faq-q:hover {
  background: var(--surface);
}

.faq-q span {
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-q.open span {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0 1.5rem;
  line-height: 1.7;
}

.faq-a.open {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

/*! END FAQ */


/*! START FOOTER */

#footer {
  background: linear-gradient(to bottom, #000, #8e0e00);
  padding: 4rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.footer-top {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: border-color var(--transition), color var(--transition);
}

.social-links a:hover {
  border-color: white;
  color: white;
}

.footer-col {
  margin-left: 40px;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--muted);
  font-size: 0.87rem;
  margin-bottom: 0.6rem;
  line-height: 1.6;
  transition: color var(--transition);
  -webkit-transition: color var(--transition);
  -moz-transition: color var(--transition);
  -ms-transition: color var(--transition);
  -o-transition: color var(--transition);
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1180px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-wordmark {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(7rem, 10vw, 10rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

/*! END FOOTER */


/*! START SWIPER NAV */

.swiper-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.swiper-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.swiper-btn:hover {
  background: #8e0e00;
  border-color: #f8f8f8;
  transform: scale(1.08);
}

.swiper-btn.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.swiper-pagination-custom {
  display: flex;
  gap: 6px;
  align-items: center;
}

.swiper-pagination-bullet-custom {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s;
}

.swiper-pagination-bullet-custom.active {
  background: #8e0e00;
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 900px) {

  .nav-links,
  .cta-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-flex {
    flex-direction: column;
  }

  .about-right {
    display: none;
  }

  .form-wrap {
    flex-direction: column;
  }

  .form-left {
    flex: 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-col {
    margin-left: 0;
  }

  #footer {
    padding: 3rem 1.5rem 2rem;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .services-heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .explore-now-btn {
    font-size: 0.88rem;
    padding: 0.55rem 1.1rem;
  }

  .explore-now-btn .explore-arrow {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
}

@media (hover: none) {
  body {
    cursor: auto;
  }

  #cursor-dot,
  #cursor-ring {
    display: none;
  }

  a,
  button {
    cursor: pointer;
  }
}

/*! END SWIPER NAV */


/*! START NAVBAR - SERVICE MEGA DROPDOWN */

.mega-dropdown {
  position: fixed;
  top: var(--nav-h);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: min(1100px, 96vw);
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  border-radius: 0 0 24px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.nav-item:hover .mega-dropdown,
.nav-item:focus-within .mega-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.mega-inner {
  display: grid;
  grid-template-columns: 1fr 260px;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  padding: 18px 16px 14px;
  align-content: start;
}

.mega-col {
  display: flex;
  flex-direction: column;
}

.mega-col-3 {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 8px;
}

.mega-col-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px 4px;
  margin: 0;
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 12px;
  transition: background 0.18s ease;
  color: var(--text);
  text-decoration: none;
}

.mega-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.mega-item:hover .mega-icon {
  transform: scale(1.1);
}

.mega-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  font-size: 1.1rem;
}

.hr-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.edu-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.it-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.prod-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.design-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.mkt-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.adm-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.mega-text strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 4px;
}

.mega-text em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.45;
  display: block;
}

.mega-visual {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-height: 0;
  background: linear-gradient(160deg, #0d1520 0%, #111827 40%, #1a0e0a 100%);
}

.mega-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
  pointer-events: none;
  display: block;
}

.mega-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 10, 15, 0.88) 0%,
      rgba(10, 10, 15, 0.45) 50%,
      rgba(10, 10, 15, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

.mega-visual-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 16px 16px 20px;
  width: 100%;
  margin-top: auto;
}

.mega-badge {
  display: inline-block;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 20px;
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  margin-bottom: 10px;
  text-transform: uppercase;
  box-shadow: none;
}

.mega-tagline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.mega-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 22px;
  background: black;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  gap: 1rem;
}

.mega-footer span {
  font-size: 0.8rem;
  color: var(--muted);
}

.mega-footer-btn {
  flex-shrink: 0;
  padding: 9px 22px;
  border: 1px solid black;
  background: linear-gradient(to bottom, #8e0e006e, #8e0e00);
  color: #fff;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
}

.mega-footer-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .mega-grid {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 12px 10px;
    gap: 2px;
  }

  .mega-col-3 {
    padding-left: 6px;
  }

  .mega-item {
    padding: 10px 10px;
    gap: 10px;
  }

  .mega-icon {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .mega-text strong {
    font-size: 0.88rem;
  }

  .mega-text em {
    font-size: 0.72rem;
  }
}

@media (max-width: 860px) {
  .mega-dropdown {
    width: 100vw;
    border-radius: 0 0 16px 16px;
  }

  .mega-inner {
    grid-template-columns: 1fr;
  }

  .mega-visual {
    display: none;
  }

  .mega-grid {
    grid-template-columns: 1fr 1fr;
    padding: 12px;
    gap: 2px;
  }

  .mega-col-3 {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 0;
    padding-top: 4px;
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    align-items: center;
    gap: 2px;
  }

  .mega-col-label {
    grid-column: 1 / -1;
    padding: 8px 14px 2px;
  }

  .mega-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .mega-footer-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .mega-grid {
    grid-template-columns: 1fr;
    padding: 8px;
  }

  .mega-col-3 {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 4px;
    padding-left: 0;
  }

  .mega-item {
    padding: 10px 12px;
  }

  .mega-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    border-radius: 9px;
  }

  .mega-text strong {
    font-size: 0.85rem;
  }

  .mega-text em {
    font-size: 0.71rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex !important;
  }

  .cta-btn {
    display: none;
  }
}

/*! END NAVBAR - SERVICE MEGA DROPDOWN */


/*! START SHOWCASE — WHO WE ARE */

.showcase-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.showcase-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

.sc1-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.sc1-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}

.sc1-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.65) 45%,
      rgba(0, 0, 0, 0.30) 100%);
}

.showcase-row {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.row-img-left {
  flex-direction: row;
}

.showcase-text {
  flex: 1;
  min-width: 0;
  margin-left: 2rem;
}

.showcase-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: #fff;
}

.showcase-sub {
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 520px;
}

.sc1-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.showcase-media {
  flex: 0 0 420px;
}

.showcase-img-wrap {
  position: relative;
  width: 100%;
  height: 340px;
}

.sc-img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.sc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.sc-img-back {
  width: 68%;
  height: 260px;
  top: 0;
  left: 0;
  background: var(--surface);
}

.sc-img-front {
  width: 60%;
  height: 230px;
  bottom: 0;
  right: 0;
  border: 3px solid #000;
  background: var(--surface);
}

.showcase-row .showcase-text,
.showcase-row .showcase-media {
  opacity: 0;
  transform: translateY(55px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase-row .showcase-media {
  transition-delay: 0.14s;
}

.showcase-section.in-view .showcase-text,
.showcase-section.in-view .showcase-media {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .showcase-row {
    flex-direction: column !important;
    gap: 2.5rem;
  }

  .showcase-media {
    flex: none;
    width: 100%;
    max-width: 440px;
  }

  .showcase-img-wrap {
    height: 280px;
  }
}

@media (max-width: 540px) {
  .showcase-section {
    padding: 4.5rem 0;
  }

  .showcase-img-wrap {
    height: 230px;
  }

  .sc-img-back {
    width: 70%;
    height: 190px;
  }

  .sc-img-front {
    width: 58%;
    height: 165px;
  }
}

/*! END SHOWCASE — WHO WE ARE */


/*! START OUR STORY SECTION */

#our-story {
  position: relative;
  padding: 0.2rem 0 2rem 0;
  overflow: hidden;
}

.story-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.story-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.story-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.72) 55%,
      rgba(0, 0, 0, 0.88) 100%);
}

.story-container {
  position: relative;
  z-index: 2;
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 2rem;
}

.story-row {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.story-text {
  flex: 1;
  min-width: 0;
}

.story-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.story-sub {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.story-btn {
  margin-top: 1.25rem;
  display: inline-flex;
}

.story-media {
  flex: 0 0 460px;
  position: relative;
}

.story-img-wrap {
  width: 100%;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -0.75rem;
  background: linear-gradient(to bottom, #8e0e00, #8e0e00);
  border: 1px solid rgba(0, 0, 0, 0.769);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  max-width: 220px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.story-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.story-badge-title {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: white;
  margin: 0.2rem 0 0.45rem;
}

.story-badge-desc {
  font-size: 0.71rem;
  color: whitesmoke;
  line-height: 1.5;
  margin: 0;
}

.story-text,
.story-media {
  opacity: 0;
  transform: translateY(55px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-media {
  transition-delay: 0.14s;
}

#our-story.in-view .story-text,
#our-story.in-view .story-media {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .story-row {
    flex-direction: column;
    gap: 3rem;
  }

  .story-media {
    flex: none;
    width: 100%;
    max-width: 480px;
  }

  .story-img-wrap {
    height: 300px;
  }

  .story-badge {
    bottom: -1rem;
    right: 0.5rem;
    max-width: 195px;
  }
}

@media (max-width: 540px) {
  #our-story {
    padding: 4.5rem 0;
  }

  .story-img-wrap {
    height: 240px;
  }

  .story-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1rem;
    max-width: 100%;
    border-radius: 12px;
  }
}

/*! END OUR STORY SECTION */


/*! START BRANDS TICKER */

.brands-ticker-wrap {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2.5rem 0;
  overflow: hidden;
  margin-top: 46px;
}

.brands-label {
  text-align: center;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3rem;
}

.brands-track-outer {
  overflow: hidden;
  position: relative;
}

.brands-track-outer::before,
.brands-track-outer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.brands-track-outer::before {
  left: 0;
  background: linear-gradient(to right, #000 30%, transparent);
}

.brands-track-outer::after {
  right: 0;
  background: linear-gradient(to left, #000 30%, transparent);
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: brandScroll 30s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}

@keyframes brandScroll {
  from {
    transform: translateX(0);
  }

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

.brand-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.45;
  filter: grayscale(1) brightness(1.8);
  transition: opacity 0.35s, filter 0.35s;
}

.brand-item:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}

.brand-item img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

@media (max-width: 540px) {
  .brand-item img {
    height: 52px;
    max-width: 110px;
  }

  .brands-track {
    gap: 2.5rem;
  }
}

/*! END BRANDS TICKER */


/*! START TESTIMONIALS SECTION */

.testimonials-section {
  padding: 4rem 0 2rem;
  background: var(--bg);
}

.testi-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testi-tag {
  text-align: center;
}

.testi-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.1vw, 2.6rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.testi-card {
  background: transparent;
  border: 1px solid #8e0e00;
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color 0.3s, transform 0.3s;
}

.testi-card:hover {
  border-color: rgba(232, 93, 38, 0.3);
  transform: translateY(-4px);
}

.testi-card-featured {
  background: linear-gradient(150deg, #1c0f0a 0%, var(--surface) 70%);
  border-color: rgba(232, 93, 38, 0.25);
}

.testi-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #8e0e006e, #8e0e00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

.testi-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
}

.testi-role {
  font-size: 0.75rem;
  color: var(--muted);
  display: block;
}

.testi-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.testi-cta {
  text-align: center;
}

.testi-card {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s;
}

.testi-card:nth-child(1) {
  transition-delay: 0s;
}

.testi-card:nth-child(2) {
  transition-delay: 0.08s;
}

.testi-card:nth-child(3) {
  transition-delay: 0.16s;
}

.testi-card:nth-child(4) {
  transition-delay: 0.08s;
}

.testi-card:nth-child(5) {
  transition-delay: 0.16s;
}

.testi-card:nth-child(6) {
  transition-delay: 0.24s;
}

.testimonials-section.in-view .testi-card {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .testi-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 3rem;
  }

  .testimonials-section {
    padding: 4rem 0 5rem;
  }
}

/*! END TESTIMONIALS SECTION */

/*! START NEW FAQ  */

.new-faq-section {
  padding: 7rem 0;
  margin-top: 3rem;
  background: linear-gradient(to bottom, #8e0e006e, #8e0e00);
}

.new-faq-container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 5rem;
  align-items: flex-start;
}

.new-faq-left {
  flex: 0 0 390px;
  position: sticky;
  top: 6rem;
}

.new-faq-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0.75rem 0 2rem;
}

.new-faq-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: 30px;
  font-size: 0.88rem;
}

.new-faq-right {
  flex: 1;
  min-width: 0;
}

.nfaq-item {
  border-bottom: 2px solid var(--border);
}

.nfaq-item:first-child {
  border-top: 2px solid var(--border);
}

.nfaq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  -ms-transition: color 0.2s;
  -o-transition: color 0.2s;
}

.nfaq-q:hover {
  font-weight: 600;
}

.nfaq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.nfaq-a {
  overflow: hidden;
  max-height: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(245, 245, 245, 0.618);
  line-height: 1.75;
  padding: 0;
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s ease;
}

@media (max-width: 768px) {
  .new-faq-container {
    flex-direction: column;
    gap: 2.5rem;
  }

  .new-faq-left {
    position: static;
    flex: none;
  }
}

/*! END NEW FAQ  */


/*! START SUCCESS STORIES */

.success-section {
  padding: 3rem 0 0 0;
  background: transparent;
}

.success-container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 2rem;
}

.success-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.success-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.success-sub {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 480px;
}

.success-view-all {
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.2s;
}

.success-view-all:hover {
  color: var(--accent);
}

.story-card {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  height: 100%;
}

.story-card:hover {
  transform: translateY(-4px);
}

.story-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.story-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.story-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 1.1rem;
  gap: 0.4rem;
}

.story-tag-pill {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
}

.hr-pill {
  background: #8e0e003c;
  color: #faf9f8;
  border: 1px solid rgba(247, 243, 241, 0.4);
}

.edu-pill {
  background: #8e0e003c;
  color: #faf9f8;
  border: 1px solid rgba(247, 243, 241, 0.4);
}

.it-pill {
  background: #8e0e003c;
  color: #faf9f8;
  border: 1px solid rgba(247, 243, 241, 0.4);
}

.story-img-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.story-card-body {
  background: linear-gradient(to bottom, #8e0e006e, #8e0e00);
  padding: 1.25rem 1.25rem 1.5rem;
}

.story-card-title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.story-card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.success-swiper-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

@media (max-width: 540px) {
  .success-section {
    padding: 4rem 0;
  }
}

/*! END SUCCESS STORIES */


/*! START WHY PARTNER SECTION */

.why-partner-section {
  background: var(--bg);
  padding: 2px 0 70px 0;
  overflow: hidden;
}

.why-partner-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1.45rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.why-partner-left {
  position: sticky;
  top: 100px;
}

.why-partner-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  background: var(--surface);
}

.why-partner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.04);
}

.why-partner-img.active {
  opacity: 1;
  transform: scale(1);
}

.why-partner-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--text);
}

.why-partner-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.why-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.why-faq-item {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.why-faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text);
  font-family: var(--font-body);
  cursor: pointer;
  transition: color var(--transition);
}

.why-faq-item.active .why-faq-q {
  color: #8e0e00;
}

.why-faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--muted);
  transition: all var(--transition);
  background: var(--surface);
}

.why-faq-item.active .why-faq-icon {
  color: #fff;
  transform: rotate(45deg);
}

.why-faq-a {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding-bottom: 0;
}

.why-faq-item.active .why-faq-a {
  max-height: 200px;
  padding-bottom: 18px;
}

/*! END WHY PARTNER SECTION */


/*! START IMPACT CTA SECTION */

.impact-cta-section {
  background: linear-gradient(to bottom, #8e0e006e, #8e0e00);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.impact-cta-container {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.impact-cta-left {
  padding: 60px 60px 3px 80px;
  margin-left: 70px;
}

.impact-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 2.2rem);
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 20px;
}

.impact-highlight {
  color: #8e0e00;
  font-style: italic;
}

.impact-cta-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 36px;
  max-width: 420px;
}

.impact-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #000;
  font-weight: 800;
  font-size: 0.99rem;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.impact-cta-btn:hover {
  color: #fff;
  background: #000000;
  transform: translateY(-2px);
}

.impact-cta-right {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.impact-cta-img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  display: block;
  border-radius: 0;
  filter: brightness(0.85) saturate(1.2);
}

.impact-cta-glow {
  position: absolute;
  inset: 0;
  border-radius: 0;
  pointer-events: none;
}

/*! END IMPACT CTA SECTION */


/*! START GET IN TOUCH SECTION */

.git-section {
  background: black;
  padding: 40px 0;
}

.git-container {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.git-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 12px;
}

.git-accent {
  color: #8e0e00;
}

.git-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.git-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.git-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.git-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.git-input::placeholder {
  color: var(--muted);
}

.git-input:focus {
  border-color: var(--accent);
}

.git-phone-row {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  transition: border-color var(--transition);
}

.git-phone-row:focus-within {
  border-color: var(--accent);
}

.git-phone-prefix {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  font-size: 0.88rem;
  color: var(--text);
  border-right: 1px solid var(--border);
  white-space: nowrap;
  flex-shrink: 0;
}

.git-phone-prefix img {
  width: 20px;
  border-radius: 2px;
}

.git-phone-input {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  flex: 1;
}

.git-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239996a0' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.git-select option {
  background: #1a1a1a;
  color: var(--text);
}

.git-textarea {
  resize: vertical;
  min-height: 110px;
}

.git-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  background: linear-gradient(to bottom, #8e0e006e, #8e0e00);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  align-self: flex-start;
}

.git-submit:hover {
  background: #8e0e00;
  border-color: #f8f8f8;
  transform: translateY(-2px);
}

.git-right-desc {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.git-contact-card {
  background: linear-gradient(to bottom, #8e0e006e, #8e0e00);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  -webkit-border-radius: var(--radius-lg);
  -moz-border-radius: var(--radius-lg);
  -ms-border-radius: var(--radius-lg);
  -o-border-radius: var(--radius-lg);
}

.git-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.git-card-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 24px;
}

.git-contact-group {
  margin-bottom: 20px;
}

.git-contact-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.git-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.git-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: white;
  flex-shrink: 0;
}

.git-contact-type {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
}

.git-contact-val {
  font-size: 0.88rem;
  color: #fff;
  font-weight: 500;
}

/*! END GET IN TOUCH SECTION */


@media (max-width: 768px) {

  .services-container {
    padding: 0 1.25rem
  }

  .why-partner-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-partner-left {
    position: relative;
    top: 0;
  }

  .impact-cta-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .impact-cta-left {
    padding: 36px 1.5rem 30px;
    margin-left: 0;
  }

  .impact-cta-right {
    display: none;
  }

  .git-container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 1.5rem;
  }

  .git-row {
    grid-template-columns: 1fr;
  }

  .showcase-container {
    padding: 0 1.35rem;
  }

  .showcase-section {
    padding-bottom: 8px;
  }

  .showcase-text {
    margin-left: 0;
  }

  .story-container {
    padding: 0 1.25rem;
  }

  #our-story {
    padding-bottom: 8px;
  }

  .new-faq-container {
    padding: 0 1.25rem;
  }

  .new-faq-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3.2rem);
    margin-bottom: 2px;
  }

  .success-container {
    padding: 0 1.25rem;
  }

  .success-section {
    padding-bottom: 8px;
  }

  .testimonials-section {
    padding-bottom: 4px;
  }

  .testi-container {
    padding: 0 1.5rem;
  }

  #cta-band h2 {
    font-size: 1.5rem;
  }

  #cta-band p {
    font-size: 0.9rem;
  }

  #cta-band .cta-band-btns {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary {
    justify-content: center;
  }

  .btn-ghost-light{
    justify-content: center;
  }
}

.logo-img-wrap {
  display: flex;
  align-items: center;
}

.logo-png {
  height: 124px;
  margin-bottom: 10px;
  margin-left: -34px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-fallback {
  align-items: center;
  gap: 8px;
}

.footer-brand .logo-png {
  height: 34px;
  filter: brightness(0) invert(1);
}

.logo-img-wraps {
  display: flex;
  align-items: center;
}

.logos-png {
  height: 128px;
  margin-top: -40px;
  margin-bottom: 10px;
  margin-left: -40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logos-fallback {
  align-items: center;
  gap: 8px;
}

.footer-brand .logo-png {
  height: 34px;
  filter: brightness(0) invert(1);
}

/*! START HERO VISUAL — EQUAL LEFT/RIGHT SPACING ON MOBILE */

@media (max-width: 960px) {

  .hero-container {
    padding: 0 1.25rem;
  }

  .hero-inner {
    align-items: center;
  }

  .hero-visual {
    width: calc(100% - 2.5rem);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .fc1 {
    left: 2% !important;
  }

  .fc2 {
    left: 0% !important;
  }

  .fc3 {
    left: 2% !important;
  }

  .hv-badge-3 {
    right: 2% !important;
  }

  .hv-badge-2 {
    right: 0% !important;
  }

  .hv-badge-1 {
    right: 2% !important;
  }
}

@media (max-width: 540px) {

  .hero-container {
    padding: 0 1.35rem;
  }

  .hero-visual {
    width: calc(100% - 2rem) !important;
    max-width: 360px !important;
    height: 340px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hv-glow-ring {
    width: 220px !important;
    height: 220px !important;
  }

  .hv-glow-ring2 {
    width: 280px !important;
    height: 280px !important;
  }

  .hv-orbit {
    width: 220px !important;
    height: 220px !important;
  }

  .hero-circle {
    width: 140px !important;
    height: 140px !important;
  }

  .fc1 {
    top: 4% !important;
    left: 1% !important;
  }

  .fc2 {
    top: 49% !important;
    left: 1% !important;
  }

  .fc3 {
    bottom: 4% !important;
    left: 1% !important;
  }

  .hv-badge-3 {
    top: 1% !important;
    right: 1% !important;
  }

  .hv-badge-2 {
    top: 46% !important;
    right: 1% !important;
  }

  .hv-badge-1 {
    bottom: 8% !important;
    right: 1% !important;
  }
}

@media (max-width: 375px) {

  .hero-visual {
    max-width: 310px !important;
    height: 300px !important;
  }

  .hv-glow-ring {
    width: 190px !important;
    height: 190px !important;
  }

  .hv-glow-ring2 {
    width: 244px !important;
    height: 244px !important;
  }

  .hv-orbit {
    width: 190px !important;
    height: 190px !important;
  }

  .hero-circle {
    width: 122px !important;
    height: 122px !important;
  }

  .fc1, .fc2, .fc3 {
    left: 0% !important;
  }

  .hv-badge-1, .hv-badge-2,
  .hv-badge-3 {
    right: 0% !important;
  }
}

/*! END HERO VISUAL — EQUAL LEFT/RIGHT SPACING ON MOBILE */

/*! START GIT SUCCESS POPUP  */

#git-success-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.80);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

#git-success-popup.show {
  opacity: 1;
  pointer-events: all;
}

.git-popup-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#git-success-popup.show .git-popup-box {
  transform: translateY(0) scale(1);
}

.git-popup-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #1f1c18, #8e0e00);
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.git-popup-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.git-popup-msg {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.git-popup-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: linear-gradient(to bottom, #1f1c18, #8e0e00);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--transition);
  border: none;
}

.git-popup-close:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/*! END GIT SUCCESS POPUP  */

