/* ==================== Footer ==================== */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}


/* ==================== Footer Redesign (Antigravity Style) ==================== */
.ag-footer {
  position: relative;
  background: #ffffff;
  color: #111111;
  padding: 80px 0 30px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', Arial, sans-serif;
  overflow: hidden;
  border-top: 1px solid #eaeaea;
  z-index: 1;
}

/* --- Elegant Multi-Layer Aurora System --- */
.ag-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

/* Orb 1: Biru brand — kiri, besar dan dominan */
.ag-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle,
      rgba(47, 79, 210, 0.42) 0%,
      rgba(47, 79, 210, 0.2) 35%,
      rgba(47, 79, 210, 0.05) 60%,
      transparent 80%);
  filter: blur(50px);
  top: 5%;
  left: -8%;
  animation: orbFlow1 12s ease-in-out infinite alternate;
}

/* Orb 2: Cyan cerah — kanan atas */
.ag-orb-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle,
      rgba(50, 200, 255, 0.4) 0%,
      rgba(50, 200, 255, 0.16) 40%,
      rgba(50, 200, 255, 0.04) 60%,
      transparent 80%);
  filter: blur(45px);
  top: -12%;
  right: 0%;
  animation: orbFlow2 14s ease-in-out infinite alternate;
}

/* Orb 3: Violet/ungu — tengah bawah */
.ag-orb-3 {
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse,
      rgba(110, 90, 255, 0.3) 0%,
      rgba(110, 90, 255, 0.12) 40%,
      rgba(110, 90, 255, 0.03) 60%,
      transparent 80%);
  filter: blur(55px);
  bottom: -18%;
  left: 15%;
  animation: orbFlow3 16s ease-in-out infinite alternate;
}

/* Orb 4: Putih-biru terang — highlight tengah */
.ag-orb-4 {
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse,
      rgba(200, 225, 255, 0.5) 0%,
      rgba(200, 225, 255, 0.2) 35%,
      rgba(200, 225, 255, 0.05) 60%,
      transparent 80%);
  filter: blur(40px);
  top: 30%;
  left: 28%;
  animation: orbFlow4 10s ease-in-out infinite alternate;
}

@keyframes orbFlow1 {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  25% {
    transform: translate(80px, -50px) scale(1.1) rotate(2deg);
  }

  50% {
    transform: translate(30px, 60px) scale(0.95) rotate(-1deg);
  }

  75% {
    transform: translate(-60px, 20px) scale(1.08) rotate(1deg);
  }

  100% {
    transform: translate(-30px, -40px) scale(1) rotate(-2deg);
  }
}

@keyframes orbFlow2 {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  25% {
    transform: translate(-100px, 70px) scale(1.12) rotate(-2deg);
  }

  50% {
    transform: translate(-40px, -30px) scale(0.96) rotate(1deg);
  }

  75% {
    transform: translate(60px, 50px) scale(1.06) rotate(-1deg);
  }

  100% {
    transform: translate(30px, -60px) scale(1) rotate(2deg);
  }
}

@keyframes orbFlow3 {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  25% {
    transform: translate(90px, -40px) scale(1.08) rotate(1deg);
  }

  50% {
    transform: translate(-50px, 30px) scale(1.12) rotate(-2deg);
  }

  75% {
    transform: translate(40px, 60px) scale(0.95) rotate(1deg);
  }

  100% {
    transform: translate(-70px, -20px) scale(1.04) rotate(-1deg);
  }
}

@keyframes orbFlow4 {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  25% {
    transform: translate(-60px, -40px) scale(1.1) rotate(-1deg);
  }

  50% {
    transform: translate(50px, 30px) scale(0.94) rotate(2deg);
  }

  75% {
    transform: translate(20px, -50px) scale(1.08) rotate(-2deg);
  }

  100% {
    transform: translate(-40px, 40px) scale(1) rotate(1deg);
  }
}

/* ------------------------------------------- */

.ag-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}

.ag-footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  gap: 40px;
}

/* --- Left Section (CTA) --- */
.ag-footer-left {
  flex: 1;
  max-width: 500px;
}

.ag-footer-headline {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #111111;
  min-height: 100px;
  margin-bottom: 30px;
}

.ag-cta-text {
  display: inline-block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.ag-cta-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  padding: 12px 0;
  width: 100%;
  max-width: 420px;
  border: none;
  box-shadow: none;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  overflow: visible;
  position: relative;
}

.ag-cta-box:hover {
  transform: translateX(5px);
}

.ag-cta-prompt {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  padding-right: 10px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ag-spark {
  display: inline-block;
  font-size: 18px;
  animation: floatSpark 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(74, 77, 231, 0.2));
}

