/* ============================================================
   MAAC Rewari — Cinematic Dark Creative Design System
   ============================================================ */

:root {
  --bg: #06060a;
  --bg-2: #0b0b12;
  --surface: #0e0e16;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f4f7;
  --muted: rgba(255, 255, 255, 0.62);
  --gold: #f5a800;
  --gold-soft: #ffc42d;
  --amber: #ffb800;
  --red: #e21e2d;
  --orange: #ff7a1a;
  --violet: #7c4dff;
  --grad-gold: linear-gradient(120deg, #ffd24a 0%, #ff9f0e 55%, #ff7a1a 100%);
  --grad-red: linear-gradient(120deg, #ff4b55 0%, #c81e33 100%);
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Manrope", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--amber);
  color: #0b0b12;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #08080d;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #3a3a46, #23232c);
  border-radius: 8px;
  border: 2px solid #08080d;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--amber), var(--orange));
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Type helpers ---------- */
.font-display { font-family: var(--font-display); }
.font-700 { font-weight: 700; }

.text-grad-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section {
  padding: clamp(4.5rem, 9vw, 8.5rem) 0;
  position: relative;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
}
.section-eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber));
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-top: 1.1rem;
}

.section-sub {
  color: var(--muted);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
  will-change: transform;
  white-space: nowrap;
}

.btn .btn-icon {
  transition: transform 0.35s var(--ease);
}
.btn:hover .btn-icon {
  transform: translateX(4px);
}
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--gold-soft), var(--orange));
  color: #160d00;
  box-shadow: 0 10px 30px -10px rgba(255, 154, 20, 0.55);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.btn-primary:hover::after {
  transform: translateX(120%);
}
.btn-primary:hover {
  box-shadow: 0 16px 40px -12px rgba(255, 154, 20, 0.7);
}

.btn-outline {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  box-shadow: 0 0 0 1px rgba(255, 184, 0, 0.2), 0 12px 30px -12px rgba(255, 184, 0, 0.35);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid transparent;
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(120deg, #8a5a00, #5c2e0a);
  border: 1px solid rgba(255, 196, 45, 0.45);
  color: var(--gold-soft);
  box-shadow: 0 10px 34px -12px rgba(255, 196, 45, 0.4);
}
.btn-gold:hover {
  box-shadow: 0 16px 44px -12px rgba(255, 196, 45, 0.55);
}

.btn-lg {
  padding: 1.05rem 2.1rem;
  font-size: 1rem;
}
.btn-nav {
  padding: 0.62rem 1.35rem;
  font-size: 0.84rem;
}

/* ---------- Gradient border ---------- */
.g-border {
  position: relative;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, rgba(255, 184, 0, 0.22), rgba(226, 30, 45, 0.16) 50%, rgba(124, 77, 255, 0.2)) border-box;
  border-radius: 1.1rem;
}

