:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --ink: #0f172a;
  --muted: #64748b;
}

* {
  scroll-behavior: smooth;
}

html {
  scroll-padding-top: 118px;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

::selection {
  background: rgba(37, 99, 235, 0.22);
}

.hero-shell {
  isolation: isolate;
}

.hero-fallback {
  background:
    radial-gradient(circle at 68% 24%, rgba(20, 184, 166, 0.2), transparent 30%),
    radial-gradient(circle at 18% 74%, rgba(245, 158, 11, 0.15), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(125deg, #020617, #111827 42%, #0f172a 76%, #111827);
}

.hero-network {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 72% 36%, rgba(45, 212, 191, 0.18), transparent 28%),
    radial-gradient(circle at 80% 76%, rgba(245, 158, 11, 0.12), transparent 24%);
  background-position: 0 0, 0 0, center, center;
  background-size: 72px 72px, 72px 72px, auto, auto;
  mask-image: linear-gradient(90deg, transparent 0%, black 22%, black 100%);
  opacity: 0.7;
  animation: networkDrift 18s linear infinite;
}

.hero-content-grid {
  display: grid;
  align-items: center;
  gap: clamp(36px, 6vw, 78px);
}

@media (min-width: 1024px) {
  .hero-content-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(390px, 0.72fr);
  }
}

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

.hero-bubble {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.42), transparent 12%),
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.08), transparent 62%);
  box-shadow:
    inset 18px 18px 42px rgba(255, 255, 255, 0.08),
    inset -22px -22px 54px rgba(255, 255, 255, 0.04),
    0 30px 90px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0.84;
}

.hero-bubble-one {
  right: 8%;
  top: 18%;
  width: clamp(180px, 22vw, 340px);
  height: clamp(180px, 22vw, 340px);
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.48), transparent 12%),
    radial-gradient(circle at 52% 54%, rgba(20, 184, 166, 0.18), rgba(255, 255, 255, 0.06) 58%, transparent 66%);
  animation: homeBubbleFloat 10s ease-in-out infinite;
}

.hero-bubble-two {
  left: 7%;
  bottom: 18%;
  width: clamp(92px, 10vw, 150px);
  height: clamp(92px, 10vw, 150px);
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.44), transparent 14%),
    radial-gradient(circle at 54% 56%, rgba(245, 158, 11, 0.16), rgba(255, 255, 255, 0.05) 60%, transparent 68%);
  animation: homeBubbleFloatSmall 8s ease-in-out infinite;
}

.hero-bubble-three {
  right: 30%;
  bottom: 12%;
  width: clamp(60px, 7vw, 110px);
  height: clamp(60px, 7vw, 110px);
  opacity: 0.68;
  animation: homeBubbleFloatTiny 7s ease-in-out infinite;
}

.hero-bubble-four {
  left: 42%;
  top: 18%;
  width: clamp(44px, 5vw, 78px);
  height: clamp(44px, 5vw, 78px);
  opacity: 0.46;
  animation: homeBubbleDrift 11s ease-in-out infinite;
}

.hero-bubble-five {
  right: 17%;
  top: 64%;
  width: clamp(38px, 4vw, 66px);
  height: clamp(38px, 4vw, 66px);
  opacity: 0.42;
  animation: homeBubbleDrift 9s ease-in-out infinite reverse;
}

#siteHeader {
  isolation: isolate;
  position: sticky !important;
  top: 0 !important;
  left: auto !important;
  right: auto !important;
  width: 100%;
  z-index: 10000 !important;
  background: #111827 !important;
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.18);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

#siteHeader::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #111827;
  content: "";
}

#siteHeader::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  z-index: 0;
  height: 18px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(17, 24, 39, 0.28), rgba(17, 24, 39, 0));
  content: "";
}

#siteHeader > * {
  position: relative;
  z-index: 2;
}

#siteHeader a,
#siteHeader button {
  color: white;
}

#siteHeader .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

#siteHeader .nav-link:hover,
#siteHeader .active-link {
  color: #93c5fd;
}

#siteHeader a[href="contact.html"] {
  color: white;
}

#siteHeader a[href="contact.html"]:hover {
  color: #0f172a;
}

#siteHeader a[href="#meeting"] {
  color: white;
}

