/* ========================================
   BLINK BEYOND — Design Enhancements v2
   No custom cursor · Full responsive · All screens
   ======================================== */

/* ── Extra CSS Variables ── */
:root {
  --blue-glow: rgba(61, 61, 255, 0.18);
  --blue-subtle: rgba(61, 61, 255, 0.06);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --section-gap: clamp(64px, 9vh, 120px);
  --container-px: clamp(16px, 5vw, 80px);
}

/* ========================================
   PRELOADER — IMPROVED
   ======================================== */
.page-loader {
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(100,100,255,0.18) 0%, transparent 70%),
    linear-gradient(150deg, #3a3bff 0%, #2d2ef0 45%, #2020cc 100%);
}

.loader-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-logo-img {
  width: clamp(120px, 22vw, 320px);
  height: auto;
  opacity: 0.25;
  transition: opacity 0.1s linear;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 32px rgba(99, 80, 255, 0.6));
}

.loader-tagline {
  font-size: clamp(11px, 1.1vw, 14px);
  letter-spacing: clamp(2px, 0.4vw, 6px);
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: clamp(20px, 2.5vh, 36px);
}

.loader-bottom {
  gap: clamp(16px, 2vw, 28px);
}

.loader-bar-track {
  width: clamp(100px, 14vw, 220px);
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.6), #ffffff);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255,255,255,0.5);
  transition: width 0.1s linear;
}