/* ---------- Background effects ---------- */
.bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.16;
  will-change: transform;
  animation: blobFloat 18s ease-in-out infinite alternate;
}
.blob-1 { width: 42vw; height: 42vw; top: -12vw; right: -10vw; background: radial-gradient(circle, #ff7a1a, transparent 70%); }
.blob-2 { width: 34vw; height: 34vw; bottom: -12vw; left: -8vw; background: radial-gradient(circle, #7c4dff, transparent 70%); animation-delay: -6s; }
.blob-3 { width: 40vw; height: 40vw; top: 5vw; left: -14vw; background: radial-gradient(circle, #ffb800, transparent 70%); }
.blob-4 { width: 38vw; height: 38vw; bottom: -10vw; right: -12vw; background: radial-gradient(circle, #e21e2d, transparent 70%); animation-delay: -9s; }
.blob-5 { width: 36vw; height: 36vw; top: -8vw; right: -10vw; background: radial-gradient(circle, #ff7a1a, transparent 70%); }
.blob-6 { width: 42vw; height: 42vw; bottom: -14vw; left: -14vw; background: radial-gradient(circle, #7c4dff, transparent 70%); animation-delay: -4s; }
.blob-7 { width: 38vw; height: 38vw; top: -6vw; right: -12vw; background: radial-gradient(circle, #ffb800, transparent 70%); }
.blob-8 { width: 44vw; height: 44vw; bottom: -16vw; right: -8vw; background: radial-gradient(circle, #e21e2d, transparent 70%); animation-delay: -7s; }
.blob-9 { width: 40vw; height: 40vw; top: 4vw; left: -16vw; background: radial-gradient(circle, #7c4dff, transparent 70%); }
.blob-10 { width: 44vw; height: 44vw; bottom: -12vw; left: -10vw; background: radial-gradient(circle, #ff7a1a, transparent 70%); animation-delay: -11s; }

@keyframes blobFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(6vw, 4vw) scale(1.15); }
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
}
.grid-lines-alt {
  mask-image: radial-gradient(ellipse 70% 80% at 60% 30%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 60% 30%, black 10%, transparent 70%);
}

.footer-noise {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 80;
  background: linear-gradient(90deg, var(--gold-soft), var(--orange), var(--red));
  box-shadow: 0 0 12px rgba(255, 154, 20, 0.7);
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(255, 184, 0, 0.08), transparent 60%),
    var(--bg);
  transition: opacity 0.55s var(--ease), visibility 0.55s;
}
.preloader.is-done {
  opacity: 0;
  visibility: hidden;
}
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.preloader-logo {
  width: 110px;
  height: auto;
  animation: preLogoIn 0.9s var(--ease) both;
  filter: drop-shadow(0 10px 30px rgba(255, 184, 0, 0.3));
}
.preloader-ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--amber);
  animation: spin 0.9s linear infinite;
}
.preloader-bar {
  width: 180px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.preloader-bar-fill {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-soft), var(--orange));
  animation: preBar 1.2s var(--ease) infinite;
}
.preloader-text {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

@keyframes preLogoIn {
  from { opacity: 0; transform: translateY(14px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes preBar {
  0% { transform: translateX(-110%); }
  50% { transform: translateX(110%); }
  100% { transform: translateX(210%); }
}

/* ---------- Navbar ---------- */
.site-header {
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease), backdrop-filter 0.45s;
}
.site-nav {
  height: 84px;
  display: flex;
  align-items: center;
  transition: height 0.45s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(8, 8, 14, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line), 0 20px 50px -30px rgba(0, 0, 0, 0.8);
}
.site-header.is-scrolled .site-nav {
  height: 66px;
}
.nav-inner {
  width: 100%;
}
.nav-logo {
  height: 46px;
  width: auto;
}
.site-header.is-scrolled .nav-logo {
  height: 40px;
}
.nav-links .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.3s;
}
.nav-links .nav-link span {
  position: relative;
  z-index: 1;
}
.nav-links .nav-link::before {
  content: "";
  position: absolute;
  inset: 0.4rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid rgba(255, 184, 0, 0.18);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s, transform 0.3s var(--ease);
}
.nav-links .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  width: 14px;
  height: 2px;
  transform: translateX(-50%) scaleX(0);
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-soft), var(--orange));
  transition: transform 0.35s var(--ease);
}
.nav-links .nav-link:hover,
.nav-links .nav-link.is-active {
  color: #fff;
}
.nav-links .nav-link.is-active::before,
.nav-links .nav-link:hover::before {
  opacity: 1;
  transform: scale(1);
}
.nav-links .nav-link.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Menu toggle */
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  align-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s;
}
.menu-toggle:hover {
  border-color: rgba(255, 184, 0, 0.4);
}
.menu-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.4s var(--ease), opacity 0.3s, width 0.3s;
}
.menu-toggle.is-open .menu-toggle-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.is-open .menu-toggle-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}
.menu-toggle.is-open .menu-toggle-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: -1;
  visibility: hidden;
}
.mobile-menu.is-open {
  visibility: visible;
  z-index: 90;
}
.mobile-menu-bg {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 9, 0.55);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.mobile-menu.is-open .mobile-menu-bg {
  opacity: 1;
}
.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  width: min(420px, 100%);
  background:
    radial-gradient(600px 400px at 100% 0%, rgba(255, 184, 0, 0.08), transparent 60%),
    rgba(10, 10, 17, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.55s var(--ease);
  overflow-y: auto;
}
.mobile-menu.is-open .mobile-menu-panel {
  transform: translateX(0);
}
.mobile-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}
.mobile-menu.is-open .mobile-link {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(0.08s * var(--i) + 0.15s);
}
.mobile-link:hover {
  color: var(--amber);
}
.mobile-link-index {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
}
.mobile-link-arrow {
  margin-left: auto;
  color: var(--amber);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s var(--ease);
}
.mobile-link:hover .mobile-link-arrow {
  opacity: 1;
  transform: translateX(0);
}
body.menu-open {
  overflow: hidden;
}

body.menu-open .float-actions,
body.menu-open .back-to-top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-beam {
  position: absolute;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  animation: beamDrift 14s ease-in-out infinite alternate;
}
.hero-beam.beam-1 {
  top: -20vw;
  right: -15vw;
  background: radial-gradient(circle, #ffb800, transparent 65%);
}
.hero-beam.beam-2 {
  bottom: -25vw;
  left: -18vw;
  background: radial-gradient(circle, #e21e2d, transparent 65%);
  animation-delay: -7s;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 60% at 30% 100%, rgba(255, 122, 26, 0.1), transparent 60%);
}
@keyframes beamDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-4vw, 4vw) scale(1.2); }
}

.hero-swiper {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero-slide {
  overflow: hidden;
}
.hero-slide-media {
  position: absolute;
  inset: -4%;
}
.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 1.4s var(--ease), transform 1.4s var(--ease);
}
.hero-slide.swiper-slide-active .hero-slide-img {
  opacity: 1;
  transform: scale(1);
  animation: kenburns 9s linear forwards;
}
@keyframes kenburns {
  0% { transform: scale(1.08) translate(0, 0); }
  100% { transform: scale(1.2) translate(-2%, -2%); }
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(4, 4, 8, 0.92) 0%, rgba(4, 4, 8, 0.78) 38%, rgba(4, 4, 8, 0.35) 72%, rgba(4, 4, 8, 0.15) 100%);
}
.hero-slide-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 90% at 50% 0%, transparent 40%, rgba(3, 3, 6, 0.55) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 40%);
}
.hero-content-wrap {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 6rem;
  padding-bottom: 7rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.5rem;
  opacity: 0;
}
.hero-eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 6.5vw, 4.7rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 1.4rem;
  opacity: 0;
  max-width: 16ch;
}
.hero-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  line-height: 1.75;
  color: var(--muted);
  max-width: 52ch;
  opacity: 0;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
  opacity: 0;
}

.hero-slide.swiper-slide-active .hero-eyebrow,
.hero-slide.swiper-slide-active .hero-title,
.hero-slide.swiper-slide-active .hero-desc,
.hero-slide.swiper-slide-active .hero-cta {
  opacity: 1;
  animation: heroReveal 0.9s var(--ease) both;
}
.hero-slide.swiper-slide-active .hero-eyebrow { animation-delay: 0.2s; }
.hero-slide.swiper-slide-active .hero-title { animation-delay: 0.35s; }
.hero-slide.swiper-slide-active .hero-desc { animation-delay: 0.55s; }
.hero-slide.swiper-slide-active .hero-cta { animation-delay: 0.72s; }
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(34px); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero-slide-meta {
  position: absolute;
  right: 2.2rem;
  bottom: 3rem;
  z-index: 3;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  color: rgba(255, 255, 255, 0.7);
}
.hero-slide-index {
  font-size: 1.3rem;
  color: var(--gold-soft);
}
.hero-slide-track {
  width: 90px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.hero-slide-track::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold-soft), var(--orange));
  transform-origin: left;
}
.hero-slide.swiper-slide-active .hero-slide-track::after {
  animation: slideTrack 7s linear forwards;
}
@keyframes slideTrack {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.hero-slide-total {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 54px;
  height: 54px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(8, 8, 14, 0.5);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1rem;
  transition: all 0.35s var(--ease);
  cursor: pointer;
}
@media (min-width: 768px) {
  .hero-nav { display: flex; }
}
.hero-nav:hover {
  border-color: var(--amber);
  color: var(--amber);
  box-shadow: 0 0 24px -6px rgba(255, 184, 0, 0.5);
}
.hero-nav-prev { left: 1.4rem; }
.hero-nav-next { right: 1.4rem; }

.hero-pagination-wrap {
  position: absolute;
  bottom: 3.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
}
.hero-pagination {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}
.hero-pagination .swiper-pagination-bullet {
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: all 0.4s var(--ease);
}
.hero-pagination .swiper-pagination-bullet-active {
  width: 52px;
  background: linear-gradient(90deg, var(--gold-soft), var(--orange));
  box-shadow: 0 0 12px rgba(255, 184, 0, 0.6);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 3.4rem;
  left: 2.4rem;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}
.hero-scroll-cue:hover { color: var(--amber); }
.hero-scroll-cue-line {
  animation: cueBob 2s ease-in-out infinite;
}
@keyframes cueBob {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(7px); opacity: 0.4; }
}
@media (max-width: 767px) {
  .hero-scroll-cue { display: none; }
}

