/* ============================================
   ZenithOne Global - Custom Styles (Light Mode)
   Color Palette: Gold (#D4A535) on White
   ============================================ */

:root {
  --gold: #D4A535;
  --gold-light: #F0C85A;
  --gold-dark: #8B6914;
}

/* ---- Base ---- */
body {
  font-size: 14px;
  line-height: 24px;
  color: #5A5A5A;
  font-weight: 400;
}

::selection {
  background: rgba(212, 165, 53, 0.2);
  color: #1a1a1a;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f5f5f5; }
::-webkit-scrollbar-thumb { background: #d4a535; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #c8962e; }

/* ---- Gradient Text ---- */
.text-gradient {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Grid Pattern (Light) ---- */
.bg-grid-pattern {
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.bg-grid-pattern-light {
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ---- Preloader ---- */
#preloader { transition: opacity 0.6s ease, visibility 0.6s ease; }
#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-ring-wrap { width: 80px; height: 80px; margin: 0 auto; position: relative; }
.preloader-ring {
  width: 80px; height: 80px;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--gold-dark);
  border-radius: 50%;
  animation: preloader-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
.preloader-ring::before {
  content: ''; position: absolute; inset: 6px;
  border: 2px solid transparent;
  border-bottom-color: var(--gold-light);
  border-left-color: var(--gold);
  border-radius: 50%;
  animation: preloader-spin 0.8s cubic-bezier(0.5, 0, 0.5, 1) infinite reverse;
}
@keyframes preloader-spin { to { transform: rotate(360deg); } }

/* ---- Navigation ---- */
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

/* Hamburger SVG Lines */
.ham-line { transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); transform-origin: center; }
#hamburger-btn.active .ham-line-1 { transform: translateY(8px) rotate(45deg); }
#hamburger-btn.active .ham-line-2 { opacity: 0; transform: scaleX(0); }
#hamburger-btn.active .ham-line-3 { transform: translateY(-8px) rotate(-45deg); }

/* ---- Nav Overlay ---- */
#nav-overlay {
  transition: visibility 0.1s, opacity 0.4s ease;
}
#nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

/* ---- NEW HERO: Text Mask ---- */
.hero-video-placeholder {
  background: linear-gradient(-45deg, #D4A535, #8B6914, #F0C85A, #C8962E, #6B5210, #D4A535);
  background-size: 400% 400%;
  animation: hero-gradient 8s ease infinite;
}

@keyframes hero-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-mask-overlay {
  will-change: transform, opacity;
}

.hero-mask-text {
  will-change: transform;
}

.hero-headline {
  opacity: 0;
  transform: translateY(30px);
}

/* ---- Floating Geometric Shapes ---- */
.hero-floating-shapes {
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  width: 54px;
  height: 54px;
  color: var(--gold);
  opacity: 0;
  animation:
    heroShapeFloat var(--float-duration, 8s) ease-in-out var(--float-delay, 0s) infinite,
    heroShapeFadeIn 1.2s ease-out 0.6s forwards;
}

.hero-shape--sm {
  width: 40px;
  height: 40px;
}

.hero-shape--lg {
  width: 64px;
  height: 64px;
}

.hero-shape svg {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes heroShapeFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(var(--drift-x, 10px), calc(var(--drift-y, 16px) * -0.5)) rotate(calc(var(--spin, 6deg) * 0.5));
  }
  50% {
    transform: translate(calc(var(--drift-x, 10px) * -0.3), calc(var(--drift-y, 16px) * -1)) rotate(var(--spin, 6deg));
  }
  75% {
    transform: translate(calc(var(--drift-x, 10px) * -0.8), calc(var(--drift-y, 16px) * -0.3)) rotate(calc(var(--spin, 6deg) * 0.3));
  }
}

@keyframes heroShapeFadeIn {
  to { opacity: 0.12; }
}

/* Hover shimmer on individual shapes */
.hero-shape--circle { animation-delay: var(--float-delay, 0s); }
.hero-shape--rounded-sq { animation-delay: var(--float-delay, 0s); }
.hero-shape--diamond { animation-delay: var(--float-delay, 0s); }
.hero-shape--hex { animation-delay: var(--float-delay, 0s); }

/* Subtle pulse for variety — some shapes breathe */
.hero-shape:nth-child(odd) {
  animation:
    heroShapeFloat var(--float-duration, 8s) ease-in-out var(--float-delay, 0s) infinite,
    heroShapeFadeIn 1.2s ease-out 0.6s forwards,
    heroShapePulse 4s ease-in-out var(--float-delay, 0s) infinite;
}

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

/* Responsive — smaller and fewer on mobile */
@media (max-width: 768px) {
  .hero-shape { width: 36px; height: 36px; }
  .hero-shape--sm { width: 28px; height: 28px; }
  .hero-shape--lg { width: 44px; height: 44px; }
  .hero-shape:nth-child(n+9) { display: none; }
}

@media (max-width: 480px) {
  .hero-shape:nth-child(n+7) { display: none; }
}

/* ---- Marquee ---- */
.marquee-track { animation: marquee 30s linear infinite; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.client-marquee { animation: client-marquee 25s linear infinite; }
@keyframes client-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- Services Section (Dark Bento Grid) ---- */
.zo-svc-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
}
.zo-svc-glow--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,165,53,0.12), transparent 70%);
  top: -150px; right: -100px;
}
.zo-svc-glow--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,165,53,0.08), transparent 70%);
  bottom: -100px; left: -80px;
}