.loader-loading-text {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

/* Smooth exit */
.page-loader.hidden {
  transform: translateY(-100%);
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
}

/* ========================================
   NAVIGATION — IMPROVED
   ======================================== */
.navbar {
  transition: background 0.4s ease, box-shadow 0.4s ease;
  height: var(--nav-height);
}

.navbar.scrolled {
  background: rgba(10, 10, 12, 0.94) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 8px 32px rgba(0,0,0,0.3) !important;
}

/* Hide navbar during immersive video playback (about/home full-screen card) */
.navbar.bb-video-hidden {
  opacity: 0 !important;
  transform: translateY(-8px) !important;
  pointer-events: none !important;
  transition: opacity 0.28s ease, transform 0.28s ease !important;
}

.nav-inner {
  padding: 0 var(--container-px);
  max-width: 1400px;
  margin: 0 auto;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

/* Mobile nav menu */
.nav-links {
  transition: transform 0.4s var(--ease-smooth), opacity 0.3s ease;
}

/* ========================================
   TICKER — IMPROVED
   ======================================== */
.ticker-wrap {
  border-radius: 0;
  border-top: none;
  border-bottom: none;
  background: var(--blue);
  padding: 11px 0;
}

.ticker-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.ticker-dot {
  color: rgba(255,255,255,0.5);
}

/* ========================================
   PAGE TRANSITION OVERLAY
   ======================================== */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  background: var(--blue);
  z-index: 99999;
  transform: translateY(-100%);
  pointer-events: none;
  will-change: transform;
}

/* Set by inline <head> script before first paint — prevents content flash on page enter */
.bb-entering .page-transition-overlay {
  transform: translateY(0%) !important;
}

/* ========================================
   ANNOUNCEMENT STRIP
   ======================================== */
.announcement-strip {
  position: relative;
  width: 92vw;
  max-width: 860px;
  height: 32px;
  margin: calc(15px + 52px + 14px) auto 0; /* top:15 + height:52 + gap:14 to prevent overlapping */
  background: #3d3dff;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  border-radius: 12px;
}

.announcement-track {
  display: flex;
  white-space: nowrap;
  animation: announceTicker 30s linear infinite;
}

.announcement-item {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 16px;
}

.announcement-sep {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

@keyframes announceTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========================================
   HERO SECTION — LIGHT CENTERED (OSMO-STYLE)
   ======================================== */
.hero-page {
  background: #f5f5f5;
  padding-bottom: clamp(100px, 15vh, 180px);
  margin-top: 12px;
}

/* Vertical center line */
.hero-center-line {
  display: none;
}

.hero-text {
  padding: clamp(24px, 4vh, 48px) var(--container-px) 0;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin-bottom: clamp(20px, 3vh, 36px);
}

.hero-location::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #3D3DFF;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(61, 61, 255, 0.55);
  animation: locPulse 2s ease-out infinite;
}

@keyframes locPulse {
  0%   { box-shadow: 0 0 0 0   rgba(61, 61, 255, 0.55); }
  60%  { box-shadow: 0 0 0 9px rgba(61, 61, 255, 0);    }
  100% { box-shadow: 0 0 0 0   rgba(61, 61, 255, 0);    }
}

.hero-location-place {
  color: rgba(0,0,0,0.3);
}

.hero-headline {
  font-size: clamp(36px, 4.8vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: clamp(16px, 2.5vh, 28px);
  color: #000;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.3em;
  white-space: nowrap;
}

.headline-part {
  display: inline;
}

/* Star separator between headline parts */
.hero-headline-sep {
  display: inline-block;
  color: #3D3DFF;
  font-size: 0.55em;
  line-height: 1;
  vertical-align: middle;
  margin: 0 0.1em;
  filter: drop-shadow(0 0 8px rgba(61,61,255,0.4));
  animation: sepPulse 3s ease-in-out infinite;
}

@keyframes sepPulse {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  50%       { opacity: 0.6; transform: scale(0.88) rotate(20deg); }
}

.hero-sub {
  font-size: clamp(15px, 1.5vw, 19px);
  color: rgba(0,0,0,0.45);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto clamp(20px, 3vh, 32px);
  letter-spacing: -0.01em;
  text-align: center;
}

/* Inline keyword chips inside hero-sub */
.hero-chip {
  display: inline-block;
  padding: 1px 9px;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: 600;
  color: rgba(0,0,0,0.7);
  letter-spacing: 0.01em;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.hero-chip:hover {
  background: #3D3DFF;
  border-color: #3D3DFF;
  color: #fff;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  justify-content: center;
}

.pill {
  padding: 7px 16px;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(0,0,0,0.55);
  transition: all 0.35s var(--ease-smooth);
  white-space: nowrap;
}

.pill:hover {
  background: #3D3DFF;
  border-color: #3D3DFF;
  color: #fff;
  transform: translateY(-2px);
}

/* Hero inner text (scroll-revealed) — dark on light */
.hero-inner-text h2 {
  color: rgba(0,0,0,0.8) !important;
}

/* ========================================
   PAGE HEADER (services / about / contact)
   ======================================== */
.page-header {
  padding: calc(var(--nav-height) + clamp(40px, 6vh, 80px)) var(--container-px) clamp(32px, 4vh, 56px) !important;
  background: linear-gradient(180deg, #0a0a12 0%, #000000 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,61,255,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 12vw, 150px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 0.92;
  position: relative;
}

.page-subtitle {
  font-size: clamp(12px, 1.1vw, 15px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  position: relative;
}

/* ========================================
   SERVICES PAGE — FULL REDESIGN
   ======================================== */
.services-section {
  background: #000;
  padding: clamp(40px, 6vh, 80px) 0 clamp(60px, 8vh, 100px);
}

.services-section .container {
  padding: 0 var(--container-px);
  position: relative;
  isolation: isolate;
}

.service-blocks-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.service-block {
  scroll-margin-top: calc(var(--nav-height, 80px) + 30px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
  top: auto;
  min-height: auto;
  height: auto;
  padding: clamp(40px, 5vh, 60px) clamp(24px, 4vw, 48px) !important;
  margin-bottom: clamp(36px, 6vh, 64px);
  border: 1px solid rgba(61, 61, 255, 0.18);
  border-radius: 28px !important;
  background: linear-gradient(180deg, rgba(14, 14, 22, 0.98), rgba(8, 8, 14, 0.98));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  overflow: visible;
}

.service-block:last-of-type {
  margin-bottom: 0;
}

/* Alternate layout for even blocks */
.service-block:nth-child(even) {
  direction: rtl;
}
.service-block:nth-child(even) > * {
  direction: ltr;
}

.service-block-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 0.9;
  margin-top: 12px;
}

.service-block-title .blue-highlight {
  color: var(--blue);
}

.service-block-desc {
  font-size: clamp(14px, 1.3vw, 17px);
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 380px;
}

.service-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid rgba(61,61,255,0.4);
  border-radius: 20px;
  padding: 4px 12px;
}

.service-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  margin-top: 0;
  align-content: center;
  justify-items: center;
  min-height: 100%;
}

.service-sub-block h4 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  justify-self: center;
  min-height: 52px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(61,61,255,0.16), rgba(61,61,255,0.06));
  border: 1px solid rgba(61,61,255,0.32);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  font-family: var(--font-display);
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.service-sub-block {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 72px;
}

/* Services CTA */
.services-cta {
  background: linear-gradient(135deg, var(--blue) 0%, #5050ff 100%);
  border-radius: 24px;
  padding: clamp(48px, 6vh, 80px) clamp(32px, 5vw, 80px);
  margin-top: clamp(48px, 6vh, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.services-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 0.95;
  margin-bottom: 16px;
}

.services-cta h3 span {
  color: rgba(255,255,255,0.45);
}

.cta-subtitle {
  font-size: clamp(14px, 1.3vw, 17px);
  color: rgba(255,255,255,0.65);
  margin-bottom: clamp(24px, 3vh, 40px);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 50px;
  transition: all 0.4s var(--ease-smooth);
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  background: #000;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.cta-btn .arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.cta-btn:hover .arrow {
  transform: translateX(4px);
}

/* ========================================
   ABOUT PAGE — IMPROVED
   ======================================== */
.who-section {
  padding: calc(var(--nav-height) + clamp(40px, 6vh, 80px)) 0 clamp(40px, 6vh, 80px);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.who-left-text {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
}

.who-inner-text p {
  font-size: clamp(13px, 1.15vw, 15px);
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
}

/* How We Work — steps improved */
.howwework-section {
  padding: clamp(80px, 10vh, 130px) 0;
}

.howwework-grid {
  display: grid;
  grid-template-columns: clamp(220px, 28%, 320px) 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.howwework-left {
  display: flex;
  align-items: center;
}

.howwework-title-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.howwework-label {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2.5px;
  margin-bottom: 12px;
}

.howwework-title {
  font-size: clamp(38px, 4.8vw, 68px);
  letter-spacing: -1.5px;
  line-height: 0.95;
  font-weight: 900;
}

.howwework-subtitle-left {
  font-size: clamp(14px, 1.1vw, 16px);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
  margin-top: 20px;
  font-weight: 400;
  max-width: 280px;
}

.howwework-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Full-width row: number | title | description */
.step-item {
  display: grid;
  grid-template-columns: 70px minmax(140px, 200px) 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: clamp(32px, 4.5vh, 48px) clamp(16px, 2vw, 32px);
  border-top: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  transition: background 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
              border-color 0.3s ease, 
              padding-left 0.35s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.step-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.step-item:hover {
  background: linear-gradient(90deg, rgba(61, 61, 255, 0.08) 0%, rgba(61, 61, 255, 0.02) 60%, transparent 100%);
  border-top-color: rgba(61,61,255,0.2);
  padding-left: clamp(24px, 3.5vw, 48px);
  box-shadow: inset 4px 0 0 var(--blue);
}

.step-num {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  opacity: 0.8;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

.step-item:hover .step-num {
  opacity: 1;
  transform: scale(1.08);
  text-shadow: 0 0 15px rgba(61, 61, 255, 0.6);
}

.step-content {
  display: contents; /* let h4 and p sit directly in the 3-col grid */
}

.step-content h4 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.3px;
  margin: 0;
  transition: color 0.3s ease;
}

.step-item:hover .step-content h4 {
  color: var(--blue);
}

.step-content p {
  font-size: clamp(14px, 1.1vw, 15px);
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0;
  transition: color 0.3s ease;
}

.step-item:hover .step-content p {
  color: rgba(255, 255, 255, 0.85);
}

/* Founders section */
.founders-section {
  padding: clamp(48px, 6vh, 80px) 0;
}

.founders-header {
  text-align: center;
  margin-bottom: clamp(32px, 4vh, 56px);
}

.founders-label {
  font-family: var(--font-script);
  font-size: clamp(18px, 2vw, 26px);
  color: rgba(255,255,255,0.4);
}

.founders-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  margin-top: 4px;
}

.founders-subtitle {
  font-size: clamp(13px, 1.2vw, 16px);
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px);
  max-width: 900px;
  margin: 0 auto;
}

/* Flip cards improved */
.flip-card {
  height: clamp(450px, 52vh, 520px);
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.flip-card:hover {
  transform: translateY(-4px);
}

.flip-card-front,
.flip-card-back {
  border-radius: 20px;
}

.flip-front-name,
.flip-back-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 900;
  letter-spacing: 0.5px;
}

/* Whatwedo section */
.whatwedo-section {
  padding: clamp(48px, 7vh, 96px) 0;
}

.whatwedo-display h2 {
  font-size: clamp(48px, 9vw, 120px);
}

.whatwedo-body {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  max-width: 600px;
  margin-top: clamp(16px, 2vh, 28px);
}

/* ========================================
   ARC CARDS — IMPROVED
   ======================================== */
.a-card {
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: box-shadow 0.4s ease, transform 0.4s var(--ease-smooth);
  border: 1px solid rgba(255,255,255,0.06);
}

.a-card:hover {
  box-shadow: 0 24px 64px rgba(0,0,0,0.3), 0 0 0 1px rgba(61,61,255,0.15);
  z-index: 100 !important;
}

/* ========================================
   TRUSTED SECTION — IMPROVED
   ======================================== */
.trusted-section {
  padding: clamp(60px, 8vh, 100px) 0;
}

.trusted-header {
  margin-bottom: clamp(32px, 4vh, 52px);
}

.trusted-title {
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -1.5px;
  margin-top: 8px;
}

.trusted-subtitle {
  font-size: clamp(13px, 1.2vw, 15px);
  color: rgba(0,0,0,0.4);
  max-width: 480px;
  margin-top: 12px;
  line-height: 1.7;
}

.trusted-logo-item {
  padding: 12px 20px;
  border-radius: 12px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.trusted-logo-item:hover {
  border-color: rgba(61, 61, 255, 0.28);
  transform: translate3d(0, -5px, 0) scale(1.04);
  box-shadow: 0 14px 34px rgba(61, 61, 255, 0.14);
}

.trusted-stats {
  padding: clamp(28px, 3.5vh, 48px) clamp(28px, 4vw, 60px);
  background: rgba(255,255,255,0.92);
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  max-width: 840px;
  margin: clamp(28px, 3.5vh, 48px) auto 0;
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  flex-wrap: nowrap;
  box-shadow: 0 8px 40px rgba(0,0,0,0.05);
}

.trusted-stat {
  flex: 1 1 0;
  min-width: 0;
}

.trusted-stat-num {
  font-size: clamp(36px, 5vw, 56px);
  background: linear-gradient(135deg, var(--blue) 0%, #6c6cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
}

.trusted-stat-suffix {
  background: linear-gradient(135deg, var(--blue) 0%, #6c6cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trusted-stat-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  margin-top: 6px;
  color: rgba(0,0,0,0.35);
  text-transform: uppercase;
}

.trusted-stat-divider {
  width: 1px;
  background: rgba(0,0,0,0.08);
  align-self: stretch;
}

/* ========================================
   INFO CARDS — IMPROVED
   ======================================== */
.cards-section {
  padding: clamp(48px, 6vh, 80px) 0;
}

.cards-grid {
  gap: clamp(16px, 2vw, 24px);
}

.info-card {
  min-height: clamp(380px, 45vh, 540px);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.6s var(--ease-smooth), box-shadow 0.6s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.info-card-title {
  font-size: clamp(40px, 6vw, 78px);
  letter-spacing: -1.5px;
  line-height: 0.92;
}

.info-card-body {
  font-size: clamp(12px, 1.1vw, 15px);
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-top: clamp(16px, 2vh, 24px);
}

/* ========================================
   PARALLAX WORD SECTION — IMPROVED
   ======================================== */
.service-big-word {
  font-size: clamp(100px, 25vw, 340px);
  letter-spacing: -6px;
  line-height: 0.88;
  transition: transform 0.6s var(--ease-smooth), text-shadow 0.4s ease;
}

@media (hover: hover) {
  .parallax-sticky:hover .service-big-word {
    text-shadow: 0 4px 80px rgba(61,61,255,0.18);
  }
}

.service-word-desc {
  font-size: clamp(13px, 1.3vw, 16px);
  color: rgba(0,0,0,0.5);
  line-height: 1.75;
  max-width: 480px;
}

.script-label {
  font-size: clamp(20px, 2.6vw, 32px);
  color: rgba(0,0,0,0.4);
  font-weight: 600;
}

/* ========================================
   HOW WE WORK — ABOUT PAGE
   ======================================== */
.howwework-section .howwework-title {
  font-family: var(--font-display);
  color: #fff;
}

/* ========================================
   TESTIMONIALS — IMPROVED
   ======================================== */
.testimonials-section {
  padding: clamp(48px, 6vh, 80px) 0;
}

.testimonial-card {
  padding: clamp(28px, 3.5vw, 50px);
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  transition: transform 0.5s var(--ease-smooth), border-color 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(61,61,255,0.18);
}

.testimonial-quote {
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
}

/* ========================================
   FOOTER — IMPROVED
   ======================================== */
.footer {
  background: #05050f;
}

.footer-top {
  padding: clamp(48px, 6vh, 72px) 0 clamp(36px, 4.5vh, 56px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
  margin-bottom: 16px;
  line-height: 0;
}

.footer-tagline {
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.75;
  color: rgba(255,255,255,0.35);
  max-width: 280px;
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: clamp(16px, 2vh, 24px);
  color: rgba(255,255,255,0.3);
  font-family: var(--font-display);
  font-weight: 700;
}

.footer-links-col a,
.footer-services-col a {
  font-size: 14px;
  padding: 6px 0;
  display: block;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s ease, transform 0.3s var(--ease-smooth);
}

.footer-links-col a:hover,
.footer-services-col a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-bottom {
  padding: clamp(16px, 2vh, 24px) 0;
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.5px;
}

.footer-brand-text {
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 0.82;
}

/* ========================================
   FAB — IMPROVED
   ======================================== */
/* ── FAB SPEED DIAL — fixed bottom-right, options fan upward ── */
.fab-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* Options sit ABOVE the toggle; hidden by default */
.fab-options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

/* Each individual option — hidden, waiting to slide up */
.fab-option {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.28);
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(24px) scale(0.8);
  transition:
    opacity 0.28s ease,
    transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.2s ease;
}

/* Label tooltip to the left of each option */
.fab-option::after {
  content: attr(aria-label);
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

/* Slide options upward when open */
.fab-options.open {
  pointer-events: all;
}
.fab-options.open .fab-option {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* Show label on hover of open option */
.fab-options.open .fab-option:hover::after {
  opacity: 1;
}
.fab-options.open .fab-option:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.36);
}

/* Stagger each child */
.fab-options.open .fab-option:nth-child(1) { transition-delay: 0.04s; }
.fab-options.open .fab-option:nth-child(2) { transition-delay: 0.10s; }
.fab-options.open .fab-option:nth-child(3) { transition-delay: 0.16s; }

/* Instagram */
.instagram-btn {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  color: white;
}
.instagram-btn:hover {
  box-shadow: 0 8px 24px rgba(214,36,159,0.5);
}

/* WhatsApp */
.whatsapp-btn {
  background: #25D366;
  color: white;
}

/* ── Toggle button ── */
.fab-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 26px rgba(61,61,255,0.45);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background 0.3s ease;
  border: none;
  color: white;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.fab-toggle:hover {
  box-shadow: 0 10px 36px rgba(61,61,255,0.6);
  transform: scale(1.08);
}
.fab-toggle.open {
  background: #111;
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
  transform: rotate(45deg);
}
.fab-toggle.open:hover {
  transform: rotate(45deg) scale(1.08);
}

.fab-toggle .icon-chat  { display: block; }
.fab-toggle .icon-close { display: none;  }
.fab-toggle.open .icon-chat  { display: none;  }
.fab-toggle.open .icon-close { display: block; }

.whatsapp-btn:hover {
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}

/* Kill hover-based open only when NOT open — never override the .open class */
.fab-container:hover .fab-options:not(.open) {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(24px) scale(0.8) !important;
  pointer-events: none !important;
}
.fab-container:hover .fab-toggle:not(.open) .icon-chat  { display: block !important; }
.fab-container:hover .fab-toggle:not(.open) .icon-close { display: none  !important; }

.ai-btn {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
}

.ai-btn:hover {
  background: #1a1a28;
  box-shadow: 0 8px 24px rgba(61,61,255,0.3);
}

/* ========================================
   GLOBAL SCROLLBAR
   ======================================== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #08080f; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blue) 0%, #8080ff 100%);
  border-radius: 10px;
}

::selection {
  background: rgba(61,61,255,0.22);
  color: #fff;
}

/* ========================================
   SMOOTH REVEAL
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.26s; }

/* ========================================
   CONTACT PAGE — IMPROVED
   ======================================== */
.contact-section {
  padding-top: clamp(10px, 2vh, 30px);
  padding-bottom: clamp(60px, 8vh, 100px);
}

.contact-card {
  border-radius: 24px;
  padding: clamp(28px, 4vw, 52px);
}


/* Hero mobile CTA — hidden on desktop, shown on mobile */

/* Hero mobile CTA — hidden on desktop, shown on mobile */
.hero-mobile-cta {
  display: none;
}



/* ========================================
   LARGE SCREEN  ≥ 1440px
   ======================================== */
@media (min-width: 1440px) {
  :root {
    --container-px: 80px;
  }

  .hero-headline {
    font-size: clamp(80px, 6.5vw, 110px);
  }

  .service-block-title {
    font-size: clamp(72px, 6vw, 96px);
  }
}

/* ========================================
   BLINK / BUILD / BOOM — WRAPPER
   Neutral on desktop; creates sticky boundary on mobile
   ======================================== */
.bbb-stack-wrapper {
  display: block;
  position: relative;
  isolation: isolate;
}




/* ========================================
   INFO-CARD EXPLORE HINT — ALL SCREENS
   Touch (mobile/tablet/iPad) → "TAP TO EXPLORE"
   Mouse (laptop/computer)    → "HOVER TO EXPLORE"
   ======================================== */
.info-card .info-card-content {
  display: flex;
  flex-direction: column;
}

/* Default: touch devices — "Tap to Explore" */
.info-card .info-card-content::after {
  content: "Tap to Explore →";
  display: inline-block;
  align-self: flex-start;
  margin-top: 20px;
  padding: 8px 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 30px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  animation: hintPulse 2s ease-in-out infinite;
}

/* Mouse/hover devices (laptop, desktop) → "Hover to Explore" */
@media (hover: hover) and (pointer: fine) {
  .info-card .info-card-content::after {
    content: "Hover to Explore →";
  }
}

/* Once the user has interacted with any card, permanently hide all hints */
body.bb-card-hint-seen .info-card .info-card-content::after {
  display: none !important;
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.1ms !important;
  }
}




/* ========================================
   CARD NAV — ReactBits CardNav port
   ======================================== */

/* Navbar is now display:block; GSAP controls height */
.navbar {
  display: block !important;
  overflow: hidden;
  padding: 0;
  will-change: height;
}

.card-nav-top {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 0 18px;
  position: relative;
}

/* ── Hamburger ── */
.cn-hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 6px 6px 0;
  align-items: flex-start;
  flex-shrink: 0;
}

.cn-line {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
  transform-origin: 50% 50%;
}

.cn-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1px;
  transition: color 0.2s ease;
  line-height: 1;
}

.cn-hamburger:hover .cn-label { color: #fff; }
.cn-hamburger:hover .cn-line  { background: #fff; }

.cn-hamburger.open .cn-line:first-child {
  transform: translateY(4px) rotate(45deg);
}
.cn-hamburger.open .cn-line:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* ── CTA pill ── */
.cn-cta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  background: #3d3dff;
  padding: 8px 16px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.cn-cta:hover {
  background: #5555ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(61, 61, 255, 0.45);
}

/* ========================================
   FULLSCREEN MENU OVERLAY
   ======================================== */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: #3d3dff;
  color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 3vh, 40px) clamp(24px, 5vw, 80px);
  transform: translateY(100%);
  visibility: hidden;
  overflow-y: hidden;
  overflow-x: clip;
}

/* ── Header row: tagline left, close right ── */
.fs-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.fs-menu-tagline {
  font-family: var(--font-body, sans-serif);
  font-size: clamp(11px, 1.2vw, 14px);
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
}

.fs-menu-close {
  background: none;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  color: #fff;
  font-family: var(--font-body, sans-serif);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 20px;
  transition: background-color 0.3s, border-color 0.3s;
}

.fs-menu-close:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}

.fs-close-icon {
  font-size: 16px;
  font-weight: 400;
}

/* ── Body: vertically centered links ── */
.fs-menu-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(16px, 3vh, 40px) 0;
  min-height: 0;
}

.fs-menu-links {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 1.5vh, 16px);
}

/* ── Individual nav link ── */
.fs-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-display, 'Barlow Condensed', sans-serif);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
  width: fit-content;
  cursor: pointer;
  transition: color 0.35s ease;
}

.fs-link:hover {
  color: #fff;
}

/* ── Text-roll wrapper: sized by the relative top layer ── */
.text-roll-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
  /* Extra right clearance so italic glyphs aren't clipped */
  padding-right: 0.12em;
}

