/* BLUE STUDIO — V5 Premium Experience
   Progressive enhancement over V4. Public pages only. */

:root {
  --v5-electric: #1689ff;
  --v5-cyan: #12dce9;
  --v5-indigo: #6b5cff;
  --v5-ink: #020817;
  --v5-ease: cubic-bezier(.22, 1, .36, 1);
  --v5-ease-inout: cubic-bezier(.65, 0, .35, 1);
}

html.v5-loading,
html.v5-loading body { overflow: hidden !important; }
html.v5-js { scroll-behavior: smooth; }

body.public-v5 { background: #f5f7fb; }
body.public-v5::after {
  content: "";
  position: fixed;
  z-index: 9998;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.public-v5 main { position: relative; isolation: isolate; }
.public-v5 ::selection { color: #fff; background: #1178f2; }

/* Loader */
.v5-loader {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(22,137,255,.23), transparent 32%),
    radial-gradient(circle at 82% 78%, rgba(18,220,233,.13), transparent 28%),
    #020817;
  transition: opacity .7s var(--v5-ease), visibility .7s var(--v5-ease);
}
.v5-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
}
.v5-loader.is-complete { opacity: 0; visibility: hidden; }
.v5-loader-inner { position: relative; width: min(420px, calc(100vw - 48px)); text-align: center; }
.v5-loader-logo {
  width: 148px;
  margin: 0 auto 30px;
  filter: drop-shadow(0 18px 34px rgba(15,119,242,.34));
  animation: v5LoaderFloat 2s ease-in-out infinite;
}
.v5-loader-label {
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,.68);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.v5-loader-track { height: 2px; overflow: hidden; background: rgba(255,255,255,.12); }
.v5-loader-track > span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--v5-electric), var(--v5-cyan));
  box-shadow: 0 0 18px rgba(18,220,233,.7);
  transition: width .16s linear;
}
@keyframes v5LoaderFloat { 50% { transform: translateY(-7px); } }

/* Transition + scroll progress */
.v5-page-wipe {
  position: fixed;
  z-index: 9999;
  inset: 0;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left;
  background: radial-gradient(circle at 20% 50%, rgba(18,220,233,.18), transparent 35%), linear-gradient(110deg, #020817, #071d3e);
}
html[dir="rtl"] .v5-page-wipe { transform-origin: right; }
.v5-page-wipe.is-leaving { animation: v5WipeIn .62s var(--v5-ease) forwards; }
@keyframes v5WipeIn { to { transform: scaleX(1); } }

.v5-scroll-progress {
  position: fixed;
  z-index: 180;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
  background: rgba(255,255,255,.03);
}
.v5-scroll-progress > span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--v5-electric), var(--v5-cyan));
  box-shadow: 0 0 16px rgba(18,220,233,.75);
}

/* Premium pointer — safe progressive enhancement.
   The native cursor stays visible unless JavaScript confirms that the custom
   cursor is running. This prevents a blank cursor when reduced-motion is on,
   JavaScript is blocked, or an older browser cannot initialise the effect. */
