/* =========================================================
   GLOBAL RESET & BASE TYPOGRAPHY
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto Flex", sans-serif;
  font-weight: 300;
  color: #222;
  overflow-x: hidden;
}

h1,
h2,
h3,
.logo,
.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}
p {
  font-family: "Quicksand", sans-serif;
}

main {
  position: relative;
}

:root {
  --pink: #ff2d78;
  --pink-lt: #ff6ba8;
  --black: #0a0a0f;
  --white: #f9f7f4;
  --sky: #38bfff;
  --lime: #a8ff3e;
  --yellow: #ffd94a;
  --orange: #ff7a1a;
  --purple: #8b5cf6;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
#cursor {
  width: 12px;
  height: 12px;
  background: var(--pink);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s var(--ease),
    height 0.25s var(--ease),
    background 0.2s;
  mix-blend-mode: difference;
}
#cursor-ring {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 45, 120, 0.45);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s var(--ease),
    height 0.3s var(--ease);
}
@media (hover: none) {
  #cursor,
  #cursor-ring {
    display: none;
  }
  body {
    cursor: auto;
  }
}

/* NAVBAR */
.navbar {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.4s,
    padding 0.3s;
}
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(18px);
  padding: 0.8rem 5vw;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.nav-logo {
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo .acc {
  color: var(--pink);
}
.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.8);
    opacity: 0.4;
  }
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: rgba(249, 247, 244, 0.65);
  font-size: 0.88rem;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--pink);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  font-weight: 500 !important;
  transition:
    transform 0.2s,
    box-shadow 0.2s !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 45, 120, 0.4) !important;
}
.nav-cta::after {
  display: none !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu a {
  font-family: "Syne", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: var(--pink);
}
.menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  padding: 0 5vw 8vh;
  overflow: hidden;
  /
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 15, 0.92) 0%,
    rgba(255, 45, 120, 0.1) 60%,
    rgba(10, 10, 15, 0.6) 100%
  );
}
.hero-blob {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(255, 45, 120, 0.16) 0%,
    transparent 65%
  );
  border-radius: 50%;
  z-index: 1;
  animation: drift 9s ease-in-out infinite alternate;
}
.hero-blob2 {
  position: absolute;
  bottom: -25%;
  left: 15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(56, 191, 255, 0.1) 0%,
    transparent 65%
  );
  border-radius: 50%;
  z-index: 1;
  animation: drift 12s 2s ease-in-out infinite alternate;
}
@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(50px, 40px) scale(1.15);
  }
}

/* Hero BG - gradient fallback if no video */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #0f0015 0%, #1a0020 40%, #0a1020 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 920px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 45, 120, 0.12);
  border: 1px solid rgba(255, 45, 120, 0.3);
  color: var(--pink-lt);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease) forwards;
}
.hero-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 2s infinite;
}
.hero-headline {
  font-family: "Syne", sans-serif;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s var(--ease) forwards;
}
.hero-headline .acc {
  color: var(--pink);
}
.hero-headline .ital {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
}
.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  color: rgba(249, 247, 244, 0.6);
  max-width: 520px;
  line-height: 1.75;
  margin-top: 1.5rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s var(--ease) forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s var(--ease) forwards;
}
/* Override hero layout for split content */

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;


}

/* hero-content already defined in your CSS — no change needed */

.hero-image-wrap {
  flex: 1;
  width: auto;
  display: flex;
  justify-content: flex-end;
}

.hero-image-wrap img {
  width: 100%;

  height: 40rem;
  object-fit: cover;
  margin-bottom: 14rem;
}



.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--pink);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-family: "Syne", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: none;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(255, 45, 120, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 45, 120, 0.5);
}
.btn-primary .arrow {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.3s;
}
.btn-primary:hover .arrow {
  transform: rotate(45deg);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(249, 247, 244, 0.2);
  padding: 0.9rem 1.8rem;
  border-radius: 100px;
  transition:
    background 0.2s,
    border-color 0.2s;
  cursor: none;
}
.btn-ghost:hover {
  background: rgba(249, 247, 244, 0.06);
  border-color: rgba(249, 247, 244, 0.4);
}

/* Hero proof */
.hero-proof {
  position: absolute;
  right: 5vw;
  bottom: 10vh;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
  opacity: 0;
  animation: fadeLeft 1s 1.1s var(--ease) forwards;
}
.proof-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 0.6rem 1.2rem;
}
.proof-avatars {
  display: flex;
}
.proof-avatars .av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--black);
  background: var(--pink);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: -8px;
  overflow: hidden;
}
.proof-avatars .av:first-child {
  margin-left: 0;
}
.proof-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
}
.proof-text span {
  font-size: 0.72rem;
  color: rgba(249, 247, 244, 0.45);
}
.proof-stars-box {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.1rem 1.5rem;
  text-align: right;
}
.proof-stars-row {
  color: var(--yellow);
  font-size: 1rem;
}
.proof-score {
  font-family: "Syne", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}
.proof-label {
  font-size: 0.72rem;
  color: rgba(249, 247, 244, 0.45);
  margin-top: 0.2rem;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 3vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  animation: fadeUp 1s 1.3s forwards;
}
.scroll-hint span {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(249, 247, 244, 0.35);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--pink), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.3);
  }
}

/* MARQUEE */
.marquee-wrap {
  background: var(--pink);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
  font-family: "Syne", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.marquee-item::after {
  content: "✦";
  opacity: 0.5;
  font-size: 0.65rem;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* SECTION LABEL */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.73rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
}
.sl-sky {
  color: var(--sky);
}
.sl-sky::before {
  background: var(--sky);
}
.sl-orange {
  color: var(--orange);
}
.sl-orange::before {
  background: var(--orange);
}
.sl-lime {
  color: var(--lime);
}
.sl-lime::before {
  background: var(--lime);
}
.sl-purple {
  color: var(--purple);
}
.sl-purple::before {
  background: var(--purple);
}
.sl-pink {
  color: var(--pink);
}
.sl-pink::before {
  background: var(--pink);
}
.sl-yellow {
  color: var(--yellow);
}
.sl-yellow::before {
  background: var(--yellow);
}

/* REVEAL */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="left"] {
  transform: translateX(-50px);
}
[data-reveal="left"].revealed {
  transform: translateX(0);
}
[data-reveal="right"] {
  transform: translateX(50px);
}
[data-reveal="right"].revealed {
  transform: translateX(0);
}
[data-reveal="scale"] {
  transform: scale(0.88);
}
[data-reveal="scale"].revealed {
  transform: scale(1);
}
[data-delay="1"] {
  transition-delay: 0.1s;
}
[data-delay="2"] {
  transition-delay: 0.2s;
}
[data-delay="3"] {
  transition-delay: 0.3s;
}
[data-delay="4"] {
  transition-delay: 0.4s;
}
[data-delay="5"] {
  transition-delay: 0.5s;
}
[data-delay="6"] {
  transition-delay: 0.6s;
}

/* ═══════════════════════════════════
       HERO — ABOUT index
    ═══════════════════════════════════ */
/* ABOUT STATEMENT */
.statement-section {
  padding: 14vh 5vw;
  position: relative;
  overflow: hidden;
}
.statement-section::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 45, 120, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 7vw;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.73rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
}
.sl-sky {
  color: var(--sky);
}
.sl-sky::before {
  background: var(--sky);
}
.sl-orange {
  color: var(--orange);
}
.sl-orange::before {
  background: var(--orange);
}
.sl-lime {
  color: var(--lime);
}
.sl-lime::before {
  background: var(--lime);
}
.sl-purple {
  color: var(--purple);
}
.sl-purple::before {
  background: var(--purple);
}

.statement-left h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.statement-left h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
}
.statement-left .big-p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(249, 247, 244, 0.6);
  margin-top: 1.8rem;
  font-weight: 300;
}
.stat-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.stat-num {
  font-family: "Syne", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}
.stat-num .sfx {
  color: var(--pink);
}
.stat-desc {
  font-size: 0.8rem;
  color: rgba(249, 247, 244, 0.45);
  margin-top: 0.3rem;
}

/* Image stack */
.statement-right {
  position: relative;
}
.img-stack {
  position: relative;
  height: 560px;
}
.img-main {
  width: 78%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  position: absolute;
  right: 0;
  top: 0;
  box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.6);
  transition: transform 0.5s var(--ease);
}
.img-stack:hover .img-main {
  transform: scale(1.02);
}
.img-float {
  width: 52%;
  height: 52%;
  object-fit: cover;
  border-radius: 18px;
  position: absolute;
  left: 0;
  bottom: 5%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  border: 3px solid var(--black);
  transition: transform 0.5s var(--ease);
}
.img-stack:hover .img-float {
  transform: translate(-5px, 5px);
}
.img-badge {
  position: absolute;
  top: 12%;
  left: 4%;
  background: var(--lime);
  color: var(--black);
  padding: 0.8rem 1.2rem;
  border-radius: 14px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(168, 255, 62, 0.35);
  z-index: 5;
}
.img-badge strong {
  font-size: 1.4rem;
  display: block;
}

/* SERVICES */
.services-section {
  padding: 12vh 5vw;
}
.section-header {
  max-width: 1300px;
  margin: 0 auto 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.section-header h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-header p {
  color: rgba(249, 247, 244, 0.5);
  max-width: 380px;
  font-size: 0.92rem;
  line-height: 1.7;
}
.services-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.svc-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 2rem 1.6rem;
  min-height: 300px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition:
    transform 0.4s var(--ease),
    border-color 0.3s;
  cursor: none;
}
.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  border-radius: 22px;
  transition: opacity 0.4s;
}
.svc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.14);
}
.svc-card:hover::before {
  opacity: 1;
}
.svc-card.c1::before {
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.15), transparent);
}
.svc-card.c2::before {
  background: linear-gradient(135deg, rgba(56, 191, 255, 0.15), transparent);
}
.svc-card.c3::before {
  background: linear-gradient(135deg, rgba(168, 255, 62, 0.15), transparent);
}
.svc-card.c4::before {
  background: linear-gradient(135deg, rgba(255, 210, 74, 0.15), transparent);
}
.svc-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: auto;
}
.c1 .svc-icon {
  background: rgba(255, 45, 120, 0.15);
}
.c2 .svc-icon {
  background: rgba(56, 191, 255, 0.15);
}
.c3 .svc-icon {
  background: rgba(168, 255, 62, 0.15);
}
.c4 .svc-icon {
  background: rgba(255, 210, 74, 0.15);
}
.svc-num {
  font-family: "Syne", sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  position: absolute;
  top: 0.8rem;
  right: 1.2rem;
  opacity: 0.06;
  line-height: 1;
}
.svc-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1rem 0 0.6rem;
}
.svc-card p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(249, 247, 244, 0.52);
  font-weight: 300;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 1.2rem;
  text-decoration: none;
  transition: gap 0.25s;
}
.c1 .svc-link {
  color: var(--pink);
}
.c2 .svc-link {
  color: var(--sky);
}
.c3 .svc-link {
  color: var(--lime);
}
.c4 .svc-link {
  color: var(--yellow);
}
.svc-card:hover .svc-link {
  gap: 0.7rem;
}

