:root {
  color-scheme: light;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #0A004A;
  --text-main: #0A004A;
  --text-soft: #6b5c8a;
  --line-soft: rgba(255, 8, 189, 0.12);
  --glass-white: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.92);
  --accent: #FF08BD;
  --accent-deep: #cc009a;
  --shadow-soft: 0 28px 80px rgba(255, 8, 189, 0.10);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  line-height: 1.6;
  color: var(--text-main);
  overflow-x: hidden;
}

.page-shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 32px 32px 60px;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 10;
  transform: translateZ(0);
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-bottom: 50px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-label {
  position: relative;
  z-index: 3;
  margin: 0;
  margin-right: auto;
  padding: 0 34px 0 20px;
  color: #0A004A;
  font-size: 1.05rem;
  font-weight: 800;
  font-family: 'Poppins', 'Inter', sans-serif;
  line-height: 1;
  white-space: nowrap;
}

.capsule-menu {
  --menu-x: 50%;
  --menu-y: 50%;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  width: min(100%, 1180px);
  gap: 6px;
  padding: 10px 12px 10px 18px;
  border-radius: 999px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.63), rgba(255, 240, 252, 0)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.514), rgba(255, 8, 189, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 2px 2px rgba(255, 255, 255, 0.95),
    inset 0 -16px 24px rgba(255, 8, 189, 0.04),
    0 22px 50px rgba(255, 8, 189, 0.08);
}

.capsule-menu__effect,
.capsule-menu__tint,
.capsule-menu__shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.capsule-menu__effect {
  z-index: 0;
  backdrop-filter: blur(8px) saturate(140%);
}

.capsule-menu__tint {
  z-index: 1;
  background:
    radial-gradient(circle at var(--menu-x) var(--menu-y), rgba(255, 255, 255, 0.547), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.562), rgba(255, 230, 248, 0.3)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 8, 189, 0.04));
}

.capsule-menu__shine {
  z-index: 2;
  box-shadow:
    inset 2px 2px 1px 0 rgba(255, 255, 255, 0.68),
    inset -1px -1px 1px 1px rgba(255, 255, 255, 0.52),
    inset 0 -18px 24px rgba(171, 183, 202, 0.08);
}

.glass-filter {
  position: absolute;
  width: 0;
  height: 0;
}

.capsule-menu__links {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-toggle {
  position: relative;
  z-index: 3;
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 230, 248, 0.6)),
    rgba(255, 255, 255, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 22px rgba(98, 119, 146, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #173862;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.capsule-menu.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.capsule-menu.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.capsule-menu.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.capsule-menu a {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #0A004A;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  transition: color 0.25s ease, transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.capsule-menu a:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.capsule-menu a.is-active {
  min-width: 118px;
  min-height: 58px;
  padding: 0 24px;
  color: #FF08BD;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 230, 248, 0.8)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 8, 189, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 2px 2px rgba(255, 255, 255, 0.95),
    inset 0 -12px 18px rgba(255, 8, 189, 0.06),
    0 8px 18px rgba(255, 8, 189, 0.12);
}

.capsule-menu a.is-active::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.16) 44%, rgba(195, 207, 226, 0.12));
  pointer-events: none;
}

.capsule-menu.is-pulsing {
  animation: menuPulse 480ms cubic-bezier(0.175, 0.885, 0.32, 1.8);
}

.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100svh - 160px);
  overflow: visible;
  padding: 60px 0 52px;
  text-align: center;
}