@media (hover: hover) and (pointer: fine) {
  body.public-v5.v5-custom-cursor,
  body.public-v5.v5-custom-cursor a,
  body.public-v5.v5-custom-cursor button,
  body.public-v5.v5-custom-cursor [role="button"] { cursor: none !important; }

  /* Keep familiar native cursors inside fields for accessibility and accuracy. */
  body.public-v5.v5-custom-cursor input,
  body.public-v5.v5-custom-cursor textarea { cursor: text !important; }
  body.public-v5.v5-custom-cursor select,
  body.public-v5.v5-custom-cursor input[type="checkbox"],
  body.public-v5.v5-custom-cursor input[type="radio"],
  body.public-v5.v5-custom-cursor input[type="file"] { cursor: pointer !important; }

  .v5-cursor-dot,
  .v5-cursor-ring {
    position: fixed;
    z-index: 10020;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0;
    transform: translate3d(-100px,-100px,0);
    will-change: transform, opacity;
  }
  body.v5-custom-cursor.v5-cursor-visible .v5-cursor-dot,
  body.v5-custom-cursor.v5-cursor-visible .v5-cursor-ring { opacity: 1; }
  .v5-cursor-dot { width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px; background: #fff; box-shadow: 0 0 14px rgba(18,220,233,.8); }
  .v5-cursor-ring {
    width: 38px;
    height: 38px;
    margin: -19px 0 0 -19px;
    border: 1px solid rgba(255,255,255,.55);
    background: rgba(18,137,255,.08);
    backdrop-filter: blur(2px);
    transition: width .25s var(--v5-ease), height .25s var(--v5-ease), margin .25s var(--v5-ease), border-color .25s, background .25s, opacity .2s;
  }
  body.v5-cursor-active .v5-cursor-ring { width: 64px; height: 64px; margin: -32px 0 0 -32px; border-color: rgba(18,220,233,.85); background: rgba(18,137,255,.13); }
  body.v5-cursor-hidden .v5-cursor-dot,
  body.v5-cursor-hidden .v5-cursor-ring { opacity: 0 !important; }
  body.v5-cursor-field .v5-cursor-dot,
  body.v5-cursor-field .v5-cursor-ring { opacity: 0 !important; }
}

/* Header */
.public-v5 .site-header.v4-header {
  border-bottom: 1px solid transparent;
  transition: height .35s var(--v5-ease), background .35s, border-color .35s, box-shadow .35s, backdrop-filter .35s;
}
.public-v5 .site-header.v4-header.scrolled,
.public-v5 .site-header.v4-header.v4-header-solid {
  height: 74px;
  border-color: rgba(151,196,255,.12);
  background: rgba(2,8,23,.78);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  backdrop-filter: blur(24px) saturate(145%);
}
.public-v5 .brand.v4-brand img { transition: transform .35s var(--v5-ease), filter .35s; }
.public-v5 .brand.v4-brand:hover img { transform: translateY(-2px) scale(1.025); filter: drop-shadow(0 12px 22px rgba(22,137,255,.35)); }
.public-v5 .main-nav.v4-nav a { letter-spacing: -.015em; }
.public-v5 .main-nav.v4-nav a::after { height: 1px; box-shadow: 0 0 12px rgba(18,220,233,.65); }

/* Buttons */
.public-v5 .v4-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  will-change: transform;
  transition: transform .35s var(--v5-ease), box-shadow .35s var(--v5-ease), border-color .35s, color .35s, background .35s;
}
.public-v5 .v4-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -2px;
  opacity: 0;
  transform: translateX(-110%) skewX(-18deg);
  background: linear-gradient(100deg, transparent 15%, rgba(255,255,255,.32), transparent 75%);
  transition: transform .7s var(--v5-ease), opacity .25s;
}
html[dir="rtl"] .public-v5 .v4-btn::before { transform: translateX(110%) skewX(18deg); }
.public-v5 .v4-btn:hover::before { opacity: 1; transform: translateX(110%) skewX(-18deg); }
html[dir="rtl"] .public-v5 .v4-btn:hover::before { transform: translateX(-110%) skewX(18deg); }
.public-v5 .v4-btn-primary:hover { box-shadow: 0 22px 50px rgba(18,111,232,.32), 0 0 0 1px rgba(86,207,255,.2) inset; }