@media (max-height: 640px) and (max-width: 1023px) {
  .hero-content {
    padding-top: 5.5rem;
    padding-bottom: 4.5rem;
  }
}

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative;
  min-height: 58vh;
  min-height: 58svh;
  display: flex;
  align-items: flex-end;
  padding: 8.5rem 0 4.5rem;
  background: var(--bg);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}
.page-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(4, 4, 8, 0.94) 0%, rgba(4, 4, 8, 0.8) 45%, rgba(4, 4, 8, 0.45) 100%);
}
.page-hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 55%);
}
.page-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 760px;
}
.page-hero-title {
  margin-top: 1.2rem;
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.page-hero-desc {
  margin-top: 1.2rem;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  color: var(--muted);
}
.page-hero-crumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(8, 8, 14, 0.5);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.page-hero-crumbs a {
  color: var(--amber);
  transition: color 0.3s;
}
.page-hero-crumbs a:hover {
  color: #fff;
}
.page-hero-crumbs i {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ---------- Feature strip ---------- */
.feature-strip {
  margin-top: -2.5rem;
}
.feature-strip-inner {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 1.4rem;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(16, 16, 26, 0.92), rgba(10, 10, 17, 0.92));
  backdrop-filter: blur(16px);
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.9);
}
@media (min-width: 900px) {
  .feature-strip-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.6rem 1.8rem;
  border-bottom: 1px solid var(--line);
}
.feature-item:last-child { border-bottom: none; }
@media (min-width: 900px) {
  .feature-item { border-bottom: none; border-right: 1px solid var(--line); }
  .feature-item:last-child { border-right: none; }
}
.feature-icon {
  flex: none;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.05rem;
  color: var(--gold-soft);
  border: 1px solid rgba(255, 184, 0, 0.25);
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.12), rgba(255, 122, 26, 0.05));
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.feature-item:hover .feature-icon {
  transform: translateY(-4px) rotate(-6deg);
  box-shadow: 0 10px 24px -8px rgba(255, 184, 0, 0.5);
}
.feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
}
.feature-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 0.3rem;
}

/* ---------- About ---------- */
.about .about-grid { position: relative; z-index: 2; }
.about-points li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}
.about-points i {
  color: var(--gold-soft);
}
.about-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
  margin-top: 2.4rem;
}
.about-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.about-link:hover { color: var(--amber); }

.about-visual {
  position: relative;
}
.about-visual-stack {
  position: relative;
  padding: 2.5rem;
}
.av-screen {
  position: relative;
  aspect-ratio: 4 / 3.1;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(255, 184, 0, 0.06);
  transform: rotate(-2deg) scale(0.98);
  transition: transform 0.7s var(--ease);
}
.about-visual-stack:hover .av-screen {
  transform: rotate(0deg) scale(1);
}
.av-screen-img img {
  filter: saturate(1.1) hue-rotate(-8deg);
}
.av-screen-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 10, 18, 0.15), rgba(5, 5, 10, 0.72));
  mix-blend-mode: multiply;
}
.av-screen-hud {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
}
.hud-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px rgba(255, 46, 61, 0.8);
  animation: hudBlink 1.6s steps(2) infinite;
}
@keyframes hudBlink { 50% { opacity: 0.35; } }
.hud-title { margin-right: auto; }
.hud-time { color: rgba(255, 255, 255, 0.55); }
.av-timeline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.14);
}
.av-timeline-progress {
  display: block;
  height: 100%;
  width: 46%;
  background: linear-gradient(90deg, var(--gold-soft), var(--red));
  box-shadow: 0 0 14px rgba(255, 122, 26, 0.7);
  animation: timelineScan 5s var(--ease) infinite alternate;
}
@keyframes timelineScan {
  from { width: 14%; }
  to { width: 82%; }
}

.av-lens {
  position: absolute;
  top: -1.4rem;
  right: -0.6rem;
  width: 132px;
  z-index: 3;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}
.av-lens-svg {
  width: 100%;
  height: auto;
  display: block;
}
.lens-ring-1 {
  fill: none;
  stroke: rgba(255, 196, 45, 0.85);
  stroke-width: 3;
}
.lens-ring-2 {
  fill: rgba(14, 14, 22, 0.9);
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 2;
}
.lens-blades {
  fill: none;
  stroke: var(--gold-soft);
  stroke-width: 1.6;
  transform-origin: 50px 50px;
  animation: lensSpin 16s linear infinite;
}
@keyframes lensSpin { to { transform: rotate(360deg); } }
.lens-core {
  fill: var(--red);
  opacity: 0.9;
}

