@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* ==========================================================================
   DESIGN TOKENS & SYSTEM VARIABLES
   ========================================================================== */
:root {
  /* Color Palette - Deep Emerald & Royal Gold */
  --bg-darker: #080c14;      /* Deep black-slate */
  --bg-dark: #0f172a;        /* Elegant charcoal slate */
  --bg-card: rgba(15, 23, 42, 0.6); /* Translucent slate card */
  
  --emerald-deep: #022c22;   /* Absolute dark emerald */
  --emerald-primary: #064e3b;/* Deep emerald main */
  --emerald-medium: #047857; /* Mid tone emerald */
  --emerald-light: #10b981;  /* Vibrant emerald highlight */
  
  --gold-primary: #d97706;   /* Elegant rich gold */
  --gold-light: #f59e0b;     /* Bright lustrous gold */
  --gold-dark: #b45309;      /* Dark luxury bronze */
  
  --text-white: #f8fafc;     /* Soft high-contrast white */
  --text-silver: #cbd5e1;    /* Noble light silver */
  --text-muted: #64748b;     /* Elegant low-contrast gray */
  
  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Shadows & Glows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 30px -3px rgba(0, 0, 0, 0.4), 0 4px 12px -2px rgba(0, 0, 0, 0.3);
  --shadow-gold-glow: 0 0 20px rgba(217, 119, 6, 0.2);
  --shadow-emerald-glow: 0 0 25px rgba(4, 120, 87, 0.15);
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  /* Layout */
  --max-width: 1200px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Offset for sticky header */
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-darker);
  color: var(--text-silver);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--emerald-primary), var(--gold-primary));
  border-radius: 5px;
  border: 2px solid var(--bg-darker);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

/* ==========================================================================
   REUSABLE UTILITIES & LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 8rem 0;
  position: relative;
}

/* Section Header Styling */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

.section-title span {
  background: linear-gradient(135deg, var(--text-white), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  margin: 1.5rem auto 0 auto;
}

/* Premium Glass Card */
.glass-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    250px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
    rgba(245, 158, 11, 0.06),
    transparent 80%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.glass-card:hover::after {
  opacity: 1;
}

.glass-card:hover {
  border-color: rgba(217, 119, 6, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-emerald-glow);
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-white);
  font-weight: 600;
}

p {
  color: var(--text-silver);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-sans);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-gold-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold-light);
  transform: translateY(-3px);
}

/* ==========================================================================
   NAVIGATION BAR (STREET ART OF GLASSMORPHISM)
   ========================================================================== */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
}

.header-nav.scrolled {
  padding: 1rem 0;
  background: rgba(8, 12, 20, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 2.5px solid var(--gold-primary);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-nav.scrolled .logo-wrapper {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  padding: 5px;
  border-width: 2px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.header-nav.scrolled .logo-text {
  font-size: 1.6rem;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.logo-wrapper {
  width: 76px;
  height: 76px;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f4f5f7 100%);
  border: 2.5px solid var(--gold-primary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45), var(--shadow-gold-glow);
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
}

.logo-wrapper:hover {
  border-color: var(--gold-light);
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.5), 0 0 25px rgba(4, 120, 87, 0.3);
}

.app-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
  transition: var(--transition-smooth);
}

.logo-wrapper:hover .app-logo {
  transform: scale(1.06);
}

/* Central Shield Logo Wrapper */
.shield-logo-wrapper {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f4f5f7 100%);
  border: 3.5px solid var(--gold-primary);
  border-radius: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55), 0 0 35px rgba(217, 119, 6, 0.35);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.shield-logo-wrapper:hover {
  transform: scale(1.08) rotate(5deg);
  border-color: var(--gold-light);
  box-shadow: 0 22px 50px rgba(217, 119, 6, 0.65), 0 0 45px rgba(4, 120, 87, 0.45);
}

.shield-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  transition: var(--transition-smooth);
}

.shield-logo-wrapper:hover .shield-logo-img {
  transform: scale(1.08);
}

/* About Logo Frame */
.about-logo-wrapper {
  width: 155px;
  height: 155px;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f4f5f7 100%);
  border: 3.5px solid var(--gold-primary);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45), var(--shadow-gold-glow);
  margin-bottom: 1.8rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.about-logo-wrapper:hover {
  transform: scale(1.08) rotate(-4deg);
  border-color: var(--gold-light);
  box-shadow: 0 18px 40px rgba(217, 119, 6, 0.55);
}