/* Hero */
.public-v5 .v4-hero { min-height: 900px; isolation: isolate; }
.public-v5 .v4-hero::before {
  inset: -3%;
  transform: translate3d(var(--v5-hero-x,0), var(--v5-hero-y,0), 0) scale(1.08);
  will-change: transform;
}
.public-v5 .v4-hero::after { opacity: .15; animation: v5GridDrift 16s linear infinite; }
.public-v5 .v4-hero-inner::before,
.public-v5 .v4-hero-inner::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(85px);
  opacity: .18;
  pointer-events: none;
}
.public-v5 .v4-hero-inner::before { inset: 12% auto auto 24%; background: var(--v5-electric); animation: v5GlowA 9s ease-in-out infinite alternate; }
.public-v5 .v4-hero-inner::after { inset: auto 7% 17% auto; background: var(--v5-cyan); animation: v5GlowB 11s ease-in-out infinite alternate; }
html[dir="rtl"] .public-v5 .v4-hero-inner::before { inset: 12% 24% auto auto; }
html[dir="rtl"] .public-v5 .v4-hero-inner::after { inset: auto auto 17% 7%; }
.public-v5 .v4-hero h1 { text-wrap: balance; text-shadow: 0 18px 70px rgba(0,0,0,.28); }
.public-v5 .v4-gradient-text { background-size: 200% auto !important; animation: v5GradientShift 6s ease-in-out infinite alternate; }
.public-v5 .v4-hero-note {
  position: relative;
  overflow: hidden;
  border-color: rgba(255,255,255,.16);
  background: linear-gradient(135deg, rgba(9,34,70,.68), rgba(4,17,38,.52));
  box-shadow: 0 25px 80px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.07);
}
.public-v5 .v4-hero-note::after { content: ""; position: absolute; inset: auto -20% -80% 45%; height: 160px; background: radial-gradient(circle, rgba(18,220,233,.22), transparent 66%); }
.public-v5 .v5-scroll-cue {
  position: absolute;
  z-index: 5;
  inset-inline-start: 50%;
  bottom: 116px;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255,255,255,.58);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
html[dir="rtl"] .public-v5 .v5-scroll-cue { transform: translateX(50%); }
.public-v5 .v5-scroll-cue i { position: relative; width: 24px; height: 38px; border: 1px solid rgba(255,255,255,.32); border-radius: 999px; }
.public-v5 .v5-scroll-cue i::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; border-radius: 99px; background: var(--v5-cyan); transform: translateX(-50%); animation: v5ScrollDot 1.8s ease-in-out infinite; }
@keyframes v5GridDrift { to { background-position: 70px 70px; } }
@keyframes v5GradientShift { to { background-position: 100% center; } }
@keyframes v5GlowA { to { transform: translate(80px,45px) scale(1.2); opacity: .25; } }
@keyframes v5GlowB { to { transform: translate(-70px,-45px) scale(.86); opacity: .12; } }
@keyframes v5ScrollDot { 0%,100% { opacity: 0; transform: translate(-50%,0); } 35% { opacity: 1; } 70% { opacity: 0; transform: translate(-50%,15px); } }

/* Cinematic entrance */
html.v5-js .public-v5 .v4-hero-content > *,
html.v5-js .public-v5 .v4-hero-side > * { opacity: 0; transform: translateY(30px); }
html.v5-js .public-v5.v5-ready .v4-hero-content > *,
html.v5-js .public-v5.v5-ready .v4-hero-side > * { animation: v5HeroEnter .9s var(--v5-ease) forwards; }
html.v5-js .public-v5.v5-ready .v4-hero-content > *:nth-child(1) { animation-delay: .05s; }
html.v5-js .public-v5.v5-ready .v4-hero-content > *:nth-child(2) { animation-delay: .13s; }
html.v5-js .public-v5.v5-ready .v4-hero-content > *:nth-child(3) { animation-delay: .23s; }
html.v5-js .public-v5.v5-ready .v4-hero-content > *:nth-child(4) { animation-delay: .32s; }
html.v5-js .public-v5.v5-ready .v4-hero-side > *:nth-child(1) { animation-delay: .34s; }
html.v5-js .public-v5.v5-ready .v4-hero-side > *:nth-child(2) { animation-delay: .44s; }
@keyframes v5HeroEnter { from { opacity: 0; transform: translateY(30px); filter: blur(7px); } to { opacity: 1; transform: none; filter: blur(0); } }

