/* ========================================
   RESET & BASE
   ======================================== */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700;800&display=swap");

:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #60a5fa;
  --secondary: #7c3aed;
  --cyan: #06b6d4;
  --orange: #f97316;
  --bg: #ffffff;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========================================= */
/* MESH BACKGROUND                           */
/* ========================================= */
.mesh-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background-color: #f8fafc;
}
.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: floatBlobs 20s infinite alternate ease-in-out;
}
.blob-blue {
  width: 600px;
  height: 600px;
  background: #bfdbfe;
  top: -10%;
  left: -10%;
}
.blob-purple {
  width: 500px;
  height: 500px;
  background: #e9d5ff;
  bottom: 20%;
  right: -5%;
  animation-delay: -5s;
}
.blob-cyan {
  width: 400px;
  height: 400px;
  background: #cffafe;
  top: 40%;
  left: 30%;
  animation-delay: -10s;
}
@keyframes floatBlobs {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(50px, -50px) scale(1.1);
  }
}

/* ========================================= */
/* MAIN CONTENT & HEADER                     */
/* ========================================= */
.page-wrapper {
  padding: 60px 5% 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-header {
  text-align: center;
  max-width: 800px;
  margin-bottom: 50px;
  padding-top: 80px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.1);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.2;
}
.text-gradient {
  background: linear-gradient(90deg, var(--primary), #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Section Management & Text Center */
.text-center {
  text-align: center;
}
.section-divider {
  width: 100%;
  max-width: 1100px;
  border: none;
  border-top: 3px dashed #cbd5e1;
  margin: 60px 0 40px;
  opacity: 0.6;
}
.artefak-section {
  width: 100%;
  max-width: 1100px;
  margin-bottom: 40px;
  padding-top: 20px;
}
.section-title {
  margin-bottom: 50px;
}

/* ========================================= */
/* BENTO GRID IDENTITAS                      */
/* ========================================= */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 20px;
}
.bento-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s ease;
}
.bento-item:hover {
  transform: translateY(-8px);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08);
  border-color: var(--primary);
}
.bento-item i {
  font-size: 1.5rem;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.1);
  padding: 12px;
  border-radius: 16px;
}
.bento-content label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 5px;
}
.bento-content h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 800;
}

/* ========================================= */
/* SISTEM TABS (NAVIGASI ARTEFAK)            */
/* ========================================= */
.tabs-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1100px;
}
.tab-btn {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(37, 99, 235, 0.15);
  border-radius: 50px;
  padding: 14px 35px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}
.tab-btn:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  transform: translateY(-3px);
  background: #ffffff;
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Animasi Muncul Tab Content */
.tab-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  width: 100%;
  max-width: 1100px;
}
.tab-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ========================================= */
/* SCOUTING GRID (OBSERVASI)                 */
/* ========================================= */
.scouting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.scout-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.scout-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
  border-color: var(--primary);
  background: #ffffff;
}
.bg-gradient-blue {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.bg-gradient-purple {
  background: linear-gradient(135deg, var(--secondary), #581c87);
}
.bg-gradient-cyan {
  background: linear-gradient(135deg, var(--cyan), #0369a1);
}
.scout-header {
  color: white;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.scout-header i {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}
.scout-card:hover .scout-header i {
  transform: scale(1.15) rotate(10deg);
  color: white;
}
.scout-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
}
.scout-body {
  padding: 25px;
  flex-grow: 1;
}
.scout-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.scout-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: 0.3s;
}
.scout-list li:hover {
  transform: translateX(5px);
}
.scout-list i {
  color: var(--primary);
  margin-top: 3px;
  font-size: 1.1rem;
}
.scout-list strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.scout-list span {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.5;
}
.scout-footer {
  padding: 15px 25px;
  background: rgba(248, 250, 252, 0.8);
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  text-align: right;
}
.scout-tag {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: 0.3s;
}
.scout-card:hover .scout-tag {
  background: var(--primary);
  color: white;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

/* ========================================= */
/* ANALYSIS GRID (MODUL & LKPD - SPIN NEON)  */
/* ========================================= */
.analysis-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
.analysis-card {
  position: relative;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 3px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  z-index: 1;
}
.analysis-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
}
.spinning-border {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent,
    transparent,
    transparent,
    var(--primary),
    #8b5cf6,
    #06b6d4
  );
  animation: spinGlow 4s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
@keyframes spinGlow {
  100% {
    transform: rotate(360deg);
  }
}
.analysis-card:hover .spinning-border {
  opacity: 1;
}
.ac-content {
  position: relative;
  background: #ffffff;
  border-radius: 21px;
  padding: 30px;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.ac-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.ac-icon {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.ac-icon i {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.analysis-card:hover .ac-icon i {
  transform: scale(1.25) rotate(15deg);
}
.bg-blue {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
}
.bg-purple {
  background: linear-gradient(135deg, #a855f7, #6d28d9);
}
.bg-cyan {
  background: linear-gradient(135deg, #06b6d4, #0369a1);
}
.bg-orange {
  background: linear-gradient(135deg, #f97316, #c2410c);
}
.ac-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
}
.ac-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}
.ac-content p strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* ========================================= */
/* DOC CARD (PENAMPIL PDF)                   */
/* ========================================= */
.doc-card {
  background: #ffffff;
  width: 100%;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  transition: all 0.4s ease;
  margin-bottom: 40px;
}
.doc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #8b5cf6);
  transform: scaleX(0);
  transition: transform 0.5s ease;
  transform-origin: left;
}
.doc-card:hover {
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.1);
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.2);
}
.doc-card:hover::before {
  transform: scaleX(1);
}
.doc-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.dashed-divider {
  border: none;
  border-top: 2px dashed #e2e8f0;
  margin-bottom: 30px;
}
.pdf-container {
  width: 100%;
  height: 75vh;
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #f1f5f9;
}
.pdf-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Tombol PDF Hover Mind-Blowing */
.pdf-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 35px;
}
.btn-modern {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-main {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
  border: none;
}
.btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.5s;
  z-index: -1;
}
.btn-main:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.5);
}
.btn-main:hover::before {
  left: 100%;
}