.about-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
  transition: var(--transition-smooth);
}

.about-logo-wrapper:hover .about-logo-img {
  transform: scale(1.08);
}

/* Premium Sheen / Shimmer Animation Overlay */
.logo-wrapper::before,
.shield-logo-wrapper::before,
.about-logo-wrapper::before,
.footer-logo-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 2;
}

.logo-wrapper::before {
  animation: logoSheen 7s infinite ease-in-out;
}
.shield-logo-wrapper::before {
  animation: logoSheen 5s infinite ease-in-out;
}
.about-logo-wrapper::before {
  animation: logoSheen 6s infinite ease-in-out;
}
.footer-logo-wrapper::before {
  animation: logoSheen 8s infinite ease-in-out;
}

.logo-wrapper:hover::before,
.shield-logo-wrapper:hover::before,
.about-logo-wrapper:hover::before,
.footer-logo-wrapper:hover::before {
  animation: logoSheenSingle 0.85s forwards ease-out;
}

@keyframes logoSheen {
  0% { left: -150%; }
  12% { left: 150%; }
  100% { left: 150%; }
}

@keyframes logoSheenSingle {
  0% { left: -150%; }
  100% { left: 150%; }
}

/* Kemenkop trust badge styles */
.trust-badge-container {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem 1.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.trust-badge:hover {
  border-color: rgba(217, 119, 6, 0.3);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-emerald-glow);
  transform: translateY(-2px);
}

.kemenkop-logo-img {
  height: 68px;
  object-fit: contain;
  background: #ffffff;
  padding: 6px;
  border-radius: 14px;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2), var(--shadow-gold-glow);
  transition: var(--transition-smooth);
}

.kemenkop-logo-img:hover {
  transform: scale(1.08);
  border-color: var(--gold-light);
  box-shadow: 0 8px 22px rgba(217, 119, 6, 0.45);
}

.trust-text {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
}

.trust-text span {
  color: var(--text-muted);
  font-weight: 500;
}

.trust-text strong {
  color: var(--text-white);
  font-weight: 800;
  letter-spacing: 0.03em;
}

/* Hero Badge Kemenkop */
.hero-badge-logo {
  height: 34px;
  object-fit: contain;
  background: #ffffff;
  padding: 3px;
  border-radius: 6px;
  border: 1.5px solid var(--gold-primary);
  margin-right: 0.4rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}

.hero-badge:hover .hero-badge-logo {
  transform: scale(1.1);
  border-color: var(--gold-light);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--text-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
  transition: var(--transition-smooth);
}

.logo-text span {
  color: var(--gold-light);
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-silver);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-light);
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--gold-light);
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.8rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 10rem;
  background: 
    radial-gradient(circle at 80% 20%, rgba(4, 120, 87, 0.22) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(217, 119, 6, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(8, 12, 20, 0.88) 0%, rgba(8, 12, 20, 0.95) 100%),
    url('../images/employees.png') no-repeat center center / cover;
  background-attachment: fixed;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 80%, var(--bg-darker));
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(6, 78, 59, 0.35);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald-light);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.hero-badge i {
  color: var(--gold-light);
}

.hero-title {
  font-size: 4.2rem;
  line-height: 1.1;
  margin-bottom: 1.8rem;
  font-weight: 900;
}

.hero-title span {
  display: block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-silver);
  margin-bottom: 3rem;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

/* Luxury Interactive Asset Container */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-orbit {
  position: absolute;
  width: 450px;
  height: 450px;
  border: 1px dashed rgba(217, 119, 6, 0.15);
  border-radius: 50%;
  animation: rotateClockwise 40s linear infinite;
}

.visual-orbit-inner {
  position: absolute;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(4, 120, 87, 0.1);
  border-radius: 50%;
  animation: rotateCounterClockwise 25s linear infinite;
}

.luxury-shield {
  width: 350px;
  height: 410px;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.75), rgba(15, 23, 42, 0.95));
  border: 3px solid var(--gold-primary);
  border-radius: 36px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(217, 119, 6, 0.25), 0 0 40px rgba(4, 120, 87, 0.2);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  z-index: 2;
  transition: var(--transition-smooth);
  animation: pulseGoldShield 8s infinite alternate ease-in-out;
}