#siteHeader.is-scrolled {
  background: #111827 !important;
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.28);
}

.nav-link {
  position: relative;
  transition: color 180ms ease;
}

.nav-link::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #60a5fa;
  content: "";
  transition: width 180ms ease;
}

.nav-link:hover {
  color: #93c5fd;
}

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

.group.relative::before {
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 16px;
  content: "";
}

.active-link {
  color: #93c5fd;
}

.active-link::after {
  width: 100%;
}

.dropdown-link {
  display: block;
  border-radius: 12px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.88);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.dropdown-panel {
  overflow: hidden;
  background: #111827 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.35) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.dropdown-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  transform: translateX(3px);
}

.mobile-link,
.mobile-details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 14px;
  font-size: 17px;
  font-weight: 700;
}

.mobile-details summary {
  cursor: pointer;
  list-style: none;
}

.metric-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 22px;
  backdrop-filter: blur(18px);
}

.metric-card strong {
  display: block;
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.metric-card strong::after {
  content: "+";
}

.metric-card:nth-child(3) strong::after {
  content: "%";
}

.metric-card span {
  margin-top: 8px;
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.hero-command-center {
  position: relative;
  display: grid;
  min-height: 520px;
  align-items: center;
}

.hero-command-center::before {
  position: absolute;
  inset: 8% 4% 10% 4%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 72% 22%, rgba(45, 212, 191, 0.18), transparent 36%);
  box-shadow: 0 30px 90px rgba(2, 6, 23, 0.34);
  content: "";
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.command-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.34);
  color: white;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.command-main {
  left: 4%;
  top: 12%;
  width: min(390px, 86%);
  padding: 26px;
  animation: commandFloat 8s ease-in-out infinite;
}

.command-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #bae6fd;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.command-topline strong {
  color: #fbbf24;
}

.command-main h2 {
  margin-top: 24px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.08;
}

.command-bars {
  margin-top: 24px;
  display: grid;
  gap: 11px;
}

.command-bars span {
  display: block;
  width: var(--w);
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22d3ee, #fbbf24);
  animation: barPulse 2.8s ease-in-out infinite;
}

.command-bars span:nth-child(2) {
  animation-delay: 0.25s;
}

.command-bars span:nth-child(3) {
  animation-delay: 0.5s;
}

.command-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.command-tags span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 11px;
  color: #e0f2fe;
  font-size: 12px;
  font-weight: 900;
}

.command-reel {
  right: 6%;
  top: 28%;
  width: 150px;
  padding: 14px;
  animation: commandFloatSmall 7s ease-in-out infinite;
}

.reel-screen {
  position: relative;
  display: grid;
  aspect-ratio: 9 / 14;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.78)),
    radial-gradient(circle at 50% 28%, rgba(245, 158, 11, 0.48), transparent 28%),
    linear-gradient(135deg, #0f172a, #0f766e);
}

.play-dot {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
}

.reel-screen small {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-weight: 900;
}

.command-card h3 {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 900;
}

.command-card p {
  margin-top: 7px;
  color: rgba(226, 232, 240, 0.75);
  font-size: 13px;
  line-height: 1.45;
}

.command-shoot {
  left: 12%;
  bottom: 10%;
  width: 210px;
  padding: 22px;
  animation: commandFloatSmall 7.5s ease-in-out infinite reverse;
}

.camera-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  background: rgba(245, 158, 11, 0.16);
  color: #fbbf24;
  font-size: 28px;
  font-weight: 900;
}

.command-web {
  right: 2%;
  bottom: 12%;
  width: 220px;
  padding: 20px;
  animation: commandFloat 8.5s ease-in-out infinite reverse;
}

