/* ==========================================================================
   GOBOGO Algérie - High Definition Gobo Projection Landing
   Styled with Kl7sr Template Dark Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&family=Space+Mono:wght@400;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* Template Interior Palette Tokens */
  --purple: #6C1CFF;
  --purple-hover: #5612D6;
  --purple-soft: #231742;
  --purple-line: #4E2A8C;
  --purple-text: #C4B5FD;
  --green: #10B981;
  --green-soft: #122822;
  --red: #E63946;
  --amber: #F59E0B;

  /* Dark Theme Surfaces */
  --bg: #0B0D13;
  --surface: #141722;
  --surface-elevated: #1B1F2D;
  --card-bg: #141722;
  --subtle-bg: #1B1F2E;
  --text: #F8FAFC;
  --text-pure: #FFFFFF;
  --muted: #94A3B8;
  --border: #242938;
  --border-light: #1C212E;
  --card-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  --card-shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.5);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-full: 9999px;

  /* Fonts */
  --font-mono: 'Space Mono', monospace;
  --font-sans: 'Manrope', 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Manrope', 'Cairo', sans-serif;

  /* WhatsApp Brand Tokens */
  --wa-green: #25D366;
  --wa-green-hover: #20ba59;
  --wa-glow: rgba(37, 211, 102, 0.85);

  /* Geometry Variables */
  --logo-size: 210px;
  --ease-smooth: cubic-bezier(0.2, 0, 0, 1);
}

/* --- Global Resets --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  height: 100%;
}

body {
  min-height: 100%;
  overflow-x: hidden;
  background-color: var(--bg);
  color: var(--text);
  position: relative;
  line-height: 1.5;
  font-weight: 500;
}

.mono {
  font-family: var(--font-mono);
}

/* ==========================================================================
   HERO SECTION LAYOUT
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 640px;
  background-color: var(--bg);
  z-index: 1;
  overflow: hidden;
}

/* ==========================================================================
   PAGE-LOAD REVEAL ANIMATION (CSS STAGGERED SYSTEM)
   ========================================================================== */

.reveal {
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.icon { animation-delay: 0.2s; }
.beam { animation-delay: 0.6s; }
.headline { animation-delay: 1.1s; }
.body-text { animation-delay: 1.4s; }
.bullets { animation-delay: 1.7s; }
.buttons { animation-delay: 2s; }
.steps { animation-delay: 2.1s; }
.gallery-section.reveal,
.site-footer.reveal { animation-delay: 2.2s; }

/* Custom reveal for icon */
.projected-logo-top-right.reveal {
  opacity: 0;
  animation: iconReveal 1s ease-out forwards;
}

@keyframes iconReveal {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(20px);
    filter: brightness(0.4);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: brightness(1);
  }
}

/* Custom reveal for beam */
.beam-diagonal-system.reveal {
  opacity: 0;
  animation: beamReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes beamReveal {
  from {
    opacity: 0;
    filter: blur(14px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
  }
}

/* Instant display when already revealed in session */
html.no-reveal .reveal,
html.no-reveal .projected-logo-top-right.reveal,
html.no-reveal .beam-diagonal-system.reveal,
html.no-reveal .gallery-section.reveal,
html.no-reveal .site-footer.reveal {
  opacity: 1 !important;
  animation: none !important;
  transform: none !important;
  filter: none !important;
}

/* ==========================================================================
   OFF-SCREEN AMBIENT GLOW
   ========================================================================== */
.beam-offscreen-glow {
  position: absolute;
  left: -80px;
  top: var(--glow-y1, 570px);
  width: 220px;
  height: 220px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(108, 28, 255, 0.4) 35%,
    rgba(108, 28, 255, 0.1) 60%,
    transparent 80%
  );
  filter: blur(36px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 6;
  animation: glow-breathe 4s infinite ease-in-out alternate;
}

@keyframes glow-breathe {
  0%   { opacity: 0.75; transform: translateY(-50%) scale(0.92); }
  100% { opacity: 1;    transform: translateY(-50%) scale(1.08); }
}

.hero-stage {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

/* ==========================================================================
   HERO BRANDING & HEADLINE (Top-Left)
   ========================================================================== */
.hero-header-top-left {
  position: absolute;
  top: clamp(1.8rem, 4vh, 3.5rem);
  left: clamp(1.8rem, 4vw, 4rem);
  z-index: 20;
  max-width: clamp(520px, 48vw, 680px);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: auto;
}

.hero-brand-name {
  font-family: var(--font-mono);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  user-select: none;
}

.brand-gobogo {
  color: var(--text);
  letter-spacing: 0.06em;
}

/* Hero Headline */
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-pure);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.9);
}