.av-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid var(--line-strong);
  background: rgba(12, 12, 20, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.8);
  animation: chipFloat 6s ease-in-out infinite;
}
.av-chip i { color: var(--gold-soft); }
.chip-1 { top: 8%; left: -1rem; animation-delay: -1s; }
.chip-2 { top: 38%; right: -1.4rem; animation-delay: -3s; }
.chip-3 { bottom: 26%; left: -1.6rem; animation-delay: -4.5s; }
.chip-4 { bottom: 6%; right: 0.6rem; animation-delay: -2s; }
.chip-5 { top: -0.8rem; left: 22%; animation-delay: -5.5s; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.av-particles i {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-soft);
  opacity: 0.5;
  animation: avPart 5s ease-in-out infinite;
}
.av-p.p1 { top: 12%; left: 12%; }
.av-p.p2 { top: 22%; right: 16%; background: var(--red); animation-delay: -1.4s; }
.av-p.p3 { bottom: 20%; left: 18%; background: var(--orange); animation-delay: -2.6s; }
.av-p.p4 { bottom: 12%; right: 24%; animation-delay: -3.4s; }
.av-p.p5 { top: 46%; left: 4%; background: #fff; animation-delay: -4.2s; }
@keyframes avPart {
  0%, 100% { transform: translate(0, 0); opacity: 0.2; }
  50% { transform: translate(6px, -14px); opacity: 0.8; }
}

.av-frame-corners span {
  position: absolute;
  width: 26px;
  height: 26px;
  border-color: rgba(255, 196, 45, 0.6);
  border-style: solid;
}
.fc-tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.fc-tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.fc-bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.fc-br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

@media (max-width: 1023px) {
  .about-visual-stack { padding: 1.6rem; }
  .av-lens { width: 104px; top: -1rem; right: 0; }
  .chip-1 { left: 0; }
  .chip-2 { right: 0; }
  .chip-3 { left: 0; }
}

/* ---------- Why choose ---------- */
.why-grid {
  position: relative;
  z-index: 2;
}
.why-card {
  padding: 2rem 1.8rem;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s, background 0.5s;
  background: linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, rgba(255, 184, 0, 0.22), rgba(226, 30, 45, 0.16) 50%, rgba(124, 77, 255, 0.2)) border-box;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 184, 0, 0.15), 0 0 50px -20px rgba(255, 184, 0, 0.35);
}
.why-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}
.why-num {
  font-size: 2.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
  transition: -webkit-text-stroke-color 0.4s, color 0.4s;
}
.why-card:hover .why-num {
  color: rgba(255, 196, 45, 0.25);
  -webkit-text-stroke-color: rgba(255, 196, 45, 0.5);
}
.why-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.25rem;
  color: var(--gold-soft);
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.14), rgba(255, 122, 26, 0.06));
  border: 1px solid rgba(255, 184, 0, 0.22);
  transition: transform 0.5s var(--ease), color 0.4s, box-shadow 0.4s;
}
.why-card:hover .why-icon {
  transform: rotate(-8deg) scale(1.08);
  color: #160d00;
  background: linear-gradient(135deg, var(--gold-soft), var(--orange));
  box-shadow: 0 14px 34px -10px rgba(255, 154, 20, 0.6);
}
.why-corner {
  position: absolute;
  bottom: -2.6rem;
  right: -2.6rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: 1px dashed rgba(255, 184, 0, 0.16);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.5s, transform 0.6s var(--ease);
  pointer-events: none;
}
.why-card:hover .why-corner {
  opacity: 1;
  transform: scale(1);
}

/* ---------- Courses ---------- */
.course-filters-scroll,
.gallery-filters-scroll {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.course-filter-btn,
.gallery-filter-btn {
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.course-filter-btn:hover,
.gallery-filter-btn:hover {
  border-color: rgba(255, 184, 0, 0.4);
  color: var(--amber);
}
.course-filter-btn.is-active,
.gallery-filter-btn.is-active {
  background: linear-gradient(120deg, var(--gold-soft), var(--orange));
  color: #160d00;
  border-color: transparent;
  box-shadow: 0 10px 28px -10px rgba(255, 154, 20, 0.6);
}
@media (max-width: 767px) {
  .course-filters-scroll,
  .gallery-filters-scroll {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.6rem;
    scrollbar-width: none;
  }
  .course-filters-scroll::-webkit-scrollbar,
  .gallery-filters-scroll::-webkit-scrollbar { display: none; }
}

.courses-track {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.6rem;
}
@media (min-width: 640px) {
  .courses-track { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .courses-track { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 639px) {
  .courses-track {
    display: flex;
    gap: 1.1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.4rem 0.25rem 1.4rem;
    scrollbar-width: thin;
  }
  .course-card {
    flex: 0 0 84%;
    scroll-snap-align: start;
  }
}

.course-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
  background: linear-gradient(#0d0d15, #0d0d15) padding-box,
    linear-gradient(135deg, rgba(255, 184, 0, 0.28), rgba(226, 30, 45, 0.18) 50%, rgba(124, 77, 255, 0.25)) border-box;
}
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 70px -34px rgba(0, 0, 0, 0.85), 0 0 60px -24px rgba(255, 184, 0, 0.4);
}
.course-visual {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.course-visual-img {
  position: absolute;
  inset: 0;
}
.course-visual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s;
}
.course-card:hover .course-visual-img img {
  transform: scale(1.12);
}
.course-visual-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 6, 10, 0.25), rgba(6, 6, 10, 0.85) 90%);
}
.tint-gold img { filter: sepia(0.5) saturate(1.5) hue-rotate(-10deg) contrast(1.05); }
.tint-red img { filter: saturate(1.5) hue-rotate(-22deg) contrast(1.06); }
.tint-violet img { filter: saturate(1.4) hue-rotate(22deg) contrast(1.06); }
.tint-orange img { filter: saturate(1.5) hue-rotate(-8deg) contrast(1.05); }
.tint-cyan img { filter: saturate(1.4) hue-rotate(-120deg) contrast(1.05); }
.tint-green img { filter: saturate(1.4) hue-rotate(70deg) contrast(1.05); }