.web-window {
  display: block;
  width: 100%;
  height: 76px;
  border-radius: 18px;
  background:
    linear-gradient(#ffffff 0 13px, transparent 13px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.95) 0 38%, rgba(251, 191, 36, 0.9) 38% 68%, rgba(255, 255, 255, 0.35) 68% 100%);
  opacity: 0.9;
}

.section-padding {
  padding: 110px 0 96px;
}

section[id] {
  scroll-margin-top: 110px;
}

.eyebrow {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dark-eyebrow {
  display: inline-flex;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  padding: 10px 16px;
  color: #93c5fd;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  font-weight: 900;
  line-height: 1.06;
}

.section-text {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: var(--blue);
  padding: 16px 28px;
  color: white;
  font-weight: 900;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.22);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.primary-btn:hover {
  background: var(--blue-dark);
  box-shadow: 0 24px 46px rgba(37, 99, 235, 0.28);
  transform: translateY(-4px);
}

.secondary-dark-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 16px 28px;
  color: white;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.secondary-dark-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #ffffff;
  padding: 16px 28px;
  color: var(--ink);
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.outline-btn:hover {
  border-color: rgba(37, 99, 235, 0.42);
  color: var(--blue);
  transform: translateY(-4px);
}

.orbit-card {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: #0f172a;
  color: white;
  padding: 18px;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.16);
  animation: floatY 4s ease-in-out infinite;
}

.orbit-top {
  left: 50%;
  top: 0;
  width: 190px;
  min-height: 90px;
  transform: translateX(-50%);
}

.orbit-right {
  right: 0;
  top: 50%;
  width: 132px;
  min-height: 116px;
  transform: translateY(-50%);
}

.orbit-bottom {
  bottom: 0;
  left: 50%;
  width: 190px;
  min-height: 90px;
  transform: translateX(-50%);
}

.orbit-left {
  left: 0;
  top: 50%;
  width: 132px;
  min-height: 116px;
  transform: translateY(-50%);
}

.service-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: white;
  padding: 30px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::before {
  position: absolute;
  inset: auto -20% -55% -20%;
  height: 170px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.16), rgba(20, 184, 166, 0.14));
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover {
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
  transform: translateY(-8px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 18px;
  background: #eff6ff;
  color: var(--blue);
  font-weight: 900;
}

.service-card > span {
  position: absolute;
  right: 26px;
  top: 24px;
  color: var(--blue);
  font-size: 28px;
  transition: transform 180ms ease;
}

.service-card:hover > span {
  transform: translate(4px, -4px);
}

.service-card h3 {
  position: relative;
  margin-top: 28px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.service-card p {
  position: relative;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

#creative {
  position: relative;
  overflow: hidden;
}

.absolute-glow {
  position: absolute;
  left: 50%;
  top: -120px;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.2);
  filter: blur(70px);
  transform: translateX(-50%);
}

.stats-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  padding: 32px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.mini-stat {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  padding: 20px;
}

.mini-stat strong {
  display: block;
  color: #60a5fa;
  font-size: 30px;
  font-weight: 900;
}

.mini-stat span {
  margin-top: 7px;
  display: block;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.4;
}

.about-hero-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(22px);
}

.about-snapshot-row {
  display: grid;
  gap: 6px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.about-snapshot-row span {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-snapshot-row strong {
  color: white;
  font-size: 18px;
  line-height: 1.35;
}

.mission-card {
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  background: white;
  padding: 34px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.mission-card:hover {
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.11);
  transform: translateY(-6px);
}

.mission-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mission-card h3 {
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 900;
  line-height: 1.12;
}

.mission-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.about-timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.about-timeline::before {
  position: absolute;
  bottom: 20px;
  left: 30px;
  top: 20px;
  width: 2px;
  background: linear-gradient(#2563eb, rgba(37, 99, 235, 0.08));
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
  backdrop-filter: blur(18px);
}

.timeline-item span {
  z-index: 1;
  display: grid;
  height: 62px;
  place-items: center;
  border-radius: 18px;
  background: #2563eb;
  color: white;
  font-size: 22px;
  font-weight: 900;
}

.timeline-item h3 {
  color: white;
  font-size: 22px;
  font-weight: 900;
}

.timeline-item p {
  margin-top: 7px;
  color: #94a3b8;
  line-height: 1.65;
}

.portfolio-hero-bg {
  background:
    radial-gradient(circle at 18% 30%, rgba(37, 99, 235, 0.28), transparent 34%),
    radial-gradient(circle at 82% 22%, rgba(20, 184, 166, 0.2), transparent 30%),
    linear-gradient(135deg, #020617, #0f172a 42%, #172554);
}

.portfolio-preview {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px);
}

.portfolio-preview-main {
  min-height: 280px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.94), rgba(20, 184, 166, 0.72)),
    linear-gradient(135deg, #1e293b, #0f172a);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.portfolio-preview-main span {
  width: max-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-preview-main h2 {
  margin-top: 18px;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.05;
}

.portfolio-preview-main p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.preview-tile {
  margin-top: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px 10px;
  text-align: center;
  font-weight: 900;
  color: #dbeafe;
}

.portfolio-jump {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: white;
  padding: 22px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.portfolio-jump:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
}

.portfolio-jump span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: #eff6ff;
  color: var(--blue);
  font-weight: 900;
}

.portfolio-jump strong {
  color: var(--ink);
  font-size: 18px;
}

.project-card {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  background: white;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.project-card:hover {
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.13);
  transform: translateY(-8px);
}

.project-thumb {
  display: flex;
  min-height: 230px;
  align-items: flex-end;
  padding: 22px;
}

.project-thumb span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  padding: 9px 14px;
  color: white;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.blue-thumb {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.92), rgba(59, 130, 246, 0.45)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.14) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.12) 0 1px, transparent 1px 34px);
}