/* Reveal + section sweep */
.public-v5 .v4-reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(38px) scale(.985);
  transition: opacity .9s var(--v5-ease), transform .9s var(--v5-ease), filter .9s var(--v5-ease);
}
.public-v5 .v4-reveal.is-visible { opacity: 1; filter: blur(0); transform: none; }
.public-v5 .v4-section-head .v4-title { text-wrap: balance; }
.public-v5 .v4-section-dark { position: relative; overflow: hidden; }
.public-v5 .v4-section-dark::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.025) 50%, transparent 58%); transform: translateX(-100%); }
.public-v5 .v4-section-dark.v5-section-visible::before { animation: v5SectionSweep 1.4s var(--v5-ease) forwards; }
@keyframes v5SectionSweep { to { transform: translateX(100%); } }

/* Cards */
.public-v5 .v4-service-card,
.public-v5 .v4-work-card,
.public-v5 .v4-studio-card,
.public-v5 .v4-price-card,
.public-v5 .v4-choice-card,
.public-v5 .v4-package-card,
.public-v5 .v4-addon-card {
  --v5-spot-x: 50%;
  --v5-spot-y: 50%;
  --v5-rx: 0deg;
  --v5-ry: 0deg;
  position: relative;
  transform-style: preserve-3d;
}
.public-v5 .v4-service-card.is-visible.v5-tilt,
.public-v5 .v4-work-card.is-visible.v5-tilt,
.public-v5 .v4-studio-card.is-visible.v5-tilt { transform: perspective(1100px) rotateX(var(--v5-rx)) rotateY(var(--v5-ry)) translateZ(0); transition: transform .18s ease-out, box-shadow .35s var(--v5-ease), border-color .35s; }
.public-v5 .v4-price-card.featured { --v5-lift: -14px; }
.public-v5 .v4-price-card.is-visible.v5-tilt { transform: translateY(var(--v5-lift,0)) perspective(1100px) rotateX(var(--v5-rx)) rotateY(var(--v5-ry)) translateZ(0); transition: transform .18s ease-out, box-shadow .35s var(--v5-ease), border-color .35s; }
.public-v5 .v4-service-card::after,
.public-v5 .v4-studio-card::after,
.public-v5 .v4-price-card::after,
.public-v5 .v4-choice-card::after,
.public-v5 .v4-package-card::after,
.public-v5 .v4-addon-card::after { content: ""; position: absolute; inset: 0; opacity: 0; pointer-events: none; border-radius: inherit; background: radial-gradient(260px circle at var(--v5-spot-x) var(--v5-spot-y), rgba(22,137,255,.12), transparent 62%); transition: opacity .25s; }
.public-v5 .v4-service-card:hover::after,
.public-v5 .v4-studio-card:hover::after,
.public-v5 .v4-price-card:hover::after,
.public-v5 .v4-choice-card:hover::after,
.public-v5 .v4-package-card:hover::after,
.public-v5 .v4-addon-card:hover::after { opacity: 1; }
.public-v5 .v4-work-card img,
.public-v5 .v4-service-card-media img,
.public-v5 .v4-studio-media img,
.public-v5 .v4-feature-media img,
.public-v5 .v4-portfolio-card img { transition: transform 1.1s var(--v5-ease), filter .7s; }
.public-v5 .v4-work-card:hover img,
.public-v5 .v4-service-card:hover .v4-service-card-media img,
.public-v5 .v4-studio-card:hover .v4-studio-media img,
.public-v5 .v4-feature-split:hover .v4-feature-media img,
.public-v5 .v4-portfolio-card:hover img { transform: scale(1.055); filter: saturate(1.08) contrast(1.03); }