.luxury-shield:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: var(--gold-light);
  box-shadow: 0 20px 50px rgba(217, 119, 6, 0.45), 0 0 50px rgba(4, 120, 87, 0.35);
}

@keyframes pulseGoldShield {
  0% {
    box-shadow: var(--shadow-lg), 0 0 20px rgba(217, 119, 6, 0.2), 0 0 30px rgba(4, 120, 87, 0.15);
  }
  100% {
    box-shadow: var(--shadow-lg), 0 0 35px rgba(217, 119, 6, 0.35), 0 0 45px rgba(4, 120, 87, 0.3);
  }
}

.shield-logo {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--text-white), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.shield-text {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.15em;
  color: var(--text-white);
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(217, 119, 6, 0.5), 0 2px 5px rgba(0, 0, 0, 0.8);
}

.shield-subtext {
  font-size: 0.95rem;
  color: var(--gold-light);
  letter-spacing: 0.25em;
  margin-top: 0.6rem;
  font-weight: 800;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.shield-decor-line {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  margin-top: 1.5rem;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  padding: 0.8rem 1.2rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  transition: var(--transition-smooth);
}

.floating-badge:hover {
  border-color: var(--gold-light);
  transform: scale(1.05);
}

.badge-icon {
  width: 32px;
  height: 32px;
  background: var(--emerald-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.badge-info {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.badge-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}

.fb-1 {
  top: 10%;
  left: -10%;
  animation: floatAnim 6s ease-in-out infinite alternate;
}

.fb-2 {
  bottom: 12%;
  right: -5%;
  animation: floatAnim 6s ease-in-out infinite alternate-reverse;
}

.fb-3 {
  bottom: 5%;
  left: -15%;
  border-color: rgba(16, 185, 129, 0.3);
  animation: floatAnim 7s ease-in-out infinite alternate;
}

.hero-employees-img {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 500px;
  max-height: 500px;
  object-fit: contain;
  opacity: 0.32; /* Increased visibility of factory employees */
  z-index: 1;
  pointer-events: none;
  filter: contrast(1.05) brightness(0.95);
  mask-image: radial-gradient(circle, rgba(0,0,0,1) 35%, rgba(0,0,0,0) 80%);
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 35%, rgba(0,0,0,0) 80%);
  transition: var(--transition-smooth);
}

.hero-visual:hover .hero-employees-img {
  opacity: 0.65; /* Color and details pop beautifully on hover! */
  filter: contrast(1.1) brightness(1.0);
}

/* Glowing Hotspots for Hero Employees */
.employee-hotspot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--gold-light);
  border: 3.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  cursor: pointer;
  z-index: 4;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  animation: pulseHotspot 2s infinite;
  transition: var(--transition-smooth);
}

.employee-hotspot:hover {
  transform: scale(1.25);
  background: #ffffff;
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold-glow);
}

@keyframes pulseHotspot {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.8);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(245, 158, 11, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

/* Hotspot Tooltips */
.hotspot-tooltip {
  position: absolute;
  width: 220px;
  padding: 0.9rem 1.1rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--gold-primary);
  border-radius: 12px;
  box-shadow: var(--shadow-lg), var(--shadow-gold-glow);
  color: var(--text-white);
  font-size: 0.78rem;
  line-height: 1.4;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.hotspot-female {
  top: 35%;
  left: 20%;
}

.hotspot-female .hotspot-tooltip {
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
}

.hotspot-female:hover .hotspot-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.hotspot-male {
  top: 45%;
  right: 18%;
}

.hotspot-male .hotspot-tooltip {
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
}

.hotspot-male:hover .hotspot-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.tooltip-role {
  display: block;
  font-weight: 700;
  color: var(--gold-light);
  font-size: 0.72rem;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tooltip-quote {
  font-style: italic;
  color: var(--text-silver);
}

/* Testimonials Sub-section */
.about-testimonials {
  margin-top: 6rem;
}

.testimonials-title span {
  background: linear-gradient(135deg, var(--text-white), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.testimonial-card {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 119, 6, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-emerald-glow);
}

.testimonial-quote-icon {
  position: absolute;
  top: -10px;
  right: 15px;
  font-size: 6rem;
  color: rgba(217, 119, 6, 0.04);
  pointer-events: none;
  font-family: serif;
  line-height: 1;
}

.testimonial-card .stars {
  color: var(--gold-light);
  display: flex;
  gap: 0.25rem;
  font-size: 0.95rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-silver);
  line-height: 1.6;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: auto;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--emerald-medium));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-weight: 700;
  font-size: 1.15rem;
  border: 2px solid var(--gold-light);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.user-meta h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.15rem;
}