.teal-thumb {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.94), rgba(45, 212, 191, 0.4)),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.3), transparent 20%);
}

.amber-thumb {
  background:
    linear-gradient(135deg, rgba(217, 119, 6, 0.9), rgba(37, 99, 235, 0.55)),
    radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.28), transparent 22%);
}

.project-type {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-card h3 {
  margin-top: 10px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.18;
}

.project-card p:not(.project-type) {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.reel-card {
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  background: white;
  padding: 16px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.reel-card:hover {
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.12);
  transform: translateY(-8px);
}

.reel-frame {
  position: relative;
  display: flex;
  aspect-ratio: 9 / 16;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.82)),
    radial-gradient(circle at 50% 22%, rgba(37, 99, 235, 0.56), transparent 28%),
    linear-gradient(145deg, #1e293b, #020617);
  padding: 20px;
  color: white;
}

.reel-frame::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  content: "";
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(14px);
}

.reel-frame p {
  position: relative;
  font-weight: 900;
}

.reel-card h3 {
  margin-top: 18px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
}

.reel-card > p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.reel-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 18px;
}

.reel-showcase .reel-card {
  min-height: 210px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 255, 0.86)),
    #ffffff;
  padding: 26px;
}

.reel-showcase .reel-card-tall {
  grid-row: span 2;
  min-height: 438px;
  background:
    linear-gradient(160deg, rgba(15, 23, 42, 0.16), rgba(15, 23, 42, 0.82)),
    radial-gradient(circle at 50% 18%, rgba(37, 99, 235, 0.6), transparent 30%),
    linear-gradient(145deg, #1e293b, #020617);
  color: white;
}

.reel-showcase .reel-card-wide {
  grid-column: span 2;
  min-height: 180px;
}

.reel-showcase .reel-card span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  background: #dbeafe;
  color: var(--blue);
  font-weight: 900;
}

