/* ==========================================================================
   TECH STEWARD DIGITAL AI — CORE DESIGN SYSTEM TOKENS
   ========================================================================== */
:root {
  /* Brand Canvas & Surfaces */
  --bg-base: #070d1f;
  --bg-secondary: #050a18;
  --bg-card: #0c152e;
  --bg-card-glass: rgba(12, 21, 46, 0.78);
  --bg-surface-elevated: rgba(18, 30, 64, 0.65);
  --bg-overlay: rgba(4, 8, 20, 0.88);

  /* Brand Accent Colors */
  --electric-blue: #0533ff;
  --cyan-glow: #00d2ff;
  --purple-glow: #8a2be2;
  --lime: #92d14f;
  --lime-bright: #9de500;
  --lime-olive: #6c9c08;
  --lime-glow: rgba(146, 209, 79, 0.45);
  --lime-subtle: rgba(146, 209, 79, 0.12);
  --lime-border: rgba(146, 209, 79, 0.32);

  /* Typography Colors */
  --white: #ffffff;
  --text-sublight: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --ink: #070d1f;

  /* Glass & Glow Borders */
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-glass-light: rgba(255, 255, 255, 0.18);
  --border-glow: rgba(146, 209, 79, 0.35);
  --border-cyan: rgba(0, 210, 255, 0.3);

  /* Font Family Stacks */
  --font-headline: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* 3D Motion & Radii */
  --depth-perspective: 1200px;
  --spring-bounce: cubic-bezier(.34, 1.56, .64, 1);
  --transition-smooth: all .3s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-pill: 9999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background-color: var(--bg-base);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-sublight);
  line-height: 1.6;
  overflow-x: clip;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

header,
section,
.display-hero,
.hero,
.cta,
footer {
  perspective: var(--depth-perspective);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   AMBIENT CANVAS & BACKGROUND CYBER LIGHTS
   ========================================================================== */
.ambient-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background-color: var(--bg-base);
}

/* Green Neon Ambient Glow Orbs */
.ambient-glow-orb-1 {
  position: absolute;
  top: -12%;
  left: 50%;
  transform: translateX(-50%);
  width: 1050px;
  height: 750px;
  background: radial-gradient(circle, rgba(157, 229, 0, 0.22) 0%, rgba(0, 210, 255, 0.14) 38%, rgba(5, 51, 255, 0.1) 68%, transparent 80%);
  filter: blur(105px);
  border-radius: 50%;
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

.ambient-glow-orb-2 {
  position: absolute;
  bottom: 15%;
  right: -120px;
  width: 750px;
  height: 650px;
  background: radial-gradient(circle, rgba(146, 209, 79, 0.18) 0%, rgba(0, 210, 255, 0.12) 42%, rgba(5, 51, 255, 0.08) 65%, transparent 75%);
  filter: blur(95px);
  border-radius: 50%;
  animation: pulseGlow 10s ease-in-out infinite alternate-reverse;
}

.ambient-glow-orb-3 {
  position: absolute;
  top: 48%;
  left: -100px;
  width: 700px;
  height: 600px;
  background: radial-gradient(circle, rgba(157, 229, 0, 0.14) 0%, rgba(0, 210, 255, 0.08) 45%, transparent 75%);
  filter: blur(100px);
  border-radius: 50%;
  animation: pulseGlow 12s ease-in-out infinite alternate;
}

.ambient-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(157, 229, 0, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(157, 229, 0, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 50% 40%, black 45%, transparent 88%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, black 45%, transparent 88%);
  z-index: 1;
}

/* Green Neon Constellation Canvas */
.constellation-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

@keyframes pulseGlow {
  0% {
    transform: translate(-50%, 0) scale(0.92);
    opacity: 0.85;
  }

  100% {
    transform: translate(-50%, 0) scale(1.08);
    opacity: 1;
  }
}

/* ==========================================================================
   CUSTOM SCROLLBAR
   ========================================================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--lime), var(--cyan-glow));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--lime-bright);
}

/* ==========================================================================
   PULSE DOT & BLINK KEYFRAMES
   ========================================================================== */
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--lime);
  animation: blink 1.4s infinite ease-in-out;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(0.75);
  }
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lime);
  color: var(--bg-base);
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  transition: var(--transition-smooth);
  border: 1.5px solid var(--lime);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 0 24px rgba(146, 209, 79, 0.35);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover {
  background: var(--lime-bright);
  border-color: var(--lime-bright);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(146, 209, 79, 0.55), 0 0 20px rgba(0, 210, 255, 0.4);
  color: var(--bg-base);
}

.btn:hover::before {
  opacity: 1;
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn.ghost {
  background: rgba(12, 21, 46, 0.6);
  color: var(--white);
  border: 1.5px solid var(--border-glass-light);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.btn.ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(146, 209, 79, 0.08);
  box-shadow: 0 8px 30px rgba(146, 209, 79, 0.25);
}

/* GLOWING PILL BUTTON (FOR NEW DISPLAY HERO) */
.btn-glowing-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #6ea40a 0%, #527c03 100%);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 16px 42px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(162, 227, 43, 0.45);
  cursor: pointer;
  box-shadow: 0 0 50px rgba(110, 164, 10, 0.65), 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-glowing-pill:hover {
  background: linear-gradient(180deg, #7eb90e 0%, #5e8d05 100%);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 0 70px rgba(146, 209, 79, 0.85), 0 12px 30px rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border-color: rgba(162, 227, 43, 0.7);
}

/* ==========================================================================
   HEADER & NAVIGATION (TRANSPARENT + SMART AUTO HIDE/SHOW ON SCROLL)
   ========================================================================== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

header.nav-hidden {
  transform: translateY(-120%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: transform 0.3s var(--spring-bounce);
}

.brand-logo-wrap:hover {
  transform: scale(1.03);
}

.nav-shield {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.16) 0%, rgba(12, 21, 46, 0.95) 80%);
  border: 1.5px solid var(--lime);
  box-shadow: 0 0 16px rgba(146, 209, 79, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2px;
  flex-shrink: 0;
}

.nav-shield img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.brand-subtitle {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ==========================================================================
   NAVIGATION MENU (DARK #090F1F CAPSULE + BLUE/GREEN NEON GLOW)
   ========================================================================== */
nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
  background: #090f1f;
  border-radius: var(--radius-pill);
  padding: 5px 8px;
  border: 1px solid rgba(0, 210, 255, 0.28);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.55),
    0 0 18px rgba(0, 210, 255, 0.12),
    inset 0 0 12px rgba(146, 209, 79, 0.06);
}

nav a {
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  text-decoration: none;
}

/* Hover: White with Blue/Green effects glow */
nav a:hover {
  color: #ffffff;
  background: rgba(0, 210, 255, 0.1);
  text-shadow: 0 0 10px rgba(157, 229, 0, 0.8), 0 0 18px rgba(0, 210, 255, 0.6);
  box-shadow: 0 0 14px rgba(0, 210, 255, 0.2);
  transform: translateY(-1px);
}