.btn-sub {
  background: #ffffff;
  color: var(--primary);
  border: 2px solid var(--primary-light);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}
.btn-sub:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
  border-color: var(--primary);
}

/* ========================================= */
/* ZIG-ZAG 3D WOW (ANALISIS PRODUK)          */
/* ========================================= */
.zigzag-container {
  width: 100%;
  padding: 20px 0;
}
.zigzag-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 90px;
}
.zigzag-row.reverse {
  flex-direction: row-reverse;
}

.zz-content {
  flex: 1;
  position: relative;
  z-index: 2;
}
.zz-number {
  font-size: 6rem;
  font-weight: 800;
  color: rgba(37, 99, 235, 0.08);
  position: absolute;
  top: -50px;
  left: -20px;
  z-index: -1;
  line-height: 1;
  font-family: Impact, sans-serif;
}
.zz-content h3 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 800;
}
.zz-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}
.zz-content strong {
  color: var(--primary);
}

.zz-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}
.zz-card-3d {
  width: 300px;
  height: 300px;
  border-radius: 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.6s ease;
  transform-style: preserve-3d;
}
.zz-inner {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Glow Belakang Zig-Zag Visual */
.bg-orange-glow {
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.4) 0%,
    transparent 70%
  );
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.15);
}
.bg-purple-glow {
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.4) 0%,
    transparent 70%
  );
  box-shadow: 0 20px 50px rgba(168, 85, 247, 0.15);
}
.bg-blue-glow {
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.4) 0%,
    transparent 70%
  );
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}
.bg-cyan-glow {
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.4) 0%,
    transparent 70%
  );
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.15);
}

/* Floating Icon di dalam ZigZag */
.floating-icon {
  font-size: 6rem;
  color: #ffffff;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  animation: iconFloat 4s ease-in-out infinite;
  transform: translateZ(50px);
}
@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0) translateZ(50px);
  }
  50% {
    transform: translateY(-15px) translateZ(50px);
  }
}

/* Mind-Blowing Hover pada 3D Card */
.zigzag-row:hover .zz-card-3d {
  transform: rotateY(15deg) rotateX(10deg) scale(1.05);
  box-shadow: -20px 30px 60px rgba(0, 0, 0, 0.15);
}
.zigzag-row.reverse:hover .zz-card-3d {
  transform: rotateY(-15deg) rotateX(10deg) scale(1.05);
  box-shadow: 20px 30px 60px rgba(0, 0, 0, 0.15);
}