.headline-glow {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 55%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 35px rgba(108, 28, 255, 0.35);
}

.hero-tagline {
  font-size: clamp(0.95rem, 1.3vw, 1.12rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--muted);
  max-width: 540px;
}

.hero-specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.15rem;
}

.spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.85rem;
  background: var(--subtle-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color .15s ease, background .15s ease;
}

.spec-pill:hover {
  border-color: var(--purple-line);
  background: var(--purple-soft);
  color: #ffffff;
}

.spec-pill svg {
  color: var(--purple);
  flex-shrink: 0;
}

/* ==========================================================================
   HOW IT WORKS - 3-STEP PROCESS STRIP (Bottom Middle)
   ========================================================================== */
.hero-steps-strip {
  position: absolute;
  bottom: clamp(1.6rem, 3.5vh, 2.8rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  display: inline-flex;
  align-items: center;
  gap: clamp(0.75rem, 1.4vw, 1.35rem);
  padding: 0.4rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  box-shadow: var(--card-shadow);
  pointer-events: auto;
  user-select: none;
  white-space: nowrap;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-steps-strip:hover {
  border-color: var(--purple-line);
  box-shadow: 0 4px 20px rgba(108, 28, 255, 0.18);
}

.hero-steps-strip .step-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-steps-strip .step-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
}

.hero-steps-strip .step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.hero-steps-strip .step-text {
  font-family: var(--font-sans);
  font-size: clamp(0.82rem, 1vw, 0.90rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.hero-steps-strip .step-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

/* ==========================================================================
   VOLUMETRIC LIGHT BEAM (Optical Light)
   ========================================================================== */
.beam-diagonal-system {
  position: absolute;
  left: var(--beam-x1, -30px);
  top: var(--beam-y1, 600px);
  width: var(--beam-length, 700px);
  height: var(--beam-end-height, 220px);
  transform-origin: 0% 50%;
  transform: translateY(-50%) rotate(var(--beam-angle, -60deg));
  pointer-events: none;
  z-index: 8;
  -webkit-mask-image: linear-gradient(
    to right,
    #000000 0%,
    #000000 60%,
    rgba(0, 0, 0, 0.85) 75%,
    rgba(0, 0, 0, 0.35) 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    #000000 0%,
    #000000 60%,
    rgba(0, 0, 0, 0.85) 75%,
    rgba(0, 0, 0, 0.35) 90%,
    transparent 100%
  );
}

/* Primary Conical Volumetric Light Cone */
.beam-cone-diagonal {
  position: absolute;
  inset: 0;
  clip-path: polygon(
    0% calc(50% - 12px),
    100% 0%,
    100% 100%,
    0% calc(50% + 12px)
  );
  -webkit-clip-path: polygon(
    0% calc(50% - 12px),
    100% 0%,
    100% 100%,
    0% calc(50% + 12px)
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.95) 15%,
    rgba(255, 255, 255, 0.75) 40%,
    rgba(255, 255, 255, 0.45) 70%,
    rgba(255, 255, 255, 0.18) 90%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: blur(8px);
  animation: beam-shimmer-diagonal 4s infinite ease-in-out alternate;
  will-change: opacity, transform;
}

/* Ambient Dispersion Light Cone */
.beam-ambient-diagonal {
  position: absolute;
  inset: -20px 0;
  clip-path: polygon(
    0% calc(50% - 24px),
    100% 0%,
    100% 100%,
    0% calc(50% + 24px)
  );
  -webkit-clip-path: polygon(
    0% calc(50% - 24px),
    100% 0%,
    100% 100%,
    0% calc(50% + 24px)
  );
  background: radial-gradient(
    ellipse at 0% 50%,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(108, 28, 255, 0.25) 45%,
    rgba(108, 28, 255, 0.08) 75%,
    transparent 100%
  );
  filter: blur(22px);
  opacity: 0.85;
}

/* Sharp Optical Projection Rays */
.beam-ray {
  position: absolute;
  left: 0;
  top: 50%;
  height: 2px;
  width: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.65) 60%,
    rgba(255, 255, 255, 0.15) 85%,
    transparent 100%
  );
  transform-origin: 0% 50%;
  pointer-events: none;
}

.ray-top      { transform: translateY(-50%) rotate(-7.5deg); opacity: 0.65; }
.ray-mid      { transform: translateY(-50%) rotate(0deg); opacity: 0.85; }
.ray-bot      { transform: translateY(-50%) rotate(7.5deg); opacity: 0.65; }
.ray-accent-1 { transform: translateY(-50%) rotate(-3.5deg); opacity: 0.45; }
.ray-accent-2 { transform: translateY(-50%) rotate(3.5deg); opacity: 0.45; }

@keyframes beam-shimmer-diagonal {
  0% {
    opacity: 0.92;
    filter: blur(7px);
  }
  50% {
    opacity: 1;
    filter: blur(9px);
  }
  100% {
    opacity: 0.88;
    filter: blur(8px);
  }
}

/* Suspended Atmospheric Dust Particles */
.beam-dust {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.mote {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.9);
  pointer-events: none;
  opacity: 0;
}

.m-1 { top: 38%; left: 18%; animation: dust-drift-1 6s infinite ease-in-out; }
.m-2 { top: 52%; left: 36%; animation: dust-drift-2 7.5s infinite ease-in-out 1.2s; }
.m-3 { top: 44%; left: 54%; animation: dust-drift-1 8s infinite ease-in-out 2.5s; }
.m-4 { top: 60%; left: 68%; animation: dust-drift-2 6.5s infinite ease-in-out 0.7s; }
.m-5 { top: 32%; left: 78%; animation: dust-drift-1 9s infinite ease-in-out 3.1s; }
.m-6 { top: 48%; left: 88%; animation: dust-drift-2 7s infinite ease-in-out 1.8s; }

@keyframes dust-drift-1 {
  0%   { transform: translate(0, 0) scale(0.6); opacity: 0; }
  25%  { opacity: 0.85; }
  50%  { transform: translate(40px, -15px) scale(1.1); opacity: 0.95; }
  75%  { opacity: 0.7; }
  100% { transform: translate(80px, -30px) scale(0.6); opacity: 0; }
}

@keyframes dust-drift-2 {
  0%   { transform: translate(0, 0) scale(0.5); opacity: 0; }
  30%  { opacity: 0.9; }
  60%  { transform: translate(50px, 12px) scale(1.2); opacity: 0.8; }
  85%  { opacity: 0.6; }
  100% { transform: translate(95px, 20px) scale(0.5); opacity: 0; }
}

/* ==========================================================================
   PROJECTED LOGO (Pure White Optical Projection + Purple Caustic Aura)
   ========================================================================== */
.projected-logo-top-right {
  position: absolute;
  top: clamp(1.5rem, 3.5vh, 2.5rem);
  right: clamp(2rem, 3.5vw, 3rem);
  z-index: 15;
}

.logo-disc-anchor {
  position: relative;
  width: var(--logo-size);
  height: var(--logo-size);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Projection Spotlight Halo */
.projected-spotlight-backdrop {
  position: absolute;
  inset: -60px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(108, 28, 255, 0.35) 35%,
    rgba(108, 28, 255, 0.1) 60%,
    transparent 80%
  );
  filter: blur(28px);
  opacity: 0.9;
  pointer-events: none;
  animation: focal-shimmer 3.5s ease-in-out infinite alternate;
}

/* Beam Arrival Focal Convergence Pool */
.beam-focal-pool {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.5) 40%,
    transparent 75%
  );
  filter: blur(18px);
  opacity: 0.95;
  pointer-events: none;
}