/* STRIP SCROLL */
.strip-section {
  padding: 6vh 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.strip-inner {
  display: flex;
  gap: 1.4rem;
  padding: 0 5vw;
  animation: stripScroll 30s linear infinite;
  width: max-content;
}
.strip-inner:hover {
  animation-play-state: paused;
}
@keyframes stripScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.strip-card {
  width: 290px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 1.6rem;
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.strip-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.14);
}
.strip-card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
}
.strip-card h4 {
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.strip-card p {
  font-size: 0.79rem;
  color: rgba(249, 247, 244, 0.48);
  line-height: 1.6;
}

/* TEAM */
.team-section {
  padding: 12vh 5vw;
  position: relative;
  overflow: hidden;
}
.team-section::before {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(56, 191, 255, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.team-header-wrap {
  max-width: 1300px;
  margin: 0 auto 4rem;
}
.team-header-wrap h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.team-header-wrap h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}
.team-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 480px;
  cursor: none;
}
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s var(--ease),
    filter 0.4s;
  filter: grayscale(20%);
}
.team-card:hover img {
  transform: scale(1.06);
  filter: grayscale(0%);
}
.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 15, 0.95) 0%,
    rgba(10, 10, 15, 0.2) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background 0.4s;
}
.team-accent {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 0.8rem;
  transition: width 0.35s var(--ease);
}
.team-card:hover .team-accent {
  width: 70px;
}
.team-card:nth-child(1) .team-accent {
  background: var(--pink);
}
.team-card:nth-child(2) .team-accent {
  background: var(--sky);
}
.team-card:nth-child(3) .team-accent {
  background: var(--lime);
}
.team-role {
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(249, 247, 244, 0.5);
  margin-bottom: 0.3rem;
}
.team-name {
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}
.team-bio {
  font-size: 0.82rem;
  color: rgba(249, 247, 244, 0.6);
  line-height: 1.6;
  margin-top: 0.8rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.team-card:hover .team-bio {
  max-height: 80px;
}

/* TESTIMONIALS */
.testi-section {
  padding: 12vh 5vw;
  background: rgba(255, 45, 120, 0.04);
  position: relative;
  overflow: hidden;
}
.testi-grid {
  max-width: 1300px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.2rem;
}
.testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s;
  cursor: none;
}
.testi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 45, 120, 0.22);
}
.testi-card.featured {
  background: linear-gradient(
    135deg,
    rgba(255, 45, 120, 0.12),
    rgba(255, 45, 120, 0.04)
  );
  border-color: rgba(255, 45, 120, 0.22);
}
.testi-q {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.testi-text {
  font-size: 0.93rem;
  line-height: 1.72;
  color: rgba(249, 247, 244, 0.72);
  font-style: italic;
}
.testi-card.featured .testi-text {
  font-size: 1.08rem;
  color: rgba(249, 247, 244, 0.88);
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 45, 120, 0.3);
}
.testi-name {
  font-family: "Syne", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}
.testi-sub {
  font-size: 0.73rem;
  color: rgba(249, 247, 244, 0.38);
}
.testi-stars {
  color: var(--yellow);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* CTA */
.cta-section {
  padding: 14vh 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    rgba(255, 45, 120, 0.13) 0%,
    transparent 70%
  );
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.cta-inner h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cta-inner h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--pink);
  font-weight: 400;
}
.cta-inner p {
  font-size: 1rem;
  color: rgba(249, 247, 244, 0.58);
  margin-top: 1.2rem;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* SECTION LABEL */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.73rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
}
.sl-sky {
  color: var(--sky);
}
.sl-sky::before {
  background: var(--sky);
}
.sl-orange {
  color: var(--orange);
}
.sl-orange::before {
  background: var(--orange);
}
.sl-lime {
  color: var(--lime);
}
.sl-lime::before {
  background: var(--lime);
}
.sl-purple {
  color: var(--purple);
}
.sl-purple::before {
  background: var(--purple);
}
.sl-pink {
  color: var(--pink);
}
.sl-pink::before {
  background: var(--pink);
}
.sl-yellow {
  color: var(--yellow);
}
.sl-yellow::before {
  background: var(--yellow);
}

/* REVEAL */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="left"] {
  transform: translateX(-50px);
}
[data-reveal="left"].revealed {
  transform: translateX(0);
}
[data-reveal="right"] {
  transform: translateX(50px);
}
[data-reveal="right"].revealed {
  transform: translateX(0);
}
[data-reveal="scale"] {
  transform: scale(0.88);
}
[data-reveal="scale"].revealed {
  transform: scale(1);
}
[data-delay="1"] {
  transition-delay: 0.1s;
}
[data-delay="2"] {
  transition-delay: 0.2s;
}
[data-delay="3"] {
  transition-delay: 0.3s;
}
[data-delay="4"] {
  transition-delay: 0.4s;
}
[data-delay="5"] {
  transition-delay: 0.5s;
}
[data-delay="6"] {
  transition-delay: 0.6s;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-card.featured {
    grid-column: 1/-1;
  }
}
@media (max-width: 900px) {
  .statement-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .img-stack {
    height: 360px;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .hero-proof {
    display: none;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .hero-image-wrap img {
display: none;
}

  



}
@media (max-width: 480px) {
  .stat-row {
    flex-direction: column;
    gap: 1.5rem;
  }
    .hero-inner h1{
    margin-top: 9rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════
       ABOUT
    ═══════════════════════════════════ */
.about-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5vw 8vh;
  position: relative;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #08000f 0%, #12001a 50%, #000810 100%);
}
/* Animated grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 45, 120, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 45, 120, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 20s linear infinite;
}
@keyframes gridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 80px 80px;
  }
}
.hero-glow-1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(255, 45, 120, 0.14) 0%,
    transparent 60%
  );
  border-radius: 50%;
  z-index: 2;
  animation: drift 10s ease-in-out infinite alternate;
}
.hero-glow-2 {
  position: absolute;
  bottom: -30%;
  left: 10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(56, 191, 255, 0.09) 0%,
    transparent 60%
  );
  border-radius: 50%;
  z-index: 2;
  animation: drift 14s 3s ease-in-out infinite alternate;
}
@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(40px, 30px) scale(1.1);
  }
}

.about-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}
.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 45, 120, 0.1);
  border: 1px solid rgba(255, 45, 120, 0.25);
  color: var(--pink-lt);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s var(--ease) forwards;
}
.about-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 2s infinite;
}
.about-hero h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s var(--ease) forwards;
}
.about-hero h1 .line2 {
  display: block;
  -webkit-text-stroke: 1px rgba(249, 247, 244, 0.25);
  color: transparent;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.about-hero h1 .line3 {
  display: block;
  color: var(--pink);
}
.about-hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s var(--ease) forwards;
}
.about-hero-desc {
  max-width: 480px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(249, 247, 244, 0.58);
  font-weight: 300;
}
.about-hero-tags {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.htag {
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid;
}
.htag.pink {
  color: var(--pink);
  border-color: rgba(255, 45, 120, 0.3);
  background: rgba(255, 45, 120, 0.08);
}
.htag.sky {
  color: var(--sky);
  border-color: rgba(56, 191, 255, 0.3);
  background: rgba(56, 191, 255, 0.08);
}
.htag.lime {
  color: var(--lime);
  border-color: rgba(168, 255, 62, 0.3);
  background: rgba(168, 255, 62, 0.08);
}
.htag.yellow {
  color: var(--yellow);
  border-color: rgba(255, 217, 74, 0.3);
  background: rgba(255, 217, 74, 0.08);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 3vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}
.scroll-hint span {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(249, 247, 244, 0.3);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--pink), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.3);
  }
}

/* ═══════════════════════════════════
       MARQUEE
    ═══════════════════════════════════ */
.marquee-wrap {
  background: var(--pink);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
  font-family: "Syne", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.marquee-item::after {
  content: "✦";
  opacity: 0.5;
  font-size: 0.65rem;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════
       STORY INTRO
    ═══════════════════════════════════ */
.story-intro {
  padding: 14vh 5vw;
  position: relative;
  overflow: hidden;
}
.story-intro::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 45, 120, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.story-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: start;
  max-width: 1300px;
  margin: 0 auto;
}
.story-intro-left h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.story-intro-left h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--sky);
}
.story-intro-right {
  padding-top: 1rem;
}
.story-intro-right p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(249, 247, 244, 0.62);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.story-intro-right p:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════════
       IMAGE GALLERY BENTO
    ═══════════════════════════════════ */
.gallery-section {
  padding: 0 5vw 10vh;
  position: relative;
}
.gallery-bento {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 1.2rem;
}
.g-card {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  cursor: none;
}
.g-card.tall {
  grid-row: 1/3;
}
.g-card-inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  transition: transform 0.6s var(--ease);
}
.g-card:hover .g-card-inner {
  transform: scale(1.06);
}
.g-card-1 .g-card-inner {
  background: linear-gradient(135deg, #1a0030, #3d0060);
}
.g-card-2 .g-card-inner {
  background: linear-gradient(135deg, #002040, #004080);
}
.g-card-3 .g-card-inner {
  background: linear-gradient(135deg, #001a20, #003040);
}
.g-card-4 .g-card-inner {
  background: linear-gradient(135deg, #300010, #600020);
}
.g-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 15, 0.8) 0%,
    transparent 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.g-card:hover .g-card-overlay {
  opacity: 1;
}
.g-card-label {
  font-family: "Syne", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

/* PILL STAT inside gallery */
.g-stat-pill {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  font-family: "Syne", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ═══════════════════════════════════
       FOUNDER SECTION
    ═══════════════════════════════════ */
.founder-section {
  padding: 12vh 5vw;
  position: relative;
  overflow: hidden;
}
.founder-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(56, 191, 255, 0.04), transparent);
  pointer-events: none;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

/* Left: portrait card */
.founder-portrait {
  position: relative;
}
.portrait-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #12003a, #280060, #001230);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.6);
  position: relative;
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.portrait-badge-1 {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background: var(--yellow);
  color: var(--black);
  padding: 1rem 1.3rem;
  border-radius: 18px;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1.3;
  box-shadow: 0 8px 30px rgba(255, 217, 74, 0.4);
  text-align: center;
}
.portrait-badge-1 strong {
  font-size: 1.8rem;
  display: block;
  line-height: 1;
}
.portrait-badge-2 {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--pink);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 18px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 8px 30px rgba(255, 45, 120, 0.4);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.portrait-badge-2 .badge-icon {
  font-size: 1.2rem;
}
.portrait-tag-strip {
  position: absolute;
  bottom: 3rem;
  right: -2rem;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  font-size: 0.75rem;
  line-height: 1.5;
}
.portrait-tag-strip strong {
  display: block;
  font-family: "Syne", sans-serif;
  color: var(--lime);
}

/* Right: bio text */
.founder-bio h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.8rem;
}
.founder-bio h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--pink);
}
.founder-bio p {
  font-size: 0.96rem;
  line-height: 1.85;
  color: rgba(249, 247, 244, 0.6);
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.founder-bio p:last-of-type {
  margin-bottom: 0;
}
.founder-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
}
.fh-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  transition: border-color 0.3s;
}
.fh-item:hover {
  border-color: rgba(255, 45, 120, 0.2);
}
.fh-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.35rem;
}
.fh-item:nth-child(1) .fh-dot {
  background: var(--pink);
}
.fh-item:nth-child(2) .fh-dot {
  background: var(--sky);
}
.fh-item:nth-child(3) .fh-dot {
  background: var(--lime);
}
.fh-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(249, 247, 244, 0.65);
}
.fh-text strong {
  color: var(--white);
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

/* ═══════════════════════════════════
       VALUES SECTION
    ═══════════════════════════════════ */
.values-section {
  padding: 12vh 5vw;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}
.values-section::before {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(168, 255, 62, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.values-header {
  max-width: 1300px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}
.values-header h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.values-header h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
}
.values-header p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(249, 247, 244, 0.55);
  font-weight: 300;
}
.values-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.val-card {
  border-radius: 22px;
  padding: 2.2rem 1.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    border-color 0.3s;
  cursor: none;
}
.val-card:hover {
  transform: translateY(-8px);
}
.val-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  border-radius: 22px;
  transition: opacity 0.4s;
}
.val-card:hover::before {
  opacity: 1;
}
.val-card:nth-child(1)::before {
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.12), transparent);
}
.val-card:nth-child(1):hover {
  border-color: rgba(255, 45, 120, 0.2);
}
.val-card:nth-child(2)::before {
  background: linear-gradient(135deg, rgba(56, 191, 255, 0.12), transparent);
}
.val-card:nth-child(2):hover {
  border-color: rgba(56, 191, 255, 0.2);
}
.val-card:nth-child(3)::before {
  background: linear-gradient(135deg, rgba(168, 255, 62, 0.12), transparent);
}
.val-card:nth-child(3):hover {
  border-color: rgba(168, 255, 62, 0.2);
}
.val-card:nth-child(4)::before {
  background: linear-gradient(135deg, rgba(255, 217, 74, 0.12), transparent);
}
.val-card:nth-child(4):hover {
  border-color: rgba(255, 217, 74, 0.2);
}
.val-card:nth-child(5)::before {
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.12), transparent);
}
.val-card:nth-child(5):hover {
  border-color: rgba(255, 122, 26, 0.2);
}
.val-card:nth-child(6)::before {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), transparent);
}
.val-card:nth-child(6):hover {
  border-color: rgba(139, 92, 246, 0.2);
}
.val-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
}
.val-num {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: "Syne", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  opacity: 0.05;
  line-height: 1;
}
.val-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.val-card p {
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(249, 247, 244, 0.52);
  font-weight: 300;
}