.zo-svc-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
  will-change: transform;
}
.zo-svc-card:hover {
  border-color: rgba(212, 165, 53, 0.25);
  transform: translateY(-6px);
  box-shadow:
    0 25px 60px rgba(212, 165, 53, 0.08),
    0 0 0 1px rgba(212, 165, 53, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Cursor spotlight */
.zo-svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(212, 165, 53, 0.06),
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.zo-svc-card:hover::before { opacity: 1; }

/* Shimmer sweep */
.zo-svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(212, 165, 53, 0.04) 45%,
    rgba(212, 165, 53, 0.08) 50%,
    rgba(212, 165, 53, 0.04) 55%,
    transparent 60%
  );
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 5;
}
.zo-svc-card:hover::after {
  animation: zo-shimmer 0.7s ease-out forwards;
}
@keyframes zo-shimmer { to { transform: translateX(100%); } }

/* Editorial number */
.zo-svc-num {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(212, 165, 53, 0.04);
  z-index: 2;
  pointer-events: none;
  transition: color 0.5s ease;
  user-select: none;
}
.zo-svc-card:hover .zo-svc-num { color: rgba(212, 165, 53, 0.1); }

/* Icon wrapper */
.zo-svc-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(212,165,53,0.08), rgba(212,165,53,0.03));
  border: 1px solid rgba(212,165,53,0.12);
  margin-bottom: 1.5rem;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.zo-svc-card:hover .zo-svc-icon-wrap {
  background: linear-gradient(135deg, rgba(212,165,53,0.15), rgba(212,165,53,0.06));
  border-color: rgba(212,165,53,0.3);
  box-shadow: 0 0 24px rgba(212,165,53,0.12);
}

/* Icon SVG */
.zo-svc-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}
.zo-svc-card:hover .zo-svc-icon {
  transform: scale(1.15) rotate(-5deg);
  filter: drop-shadow(0 0 8px rgba(212,165,53,0.4));
}