/* Caustic Refraction Ring */
.optical-caustic-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid rgba(108, 28, 255, 0.6);
  box-shadow: 
    0 0 24px rgba(108, 28, 255, 0.8),
    inset 0 0 16px rgba(255, 255, 255, 0.5);
  pointer-events: none;
  animation: caustic-pulse 4s ease-in-out infinite alternate;
}

@keyframes focal-shimmer {
  0%   { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.08); opacity: 1; }
}

@keyframes caustic-pulse {
  0%   { transform: scale(0.98) rotate(0deg); opacity: 0.65; }
  100% { transform: scale(1.04) rotate(180deg); opacity: 1; }
}

/* Pure White Optical Halo Around Logo */
.logo-white-halo {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.5) 40%,
    rgba(255, 255, 255, 0.15) 68%,
    transparent 85%
  );
  filter: blur(16px);
  opacity: 0.92;
  pointer-events: none;
}

/* Carrier */
.weightless-carrier {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Continuous 360° Gobo Motor Rotation */
.spinning-badge-rotor {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  animation: gobo-spin-slow 24s linear infinite;
  will-change: transform;
  transform-origin: center center;
  cursor: pointer;
}

@keyframes gobo-spin-slow {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Circular Badge Disc Graphic */
.gobo-badge-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #000000;
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: 
    0 0 25px rgba(255, 255, 255, 0.95),
    0 0 70px rgba(108, 28, 255, 0.5),
    inset 0 0 20px rgba(255, 255, 255, 0.6);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dynamic Alternating Shifting Faces (Crossfade) */
.badge-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  will-change: opacity;
}

.badge-face-logo {
  animation: badge-face-shift-1 7s ease-in-out infinite;
}

.badge-face-prompt {
  animation: badge-face-shift-2 7s ease-in-out infinite;
}

@keyframes badge-face-shift-1 {
  0%, 42% {
    opacity: 1;
    pointer-events: auto;
  }
  48%, 94% {
    opacity: 0;
    pointer-events: none;
  }
  100% {
    opacity: 1;
    pointer-events: auto;
  }
}

@keyframes badge-face-shift-2 {
  0%, 42% {
    opacity: 0;
    pointer-events: none;
  }
  48%, 94% {
    opacity: 1;
    pointer-events: auto;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}

/* Vector SVG Bat Logo Graphic */
.gobogo-bat-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.svg-ring-glow {
  fill: none;
  stroke: #ffffff;
  stroke-width: 5;
  filter: drop-shadow(0 0 8px #ffffff);
}

.svg-ring-outer-dark {
  fill: none;
  stroke: #000000;
  stroke-width: 8;
}

.svg-ring-inner-dark {
  fill: none;
  stroke: #000000;
  stroke-width: 4;
}

.svg-inner-disc {
  fill: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
}

.svg-bat-body {
  fill: #000000;
  stroke: #000000;
  stroke-width: 2;
  stroke-linejoin: round;
}

.svg-clouds {
  fill: #ffffff;
  opacity: 1;
}

.svg-gbg-pill {
  fill: #ffffff;
  stroke: #000000;
  stroke-width: 4.5;
}

.svg-gbg-text {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 2px;
  fill: #000000;
}

.svg-gobogo-text {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 4px;
  fill: #000000;
}

/* Custom Uploaded Badge */
.custom-uploaded-badge-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-badge-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.custom-badge-outer-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid #ffffff;
  box-shadow:
    0 0 25px rgba(255, 255, 255, 0.95),
    0 0 55px rgba(108, 28, 255, 0.6),
    inset 0 0 14px rgba(255, 255, 255, 0.5);
  pointer-events: none;
  z-index: 3;
}

/* ==========================================================================
   1. HERO WHATSAPP HOLOGRAM (ORIGINAL UNTOUCHED STAGE & GLOW)
   ========================================================================== */
.hologram-cta-container {
  position: absolute;
  bottom: 0;
  right: clamp(1.5rem, 3.5vw, 3rem);
  z-index: 25;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero-hologram-stage {
  position: relative;
  width: 340px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.hero-glow-base {
  position: absolute;
  top: 14px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100% - 14px);
  pointer-events: none;
  filter: blur(1px);
  z-index: 1;
}

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

.hero-hologram-btn {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px;
  background: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, filter .25s ease;
  animation: hero-hover-float 4s ease-in-out infinite;
}

.hero-hologram-btn:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 0 14px rgba(37, 211, 102, 0.55));
}

@keyframes hero-hover-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

.hero-hologram-btn .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #3cf089, #1aa851);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.7);
}