/* ═══════════════════════════════════
       TIMELINE / MILESTONES
    ═══════════════════════════════════ */
.timeline-section {
  padding: 12vh 5vw;
  position: relative;
}
.timeline-header {
  max-width: 1300px;
  margin: 0 auto 5rem;
}
.timeline-header h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.timeline-header h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}
.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  left: 50%;
  width: 2px; /* slightly thicker */
  transform: translateX(-50%);
}
.tl-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr; /* more breathing space */
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}
.tl-item:last-child {
  margin-bottom: 0;
}
.tl-left {
  padding-right: 2.5rem;
  display: flex;
  justify-content: flex-end;
}

.tl-right {
  padding-left: 2.5rem;
  display: flex;
  justify-content: flex-start;
}
.tl-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  background: var(--black);
}
.tl-dot.pink {
  border-color: var(--pink);
  box-shadow: 0 0 12px rgba(255, 45, 120, 0.5);
}
.tl-dot.sky {
  border-color: var(--sky);
  box-shadow: 0 0 12px rgba(56, 191, 255, 0.5);
}
.tl-dot.lime {
  border-color: var(--lime);
  box-shadow: 0 0 12px rgba(168, 255, 62, 0.5);
}
.tl-dot.yellow {
  border-color: var(--yellow);
  box-shadow: 0 0 12px rgba(255, 217, 74, 0.5);
}
.tl-dot.orange {
  border-color: var(--orange);
  box-shadow: 0 0 12px rgba(255, 122, 26, 0.5);
}

.tl-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.tl-card:hover {
  transform: translateY(-4px);
}

.tl-tag {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.tl-card h4 {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.tl-card p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(249, 247, 244, 0.52);
  font-weight: 300;
}

/* ═══════════════════════════════════
       PARTNERS / INSTITUTIONS
    ═══════════════════════════════════ */
.partners-section {
  padding: 10vh 5vw;
  background: rgba(255, 255, 255, 0.02);
}
.partners-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.partners-inner h3 {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(249, 247, 244, 0.35);
  text-align: center;
  margin-bottom: 3rem;
}
.partners-grid {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.partner-pill {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 0.7rem 1.4rem;
  font-family: "Syne", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s;
  cursor: none;
}
.partner-pill:hover {
  border-color: rgba(255, 45, 120, 0.25);
  background: rgba(255, 45, 120, 0.06);
  transform: translateY(-3px);
}
.partner-pill .pip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* ═══════════════════════════════════
       CTA
    ═══════════════════════════════════ */
.cta-section {
  padding: 14vh 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    rgba(255, 45, 120, 0.13) 0%,
    transparent 70%
  );
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.cta-inner h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cta-inner h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--pink);
  font-weight: 400;
}
.cta-inner p {
  font-size: 1rem;
  color: rgba(249, 247, 244, 0.55);
  margin-top: 1.2rem;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
/* RESPONSIVE */
@media (max-width: 1000px) {
  .founder-grid,
  .story-intro-grid,
  .values-header {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .gallery-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px 280px;
  }
  .g-card.tall {
    grid-row: auto;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .timeline::before {
    left: 24px;
    transform: none;
  }
  .tl-item {
    grid-template-columns: 24px 1fr;
  }
  .tl-left,
  .tl-item:nth-child(even) .tl-left {
    display: none;
  }
  .tl-center {
    align-items: flex-start;
    padding-top: 0.3rem;
  }
  .tl-right,
  .tl-item:nth-child(even) .tl-right {
    order: 1;
    padding-left: 1.5rem;
    padding-right: 0;
    text-align: left;
  }
  .tl-item:nth-child(even) .tl-card {
    margin-left: 0;
  }
  .tl-year {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .portrait-badge-1 {
    top: 1rem;
    right: 1rem;
  }
  .portrait-badge-2 {
    bottom: 1rem;
    left: 1rem;
  }
  .portrait-tag-strip {
    display: none;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .gallery-bento {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 260px);
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .about-hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* SERVICES */
.services-section {
  padding: 12vh 5vw;
}
.section-header {
  max-width: 1300px;
  margin: 0 auto 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.section-header h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-header p {
  color: rgba(249, 247, 244, 0.5);
  max-width: 380px;
  font-size: 0.92rem;
  line-height: 1.7;
}
.services-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.svc-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 2rem 1.6rem;
  min-height: 300px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition:
    transform 0.4s var(--ease),
    border-color 0.3s;
  cursor: none;
}
.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  border-radius: 22px;
  transition: opacity 0.4s;
}
.svc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.14);
}
.svc-card:hover::before {
  opacity: 1;
}
.svc-card.c1::before {
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.15), transparent);
}
.svc-card.c2::before {
  background: linear-gradient(135deg, rgba(56, 191, 255, 0.15), transparent);
}
.svc-card.c3::before {
  background: linear-gradient(135deg, rgba(168, 255, 62, 0.15), transparent);
}
.svc-card.c4::before {
  background: linear-gradient(135deg, rgba(255, 210, 74, 0.15), transparent);
}
.svc-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: auto;
}
.c1 .svc-icon {
  background: rgba(255, 45, 120, 0.15);
}
.c2 .svc-icon {
  background: rgba(56, 191, 255, 0.15);
}
.c3 .svc-icon {
  background: rgba(168, 255, 62, 0.15);
}
.c4 .svc-icon {
  background: rgba(255, 210, 74, 0.15);
}
.svc-num {
  font-family: "Syne", sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  position: absolute;
  top: 0.8rem;
  right: 1.2rem;
  opacity: 0.06;
  line-height: 1;
}
.svc-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1rem 0 0.6rem;
}
.svc-card p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(249, 247, 244, 0.52);
  font-weight: 300;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 1.2rem;
  text-decoration: none;
  transition: gap 0.25s;
}
.c1 .svc-link {
  color: var(--pink);
}
.c2 .svc-link {
  color: var(--sky);
}
.c3 .svc-link {
  color: var(--lime);
}
.c4 .svc-link {
  color: var(--yellow);
}
.svc-card:hover .svc-link {
  gap: 0.7rem;
}