/* Learn more link */
.zo-svc-link {
  color: rgba(212, 165, 53, 0.6);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.zo-svc-link a { color: inherit; text-decoration: none; }
.zo-svc-card:hover .zo-svc-link { color: var(--gold); }
.zo-svc-link svg { transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
.zo-svc-card:hover .zo-svc-link svg { transform: translateX(4px); }

@media (max-width: 768px) {
  .zo-svc-num { font-size: 3rem; }
}

/* ---- Portfolio Cards ---- */
.portfolio-card { transition: transform 0.5s ease; }
.portfolio-card:hover { transform: scale(1.02); }

/* ---- Portfolio Slider (Center-Focus) ---- */
.zo-portfolio-slider {
  overflow: hidden;
  position: relative;
}

.zo-slider-track {
  display: flex;
  align-items: center;
  cursor: grab;
  user-select: none;
  will-change: transform;
}

.zo-slider-track.is-dragging {
  cursor: grabbing;
}
.zo-slider-track.is-dragging .portfolio-card {
  pointer-events: none;
}

/* Each slide: fixed width with padding for the gap — all slides stay fully opaque */
.zo-slide {
  flex-shrink: 0;
  width: min(85vw, 760px);
  padding: 0 12px;
  opacity: 1;
  transform: none;
  transition: transform 0.5s ease;
}

/* Active (center) slide lifts slightly for focus without dimming neighbours */
.zo-slide.is-active .portfolio-card {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.25);
}
.zo-slide .portfolio-card {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Dot navigation */
.zo-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  padding: 0;
  transition: all 0.4s ease;
}
.zo-slider-dot.is-active {
  width: 28px;
  background: var(--gold);
}
.zo-slider-dot:hover {
  background: var(--gold-light);
}

/* Card shape is set by the image wrapper (aspect-[16/9]); the content strip
   below grows to fit its content. Keep the card background dark so rounded
   corners don't show any seam between image and content strip. */
.zo-slide .portfolio-card {
  background: var(--dark, #0f1321);
}

/* ---- Technologies Section: Midnight Indigo Atmosphere ---- */
.zo-tech-section {
  background: #18334c;
  color: #fff;
  isolation: isolate;
}

/* Aurora mesh — sweeping conic glow that rotates slowly */
.zo-tech-aurora {
  position: absolute;
  inset: -20%;
  background:
    conic-gradient(from 180deg at 50% 50%,
      rgba(212, 165, 53, 0) 0deg,
      rgba(212, 165, 53, 0.10) 60deg,
      rgba(240, 200, 90, 0.04) 120deg,
      rgba(212, 165, 53, 0) 180deg,
      rgba(108, 85, 200, 0.08) 280deg,
      rgba(212, 165, 53, 0) 360deg);
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
  animation: zo-tech-aurora-spin 40s linear infinite;
  z-index: 0;
}
@keyframes zo-tech-aurora-spin {
  to { transform: rotate(360deg); }
}

/* Fine noise/grain for depth (SVG data URI — no asset dependency) */
.zo-tech-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.45 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

/* Fine dotted grid for editorial structure */
.zo-tech-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}

/* Decorative corner glow accents */
.zo-tech-corner {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 9999px;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.zo-tech-corner--tl {
  top: -160px;
  left: -160px;
  background: radial-gradient(circle, rgba(212, 165, 53, 0.22), transparent 70%);
}
.zo-tech-corner--br {
  bottom: -160px;
  right: -160px;
  background: radial-gradient(circle, rgba(70, 50, 160, 0.28), transparent 70%);
}

/* ---- Marquee Mechanics ---- */
.zo-tech-marquee-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.zo-tech-marquee {
  display: flex;
  gap: 1.25rem;
  width: max-content;
}
.zo-tech-marquee--ltr {
  animation: zo-tech-scroll-ltr 35s linear infinite;
}
.zo-tech-marquee--rtl {
  animation: zo-tech-scroll-rtl 40s linear infinite;
}
@keyframes zo-tech-scroll-ltr {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes zo-tech-scroll-rtl {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ---- Tech Chips: Glass Pill with Gold Edge Highlight ---- */
.zo-tech-chip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 40%, rgba(255, 255, 255, 0.04) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3),
    0 8px 24px -12px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
  flex-shrink: 0;
  overflow: hidden;
}
.zo-tech-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(240, 200, 90, 0.35), rgba(212, 165, 53, 0) 40%, rgba(212, 165, 53, 0) 60%, rgba(240, 200, 90, 0.18) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.zo-tech-chip:hover {
  border-color: rgba(212, 165, 53, 0.4);
  background:
    linear-gradient(135deg, rgba(212, 165, 53, 0.12) 0%, rgba(240, 200, 90, 0.04) 100%);
  box-shadow:
    inset 0 1px 0 rgba(240, 200, 90, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3),
    0 12px 32px -8px rgba(212, 165, 53, 0.25);
  transform: translateY(-2px);
}
.zo-tech-chip:hover::before {
  opacity: 1;
}
.zo-tech-chip-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: var(--gold-light, #F0C85A);
  filter: drop-shadow(0 0 4px rgba(240, 200, 90, 0.25));
  transition: transform 0.35s ease, filter 0.35s ease;
}
.zo-tech-chip-icon svg {
  width: 100%;
  height: 100%;
}
.zo-tech-chip:hover .zo-tech-chip-icon {
  transform: scale(1.18) rotate(-3deg);
  filter: drop-shadow(0 0 10px rgba(240, 200, 90, 0.65));
}

/* Pause marquee on hover */
.zo-tech-marquee-wrap:hover .zo-tech-marquee {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .zo-tech-marquee--ltr,
  .zo-tech-marquee--rtl,
  .zo-tech-aurora {
    animation: none;
  }
}

@media (max-width: 768px) {
  .zo-tech-corner { width: 280px; height: 280px; filter: blur(90px); }
  .zo-tech-chip { padding: 0.75rem 1.2rem; gap: 0.6rem; }
}

/* ---- Team Section: Circular Portraits ---- */
.zo-team-section {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 165, 53, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #FFFDF7 0%, #FFFFFF 100%);
  isolation: isolate;
}
.zo-team-backdrop {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(212, 165, 53, 0.09) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 40%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 40%, #000 0%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.zo-team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: default;
}

.zo-team-thumb {
  position: relative;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  margin-bottom: 1.25rem;
  border-radius: 9999px;
  isolation: isolate;
}

/* Animated gold gradient ring that reveals on hover */
.zo-team-thumb-ring {
  position: absolute;
  inset: -6px;
  border-radius: 9999px;
  background: conic-gradient(from 0deg,
    #F0C85A 0deg,
    #D4A535 90deg,
    #8B6914 180deg,
    #D4A535 270deg,
    #F0C85A 360deg);
  opacity: 0;
  filter: blur(1px);
  transition: opacity 0.5s ease, transform 0.8s ease;
  z-index: 0;
}
.zo-team-card:hover .zo-team-thumb-ring {
  opacity: 1;
  animation: zo-team-ring-spin 6s linear infinite;
}
@keyframes zo-team-ring-spin {
  to { transform: rotate(360deg); }
}

.zo-team-thumb-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF6DB 0%, #FFF9EC 60%, #FFFFFF 100%);
  border: 2px solid #fff;
  box-shadow:
    0 20px 40px -20px rgba(139, 105, 20, 0.25),
    0 8px 16px -8px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(212, 165, 53, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
  z-index: 1;
}
.zo-team-card:hover .zo-team-thumb-inner {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 30px 60px -24px rgba(139, 105, 20, 0.35),
    0 12px 24px -8px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(212, 165, 53, 0.2);
}

.zo-team-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
  filter: saturate(1.02);
}
.zo-team-card:hover .zo-team-photo {
  transform: scale(1.08);
}

.zo-team-initials {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #F0C85A 0%, #D4A535 50%, #8B6914 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform 0.5s ease;
  line-height: 1;
}
.zo-team-card:hover .zo-team-initials {
  transform: scale(1.08);
}

/* Hover overlay — slides up from bottom with elegant easing */
.zo-team-bio-overlay {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: radial-gradient(circle at 50% 50%, rgba(17, 17, 38, 0.94) 40%, rgba(17, 17, 38, 0.82) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 2;
  pointer-events: none;
}
.zo-team-bio-overlay p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  line-height: 1.55;
  margin: 0;
  letter-spacing: 0.005em;
}
.zo-team-card:hover .zo-team-bio-overlay {
  opacity: 1;
  transform: scale(1);
}

.zo-team-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.zo-team-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

/* Refined gold divider between name and title */
.zo-team-divider {
  display: block;
  width: 28px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, #D4A535 50%, transparent 100%);
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.zo-team-card:hover .zo-team-divider {
  width: 48px;
}

.zo-team-title {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8B6914;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .zo-team-thumb { max-width: 160px; }
  .zo-team-name { font-size: 1rem; }
  .zo-team-title { font-size: 0.7rem; }
  .zo-team-bio-overlay p { font-size: 0.7rem; }
}

@media (prefers-reduced-motion: reduce) {
  .zo-team-card:hover .zo-team-thumb-ring {
    animation: none;
  }
}

/* ---- Stat Counter ---- */
.stat-item { position: relative; }
.stat-item::after {
  content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.5s ease;
}
.stat-item.counted::after { opacity: 1; }

/* ---- Quote Popup ---- */
#quote-popup-overlay {
  transition: visibility 0.1s, opacity 0.3s ease;
}
#quote-popup-overlay.active {
  visibility: visible;
  opacity: 1;
}
#quote-popup-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}
#quote-popup-overlay.active #quote-popup-card {
  transform: scale(1);
  opacity: 1;
}

