/* ============================================================
   LIVRO — Shared Stylesheet v1.0
   Brand: #2533AD → #7B57C5 → #CF7FE0
   Font: Plus Jakarta Sans
============================================================ */

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ── Tokens ── */
:root {
  --blue:   #2533AD;
  --purple: #7B57C5;
  --pink:   #CF7FE0;

  --grad:     linear-gradient(90deg,  #2533AD 0%, #7B57C5 50%, #CF7FE0 100%);
  --grad-135: linear-gradient(135deg, #2533AD 0%, #7B57C5 50%, #CF7FE0 100%);
  --grad-180: linear-gradient(180deg, #2533AD 0%, #7B57C5 50%, #CF7FE0 100%);

  --dark-900: #080814;
  --dark-800: #0D0D20;
  --dark-700: #141430;
  --dark-600: #1E1E44;

  --gray-500: #6B6B99;
  --gray-400: #8888B0;
  --gray-300: #AAAAC8;
  --gray-200: #CCCCDF;
  --gray-100: #E8E8F0;
  --white:    #FFFFFF;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 72px;
  --container: 1280px;
}

/* ── Base ── */
body {
  background: var(--dark-900);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtle noise grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utilities ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 17px;
  color: var(--gray-400);
  max-width: 520px;
  line-height: 1.75;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
}

/* ── Spotlight hover glow overlay ── */
[data-spotlight] { position: relative; }
.spotlight-overlay {
  --spl-x: 50%;
  --spl-y: 50%;
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(
    320px circle at var(--spl-x) var(--spl-y),
    rgba(207, 127, 224, 0.28),
    rgba(37, 51, 173, 0.12) 45%,
    transparent 68%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

/* ── Scroll-reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), opacity 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}
.btn-lg { padding: 15px 34px; font-size: 15px; }
.btn-sm { padding: 9px 20px; font-size: 13px; }

.btn-primary {
  background: var(--grad);
  color: #fff;
}
.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(123,87,197,0.45);
}

.btn-secondary {
  background: rgba(255,255,255,0.07);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-200);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover {
  border-color: rgba(207,127,224,0.5);
  color: var(--pink);
  transform: translateY(-2px);
}

.btn-outline-grad {
  background: transparent;
  color: var(--white);
  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
}
.btn-outline-grad::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-full);
  background: var(--grad);
  z-index: -1;
}
.btn-outline-grad:hover { opacity: 0.85; transform: translateY(-2px); }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 300;
  transition: all 0.3s var(--ease);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 28px;
  height: var(--nav-h);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);

  /* Liquid glass base — more transparent so content bleeds through */
  background: rgba(8, 8, 20, 0.38);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);

  /* Per-side border: top edge catches the most light */
  border-top:    1px solid rgba(255, 255, 255, 0.22);
  border-right:  1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-left:   1px solid rgba(255, 255, 255, 0.08);

  /* Depth shadow + inset rim highlights (physical glass signature) */
  box-shadow:
    0 8px 40px  rgba(0, 0, 0, 0.40),
    0 2px 8px   rgba(0, 0, 0, 0.22),
    inset 1px 1.5px 0 rgba(255, 255, 255, 0.15),
    inset -1px -1.5px 0 rgba(255, 255, 255, 0.04),
    inset 0 0 40px rgba(37, 51, 173, 0.07);

  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
              box-shadow 0.4s var(--ease);
}

/* SVG-distortion layer — the "liquid" wobble behind the glass */
.nav-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  filter: url(#lg-distort);
  isolation: isolate;
  pointer-events: none;
  z-index: 0;
}

/* Top-edge catchlight — gradient shimmer across the pill's crown */
.nav-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 14%;
  right: 14%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.30) 28%,
    rgba(207, 127, 224, 0.60) 50%,
    rgba(255, 255, 255, 0.30) 72%,
    transparent
  );
  pointer-events: none;
  z-index: 1;
}

/* Nav contents sit above the glass layers */
.nav-logo,
.nav-links,
.nav-cta,
.menu-toggle {
  position: relative;
  z-index: 2;
}

.nav.scrolled .nav-inner {
  background: rgba(8, 8, 20, 0.58);
  border-top-color:    rgba(255, 255, 255, 0.28);
  border-right-color:  rgba(255, 255, 255, 0.12);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  border-left-color:   rgba(255, 255, 255, 0.12);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.50),
    0 4px  12px rgba(0, 0, 0, 0.28),
    inset 1px 1.5px 0 rgba(255, 255, 255, 0.18),
    inset -1px -1.5px 0 rgba(255, 255, 255, 0.05),
    inset 0 0 40px rgba(37, 51, 173, 0.09);
}

.nav-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 26px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--grad);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }

.nav-cta { flex-shrink: 0; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-login-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-100);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  background: var(--dark-600);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-full);
  padding: 9px 18px;
  transform: translateZ(0);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav-login-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.nav-login-link:hover {
  background: #2A2A5A;
  color: var(--white);
  border-color: rgba(255,255,255,0.32);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-300);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(8, 8, 20, 0.78);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border-top:    1px solid rgba(255, 255, 255, 0.16);
  border-right:  1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-left:   1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    inset 1px 1px 0 rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  margin-top: 8px;
  padding: 16px 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
}
.mobile-menu.open {
  max-height: 400px;
  padding: 16px 0;
}
.mobile-menu a {
  display: block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-300);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.mobile-menu .mobile-cta {
  margin: 12px 28px 4px;
  text-align: center;
  padding: 12px;
}

/* ── Orbs / Blobs ── */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.orb-a {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at 40% 40%, rgba(123,87,197,0.25) 0%, transparent 65%);
  filter: blur(48px);
  animation: orb-drift-a 18s ease-in-out infinite;
}
.orb-b {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 60% 55%, rgba(207,127,224,0.2) 0%, transparent 65%);
  filter: blur(56px);
  animation: orb-drift-b 22s ease-in-out infinite;
}
.orb-c {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at 50% 50%, rgba(37,51,173,0.3) 0%, transparent 65%);
  filter: blur(40px);
  animation: orb-drift-c 14s ease-in-out infinite;
}

@keyframes orb-drift-a {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(40px,-30px) scale(1.06); }
  66%      { transform: translate(-25px,20px) scale(0.94); }
}
@keyframes orb-drift-b {
  0%,100% { transform: translate(0,0) scale(1); }
  40%      { transform: translate(-35px,25px) scale(1.08); }
  70%      { transform: translate(20px,-15px) scale(0.96); }
}
@keyframes orb-drift-c {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(15px,-20px); }
}

/* ── Glass Sphere (hero 3D object) ── */
.glass-sphere {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  position: relative;
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,0.18) 0%, transparent 28%),
    radial-gradient(circle at 72% 28%, rgba(207,127,224,0.65) 0%, transparent 38%),
    radial-gradient(circle at 22% 72%, rgba(37,51,173,0.75) 0%, transparent 42%),
    radial-gradient(circle at 72% 72%, rgba(123,87,197,0.5) 0%, transparent 38%),
    radial-gradient(ellipse at 50% 55%, rgba(13,13,32,0.85) 20%, rgba(37,51,173,0.35) 100%);
  box-shadow:
    0 0 80px rgba(123,87,197,0.35),
    0 0 160px rgba(37,51,173,0.2),
    inset 0 0 80px rgba(207,127,224,0.05);
  animation: sphere-float 14s ease-in-out infinite;
  flex-shrink: 0;
}
.glass-sphere::after {
  content: '';
  position: absolute;
  top: 9%;
  left: 14%;
  width: 34%;
  height: 22%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.22) 0%, transparent 80%);
  transform: rotate(-25deg);
}
@keyframes sphere-float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-24px) rotate(6deg); }
  66%      { transform: translateY(12px) rotate(-4deg); }
}

/* Small decorative sphere variant */
.glass-sphere-sm {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,0.15) 0%, transparent 28%),
    radial-gradient(circle at 72% 28%, rgba(207,127,224,0.6) 0%, transparent 38%),
    radial-gradient(circle at 22% 72%, rgba(37,51,173,0.7) 0%, transparent 42%),
    radial-gradient(ellipse at 50% 55%, rgba(13,13,32,0.9) 20%, rgba(37,51,173,0.3) 100%);
  box-shadow: 0 0 50px rgba(123,87,197,0.3);
  animation: sphere-float 10s ease-in-out infinite;
}

/* ── Ticker / Marquee ── */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  padding: 18px 0;
}
.ticker-inner {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}
.ticker-text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding: 0 32px;
}
.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Page header (inner pages) ── */
.page-header {
  padding-top: calc(var(--nav-h) + 48px + 60px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.page-header .container { position: relative; z-index: 1; }
.page-header-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}
.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.page-header-desc {
  font-size: 18px;
  color: var(--gray-400);
  max-width: 560px;
  line-height: 1.75;
}

/* ── Stats bar ── */
.stats-bar {
  padding: 80px 0;
}
.stats-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.stat-block {
  text-align: center;
  flex: 1;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.08);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Service cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.service-card {
  background: var(--dark-800);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card:hover {
  border-color: rgba(123,87,197,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(37,51,173,0.2);
}
.service-card-letter {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -4px;
  position: absolute;
  top: -10px;
  right: -10px;
  opacity: 0.06;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.3s var(--ease);
}
.service-card:hover .service-card-letter { opacity: 0.12; }
.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37,51,173,0.3), rgba(207,127,224,0.25));
  border: 1px solid rgba(207,127,224,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.service-card-icon svg { width: 22px; height: 22px; }
.service-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
}
.service-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-card-desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s var(--ease), opacity 0.2s;
}
.service-card-link:hover { opacity: 0.8; gap: 10px; }