/* STRIP */
.strip-section {
  padding: 6vh 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.strip-inner {
  display: flex;
  gap: 1.4rem;
  padding: 0 5vw;
  animation: stripScroll 30s linear infinite;
  width: max-content;
}
.strip-inner:hover {
  animation-play-state: paused;
}
@keyframes stripScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.strip-card {
  width: 290px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 1.6rem;
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.strip-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.14);
}
.strip-card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
}
.strip-card h4 {
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.strip-card p {
  font-size: 0.79rem;
  color: rgba(249, 247, 244, 0.48);
  line-height: 1.6;
}

/* TEAM */
.team-section {
  padding: 12vh 5vw;
  position: relative;
  overflow: hidden;
}
.team-section::before {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(56, 191, 255, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.team-header-wrap {
  max-width: 1300px;
  margin: 0 auto 4rem;
}
.team-header-wrap h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.team-header-wrap h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}
.team-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 480px;
  cursor: none;
}
.team-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s var(--ease),
    filter 0.4s;
  filter: grayscale(20%);
  background: linear-gradient(135deg, #1a0a2e, #2d1b4e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}
.team-card:hover .team-card-bg {
  transform: scale(1.06);
  filter: grayscale(0%);
}
.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 15, 0.95) 0%,
    rgba(10, 10, 15, 0.2) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background 0.4s;
}
.team-accent {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 0.8rem;
  transition: width 0.35s var(--ease);
}
.team-card:hover .team-accent {
  width: 70px;
}
.team-card:nth-child(1) .team-accent {
  background: var(--pink);
}
.team-card:nth-child(2) .team-accent {
  background: var(--sky);
}
.team-card:nth-child(3) .team-accent {
  background: var(--lime);
}
.team-role {
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(249, 247, 244, 0.5);
  margin-bottom: 0.3rem;
}
.team-name {
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}
.team-bio {
  font-size: 0.82rem;
  color: rgba(249, 247, 244, 0.6);
  line-height: 1.6;
  margin-top: 0.8rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.team-card:hover .team-bio {
  max-height: 80px;
}

/* TESTIMONIALS */
.testi-section {
  padding: 12vh 5vw;
  background: rgba(255, 45, 120, 0.04);
  position: relative;
  overflow: hidden;
}
.testi-grid {
  max-width: 1300px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.2rem;
}
.testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 2rem;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s;
  cursor: none;
}
.testi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 45, 120, 0.22);
}
.testi-card.featured {
  background: linear-gradient(
    135deg,
    rgba(255, 45, 120, 0.12),
    rgba(255, 45, 120, 0.04)
  );
  border-color: rgba(255, 45, 120, 0.22);
}
.testi-q {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.testi-text {
  font-size: 0.93rem;
  line-height: 1.72;
  color: rgba(249, 247, 244, 0.72);
  font-style: italic;
}
.testi-card.featured .testi-text {
  font-size: 1.08rem;
  color: rgba(249, 247, 244, 0.88);
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 45, 120, 0.3);
  background: var(--pink);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.testi-name {
  font-family: "Syne", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}
.testi-sub {
  font-size: 0.73rem;
  color: rgba(249, 247, 244, 0.38);
}
.testi-stars {
  color: var(--yellow);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* CTA */
.cta-section {
  padding: 14vh 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    rgba(255, 45, 120, 0.13) 0%,
    transparent 70%
  );
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.cta-inner h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cta-inner h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--pink);
  font-weight: 400;
}
.cta-inner p {
  font-size: 1rem;
  color: rgba(249, 247, 244, 0.58);
  margin-top: 1.2rem;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6vh 5vw 3vh;
}
.footer-top {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand-name {
  font-family: "Syne", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.footer-brand-name .acc {
  color: var(--pink);
}
.footer-brand p {
  font-size: 0.84rem;
  color: rgba(249, 247, 244, 0.45);
  line-height: 1.7;
  max-width: 260px;
}
.footer-nl {
  margin-top: 1.5rem;
}
.footer-nl label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(249, 247, 244, 0.38);
}
.footer-nl-row {
  display: flex;
  margin-top: 0.6rem;
}
.footer-nl-row input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  border-radius: 10px 0 0 10px;
  padding: 0.7rem 1rem;
  color: var(--white);
  font-size: 0.84rem;
  outline: none;
  font-family: "DM Sans", sans-serif;
}
.footer-nl-row input::placeholder {
  color: rgba(249, 247, 244, 0.22);
}
.footer-nl-row button {
  background: var(--pink);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.1rem;
  border-radius: 0 10px 10px 0;
  cursor: none;
  font-size: 1rem;
  transition: background 0.2s;
}
.footer-nl-row button:hover {
  background: #e01060;
}
.footer-col h4 {
  font-family: "Syne", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col a {
  text-decoration: none;
  color: rgba(249, 247, 244, 0.45);
  font-size: 0.84rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--white);
}
.footer-bottom {
  max-width: 1300px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(249, 247, 244, 0.28);
}
.footer-socials {
  display: flex;
  gap: 0.8rem;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  text-decoration: none;
  color: rgba(249, 247, 244, 0.55);
  font-size: 0.73rem;
  font-weight: 700;
  font-family: "Syne", sans-serif;
  transition:
    background 0.2s,
    color 0.2s;
}
.footer-socials a:hover {
  background: var(--pink);
  color: var(--white);
}

/* KEYFRAMES */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* REVEAL */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="left"] {
  transform: translateX(-40px);
}
[data-reveal="left"].revealed {
  transform: translateX(0);
}
[data-reveal="right"] {
  transform: translateX(40px);
}
[data-reveal="right"].revealed {
  transform: translateX(0);
}
[data-delay="1"] {
  transition-delay: 0.1s;
}
[data-delay="2"] {
  transition-delay: 0.2s;
}
[data-delay="3"] {
  transition-delay: 0.3s;
}
[data-delay="4"] {
  transition-delay: 0.4s;
}
[data-delay="5"] {
  transition-delay: 0.5s;
}
[data-delay="6"] {
  transition-delay: 0.6s;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-card.featured {
    grid-column: 1/-1;
  }
}
@media (max-width: 900px) {
  .statement-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .img-stack {
    height: 360px;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .hero-proof {
    display: none;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .stat-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   ABOUT / INTRO SECTIONS
========================================================= */

.qpat-story {
  background: #ffffff;
  padding: 120px 5% 100px;
  font-family: "Roboto Flex", sans-serif;
}

.qpat-story-header {
  max-width: 1200px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.story-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: #f04b3a;
  display: inline-block;
  margin-bottom: 14px;
}

.story-left h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 52px;
  line-height: 1.1;
  color: #111;
}

.story-left h2 span {
  color: #999;
}

.story-right p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 420px;
}

/* Images */
.story-images {
  max-width: 1200px;
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
}

.story-image {
  border-radius: 22px;
  overflow: hidden;
}

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

.story-image:hover img {
  transform: scale(1.06);
}

/* Bottom text */
.story-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.story-bottom h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 40px;
  color: #111;
}

.story-bottom h3 span {
  font-size: 32px;
  margin-left: 10px;
}

.story-bottom p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 520px;
  text-align: justify;
}

/* HERO */
.svc-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5vw 8vh;
  position: relative;
  overflow: hidden;
}
.svc-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #05000f 0%, #0a0020 45%, #000a18 100%);
}
.shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.s1 {
  width: 700px;
  height: 700px;
  top: -20%;
  right: -8%;
  background: radial-gradient(
    circle,
    rgba(255, 45, 120, 0.16) 0%,
    transparent 65%
  );
  animation: drift 10s ease-in-out infinite alternate;
}
.s2 {
  width: 500px;
  height: 500px;
  bottom: -20%;
  left: 5%;
  background: radial-gradient(
    circle,
    rgba(56, 191, 255, 0.1) 0%,
    transparent 65%
  );
  animation: drift 14s 2s ease-in-out infinite alternate;
}
.s3 {
  width: 300px;
  height: 300px;
  top: 30%;
  left: 40%;
  background: radial-gradient(
    circle,
    rgba(168, 255, 62, 0.07) 0%,
    transparent 65%
  );
  animation: drift 18s 4s ease-in-out infinite alternate;
}
@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(50px, 35px) scale(1.12);
  }
}
.orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  border: 1px solid;
}
.o1 {
  width: 500px;
  height: 500px;
  top: 5%;
  right: 5%;
  border-color: rgba(255, 45, 120, 0.07);
  animation: spin 40s linear infinite;
}
.o2 {
  width: 700px;
  height: 700px;
  top: -10%;
  right: -10%;
  border-color: rgba(255, 45, 120, 0.04);
  animation: spin 60s linear infinite reverse;
}
.o3 {
  width: 300px;
  height: 300px;
  bottom: 15%;
  left: 15%;
  border-color: rgba(56, 191, 255, 0.06);
  animation: spin 30s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.svc-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}
.svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 45, 120, 0.1);
  border: 1px solid rgba(255, 45, 120, 0.25);
  color: var(--pink-lt);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s var(--ease) forwards;
}
.svc-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 2s infinite;
}
.svc-hero h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s var(--ease) forwards;
}
.svc-hero h1 .outline {
  -webkit-text-stroke: 1.5px rgba(249, 247, 244, 0.2);
  color: transparent;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  display: block;
}
.svc-hero h1 .solid {
  color: var(--white);
  display: block;
}
.svc-hero h1 .pink {
  color: var(--white);
  display: block;
}
.svc-hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 3.5rem;
  flex-wrap: wrap;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s var(--ease) forwards;
}
.svc-hero-desc {
  max-width: 460px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(249, 247, 244, 0.55);
  font-weight: 300;
}
.svc-count-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.svc-count-num {
  font-family: "Syne", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}