.reel-showcase .reel-card-tall span {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.reel-showcase .reel-card h3 {
  margin-top: 72px;
  font-size: 24px;
}

.reel-showcase .reel-card-tall h3 {
  margin-top: 230px;
  color: white;
  font-size: 34px;
}

.reel-showcase .reel-card-tall p {
  color: rgba(255, 255, 255, 0.76);
}

.shoot-grid {
  display: grid;
  gap: 18px;
}

.shoot-card {
  min-height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(160deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.88)),
    radial-gradient(circle at 75% 20%, rgba(37, 99, 235, 0.36), transparent 28%),
    linear-gradient(135deg, #334155, #020617);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease, border-color 220ms ease;
}

.shoot-card:hover {
  border-color: rgba(96, 165, 250, 0.36);
  transform: translateY(-6px);
}

.shoot-card span {
  width: max-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 12px;
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.shoot-card h3 {
  margin-top: 16px;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.1;
}

.shoot-card p {
  margin-top: 10px;
  max-width: 520px;
  color: #cbd5e1;
  line-height: 1.7;
}

.contact-hero-bg {
  background:
    radial-gradient(circle at 18% 22%, rgba(37, 99, 235, 0.3), transparent 34%),
    radial-gradient(circle at 76% 52%, rgba(251, 191, 36, 0.16), transparent 28%),
    linear-gradient(135deg, #020617, #0f172a 48%, #1e3a8a);
}

.contact-quick-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px);
}

.contact-quick-panel h2 {
  margin-top: 16px;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
}

.contact-quick-panel > p:last-of-type {
  margin-top: 12px;
  color: #cbd5e1;
  line-height: 1.7;
}

.quick-contact-row {
  display: grid;
  gap: 5px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  padding: 17px;
}

.quick-contact-row span {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-contact-row strong {
  color: white;
  line-height: 1.35;
}

.contact-info-card {
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: white;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.contact-info-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-info-card strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.contact-info-card p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-form {
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  background: white;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

.contact-form h3 {
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.08;
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  background: #f8fafc;
  padding: 15px 16px;
  color: var(--ink);
  font-weight: 600;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(37, 99, 235, 0.72);
  background: white;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.faq-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
  backdrop-filter: blur(18px);
}

.faq-card summary {
  cursor: pointer;
  color: white;
  font-size: 19px;
  font-weight: 900;
}

.faq-card p {
  margin-top: 14px;
  color: #94a3b8;
  line-height: 1.7;
}

.service-hero-bg {
  background:
    radial-gradient(circle at 16% 22%, rgba(37, 99, 235, 0.3), transparent 32%),
    radial-gradient(circle at 82% 48%, rgba(20, 184, 166, 0.18), transparent 28%),
    linear-gradient(135deg, #020617, #0f172a 48%, #1e40af);
}

.shoot-hero-bg {
  background:
    radial-gradient(circle at 18% 28%, rgba(37, 99, 235, 0.26), transparent 32%),
    radial-gradient(circle at 80% 36%, rgba(251, 191, 36, 0.18), transparent 30%),
    linear-gradient(135deg, #020617, #111827 48%, #0f766e);
}

.service-jump-grid {
  display: grid;
  gap: 14px;
}

.service-detail-list {
  display: grid;
  gap: 22px;
}

.service-detail-card,
.shoot-detail-card {
  scroll-margin-top: 110px;
  display: grid;
  gap: 26px;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  background: white;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-detail-card:hover,
.shoot-detail-card:hover {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 30px 72px rgba(15, 23, 42, 0.12);
  transform: translateY(-5px);
}

.service-detail-card span,
.shoot-detail-card span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-detail-card h2,
.shoot-detail-card h2 {
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
}

.service-detail-card p,
.shoot-detail-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.service-detail-card ul,
.shoot-detail-card ul {
  display: grid;
  gap: 12px;
  align-content: start;
}

.service-detail-card li,
.shoot-detail-card li {
  position: relative;
  padding-left: 28px;
  color: #334155;
  font-weight: 700;
  line-height: 1.55;
}

.service-detail-card li::before,
.shoot-detail-card li::before {
  position: absolute;
  left: 0;
  top: 4px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 999px;
  background: #dbeafe;
  color: var(--blue);
  content: "✓";
  font-size: 11px;
  font-weight: 900;
}

.service-detail-card a,
.shoot-detail-card a {
  align-self: start;
  justify-self: start;
  border-radius: 999px;
  background: var(--blue);
  padding: 14px 20px;
  color: white;
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.service-detail-card a:hover,
.shoot-detail-card a:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
}

.shoot-service-tile {
  display: grid;
  min-height: 160px;
  align-content: space-between;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(37, 99, 235, 0.08), transparent 55%),
    white;
  padding: 24px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.shoot-service-tile:hover {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.12);
  transform: translateY(-6px);
}

.shoot-service-tile span {
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
}

.shoot-service-tile strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
}

.single-service-hero {
  position: relative;
  min-height: 76vh;
  overflow: hidden;
  background: #020617;
  padding: 150px 20px 90px;
  color: white;
}

.single-service-hero > .absolute {
  z-index: 0;
}

.single-service-hero::before,
.single-service-hero::after {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  pointer-events: none;
  content: "";
  filter: blur(0.2px);
}

.single-service-hero::before {
  right: 8%;
  top: 20%;
  width: clamp(180px, 22vw, 340px);
  height: clamp(180px, 22vw, 340px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.38), transparent 12%),
    radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.22), rgba(255, 255, 255, 0.05) 58%, transparent 64%);
  box-shadow:
    inset 22px 22px 44px rgba(255, 255, 255, 0.08),
    inset -28px -28px 55px rgba(37, 99, 235, 0.14),
    0 36px 90px rgba(37, 99, 235, 0.18);
  animation: bubbleFloat 9s ease-in-out infinite;
}

.single-service-hero::after {
  right: 28%;
  bottom: 14%;
  width: clamp(76px, 9vw, 140px);
  height: clamp(76px, 9vw, 140px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.42), transparent 14%),
    radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.2), rgba(255, 255, 255, 0.04) 60%, transparent 66%);
  box-shadow: 0 22px 60px rgba(20, 184, 166, 0.14);
  animation: bubbleFloatSmall 7s ease-in-out infinite;
}