.hero-hologram-btn .icon svg {
  width: 20px;
  height: 20px;
  fill: #0b0f10;
}

.hero-hologram-btn .copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.hero-hologram-btn .title {
  color: #f4f7f6;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: .2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
  white-space: nowrap;
}

.hero-hologram-btn .subtitle {
  color: #a9b6b4;
  font-size: clamp(0.72rem, 1.2vw, 0.8rem);
  font-weight: 500;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.hero-hologram-btn .dot {
  opacity: .6;
  margin: 0 5px;
}

/* ==========================================================================
   2. FOOTER WHATSAPP HOLOGRAM (SEPARATELY NAMED & INDEPENDENT)
   ========================================================================== */
.footer-hologram-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3.5rem;
  margin-bottom: 1rem;
  width: 100%;
}

.footer-hologram-stage {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: max-content;
  max-width: 100%;
}

.footer-glow-base {
  position: absolute;
  top: 14px;
  left: -20px;
  right: -20px;
  height: 140px;
  pointer-events: none;
  filter: blur(1px);
  z-index: 1;
}

.footer-glow-base svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-hologram-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px;
  background: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, filter .25s ease;
  animation: footer-hover-float 4s ease-in-out infinite;
  max-width: 100%;
}

.footer-hologram-btn:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 0 14px rgba(37, 211, 102, 0.55));
}