/* Testimonial slides */
.quote-popup-slide {
  display: none;
}
.quote-popup-slide.active {
  display: block;
}

/* Form input error state */
.quote-input.zo-form-error {
  border-color: #e53e3e !important;
}

/* Shake animation for validation */
.quote-popup-shake {
  animation: quoteShake 0.4s ease;
}
@keyframes quoteShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

/* ---- Form ---- */
#contact-form select option { background: #fff; color: #333; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  box-shadow: 0 0 0 3px rgba(212, 165, 53, 0.1);
}

/* ---- Contact Form: Underline Inputs ---- */
.zo-contact-label {
  display: block;
  color: #4b5563;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.zo-underline-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #d1d5db;
  border-radius: 0;
  padding: 0.625rem 0;
  font-size: 0.875rem;
  color: #111827;
  background: transparent;
  outline: none;
  transition: border-color 0.3s ease;
}

.zo-underline-input:focus {
  border-bottom-color: var(--gold);
  box-shadow: none;
}

.zo-underline-input::placeholder {
  color: #9ca3af;
}

/* ---- Form Validation Errors ---- */
.zo-form-error { border-color: #e53e3e !important; box-shadow: none !important; }
.zo-form-error-msg { color: #e53e3e; font-size: 0.75rem; margin-top: 0.375rem; }

/* ---- Contact FAQ Accordion (dark panel) ---- */
.zo-faq-item summary::-webkit-details-marker,
.zo-faq-item summary::marker {
  display: none;
  content: '';
}

.zo-faq-item > div {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.3s ease;
}

.zo-faq-item[open] > div {
  max-height: 12rem;
  opacity: 1;
}

/* ---- Contact Section: Layout ---- */
@media (min-width: 1024px) {
  .zo-contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .zo-cta-panel {
    display: flex;
  }
  .zo-form-panel {
    display: flex;
    flex-direction: column;
  }

  .zo-panel-left {
    max-width: 40rem;
    margin-left: auto;
  }
  .zo-panel-right {
    max-width: 40rem;
    margin-right: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .zo-form-card {
    flex: 1;
  }
}

/* ---- Why Choose: USP Grid ---- */
.zo-usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.zo-usp-item {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem;
}

/* Vertical dividers between columns */
.zo-usp-item:not(:nth-child(3n))::after {
  content: '';
  position: absolute;
  top: 12%;
  right: 0;
  width: 1px;
  height: 76%;
  background: rgba(255, 255, 255, 0.2);
}

/* Decorative underline beneath each item */
.zo-usp-line {
  display: block;
  width: 70%;
  height: 1px;
  margin: 1.25rem auto 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

/* Mobile: 2-column grid */
@media (max-width: 767px) {
  .zo-usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Reset 3n divider rule; show on odd items only */
  .zo-usp-item::after { display: none !important; }
  .zo-usp-item:nth-child(odd):not(:last-child)::after {
    display: block !important;
  }
  .zo-usp-item {
    padding: 1.5rem 1rem;
  }
}

/* ---- Magnetic Buttons ---- */
.magnetic-btn { position: relative; transition: transform 0.3s ease; }

/* ---- Vision/Mission Cards ---- */
.vision-mission-card { transform-style: preserve-3d; }

/* ---- Nav Overlay Content Alignment (match header max-w-7xl) ---- */
@media (min-width: 1024px) {
  #nav-left {
    padding-left: max(2rem, calc((100vw - 80rem) / 2 + 2rem));
  }
  #nav-right {
    padding-right: max(2rem, calc((100vw - 80rem) / 2 + 2rem));
  }
}

/* ---- Nav Overlay Link Animations ---- */
.nav-overlay-link, .nav-overlay-detail, .nav-overlay-social {
  opacity: 0;
  transform: translateY(15px);
}

/* ---- Testimonial Slider ---- */
.testimonial-slide {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.testimonial-slide.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.testimonial-dot {
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}
.testimonial-dot.w-8 {
  border-radius: 9999px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .stat-item .font-heading { font-size: 2.5rem; }
  #nav-left { padding-top: 6rem; }
}

@media (max-width: 640px) {
  .marquee-track span { font-size: 2rem; }
  .hero-mask-text { font-size: 20vw !important; }
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track, .client-marquee { animation: none; }
  .hero-headline { opacity: 1; transform: none; }
  .hero-shape { opacity: 0.1; animation: none !important; }
}

section { will-change: transform; }

/* ---- WhatsApp Floating Button ---- */
@keyframes wa-ping {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}
@keyframes wa-pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.3); opacity: 0.15; }
}
@keyframes wa-dot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
.animate-wa-ping { animation: wa-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite; }
.animate-wa-pulse { animation: wa-pulse 3s ease-in-out infinite; }
.animate-wa-dot { animation: wa-dot 2s ease-in-out infinite; }