.course-float-icon {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.05rem;
  color: var(--gold-soft);
  background: rgba(8, 8, 14, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 184, 0, 0.25);
  transition: transform 0.5s var(--ease), background 0.4s, color 0.4s;
}
.course-card:hover .course-float-icon {
  transform: translateY(-4px) rotate(-8deg);
  background: linear-gradient(120deg, var(--gold-soft), var(--orange));
  color: #160d00;
}
.course-cat {
  position: absolute;
  right: 1.1rem;
  top: 1.1rem;
  z-index: 2;
  padding: 0.34rem 0.85rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  background: rgba(8, 8, 14, 0.62);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 184, 0, 0.3);
}
.course-body {
  position: relative;
  padding: 1.5rem 1.5rem 1.6rem;
}
.course-title {
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.course-desc {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--muted);
}
.course-link {
  margin-top: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-soft);
  transition: gap 0.3s var(--ease), color 0.3s;
}
.course-link:hover {
  gap: 0.9rem;
  color: #fff;
}
.course-index {
  position: absolute;
  right: 1.2rem;
  bottom: 1rem;
  font-size: 2rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  pointer-events: none;
  transition: opacity 0.4s;
}
.course-card:hover .course-index {
  -webkit-text-stroke-color: rgba(255, 184, 0, 0.35);
}
.course-card.is-hiding {
  opacity: 0;
  transform: scale(0.88);
  filter: blur(6px);
}
.course-card.is-filtered {
  display: none;
}
@media (max-width: 639px) {
  .course-card.is-hiding { opacity: 0; transform: scale(0.9); }
}

/* ---------- Marquee ---------- */
.marquee {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(600px 200px at 50% 50%, rgba(255, 184, 0, 0.05), transparent 70%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  transition: color 0.3s;
}
.marquee-item:hover {
  color: var(--amber);
}
.marquee-item i {
  color: var(--amber);
  font-size: 1.1rem;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Careers ---------- */
.careers-points li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}
.careers-points i {
  color: var(--orange);
}
.careers-board {
  border-radius: 1.4rem;
  padding: 1.6rem 1.8rem;
  overflow: hidden;
  background: linear-gradient(#0d0d15, #0d0d15) padding-box,
    linear-gradient(135deg, rgba(255, 122, 26, 0.3), rgba(226, 30, 45, 0.18) 50%, rgba(255, 196, 45, 0.2)) border-box;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.8);
}
.careers-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
}
.careers-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ee06e;
  box-shadow: 0 0 0 0 rgba(46, 224, 110, 0.7);
  animation: livePulse 1.8s infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 224, 110, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(46, 224, 110, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 224, 110, 0); }
}
.careers-board-body {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.career-node {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.4s var(--ease);
  opacity: 0;
  transform: translateY(10px);
}
.career-node.is-in {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--d);
}
.career-node:hover {
  border-color: rgba(255, 184, 0, 0.45);
  background: linear-gradient(120deg, rgba(255, 184, 0, 0.12), rgba(255, 122, 26, 0.06));
  transform: translateY(-3px);
}
.career-node-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--gold-soft), var(--orange));
  box-shadow: 0 0 10px rgba(255, 184, 0, 0.6);
}
.career-node-label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
}
.career-node-plus {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s, transform 0.4s var(--ease);
}
.career-node:hover .career-node-plus {
  color: var(--amber);
  transform: rotate(90deg);
}

/* ---------- Journey timeline ---------- */
.journey-timeline {
  position: relative;
  z-index: 2;
}
.journey-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  padding-left: 1.6rem;
}
.journey-progress {
  position: absolute;
  left: 0.55rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: visible;
}
.journey-progress::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--gold-soft), var(--orange), var(--red));
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.2s linear;
}
.journey-progress-glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-soft);
  transform: translateX(-50%);
  box-shadow: 0 0 18px 4px rgba(255, 184, 0, 0.55);
  transition: top 0.2s linear;
}
.journey-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.journey-node {
  position: absolute;
  left: -1.6rem;
  top: 0.2rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey-node-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 184, 0, 0.4);
  background: #0d0d15;
}
.journey-node-num {
  position: relative;
  font-size: 0.66rem;
  color: var(--gold-soft);
}
.journey-step.is-done .journey-node-ring {
  background: linear-gradient(120deg, var(--gold-soft), var(--orange));
  border-color: transparent;
  box-shadow: 0 0 16px rgba(255, 184, 0, 0.5);
}
.journey-step.is-done .journey-node-num { color: #160d00; }
.journey-card {
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 0.4s, background 0.4s, transform 0.5s var(--ease);
}
.journey-step.is-done .journey-card {
  border-color: rgba(255, 184, 0, 0.25);
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.05), transparent);
}
.journey-card:hover {
  transform: translateX(6px);
}

@media (min-width: 1024px) {
  .journey-track {
    flex-direction: row;
    justify-content: space-between;
    gap: 1.4rem;
    padding-left: 0;
    padding-top: 3rem;
  }
  .journey-progress {
    left: 0;
    right: 0;
    top: 0.55rem;
    bottom: auto;
    width: auto;
    height: 3px;
  }
  .journey-progress::after {
    transform: scaleX(0);
    transform-origin: left;
    width: 100%;
  }
  .journey-progress-glow {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: left 0.2s linear;
  }
  .journey-step {
    flex: 1;
    gap: 1.4rem;
    align-items: flex-start;
  }
  .journey-node {
    position: relative;
    left: 0;
    top: -2.6rem;
    width: 36px;
    height: 36px;
  }
  .journey-card:hover { transform: translateY(-6px); }
}