/* Active Section Pill: Blue/Green gradient glow accent */
nav a.active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(146, 209, 79, 0.28) 0%, rgba(0, 210, 255, 0.25) 100%);
  border: 1px solid rgba(146, 209, 79, 0.5);
  box-shadow: 0 0 18px rgba(146, 209, 79, 0.35), inset 0 0 12px rgba(0, 210, 255, 0.2);
  text-shadow: 0 0 10px rgba(157, 229, 0, 0.85);
  font-weight: 700;
  transform: none;
}

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 1.4rem;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--lime);
}

/* ==========================================================================
   NEW DISPLAY HERO SECTION (3-CARD 3D STACK + SPACE GROTESK BOLD)
   ========================================================================== */
.display-hero {
  position: relative;
  padding: 70px 0 60px;
  text-align: center;
  z-index: 2;
}

.display-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1120px;
}

/* Container with 3D Perspective & Stacking Isolation */
.hero-image-stack {
  position: relative;
  width: 160px;
  height: 136px;
  margin: 0 auto 34px;
  perspective: 1200px;
  isolation: isolate;
}

/* Base styling for all 3 cards */
.hero-image-stack .card {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  transform-origin: center center;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  background: var(--bg-card);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.25, 1),
              box-shadow 0.35s ease,
              border-color 0.3s ease,
              opacity 0.35s ease,
              filter 0.35s ease;
  user-select: none;
  -webkit-user-select: none;
}

.hero-image-stack .card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  pointer-events: none;
  transition: transform 0.4s ease;
}

/* Card 1: Back-Left Card (Hero2) - Enters second with 1s delay */
.card-back-left {
  width: 108px;
  height: 131px;
  top: 2px;
  left: -18px;
  z-index: 2;
  transform: translate3d(-6px, 0, 0) rotate(-6deg);
  animation: springCardLeft 1s cubic-bezier(0.22, 1, 0.36, 1) 1.3s both;
}

/* Card 2: Back-Right Card (Hero3) - Enters third with 2s delay */
.card-back-right {
  width: 102px;
  height: 128px;
  top: 2px;
  bottom: auto;
  right: -18px;
  z-index: 2;
  transform: translate3d(6px, 0, 0) rotate(6deg);
  animation: springCardRight 1s cubic-bezier(0.22, 1, 0.36, 1) 2.3s both;
}

/* Card 3: Center Front Card (Hero1) - Enters first */
.card-center {
  width: 86px;
  height: 118px;
  top: 14px;
  left: 37px;
  z-index: 5;
  transform: translate3d(0, 0, 0) rotate(0deg);
  animation: springCardCenter 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

/* ==========================================================================
   SMOOTH ENTRANCE KEYFRAMES (NO FLICKER / NO BOUNDARY GLITCH)
   ========================================================================== */

/* Back Left Entrance */
@keyframes springCardLeft {
  0% {
    opacity: 0;
    transform: translate3d(-30px, 70px, 0) scale(1.3) rotate(-14deg);
    filter: blur(4px);
  }
  65% {
    opacity: 1;
    transform: translate3d(-8px, -4px, 0) scale(0.98) rotate(-5deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(-6px, 0, 0) scale(1) rotate(-6deg);
    filter: blur(0);
  }
}

/* Back Right Entrance */
@keyframes springCardRight {
  0% {
    opacity: 0;
    transform: translate3d(30px, 70px, 0) scale(1.3) rotate(14deg);
    filter: blur(4px);
  }
  65% {
    opacity: 1;
    transform: translate3d(8px, -4px, 0) scale(0.98) rotate(5deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(6px, 0, 0) scale(1) rotate(6deg);
    filter: blur(0);
  }
}

/* Center Front Entrance */
@keyframes springCardCenter {
  0% {
    opacity: 0;
    transform: translate3d(0, 80px, 0) scale(1.4);
    filter: blur(5px);
  }
  65% {
    opacity: 1;
    transform: translate3d(0, -6px, 0) scale(1.04);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    filter: blur(0);
  }
}

/* ==========================================================================
   INTERACTIVE HOVER: BRING FORWARD & SEND BACKWARD (NO GLITCH)
   ========================================================================== */

/* When hovering over an individual card, BRING IT FORWARD */
.hero-image-stack .card:hover {
  z-index: 25 !important;
  transform: translate3d(0, -12px, 0) rotate(0deg) scale(1.22) !important;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.75), 0 0 35px rgba(146, 209, 79, 0.6), 0 0 15px rgba(0, 210, 255, 0.45);
  border-color: var(--lime);
  opacity: 1 !important;
  filter: brightness(1.1);
}

.hero-image-stack .card:hover img {
  transform: scale(1.05);
}

/* When the stack is hovered, SEND NON-HOVERED CARDS BACKWARD */
.hero-image-stack:hover .card:not(:hover) {
  opacity: 0.62;
  transform: scale(0.93) translateY(5px);
  filter: blur(0.5px) brightness(0.8);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Gentle stack expansion when hovering stack area */
.hero-image-stack:hover .card-back-left:not(:hover) {
  transform: translate3d(-14px, 4px, 0) rotate(-9deg) scale(0.93);
}

.hero-image-stack:hover .card-back-right:not(:hover) {
  transform: translate3d(14px, 4px, 0) rotate(9deg) scale(0.93);
}

.hero-image-stack:hover .card-center:not(:hover) {
  transform: translate3d(0, 4px, 0) scale(0.93);
}

/* ==========================================================================
   HERO IMAGE ZOOM LIGHTBOX MODAL (BLURRED BACKGROUND & LARGE ZOOM)
   ========================================================================== */
.hero-zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px;
}

.hero-zoom-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-zoom-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 22, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  cursor: pointer;
}

.hero-zoom-wrap {
  position: relative;
  z-index: 2;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.86);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-zoom-modal.active .hero-zoom-wrap {
  transform: scale(1);
}

.hero-zoom-card {
  background: rgba(12, 21, 46, 0.95);
  border: 1.5px solid rgba(146, 209, 79, 0.5);
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.85), 0 0 60px rgba(146, 209, 79, 0.3), 0 0 40px rgba(0, 210, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}

.hero-zoom-card img {
  max-width: 86vw;
  max-height: 75vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  cursor: zoom-out;
}

.hero-zoom-caption {
  margin-top: 14px;
  margin-bottom: 4px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--lime);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 0 15px rgba(146, 209, 79, 0.5);
}

.hero-zoom-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--bg-base);
  border: 2px solid #ffffff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 30px var(--lime);
  transition: transform 0.25s var(--spring-bounce), background 0.2s;
  z-index: 10;
}

.hero-zoom-close:hover {
  transform: scale(1.15) rotate(90deg);
  background: var(--lime-bright);
}

/* Main Display Headline (Space Grotesk Bold) */
.display-headline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.8vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 auto 22px;
  max-width: 1040px;
  text-align: center;
}

/* Typewriter Headline Container & Flowing Brand Color Mix */
.typewriter-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  vertical-align: bottom;
  max-width: 100%;
}