.svc-count-num span {
  color: var(--pink);
}
.svc-count-label {
  font-size: 0.75rem;
  color: rgba(249, 247, 244, 0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.scroll-hint {
  position: absolute;
  bottom: 3vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}
.scroll-hint span {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(249, 247, 244, 0.3);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--pink), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* MARQUEE */
.marquee-wrap {
  background: var(--pink);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
  font-family: "Syne", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.marquee-item::after {
  content: "✦";
  opacity: 0.5;
  font-size: 0.65rem;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* SERVICES GRID */
.services-main {
  padding: 14vh 5vw;
  position: relative;
  overflow: hidden;
}
.services-main::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 45, 120, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.services-header {
  max-width: 1300px;
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}

.pink {
  color: white;
}
.services-header h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.services-header h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
}
.services-header-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.services-header-right p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(249, 247, 244, 0.55);
  font-weight: 300;
}
.filter-tabs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.ftab {
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(249, 247, 244, 0.55);
  background: transparent;
  cursor: none;
  transition: all 0.25s;
}
.ftab:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}
.ftab.active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}
.svc-cards-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.svc-card {
  position: relative;
  border-radius: 24px;
  padding: 2rem 1.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s var(--ease),
    border-color 0.3s;
  cursor: none;
  overflow: hidden;
  min-height: 310px;
}
.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  border-radius: 24px;
  transition: opacity 0.4s;
}
.svc-card:hover {
  transform: translateY(-10px);
}
.svc-card:hover::before {
  opacity: 1;
}
.svc-card:nth-child(1) {
  border-top: 2px solid var(--pink);
}
.svc-card:nth-child(1)::before {
  background: linear-gradient(
    160deg,
    rgba(255, 45, 120, 0.12),
    transparent 60%
  );
}
.svc-card:nth-child(1):hover {
  border-color: rgba(255, 45, 120, 0.3);
}
.svc-card:nth-child(2) {
  border-top: 2px solid var(--sky);
}
.svc-card:nth-child(2)::before {
  background: linear-gradient(
    160deg,
    rgba(56, 191, 255, 0.12),
    transparent 60%
  );
}
.svc-card:nth-child(2):hover {
  border-color: rgba(56, 191, 255, 0.3);
}
.svc-card:nth-child(3) {
  border-top: 2px solid var(--yellow);
}
.svc-card:nth-child(3)::before {
  background: linear-gradient(
    160deg,
    rgba(255, 217, 74, 0.12),
    transparent 60%
  );
}
.svc-card:nth-child(3):hover {
  border-color: rgba(255, 217, 74, 0.3);
}
.svc-card:nth-child(4) {
  border-top: 2px solid var(--purple);
}
.svc-card:nth-child(4)::before {
  background: linear-gradient(
    160deg,
    rgba(139, 92, 246, 0.12),
    transparent 60%
  );
}
.svc-card:nth-child(4):hover {
  border-color: rgba(139, 92, 246, 0.3);
}
.svc-card:nth-child(5) {
  border-top: 2px solid var(--lime);
}
.svc-card:nth-child(5)::before {
  background: linear-gradient(
    160deg,
    rgba(168, 255, 62, 0.12),
    transparent 60%
  );
}
.svc-card:nth-child(5):hover {
  border-color: rgba(168, 255, 62, 0.3);
}
.svc-card:nth-child(6) {
  border-top: 2px solid var(--orange);
}
.svc-card:nth-child(6)::before {
  background: linear-gradient(
    160deg,
    rgba(255, 122, 26, 0.12),
    transparent 60%
  );
}
.svc-card:nth-child(6):hover {
  border-color: rgba(255, 122, 26, 0.3);
}
.svc-card:nth-child(7) {
  border-top: 2px solid var(--sky);
}
.svc-card:nth-child(7)::before {
  background: linear-gradient(
    160deg,
    rgba(56, 191, 255, 0.12),
    transparent 60%
  );
}
.svc-card:nth-child(7):hover {
  border-color: rgba(56, 191, 255, 0.3);
}
.svc-card:nth-child(8) {
  border-top: 2px solid var(--pink);
}
.svc-card:nth-child(8)::before {
  background: linear-gradient(
    160deg,
    rgba(255, 45, 120, 0.12),
    transparent 60%
  );
}
.svc-card:nth-child(8):hover {
  border-color: rgba(255, 45, 120, 0.3);
}
.svc-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: auto;
  flex-shrink: 0;
}
.svc-card:nth-child(1) .svc-card-icon {
  background: rgba(255, 45, 120, 0.15);
}
.svc-card:nth-child(2) .svc-card-icon {
  background: rgba(56, 191, 255, 0.15);
}
.svc-card:nth-child(3) .svc-card-icon {
  background: rgba(255, 217, 74, 0.15);
}
.svc-card:nth-child(4) .svc-card-icon {
  background: rgba(139, 92, 246, 0.15);
}
.svc-card:nth-child(5) .svc-card-icon {
  background: rgba(168, 255, 62, 0.15);
}
.svc-card:nth-child(6) .svc-card-icon {
  background: rgba(255, 122, 26, 0.15);
}
.svc-card:nth-child(7) .svc-card-icon {
  background: rgba(56, 191, 255, 0.15);
}
.svc-card:nth-child(8) .svc-card-icon {
  background: rgba(255, 45, 120, 0.15);
}
.svc-card-num {
  position: absolute;
  top: 0.8rem;
  right: 1.2rem;
  font-family: "Syne", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  opacity: 0.05;
  line-height: 1;
}
.svc-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.1rem 0 0.6rem;
  line-height: 1.3;
}
.svc-card p {
  font-size: 0.82rem;
  line-height: 1.72;
  color: rgba(249, 247, 244, 0.52);
  font-weight: 300;
  flex: 1;
}
.svc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.svc-card-link {
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.25s;
}
.svc-card:nth-child(1) .svc-card-link {
  color: var(--pink);
}
.svc-card:nth-child(2) .svc-card-link {
  color: var(--sky);
}
.svc-card:nth-child(3) .svc-card-link {
  color: var(--yellow);
}
.svc-card:nth-child(4) .svc-card-link {
  color: var(--purple);
}
.svc-card:nth-child(5) .svc-card-link {
  color: var(--lime);
}
.svc-card:nth-child(6) .svc-card-link {
  color: var(--orange);
}
.svc-card:nth-child(7) .svc-card-link {
  color: var(--sky);
}
.svc-card:nth-child(8) .svc-card-link {
  color: var(--pink);
}
.svc-card:hover .svc-card-link {
  gap: 0.6rem;
}
.svc-tag {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(249, 247, 244, 0.4);
  font-weight: 500;
}

/* FEATURED */
.svc-featured-wrap {
  max-width: 1300px;
  margin: 1.2rem auto 0;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.2rem;
}
.svc-featured {
  border-radius: 24px;
  padding: 2.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 45, 120, 0.12) 0%,
    rgba(255, 45, 120, 0.04) 100%
  );
  border: 1px solid rgba(255, 45, 120, 0.22);
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: transform 0.4s var(--ease);
  cursor: none;
  position: relative;
  overflow: hidden;
}
.svc-featured:hover {
  transform: translateY(-6px);
}
.svc-featured::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 45, 120, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.svc-featured-icon {
  font-size: 3.5rem;
  flex-shrink: 0;
}
.svc-featured-body h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}
.svc-featured-body p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(249, 247, 244, 0.62);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.svc-featured-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.svc-ftag {
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid rgba(255, 45, 120, 0.3);
  color: var(--pink);
  background: rgba(255, 45, 120, 0.08);
}
.svc-aside {
  border-radius: 24px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.4s var(--ease);
  cursor: none;
}
.svc-aside:hover {
  transform: translateY(-6px);
}
.svc-aside h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}
.svc-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}
.svc-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(249, 247, 244, 0.6);
}
.svc-checklist li::before {
  content: "✓";
  color: var(--lime);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* PROCESS */
.process-section {
  padding: 12vh 5vw;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(168, 255, 62, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.process-header {
  max-width: 1300px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}
.process-header h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.process-header h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
}
.process-header p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(249, 247, 244, 0.5);
  font-weight: 300;
}
.process-steps {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 45, 120, 0.3),
    rgba(56, 191, 255, 0.3),
    rgba(168, 255, 62, 0.3),
    transparent
  );
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
.step-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  border: 2px solid;
  flex-shrink: 0;
  background: var(--black);
  position: relative;
  z-index: 2;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}
.step:hover .step-dot {
  transform: scale(1.15);
}
.step:nth-child(1) .step-dot {
  border-color: var(--pink);
  box-shadow: 0 0 20px rgba(255, 45, 120, 0.2);
}
.step:nth-child(2) .step-dot {
  border-color: var(--sky);
  box-shadow: 0 0 20px rgba(56, 191, 255, 0.2);
}
.step:nth-child(3) .step-dot {
  border-color: var(--yellow);
  box-shadow: 0 0 20px rgba(255, 217, 74, 0.2);
}
.step:nth-child(4) .step-dot {
  border-color: var(--lime);
  box-shadow: 0 0 20px rgba(168, 255, 62, 0.2);
}
.step:nth-child(5) .step-dot {
  border-color: var(--orange);
  box-shadow: 0 0 20px rgba(255, 122, 26, 0.2);
}
.step:hover:nth-child(1) .step-dot {
  box-shadow: 0 0 30px rgba(255, 45, 120, 0.5);
}
.step:hover:nth-child(2) .step-dot {
  box-shadow: 0 0 30px rgba(56, 191, 255, 0.5);
}
.step:hover:nth-child(3) .step-dot {
  box-shadow: 0 0 30px rgba(255, 217, 74, 0.5);
}
.step:hover:nth-child(4) .step-dot {
  box-shadow: 0 0 30px rgba(168, 255, 62, 0.5);
}
.step:hover:nth-child(5) .step-dot {
  box-shadow: 0 0 30px rgba(255, 122, 26, 0.5);
}
.step-num {
  font-family: "Syne", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 1rem;
  color: rgba(249, 247, 244, 0.3);
  text-transform: uppercase;
}
.step h4 {
  font-family: "Syne", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 0.4rem;
}
.step p {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(249, 247, 244, 0.45);
  margin-top: 0.4rem;
  font-weight: 300;
}

/* PRICING */
.pricing-section {
  padding: 12vh 5vw;
  position: relative;
  overflow: hidden;
}
.pricing-section::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(56, 191, 255, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.pricing-header {
  max-width: 1300px;
  margin: 0 auto 4rem;
  text-align: center;
}
.pricing-header h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.pricing-header h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--sky);
}
.pricing-header p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(249, 247, 244, 0.5);
  max-width: 500px;
  margin: 0 auto;
}
.pricing-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.price-card {
  border-radius: 24px;
  padding: 2.2rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease);
  cursor: none;
  position: relative;
  overflow: hidden;
}
.price-card:hover {
  transform: translateY(-8px);
}
.price-card.popular {
  background: linear-gradient(
    160deg,
    rgba(255, 45, 120, 0.14),
    rgba(255, 45, 120, 0.04)
  );
  border-color: rgba(255, 45, 120, 0.3);
}
.price-card.popular::before {
  content: "Most Popular";
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--pink);
  color: var(--white);
  font-family: "Syne", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}