.hero-grid {
  position: absolute;
  top: -240px;
  left: 50%;
  width: 100vw;
  height: 520px;
  transform: translateX(-50%);
  will-change: transform;
  background-image:
    linear-gradient(rgba(255, 8, 189, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 8, 189, 0.1) 1px, transparent 1px);
  background-position: 0 0;
  background-size: 44px 44px;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%),
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.78) 42%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%),
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.78) 42%, transparent 100%);
  mask-composite: intersect;
  opacity: 0;
  pointer-events: none;
  animation: gridReveal 900ms ease forwards, gridDrift 18s linear infinite;
  will-change: transform, opacity;
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.92), transparent 32%),
    linear-gradient(180deg, rgba(255, 8, 189, 0.07), transparent 72%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── hero-grid spans full width ── */
.hero-grid {
  z-index: 0;
}

.hero-copy h1 {
  max-width: 700px;
  margin: 0 auto 22px;
  color: #0A004A;
  font-size: 3.6rem;
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.hero-copy h1 i {
  font-style: italic;
}

.hero-copy p {
  max-width: 560px;
  margin: 0 auto 30px;
  color: var(--text-soft);
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}

.liquid-cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 52px;
  width: auto;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 8, 189, 0.22);
  border-radius: 999px;
  color: #FF08BD;
  font-weight: 800;
  font-family: 'Poppins', 'Inter', sans-serif;
  text-decoration: none;
  box-shadow:
    inset 0 2px 2px rgba(255, 255, 255, 0.374),
    inset 0 -12px 18px rgba(255, 8, 189, 0.06),
    0 18px 38px rgba(255, 8, 189, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* ── CTA + HR divider block ── */
.cta-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 24px 0 36px;
}

.hero-divider {
  height: 4px;
  background: var(--accent);
  border: none;
  margin: -26px 0 0;
  width: 100%;
  z-index: -1;
}

.liquid-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 2px 2px rgba(255, 255, 255, 0.9),
    inset 0 -12px 18px rgba(170, 186, 210, 0.16),
    0 24px 48px rgba(83, 114, 145, 0.2);
}

.liquid-cta__effect,
.liquid-cta__tint,
.liquid-cta__shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.liquid-cta__effect {
  z-index: 0;
  backdrop-filter: blur(8px) saturate(150%);
}

.liquid-cta__tint {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 230, 248, 0.65)),
    linear-gradient(135deg, rgba(255, 8, 189, 0.12), rgba(255, 255, 255, 0.52));
}

.liquid-cta__shine {
  z-index: 2;
  box-shadow:
    inset 2px 2px 1px rgba(255, 255, 255, 0.72),
    inset -1px -1px 1px rgba(255, 255, 255, 0.54);
}

.liquid-cta__text {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: transform 0.15s ease;
}

/* ── Ripple layer ── */
.liquid-cta__ripple {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 4;
  overflow: hidden;
}

.liquid-cta__ripple::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 8, 189, 0.38);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}

/* Click: press down + ripple burst */
.liquid-cta:active {
  transform: scale(0.96) translateY(1px);
}

.liquid-cta.is-clicking .liquid-cta__ripple::after {
  animation: ctaRipple 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes ctaRipple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.7;
  }

  60% {
    transform: translate(-50%, -50%) scale(18);
    opacity: 0.22;
  }

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

.hero-support-line {
  max-width: 360px;
  margin: 0 auto;
  color: #53677c;
  font-size: 0.96rem;
  line-height: 1.45;
  text-align: center;
}

/* ══════════════════════════════════════════
   LOTTIE WRAPPER
══════════════════════════════════════════ */
.lottie-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
}

.hero-lottie {
  width: 100%;
  height: auto;
  max-height: 400px;
  aspect-ratio: 1 / 1;
  display: block;
}

/* old service-studio removed – replaced by Lottie */

.content-section {
  position: relative;
  scroll-margin-top: 120px;
  padding: 86px 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-bottom: 40px;
}

.section-heading span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  font-family: 'Poppins', 'Inter', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: #0A004A;
  font-size: 3.2rem;
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

/* ══ REVEAL ANIMATION ══ */
@keyframes fadeUpReveal {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-reveal] {
  opacity: 0;
  will-change: transform, opacity;
  /* Keep hidden until observer triggers */
}

[data-reveal].is-visible {
  animation: fadeUpReveal 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ══ SERVICES MEGA GRID ══ */
.services-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  position: relative;
  border-radius: 28px;
  padding: 30px 28px 28px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 8, 189, 0.10);
  box-shadow: 0 16px 48px rgba(255, 8, 189, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 8, 189, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(255, 8, 189, 0.13);
}

.svc-card--featured {
  background: linear-gradient(145deg, rgba(255, 8, 189, 0.06) 0%, rgba(255, 255, 255, 0.95) 50%);
  border-color: rgba(255, 8, 189, 0.22);
}

.svc-card--wide {
  grid-column: span 2;
}

.svc-card__icon {
  width: 200px;
  height: 200px;
  margin-bottom: 12px;
  display: block;
}

.svc-lottie {
  width: 200px;
  height: 200px;
  display: block;
}