.typewriter-text {
  background: linear-gradient(120deg, var(--lime-bright) 0%, var(--cyan-glow) 40%, #ffffff 72%, var(--lime) 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 24px rgba(157, 229, 0, 0.42));
  animation: brandColorFlow 5s ease-in-out infinite alternate;
  letter-spacing: -0.015em;
  display: inline-block;
  min-height: 1.1em;
}

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

.typewriter-cursor {
  display: inline-block;
  width: 3.5px;
  height: 0.85em;
  background: var(--lime-bright);
  margin-left: 6px;
  border-radius: 2px;
  box-shadow: 0 0 14px var(--lime-bright), 0 0 24px rgba(0, 210, 255, 0.6);
  animation: blinkTypewriterCursor 0.8s step-end infinite;
  vertical-align: middle;
  flex-shrink: 0;
}

@keyframes blinkTypewriterCursor {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.display-subhead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 400;
  color: var(--text-sublight);
  line-height: 1.65;
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.display-cta-wrap {
  margin-top: 6px;
  margin-bottom: 20px;
}

/* ==========================================================================
   SECTION 2: ABOUT / SYSTEMS (IMAGE LEFT, GIANT "ABOUT" RIGHT)
   ========================================================================== */
.about-hero-section {
  position: relative;
  padding: 80px 0 24px;
  z-index: 2;
  background: transparent;
  border: none;
}

.about-hero-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Left: Large Rounded Portrait Card */
.about-hero-image-col {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-portrait-card {
  position: relative;
  width: 100%;
  max-width: 470px;
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 4 / 4.8;
  background: linear-gradient(145deg, rgba(12, 21, 46, 0.8), rgba(7, 13, 31, 0.95));
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 45px rgba(146, 209, 79, 0.12);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.about-portrait-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.75), 0 0 55px rgba(146, 209, 79, 0.22);
  border-color: rgba(146, 209, 79, 0.45);
}

.about-portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-portrait-card:hover img {
  transform: scale(1.03);
}

.portrait-badge-pill {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: rgba(7, 13, 31, 0.85);
  border: 1px solid rgba(146, 209, 79, 0.45);
  backdrop-filter: blur(14px);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--lime);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

/* Right: Text Column */
.about-hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ==========================================================================
   ABOUT SECTION: HEADER, NARRATIVE & HOOKS
   ========================================================================== */
.about-tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime-subtle);
  border: 1px solid var(--lime-border);
  border-radius: var(--radius-pill);
  padding: 5px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
  box-shadow: 0 0 20px rgba(146, 209, 79, 0.15);
  width: fit-content;
}