.price-tier {
  font-family: "Syne", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(249, 247, 244, 0.4);
  margin-bottom: 1.2rem;
}
.price-card.popular .price-tier {
  color: var(--pink);
}
.price-name {
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.price-desc {
  font-size: 0.83rem;
  line-height: 1.6;
  color: rgba(249, 247, 244, 0.45);
  margin-bottom: 1.8rem;
  font-weight: 300;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  margin-bottom: 2rem;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(249, 247, 244, 0.65);
}
.price-features li .tick {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.75rem;
}
.price-card:nth-child(1) .tick {
  color: var(--sky);
}
.price-card:nth-child(2) .tick {
  color: var(--pink);
}
.price-card:nth-child(3) .tick {
  color: var(--lime);
}
.price-features li.muted {
  color: rgba(249, 247, 244, 0.3);
}
.price-features li.muted .tick {
  color: rgba(249, 247, 244, 0.2);
}
.price-btn {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: 100px;
  font-family: "Syne", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  cursor: none;
}
.price-btn.outline {
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
}
.price-btn.outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}
.price-btn.filled {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 45, 120, 0.3);
}
.price-btn.filled:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 45, 120, 0.5);
}

/* FAQ */
.faq-section {
  padding: 10vh 5vw;
  background: rgba(255, 255, 255, 0.02);
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-header h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.faq-header h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open {
  border-color: rgba(255, 45, 120, 0.2);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  cursor: none;
}
.faq-q span {
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  transition:
    transform 0.3s,
    background 0.3s,
    border-color 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--pink);
  border-color: var(--pink);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-a {
  max-height: 200px;
}
.faq-a p {
  padding: 0 1.6rem 1.4rem;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(249, 247, 244, 0.55);
  font-weight: 300;
}

/* CTA */
.cta-section {
  padding: 14vh 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    rgba(255, 45, 120, 0.13) 0%,
    transparent 70%
  );
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.cta-inner h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cta-inner h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--pink);
  font-weight: 400;
}
.cta-inner p {
  font-size: 1rem;
  color: rgba(249, 247, 244, 0.55);
  margin-top: 1.2rem;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .svc-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-featured-wrap {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .process-steps::before {
    display: none;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .svc-cards-grid {
    grid-template-columns: 1fr;
  }
  .svc-featured {
    flex-direction: column;
    gap: 1rem;
  }
  .services-header,
  .process-header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .svc-hero-bottom {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  .svc-count-row {
    flex-direction: column;
    gap: 1rem;
  }
}

* SECTION LABEL */ .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.73rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
}
.sl-sky {
  color: var(--sky);
}
.sl-sky::before {
  background: var(--sky);
}
.sl-orange {
  color: var(--orange);
}
.sl-orange::before {
  background: var(--orange);
}
.sl-lime {
  color: var(--lime);
}
.sl-lime::before {
  background: var(--lime);
}
.sl-purple {
  color: var(--purple);
}
.sl-purple::before {
  background: var(--purple);
}
.sl-pink {
  color: var(--pink);
}
.sl-pink::before {
  background: var(--pink);
}
.sl-yellow {
  color: var(--yellow);
}
.sl-yellow::before {
  background: var(--yellow);
}

/* REVEAL */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="left"] {
  transform: translateX(-50px);
}
[data-reveal="left"].revealed {
  transform: translateX(0);
}
[data-reveal="right"] {
  transform: translateX(50px);
}
[data-reveal="right"].revealed {
  transform: translateX(0);
}
[data-reveal="scale"] {
  transform: scale(0.9);
}
[data-reveal="scale"].revealed {
  transform: scale(1);
}
[data-delay="1"] {
  transition-delay: 0.1s;
}
[data-delay="2"] {
  transition-delay: 0.2s;
}
[data-delay="3"] {
  transition-delay: 0.3s;
}
[data-delay="4"] {
  transition-delay: 0.4s;
}
[data-delay="5"] {
  transition-delay: 0.5s;
}
[data-delay="6"] {
  transition-delay: 0.6s;
}

/* ═══════════════════════════════
       HERO
    ═══════════════════════════════ */
.ach-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5vw 8vh;
  position: relative;
  overflow: hidden;
}
.ach-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #020010 0%, #0d0020 50%, #001008 100%);
}

/* Particle dots */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleDrift linear infinite;
}
@keyframes particleDrift {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-20vh) scale(1);
    opacity: 0;
  }
}

.hero-glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(255, 45, 120, 0.15) 0%,
    transparent 60%
  );
  border-radius: 50%;
  z-index: 1;
  animation: drift 10s ease-in-out infinite alternate;
}
.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  left: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(168, 255, 62, 0.08) 0%,
    transparent 60%
  );
  border-radius: 50%;
  z-index: 1;
  animation: drift 14s 3s ease-in-out infinite alternate;
}
.hero-glow-3 {
  position: absolute;
  top: 30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(56, 191, 255, 0.08) 0%,
    transparent 60%
  );
  border-radius: 50%;
  z-index: 1;
  animation: drift 18s 6s ease-in-out infinite alternate;
}
@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(40px, 30px) scale(1.1);
  }
}

.ach-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}
.ach-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 45, 120, 0.1);
  border: 1px solid rgba(255, 45, 120, 0.25);
  color: var(--pink-lt);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s var(--ease) forwards;
}
.ach-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 2s infinite;
}

.ach-hero h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s var(--ease) forwards;
}
.ach-hero h1 .stroke {
  -webkit-text-stroke: 1.5px rgba(249, 247, 244, 0.2);
  color: transparent;
  display: block;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}
.ach-hero h1 .solid {
  display: block;
  color: var(--white);
}
.ach-hero h1 .col-lime {
  display: block;
  color: var(--lime);
}

.ach-hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s var(--ease) forwards;
}
.ach-hero-desc {
  max-width: 480px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(249, 247, 244, 0.55);
  font-weight: 300;
}

/* Trophy row */
.trophy-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trophy-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 500;
}
.trophy-pill .pip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.scroll-hint {
  position: absolute;
  bottom: 3vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}
.scroll-hint span {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(249, 247, 244, 0.3);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--pink), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* ═══════════════════════════════
       MARQUEE
    ═══════════════════════════════ */
.marquee-wrap {
  background: var(--pink);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
  font-family: "Syne", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.marquee-item::after {
  content: "✦";
  opacity: 0.5;
  font-size: 0.65rem;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════
       STATS BANNER
    ═══════════════════════════════ */
.stats-banner {
  padding: 10vh 5vw;
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 45, 120, 0.04),
    rgba(168, 255, 62, 0.03),
    rgba(56, 191, 255, 0.04)
  );
  pointer-events: none;
}
.stats-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-big {
  border-radius: 22px;
  padding: 2.2rem 1.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    border-color 0.3s;
}
.stat-big:hover {
  transform: translateY(-6px);
}
.stat-big::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.4s;
}
.stat-big:hover::before {
  opacity: 1;
}
.stat-big:nth-child(1)::before {
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.1), transparent);
}
.stat-big:nth-child(1):hover {
  border-color: rgba(255, 45, 120, 0.2);
}
.stat-big:nth-child(2)::before {
  background: linear-gradient(135deg, rgba(168, 255, 62, 0.1), transparent);
}
.stat-big:nth-child(2):hover {
  border-color: rgba(168, 255, 62, 0.2);
}
.stat-big:nth-child(3)::before {
  background: linear-gradient(135deg, rgba(56, 191, 255, 0.1), transparent);
}
.stat-big:nth-child(3):hover {
  border-color: rgba(56, 191, 255, 0.2);
}
.stat-big:nth-child(4)::before {
  background: linear-gradient(135deg, rgba(255, 217, 74, 0.1), transparent);
}
.stat-big:nth-child(4):hover {
  border-color: rgba(255, 217, 74, 0.2);
}
.stat-big-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}
.stat-big-num {
  font-family: "Syne", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}
.stat-big:nth-child(1) .stat-big-num {
  color: var(--pink);
}
.stat-big:nth-child(2) .stat-big-num {
  color: var(--lime);
}
.stat-big:nth-child(3) .stat-big-num {
  color: var(--sky);
}
.stat-big:nth-child(4) .stat-big-num {
  color: var(--yellow);
}
.stat-big-label {
  font-size: 0.82rem;
  color: rgba(249, 247, 244, 0.45);
  margin-top: 0.4rem;
  line-height: 1.4;
  font-weight: 300;
}

/* ═══════════════════════════════
       SCORE LEADERBOARD — TOP SAT
    ═══════════════════════════════ */
.scores-section {
  padding: 10vh 5vw;
  background: rgba(255, 255, 255, 0.02);
}
.scores-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.scores-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.scores-header h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.scores-header h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
}
.scores-header p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(249, 247, 244, 0.5);
  font-weight: 300;
}

.leaderboard {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.lb-item {
  display: grid;
  grid-template-columns: 48px 1fr auto auto;
  align-items: center;
  gap: 1.2rem;
  border-radius: 18px;
  padding: 1.2rem 1.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s;
  cursor: none;
  position: relative;
  overflow: hidden;
}
.lb-item:hover {
  transform: translateX(6px);
}
.lb-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
  opacity: 0;
  transition: opacity 0.3s;
}
.lb-item:hover::before {
  opacity: 1;
}

/* Rank colors */
.lb-item.rank-1 {
  background: linear-gradient(
    135deg,
    rgba(255, 217, 74, 0.1),
    rgba(255, 217, 74, 0.04)
  );
  border-color: rgba(255, 217, 74, 0.25);
}
.lb-item.rank-1::before {
  background: var(--yellow);
  opacity: 1;
}
.lb-item.rank-2 {
  background: linear-gradient(
    135deg,
    rgba(249, 247, 244, 0.07),
    rgba(249, 247, 244, 0.03)
  );
  border-color: rgba(249, 247, 244, 0.15);
}
.lb-item.rank-2::before {
  background: rgba(249, 247, 244, 0.5);
  opacity: 1;
}
.lb-item.rank-3 {
  background: linear-gradient(
    135deg,
    rgba(255, 122, 26, 0.08),
    rgba(255, 122, 26, 0.03)
  );
  border-color: rgba(255, 122, 26, 0.2);
}
.lb-item.rank-3::before {
  background: var(--orange);
  opacity: 1;
}
.lb-item:not(.rank-1):not(.rank-2):not(.rank-3):hover::before {
  background: var(--pink);
}