/* Top layer is RELATIVE — it flows in the DOM and defines the wrapper size */
.text-roll-top {
  display: flex;
  position: relative;
}

/* Bottom layer is ABSOLUTE — stacked underneath, letters positioned by GSAP */
.text-roll-bottom {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.text-roll-top .letter,
.text-roll-bottom .letter {
  display: inline-block;
  will-change: transform;
}

/* ── Footer: tagline left, socials+legal right ── */
.fs-menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-shrink: 0;
  padding-top: clamp(16px, 2vh, 32px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-body, sans-serif);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.fs-footer-left {
  max-width: 220px;
  line-height: 1.5;
  opacity: 0.7;
}

.fs-social-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.fs-socials {
  display: flex;
  gap: 10px;
}

.fs-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.fs-social-link:hover {
  background-color: #fff;
  color: #3d3dff;
  border-color: #fff;
}

.fs-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.fs-legal {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0.6;
}

.fs-legal a, .fs-legal span {
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 1px;
}

.fs-legal a {
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: border-bottom-color 0.3s;
}

.fs-legal a:hover {
  border-bottom-color: #fff;
}



/* ========================================
   BB CARDS — REDESIGNED (About + Services)
   ======================================== */
.cards-section--redesign {
  background: #111;
  padding: clamp(40px, 6vh, 72px) 0;
}

.bb-cards-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: clamp(14px, 2vw, 24px);
}