.single-service-hero .service-hero-bg::after,
.single-service-hero .shoot-hero-bg::after {
  position: absolute;
  left: 8%;
  bottom: 18%;
  z-index: 1;
  width: clamp(54px, 7vw, 96px);
  height: clamp(54px, 7vw, 96px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.36), transparent 15%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 54px rgba(37, 99, 235, 0.16);
  content: "";
  animation: bubbleFloatTiny 8s ease-in-out infinite;
}

.single-service-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.single-service-inner span {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  color: #dbeafe;
  font-size: 14px;
  font-weight: 900;
  backdrop-filter: blur(16px);
}

.single-service-inner h1 {
  max-width: 900px;
  margin-top: 28px;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  font-weight: 900;
  line-height: 0.98;
}

.single-service-inner p {
  max-width: 760px;
  margin-top: 24px;
  color: #cbd5e1;
  font-size: 20px;
  line-height: 1.75;
}

.single-info-card {
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  background: white;
  padding: 30px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.single-info-card:hover {
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
  transform: translateY(-6px);
}

.single-info-card h2 {
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
}

.single-info-card ul {
  margin-top: 20px;
  display: grid;
  gap: 13px;
}

.single-info-card li {
  position: relative;
  padding-left: 28px;
  color: #475569;
  font-weight: 700;
  line-height: 1.55;
}

.single-info-card li::before {
  position: absolute;
  left: 0;
  top: 4px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 999px;
  background: #dbeafe;
  color: var(--blue);
  content: "✓";
  font-size: 11px;
  font-weight: 900;
}

.faq-light-card {
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: white;
  padding: 24px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}

.faq-light-card summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.faq-light-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.75;
}

@media (min-width: 768px) {
  .shoot-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .large-shoot {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 520px;
  }

  .service-jump-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .service-detail-card,
  .shoot-detail-card {
    grid-template-columns: 1.1fr 0.85fr auto;
    align-items: center;
  }
}

.feature-card {
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: white;
  padding: 30px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.feature-card:hover {
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.11);
  transform: translateY(-6px);
}

.feature-card span {
  color: var(--blue);
  font-size: 34px;
  font-weight: 900;
}

.feature-card h3 {
  margin-top: 22px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.feature-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.industry-card {
  min-height: 260px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.78)),
    #ffffff;
  padding: 30px;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.07);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
}

.industry-card span {
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 18px;
  background: #eaf2ff;
  color: var(--blue);
  font-weight: 900;
}

.industry-card h3 {
  margin-top: 38px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.industry-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.75;
}

.process-card {
  display: flex;
  gap: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: white;
  padding: 26px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.process-card span {
  color: var(--blue);
  font-size: 30px;
  font-weight: 900;
}

.process-card h3 {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.process-card p {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.6;
}

.cta-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 0 26%, rgba(37, 99, 235, 0.13) 26.2% 26.5%, transparent 26.8%),
    linear-gradient(75deg, transparent 0 70%, rgba(20, 184, 166, 0.13) 70.2% 70.5%, transparent 70.8%);
  animation: lineDrift 8s linear infinite;
}

.footer-title {
  margin-bottom: 22px;
  font-size: 22px;
  font-weight: 900;
}

.footer-list {
  display: grid;
  gap: 14px;
  color: #94a3b8;
}