.user-meta span {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .employee-hotspot {
    display: none !important;
  }
}

/* ==========================================================================
   ABOUT US & LEGALITY SECTION
   ========================================================================== */
.about-section {
  background: linear-gradient(180deg, var(--bg-darker), var(--bg-dark));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-frame {
  position: relative;
  z-index: 2;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg), 0 10px 40px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #131d31, var(--emerald-deep));
  padding: 4.5rem 3rem;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
}

.about-frame:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 119, 6, 0.25);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6), var(--shadow-emerald-glow);
}

.about-frame-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(var(--gold-primary) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.08;
  z-index: 1;
}

.about-frame-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.about-frame-icon {
  font-size: 3.5rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.about-frame-title {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  color: var(--text-white);
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.about-frame-subtitle {
  font-size: 1.05rem;
  color: var(--gold-light);
  font-weight: 800;
  letter-spacing: 0.15em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.about-decor-square {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold-primary);
  border-radius: 24px;
  top: 25px;
  left: -25px;
  z-index: 1;
  opacity: 0.3;
}

.about-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-lead {
  font-size: 1.25rem;
  color: var(--text-white);
  line-height: 1.5;
  font-family: var(--font-serif);
}

.about-lead span {
  color: var(--gold-light);
}

.about-para {
  font-size: 1rem;
  color: var(--text-silver);
}

/* Legality Card Block */
.legal-box {
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--gold-primary);
  padding: 1.8rem;
  border-radius: 0 16px 16px 0;
}

.legal-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.legal-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.legal-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.legal-item i {
  color: var(--gold-light);
  font-size: 0.85rem;
}

.legal-item span {
  font-weight: 600;
  color: var(--text-white);
}

/* ==========================================================================
   SERVICES (SAVINGS & LOANS) SECTION
   ========================================================================== */
.services-section {
  background: linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.services-column-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--text-white);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.services-column-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 20%;
  width: 60%;
  height: 2px;
  background: var(--gold-primary);
}

.services-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-card {
  padding: 2.5rem;
  display: flex;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-primary), var(--emerald-medium));
  opacity: 0.7;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(217, 119, 6, 0.1);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.8rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--gold-primary);
  color: var(--text-white);
  transform: rotateY(360deg);
}

.service-body {
  flex-grow: 1;
}

.service-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.8rem;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-silver);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.service-feature-tag {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  background: rgba(6, 78, 59, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 50px;
  color: var(--emerald-light);
}

/* ==========================================================================
   CORE VALUES SECTION
   ========================================================================== */
.values-section {
  background: linear-gradient(180deg, var(--bg-darker), var(--bg-dark));
  position: relative;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-card {
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.value-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--bg-dark), var(--emerald-deep));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--gold-light);
  margin: 0 auto 2rem auto;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.value-card:hover .value-icon-wrapper {
  transform: translateY(-8px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold-glow);
  color: var(--text-white);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
}