.svc-num {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.svc-card h3 {
  margin: 0 0 10px;
  color: #0A004A;
  font-size: 1.35rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.svc-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 18px;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.svc-tags li {
  font-size: 0.74rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: var(--accent);
  background: rgba(255, 8, 189, 0.08);
  border: 1px solid rgba(255, 8, 189, 0.15);
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}

/* ══ STATS STRIP ══ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 20px;
  padding: 40px 44px;
  border-radius: 32px;
  background: linear-gradient(135deg, #FF08BD 0%, #cc009a 100%);
  box-shadow: 0 24px 60px rgba(255, 8, 189, 0.25);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.stat-item strong {
  font-size: 2.8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-item span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

/* ══ WHY CHOOSE US ══ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-card {
  border-radius: 24px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 8, 189, 0.10);
  box-shadow: 0 12px 40px rgba(255, 8, 189, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(255, 8, 189, 0.12);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.why-card h4 {
  margin: 0 0 8px;
  color: #0A004A;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.why-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ══ CLIENTS ══ */
.clients-logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.client-pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 8, 189, 0.13);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #0A004A;
  box-shadow: 0 4px 16px rgba(255, 8, 189, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.client-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255, 8, 189, 0.12);
}

/* ══ PROJECTS BENTO ══ */
.projects-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.proj-card {
  border-radius: 24px;
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 8, 189, 0.10);
  box-shadow: 0 12px 36px rgba(255, 8, 189, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proj-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(255, 8, 189, 0.13);
}

.proj-card--big {
  grid-column: span 2;
  background: linear-gradient(145deg, rgba(255, 8, 189, 0.05) 0%, rgba(255, 255, 255, 0.95) 60%);
  border-color: rgba(255, 8, 189, 0.18);
}

.proj-tag {
  font-size: 0.72rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.proj-card h4 {
  margin: 0 0 8px;
  color: #0A004A;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.proj-card p {
  margin: 0 0 14px;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.proj-result {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: linear-gradient(90deg, #FF08BD, #cc009a);
  border-radius: 999px;
  padding: 5px 14px;
}

/* ══ GALLERY MASONRY ══ */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}

.gal-item {
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
}

.gal-item--tall {
  grid-row: span 2;
}

.gal-inner {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: transform 0.4s ease;
}

.gal-item:hover .gal-inner {
  transform: scale(1.03);
}

.gal-inner--1 {
  background: linear-gradient(to top, rgba(10, 0, 74, 0.4), transparent), url('assets/gallery1.png') center/cover no-repeat;
}

.gal-inner--2 {
  background: linear-gradient(to top, rgba(10, 0, 74, 0.4), transparent), url('assets/gallery2.png') center/cover no-repeat;
}

.gal-inner--3 {
  background: linear-gradient(to top, rgba(10, 0, 74, 0.4), transparent), url('assets/gallery3.png') center/cover no-repeat;
}

.gal-inner--4 {
  background: linear-gradient(to top, rgba(10, 0, 74, 0.4), transparent), url('assets/gallery4.png') center/cover no-repeat;
}

.gal-inner--5 {
  background: linear-gradient(to top, rgba(10, 0, 74, 0.4), transparent), url('assets/gallery5.png') center/cover no-repeat;
}

.gal-inner--6 {
  background: linear-gradient(to top, rgba(10, 0, 74, 0.4), transparent), url('assets/gallery6.png') center/cover no-repeat;
}

.gal-label {
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 4px 12px;
}

/* ══ TESTIMONIALS ══ */
.testimonials-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.testimonials-track {
  display: flex;
  gap: 20px;
  animation: testiScroll 32s linear infinite;
  width: max-content;
}

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

@keyframes testiScroll {
  0% {
    transform: translateX(0);
  }

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

.testi-card {
  flex: 0 0 340px;
  border-radius: 24px;
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 8, 189, 0.12);
  box-shadow: 0 12px 40px rgba(255, 8, 189, 0.07);
}

.testi-stars {
  color: #FF08BD;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testi-card p {
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.6;
  margin: 0 0 18px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF08BD, #cc009a);
  color: #fff;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  color: #0A004A;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
}

.testi-author span {
  display: block;
  color: var(--text-soft);
  font-size: 0.78rem;
}

/* ══ CTA BANNER ══ */
.cta-banner {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  padding: 72px 54px;
  text-align: center;
  margin: 40px 0;
  isolation: isolate;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A004A 0%, #2d0080 50%, #FF08BD 100%);
  z-index: 0;
}

.cta-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 8, 189, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 45%);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner__content .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.cta-banner__content h2 {
  margin: 8px 0 14px;
  color: #fff;
  font-size: 2.8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  line-height: 1.08;
}

.cta-banner__content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin: 0 0 32px;
}