@keyframes floatSpark {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-8px) rotate(15deg) scale(1.2); }
}

.ag-cta-box:hover .ag-cta-prompt {
  color: #2F4FD2;
  transform: translateX(-5px);
}

.ag-cta-box:hover .ag-spark {
  opacity: 0;
  transform: scale(0);
}

.ag-btn-pill {
  background: linear-gradient(135deg, #4A4DE7 0%, #2F4FD2 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 10px 0;
  max-width: 0;
  opacity: 0;
  border-radius: 12px;
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 0;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(47, 79, 210, 0.2);
}

.ag-cta-box:hover .ag-btn-pill {
  padding: 10px 22px;
  max-width: 200px;
  opacity: 1;
  gap: 10px;
  margin-left: 10px;
}

.ag-btn-pill:hover {
  background: #3538b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(74, 77, 231, 0.3);
}

/* --- Right Section (Links) --- */
.ag-footer-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.ag-link-grid {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 60px;
}

.ag-link-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Link columns use standard styles now */
.ag-link-column a {
  color: #111111;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.2s ease;
  opacity: 0.7;
}

.ag-link-column a:hover {
  opacity: 1;
  color: #4A4DE7;
}



.brand-digi {
  color: #6A6F73;
}

.brand-code {
  color: #2F4FD2;
}

.ag-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}

.ag-footer-logo {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #666;
  display: flex;
  align-items: center;
}

.ag-footer-legal {
  display: flex;
  gap: 24px;
  align-items: center;
}

.ag-footer-legal span,
.ag-footer-legal a {
  color: #666666;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.ag-footer-legal a:hover {
  color: #111111;
}