/* ---- Pagination ---- */
.zenithone-pagination ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.zenithone-pagination li { display: inline-flex; }

.zenithone-pagination a,
.zenithone-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 9999px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  color: #6b7280;
}

.zenithone-pagination a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 165, 53, 0.05);
}

.zenithone-pagination .current {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 4px 14px rgba(212, 165, 53, 0.25);
}

.zenithone-pagination .prev,
.zenithone-pagination .next {
  border: none;
  color: var(--gold);
}

.zenithone-pagination .prev:hover,
.zenithone-pagination .next:hover {
  background: rgba(212, 165, 53, 0.1);
}

.zenithone-pagination .dots {
  border: none;
  color: #9ca3af;
  min-width: auto;
  padding: 0 4px;
}

/* ---- Inner Page Content Prose ---- */
.prose h2::before {
  display: none;
}

/* ---- Line Clamp Utility ---- */
.line-clamp-1 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; }
.line-clamp-2 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.line-clamp-3 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }

/* ---- Comment Form Fields ---- */
.comment-form p label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 0.75rem;
}

.comment-form p input[type="text"],
.comment-form p input[type="email"],
.comment-form p input[type="url"] {
  width: 100%;
  padding: 0.875rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  color: #111827;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.comment-form p input[type="text"]:focus,
.comment-form p input[type="email"]:focus,
.comment-form p input[type="url"]:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 165, 53, 0.1);
}