.footer-list a {
  color: inherit;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-list a:hover {
  color: white;
  transform: translateX(3px);
}

.social-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.social-link:hover {
  background: var(--blue);
  transform: translateY(-3px);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) {
  transition-delay: 80ms;
}

.reveal:nth-child(3) {
  transition-delay: 130ms;
}

.brand-logo-wrap {
  display: grid;
  width: 64px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: #05070b;
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.32);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand-logo-wrap + span {
  max-width: 220px;
  font-size: 16px;
  line-height: 1.05;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand h2 {
  font-size: 18px;
  line-height: 1.05;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.footer-logo-wrap {
  display: grid;
  width: 72px;
  height: 50px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: #05070b;
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.38);
}

.footer-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@keyframes floatY {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.08);
  }
}

@keyframes lineDrift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 180px 0;
  }
}

@keyframes networkDrift {
  0% {
    background-position: 0 0, 0 0, center, center;
  }
  100% {
    background-position: 144px 72px, 144px 72px, center, center;
  }
}

@keyframes commandFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -18px, 0);
  }
}

@keyframes commandFloatSmall {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(12px, -14px, 0);
  }
}

@keyframes barPulse {
  0%, 100% {
    opacity: 0.72;
    transform: scaleX(0.92);
    transform-origin: left center;
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes bubbleFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translate3d(-22px, -28px, 0) scale(1.05);
    opacity: 1;
  }
}

@keyframes bubbleFloatSmall {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -22px, 0) scale(1.08);
  }
}

@keyframes bubbleFloatTiny {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.55;
  }
  50% {
    transform: translate3d(14px, -18px, 0) scale(1.12);
    opacity: 0.9;
  }
}

@keyframes homeBubbleFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-26px, -34px, 0) scale(1.04);
  }
}

@keyframes homeBubbleFloatSmall {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -24px, 0) scale(1.08);
  }
}

@keyframes homeBubbleFloatTiny {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-12px, -18px, 0) scale(1.14);
  }
}

@keyframes homeBubbleDrift {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(22px, 18px, 0);
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 72px 0;
  }

  .brand-logo-wrap + span {
    max-width: 158px;
    font-size: 13px;
  }

  .single-service-hero::before {
    right: -80px;
    top: 22%;
    opacity: 0.5;
  }

  .single-service-hero::after {
    right: 18px;
    bottom: 20%;
    opacity: 0.55;
  }

  .hero-bubble-one {
    right: -110px;
    top: 21%;
    opacity: 0.48;
  }

  .hero-bubble-two {
    left: -34px;
    bottom: 18%;
    opacity: 0.42;
  }

  .hero-bubble-three,
  .hero-bubble-four,
  .hero-bubble-five {
    opacity: 0.28;
  }

  .hero-network {
    opacity: 0.45;
    mask-image: linear-gradient(180deg, black 0%, black 75%, transparent 100%);
  }

  .hero-command-center {
    min-height: 540px;
    margin-top: 24px;
  }

  .hero-command-center::before {
    inset: 4% 0 5% 0;
  }

  .command-main {
    left: 0;
    top: 4%;
    width: 88%;
  }

  .command-reel {
    right: 0;
    top: 36%;
    width: 136px;
  }

  .command-shoot {
    left: 0;
    bottom: 6%;
    width: 190px;
  }

  .command-web {
    right: 0;
    bottom: 4%;
    width: 190px;
  }

  .reel-showcase {
    grid-template-columns: 1fr;
  }

  .reel-showcase .reel-card,
  .reel-showcase .reel-card-tall,
  .reel-showcase .reel-card-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }

  .reel-showcase .reel-card h3,
  .reel-showcase .reel-card-tall h3 {
    margin-top: 58px;
    font-size: 24px;
  }

  .orbit-card {
    font-size: 13px;
  }

  .orbit-top,
  .orbit-bottom {
    width: 150px;
  }

  .orbit-left,
  .orbit-right {
    width: 112px;
  }

  .process-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


.brand-logo{
  height: 80px !important;
  width: auto !important;
  object-fit: contain;
  display: block;
  transform: scale(2.2);
  transform-origin: left center;
  margin-top: 20px;
}

.logo-link{
  display: flex;
  align-items: center;
  gap: 30px;
}