.about-main-heading {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
  background: linear-gradient(180deg, #ffffff 40%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-subheader {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: var(--lime);
  line-height: 1.45;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  text-shadow: 0 0 20px rgba(146, 209, 79, 0.25);
}

.about-bold-hook {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.65;
  margin-bottom: 16px;
}

/* ==========================================================================
   ABOUT: COMPACT 4-PILLAR STACK (INSIDE RIGHT COLUMN)
   ========================================================================== */
.about-pillars-compact {
  margin: 18px 0 24px;
  width: 100%;
}

.pillars-mini-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pillar-stack-list {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.pillar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, padding 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.pillar-row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pillar-row:hover {
  background: rgba(157, 229, 0, 0.035);
  border-bottom-color: rgba(157, 229, 0, 0.22);
  padding-left: 12px;
  padding-right: 12px;
}

.pillar-icons-capsule {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  flex-shrink: 0;
}

.tool-icon-square {
  width: 27px;
  height: 27px;
  border-radius: 7px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 1px 2px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease, border-color 0.28s ease;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

/* Staggered lift animation on row hover */
.pillar-row:hover .tool-icon-square {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25), 0 0 8px rgba(157, 229, 0, 0.25);
  border-color: rgba(157, 229, 0, 0.35);
}

.pillar-row:hover .tool-icon-square:nth-child(1) { transition-delay: 0.02s; }
.pillar-row:hover .tool-icon-square:nth-child(2) { transition-delay: 0.05s; }
.pillar-row:hover .tool-icon-square:nth-child(3) { transition-delay: 0.08s; }
.pillar-row:hover .tool-icon-square:nth-child(4) { transition-delay: 0.11s; }
.pillar-row:hover .tool-icon-square:nth-child(5) { transition-delay: 0.14s; }

/* Individual icon hover: prominent pop-up & glow */
.tool-icon-square:hover {
  transform: translateY(-4px) scale(1.18) !important;
  z-index: 10;
  border-color: var(--lime) !important;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.38), 0 0 12px rgba(157, 229, 0, 0.5) !important;
  transition-delay: 0s !important;
}

.tool-icon-square svg,
.tool-icon-square img {
  width: auto;
  height: auto;
  max-width: 18px;
  max-height: 18px;
  object-fit: contain;
  display: block;
  transition: transform 0.22s ease;
}

.tool-icon-square:hover img,
.tool-icon-square:hover svg {
  transform: scale(1.12);
}

.pillar-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.pillar-title {
  font-family: var(--font-headline);
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.pillar-row:hover .pillar-title {
  color: var(--lime);
  text-shadow: 0 0 10px rgba(157, 229, 0, 0.35);
}

.pillar-subtext {
  font-family: var(--font-body);
  font-size: 0.74rem;
  color: var(--text-sublight);
  line-height: 1.35;
  margin: 0;
}

.pillar-index {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.pillar-row:hover .pillar-index {
  color: var(--lime);
  text-shadow: 0 0 8px rgba(157, 229, 0, 0.45);
  transform: translateX(1px);
}

/* ==========================================================================
   CREDENTIALS, CERTIFICATES & DAILY DRIVERS SECTION (ONE UNIFIED SECTION)
   ========================================================================== */
.certifications-section {
  position: relative;
  padding: 85px 0 85px;
  background: transparent;
}

.certifications-section .about-trust-compact {
  margin-top: 0;
  padding-top: 0;
}

.credentials-tools-embed {
  margin-top: 50px;
  padding: 0;
  position: relative;
  width: 100%;
}

.about-trust-compact {
  margin-top: 0;
  padding-top: 0;
  text-align: center;
  max-width: 1220px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.trust-header {
  text-align: center;
  margin-bottom: 24px;
}

.trust-title {
  font-family: var(--font-headline);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-top: 6px;
}

.trust-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.trust-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.trust-mini-badge i {
  color: var(--lime);
  font-size: 0.85rem;
}

.trust-mini-badge:hover {
  border-color: var(--lime);
  background: rgba(157, 229, 0, 0.1);
  box-shadow: 0 0 14px rgba(157, 229, 0, 0.25);
  transform: translateY(-2px);
}

/* ==========================================================================
   CONTINUOUS MOVING CERTIFICATE & WORKSHOP DUAL CAROUSEL
   ========================================================================== */
.cert-dual-carousel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  overflow: hidden;
  padding: 8px 0 24px;
  margin: 10px 0 20px;
}

.cert-carousel-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.cert-carousel-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.cert-track-group {
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding-right: 20px;
}

/* Left-moving track (Row 1) */
.cert-carousel-track-left {
  animation: certScrollLeft 55s linear infinite;
}

/* Right-moving track (Row 2) */
.cert-carousel-track-right {
  animation: certScrollRight 55s linear infinite;
}

.cert-carousel-track:hover,
.cert-carousel-track-left:hover,
.cert-carousel-track-right:hover {
  animation-play-state: paused;
}

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

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

/* Fallback if single track used */
@keyframes certCarouselScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.cert-carousel-card {
  flex: 0 0 280px;
  width: 280px;
  user-select: none;
}

.cert-zoom-card {
  background: rgba(10, 18, 38, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md, 14px);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s var(--spring-bounce, cubic-bezier(0.34, 1.56, 0.64, 1)), border-color 0.3s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  height: 100%;
}

.cert-zoom-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--lime, #9de500);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(157, 229, 0, 0.25);
}

.cert-thumb-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: #060d21;
}

.cert-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.cert-zoom-card:hover .cert-thumb-wrap img {
  transform: scale(1.06);
}

/* Zoom Hover Indicator */
.cert-zoom-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(2, 6, 23, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}

.cert-zoom-card:hover .cert-zoom-overlay {
  opacity: 1;
  transform: scale(1);
  color: var(--lime, #9de500);
  border-color: var(--lime, #9de500);
}

/* Card Information & Metadata */
.cert-card-info {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(7, 13, 29, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-grow: 1;
}

.cert-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: 999px;
  width: fit-content;
}

/* Certificate badge: Electric Blue */
.cert-badge-cert {
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

/* Workshop badge: Warm Amber */
.cert-badge-workshop {
  background: rgba(251, 146, 60, 0.12);
  color: #fb923c;
  border: 1px solid rgba(251, 146, 60, 0.3);
}

/* Workshop & Certificate badge: Signature Lime */
.cert-badge-both {
  background: rgba(157, 229, 0, 0.12);
  color: var(--lime, #9de500);
  border: 1px solid rgba(157, 229, 0, 0.35);
}

.cert-card-platform {
  font-size: 0.7rem;
  color: var(--text-muted, #94a3b8);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cert-card-title {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-primary, #f1f5f9);
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.3em;
}

@media (max-width: 1024px) {
  .cert-carousel-card {
    flex: 0 0 240px;
    width: 240px;
  }
}

@media (max-width: 768px) {
  .pillar-row {
    flex-wrap: wrap;
    gap: 14px;
    padding: 16px 12px;
  }
  .pillar-center {
    order: 2;
    width: 100%;
  }
  .pillar-icons-capsule {
    order: 1;
  }
  .pillar-index {
    order: 1;
    margin-left: auto;
  }
  .cert-carousel-card {
    flex: 0 0 210px;
    width: 210px;
  }
}

@media (max-width: 900px) {
  .about-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-hero-text-col {
    align-items: center;
  }
}

/* ==========================================================================
   SECTION LABEL PILL
   ========================================================================== */
.sec-label {
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   STEWARDSHIP MARQUEE TICKER
   ========================================================================== */
.steward-ticker {
  background: transparent;
  border: none;
  overflow: hidden;
  padding: 10px 0;
  margin: 6px 0;
  transform-style: preserve-3d;
  position: relative;
}

.steward-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: stewardScroll 32s linear infinite;
  transform: translateZ(10px);
}

.steward-track:hover {
  animation-play-state: paused;
}

@keyframes stewardScroll {
  from {
    transform: translateX(0) translateZ(10px);
  }

  to {
    transform: translateX(-50%) translateZ(10px);
  }
}

.steward-item {
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--white);
  padding: 0 36px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.steward-item em {
  font-style: normal;
  font-weight: 700;
  color: var(--lime);
  text-shadow: 0 0 12px var(--lime-glow);
}

.steward-sep {
  color: var(--cyan-glow);
  font-size: 0.85rem;
  flex-shrink: 0;
  animation: sepSpin 4s ease-in-out infinite;
  display: inline-block;
  text-shadow: 0 0 8px var(--cyan-glow);
}

@keyframes sepSpin {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.3);
  }
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services {
  background: transparent;
  border: none;
  padding: 40px 0 90px;
  position: relative;
}

.services-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
}

.services-header .about-tagline-badge {
  margin-bottom: 14px;
}

.services-title {
  font-family: var(--font-headline);
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.15;
  text-align: center;
  margin: 0 0 16px 0;
  background: linear-gradient(180deg, #ffffff 40%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.services-header .services-title:last-child {
  margin-bottom: 0;
}

.sec-title {
  text-align: center;
  font-family: var(--font-headline);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  background: linear-gradient(180deg, #ffffff 40%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-title::before,
.sec-title::after {
  content: "";
  height: 2px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
}

/* ==========================================================================
   SERVICES: DONE-FOR-YOU BUSINESS AUTOMATION SYSTEM (CAPSULE SHOWCASE)
   ========================================================================== */
.dfy-system-showcase {
  margin-top: 10px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.dfy-header {
  text-align: center;
  margin-bottom: 36px;
}

.dfy-main-title {
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 3.4vw, 2.45rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--lime-bright);
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0 auto 10px;
  text-shadow: 0 0 24px rgba(157, 229, 0, 0.45), 0 2px 12px rgba(0, 0, 0, 0.8);
  max-width: 1400px;
}

.dfy-subhead {
  font-family: var(--font-headline);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin: 0 auto 10px;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.3);
}

.dfy-lead {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.5;
}

/* 2-Column Stadium Capsule Grid */
.dfy-capsules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

/* Stadium / Pill Capsule Cards */
.dfy-capsule-card {
  background: linear-gradient(135deg, rgba(12, 21, 46, 0.88) 0%, rgba(7, 13, 30, 0.92) 100%);
  border: 1.5px solid rgba(146, 209, 79, 0.38);
  border-radius: var(--radius-pill);
  padding: 22px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              background 0.3s ease;
}

/* Subtle glowing accent gradient inside capsule */
.dfy-capsule-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(146, 209, 79, 0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Left Column: Left-aligned text */
.dfy-col-left {
  text-align: left;
}

/* Right Column: Right-aligned text (matching the reference layout) */
.dfy-col-right {
  text-align: right;
}

/* Card Titles */
.dfy-card-title {
  font-family: var(--font-headline);
  font-size: clamp(1.15rem, 1.35vw, 1.32rem);
  font-weight: 700;
  color: var(--lime-bright);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

/* Card Descriptions */
.dfy-card-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: rgba(226, 232, 240, 0.9);
  line-height: 1.45;
  margin: 0;
}

/* Hover States */
.dfy-capsule-card:hover {
  transform: translateY(-3px);
  border-color: var(--lime-bright);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 
              0 0 28px rgba(157, 229, 0, 0.32), 
              inset 0 0 16px rgba(146, 209, 79, 0.08);
}

.dfy-capsule-card:hover::before {
  opacity: 1;
}

/* Subtle Bridge Divider to Deep Technical Architecture Stack */
.dfy-section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 48px auto 44px;
  max-width: 100%;
  width: 100%;
}

.dfy-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(146, 209, 79, 0.35), transparent);
}

.dfy-divider-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan-glow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.28);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  box-shadow: 0 0 18px rgba(0, 210, 255, 0.15);
}

.dfy-divider-badge i {
  font-size: 11px;
  color: var(--lime);
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .dfy-capsules-grid {
    gap: 16px 18px;
  }
  .dfy-capsule-card {
    padding: 18px 28px;
  }
}

@media (max-width: 768px) {
  .dfy-system-showcase {
    margin-bottom: 38px;
  }
  .dfy-capsules-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .dfy-capsule-card {
    border-radius: 26px;
    padding: 16px 22px;
  }
  /* On single column mobile, left-align both columns for standard readability */
  .dfy-col-right {
    text-align: left;
  }
  .dfy-main-title {
    font-size: 1.4rem;
  }
  .dfy-subhead {
    font-size: 1.05rem;
  }
  .dfy-section-divider {
    margin: 36px auto 32px;
  }
  .dfy-divider-badge {
    font-size: 10px;
    padding: 5px 14px;
  }
}

/* ==========================================================================
   SERVICES SECTION — WIDE FLUID SYSTEM FOR DESKTOP & LAPTOP
   ========================================================================== */
.services {
  background: transparent;
  border: none;
  padding: 60px 0 10px;
  position: relative;
  perspective: none !important; /* Required so sticky cards stick relative to viewport */
  overflow: visible !important;
  width: 100%;
}

.services .container,
.services .services-container {
  position: relative;
  overflow: visible;
  max-width: 100%;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: clamp(20px, 3.5vw, 60px);
  padding-right: clamp(20px, 3.5vw, 60px);
  box-sizing: border-box;
}

/* Container for the service cards */
.svc-grid {
  display: flex;
  flex-direction: column;
  gap: 46px;
  position: relative;
  overflow: visible;
  padding-bottom: 10px;
  width: 100%;
  max-width: 100%;
}

/* Standalone Full-Detail Service Cards (Smooth Scroll Fade-In, Non-Sticky) */
.svc-card {
  position: relative;
  background: rgba(10, 18, 42, 0.95);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  padding: 36px 42px 38px;
  text-align: left;
  box-shadow: 
    0 10px 32px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: visible;
  margin-bottom: 36px;
  transition: 
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-card:last-child {
  margin-bottom: 0;
}

/* Glowing accent rim along the top edge of each stacked card */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), rgba(0, 210, 255, 0.85), transparent);
  opacity: 0.8;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.svc-card:hover {
  border-color: rgba(146, 209, 79, 0.45);
  box-shadow: 
    0 -10px 28px rgba(0, 0, 0, 0.5),
    0 26px 65px rgba(0, 0, 0, 0.78),
    0 0 35px rgba(146, 209, 79, 0.22);
}

.svc-card:hover::before {
  opacity: 1;
  height: 2.5px;
}

/* Card Header: Category Badge on left, Icon on right */
.svc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.svc-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(146, 209, 79, 0.1);
  border: 1px solid rgba(146, 209, 79, 0.3);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

.svc-card .ico {
  font-size: 1.35rem;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(146, 209, 79, 0.09);
  border: 1px solid rgba(146, 209, 79, 0.22);
  transition: transform 0.35s var(--spring-bounce), color 0.3s, background 0.3s, border-color 0.3s;
  text-shadow: 0 0 15px var(--lime-glow);
}

.svc-card:hover .ico {
  transform: scale(1.12) rotate(-4deg);
  background: rgba(146, 209, 79, 0.2);
  border-color: var(--lime);
}

.svc-card h3 {
  font-family: var(--font-headline);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.svc-lead {
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--text-sublight);
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 1200px;
}

.svc-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(146, 209, 79, 0.4), rgba(0, 210, 255, 0.2), transparent);
  margin-bottom: 24px;
}