/* ============================================
   Internal Pages — Shared Styles
   ============================================ */

/* ---- Page Hero Reveal ---- */
.zo-page-hero .max-w-7xl > * {
  opacity: 0;
  transform: translateY(20px);
}
.zo-page-hero.zo-hero-loaded .max-w-7xl > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.zo-page-hero.zo-hero-loaded .max-w-7xl > *:nth-child(1) { transition-delay: 0.1s; }
.zo-page-hero.zo-hero-loaded .max-w-7xl > *:nth-child(2) { transition-delay: 0.2s; }
.zo-page-hero.zo-hero-loaded .max-w-7xl > *:nth-child(3) { transition-delay: 0.3s; }
.zo-page-hero.zo-hero-loaded .max-w-7xl > *:nth-child(4) { transition-delay: 0.4s; }
.zo-page-hero.zo-hero-loaded .max-w-7xl > *:nth-child(5) { transition-delay: 0.5s; }
.zo-page-hero.zo-hero-loaded .max-w-7xl > *:nth-child(6) { transition-delay: 0.6s; }

/* ---- Scroll Reveal Base ---- */
.zo-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.zo-reveal.zo-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Timeline ---- */
.zo-timeline-item { opacity: 0; transform: translateY(20px); }
.zo-timeline-item.zo-visible { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }

/* ---- Value Cards ---- */
.zo-value-card {
  transform-style: preserve-3d;
}
.zo-value-card:hover {
  transform: translateY(-4px);
}

/* ---- About Page: Section Divider ---- */
.zo-section-divider {
  position: relative;
}

/* ---- About Page: Stat Counters ---- */
.zo-about-stat {
  opacity: 0;
  transform: translateY(15px);
}
.zo-hero-loaded .zo-about-stat {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.zo-hero-loaded .zo-about-stat:nth-child(1) { transition-delay: 0.5s; }
.zo-hero-loaded .zo-about-stat:nth-child(3) { transition-delay: 0.7s; }
.zo-hero-loaded .zo-about-stat:nth-child(5) { transition-delay: 0.9s; }

/* ---- About Page: Mission/Vision Cards ---- */
.zo-about-card {
  position: relative;
  overflow: hidden;
}
.zo-about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 53, 0.03), transparent);
  transition: left 0.6s ease;
}
.zo-about-card:hover::before {
  left: 100%;
}

/* ---- About Page: Advantage Cards ---- */
.zo-advantage-card {
  position: relative;
  overflow: hidden;
}
.zo-advantage-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.4s ease;
}
.zo-advantage-card:hover::after {
  width: 60%;
}

/* ---- CTA Button Glow ---- */
.zo-cta-btn {
  position: relative;
}
.zo-cta-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  filter: blur(8px);
}
.zo-cta-btn:hover::before {
  opacity: 0.4;
}