/* Clients carousel */
.public-v5 .v5-clients-section {
  position: relative;
  overflow: hidden;
  color: var(--v4-ink);
  background: radial-gradient(circle at 15% 10%, rgba(22,137,255,.09), transparent 31%), radial-gradient(circle at 90% 70%, rgba(18,220,233,.07), transparent 26%), #fff;
}
.public-v5 .v5-clients-section::before {
  content: "CLIENTS";
  position: absolute;
  inset-inline-end: -1vw;
  top: 20px;
  color: rgba(7,21,44,.025);
  font-family: "Manrope", sans-serif;
  font-size: clamp(110px,17vw,280px);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .8;
  pointer-events: none;
}
.public-v5 .v5-clients-head { position: relative; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 42px; }
.public-v5 .v5-clients-copy { max-width: 760px; }
.public-v5 .v5-client-controls { display: flex; gap: 9px; }
.public-v5 .v5-client-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #dbe4f0;
  border-radius: 50%;
  color: #09172f;
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 30px rgba(6,27,60,.08);
  font-size: 23px;
  transition: transform .3s var(--v5-ease), color .3s, border-color .3s, background .3s;
}
.public-v5 .v5-client-button:hover { color: #fff; border-color: var(--v5-electric); background: var(--v5-electric); transform: translateY(-3px); }
.public-v5 .v5-client-stage {
  position: relative;
  z-index: 2;
  margin-inline: calc((100vw - min(calc(100vw - 48px), var(--v4-container))) / -2);
  padding: 12px max(24px, calc((100vw - var(--v4-container)) / 2)) 20px;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
}
.public-v5 .v5-client-stage::before,
.public-v5 .v5-client-stage::after { content: ""; position: absolute; z-index: 4; top: 0; bottom: 0; width: min(9vw,130px); pointer-events: none; }
.public-v5 .v5-client-stage::before { inset-inline-start: 0; background: linear-gradient(90deg,#fff,transparent); }
.public-v5 .v5-client-stage::after { inset-inline-end: 0; background: linear-gradient(270deg,#fff,transparent); }
html[dir="rtl"] .public-v5 .v5-client-stage::before { background: linear-gradient(270deg,#fff,transparent); }
html[dir="rtl"] .public-v5 .v5-client-stage::after { background: linear-gradient(90deg,#fff,transparent); }
.public-v5 .v5-client-track { --v5-client-gap: 18px; display: flex; gap: var(--v5-client-gap); direction: ltr; will-change: transform; transition: transform .75s var(--v5-ease); }
.public-v5 .v5-client-track.is-dragging { transition: none; }
.public-v5 .v5-client-card {
  flex: 0 0 clamp(220px,18vw,286px);
  min-height: 168px;
  padding: 22px;
  display: grid;
  align-content: center;
  gap: 14px;
  border: 1px solid #e1e8f2;
  border-radius: 24px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 18px 50px rgba(10,30,62,.075);
  transition: transform .4s var(--v5-ease), border-color .4s, box-shadow .4s, background .4s;
}
.public-v5 .v5-client-card:hover { z-index: 2; border-color: rgba(22,137,255,.3); background: #fff; box-shadow: 0 28px 70px rgba(9,39,85,.14); transform: translateY(-9px); }
.public-v5 .v5-client-card img { width: 100%; height: 80px; object-fit: contain; filter: grayscale(1) contrast(.86); opacity: .74; transition: filter .4s, opacity .4s, transform .4s var(--v5-ease); }
.public-v5 .v5-client-card:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.025); }
.public-v5 .v5-client-card small { direction: auto; color: #7a879b; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.public-v5 .v5-client-meter { position: relative; z-index: 2; height: 2px; margin-top: 26px; overflow: hidden; background: #e6ecf4; }
.public-v5 .v5-client-meter span { display: block; width: 12%; height: 100%; background: linear-gradient(90deg,var(--v5-electric),var(--v5-cyan)); transform: translateX(var(--v5-client-meter-x,0%)); transition: transform .7s var(--v5-ease); }

/* Internal-page hero */
.public-v5 .v4-page-hero { position: relative; isolation: isolate; overflow: hidden; background: radial-gradient(circle at 12% 25%, rgba(22,137,255,.22), transparent 30%), radial-gradient(circle at 86% 76%, rgba(18,220,233,.11), transparent 28%), linear-gradient(135deg,#020817,#071b38); }
.public-v5 .v4-page-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size: 68px 68px; mask-image: linear-gradient(to bottom,#000,transparent); animation: v5GridDrift 18s linear infinite; }
.public-v5 .v4-page-hero-inner { position: relative; z-index: 2; }
.public-v5 .v4-page-hero h1 { text-wrap: balance; }

/* Booking */
.public-v5.booking-v4-page .v4-booking-panel { border-color: rgba(18,111,232,.12); box-shadow: 0 34px 100px rgba(6,25,56,.1); }
.public-v5 .v4-book-step-indicator.active::before { box-shadow: 0 0 0 8px rgba(22,137,255,.1), 0 14px 32px rgba(22,111,232,.24); }
.public-v5 .v4-booking-summary { overflow: hidden; box-shadow: 0 35px 100px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.08); }
.public-v5 .v4-booking-summary::after { content: ""; position: absolute; inset: -45% -40% auto 40%; height: 320px; pointer-events: none; background: radial-gradient(circle,rgba(18,220,233,.19),transparent 64%); }
.public-v5 .v4-mobile-book-bar { border-color: rgba(18,220,233,.22); }

/* Footer */
.public-v5 .v4-footer { position: relative; overflow: hidden; }
.public-v5 .v4-footer::before { content: ""; position: absolute; width: 420px; height: 420px; inset: -280px auto auto -120px; border-radius: 50%; background: rgba(18,137,255,.1); filter: blur(70px); }
html[dir="rtl"] .public-v5 .v4-footer::before { inset: -280px -120px auto auto; }

/* Stagger groups */
.public-v5 [data-v5-stagger] > * { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--v5-ease), transform .7s var(--v5-ease); }
.public-v5 [data-v5-stagger].is-visible > * { opacity: 1; transform: none; }
.public-v5 [data-v5-stagger].is-visible > *:nth-child(2) { transition-delay: .07s; }
.public-v5 [data-v5-stagger].is-visible > *:nth-child(3) { transition-delay: .14s; }
.public-v5 [data-v5-stagger].is-visible > *:nth-child(4) { transition-delay: .21s; }
.public-v5 [data-v5-stagger].is-visible > *:nth-child(5) { transition-delay: .28s; }
.public-v5 [data-v5-stagger].is-visible > *:nth-child(6) { transition-delay: .35s; }

.v5-sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

@media (max-width: 960px) {
  .public-v5 .site-header.v4-header.scrolled,
  .public-v5 .site-header.v4-header.v4-header-solid { height: var(--v4-header-h); }
  .public-v5 .v5-scroll-cue { display: none; }
  .public-v5 .v5-clients-section::before { font-size: 160px; }
  .public-v5 .v5-client-card { flex-basis: 260px; }
  .public-v5 .v5-client-stage { margin-inline: -16px; padding-inline: 20px; }
}

@media (max-width: 680px) {
  .v5-loader-logo { width: 122px; }
  .public-v5 .v4-hero { min-height: 790px; }
  .public-v5 .v5-clients-head { align-items: flex-start; flex-direction: column; margin-bottom: 28px; }
  .public-v5 .v5-client-controls { align-self: flex-end; }
  .public-v5 .v5-client-card { flex-basis: 77vw; min-height: 154px; }
  .public-v5 .v5-client-stage::before,
  .public-v5 .v5-client-stage::after { width: 28px; }
  .public-v5 .v5-clients-section::before { top: 74px; font-size: 92px; }
  .public-v5 .v5-client-meter span { width: 24%; }
}

@media (prefers-reduced-motion: reduce) {
  html.v5-js { scroll-behavior: auto; }
  .v5-loader-logo,
  .public-v5 .v4-hero::after,
  .public-v5 .v4-gradient-text,
  .public-v5 .v4-page-hero::before,
  .public-v5 .v5-scroll-cue i::after { animation: none !important; }
  .public-v5 .v4-hero::before { transform: scale(1.03) !important; }
  .public-v5 .v4-reveal { opacity: 1; filter: none; transform: none; }
  html.v5-js .public-v5 .v4-hero-content > *,
  html.v5-js .public-v5 .v4-hero-side > * { opacity: 1; transform: none; animation: none !important; }
  body.public-v5,
  body.public-v5 a,
  body.public-v5 button,
  body.public-v5 input,
  body.public-v5 select,
  body.public-v5 textarea,
  body.public-v5 [role="button"] { cursor: revert !important; }
  .v5-cursor-dot,
  .v5-cursor-ring { display: none !important; }
}


/* BLUE STUDIO V5.2 — HARD NATIVE CURSOR RESET
   The premium cursor is intentionally disabled. This block has high
   specificity and !important rules so no older cached cursor:none rule can
   hide the Windows/browser pointer. */
html body.public-v5,
html body.public-v5.v5-custom-cursor,
html body.public-v5 *,
html body.public-v5.v5-custom-cursor * {
  cursor: auto !important;
}

html body.public-v5 a,
html body.public-v5.v5-custom-cursor a,
html body.public-v5 button,
html body.public-v5.v5-custom-cursor button,
html body.public-v5 [role="button"],
html body.public-v5.v5-custom-cursor [role="button"],
html body.public-v5 label[for],
html body.public-v5 select,
html body.public-v5 input[type="button"],
html body.public-v5 input[type="submit"],
html body.public-v5 input[type="reset"],
html body.public-v5 input[type="checkbox"],
html body.public-v5 input[type="radio"],
html body.public-v5 input[type="file"] {
  cursor: pointer !important;
}

html body.public-v5 input:not([type]),
html body.public-v5 input[type="text"],
html body.public-v5 input[type="email"],
html body.public-v5 input[type="tel"],
html body.public-v5 input[type="number"],
html body.public-v5 input[type="password"],
html body.public-v5 input[type="search"],
html body.public-v5 input[type="url"],
html body.public-v5 textarea,
html body.public-v5 [contenteditable="true"] {
  cursor: text !important;
}

html body.public-v5 .v5-cursor-dot,
html body.public-v5 .v5-cursor-ring {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* V5.3 public polish */
.v5-client-link{color:inherit;text-decoration:none}
.v53-whatsapp{position:fixed;inset-inline-end:22px;bottom:22px;z-index:120;display:flex;align-items:center;gap:9px;min-height:52px;padding:8px 15px 8px 9px;border:1px solid rgba(255,255,255,.2);border-radius:999px;background:linear-gradient(135deg,#1fb968,#0b9150);color:#fff;box-shadow:0 18px 44px rgba(0,0,0,.28),0 0 0 6px rgba(31,185,104,.08);font-size:12px;font-weight:700;transition:transform .22s ease,box-shadow .22s ease}.v53-whatsapp:hover{transform:translateY(-3px);box-shadow:0 24px 52px rgba(0,0,0,.34),0 0 0 8px rgba(31,185,104,.1)}.v53-whatsapp-icon{width:36px;height:36px;display:grid;place-items:center;border-radius:50%;background:rgba(255,255,255,.16);font-size:20px}.v53-whatsapp-icon svg{width:22px;height:22px;display:block;fill:currentColor}.v53-whatsapp-copy{white-space:nowrap}.v4-footer-links a[data-public-email]{overflow-wrap:anywhere}.v4-footer-links [data-public-location]{color:inherit}
@media(max-width:720px){.v53-whatsapp{inset-inline-end:14px;bottom:84px;width:50px;height:50px;min-height:50px;padding:7px;justify-content:center}.v53-whatsapp-copy{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}.v53-whatsapp-icon{width:36px;height:36px}.booking-v4-page .v53-whatsapp{bottom:94px}}
@media(prefers-reduced-motion:reduce){.v53-whatsapp{transition:none}}
.v53-social-links{display:flex;flex-wrap:wrap;gap:7px;margin-top:5px}.v53-social-links a{width:31px;height:31px;display:grid;place-items:center;border:1px solid rgba(145,190,234,.18);border-radius:9px;background:rgba(255,255,255,.04);font:800 9px/1 Manrope,sans-serif;color:#b8d2ec!important;letter-spacing:.04em;transition:.2s ease}.v53-social-links a:hover{border-color:rgba(76,166,255,.45);background:rgba(47,140,255,.13);color:#fff!important;transform:translateY(-2px)}