/* 3-Column Features Grid for wide row layout */
.svc-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-feature-item {
  background: rgba(6, 12, 28, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.25, 1);
}

.svc-feature-item:hover {
  background: rgba(12, 22, 50, 0.75);
  border-color: rgba(146, 209, 79, 0.32);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.svc-feature-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.62;
  color: #cbd5e1;
}

.svc-feature-text strong {
  color: #ffffff;
  font-weight: 700;
}

.svc-bullet {
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-right: 4px;
  text-shadow: 0 0 8px var(--lime-glow);
}

/* Contextual Tool Pills Strip */
.svc-tools-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  align-items: center;
}

.svc-tool-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: rgba(12, 21, 46, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: #cbd5e1;
  letter-spacing: 0.02em;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.25, 1);
  backdrop-filter: blur(8px);
}

.svc-tool-pill:hover {
  border-color: var(--lime);
  color: #ffffff;
  background: rgba(146, 209, 79, 0.16);
  transform: translateY(-1.5px);
  box-shadow: 0 4px 14px rgba(146, 209, 79, 0.25);
}

.svc-tool-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  border-radius: 3px;
  flex-shrink: 0;
}

.svc-tool-fa {
  font-size: 0.72rem;
  color: var(--lime);
  flex-shrink: 0;
  display: inline-block;
}

/* Responsive Service Card Adjustments */
@media (max-width: 1024px) {
  .svc-card {
    padding: 30px 28px 32px;
  }
  .svc-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .svc-card {
    padding: 24px 20px 26px;
    border-radius: 20px;
    margin-bottom: 24px;
  }
  .svc-card h3 {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
/* ==========================================================================
   WORKS / PROJECT SHOWCASE (BENTO GRID WITH HOVER REVEAL)
   ========================================================================== */
#work.works-section,
.works-section {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: none;
  padding: 40px 0 45px;
}

#work .stack-circuit-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.25;
}

.works-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.works-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  position: relative;
  flex-wrap: wrap;
}

.works-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.works-header-left .about-tagline-badge {
  margin-bottom: 12px;
}

.works-header-left .works-title {
  margin: 0;
  text-align: left;
  line-height: 1.1;
  font-family: var(--font-headline);
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  background: linear-gradient(180deg, #ffffff 40%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.works-header-right {
  display: flex;
  align-items: center;
  padding-bottom: 4px;
}

/* Button matching user design: sleek dark pill with lime outline */
.btn-all-projects {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 26px;
  background: rgba(8, 14, 26, 0.85);
  border: 1px solid var(--lime);
  border-radius: var(--radius-pill);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s var(--spring-bounce);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.btn-all-projects .btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  stroke: #ffffff;
}

.btn-all-projects:hover {
  background: rgba(146, 209, 79, 0.15);
  border-color: var(--lime-bright);
  color: #ffffff;
  box-shadow: 0 0 24px var(--lime-glow), 0 8px 25px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.btn-all-projects:hover .btn-arrow {
  transform: translateX(4px);
  stroke: var(--lime);
}

/* --- BENTO GRID --- */
.works-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

/* --- BENTO CARD BASE --- */
.works-bento-card {
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  background: #060c1e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
  cursor: pointer;
  text-decoration: none;
  outline: none;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s ease, 
              box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

.works-bento-card:focus-visible {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(157, 229, 0, 0.4), 0 20px 50px rgba(0, 0, 0, 0.7);
}

.works-bento-card:hover {
  transform: translateY(-8px);
  border-color: rgba(157, 229, 0, 0.55);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.75), 0 0 35px rgba(146, 209, 79, 0.22);
}

/* Bento Sizing (Desktop) */
.card-lawfirm {
  grid-column: span 7;
  height: 440px;
}

.card-tutorial {
  grid-column: span 5;
  height: 440px;
}

.card-staycation {
  grid-column: span 12;
  height: 480px;
}

.card-travel {
  grid-column: span 7;
  height: 440px;
}

.card-fb-messenger {
  grid-column: span 5;
  height: 440px;
}

/* Collaboration Bento Cards */
.card-collab {
  grid-column: span 4;
  height: 380px;
}

.card-collab .works-card-overlay {
  padding: 26px 22px;
}

.card-collab .works-card-title {
  font-size: clamp(1.2rem, 1.55vw, 1.5rem);
  line-height: 1.22;
}

.card-collab .works-card-arrow {
  width: 38px;
  height: 38px;
}

.card-collab .works-card-arrow svg {
  width: 17px;
  height: 17px;
}

/* Collaboration Subhead Row */
.works-subhead-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 2px;
}

.works-subhead-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.3);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--cyan-glow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.works-subhead-badge i {
  color: var(--cyan-glow);
  font-size: 0.85rem;
}