/* ---------- 24FPS ---------- */
.fps {
  background:
    radial-gradient(ellipse 90% 55% at 50% 110%, rgba(255, 184, 0, 0.12), transparent 60%),
    linear-gradient(180deg, #08080e 0%, #0c0a06 100%);
}
.fps-spotlight {
  position: absolute;
  top: -6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 55vw;
  height: 16rem;
  background: radial-gradient(ellipse 50% 100% at 50% 0%, rgba(255, 196, 45, 0.2), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.fps-rays {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.35;
}
.fps-ray {
  position: absolute;
  bottom: -10%;
  left: 50%;
  width: 2px;
  background: linear-gradient(to top, transparent, rgba(255, 196, 45, 0.5), transparent);
  transform-origin: bottom;
  animation: rayFlicker 4s ease-in-out infinite alternate;
}
.r1 { height: 40%; margin-left: -24%; animation-delay: -1s; }
.r2 { height: 55%; margin-left: -12%; animation-delay: -2s; }
.r3 { height: 68%; margin-left: 0%; animation-delay: -0.4s; }
.r4 { height: 52%; margin-left: 12%; animation-delay: -2.8s; }
.r5 { height: 38%; margin-left: 24%; animation-delay: -1.6s; }
@keyframes rayFlicker {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 1; }
}
.fps-particles i {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-soft);
  animation: fpsP 6s ease-in-out infinite;
  opacity: 0;
}
.fps-p.p1 { top: 18%; left: 12%; animation-delay: -1s; }
.fps-p.p2 { top: 26%; right: 16%; background: var(--red); animation-delay: -3s; }
.fps-p.p3 { bottom: 24%; left: 22%; animation-delay: -4s; }
.fps-p.p4 { bottom: 30%; right: 24%; background: var(--orange); animation-delay: -2s; }
.fps-p.p5 { top: 50%; left: 6%; animation-delay: -5s; }
.fps-p.p6 { top: 14%; left: 46%; background: #fff; animation-delay: -3.5s; }
.fps-p.p7 { top: 60%; right: 8%; animation-delay: -1.8s; }
@keyframes fpsP {
  0% { transform: translateY(20px); opacity: 0; }
  30% { opacity: 0.9; }
  100% { transform: translateY(-80px); opacity: 0; }
}

.fps-film-strip {
  position: absolute;
  left: 0;
  right: 0;
  height: 26px;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    radial-gradient(circle 6px at 14px center, #000 6px, transparent 7px),
    radial-gradient(circle 6px at 14px center, #000 6px, transparent 7px);
  background-size: 28px 26px, 28px 26px;
  background-position: 0 0, 14px 0;
  animation: filmShift 22s linear infinite;
}
.fps-film-top { top: 0; }
.fps-film-bottom { bottom: 0; animation-direction: reverse; }
@keyframes filmShift { from { background-position: 0 0, 14px 0; } to { background-position: -56px 0, -42px 0; } }

.fps-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 196, 45, 0.3);
  background: rgba(255, 196, 45, 0.06);
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.fps-title {
  margin-top: 1.4rem;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 60px rgba(255, 184, 0, 0.35);
}
.fps-24 {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fps-fps {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.85);
}
.fps-stats { position: relative; z-index: 3; }
.fps-stat {
  text-align: center;
  padding: 2.2rem 1.4rem;
  background: linear-gradient(rgba(14, 12, 8, 0.8), rgba(10, 10, 16, 0.8)) padding-box,
    linear-gradient(135deg, rgba(255, 196, 45, 0.35), rgba(226, 30, 45, 0.2) 50%, rgba(255, 122, 26, 0.25)) border-box;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.fps-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(255, 184, 0, 0.35);
}
.fps-stat-value {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fps-stat-label {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.fps-categories { position: relative; z-index: 3; }
.fps-cat {
  padding: 2rem 1.8rem;
  overflow: hidden;
  background: linear-gradient(#0d0b08, #0d0b08) padding-box,
    linear-gradient(135deg, rgba(255, 196, 45, 0.3), rgba(226, 30, 45, 0.18) 50%, rgba(124, 77, 255, 0.18)) border-box;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.fps-cat:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -28px rgba(255, 184, 0, 0.35);
}
.fps-cat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.fps-cat-num {
  font-size: 3rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 196, 45, 0.5);
}
.fps-cat-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.3rem;
  color: var(--gold-soft);
  border: 1px solid rgba(255, 196, 45, 0.3);
  background: linear-gradient(135deg, rgba(255, 196, 45, 0.14), transparent);
  transition: transform 0.5s var(--ease);
}
.fps-cat:hover .fps-cat-icon {
  transform: rotate(-8deg) scale(1.1);
}
.fps-cat-shine {
  position: absolute;
  top: -50%;
  left: -30%;
  width: 30%;
  height: 200%;
  transform: rotate(25deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  transition: left 0.7s var(--ease);
  pointer-events: none;
}
.fps-cat:hover .fps-cat-shine {
  left: 130%;
}

/* ---------- Stats ---------- */
.stat-card {
  text-align: center;
  padding: 2.4rem 1.2rem;
  background: linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, rgba(255, 184, 0, 0.22), rgba(226, 30, 45, 0.16) 50%, rgba(124, 77, 255, 0.2)) border-box;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
}
.stat-value {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.stat-bar {
  display: block;
  width: 60px;
  height: 2px;
  margin: 1.1rem auto 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.stat-bar-fill {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-soft), var(--orange));
  transition: transform 1.6s var(--ease);
}
.stat-card.is-in .stat-bar-fill {
  transform: scaleX(1);
}

/* ---------- Aptech ---------- */
.aptech-shell {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(255, 184, 0, 0.08), transparent 60%),
    linear-gradient(#0d0d15, #0d0d15) padding-box,
    linear-gradient(135deg, rgba(255, 184, 0, 0.25), rgba(226, 30, 45, 0.14) 50%, rgba(124, 77, 255, 0.2)) border-box;
}
.aptech-badge {
  border-radius: 999px;
}
.aptech-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.aptech-ring {
  width: min(300px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 12px;
  background: conic-gradient(from 0deg, var(--gold-soft), var(--orange), var(--red), var(--violet), var(--gold-soft));
  animation: ringSpin 14s linear infinite;
  box-shadow: 0 30px 80px -30px rgba(255, 154, 20, 0.5);
}
.aptech-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #141420, #0a0a11 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  animation: ringSpin 14s linear infinite reverse;
}
.aptech-ring-logo {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.aptech-ring-sub {
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
@keyframes ringSpin { to { transform: rotate(360deg); } }
.aptech-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.aptech-tags span {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s, color 0.3s, transform 0.4s var(--ease);
}
.aptech-tags span:hover {
  border-color: rgba(255, 184, 0, 0.45);
  color: var(--amber);
  transform: translateY(-3px);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  columns: 1;
  column-gap: 1.3rem;
}
@media (min-width: 640px) {
  .gallery-grid { columns: 2; }
}
@media (min-width: 1024px) {
  .gallery-grid { columns: 3; }
}
.gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 1.3rem;
  border-radius: 1.1rem;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  background: #0d0d15;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), filter 0.45s, border-color 0.4s;
}
.gallery-item:hover {
  border-color: rgba(255, 184, 0, 0.35);
}
.gallery-item.is-hiding {
  opacity: 0;
  transform: scale(0.9);
  filter: blur(8px);
}
.gallery-item.is-filtered {
  display: none;
}
.gallery-media-img img {
  width: 100%;
  display: block;
  transition: transform 0.8s var(--ease), filter 0.5s;
}
.gallery-item:nth-child(3n + 1) .gallery-media-img img { filter: saturate(1.2); }
.gallery-item:nth-child(3n + 2) .gallery-media-img img { filter: saturate(1.2) hue-rotate(-14deg); }
.gallery-item:nth-child(3n + 3) .gallery-media-img img { filter: saturate(1.3) hue-rotate(12deg) contrast(1.05); }
.gallery-item:hover .gallery-media-img img {
  transform: scale(1.1);
  filter: none;
}
.gallery-media {
  position: relative;
}
.gallery-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5, 5, 9, 0.9) 100%);
}
.gallery-media-css {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-css-art i {
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  animation: cssArtFloat 5s ease-in-out infinite;
}
@keyframes cssArtFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.08); }
}
.g-gold-red { background: radial-gradient(120% 120% at 20% 20%, #ffd24a 0%, #ff7a1a 40%, #e21e2d 75%, #5c0d14 100%); }
.g-violet-blue { background: radial-gradient(120% 120% at 30% 30%, #b78cff 0%, #7c4dff 45%, #3d5afe 75%, #101a5c 100%); }
.g-red-orange { background: radial-gradient(120% 120% at 25% 25%, #ff6b6b 0%, #e21e2d 45%, #a31224 75%, #3d040c 100%); }
.g-gold-amber { background: radial-gradient(120% 120% at 30% 25%, #ffedb3 0%, #ffb800 50%, #b85e00 80%, #3d1d00 100%); }
.g-green-cyan { background: radial-gradient(120% 120% at 25% 25%, #7dffb0 0%, #16c47c 45%, #0c7a5f 75%, #04241c 100%); }
.g-purple-gold { background: radial-gradient(120% 120% at 30% 25%, #d9b3ff 0%, #7c4dff 45%, #b85e00 80%, #2a103d 100%); }

.gallery-cap {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 1.3rem 1.3rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transform: translateY(8px);
  transition: transform 0.45s var(--ease);
}
.gallery-item:hover .gallery-cap {
  transform: translateY(0);
}
.gallery-cap-tag {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.gallery-cap-title {
  font-size: 1.05rem;
  font-weight: 700;
}
.gallery-cap-zoom {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(8, 8, 14, 0.6);
  color: var(--gold-soft);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.4s, transform 0.4s var(--ease);
}
.gallery-item:hover .gallery-cap-zoom {
  opacity: 1;
  transform: scale(1);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 4, 8, 0.93);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox[hidden] {
  display: none;
}
.lightbox-stage {
  width: min(920px, 92vw);
  max-height: 86vh;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #0c0c13;
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.95);
  transform: scale(0.95);
  transition: transform 0.4s var(--ease);
}
.lightbox.is-open .lightbox-stage {
  transform: scale(1);
}
.lightbox-media {
  background: #0a0a10;
}
.lightbox-media img {
  width: 100%;
  max-height: 62vh;
  object-fit: cover;
  display: block;
}
.lightbox-media-css {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-info {
  padding: 1.4rem 1.6rem;
  border-top: 1px solid var(--line);
}
.lightbox-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.lightbox-title {
  margin-top: 0.4rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(10, 10, 17, 0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: scale(1.06);
}
.lightbox-close { top: 1.2rem; right: 1.2rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.06); }
@media (max-width: 767px) {
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7);
}
.cta-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(6, 6, 10, 0.82) 30%, rgba(6, 6, 10, 0.9) 100%);
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(255, 122, 26, 0.16), transparent 65%);
}
.cta-inner {
  position: relative;
  z-index: 2;
}
.cta-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.cta-title {
  margin-top: 1rem;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cta-desc {
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- Contact ---------- */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.4rem 1.5rem;
  background: linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, rgba(255, 184, 0, 0.22), rgba(226, 30, 45, 0.16) 50%, rgba(124, 77, 255, 0.2)) border-box;
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -26px rgba(0, 0, 0, 0.8);
}
.contact-card-icon {
  flex: none;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 1.15rem;
  color: var(--gold-soft);
  border: 1px solid rgba(255, 184, 0, 0.25);
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.12), transparent);
}
.contact-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.35rem;
}
.contact-map {
  border: 1px solid var(--line);
}
.contact-map iframe {
  filter: grayscale(0.9) contrast(1.05) brightness(0.85);
  transition: filter 0.5s;
}
.contact-map:hover iframe {
  filter: grayscale(0.2);
}

.contact-form {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  background:
    radial-gradient(500px 300px at 100% 0%, rgba(255, 184, 0, 0.07), transparent 60%),
    linear-gradient(#0e0e16, #0e0e16) padding-box,
    linear-gradient(135deg, rgba(255, 184, 0, 0.3), rgba(226, 30, 45, 0.2) 50%, rgba(124, 77, 255, 0.24)) border-box;
}
.form-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.form-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 1.15rem;
  color: #160d00;
  background: linear-gradient(120deg, var(--gold-soft), var(--orange));
  box-shadow: 0 12px 30px -10px rgba(255, 154, 20, 0.6);
}
.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
}
.req { color: var(--red); }
.form-input {
  width: 100%;
  padding: 0.85rem 1.05rem;
  border-radius: 0.85rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 0.92rem;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}
.form-input:focus {
  outline: none;
  border-color: rgba(255, 184, 0, 0.55);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.12);
}
.form-input.is-error {
  border-color: var(--red);
}
.form-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.form-status {
  margin-top: 1.1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 0.8rem;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid transparent;
}
.form-status.is-success {
  color: #7dffab;
  border-color: rgba(61, 220, 123, 0.3);
  background: rgba(61, 220, 123, 0.08);
}
.form-status.is-error {
  color: #ff8a8a;
  border-color: rgba(255, 46, 61, 0.3);
  background: rgba(255, 46, 61, 0.08);
}
.form-submit-loading {
  pointer-events: none;
  opacity: 0.7;
}
.form-submit-loading .btn-icon {
  animation: spin 0.9s linear infinite;
}

/* ---------- Footer ---------- */
.site-footer {
  background:
    radial-gradient(900px 400px at 50% 120%, rgba(255, 184, 0, 0.07), transparent 60%),
    #08080d;
  border-top: 1px solid var(--line);
}
.footer-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.footer-logo {
  height: 48px;
  width: auto;
}
.footer-social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: all 0.35s var(--ease);
}
.footer-social-link:hover {
  border-color: rgba(255, 184, 0, 0.5);
  color: var(--amber);
  transform: translateY(-3px);
  box-shadow: 0 12px 26px -12px rgba(255, 184, 0, 0.5);
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.3rem;
  position: relative;
  padding-bottom: 0.8rem;
}
.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-soft), var(--orange));
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-links a,
.footer-address {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}
.footer-links a:hover {
  color: var(--amber);
  transform: translateX(4px);
}
.footer-address { cursor: default; }

/* ---------- Floating actions ---------- */
.float-actions {
  position: fixed;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.float-btn {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 10, 17, 0.75);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.8);
  transition: all 0.35s var(--ease);
}
.float-btn:hover {
  transform: translateY(-4px);
}
.float-wa {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.35);
  animation: waPulse 2.6s infinite;
}
.float-wa:hover {
  background: #25d366;
  color: #06110a;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, 0.6);
}
.float-call {
  color: var(--gold-soft);
  border-color: rgba(255, 184, 0, 0.35);
}
.float-call:hover {
  background: linear-gradient(120deg, var(--gold-soft), var(--orange));
  color: #160d00;
}
.float-enquire {
  color: var(--gold-soft);
  border-color: rgba(255, 184, 0, 0.35);
}
.float-enquire:hover {
  background: linear-gradient(120deg, var(--gold-soft), var(--orange));
  color: #160d00;
}
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.float-tip {
  position: absolute;
  left: calc(100% + 0.8rem);
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  background: rgba(10, 10, 17, 0.9);
  border: 1px solid var(--line);
  font-size: 0.74rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease), visibility 0.3s;
}
.float-btn:hover .float-tip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* ---------- Back to top ---------- */
.back-to-top {
    display: none !important;
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 70;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 184, 0, 0.3);
  background: rgba(10, 10, 17, 0.75);
  backdrop-filter: blur(10px);
  color: var(--gold-soft);
  font-size: 0.95rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all 0.4s var(--ease);
}
.back-to-top.is-visible {
  display: none !important;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: linear-gradient(120deg, var(--gold-soft), var(--orange));
  color: #160d00;
  box-shadow: 0 12px 30px -10px rgba(255, 154, 20, 0.6);
}

/* ---------- Custom cursor ---------- */
.custom-cursor,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999;
  border-radius: 50%;
  opacity: 0;
}
.custom-cursor {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 184, 0, 0.55);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s, opacity 0.3s;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-soft);
  box-shadow: 0 0 12px rgba(255, 184, 0, 0.7);
}
body.cursor-active .custom-cursor {
  opacity: 1;
}
body.cursor-active .cursor-dot {
  opacity: 1;
}
body.cursor-hover .custom-cursor {
  width: 54px;
  height: 54px;
  border-color: rgba(255, 184, 0, 0.9);
  background: rgba(255, 184, 0, 0.08);
}
@media (hover: none), (pointer: coarse) {
  .custom-cursor, .cursor-dot { display: none; }
}

/* ---------- Reveal system ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
[data-reveal="left"] {
  transform: translateX(-44px);
}
[data-reveal="right"] {
  transform: translateX(44px);
}
[data-reveal="scale"] {
  transform: scale(0.88);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .hero-slide-img {
    opacity: 1;
    transform: none;
  }
  .hero-eyebrow, .hero-title, .hero-desc, .hero-cta { opacity: 1; }
  .custom-cursor, .cursor-dot { display: none; }
}