.lb-rank {
  font-family: "Syne", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}
.lb-item.rank-1 .lb-rank {
  color: var(--yellow);
}
.lb-item.rank-2 .lb-rank {
  color: rgba(249, 247, 244, 0.7);
}
.lb-item.rank-3 .lb-rank {
  color: var(--orange);
}

.lb-name {
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}
.lb-meta {
  font-size: 0.75rem;
  color: rgba(249, 247, 244, 0.4);
  margin-top: 0.15rem;
}

/* Score bar */
.lb-bar-wrap {
  width: 200px;
}
.lb-bar-bg {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.lb-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1.2s var(--ease);
}
.lb-item.rank-1 .lb-bar-fill {
  background: linear-gradient(90deg, var(--yellow), #ffb300);
}
.lb-item.rank-2 .lb-bar-fill {
  background: linear-gradient(
    90deg,
    rgba(249, 247, 244, 0.7),
    rgba(249, 247, 244, 0.3)
  );
}
.lb-item.rank-3 .lb-bar-fill {
  background: linear-gradient(90deg, var(--orange), #ff5500);
}
.lb-item:not(.rank-1):not(.rank-2):not(.rank-3) .lb-bar-fill {
  background: linear-gradient(90deg, var(--pink), var(--pink-lt));
}
.lb-bar-label {
  font-size: 0.68rem;
  color: rgba(249, 247, 244, 0.35);
  margin-top: 0.3rem;
  text-align: right;
}

.lb-score {
  font-family: "Syne", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}
.lb-score span {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(249, 247, 244, 0.35);
  display: block;
  text-align: right;
  margin-top: 0.1rem;
}

.lb-divider {
  text-align: center;
  padding: 0.4rem 0;
  position: relative;
}
.lb-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}
.lb-divider span {
  position: relative;
  z-index: 1;
  background: var(--black);
  padding: 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(249, 247, 244, 0.25);
}

/* ═══════════════════════════════
       TIMELINE — LEGACY RECORDS
    ═══════════════════════════════ */
.legacy-section {
  padding: 12vh 5vw;
  position: relative;
  overflow: hidden;
}
.legacy-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 45, 120, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.legacy-header {
  max-width: 1300px;
  margin: 0 auto 5rem;
}
.legacy-header h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.legacy-header h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}

/* Big timeline — center line */
.tl-wrap {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.tl-center-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 45, 120, 0.3) 10%,
    rgba(255, 45, 120, 0.3) 90%,
    transparent
  );
}

.tl-item {
  display: grid;
  gap: 0;
  margin-bottom: 4rem;
  position: relative;
}
.tl-item:last-child {
  margin-bottom: 0;
}
.tl-item.tl-left {
  grid-template-columns: 1fr 60px 1fr;
}
.tl-item.tl-right {
  grid-template-columns: 1fr 60px 1fr;
}

.tl-item.tl-left .tl-card-wrap {
  grid-column: 1;
  padding-right: 2.5rem;
}
.tl-item.tl-right .tl-card-wrap {
  grid-column: 3;
  padding-left: 2.5rem;
}
.tl-item.tl-left .tl-spacer {
  grid-column: 3;
}
.tl-item.tl-right .tl-spacer {
  grid-column: 1;
}

.tl-node {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
}
.tl-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid;
  background: var(--black);
  flex-shrink: 0;
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.8);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.tl-item:hover .tl-dot {
  transform: scale(1.3);
}
.dot-pink {
  border-color: var(--pink);
  box-shadow:
    0 0 0 5px rgba(0, 0, 0, 0.8),
    0 0 14px rgba(255, 45, 120, 0.4);
}
.dot-sky {
  border-color: var(--sky);
  box-shadow:
    0 0 0 5px rgba(0, 0, 0, 0.8),
    0 0 14px rgba(56, 191, 255, 0.4);
}
.dot-lime {
  border-color: var(--lime);
  box-shadow:
    0 0 0 5px rgba(0, 0, 0, 0.8),
    0 0 14px rgba(168, 255, 62, 0.4);
}
.dot-orange {
  border-color: var(--orange);
  box-shadow:
    0 0 0 5px rgba(0, 0, 0, 0.8),
    0 0 14px rgba(255, 122, 26, 0.4);
}
.dot-yellow {
  border-color: var(--yellow);
  box-shadow:
    0 0 0 5px rgba(0, 0, 0, 0.8),
    0 0 14px rgba(255, 217, 74, 0.4);
}
.tl-year-badge {
  font-family: "Syne", sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(249, 247, 244, 0.25);
}

.tl-card {
  border-radius: 20px;
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition:
    transform 0.35s var(--ease),
    border-color 0.3s;
}
.tl-item:hover .tl-card {
  transform: translateY(-5px);
}
.tl-card-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.tl-card-date .date-pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.tl-card h4 {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.tl-card p {
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(249, 247, 244, 0.55);
  font-weight: 300;
}
.tl-score-chip {
  display: inline-block;
  margin-top: 0.9rem;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-family: "Syne", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* Color sets for tl cards */
.tl-c-pink .tl-card {
  border-top: 2px solid var(--pink);
}
.tl-c-pink:hover .tl-card {
  border-color: rgba(255, 45, 120, 0.3);
}
.tl-c-pink .tl-card-date {
  color: var(--pink);
}
.tl-c-pink .date-pip {
  background: var(--pink);
}
.tl-c-pink .tl-score-chip {
  background: rgba(255, 45, 120, 0.12);
  color: var(--pink);
  border: 1px solid rgba(255, 45, 120, 0.25);
}
.tl-c-sky .tl-card {
  border-top: 2px solid var(--sky);
}
.tl-c-sky:hover .tl-card {
  border-color: rgba(56, 191, 255, 0.3);
}
.tl-c-sky .tl-card-date {
  color: var(--sky);
}
.tl-c-sky .date-pip {
  background: var(--sky);
}
.tl-c-sky .tl-score-chip {
  background: rgba(56, 191, 255, 0.12);
  color: var(--sky);
  border: 1px solid rgba(56, 191, 255, 0.25);
}
.tl-c-lime .tl-card {
  border-top: 2px solid var(--lime);
}
.tl-c-lime:hover .tl-card {
  border-color: rgba(168, 255, 62, 0.3);
}
.tl-c-lime .tl-card-date {
  color: var(--lime);
}
.tl-c-lime .date-pip {
  background: var(--lime);
}
.tl-c-lime .tl-score-chip {
  background: rgba(168, 255, 62, 0.12);
  color: var(--lime);
  border: 1px solid rgba(168, 255, 62, 0.25);
}
.tl-c-orange .tl-card {
  border-top: 2px solid var(--orange);
}
.tl-c-orange:hover .tl-card {
  border-color: rgba(255, 122, 26, 0.3);
}
.tl-c-orange .tl-card-date {
  color: var(--orange);
}
.tl-c-orange .date-pip {
  background: var(--orange);
}
.tl-c-orange .tl-score-chip {
  background: rgba(255, 122, 26, 0.12);
  color: var(--orange);
  border: 1px solid rgba(255, 122, 26, 0.25);
}
.tl-c-yellow .tl-card {
  border-top: 2px solid var(--yellow);
}
.tl-c-yellow:hover .tl-card {
  border-color: rgba(255, 217, 74, 0.3);
}
.tl-c-yellow .tl-card-date {
  color: var(--yellow);
}
.tl-c-yellow .date-pip {
  background: var(--yellow);
}
.tl-c-yellow .tl-score-chip {
  background: rgba(255, 217, 74, 0.12);
  color: var(--yellow);
  border: 1px solid rgba(255, 217, 74, 0.25);
}

/* ═══════════════════════════════
       SCHOLARSHIP CALLOUT
    ═══════════════════════════════ */
.scholarship-section {
  padding: 10vh 5vw;
  background: rgba(255, 255, 255, 0.02);
}
.scholarship-inner {
  max-width: 1300px;
  margin: 0 auto;
  border-radius: 28px;
  padding: 4rem;
  background: linear-gradient(
    135deg,
    rgba(255, 45, 120, 0.1) 0%,
    rgba(168, 255, 62, 0.06) 50%,
    rgba(56, 191, 255, 0.08) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.scholarship-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 45, 120, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.scholarship-left h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.scholarship-left h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--lime);
  font-weight: 400;
}
.scholarship-left p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: rgba(249, 247, 244, 0.65);
  font-weight: 300;
}
.scholarship-right {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.sch-stat {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
}
.sch-stat-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.sch-stat-num {
  font-family: "Syne", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
}
.sch-stat-label {
  font-size: 0.8rem;
  color: rgba(249, 247, 244, 0.5);
  margin-top: 0.15rem;
}

/* ═══════════════════════════════
       CTA
    ═══════════════════════════════ */
.cta-section {
  padding: 14vh 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    rgba(255, 45, 120, 0.13) 0%,
    transparent 70%
  );
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.cta-inner h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cta-inner h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--pink);
  font-weight: 400;
}
.cta-inner p {
  font-size: 1rem;
  color: rgba(249, 247, 244, 0.55);
  margin-top: 1.2rem;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

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

/* RESPONSIVE */
@media (max-width: 1000px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .lb-bar-wrap {
    display: none;
  }
  .lb-item {
    grid-template-columns: 40px 1fr auto;
  }
  .scores-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .tl-wrap {
    max-width: 100%;
  }
  .tl-center-line {
    left: 20px;
    transform: none;
  }
  .tl-item.tl-left,
  .tl-item.tl-right {
    grid-template-columns: 40px 1fr;
  }
  .tl-item.tl-left .tl-spacer,
  .tl-item.tl-right .tl-spacer {
    display: none;
  }
  .tl-item.tl-left .tl-card-wrap,
  .tl-item.tl-right .tl-card-wrap {
    grid-column: 2;
    padding: 0 0 0 1.5rem;
  }
  .tl-node {
    grid-column: 1;
    align-items: flex-start;
  }
  .tl-year-badge {
    display: none;
  }
  .scholarship-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
  .ach-hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .scholarship-inner {
    padding: 2.5rem 1.8rem;
  }
}
@media (max-width: 480px) {
  .stats-inner {
    grid-template-columns: 1fr;
  }
  .trophy-row {
    flex-direction: column;
    gap: 0.8rem;
  }
}

/* ═══════════════════════
       HERO
    ═══════════════════════ */
.contact-hero {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5vw 7vh;
  position: relative;
  overflow: hidden;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #060010 0%, #0e0022 55%, #000c10 100%);
}
.ch-glow-1 {
  position: absolute;
  top: -20%;
  right: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(255, 45, 120, 0.14) 0%,
    transparent 60%
  );
  border-radius: 50%;
  z-index: 1;
  animation: drift 10s ease-in-out infinite alternate;
}
.ch-glow-2 {
  position: absolute;
  bottom: -25%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(56, 191, 255, 0.08) 0%,
    transparent 60%
  );
  border-radius: 50%;
  z-index: 1;
  animation: drift 14s 3s ease-in-out infinite alternate;
}
@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(40px, 30px) scale(1.1);
  }
}