/* ── Shared card base ── */
.bb-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #1e1e1e;
  border-radius: 28px;
  padding: clamp(24px, 3.5vw, 44px);
  min-height: clamp(300px, 38vh, 420px);
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s ease;
}

.bb-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
}

/* ── LEFT: About card ── */
.bb-card--about {
  border-radius: 28px 28px 28px 28px;
}

/* ── Circular Rotating Badge Stamp ── */
.circular-badge {
  position: relative;
  width: clamp(90px, 12vw, 120px);
  height: clamp(90px, 12vw, 120px);
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(10, 10, 15, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  user-select: none;
  flex-shrink: 0;
  margin-bottom: auto;
}

.circular-badge-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.circular-badge-text span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: var(--font-display, sans-serif);
  font-weight: 700;
  font-size: clamp(7px, 1vw, 10px);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  transform-origin: center center;
  line-height: 1;
}

.circular-badge-center {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
}

.circular-badge-center .center-logo {
  font-family: var(--font-display, sans-serif);
  font-weight: 900;
  font-size: clamp(11px, 1.4vw, 15px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: 1px;
}

.circular-badge-center .center-sub {
  font-family: var(--font-body, sans-serif);
  font-size: clamp(5px, 0.7vw, 7px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 1px;
}

.bb-card-body {
  margin-top: auto;
  padding-top: 32px;
}

.bb-card-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 3.6vw, 48px);
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.bb-card-heading--accent {
  color: #3D3DFF;
}

.bb-card-sub {
  font-family: var(--font-body);
  font-size: clamp(12px, 1.2vw, 15px);
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
  letter-spacing: 0.2px;
}

.bb-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 28px;
}