/* ── Work / case study cards ── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.work-card {
  background: var(--dark-800);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.work-card:hover {
  border-color: rgba(207,127,224,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(37,51,173,0.2);
}
.work-card-visual {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-card-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-card-client-initial {
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 800;
  opacity: 0.15;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  user-select: none;
}
.work-card-logo-panel {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: var(--radius-lg);
  width: 84%;
  height: 76%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 36px rgba(0,0,0,0.4);
}
.work-card-logo-img {
  max-width: 72%;
  max-height: 64%;
  object-fit: contain;
}
.work-card-body {
  padding: 28px;
}
.work-card-industry {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}
.work-card-client {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.work-card-result {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.65;
  margin-bottom: 20px;
}
.work-card-metrics {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.work-metric {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.work-metric-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.work-metric-label {
  font-size: 11px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── CTA strip ── */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.cta-subtitle {
  font-size: 18px;
  color: var(--gray-400);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Offer strip ── */
.offer-strip {
  margin: 0 48px 80px;
  border-radius: var(--radius-xl);
  padding: 64px 72px;
  background: linear-gradient(135deg, rgba(37,51,173,0.15) 0%, rgba(123,87,197,0.12) 50%, rgba(207,127,224,0.1) 100%);
  border: 1px solid rgba(123,87,197,0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.offer-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(37,51,173,0.15), transparent 60%),
              radial-gradient(circle at 80% 50%, rgba(207,127,224,0.1), transparent 60%);
  pointer-events: none;
}
.offer-strip-content { position: relative; z-index: 1; }
.offer-strip-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}
.offer-strip-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
}
.offer-strip-desc {
  font-size: 15px;
  color: var(--gray-400);
  max-width: 440px;
  line-height: 1.7;
}
.offer-strip-cta { position: relative; z-index: 1; flex-shrink: 0; }

/* ── Footer ── */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand { }
.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 28px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.social-link:hover {
  background: rgba(123,87,197,0.2);
  border-color: rgba(123,87,197,0.4);
  transform: translateY(-2px);
}
.social-link svg { width: 16px; height: 16px; fill: var(--gray-400); transition: fill 0.2s; }
.social-link:hover svg { fill: var(--white); }

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 14px;
  color: var(--gray-400);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 13px;
  color: var(--gray-500);
}
.footer-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-500);
}
.footer-location svg { width: 14px; height: 14px; }
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-legal-links a {
  font-size: 13px;
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--gray-300); }

/* ── Form styles ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-300);
  margin-bottom: 8px;
}
.form-input,
.form-textarea,
.form-select {
  display: block;
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123,87,197,0.15);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-500); }
.form-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B99' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-select option { background: var(--dark-800); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Process steps ── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--purple), var(--pink), transparent);
  opacity: 0.3;
}
.process-step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37,51,173,0.3), rgba(207,127,224,0.2));
  border: 1px solid rgba(123,87,197,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  background-clip: padding-box;
  position: relative;
  z-index: 1;
}
.step-number-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step-content { padding-top: 12px; }
.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-desc { font-size: 14px; color: var(--gray-400); line-height: 1.7; max-width: 480px; }

/* ── Value cards (about) ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.value-card {
  background: var(--dark-800);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: border-color 0.3s, transform 0.3s;
}
.value-card:hover {
  border-color: rgba(123,87,197,0.35);
  transform: translateY(-4px);
}
.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37,51,173,0.3), rgba(207,127,224,0.2));
  border: 1px solid rgba(207,127,224,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.value-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.value-desc { font-size: 14px; color: var(--gray-400); line-height: 1.7; }

/* ── WhatsApp Float Button ── */
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(123,87,197,.65), 0 0 22px rgba(207,127,224,.35); }
  70%  { box-shadow: 0 0 0 16px rgba(123,87,197,0), 0 0 32px rgba(207,127,224,.2); }
  100% { box-shadow: 0 0 0 0 rgba(123,87,197,0),   0 0 22px rgba(207,127,224,.35); }
}
.wa-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: var(--grad-135);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(123,87,197,.45), 0 0 20px rgba(207,127,224,.25);
  animation: wa-pulse 2.4s infinite;
  transition: transform .22s var(--spring), box-shadow .22s var(--ease);
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(123,87,197,.65), 0 0 36px rgba(207,127,224,.45);
  animation: none;
}
.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  flex-shrink: 0;
}

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-info-block { margin-bottom: 36px; }
.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}
.contact-info-value {
  font-size: 15px;
  color: var(--gray-300);
  line-height: 1.6;
}
.contact-info-value a { color: var(--gray-300); transition: color 0.2s; }
.contact-info-value a:hover { color: var(--pink); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .offer-strip { flex-direction: column; align-items: flex-start; padding: 48px; margin: 0 32px 64px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav { top: 12px; width: calc(100% - 24px); }
  .nav-inner { padding: 0 20px; }
  .nav-links, .nav-actions { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .stats-bar .container { flex-direction: column; gap: 32px; }
  .stat-divider { width: 60px; height: 1px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  .offer-strip { margin: 0 20px 64px; padding: 36px 28px; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .page-header-title { font-size: clamp(36px, 10vw, 64px); }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .work-card-metrics { flex-direction: column; gap: 12px; }
}

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