.value-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.value-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.value-card:hover .value-desc {
  color: var(--text-silver);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  background: linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-card-box {
  padding: 3rem;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.contact-desc {
  font-size: 1rem;
  color: var(--text-silver);
  margin-bottom: 3rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.method-icon {
  width: 50px;
  height: 50px;
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.15);
  border-radius: 12px;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.contact-method-item:hover .method-icon {
  background: var(--gold-primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

.method-details h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.4rem;
}

.method-details p {
  font-size: 0.95rem;
  color: var(--text-silver);
}

.method-details a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.method-details a:hover {
  text-decoration: underline;
  color: var(--text-white);
}

/* Beautiful Elegant Map Box */
.map-visual-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/11;
  background: #111827;
}

.map-visual-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(0.9) contrast(1.2); /* Luxury dark map style */
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.map-visual-box:hover iframe {
  opacity: 0.95;
  filter: grayscale(0.2) invert(0) contrast(1);
}

/* ==========================================================================
   DOWNLOAD MOBILE APP SECTION (LUXURIOUS DESIGN)
   ========================================================================== */
.download-section {
  background: linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

.download-section::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(6, 78, 59, 0.25) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.download-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.download-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.download-desc {
  font-size: 1.05rem;
  color: var(--text-silver);
  line-height: 1.7;
}

.download-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0;
}

.download-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-silver);
}

.download-features li i {
  color: var(--gold-light);
  font-size: 1.1rem;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
  margin-top: 1rem;
}

.btn-download {
  padding: 1.1rem 2.4rem;
  font-size: 1rem;
}

.download-size {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

/* App Showcase Card & Phone Mockup */
.app-showcase-card {
  position: relative;
  padding: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  max-width: 400px;
  margin: 0 auto;
}

.phone-mockup {
  width: 260px;
  height: 520px;
  background: #000000;
  border: 8px solid #1e293b;
  border-radius: 36px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), var(--shadow-gold-glow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  width: 110px;
  height: 18px;
  background: #1e293b;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0 0 12px 12px;
  z-index: 10;
}

.phone-screen {
  flex-grow: 1;
  background: #f8fafc; /* White/Light background from screen */
  padding: 1.8rem 0.8rem 0.4rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-family: var(--font-sans);
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6rem;
  color: #64748b;
  padding: 0 0.3rem;
  margin-top: -0.8rem;
  margin-bottom: -0.2rem;
}

.status-icons {
  display: flex;
  gap: 0.3rem;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.2rem;
  padding: 0 0.2rem;
}

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

.welcome-text {
  font-size: 0.55rem;
  color: #94a3b8;
  font-weight: 500;
}

.username-text {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0f172a;
  font-family: var(--font-sans);
  letter-spacing: -0.02em;
}

.header-right {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.phone-logo-box {
  width: 34px;
  height: 34px;
  background: #ffffff;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  border: 1.5px solid var(--gold-primary);
}

.phone-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.phone-bell-box {
  width: 34px;
  height: 34px;
  background: #ffffff;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-size: 0.95rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
}

.phone-balance-card {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: 0 10px 20px -5px rgba(30, 64, 175, 0.3);
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 0.2rem;
  position: relative;
  overflow: hidden;
}

.phone-balance-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.phone-balance-card .balance-title {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.phone-balance-card .balance-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.balance-breakdown {
  background: rgba(15, 23, 42, 0.3);
  border-radius: 12px;
  padding: 0.4rem 0.6rem;
  display: flex;
  justify-content: space-between;
  gap: 0.2rem;
}

.breakdown-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
}

.breakdown-item span {
  font-size: 0.45rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  justify-content: center;
}

.breakdown-item span i {
  font-size: 0.45rem;
}

.breakdown-item strong {
  font-size: 0.55rem;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}

.phone-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem 0.5rem;
  margin-top: 0.2rem;
}

.phone-menu-item {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.menu-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: var(--transition-fast);
}

.phone-menu-item:hover .menu-icon-circle {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.phone-menu-item span {
  font-size: 0.55rem;
  font-weight: 700;
  color: #334155;
  text-align: center;
  line-height: 1.2;
  max-width: 72px;
}

.bg-taktis { color: #f59e0b; box-shadow: 0 4px 10px rgba(245, 158, 11, 0.15), 0 2px 4px rgba(0,0,0,0.05); }
.bg-talang { color: #10b981; box-shadow: 0 4px 10px rgba(16, 185, 129, 0.15), 0 2px 4px rgba(0,0,0,0.05); }
.bg-belanja { color: #0ea5e9; box-shadow: 0 4px 10px rgba(14, 165, 233, 0.15), 0 2px 4px rgba(0,0,0,0.05); }
.bg-usaha { color: #8b5cf6; box-shadow: 0 4px 10px rgba(139, 92, 246, 0.15), 0 2px 4px rgba(0,0,0,0.05); }
.bg-barang { color: #ec4899; box-shadow: 0 4px 10px rgba(236, 72, 153, 0.15), 0 2px 4px rgba(0,0,0,0.05); }
.bg-sukarela { color: #f97316; box-shadow: 0 4px 10px rgba(249, 115, 22, 0.15), 0 2px 4px rgba(0,0,0,0.05); }

.phone-info-bar {
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 0.4rem 0.6rem;
  display: flex;
  gap: 0.4rem;
  align-items: center;
  text-align: left;
  margin-top: auto;
}

.info-icon {
  color: #d97706;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.phone-info-bar span {
  font-size: 0.5rem;
  font-weight: 700;
  color: #b45309;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-tab-bar {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: space-around;
  padding: 0.4rem 0.2rem;
  margin-left: -0.8rem;
  margin-right: -0.8rem;
  margin-bottom: -0.4rem;
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  color: #94a3b8;
  cursor: pointer;
  flex: 1;
}

.tab-item i {
  font-size: 0.9rem;
}

.tab-item span {
  font-size: 0.45rem;
  font-weight: 700;
}

.tab-item.active {
  color: #1e3a8a;
}

/* QR Code Download Badge */
.qr-download-badge {
  position: absolute;
  bottom: 8%;
  right: -8%;
  padding: 0.7rem 1.1rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  transition: var(--transition-smooth);
}

.qr-download-badge:hover {
  transform: scale(1.05);
  border-color: var(--gold-light);
}

.qr-wrapper {
  width: 44px;
  height: 44px;
  background: #ffffff;
  padding: 4px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-code-vector {
  width: 100%;
  height: 100%;
  position: relative;
  background: #ffffff;
}

.qr-pixel-block {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 3.5px solid #000000;
  background: transparent;
}
.qr-pixel-block::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: #000000;
}
.qr-pixel-block.top-left { top: 0; left: 0; }
.qr-pixel-block.top-right { top: 0; right: 0; }
.qr-pixel-block.bottom-left { bottom: 0; left: 0; }

.qr-pixel-dots {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 18px;
  height: 18px;
  background-image: radial-gradient(circle, #000 2px, transparent 2px);
  background-size: 5px 5px;
}

.qr-text {
  display: flex;
  flex-direction: column;
  font-size: 0.7rem;
  line-height: 1.3;
  text-align: left;
}

.qr-text span {
  color: var(--text-muted);
  font-weight: 500;
}

.qr-text strong {
  color: var(--text-white);
  font-weight: 700;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: #05080c;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  text-align: center;
}

.footer-logo-wrapper {
  width: 125px;
  height: 125px;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f4f5f7 100%);
  border: 3px solid var(--gold-primary);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  margin: 0 auto 1.8rem auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), var(--shadow-gold-glow);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.footer-logo-wrapper:hover {
  transform: translateY(-5px) scale(1.08) rotate(3deg);
  border-color: var(--gold-light);
  box-shadow: 0 15px 35px rgba(217, 119, 6, 0.5);
}

.footer-logo-wrapper:hover .app-logo {
  transform: scale(1.06);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  color: var(--text-white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.footer-logo span {
  color: var(--gold-light);
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 2rem;
}

.footer-link {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold-light);
}

/* ==========================================================================
   ANIMATIONS & REVEAL CLASSES
   ========================================================================== */
@keyframes rotateClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

@keyframes floatAnim {
  0% { transform: translateY(0); }
  100% { transform: translateY(-15px); }
}

/* Scroll Animation classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ==========================================================================
   RESPONSIVENESS (MOBILE FRIENDLY)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.4rem;
  }
  
  .about-grid {
    gap: 4rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .download-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
  
  .download-info {
    max-width: 650px;
    margin: 0 auto;
  }
  
  .download-features {
    align-items: center;
    padding-left: 0;
  }
  
  .download-buttons {
    align-items: center;
    width: 100%;
  }
  
  .download-visual {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(8, 12, 20, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 2rem;
    transition: var(--transition-smooth);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 5rem;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-desc {
    margin: 0 auto 2.5rem auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    margin-top: 2rem;
  }
  
  .visual-orbit, .visual-orbit-inner {
    width: 320px;
    height: 320px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-visual {
    order: 2;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.6rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .floating-badge {
    display: none !important;
  }
}