@keyframes footer-hover-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

.footer-hologram-btn .footer-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #3cf089, #1aa851);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.7);
}

.footer-hologram-btn .footer-icon svg {
  width: 20px;
  height: 20px;
  fill: #0b0f10;
}

.footer-hologram-btn .footer-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.footer-hologram-btn .footer-title {
  color: #f4f7f6;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: .2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
  white-space: nowrap;
}

.footer-hologram-btn .footer-subtitle {
  color: #a9b6b4;
  font-size: clamp(0.72rem, 1.2vw, 0.8rem);
  font-weight: 500;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.footer-hologram-btn .dot {
  opacity: .6;
  margin: 0 5px;
}

/* ==========================================================================
   REAL-WORLD PROOF SECTION (Clean Dark Template Surfaced Cards)
   ========================================================================== */
.gallery-section {
  position: relative;
  background: var(--bg);
  padding: 5.5rem 2rem 5rem;
  border-top: 1px solid var(--border);
  z-index: 10;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.gallery-pill {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: var(--purple-soft);
  border: 1px solid var(--purple-line);
  border-radius: var(--radius-full);
  color: var(--purple-text);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-pure);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.gallery-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
  margin-bottom: 1rem;
}

.gallery-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.25s var(--ease-smooth), border-color 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  border-color: var(--purple-line);
  box-shadow: var(--card-shadow-hover);
}

/* Placeholder Frame for Customer's Actual Photos */
.card-placeholder-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--subtle-bg);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.placeholder-dashed-frame {
  width: 100%;
  height: 100%;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(11, 13, 19, 0.4);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.gallery-card:hover .placeholder-dashed-frame {
  border-color: var(--purple-line);
  background: rgba(35, 23, 66, 0.25);
}

.placeholder-icon {
  color: var(--purple);
  opacity: 0.85;
}

.placeholder-main-label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-pure);
  letter-spacing: -0.01em;
}