.works-subhead-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 210, 255, 0.35), rgba(146, 209, 79, 0.2), transparent);
}

/* --- CARD MEDIA CONTAINER --- */
.works-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #04091a;
}

.works-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

/* Subtle zoom-in/scale effect on the background image upon hover */
.works-bento-card:hover .works-card-media img {
  transform: scale(1.06);
}

/* --- HOVER OVERLAY: Dark gradient overlay revealed smoothly on hover --- */
.works-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
  background: linear-gradient(180deg, rgba(5, 10, 24, 0) 0%, rgba(5, 10, 24, 0.4) 40%, rgba(4, 8, 20, 0.95) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.works-bento-card:hover .works-card-overlay {
  opacity: 1;
}

/* --- SLIDING CARD CONTENT --- */
.works-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(26px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.works-bento-card:hover .works-card-content {
  transform: translateY(0);
  opacity: 1;
}

.works-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(146, 209, 79, 0.12);
  border: 1px solid rgba(146, 209, 79, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  width: fit-content;
  backdrop-filter: blur(8px);
}

.works-card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.works-card-title {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.works-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(146, 209, 79, 0.12);
  border: 1px solid rgba(146, 209, 79, 0.4);
  color: var(--lime);
  flex-shrink: 0;
  transition: transform 0.35s var(--spring-bounce), 
              background 0.3s ease, 
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.works-card-arrow svg {
  width: 20px;
  height: 20px;
  transition: transform 0.35s ease;
}

.works-bento-card:hover .works-card-arrow {
  background: var(--lime);
  color: var(--bg-base);
  border-color: var(--lime);
  box-shadow: 0 0 20px var(--lime-glow);
  transform: scale(1.08);
}

.works-bento-card:hover .works-card-arrow svg {
  transform: translate(2px, -2px);
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 992px) {
  .works-bento-grid {
    gap: 22px;
  }

  .card-lawfirm,
  .card-tutorial,
  .card-staycation,
  .card-travel {
    grid-column: span 12;
    height: 380px;
  }

  .card-collab {
    grid-column: span 6;
    height: 340px;
  }

  .card-collab.card-slack {
    grid-column: span 12;
    height: 360px;
  }

  .works-card-overlay {
    padding: 28px 24px;
  }
}

@media (max-width: 640px) {
  .works-section {
    padding: 30px 0 70px;
  }

  .works-header {
    margin-bottom: 36px;
  }

  .works-title {
    font-size: 2.3rem;
  }

  .works-bento-grid {
    gap: 16px;
  }

  .card-lawfirm,
  .card-tutorial,
  .card-staycation,
  .card-travel,
  .card-collab {
    grid-column: span 12;
    height: 270px;
    border-radius: 24px;
  }

  .works-card-overlay {
    padding: 20px 18px;
    opacity: 1;
    background: linear-gradient(180deg, rgba(5, 10, 24, 0) 15%, rgba(5, 10, 24, 0.5) 55%, rgba(4, 8, 20, 0.94) 100%);
  }

  .works-card-content {
    transform: translateY(0);
    opacity: 1;
    gap: 6px;
  }

  .works-card-title {
    font-size: 1.55rem;
  }

  .works-card-arrow {
    width: 38px;
    height: 38px;
  }

  .works-card-arrow svg {
    width: 17px;
    height: 17px;
  }
}

@media (hover: none) {
  .works-card-overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(5, 10, 24, 0) 25%, rgba(5, 10, 24, 0.6) 60%, rgba(4, 8, 20, 0.94) 100%);
  }
  .works-card-content {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ==========================================================================
   DAILY DRIVERS / TOOLS I WORK WITH (PILL BANNER)
   ========================================================================== */
.tools {
  background: transparent;
  border: none;
  padding: 35px 0 70px;
  position: relative;
}

.daily-drivers-banner {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(210, 226, 250, 0.9);
  border-radius: 9999px;
  padding: 8px 12px 8px 28px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45), 0 0 30px rgba(0, 210, 255, 0.15);
  max-width: 1180px;
  margin: 0 auto;
  gap: 16px;
  position: relative;
}

.driver-label-block {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 2px;
}

.driver-eyebrow {
  font-family: var(--font-headline);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #c25e1a;
  text-transform: uppercase;
}

.driver-title {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 800;
  color: #070d1f;
  margin: 0;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.driver-sep {
  width: 1px;
  height: 38px;
  background: rgba(7, 13, 31, 0.14);
  flex-shrink: 0;
}

.driver-carousel-wrap {
  flex: 1;
  overflow: hidden;
  border: 1px solid rgba(7, 13, 31, 0.08);
  border-radius: 9999px;
  background: #ffffff;
  padding: 5px 0;
  position: relative;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}

.driver-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: driverMarquee 32s linear infinite;
  will-change: transform;
}

.driver-carousel-wrap:hover .driver-track {
  animation-play-state: paused;
}

.driver-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 22px;
  border-right: 1px solid rgba(7, 13, 31, 0.12);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  user-select: none;
}

.driver-chip:hover {
  transform: translateY(-1px);
}

.driver-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.driver-svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.driver-chip span {
  font-family: var(--font-headline);
  font-size: 0.92rem;
  font-weight: 700;
  color: #070d1f;
  white-space: nowrap;
}

@keyframes driverMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 860px) {
  .daily-drivers-banner {
    border-radius: 28px;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px;
    gap: 12px;
  }

  .driver-sep {
    display: none;
  }

  .driver-carousel-wrap {
    width: 100%;
  }
}

/* ==========================================================================
   TESTIMONIALS (WHAT CLIENTS SAY) — ENLARGED CARD DECK SYSTEM
   ========================================================================== */
#testimonials {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: none;
  padding: 20px 0 100px;
}

#testimonials .stack-circuit-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
}

#testimonials .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.testi-header-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.testi-header-wrap .about-tagline-badge {
  margin-bottom: 12px;
}

.testi-header-wrap .sec-title {
  margin-bottom: 12px;
}

/* ==========================================================================
   TESTIMONIALS MARQUEE (MOVING CARDS — SAME SYSTEM AS STEWARDSHIP MARQUEE)
   ========================================================================== */