/* ---- Gallery Grid ---- */
.zo-gallery-item {
  transform: scale(0.95);
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.zo-gallery-item.zo-visible {
  transform: scale(1);
}

/* ---- Accordion ---- */
.zo-accordion-item {
  background: white;
}
.zo-accordion-item.zo-accordion-open {
  border-color: rgba(212, 165, 53, 0.3);
  box-shadow: 0 4px 20px rgba(212, 165, 53, 0.06);
}
.zo-accordion-item.zo-accordion-open .zo-accordion-icon {
  background: var(--gold);
}
.zo-accordion-item.zo-accordion-open .zo-accordion-icon svg {
  color: white;
  transform: rotate(45deg);
}

/* ---- Skill Bars ---- */
.zo-skill-bar {
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Process Steps ---- */
.zo-process-step {
  opacity: 0;
  transform: translateY(20px);
}
.zo-process-step.zo-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ---- Blog Cards ---- */
.zo-blog-card {
  transition: transform 0.4s ease;
}
.zo-blog-card:hover {
  transform: translateY(-4px);
}

/* ---- Team Cards (Page) ---- */
.zo-team-card {
  transition: transform 0.4s ease;
}
.zo-team-card:hover {
  transform: translateY(-6px);
}

/* ---- Service Cards (Page) ---- */
.zo-service-card {
  transform-style: preserve-3d;
}

/* ---- Featured Post ---- */
.zo-featured-post {
  transition: transform 0.4s ease;
}

/* ---- Map Container ---- */
.zo-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- Contact Form Wrap ---- */
.zo-contact-form-wrap input,
.zo-contact-form-wrap textarea,
.zo-contact-form-wrap select {
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.zo-contact-form-wrap input:focus,
.zo-contact-form-wrap textarea:focus,
.zo-contact-form-wrap select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 165, 53, 0.1);
}

/* ---- Experience Timeline ---- */
.zo-exp-timeline > div::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
}

/* ============================================
   Blog Post — Prose Typography
   (Tailwind CDN play script lacks @tailwindcss/typography,
    so all prose-* utilities are inert. Manual rules below.)
   ============================================ */

.zo-prose {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.85;
}

.zo-prose > * + * {
  margin-top: 1.5em;
}

/* ---- Headings ---- */
.zo-prose h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #f3f4f6;
  line-height: 1.3;
  position: relative;
}

.zo-prose h2::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

@media (min-width: 768px) {
  .zo-prose h2 { font-size: 1.875rem; }
}

.zo-prose h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.zo-prose h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