.placeholder-sub-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(11, 13, 19, 0.85);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
}

.card-content {
  padding: 1.5rem;
}

.card-spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.card-spec-tags .tag {
  background: var(--subtle-bg);
  border: 1px solid var(--border);
  color: var(--purple-text);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-sm);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.card-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ==========================================================================
   SITE FOOTER (Clean Minimalist Copyright & Author Link)
   ========================================================================== */
.site-footer {
  position: relative;
  background-color: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2.2rem 1.5rem;
  z-index: 10;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.01em;
}

.footer-author {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-author-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--text-pure);
  font-weight: 700;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer-author-link:hover {
  color: var(--purple-text);
  text-shadow: 0 0 10px rgba(108, 28, 255, 0.6);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-author-link svg {
  opacity: 0.9;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  :root {
    --logo-size: 165px;
  }

  .hero-header-top-left {
    max-width: 480px;
    left: 1.5rem;
    top: 1.5rem;
  }

  .projected-logo-top-right {
    right: 1.5rem;
    top: 1.5rem;
  }

  .hologram-cta-container {
    bottom: 0;
    right: 1.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --logo-size: 155px;
  }

  .hero-section {
    min-height: 720px;
  }

  .hero-header-top-left {
    top: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    max-width: 100%;
    gap: 0.55rem;
  }

  .hero-brand-name {
    font-size: clamp(1.25rem, 4vw, 1.45rem);
  }

  .hero-headline {
    font-size: clamp(1.35rem, 4.4vw, 1.75rem);
    line-height: 1.18;
  }

  .hero-tagline {
    font-size: 0.85rem;
    max-width: 100%;
  }

  .spec-pill {
    padding: 0.28rem 0.6rem;
    font-size: 0.72rem;
  }

  /* Logo positioned cleanly below the pills */
  .projected-logo-top-right {
    top: clamp(265px, 43vh, 340px);
    right: clamp(1.25rem, 6vw, 2.5rem);
  }

  /* Hero CTA on tablet/mobile: Icon-only floating hologram PINNED TO SCREEN FLOOR */
  .hologram-cta-container {
    bottom: 0 !important;
    right: clamp(1rem, 4vw, 1.75rem);
    left: auto;
    align-items: center;
  }

  .hero-hologram-stage {
    position: relative;
    width: 60px;
    height: clamp(86px, 11vh, 105px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .hero-glow-base {
    position: absolute;
    top: 24px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 76px;
    height: calc(100% - 24px);
    filter: blur(1.2px);
    pointer-events: none;
    z-index: 1;
  }

  .hero-hologram-btn {
    position: relative;
    z-index: 2;
    padding: 0;
    margin: 0;
    gap: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: hero-hover-float 4s ease-in-out infinite;
  }

  .hero-hologram-btn .icon {
    width: 56px;
    height: 56px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.9);
  }

  .hero-hologram-btn .icon svg {
    width: 30px;
    height: 30px;
  }

  .hero-hologram-btn .copy {
    display: none !important;
  }

  /* Hide How-It-Works strip on mobile / tablet to keep hero ultra-clean */
  .hero-steps-strip {
    display: none !important;
  }

  /* Footer CTA on tablet */
  .footer-glow-base {
    top: 10px;
    left: -16px;
    right: -16px;
    height: 120px;
  }

  .footer-hologram-btn {
    padding: 6px 12px;
    gap: 10px;
  }

  .footer-hologram-btn .footer-icon {
    width: 34px;
    height: 34px;
  }

  .footer-hologram-btn .footer-title {
    font-size: 0.98rem;
  }

  .footer-hologram-btn .footer-subtitle {
    font-size: 0.72rem;
  }

  .gallery-section {
    padding: 4rem 1.25rem 3rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 520px) {
  :root {
    --logo-size: 145px;
  }

  .hero-section {
    min-height: 700px;
  }

  .hero-header-top-left {
    top: 1rem;
    left: 1rem;
    right: 1rem;
    max-width: 100%;
    gap: 0.45rem;
  }

  .hero-brand-name {
    font-size: 1.2rem;
  }

  .hero-headline {
    font-size: 1.25rem;
    line-height: 1.18;
  }

  .hero-tagline {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .spec-pill {
    padding: 0.22rem 0.5rem;
    font-size: 0.68rem;
  }

  /* Positioned below pills on small phones */
  .projected-logo-top-right {
    top: clamp(255px, 42vh, 325px);
    right: 1.25rem;
  }

  /* Hero CTA on small mobile: pinned to screen floor */
  .hologram-cta-container {
    bottom: 0 !important;
    right: 1.15rem;
  }

  .hero-hologram-stage {
    width: 54px;
    height: clamp(80px, 10.5vh, 98px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .hero-glow-base {
    top: 22px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: calc(100% - 22px);
  }

  .hero-hologram-btn {
    width: 52px;
    height: 52px;
    animation: hero-hover-float 4s ease-in-out infinite;
  }

  .hero-hologram-btn .icon {
    width: 52px;
    height: 52px;
    box-shadow: 0 0 18px rgba(37, 211, 102, 0.9);
  }

  .hero-hologram-btn .icon svg {
    width: 28px;
    height: 28px;
  }

  .hero-hologram-btn .copy {
    display: none !important;
  }

  /* Footer CTA on small mobile */
  .footer-glow-base {
    top: 8px;
    left: -12px;
    right: -12px;
    height: 105px;
  }

  .footer-hologram-btn {
    padding: 5px 10px;
    gap: 8px;
  }

  .footer-hologram-btn .footer-icon {
    width: 30px;
    height: 30px;
  }

  .footer-hologram-btn .footer-icon svg {
    width: 16px;
    height: 16px;
  }

  .footer-hologram-btn .footer-title {
    font-size: 0.88rem;
  }

  .footer-hologram-btn .footer-subtitle {
    font-size: 0.65rem;
  }
}

@media (max-width: 380px) {
  :root {
    --logo-size: 130px;
  }

  .hero-section {
    min-height: 680px;
  }

  .hero-header-top-left {
    top: 0.85rem;
    left: 0.85rem;
    right: 0.85rem;
    gap: 0.35rem;
  }

  .hero-headline {
    font-size: 1.15rem;
  }

  .projected-logo-top-right {
    top: 250px;
    right: 0.85rem;
  }

  /* Hero CTA on tiny mobile: pinned to screen floor */
  .hologram-cta-container {
    bottom: 0 !important;
    right: 0.9rem;
  }

  .hero-hologram-stage {
    width: 48px;
    height: clamp(74px, 10vh, 90px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .hero-glow-base {
    top: 20px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 62px;
    height: calc(100% - 20px);
  }

  .hero-hologram-btn {
    width: 46px;
    height: 46px;
    animation: hero-hover-float 4s ease-in-out infinite;
  }

  .hero-hologram-btn .icon {
    width: 46px;
    height: 46px;
  }

  .hero-hologram-btn .icon svg {
    width: 24px;
    height: 24px;
  }

  /* Footer CTA on tiny mobile */
  .footer-glow-base {
    top: 6px;
    left: -8px;
    right: -8px;
    height: 90px;
  }

  .footer-hologram-btn {
    padding: 4px 6px;
    gap: 6px;
  }

  .footer-hologram-btn .footer-icon {
    width: 26px;
    height: 26px;
  }

  .footer-hologram-btn .footer-icon svg {
    width: 14px;
    height: 14px;
  }

  .footer-hologram-btn .footer-title {
    font-size: 0.82rem;
  }

  .footer-hologram-btn .footer-subtitle {
    font-size: 0.58rem;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 1.8rem 1rem 2.2rem;
  }

  .footer-bottom-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
  }
}