/* ── Arrow buttons ── */
.bb-arrow-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transition: background 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.bb-card:hover .bb-arrow-btn {
  background: #3D3DFF;
  border-color: #3D3DFF;
  transform: rotate(-45deg);
}

.bb-arrow-btn--circle {
  width: 52px;
  height: 52px;
  font-size: 20px;
}

/* ── Cursor Bubble (Disabled) ── */
.bb-cursor-bubble,
.bb-cursor-bubble-inner {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ── RIGHT: Services card ── */
.bb-card--services {
  justify-content: space-between;
}

.bb-tags-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, transparent 100%);
}

.bb-tags-row {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  animation: bb-tags-scroll 18s linear infinite;
}

.bb-tags-row--2 {
  animation-direction: reverse;
  animation-duration: 22s;
}

.bb-tags-row--3 {
  animation-duration: 26s;
}

@keyframes bb-tags-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-40%); }
}

.bb-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(11px, 1.1vw, 14px);
  letter-spacing: 1px;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.bb-card--services:hover .bb-tag {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.bb-tag--ghost {
  background: transparent;
  border-color: transparent;
  width: 60px;
}

/* Tag dot colors */
.bb-tag-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bb-tag-dot--mint   { background: #6ee7b7; }
.bb-tag-dot--white  { background: rgba(255,255,255,0.7); }
.bb-tag-dot--yellow { background: #fde68a; }
.bb-tag-dot--orange { background: #f97316; }
.bb-tag-dot--green  { background: #4ade80; }

/* Services footer */
.bb-card-footer--services {
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 20px;
}

.bb-services-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  margin-bottom: 4px;
}

.bb-services-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 46px);
  letter-spacing: -0.5px;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
}