/* --- ANIMASI REVEAL --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: obsFadeIn 0.8s ease forwards;
}
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
@keyframes obsFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================= */
/* WOW NAVBAR & FOOTER                       */
/* ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.navbar.scrolled {
  top: 20px;
  left: 5%;
  width: 90%;
  height: 75px;
  padding: 0 4%;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 1);
}
.brand-name {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-dark);
}
.brand-name .highlight {
  color: var(--primary);
}
.logo-img {
  width: 35px;
  margin-right: 12px;
  transition: 0.3s;
}
.navbar.scrolled .logo-img {
  width: 30px;
}
.nav-left {
  display: flex;
  align-items: center;
}
.nav-right {
  display: flex;
  gap: 5px;
  align-items: center;
}
.nav-link,
.dropbtn {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 30px;
  transition: 0.3s;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}
.nav-link:hover,
.nav-link.active,
.dropdown:hover .dropbtn {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

.dropdown {
  position: relative;
}
.dropdown-content {
  position: absolute;
  top: 130%;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  min-width: 220px;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid white;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
  top: 115%;
}
.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  text-decoration: none;
  color: var(--text-dark);
  border-radius: 12px;
  transition: 0.2s;
  font-weight: 600;
  font-size: 0.9rem;
}
.dropdown-content a i {
  color: var(--primary);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}
.dropdown-content a:hover {
  background: #f1f5f9;
  color: var(--primary);
  transform: translateX(5px);
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: 0.3s;
}

.epic-footer {
  position: relative;
  background: #020617;
  color: white;
  padding: 100px 0 30px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}
.f-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -200px;
  left: -100px;
}
.f-orb-2 {
  width: 500px;
  height: 500px;
  background: #7c3aed;
  bottom: -200px;
  right: -200px;
}

.footer-container {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-cta {
  text-align: center;
  margin-bottom: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-cta h2 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 15px;
}
.footer-cta span {
  background: linear-gradient(90deg, #60a5fa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-cta p {
  font-size: 1.2rem;
  color: #94a3b8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}
.footer-brand .footer-logo span {
  color: #60a5fa;
}
.footer-brand .footer-desc {
  color: #94a3b8;
  max-width: 350px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.social-neon {
  display: flex;
  gap: 15px;
}
.neon-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.neon-btn:hover {
  background: var(--primary);
  box-shadow: 0 0 20px var(--primary);
  transform: translateY(-5px);
  border-color: var(--primary);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: white;
  font-weight: 700;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 15px;
}
.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.footer-links a i {
  font-size: 0.8rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: 0.3s;
  color: #60a5fa;
}
.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}
.footer-links a:hover i {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact p {
  color: #94a3b8;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact p i {
  color: #60a5fa;
}
.map-glass {
  width: 100%;
  height: 120px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.footer-copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #64748b;
  font-size: 0.9rem;
}

/* ========================================= */
/* RESPONSIVE DESIGN                         */
/* ========================================= */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .scouting-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .zigzag-row {
    gap: 40px;
  }
}

@media (max-width: 968px) {
  .page-title {
    font-size: 2.5rem;
  }
  .doc-card {
    padding: 25px;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .analysis-grid {
    grid-template-columns: 1fr;
  }

  .zigzag-row,
  .zigzag-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    margin-bottom: 70px;
  }
  .zz-number {
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
  }
  .zz-visual {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .navbar.scrolled {
    width: 96%;
    left: 2%;
    top: 10px;
    padding: 0 5%;
  }
  .hamburger {
    display: flex;
    z-index: 1100;
  }
  .nav-right {
    position: absolute;
    top: 95px;
    left: -120%;
    width: 100%;
    background: #ffffff !important;
    flex-direction: column;
    padding: 20px 0;
    transition: 0.4s ease-in-out;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    align-items: center;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
  }
  .navbar.scrolled .nav-right {
    top: 80px;
  }
  .nav-right.active {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .nav-link,
  .dropbtn {
    width: 90%;
    justify-content: center;
    margin: 5px 0;
    text-align: center;
  }
  .dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .dropdown-content {
    position: relative;
    top: 0;
    left: 0;
    transform: none !important;
    width: 90%;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    display: none;
    margin-top: 5px;
    padding: 10px;
    opacity: 1;
    visibility: visible;
  }
  .dropdown:hover .dropdown-content,
  .dropdown:focus-within .dropdown-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: none !important;
  }
  .dropdown-content a {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 10px;
  }
  .dropdown-content a:hover {
    transform: translateY(-2px);
  }
  .dropdown:hover .chevron {
    margin-bottom: 0;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }
  .scouting-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pdf-actions {
    flex-direction: column;
    gap: 12px;
  }
  .btn-modern {
    width: 100%;
    justify-content: center;
  }

  .footer-cta h2 {
    font-size: 2rem;
  }
  .footer-grid,
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .footer-brand .footer-desc {
    margin: 0 auto 30px;
  }
  .social-neon,
  .social-links,
  .footer-links a,
  .footer-contact p {
    justify-content: center;
  }
}