/* Animated diagonal lines */
.ch-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.ch-lines::before,
.ch-lines::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 80px,
    rgba(255, 45, 120, 0.025) 80px,
    rgba(255, 45, 120, 0.025) 81px
  );
  pointer-events: none;
}
.ch-lines::after {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 80px,
    rgba(56, 191, 255, 0.02) 80px,
    rgba(56, 191, 255, 0.02) 81px
  );
}

.contact-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}
.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 45, 120, 0.1);
  border: 1px solid rgba(255, 45, 120, 0.25);
  color: var(--pink-lt);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s var(--ease) forwards;
}
.contact-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 2s infinite;
}
.contact-hero h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s var(--ease) forwards;
}
.contact-hero h1 .stroke {
  -webkit-text-stroke: 1.5px rgba(249, 247, 244, 0.18);
  color: transparent;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  display: block;
}
.contact-hero h1 .solid {
  color: var(--white);
  display: block;
}
.contact-hero h1 .col-pink {
  color: var(--pink);
  display: block;
}
.contact-hero-sub {
  max-width: 480px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(249, 247, 244, 0.55);
  font-weight: 300;
  margin-top: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.85s var(--ease) forwards;
}

/* ═══════════════════════
       MARQUEE
    ═══════════════════════ */
.marquee-wrap {
  background: var(--pink);
  padding: 1rem 0;
  overflow: hidden;
  z-index: 5;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
  font-family: "Syne", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.marquee-item::after {
  content: "✦";
  opacity: 0.5;
  font-size: 0.65rem;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════
       MAIN CONTACT SECTION
    ═══════════════════════ */
.contact-main {
  padding: 12vh 5vw;
  position: relative;
  overflow: hidden;
}
.contact-main::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 45, 120, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.contact-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6vw;
  align-items: start;
}

/* ── LEFT: FORM ── */

.contact-form-side h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}
.contact-form-side h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--pink);
}
.contact-form-side > p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(249, 247, 244, 0.55);
  font-weight: 300;
  margin-bottom: 2.5rem;
}

/* Social links */
.contact-socials {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.csoc {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(249, 247, 244, 0.6);
  text-decoration: none;
  transition:
    border-color 0.25s,
    color 0.25s,
    background 0.25s;
  cursor: none;
}
.csoc:hover {
  border-color: rgba(255, 45, 120, 0.4);
  color: var(--pink);
  background: rgba(255, 45, 120, 0.06);
}
.csoc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
}

/* Form */
.cf {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.cf input,
.cf textarea,
.cf select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  color: var(--white);
  font-size: 0.9rem;
  font-family: "DM Sans", sans-serif;
  outline: none;
  transition:
    border-color 0.25s,
    background 0.25s;
  resize: none;
}
.cf input::placeholder,
.cf textarea::placeholder {
  color: rgba(249, 247, 244, 0.28);
}
.cf input:focus,
.cf textarea:focus {
  border-color: rgba(255, 45, 120, 0.4);
  background: rgba(255, 45, 120, 0.04);
}
.cf select {
  color: rgba(249, 247, 244, 0.5);
  cursor: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(249,247,244,0.3)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
}
.cf select option {
  background: var(--black);
  color: var(--white);
}
.cf textarea {
  min-height: 130px;
}
.cf-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--pink);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 100px;
  font-family: "Syne", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  cursor: none;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(255, 45, 120, 0.35);
  align-self: flex-start;
}
.cf-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 45, 120, 0.5);
}
.cf-submit .arr {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.3s;
}
.cf-submit:hover .arr {
  transform: rotate(45deg);
}

/* ── RIGHT: INFO ── */
.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.info-card {
  border-radius: 20px;
  padding: 1.6rem 1.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  transition:
    transform 0.35s var(--ease),
    border-color 0.3s;
  cursor: none;
}
.info-card:hover {
  transform: translateX(6px);
}
.info-card:nth-child(1):hover {
  border-color: rgba(255, 45, 120, 0.22);
}
.info-card:nth-child(2):hover {
  border-color: rgba(56, 191, 255, 0.22);
}
.info-card:nth-child(3):hover {
  border-color: rgba(168, 255, 62, 0.22);
}
.info-card:nth-child(4):hover {
  border-color: rgba(255, 217, 74, 0.22);
}

.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.info-card:nth-child(1) .info-icon {
  background: rgba(255, 45, 120, 0.12);
}
.info-card:nth-child(2) .info-icon {
  background: rgba(56, 191, 255, 0.12);
}
.info-card:nth-child(3) .info-icon {
  background: rgba(168, 255, 62, 0.12);
}
.info-card:nth-child(4) .info-icon {
  background: rgba(255, 217, 74, 0.12);
}
.info-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(249, 247, 244, 0.35);
  margin-bottom: 0.4rem;
}
.info-value {
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
}
.info-value a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.info-value a:hover {
  color: var(--pink);
}

/* WhatsApp button */
.wa-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.15),
    rgba(37, 211, 102, 0.06)
  );
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 16px;
  padding: 1.4rem 1.8rem;
  text-decoration: none;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s;
  cursor: none;
}
.wa-btn:hover {
  transform: translateX(6px);
  border-color: rgba(37, 211, 102, 0.5);
}
.wa-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(37, 211, 102, 0.15);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.wa-text strong {
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  display: block;
  color: var(--white);
}
.wa-text span {
  font-size: 0.8rem;
  color: rgba(249, 247, 244, 0.45);
}

/* Hours card */
.hours-card {
  border-radius: 20px;
  padding: 1.6rem 1.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.hours-card h4 {
  font-family: "Syne", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  color: rgba(249, 247, 244, 0.7);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.84rem;
}
.hours-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.hours-row .day {
  color: rgba(249, 247, 244, 0.5);
}
.hours-row .time {
  font-weight: 500;
}
.hours-row .badge-open {
  background: rgba(168, 255, 62, 0.12);
  color: var(--lime);
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.hours-row .badge-closed {
  background: rgba(249, 247, 244, 0.06);
  color: rgba(249, 247, 244, 0.3);
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ═══════════════════════
       MAP SECTION
    ═══════════════════════ */
.map-section {
  padding: 0 5vw 12vh;
  position: relative;
}
.map-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.map-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.map-header h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}
.map-header p {
  font-size: 0.88rem;
  color: rgba(249, 247, 244, 0.45);
  max-width: 350px;
  line-height: 1.6;
}
.map-frame {
  width: 100%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) saturate(0.6);
}
.map-overlay-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  max-width: 300px;
}
.map-overlay-card strong {
  font-family: "Syne", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.3rem;
}
.map-overlay-card span {
  font-size: 0.8rem;
  color: rgba(249, 247, 244, 0.5);
  line-height: 1.5;
}
.map-pin {
  display: inline-block;
  margin-right: 0.4rem;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .cf-row {
    grid-template-columns: 1fr;
  }
  .map-frame {
    height: 320px;
  }
  .map-overlay-card {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .map-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* =========================================================
   FOOTER SECTION
========================================================= */

.qpat-footer {
  background: #ffffff;
  border-top: 1px solid #eaeaea;
  padding: 60px 5% 20px;
  font-family: "Inter", sans-serif;
  color: #222;
  position: relative;
  bottom: 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1px 1fr 1fr auto;
  gap: 40px;
  align-items: start;
}

.footer-brand h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  max-width: 380px;
}

.newsletter {
  margin-top: 20px;
}

.newsletter label {
  font-size: 13px;
  display: block;
  margin-bottom: 8px;
  color: #444;
}

.newsletter-input {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 30px;
  overflow: hidden;
  max-width: 320px;
}

.newsletter-input input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  outline: none;
  font-size: 14px;
}

.newsletter-input button {
  background: #000;
  color: #fff;
  border: none;
  padding: 0 18px;
  cursor: pointer;
  font-size: 16px;
}

.footer-divider {
  background: #eaeaea;
  width: 1px;
  height: 100%;
}

.footer-links h4 {
  font-size: 15px;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  position: relative;
  text-decoration: none;
  color: #555;
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #e91e63; /* change to brand color if needed */
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #e91e63;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: #000;
  color: #fff;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eaeaea;
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* Tablets ONLY (below 12 inches) */
@media (max-width: 1023px) {
  /* Navbar */

  .nav-inner {
    padding-left: 9.5rem;
  }

  /* HERO */
  .vid {
    height: auto;
    min-height: 80vh;
  }

  .review-right-wrapper {
    position: absolute;
    top: 35%;
    right: 50%;
  }

  /* Second section */
  #second-section {
    padding: 4rem 0;
  }

  .first {
    flex-direction: column;
  }

  .first img {
    width: 90%;
    height: 50rem;
    margin-left: 0.5rem;
    top: 0;
  }

  .text-block p {
    max-width: 90%;
    font-size: 1.1rem;
    top: 0;
  }

  /* HORIZONTAL SECTION */
  #horizontal-section {
    /* 🔥 CRITICAL */
    width: 100%;
    height: auto;
    margin-bottom: 5rem;
  }

  .h-card {
    width: clamp(280px, 30vw, 360px);
    min-width: clamp(280px, 30vw, 360px);
    zoom: 0.7;
    margin-bottom: 4rem;
  }

  /* TEAM SECTION */
  .team-section {
    margin-top: 0; /* 🔥 REMOVE NEGATIVE MARGIN */
    padding-top: 6rem;
  }

  .team-card1,
  .team-card2,
  .team-card3 {
    width: 250px;
    margin-right: 1.2rem;
  }
}

@media (min-width: 1024px) {
  .video-wrapper {
    margin-bottom: 5rem;
  }

  .front {
    margin-bottom: 4rem;
  }
}