.testi-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 20px;
  transform-style: preserve-3d;
  /* Dark blur edge mask removed for full-bleed clarity */
  mask-image: none;
  -webkit-mask-image: none;
}

.testi-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.testi-carousel-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: max-content;
  transform: translate3d(0, 0, 0);
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Full-bleed responsive slides */
.testi-slide {
  width: var(--testi-card-width, clamp(320px, 45vw, 580px));
  flex: 0 0 var(--testi-card-width, clamp(320px, 45vw, 580px));
  padding: 0 12px;
  box-sizing: border-box;
}

/* Showcase Card (Enlarged Image + Author Info Left, Testimonial Right) */
.testi-showcase-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: center;
  background: rgba(10, 18, 42, 0.92);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 30px 26px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
  height: 100%;
  box-sizing: border-box;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.testi-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), rgba(0, 210, 255, 0.75), transparent);
  opacity: 0.65;
}

.testi-showcase-card:hover {
  border-color: rgba(146, 209, 79, 0.45);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.72), 0 0 35px rgba(146, 209, 79, 0.2);
  transform: translateY(-4px);
}

/* Left Column: Enlarged Circular Image + Name & Company */
.testi-visual-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
}

.testi-accent-bubble {
  position: absolute;
  top: -10px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(146, 209, 79, 0.26) 0%, rgba(0, 210, 255, 0.1) 60%, transparent 80%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.testi-image-circle {
  width: 145px;
  height: 145px;
  border-radius: 50%;
  border: 3.5px solid rgba(146, 209, 79, 0.48);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(146, 209, 79, 0.28);
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: #060c1e;
  flex-shrink: 0;
  transition: transform 0.35s var(--spring-bounce), border-color 0.35s;
}

.testi-showcase-card:hover .testi-image-circle {
  transform: scale(1.04);
  border-color: var(--lime);
}

.testi-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testi-img-aquino {
  object-position: center 15%;
}

.testi-img-ribunal {
  object-position: center 18%;
}

.testi-img-delrosario {
  object-position: center 25%;
}

.testi-img-brilliantes {
  object-position: center 20%;
}

/* Author Block: Name & Company Name below picture */
.testi-author-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.testi-author-name {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.testi-author-company {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 0.01em;
  line-height: 1.35;
}

/* Right Column: Giant Quote Icon, Hook, Narrative */
.testi-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.testi-quote-icon {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.72;
  color: var(--lime);
  opacity: 0.95;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(146, 209, 79, 0.45);
  user-select: none;
}

.testi-headline {
  font-family: var(--font-headline);
  font-size: 1.12rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.38;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.testi-narrative {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.62;
  margin-bottom: 0;
}

/* Responsive Rules */
@media (max-width: 820px) {
  .testi-slide {
    width: var(--testi-card-width, calc(100vw - 32px));
    flex: 0 0 var(--testi-card-width, calc(100vw - 32px));
    padding: 0 6px;
  }

  .testi-showcase-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 26px 20px;
    text-align: center;
  }

  .testi-visual-col {
    margin: 0 auto;
  }

  .testi-image-circle {
    width: 135px;
    height: 135px;
  }

  .testi-accent-bubble {
    width: 110px;
    height: 110px;
  }

  .testi-quote-icon {
    margin: 0 auto 8px;
  }
}

/* ==========================================================================
   CTA & CONTACT FORM
   ========================================================================== */
.cta {
  background: transparent;
  border: none;
  color: var(--white);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

.cta-brand-centerpiece {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 10px 20px 24px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  margin-bottom: 45px;
  position: relative;
  overflow: visible;
}

.cta-brand-centerpiece::before {
  display: none;
}

/* Status Badge from index.html */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(146, 209, 79, 0.09);
  border: 1px solid rgba(146, 209, 79, 0.38);
  border-radius: 50px;
  padding: 7px 22px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  box-shadow: 0 0 30px rgba(146, 209, 79, 0.18);
}

.status-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--lime);
  animation: blink 1.4s infinite ease-in-out;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.75);
  }
}

/* Centerpiece Logos with Orbiting Rings from index.html */
.cta-dual-emblems {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4.5vw, 54px);
  margin: 14px auto 28px;
  flex-wrap: wrap;
}

.cta-dual-emblems .logo-wrapper {
  margin: 0;
  width: clamp(155px, 18vw, 205px);
  height: clamp(155px, 18vw, 205px);
}

.logo-wrapper {
  position: relative;
  width: clamp(200px, 26vw, 260px);
  height: clamp(200px, 26vw, 260px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 14px auto 28px;
}

.orbital-ring-1 {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1.5px dashed rgba(0, 210, 255, 0.45);
  animation: rotateClockwise 14s linear infinite;
  pointer-events: none;
}

.orbital-ring-2 {
  position: absolute;
  inset: -32px;
  border-radius: 50%;
  border: 1px solid rgba(146, 209, 79, 0.3);
  animation: rotateCounterClockwise 18s linear infinite;
  pointer-events: none;
}

.orbital-node {
  position: absolute;
  width: 11px;
  height: 11px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--lime);
  top: 14%;
  left: 10%;
}

@keyframes rotateClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateCounterClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* Glass Shield Container */
.logo-glass-shield {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.16) 0%, rgba(12, 21, 46, 0.92) 75%);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 2.5px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 0 0 2.5px rgba(146, 209, 79, 0.5),
    0 25px 80px rgba(5, 51, 255, 0.55),
    0 0 60px rgba(0, 210, 255, 0.35),
    inset 0 0 35px rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  transition: transform 0.4s ease;
}

.logo-glass-shield .logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 14px 35px rgba(0, 0, 0, 0.65));
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Brand Tagline Block */
.brand-tagline-block {
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.tagline-main {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: clamp(20px, 3.2vw, 27px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.25;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.35), 0 0 45px rgba(146, 209, 79, 0.25);
}

.tagline-main .highlight-bullet {
  color: var(--lime);
  margin: 0 6px;
  text-shadow: 0 0 16px var(--lime-glow);
}

.tagline-sub {
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.8vw, 14.5px);
  font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-shadow: 0 0 16px var(--lime-glow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tagline-sub .dot-sep {
  color: var(--cyan-glow);
  font-size: 11px;
}

/* ==========================================================================
   CONTACT GRID & WHITE TRANSPARENT FORM
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 36px;
  align-items: start;
}

/* Enhanced Contact Form: White Transparent Glass */
.contact-form {
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid rgba(255, 255, 255, 1);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35), 0 0 40px rgba(255, 255, 255, 0.25);
  transition: transform 0.4s var(--spring-bounce), box-shadow 0.4s;
}

.contact-form .form-header {
  margin-bottom: 24px;
}

.form-step-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5, 51, 255, 0.08);
  border: 1px solid rgba(5, 51, 255, 0.25);
  color: #0533ff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.form-step-pill .step-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0533ff;
  box-shadow: 0 0 8px rgba(5, 51, 255, 0.6);
}

.contact-form .form-title {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 800;
  color: #070d1f;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.contact-form .form-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #475569;
  font-weight: 500;
  line-height: 1.5;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

/* Labels: High Contrast Dark Typography Against White */
.contact-form label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #0c183a;
  transition: color 0.2s;
}