.cta-banner__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.outline-cta {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 28px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.outline-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

/* ══ FOOTER ══ */
.site-footer {
  padding: 52px 0 20px;
  border-top: 1px solid rgba(255, 8, 189, 0.10);
  margin-top: 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 10px 0 16px;
  max-width: 280px;
}

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

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 8, 189, 0.08);
  border: 1px solid rgba(255, 8, 189, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.22s ease, background 0.22s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  background: rgba(255, 8, 189, 0.16);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-col h5 {
  margin: 0 0 14px;
  color: #0A004A;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col a {
  display: block;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.86rem;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 8, 189, 0.08);
  color: var(--text-soft);
  font-size: 0.80rem;
}

@keyframes gridReveal {
  from {
    opacity: 0;
    transform: translate(-50%, -22px);
  }

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

@keyframes gridDrift {
  to {
    background-position: 44px 88px;
  }
}

@keyframes menuPulse {
  50% {
    transform: translateY(-1px) scale(1.01);
  }
}

@media (max-width: 980px) {
  .page-shell {
    padding: 24px 20px 40px;
  }

  .capsule-menu a {
    padding: 0 14px;
  }

  .hero-section {
    min-height: auto;
    padding: 50px 0 40px;
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  .hero-copy p {
    font-size: 1.05rem;
  }

  .lottie-wrapper {
    max-width: 380px;
  }

  .hero-lottie {
    max-height: 360px;
  }

  .section-heading h2 {
    font-size: 2.55rem;
  }

  /* new sections tablet */
  .services-mega-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-card--wide {
    grid-column: span 2;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 28px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .proj-card--big {
    grid-column: span 2;
  }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 660px) {
  .page-shell {
    padding: 14px 14px 34px;
  }

  .topbar {
    align-items: flex-start;
    top: 8px;
    margin-bottom: 24px;
    height: 58px;
    will-change: transform;
  }

  .capsule-menu__effect {
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.83);
  }

  .capsule-menu {
    display: grid;
    grid-template-columns: 1fr auto;
    justify-content: stretch;
    gap: 0;
    padding: 8px 8px 8px 18px;
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(255, 8, 189, 0.08);
  }

  .brand-label {
    width: auto;
    margin-right: 0;
    padding: 0 16px 0 0;
    text-align: left;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .capsule-menu__links {
    grid-column: 1 / -1;
    display: grid;
    width: 100%;
    max-height: 0;
    gap: 8px;
    overflow: hidden;
    padding-top: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: max-height 0.34s ease, opacity 0.22s ease, padding-top 0.28s ease, transform 0.28s ease, visibility 0s linear 0.34s;
  }

  .capsule-menu.is-open .capsule-menu__links {
    max-height: 400px;
    padding-top: 10px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .capsule-menu a {
    min-height: 44px;
    justify-content: flex-start;
    padding: 0 16px;
    font-size: 0.88rem;
    background: rgba(255, 255, 255, 0.28);
  }

  .capsule-menu a.is-active {
    min-width: 0;
    min-height: 48px;
    padding: 0 18px;
  }

  .hero-section {
    padding: 28px 0 28px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.76rem;
  }

  .lottie-wrapper {
    max-width: 300px;
  }

  .hero-lottie {
    max-height: 280px;
  }

  .hero-copy h1 {
    font-size: 2.3rem;
    line-height: 1.06;
    margin-bottom: 16px;
  }

  .hero-copy p {
    margin-bottom: 20px;
    font-size: 0.98rem;
  }

  .cta-block {
    margin: 18px 0 28px;
  }

  .hero-divider {
    margin-top: -24px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
  }

  .liquid-cta__effect {
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.83);
  }

  .hero-support-line {
    max-width: 290px;
  }

  .content-section {
    scroll-margin-top: 150px;
    padding: 54px 0;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2 {
    font-size: 2.05rem;
  }

  /* new sections mobile 660 */
  .services-mega-grid {
    grid-template-columns: 1fr;
  }

  .svc-card--wide {
    grid-column: span 1;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px 20px;
    gap: 12px;
  }

  .stat-item strong {
    font-size: 2.2rem;
  }

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

  .projects-bento {
    grid-template-columns: 1fr;
  }

  .proj-card--big {
    grid-column: span 1;
  }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .testi-card {
    flex: 0 0 280px;
    padding: 22px 18px;
  }

  .cta-banner {
    padding: 48px 24px;
    border-radius: 24px;
  }

  .cta-banner__content h2 {
    font-size: 2rem;
  }

  /* ── Mobile Footer redesign ── */
  .site-footer {
    padding: 32px 0 16px;
  }

  /* Compact brand card */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(145deg, rgba(255, 8, 189, 0.05), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(255, 8, 189, 0.12);
    border-radius: 24px;
    padding: 24px 20px 20px;
    margin-bottom: 16px;
  }

  .footer-brand p {
    font-size: 0.84rem;
    margin: 8px 0 14px;
    max-width: 260px;
  }

  .footer-socials {
    justify-content: center;
    gap: 10px;
  }

  /* Accordion links: 2-column pills */
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
  }

  .footer-col {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 8, 189, 0.10);
    border-radius: 18px;
    padding: 14px 14px 12px;
  }

  /* Hide 3rd column in 2-col grid by making it full-width */
  .footer-col:last-child {
    grid-column: span 2;
  }

  .footer-col h5 {
    font-size: 0.72rem;
    margin-bottom: 10px;
    color: var(--accent);
  }

  .footer-col a {
    font-size: 0.82rem;
    margin-bottom: 6px;
    padding: 3px 0;
  }

  /* Bottom bar */
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding-top: 14px;
    font-size: 0.75rem;
  }
}

@media (max-width: 390px) {
  .page-shell {
    padding-inline: 10px;
  }

  .capsule-menu {
    padding: 7px 7px 7px 16px;
  }

  .brand-label {
    font-size: 1rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .capsule-menu a {
    padding: 0 14px;
  }

  .hero-copy h1 {
    font-size: 1.95rem;
  }

  .lottie-wrapper {
    max-width: 250px;
  }

  .hero-lottie {
    max-height: 230px;
  }

  .section-heading h2 {
    font-size: 1.72rem;
  }

  .gallery-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 140px;
  }

  .gal-item--tall {
    grid-row: span 1;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (prefers-reduced-motion: reduce) {

  .hero-grid,
  .capsule-menu.is-pulsing,
  .testimonials-track {
    animation: none;
  }

  .hero-grid {
    opacity: 1;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ══════════════════════════════════════════
   LOADING SCREEN
══════════════════════════════════════════ */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-text {
  margin-top: -30px;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 1px;
  display: flex;
  gap: 12px;
}

.loading-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

.loading-text span:nth-child(2) {
  color: var(--accent);
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── LOGO CLOUD ── */
.logo-cloud-section {
  padding: 60px 20px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

.logo-cloud-header {
  text-align: center;
  margin-bottom: 40px;
}

.logo-cloud-eyebrow {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.logo-cloud-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: -0.03em;
  margin: 0;
}

.logo-cloud-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.015) 0%, transparent 50%, rgba(0, 0, 0, 0.015) 100%);
}

.logo-cloud-wrapper::before,
.logo-cloud-wrapper::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: var(--line-soft);
  pointer-events: none;
  z-index: 5;
}

.logo-cloud-wrapper::before {
  top: 0;
}

.logo-cloud-wrapper::after {
  bottom: 0;
}

.logo-cloud-container {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.logo-cloud-track {
  display: flex;
  gap: 42px;
  width: max-content;
  animation: logo-scroll 25s linear infinite;
  align-items: center;
}


.cloud-logo {
  height: 24px;
  width: auto;
  pointer-events: none;
  user-select: none;
  opacity: 0.6;
  filter: grayscale(100%);
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

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

.logo-cloud-blur {
  position: absolute;
  top: 0;
  height: 100%;
  width: 160px;
  pointer-events: none;
  z-index: 2;
}

.logo-cloud-blur--left {
  left: 0;
  background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(2px);
  -webkit-mask-image: linear-gradient(to right, black 0%, black 40%, transparent 100%);
  mask-image: linear-gradient(to right, black 0%, black 40%, transparent 100%);
}

.logo-cloud-blur--right {
  right: 0;
  background: linear-gradient(to left, #ffffff 10%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(2px);
  -webkit-mask-image: linear-gradient(to left, black 0%, black 40%, transparent 100%);
  mask-image: linear-gradient(to left, black 0%, black 40%, transparent 100%);
}

@media (max-width: 768px) {
  .logo-cloud-blur {
    width: 60px;
  }

  .cloud-logo {
    height: 18px;
  }
}