/* ---- Paragraphs ---- */
.zo-prose p {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

/* ---- Links ---- */
.zo-prose a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.zo-prose a:hover { color: #C8962E; }

/* ---- Bold ---- */
.zo-prose strong {
  color: #111827;
  font-weight: 600;
}

/* ---- Images ---- */
.zo-prose img {
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
  margin-bottom: 2rem;
  max-width: 100%;
  height: auto;
}

/* ---- Lists ---- */
.zo-prose ul,
.zo-prose ol {
  padding-left: 1.5em;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.zo-prose ul { list-style-type: disc; }
.zo-prose ol { list-style-type: decimal; }

.zo-prose li {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  padding-left: 0.375em;
}
.zo-prose li::marker { color: var(--gold); }

.zo-prose li > ul,
.zo-prose li > ol {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

/* ---- Blockquotes ---- */
.zo-prose blockquote {
  border-left: 3px solid var(--gold);
  background: rgba(212, 165, 53, 0.04);
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 1.25rem 1.5rem;
  font-style: normal;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.zo-prose blockquote p { margin: 0; color: #374151; }

/* ---- Code ---- */
.zo-prose code {
  background: #f3f4f6;
  padding: 0.2em 0.4em;
  border-radius: 0.25rem;
  font-size: 0.875em;
}

.zo-prose pre {
  background: #111827;
  color: #e5e7eb;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  overflow-x: auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.zo-prose pre code { background: transparent; padding: 0; color: inherit; }

/* ---- Misc ---- */
.zo-prose > *:first-child { margin-top: 0; }
.zo-prose > *:last-child { margin-bottom: 0; }

.zo-prose hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 3rem 0;
}

.zo-prose table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.zo-prose th,
.zo-prose td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}
.zo-prose th {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #111827;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.zo-prose figcaption {
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

/* ---- Share Sidebar (fixed left of content, scroll-aware) ---- */
.zo-share-sidebar {
  position: fixed;
  left: calc(50vw - 480px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.zo-share-sidebar.zo-share-visible {
  opacity: 1;
  pointer-events: auto;
}

.zo-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  color: #6b7280;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}
.zo-share-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 165, 53, 0.05);
  box-shadow: 0 4px 12px rgba(212, 165, 53, 0.15);
}
.zo-share-btn.zo-copied {
  border-color: #10b981;
  color: #10b981;
  background: rgba(16, 185, 129, 0.05);
}

/* ---- Reduced Motion Override ---- */
@media (prefers-reduced-motion: reduce) {
  .zo-reveal,
  .zo-page-hero .max-w-7xl > *,
  .zo-timeline-item,
  .zo-process-step,
  .zo-gallery-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .zo-skill-bar { transition: none !important; }
}

/* ──────────────────────────────────────────────────────────────
   WYSIWYG content block (service_deliver_content, etc.)
   Restores native-looking rich text rendering. Tailwind's
   Preflight strips default list styles and the Play CDN here
   does not include @tailwindcss/typography, so `prose` utilities
   are no-ops. This block replaces them with explicit rules.
   ────────────────────────────────────────────────────────────── */
.zo-wysiwyg {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.85;
}
.zo-wysiwyg > :first-child { margin-top: 0; }
.zo-wysiwyg > :last-child  { margin-bottom: 0; }

.zo-wysiwyg p {
  margin: 0 0 1.25rem;
}
.zo-wysiwyg h1,
.zo-wysiwyg h2,
.zo-wysiwyg h3,
.zo-wysiwyg h4,
.zo-wysiwyg h5,
.zo-wysiwyg h6 {
  font-family: 'Outfit', sans-serif;
  color: #111827;
  font-weight: 700;
  line-height: 1.3;
}
.zo-wysiwyg h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f3f4f6;
}
.zo-wysiwyg h3 {
  font-size: 1.375rem;
  margin: 2rem 0 0.75rem;
  color: #1f2937;
}
.zo-wysiwyg h4 {
  font-size: 1.125rem;
  margin: 1.5rem 0 0.5rem;
  color: #1f2937;
}
.zo-wysiwyg ul,
.zo-wysiwyg ol {
  margin: 1.25rem 0 1.5rem;
  padding-left: 1.5rem;
}
.zo-wysiwyg ul { list-style: disc; }
.zo-wysiwyg ol { list-style: decimal; }
.zo-wysiwyg li {
  margin: 0.5rem 0;
  padding-left: 0.25rem;
}
.zo-wysiwyg li::marker { color: #D4A535; }
.zo-wysiwyg ul ul,
.zo-wysiwyg ol ol,
.zo-wysiwyg ul ol,
.zo-wysiwyg ol ul {
  margin: 0.5rem 0;
}
.zo-wysiwyg a {
  color: #C8962E;
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 150, 46, 0.3);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.zo-wysiwyg a:hover { color: #8B6914; border-bottom-color: currentColor; }
.zo-wysiwyg strong { color: #111827; font-weight: 600; }
.zo-wysiwyg em     { font-style: italic; }
.zo-wysiwyg blockquote {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid #D4A535;
  background: rgba(255, 249, 230, 0.6);
  border-radius: 0 0.75rem 0.75rem 0;
  color: #374151;
  font-style: normal;
}
.zo-wysiwyg blockquote p:last-child { margin-bottom: 0; }
.zo-wysiwyg img {
  border-radius: 1rem;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
  margin: 1.5rem 0;
  max-width: 100%;
  height: auto;
}
.zo-wysiwyg hr {
  border: 0;
  border-top: 1px solid #e5e7eb;
  margin: 2rem 0;
}
.zo-wysiwyg code {
  background: #f3f4f6;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.9em;
}
.zo-wysiwyg pre {
  background: #0D0D0D;
  color: #f3f4f6;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.zo-wysiwyg pre code { background: transparent; padding: 0; }
.zo-wysiwyg table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.zo-wysiwyg th,
.zo-wysiwyg td {
  border: 1px solid #e5e7eb;
  padding: 0.5rem 0.75rem;
  text-align: left;
}
.zo-wysiwyg th {
  background: #f9fafb;
  font-weight: 600;
  color: #111827;
}