.contact-form .form-field:focus-within label {
  color: #0533ff;
}

.req-star {
  color: #e11d48;
  font-weight: 800;
  margin-left: 2px;
}

.opt-label {
  color: #64748b;
  font-size: 0.72rem;
  text-transform: none;
  font-weight: 500;
  letter-spacing: normal;
  margin-left: 4px;
}

.field-subtext-note {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #1e40af;
  background: rgba(59, 130, 246, 0.09);
  border-left: 2.5px solid #0533ff;
  padding: 5px 9px;
  border-radius: 4px;
  line-height: 1.4;
  margin-top: 3px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.field-subtext-note i {
  color: #0533ff;
  font-size: 0.78rem;
  flex-shrink: 0;
}

/* Inputs, Selects & Textarea Against White */
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #ffffff;
  border: 1.5px solid rgba(12, 24, 58, 0.22);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: #070d1f;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  width: 100%;
}

.contact-form select {
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: auto;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #64748b;
  font-weight: 400;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0533ff;
  box-shadow: 0 0 0 3px rgba(5, 51, 255, 0.16), 0 0 14px rgba(5, 51, 255, 0.18);
  background: #ffffff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

/* Form Action Buttons */
.form-submit-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  margin-top: 6px;
}

.btn-skip-calendly {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: #0533ff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s, transform 0.2s;
  padding: 6px 12px;
}

.btn-skip-calendly:hover {
  color: #000000;
  transform: translateY(1px);
}

/* High Contrast Send Message Button */
.contact-form .btn-contact-submit {
  width: 100%;
  padding: 15px 28px;
  font-size: 0.98rem;
  font-weight: 800;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #070d1f 0%, #0f1c3f 100%);
  color: #92d14f;
  border: 1.5px solid rgba(146, 209, 79, 0.65);
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(7, 13, 31, 0.35);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-form .btn-contact-submit:hover {
  background: #000000;
  color: #ffffff;
  border-color: #92d14f;
  box-shadow: 0 12px 30px rgba(146, 209, 79, 0.45);
  transform: translateY(-2px);
}

.contact-form .btn-contact-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

/* Form Submission Status Banner */
.form-status-msg {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  display: none;
}

.form-status-msg.loading {
  display: block;
  background: rgba(5, 51, 255, 0.1);
  border: 1.5px solid #0533ff;
  color: #0c183a;
}

.form-status-msg.success {
  display: block;
  background: rgba(146, 209, 79, 0.16);
  border: 1.5px solid #4d9b18;
  color: #1a4d05;
}

.form-status-msg.error {
  display: block;
  background: rgba(239, 68, 68, 0.14);
  border: 1.5px solid #ef4444;
  color: #991b1b;
}

/* Contact Info List */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* White Box Styling for GitHub, FB, Gmail, LinkedIn */
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid rgba(255, 255, 255, 1);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 0 0 25px rgba(255, 255, 255, 0.2);
  transition: transform 0.35s var(--spring-bounce), border-color 0.3s, box-shadow 0.35s, background 0.3s;
}

.contact-info-item:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: #0533ff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3), 0 0 30px rgba(5, 51, 255, 0.2);
  background: #ffffff;
}

/* Image Icon Box on White */
.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f1f5f9;
  border: 1.5px solid rgba(12, 24, 58, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.contact-info-item:hover .contact-icon-box {
  transform: scale(1.08);
  border-color: #0533ff;
  background: rgba(5, 51, 255, 0.08);
}

.contact-info-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
}

.contact-info-item h4 {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 3px;
}

.contact-info-item a {
  color: #070d1f;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s;
  word-break: break-all;
}

.contact-info-item a:hover {
  color: #0533ff;
}

/* ==========================================================================
   STEP 2: CALENDLY DISCOVERY EMBED (SLIDE CONTAINER)
   ========================================================================== */
.calendly-slide-container {
  margin-top: 50px;
  width: 100%;
  scroll-margin-top: 90px;
}

.calendly-slide-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid rgba(255, 255, 255, 1);
  border-radius: var(--radius-lg);
  padding: 42px 36px 30px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35), 0 0 40px rgba(255, 255, 255, 0.25);
  transition: transform 0.4s var(--spring-bounce), box-shadow 0.4s;
}

.calendly-header-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 30px;
}

.step-badge-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(146, 209, 79, 0.16);
  border: 1px solid #16a34a;
  color: #15803d;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.step-badge-highlight .pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 10px #16a34a;
  animation: calendlyPulse 2s infinite ease-in-out;
}

@keyframes calendlyPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.calendly-heading {
  font-family: var(--font-headline);
  font-size: 1.65rem;
  font-weight: 800;
  color: #070d1f;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.calendly-subheading {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 auto;
}

.calendly-subheading strong {
  color: #0c183a;
}

.calendly-inline-widget-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid rgba(12, 24, 58, 0.12);
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: transparent;
  border: none;
  color: var(--text-muted);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 34px 24px;
  letter-spacing: 0.04em;
}

footer span {
  color: var(--lime);
}

/* ==========================================================================
   CHAT WIDGET
   ========================================================================== */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.chat-bubble {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(146, 209, 79, 0.55), 0 0 20px rgba(0, 210, 255, 0.4);
  transition: all 0.3s var(--spring-bounce);
  position: relative;
  border: none;
  color: var(--bg-base);
  font-size: 1.6rem;
}

.chat-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(146, 209, 79, 0.7), 0 0 30px rgba(0, 210, 255, 0.6);
}

.chat-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ff0055;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-base);
  box-shadow: 0 0 10px #ff0055;
}

.chat-panel {
  display: none;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 320px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 30px rgba(146, 209, 79, 0.25);
  transform-origin: bottom right;
  animation: chatSlideIn 0.35s var(--spring-bounce);
}

.chat-panel.open {
  display: flex;
}

@keyframes chatSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.chat-header {
  background: linear-gradient(135deg, #0c183a, #070d1f);
  border-bottom: 1px solid var(--border-glass);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--lime);
  box-shadow: 0 0 12px var(--lime-glow);
  overflow: hidden;
  flex-shrink: 0;
}

.chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-info h4 {
  font-family: var(--font-headline);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.chat-info p {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--lime);
  margin: 0;
  letter-spacing: 0.04em;
}

.chat-body {
  padding: 18px;
  font-size: 0.88rem;
  color: var(--text-sublight);
  background: rgba(7, 13, 31, 0.7);
  line-height: 1.6;
}

.chat-actions {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-glass);
}

.chat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  transition: all 0.25s ease;
}

.chat-btn.messenger {
  background: #0084ff;
  box-shadow: 0 0 15px rgba(0, 132, 255, 0.4);
}

.chat-btn.whatsapp {
  background: #25d366;
  color: #070d1f;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.chat-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

/* ==========================================================================
   SCROLL REVEAL UTILITY
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   MOBILE & VIEWPORT RESPONSIVENESS
   ==========================================================================
   All mobile screen sizes, touch devices, and responsive breakpoint rules
   have been cleanly separated and modularized into responsive.css.
   ========================================================================== */