/* ==================== Responsive Footer ==================== */
@media (max-width: 1200px) {
  .ag-link-grid {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .ag-footer-main {
    flex-direction: column;
    gap: 60px;
  }

  .ag-footer-left {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ag-footer-right {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .ag-footer {
    padding: 60px 0 30px;
  }

  .ag-container {
    padding: 0 24px;
  }

  .ag-footer-headline {
    font-size: 28px;
    min-height: auto;
  }

  .ag-link-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  /* Columns now stack or wrap naturally */
  .ag-cta-box {
    flex-direction: column;
    padding: 20px;
    gap: 12px;
    text-align: center;
    max-width: 320px;
  }

  .ag-cta-prompt {
    padding: 0;
    text-align: center;
  }

  .ag-btn-pill {
    width: 100%;
    justify-content: center;
    max-width: 100%;
    opacity: 1;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .ag-link-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/*MODAL STYLES ================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* Latar belakang gelap */
  backdrop-filter: blur(4px);
  /* Efek blur modern */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #fff;
  width: 90%;
  max-width: 600px;
  /* Lebar maksimal modal */
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  /* Agar tidak melebihi tinggi layar */
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

/* Header Modal */
.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
  line-height: 1;
}

.modal-close:hover {
  color: #000;
}

/* Body Modal (Area Teks Panjang) */
.modal-body {
  padding: 24px;
  overflow-y: auto;
  /* KUNCI: Scrollbar muncul jika teks panjang */
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

.modal-body p {
  margin-bottom: 16px;
}

.modal-body strong {
  color: #000;
  display: block;
  margin-bottom: 8px;
}

/* Kustomisasi Scrollbar agar rapi */
.modal-body::-webkit-scrollbar {
  width: 8px;
}

.modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-bottom-right-radius: 16px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* Footer Modal */
.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid #e5e5e5;
  text-align: right;
  background: #fafafa;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.btn-agree {
  background: #2f4fd2;
  /* Warna sesuai tema kamu */
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.btn-close-modal {
  background: transparent;
  color: #666;
  border: 1px solid #ccc;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}

.btn-close-modal:hover {
  background: #f0f0f0;
  /* Efek hover abu-abu muda */
  color: #000;
  border-color: #999;
}

.btn-agree:hover {
  background: #1a1a1a;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 480px) {
  .logo-text {
    font-size: 18px;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
  }

  .nav-actions .btn {
    font-size: 13px;
    padding: 8px 16px;
  }
}

.ag-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #fff;
  width: 90%;
  max-width: 650px;
  border-radius: 24px;
  padding: 40px;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  color: #ccc;
  font-size: 32px;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #111;
}

.modal-body {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-top: 24px;
  max-height: 400px;
  overflow-y: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .ag-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .ag-container {
    padding: 0 30px;
  }
}

@media (max-width: 640px) {
  .ag-footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 60px;
  }

  .ag-bottom-flex {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .ag-footer-logo,
  .ag-footer-title {
    margin-bottom: 24px;
  }
}

/* ==================== Futuristic Enhancements (Grid & Particles) ==================== */
.ag-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(to right, rgba(47, 79, 210, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(47, 79, 210, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.ag-tech-particles span {
  position: absolute;
  color: rgba(47, 79, 210, 0.35);
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  font-weight: bold;
  pointer-events: none;
  z-index: 1;
  animation: floatParticle 8s ease-in-out infinite alternate;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.ag-tech-particles .p-1 { top: 15%; left: 10%; animation: floatParticle 6s ease-in-out infinite alternate; }
.ag-tech-particles .p-2 { top: 60%; left: 5%; animation: floatingPulse 10s ease-in-out infinite alternate; }
.ag-tech-particles .p-3 { top: 25%; right: 12%; animation: floatParticle 8s ease-in-out infinite alternate; }
.ag-tech-particles .p-4 { bottom: 20%; right: 8%; animation: floatDrift 12s ease-in-out infinite alternate; }
.ag-tech-particles .p-5 { top: 45%; right: 25%; animation: floatingPulse 9s ease-in-out infinite alternate; }
.ag-tech-particles .p-6 { top: 10%; left: 40%; animation: floatingPulse 7s ease-in-out infinite alternate; }
.ag-tech-particles .p-7 { bottom: 15%; left: 30%; animation: zigZag 15s linear infinite; }
.ag-tech-particles .p-8 { top: 35%; left: 15%; animation: floatDrift 11s ease-in-out infinite alternate; }
.ag-tech-particles .p-9 { bottom: 40%; right: 18%; animation: floatingPulse 9s ease-in-out infinite alternate; }
.ag-tech-particles .p-10 { top: 5%; right: 35%; animation: zigZag 18s linear infinite; }
.ag-tech-particles .p-11 { bottom: 5%; left: 15%; animation: floatParticle 6s ease-in-out infinite alternate; }
.ag-tech-particles .p-12 { top: 55%; left: 60%; animation: floatDrift 13s ease-in-out infinite alternate; }

/* New Physics & Geometry Positions */
.ag-tech-particles .p-13 { top: 20%; left: 25%; animation: floatDrift 15s ease-in-out infinite alternate; }
.ag-tech-particles .p-14 { bottom: 45%; left: 40%; animation: floatingPulse 12s ease-in-out infinite alternate; }
.ag-tech-particles .p-15 { top: 15%; left: 65%; animation: floatParticle 10s ease-in-out infinite alternate; }
.ag-tech-particles .p-16 { bottom: 30%; right: 40%; animation: floatingPulse 14s ease-in-out infinite alternate; }
.ag-tech-particles .p-17 { top: 5%; left: 55%; animation: floatDrift 18s ease-in-out infinite alternate; }
.ag-tech-particles .p-18 { bottom: 10%; right: 55%; animation: zigZag 20s linear infinite; }
.ag-tech-particles .p-19 { top: 40%; left: 5%; animation: floatParticle 11s ease-in-out infinite alternate; }
.ag-tech-particles .p-20 { top: 50%; right: 15%; animation: floatDrift 9s ease-in-out infinite alternate; font-size: 10px; opacity: 0.15; }
.ag-tech-particles .p-21 { bottom: 50%; left: 18%; animation: floatingPulse 16s ease-in-out infinite alternate; font-size: 8px; opacity: 0.15; }
.ag-tech-particles .p-22 { top: 30%; left: 45%; animation: floatParticle 13s ease-in-out infinite alternate; font-size: 9px; opacity: 0.15; }
.ag-tech-particles .p-23 { bottom: 25%; left: 60%; animation: floatDrift 11s ease-in-out infinite alternate; font-size: 11px; opacity: 0.15; }
.ag-tech-particles .p-24 { top: 70%; right: 30%; animation: floatingPulse 15s ease-in-out infinite alternate; font-size: 12px; opacity: 0.3; }
.ag-tech-particles .p-25 { bottom: 5%; right: 25%; animation: floatDrift 7s ease-in-out infinite alternate; font-size: 14px; opacity: 0.4; }

/* Batch 2 (26-50) */
.ag-tech-particles .p-26 { top: 12%; left: 75%; animation: floatDrift 14s ease-in-out infinite alternate; color: rgba(50, 200, 255, 0.35); }
.ag-tech-particles .p-27 { bottom: 65%; left: 65%; animation: floatParticle 11s ease-in-out infinite alternate; color: rgba(110, 90, 255, 0.3); }
.ag-tech-particles .p-28 { top: 38%; right: 5%; animation: floatingPulse 13s ease-in-out infinite alternate; color: rgba(47, 79, 210, 0.35); }
.ag-tech-particles .p-29 { bottom: 12%; left: 45%; animation: zigZag 17s linear infinite; }
.ag-tech-particles .p-30 { top: 8%; left: 18%; animation: floatDrift 19s ease-in-out infinite alternate; }
.ag-tech-particles .p-31 { bottom: 22%; right: 65%; animation: floatParticle 16s ease-in-out infinite alternate; }
.ag-tech-particles .p-32 { top: 65%; left: 12%; animation: floatingPulse 11s ease-in-out infinite alternate; color: rgba(50, 200, 255, 0.4); }
.ag-tech-particles .p-33 { bottom: 35%; right: 12%; animation: floatDrift 18s ease-in-out infinite alternate; }
.ag-tech-particles .p-34 { top: 28%; left: 35%; animation: floatParticle 10s ease-in-out infinite alternate; }
.ag-tech-particles .p-35 { bottom: 55%; right: 35%; animation: floatingPulse 15s ease-in-out infinite alternate; }
.ag-tech-particles .p-36 { top: 48%; left: 55%; animation: floatDrift 12s ease-in-out infinite alternate; opacity: 0.5; font-size: 16px; }
.ag-tech-particles .p-37 { bottom: 18%; left: 28%; animation: floatParticle 14s ease-in-out infinite alternate; opacity: 0.5; font-size: 16px; }
.ag-tech-particles .p-38 { top: 5%; right: 15%; animation: floatDrift 9s ease-in-out infinite alternate; opacity: 0.6; font-size: 18px; }
.ag-tech-particles .p-39 { bottom: 42%; left: 22%; animation: floatingPulse 12s ease-in-out infinite alternate; color: rgba(47, 79, 210, 0.4); }
.ag-tech-particles .p-40 { top: 18%; left: 52%; animation: zigZag 16s linear infinite; }
.ag-tech-particles .p-41 { bottom: 60%; left: 85%; animation: floatDrift 15s ease-in-out infinite alternate; color: rgba(50, 200, 255, 0.35); }
.ag-tech-particles .p-42 { top: 52%; right: 45%; animation: floatParticle 22s ease-in-out infinite alternate; }
.ag-tech-particles .p-43 { bottom: 15%; left: 65%; animation: floatingPulse 10s ease-in-out infinite alternate; color: rgba(110, 90, 255, 0.35); }
.ag-tech-particles .p-44 { top: 32%; right: 28%; animation: floatDrift 11s ease-in-out infinite alternate; }
.ag-tech-particles .p-45 { bottom: 5%; left: 38%; animation: zigZag 25s linear infinite; }
.ag-tech-particles .p-46 { top: 25%; left: 88%; animation: floatParticle 9s ease-in-out infinite alternate; opacity: 0.5; font-size: 15px; }
.ag-tech-particles .p-47 { bottom: 50%; right: 52%; animation: floatingPulse 13s ease-in-out infinite alternate; opacity: 0.5; font-size: 16px; }
.ag-tech-particles .p-48 { top: 75%; left: 75%; animation: floatDrift 17s ease-in-out infinite alternate; opacity: 0.5; font-size: 16px; }
.ag-tech-particles .p-49 { bottom: 28%; left: 8%; animation: floatParticle 14s ease-in-out infinite alternate; opacity: 0.5; font-size: 15px; }
.ag-tech-particles .p-50 { top: 62%; right: 75%; animation: floatingPulse 20s ease-in-out infinite alternate; color: rgba(0, 255, 234, 0.4); }

@keyframes floatParticle {
  0%, 100% { transform: translate(0, 0); opacity: 0; }
  50% { transform: translate(30px, -40px); opacity: 0.5; }
}

@keyframes floatingPulse {
  0%, 100% { transform: scale(0.8) translate(0, 0); opacity: 0; }
  50% { transform: scale(1.1) translate(15px, -15px); opacity: 0.5; }
}

@keyframes zigZag {
  0%, 100% { transform: translate(0, 0); opacity: 0; }
  25% { transform: translate(40px, 40px); opacity: 0.4; }
  50% { transform: translate(0, 80px); opacity: 0.2; }
  75% { transform: translate(-40px, 40px); opacity: 0.4; }
}

@keyframes floatDrift {
  0%, 100% { transform: translate(0, 0); opacity: 0; }
  50% { transform: translate(40px, -20px); opacity: 0.5; }
}

/* --- Newsletter Obsolete (Replaced by cta-box) --- */
.ag-footer-body {
  display: none;
}


