/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #090a0f;
  --bg-card: rgba(16, 17, 26, 0.88);
  --bg-card-hover: rgba(22, 24, 38, 0.95);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 215, 0, 0.14);
  --border-active: rgba(255, 215, 0, 0.5);
  --gold: #ffd700;
  --gold-dim: #c9a227;
  --gold-glow: rgba(255, 215, 0, 0.35);
  --text: #f0f0f5;
  --text-muted: #9a9ab0;
  --success: #22c55e;
  --wa-green: #25d366;
  --wa-dark: #128c7e;
  --danger: #ef4444;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Orbitron', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }
[hidden] { display: none !important; }

/* ===== BACKGROUND ===== */
.bg-grid {
  position: fixed; inset: 0; z-index: -2;
  background-image:
    linear-gradient(rgba(255,215,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,215,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}
.bg-glow {
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255,215,0,0.12), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(99,102,241,0.08), transparent),
    radial-gradient(ellipse 50% 30% at 10% 80%, rgba(236,72,153,0.06), transparent);
  pointer-events: none;
}

/* ===== UTILITIES & BADGES ===== */
.container { width: min(1200px, 94%); margin-inline: auto; }
.gold { color: var(--gold); }
.badge-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold); background: rgba(255,215,0,0.1);
  border: 1px solid var(--border);
  padding: 0.35rem 0.9rem; border-radius: 50px;
  margin-bottom: 0.8rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.65rem 1.3rem; border-radius: 50px;
  font-weight: 600; font-size: 0.92rem;
  border: none; cursor: pointer;
  transition: all var(--transition);
  user-select: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #111;
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
  color: #000;
}
.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,215,0,0.3); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #111;
}
.btn-lg { padding: 0.9rem 1.8rem; font-size: 1rem; }
.btn-sm { padding: 0.45rem 0.85rem; font-size: 0.82rem; }
.btn-full { width: 100%; }
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 4px 18px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.45);
  color: #fff;
}
.header-wa-btn {
  padding: 0.52rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  letter-spacing: 0.2px;
}
.btn-select-counter {
  padding: 0.5rem 1.05rem;
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: 50px;
  background: rgba(255, 215, 0, 0.12);
  color: var(--gold);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.btn-select-counter:hover {
  background: var(--gold);
  color: #111;
}
.btn-text {
  background: none; border: none; color: var(--danger);
  font-size: 0.8rem; font-weight: 600; cursor: pointer;
  padding: 0.2rem 0.5rem; transition: opacity var(--transition);
}
.btn-text:hover { opacity: 0.8; text-decoration: underline; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0.65rem 0;
  background: rgba(8, 9, 14, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  transition: all var(--transition);
  width: 100%;
  box-sizing: border-box;
}
.header.scrolled {
  background: rgba(6, 7, 11, 0.98);
  border-bottom-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 6px 35px rgba(0,0,0,0.7);
}
.header .container {
  width: min(1400px, 95%);
  margin-inline: auto;
  padding: 0 0.5rem;
  box-sizing: border-box;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  min-width: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  padding-right: 0.5rem;
}
.brand-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255,215,0,0.35));
}
.footer-logo-img {
  height: 46px; width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255,215,0,0.35));
}
.logo-icon {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #111; border-radius: 9px;
  font-size: 0.9rem;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  color: #ffffff;
}
.logo-text span { color: var(--gold); }

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  min-width: 0;
}

/* Mobile dropdown specific elements (hidden on desktop) */
.nav-backdrop { display: none; }
.mobile-nav-search { display: none; }
.nav-links-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.14);
  border-radius: 50px;
  padding: 0.3rem 0.55rem;
  backdrop-filter: blur(12px);
}
.nav-links-wrap a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
  position: relative;
  transition: all var(--transition);
  white-space: nowrap;
  padding: 0.42rem 0.8rem;
  border-radius: 50px;
}
.nav-links-wrap a i {
  color: var(--gold);
  font-size: 0.82rem;
  opacity: 0.9;
  transition: transform var(--transition);
}
.nav-links-wrap a:hover {
  color: #ffffff;
  background: rgba(255, 215, 0, 0.12);
}
.nav-links-wrap a:hover i {
  transform: translateY(-1px);
}
.nav-links-wrap a.nav-vip-link {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
}
.nav-links-wrap a.nav-vip-link:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--gold);
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.42rem 0.85rem;
  transition: all var(--transition);
}
.search-box:focus-within {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
}
.search-box i {
  color: var(--gold);
  font-size: 0.82rem;
}
.search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  width: 105px;
  font-size: 0.84rem;
  transition: width 0.25s ease;
}
.search-box:focus-within input {
  width: 135px;
}
.search-box input::placeholder {
  color: var(--text-muted);
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 120;
}
.mobile-toggle span {
  width: 22px; height: 2px; background: var(--text);
  border-radius: 2px; transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--gold);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: var(--gold);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem 1rem;
  padding: max(1.25rem, env(safe-area-inset-top, 1.25rem)) max(1rem, env(safe-area-inset-right, 1rem)) max(1.25rem, env(safe-area-inset-bottom, 1.25rem)) max(1rem, env(safe-area-inset-left, 1rem));
  overflow-y: auto;
  opacity: 1; visibility: visible;
  transition: all 0.35s ease;
  box-sizing: border-box;
}
.modal-overlay.hidden {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.modal-card {
  position: relative;
  background: linear-gradient(165deg, #181926 0%, #0d0e15 100%);
  border: 1px solid rgba(255, 215, 0, 0.38);
  border-radius: 24px;
  padding: 2.2rem 1.8rem 1.8rem;
  max-width: 460px; width: 100%;
  margin: auto;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.18);
  animation: modalIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: calc(100dvh - 2.5rem);
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  scrollbar-width: thin;
}
.modal-logo-wrap {
  display: flex; justify-content: center; align-items: center;
  margin-bottom: 0.6rem;
}
.modal-logo-img {
  height: 68px; max-width: 90%; width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(255, 215, 0, 0.5));
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.94) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted); font-size: 1.35rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  z-index: 10;
  padding: 0;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  transform: scale(1.08);
}
.modal-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.72rem; letter-spacing: 1.5px;
  color: var(--gold); background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
  padding: 0.35rem 0.9rem; border-radius: 50px;
  margin-bottom: 0.9rem;
  box-sizing: border-box;
}

/* User-Requested Modal Alert Box */
.modal-alert-box {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.12) 0%, rgba(255, 215, 0, 0.08) 100%);
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}
.modal-alert-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: #ffdd55;
  line-height: 1.3;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.modal-alert-sub {
  color: #f1f5f9;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  line-height: 1.35;
}
.modal-domain-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 215, 0, 0.5);
  border-radius: 50px;
  padding: 0.35rem 1.1rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.25);
}
.verified-glow {
  color: #10b981;
  font-size: 0.95rem;
  filter: drop-shadow(0 0 4px #10b981);
}

.modal-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  width: 100%;
  box-sizing: border-box;
}
.highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #f1f5f9;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.62rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 215, 0, 0.22);
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  transition: all 0.2s ease;
}
.highlight:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.4);
}
.highlight i {
  color: var(--gold, #ffd700);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.modal-actions {
  display: flex; flex-direction: column; gap: 0.65rem;
  width: 100%; box-sizing: border-box; margin-bottom: 0;
}
.modal-actions .btn {
  justify-content: center; width: 100%; box-sizing: border-box;
  padding: 0.8rem 1rem; font-size: 0.95rem; border-radius: 12px;
  font-weight: 700; display: flex; align-items: center; gap: 0.55rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* User CTA Buttons */
.btn-frontline-gold {
  background: linear-gradient(135deg, #ffd700 0%, #ff9900 100%);
  color: #0d0e15 !important;
  border: none;
  box-shadow: 0 6px 20px rgba(255, 180, 0, 0.38);
}
.btn-frontline-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(255, 180, 0, 0.55);
}

.btn-frontline-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}
.btn-frontline-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(16, 185, 129, 0.55);
}

.btn-modal-explore {
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1 !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.btn-modal-explore:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  border-color: rgba(255, 215, 0, 0.3);
}

/* Header Get ID quick button */
.btn-header-getid {
  background: linear-gradient(135deg, #ffd700, #ff9900);
  color: #0d0e15 !important;
  font-weight: 700;
  border: none;
  padding: 0.42rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.35);
  animation: pulseGlow 2.5s infinite;
  white-space: nowrap;
}
.btn-header-getid:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}
.nav-getid-link {
  color: var(--gold) !important;
  font-weight: 700 !important;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.25); }
  50% { box-shadow: 0 0 22px rgba(255, 215, 0, 0.6); }
}

/* ===== HERO & FRONTLINE GATEWAY ===== */
.hero {
  padding-top: 85px;
  padding-bottom: 3.5rem;
  text-align: center;
  position: relative;
}
.hero-crest-badge {
  display: flex; justify-content: center; align-items: center;
  margin-top: 0.2rem;
  margin-bottom: 1rem;
}
.hero-anna-logo {
  height: clamp(80px, 14vw, 125px) !important;
  width: auto;
  max-width: 85vw;
  object-fit: contain;
  filter: drop-shadow(0 8px 30px rgba(255, 215, 0, 0.5));
  animation: floatLogo 4s ease-in-out infinite alternate;
}

/* Frontline Security Banner */
.frontline-security-banner {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  background: rgba(18, 16, 12, 0.85);
  border: 1px solid rgba(255, 215, 0, 0.32);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  margin-bottom: 1.3rem;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}
.fsb-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 215, 0, 0.14);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.2rem 0.65rem;
  border-radius: 30px;
}
.fsb-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #e2e8f0;
}
.fsb-warn {
  color: #ffdd55;
  font-weight: 700;
}
.fsb-sep {
  color: rgba(255, 255, 255, 0.3);
}
.fsb-domain strong {
  color: var(--gold);
}

/* Frontline Action Container */
.frontline-action-container {
  max-width: 820px;
  margin: 0 auto 2.8rem;
  background: linear-gradient(180deg, rgba(24, 25, 38, 0.85) 0%, rgba(13, 14, 21, 0.95) 100%);
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 24px;
  padding: 1.8rem 1.5rem 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(255, 215, 0, 0.12);
  backdrop-filter: blur(12px);
}
.frontline-btn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}
.btn-frontline-hero-gold,
.btn-frontline-hero-green {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.28s ease;
  box-sizing: border-box;
}
.btn-frontline-hero-gold {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #0b0c10 !important;
  box-shadow: 0 10px 30px rgba(255, 170, 0, 0.38);
}
.btn-frontline-hero-gold:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(255, 170, 0, 0.55);
}
.btn-frontline-hero-green {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.35);
}
.btn-frontline-hero-green:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.55);
}
.btn-frontline-hero-gold i.fa-id-card,
.btn-frontline-hero-green i.fa-user-check {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.btn-text-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
  margin-left: 0.9rem;
}
.btn-main-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}
.btn-sub-title {
  font-size: 0.78rem;
  opacity: 0.9;
  font-weight: 500;
  margin-top: 0.15rem;
}
.btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.25s ease;
  margin-left: 0.5rem;
}
.btn-frontline-hero-gold:hover .btn-arrow,
.btn-frontline-hero-green:hover .btn-arrow {
  transform: translateX(4px);
}

/* Frontline Trust Chips */
.frontline-trust-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.3rem;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 50px;
  padding: 0.45rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f1f5f9;
}
.trust-chip.highlight-chip {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.45);
  color: #ffd700;
  font-weight: 700;
}

/* Frontline Redirect / Explore Brands Button */
.frontline-redirect-wrap {
  display: flex;
  justify-content: center;
}
.btn-explore-redirect {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.35);
  color: #ffd700 !important;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-explore-redirect:hover {
  background: rgba(255, 215, 0, 0.18);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.25);
}
.bounce-arrow {
  animation: bounceDown 1.8s infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.hero-crest-img {
  height: clamp(85px, 15vw, 115px);
  width: auto;
  max-width: 80vw;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(255,215,0,0.45));
  animation: floatLogo 4s ease-in-out infinite alternate;
}
@keyframes floatLogo {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}
.hero-badge {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px;
  color: var(--gold); background: rgba(255,215,0,0.08);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem; border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.15; font-weight: 700;
  margin-bottom: 1.2rem;
}
.hero h1 .line { display: block; }
.hero-desc {
  max-width: 620px; margin: 0 auto 2rem;
  color: var(--text-muted); font-size: 1.05rem;
}
.hero-desc strong { color: var(--gold); }
.hero-cta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num, .stat-text {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700; color: var(--gold);
}
.stat-label {
  display: block; font-size: 0.85rem; color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ===== CONTINUOUS FLOWING DISCLAIMER TICKER (BELOW HERO STATS) ===== */
.disclaimer-ticker-wrap {
  position: relative;
  margin-top: 0;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #131008 0%, #1f180a 50%, #131008 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.25);
  border-bottom: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(255, 215, 0, 0.06);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.65rem 0;
  z-index: 50;
}
.disclaimer-ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: marqueeTrack 32s linear infinite;
  will-change: transform;
}
@keyframes marqueeTrack {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0 1.5rem;
  font-size: 0.84rem;
  color: #e2e8f0;
}
.ticker-badge {
  color: var(--gold);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 215, 0, 0.12);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  white-space: nowrap;
}
.ticker-text {
  color: #d1d5db;
}
.ticker-text strong {
  color: var(--gold);
}
.ticker-bonus {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.25), rgba(245, 158, 11, 0.25));
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: #fbbf24;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  animation: pulseGlow 2s infinite alternate;
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 4px rgba(251, 191, 36, 0.2); }
  100% { box-shadow: 0 0 14px rgba(251, 191, 36, 0.55); }
}
.ticker-sep {
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0.6;
  padding: 0 0.5rem;
}

/* ===== VIP DIRECT ACCESS PORTALS SECTION ===== */
.vip-portals-section {
  padding: 3.5rem 0 2rem;
  position: relative;
}
.vip-portals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.8rem;
  margin-top: 1.5rem;
}
.vip-portal-card {
  position: relative;
  background: linear-gradient(160deg, rgba(26, 24, 16, 0.95) 0%, rgba(14, 15, 24, 0.98) 100%);
  border: 1.5px solid rgba(255, 215, 0, 0.35);
  border-radius: 20px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 215, 0, 0.12);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  overflow: hidden;
}
.vip-portal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ff8c00, #ffd700);
  background-size: 200% auto;
  animation: shineLine 3s linear infinite;
}
@keyframes shineLine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.vip-portal-card.flagship-card {
  grid-column: 1 / -1;
  background: linear-gradient(160deg, rgba(32, 26, 14, 0.98) 0%, rgba(16, 16, 26, 0.98) 100%);
  border: 2px solid var(--gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 50px rgba(255, 215, 0, 0.28);
  padding: 1.8rem;
}
.flagship-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.2rem;
  align-items: center;
  width: 100%;
}
.flagship-screenshot-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.screenshot-device-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  background: #0d0e15;
  border: 2px solid rgba(255, 215, 0, 0.35);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.18);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.screenshot-device-frame:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 215, 0, 0.35);
}
.screenshot-device-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}
.device-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.device-dot.red { background: #ef4444; }
.device-dot.yellow { background: #f59e0b; }
.device-dot.green { background: #22c55e; }
.device-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: #94a3b8;
  margin-left: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.screenshot-img-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  display: block;
}
.flagship-screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.35s ease;
}
.screenshot-img-box:hover .flagship-screenshot-img {
  transform: scale(1.02);
}
.screenshot-expand-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  color: var(--gold);
  border: 1px solid rgba(255, 215, 0, 0.4);
  padding: 0.35rem 0.7rem;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--transition);
  opacity: 0.85;
}
.screenshot-expand-btn:hover {
  background: var(--gold);
  color: #111;
  opacity: 1;
}

.vip-portal-item-block {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 215, 0, 0.22);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--transition);
}
.vip-portal-item-block:hover {
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.65);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.12);
}
.vip-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.vip-item-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}
.vip-item-badge-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.vip-share-badge {
  background: rgba(255, 215, 0, 0.18);
  border: 1px solid rgba(255, 215, 0, 0.45);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.74rem;
  padding: 0.18rem 0.55rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
}
.vip-title-logo-flex {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.vip-brand-logo-img {
  height: 36px;
  max-width: 110px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
}
.vip-item-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  margin: 0;
}
.vip-item-title span { color: var(--gold); }
.vip-item-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}
.vip-item-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  padding-top: 0.3rem;
}
.vip-item-actions .btn {
  flex: 1 1 auto;
  font-size: 0.84rem;
}
.screenshot-device-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: #4ade80;
  padding: 0.45rem 0.65rem;
  background: rgba(34, 197, 94, 0.1);
  border-top: 1px solid rgba(34, 197, 94, 0.2);
}
  gap: 0.6rem;
  margin: 0.6rem 0;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.45);
  border: 1px dashed rgba(255, 215, 0, 0.3);
  border-radius: 12px;
}
.metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #f1f5f9;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
}
.metric-pill.success { color: #4ade80; }
.metric-pill.gold-pill { color: #fde047; }
.metric-pill i { font-size: 0.8rem; }
.vip-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.vip-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.2));
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  text-transform: uppercase;
}
.vip-card-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}
.vip-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}
.vip-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.vip-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.vip-card-title span {
  color: var(--gold);
}
.vip-portal-url-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  margin: 0.4rem 0;
  gap: 0.6rem;
}
.vip-portal-url {
  font-family: monospace;
  font-size: 0.92rem;
  color: #fef08a;
  word-break: break-all;
  font-weight: 600;
}
.vip-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.vip-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.3rem;
}
.vip-feat-tag {
  font-size: 0.78rem;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.vip-feat-tag i { color: var(--gold); font-size: 0.75rem; }
.vip-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.vip-card-actions .btn {
  flex: 1 1 auto;
  font-size: 0.86rem;
}
.btn-copy-portal {
  padding: 0.55rem 0.9rem;
}
.btn-copy-portal.copied {
  background: #22c55e;
  color: #fff;
  border-color: #22c55e;
}

/* VIP Ribbon on Brand Grid Cards */
.site-vip-ribbon {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, #ffd700, #f59e0b);
  color: #111;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  padding: 0.22rem 0.6rem;
  border-radius: 50px;
  z-index: 5;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.vip-brand-card {
  border-color: rgba(255, 215, 0, 0.45);
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.08), rgba(16, 17, 26, 0.92));
}

/* ===== SITES SECTION ===== */
.sites-section { padding: 3.5rem 0 4.5rem; }
.section-header {
  text-align: center; margin-bottom: 2.5rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 0.6rem;
}
.section-header p { color: var(--text-muted); max-width: 580px; margin: 0 auto; }

.filter-bar {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
  background: var(--bg-card);
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}
.section-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0.65rem 1rem;
  transition: all var(--transition);
}
.section-search-wrap:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
  background: rgba(0, 0, 0, 0.7);
}
.section-search-wrap i {
  color: var(--gold);
  font-size: 1rem;
  margin-right: 0.75rem;
}
.section-search-wrap input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.95rem;
  width: 100%;
}
.section-search-wrap input::placeholder {
  color: var(--text-muted);
}
.search-clear-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0 0.35rem;
  line-height: 1;
  transition: color var(--transition);
}
.search-clear-btn:hover {
  color: var(--gold);
}
.filter-controls-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.filter-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-btn {
  padding: 0.45rem 1.1rem; border-radius: 50px;
  background: var(--bg-glass); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold); color: #111; border-color: var(--gold);
}
.action-group {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem;
}
.sort-wrap {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: var(--text-muted);
}
.sort-wrap select {
  background: #12131d; border: 1px solid var(--border);
  color: var(--text); padding: 0.45rem 0.85rem;
  border-radius: 8px; cursor: pointer; outline: none;
}

/* ===== BRAND CATALOG SECTION (FULL-PAGE SCROLL & COMPACT SIZING) ===== */
.sites-catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
  padding: 0.65rem 1.1rem;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.sites-catalog-count {
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sites-catalog-count span {
  color: var(--gold);
}

/* Compact Brand Catalog Grid (5-6 columns on desktop, 3-4 on tablet, 2 on mobile) */
.sites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.85rem;
  width: 100%;
}

/* Compact Brand Card */
.site-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.site-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.site-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 215, 0, 0.45);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45), 0 0 18px rgba(255, 215, 0, 0.1);
}
.site-card:hover::before {
  opacity: 1;
}

.site-card.selected {
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.12), rgba(18, 19, 30, 0.96));
  border-color: var(--gold);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.18);
}
.site-card.selected::before {
  opacity: 1;
}

/* Showcase Brand Logo Frame (Compact & Smaller) */
.site-card-frame {
  position: relative;
  width: 100%;
  height: 76px;
  background: radial-gradient(circle at center, rgba(35, 28, 16, 0.95), rgba(10, 11, 18, 0.98));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem;
  overflow: hidden;
  box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.7);
  transition: all var(--transition);
}

.site-card:hover .site-card-frame {
  border-color: rgba(255, 215, 0, 0.45);
  box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.08);
}

.site-card.selected .site-card-frame {
  border-color: var(--gold);
  box-shadow: inset 0 0 22px rgba(255, 215, 0, 0.15), 0 0 14px rgba(255, 215, 0, 0.2);
  background: radial-gradient(circle at center, rgba(45, 36, 18, 0.95), rgba(12, 13, 22, 0.98));
}

.site-brand-showcase {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-showcase-img {
  max-width: 82%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 5px rgba(255, 215, 0, 0.15));
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-card:hover .site-showcase-img {
  transform: scale(1.06);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 8px rgba(255, 215, 0, 0.35));
}

/* Badges positioned over the frame */
.site-select-badge {
  position: absolute;
  top: 5px;
  left: 5px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.64rem;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.12rem 0.42rem;
  border-radius: 50px;
  z-index: 2;
  transition: all var(--transition);
}

.site-card.selected .site-select-badge {
  color: #111;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}
.site-select-badge i {
  font-size: 0.68rem;
}

.site-share-tag {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(255, 215, 0, 0.18);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.65rem;
  padding: 0.12rem 0.42rem;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  z-index: 2;
  letter-spacing: 0.2px;
}

.site-card.selected .site-share-tag {
  background: rgba(255, 215, 0, 0.3);
  border-color: var(--gold);
}

.site-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.site-name {
  font-weight: 700;
  font-size: 0.85rem;
  word-break: break-all;
  line-height: 1.25;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.site-meta strong {
  color: var(--gold);
}

.site-card-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.2rem;
}

.btn-toggle-select {
  flex: 1;
  justify-content: center;
  font-size: 0.74rem;
  padding: 0.38rem 0.6rem;
  border-radius: 8px;
}

.btn-visit {
  width: 30px;
  height: 30px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 8px;
  flex-shrink: 0;
  font-size: 0.7rem;
}

.no-results {
  text-align: center;
  padding: 3.5rem;
  color: var(--text-muted);
}
.no-results i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.4;
}
.no-results i { font-size: 2.5rem; margin-bottom: 1rem; opacity: 0.4; }

/* ===== WHATSAPP INQUIRY SECTION ===== */
.inquiry-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(18,20,32,0.5) 50%, transparent 100%);
}
.inquiry-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; align-items: stretch;
}
.inquiry-form-card, .inquiry-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.form-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem; padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}
.form-header h3 { font-size: 1.25rem; }
.selection-pill {
  font-size: 0.8rem; font-weight: 700;
  background: rgba(255,215,0,0.12); color: var(--gold);
  padding: 0.3rem 0.8rem; border-radius: 50px;
}

.selected-brands-wrap {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.selected-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.75rem;
}
.selected-header label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.selected-chips {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  max-height: 160px; overflow-y: auto;
  padding-right: 0.25rem;
}
.brand-chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--text); padding: 0.3rem 0.7rem;
  border-radius: 50px; font-size: 0.82rem;
  animation: chipIn 0.2s ease;
}
.chip-brand-img {
  width: 18px; height: 18px;
  border-radius: 50%;
  object-fit: contain;
  background: #111;
  border: 1px solid rgba(255, 215, 0, 0.4);
  flex-shrink: 0;
}
@keyframes chipIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
.chip-name { font-weight: 600; }
.chip-share {
  background: rgba(255,215,0,0.2);
  color: var(--gold); font-size: 0.72rem; font-weight: 700;
  padding: 0.1rem 0.4rem; border-radius: 50px;
}
.chip-remove {
  background: none; border: none; color: var(--text-muted);
  cursor: pointer; font-size: 1.1rem; line-height: 1;
  display: grid; place-items: center; padding: 0 0.1rem;
  transition: color var(--transition);
}
.chip-remove:hover { color: var(--danger); }
.chips-empty {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--text-muted); font-size: 0.85rem; padding: 0.8rem 0;
}
.chips-empty i { color: var(--gold); font-size: 1.1rem; }

.manual-add-row {
  display: flex; gap: 0.5rem; margin-top: 0.85rem; padding-top: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.manual-add-row input {
  flex: 1; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 0.45rem 0.85rem; color: var(--text); font-size: 0.85rem;
}
.manual-add-row input:focus { outline: none; border-color: var(--gold); }

/* Form Fields */
.inquiry-form { display: flex; flex-direction: column; gap: 1.1rem; flex: 1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
}
.form-group input, .form-group select, .form-group textarea {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  color: var(--text); font-size: 0.9rem;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-group select option { background: #12131d; color: #fff; }
.form-group textarea { resize: vertical; }
#sendWhatsAppBtn { margin-top: auto; }

/* Functions & Capabilities Tick Checkboxes */
.functions-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.3rem;
}
.function-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}
.function-row:hover {
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.35);
}
.function-row input[type="checkbox"] {
  display: none;
}
.custom-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.4);
  display: grid;
  place-items: center;
  color: #111;
  font-size: 0.75rem;
  font-weight: 900;
  transition: all var(--transition);
  flex-shrink: 0;
}
.custom-checkbox i {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.function-row.active {
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(18, 19, 30, 0.85));
  border-color: var(--gold);
}
.function-row.active .custom-checkbox {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.35);
}
.function-row.active .custom-checkbox i {
  opacity: 1;
  transform: scale(1);
}
.function-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}
.function-row.active .function-text {
  color: #fff;
  font-weight: 600;
}

.chat-functions-list {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.chat-func-pill {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #25d366; font-size: 0.76rem; font-weight: 600;
  padding: 0.2rem 0.55rem; border-radius: 50px;
}
.chat-func-pill i { font-size: 0.72rem; }

/* Live Preview Column & WhatsApp Chat Interface */
.preview-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.2rem;
}
.preview-badge {
  font-size: 0.85rem; font-weight: 700; color: var(--gold);
  display: flex; align-items: center; gap: 0.4rem;
}
.wa-status {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; color: var(--wa-green);
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--wa-green); box-shadow: 0 0 8px var(--wa-green);
}

.whatsapp-chat-bubble {
  background: #0b141a;
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.55), 0 0 20px rgba(37, 211, 102, 0.08);
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}
.bubble-header {
  background: #202c33;
  padding: 0.75rem 1.1rem;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bubble-header-user {
  display: flex; align-items: center; gap: 0.75rem;
}
.bubble-avatar-img-wrap {
  width: 42px; height: 42px; border-radius: 50%;
  background: #182229;
  border: 1.5px solid var(--gold);
  display: grid; place-items: center;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(255,215,0,0.3);
}
.bubble-avatar-img {
  width: 36px; height: 36px;
  object-fit: contain;
}
.bubble-title {
  font-weight: 700; font-size: 0.92rem; color: #e9edef;
}
.bubble-subtitle {
  font-size: 0.72rem; color: var(--wa-green); font-weight: 500;
}

.bubble-content {
  padding: 1.25rem 1.35rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #e9edef;
  background: #111b21;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chat-msg-header {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(37, 211, 102, 0.12);
  border-left: 3px solid var(--wa-green);
  padding: 0.5rem 0.75rem; border-radius: 4px;
}
.chat-badge-icon { font-size: 1.1rem; }
.chat-msg-title {
  font-weight: 700; color: #25d366; font-size: 0.9rem;
}

.chat-msg-fields {
  display: flex; flex-direction: column; gap: 0.35rem;
  background: rgba(255,255,255,0.03);
  padding: 0.6rem 0.8rem; border-radius: 8px;
}
.chat-field {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.83rem;
}
.chat-label { color: #8696a0; font-weight: 500; }
.chat-val { color: #e9edef; font-weight: 600; text-align: right; }
.gold-val { color: var(--gold); }

.chat-section-divider {
  height: 1px; background: rgba(255,255,255,0.08); margin: 0.2rem 0;
}
.chat-section-label {
  font-size: 0.82rem; font-weight: 700; color: #8696a0;
  text-transform: uppercase; letter-spacing: 0.5px;
}

.chat-brands-list {
  display: flex; flex-direction: column; gap: 0.45rem;
  max-height: 180px; overflow-y: auto; padding-right: 0.25rem;
}
.chat-brand-item {
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 8px; padding: 0.45rem 0.7rem;
}
.chat-brand-thumb {
  width: 24px; height: 24px;
  border-radius: 6px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.3);
  flex-shrink: 0;
}
.chat-brand-num {
  color: var(--gold); font-weight: 700; font-size: 0.8rem; margin-top: 0.1rem;
}
.chat-brand-info { flex: 1; }
.chat-brand-title {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem;
}
.chat-share-badge {
  font-size: 0.72rem; font-weight: 700;
  background: rgba(255,215,0,0.18); color: var(--gold);
  padding: 0.1rem 0.45rem; border-radius: 50px;
}
.chat-brand-link {
  display: block; font-size: 0.75rem; color: #53bdeb; text-decoration: underline;
  word-break: break-all; margin-top: 0.15rem;
}
.chat-empty-brands {
  font-size: 0.8rem; color: #8696a0; font-style: italic;
  padding: 0.4rem 0; display: flex; align-items: center; gap: 0.4rem;
}

.chat-notes-box {
  background: rgba(0,0,0,0.25);
  border: 1px dashed rgba(255,255,255,0.12);
  padding: 0.55rem 0.8rem; border-radius: 8px;
  font-size: 0.82rem; color: #d1d7db; line-height: 1.4;
}

.chat-source-tag {
  font-size: 0.72rem; color: #8696a0; text-align: right;
  margin-top: 0.2rem; font-weight: 500;
}

.bubble-footer {
  background: #202c33;
  padding: 0.5rem 1rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: #8696a0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.bubble-footer .ticks { color: #53bdeb; font-size: 0.8rem; }
.preview-cta {
  margin-top: 1.2rem; text-align: center;
  font-size: 0.85rem; color: var(--text-muted);
}
.preview-cta i { margin-right: 0.3rem; }
.support-hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.4rem; }

/* ===== STICKY FLOATING ACTION BAR ===== */
.floating-action-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  background: rgba(13, 14, 22, 0.95);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--gold);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.6), 0 0 25px rgba(255,215,0,0.15);
  padding: 0.85rem 0;
  transform: translateY(120%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.floating-action-bar.visible { transform: translateY(0); }
.fab-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.fab-info { display: flex; align-items: center; gap: 0.85rem; overflow: hidden; }
.fab-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #111; font-weight: 700; font-size: 0.85rem;
  padding: 0.35rem 0.85rem; border-radius: 50px;
  flex-shrink: 0;
}
.fab-preview-names {
  font-size: 0.88rem; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 450px;
}
.fab-actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }

/* ===== FEATURES ===== */
.features-section { padding: 5rem 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: all var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,215,0,0.3);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: rgba(255,215,0,0.1);
  color: var(--gold); border-radius: 12px;
  font-size: 1.2rem; margin-bottom: 1.1rem;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== ABOUT ===== */
.about-section { padding: 5rem 0; }
.about-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 3rem; align-items: center;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.2rem;
}
.about-content p {
  color: var(--text-muted); margin-bottom: 1rem; font-size: 0.95rem;
}
.about-list {
  list-style: none; margin: 1.5rem 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem;
}
.about-list li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem;
}
.about-list i { color: var(--success); font-size: 0.8rem; }
.visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.role {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: var(--bg-glass);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 500; transition: all var(--transition);
}
.role:hover { border-color: var(--border); background: rgba(255,215,0,0.06); }
.role i { color: var(--gold); width: 20px; text-align: center; }

/* ===== CTA ===== */
.cta-section { padding: 4rem 0 5rem; }
.cta-card {
  background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,215,0,0.03));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3.5rem 2rem;
  text-align: center;
}
.cta-logo-wrap {
  display: flex; justify-content: center;
  margin-bottom: 1.2rem;
}
.cta-logo-img {
  height: 80px; width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(255,215,0,0.4));
}
.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.7rem;
}
.cta-card p { color: var(--text-muted); margin-bottom: 2rem; }
.cta-buttons {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  background: rgba(0,0,0,0.35);
  margin-bottom: 70px;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.1fr 1.3fr;
  gap: 2rem;
  margin-bottom: 2.2rem;
  max-width: 100%;
  align-items: start;
}
.footer-brand p {
  color: var(--text-muted); font-size: 0.88rem;
  margin-top: 0.8rem; max-width: 300px;
  line-height: 1.45;
}
.footer-links h4,
.footer-contact-block h4 {
  font-size: 0.95rem; margin-bottom: 0.85rem; color: var(--gold);
  display: flex; align-items: center; gap: 0.45rem;
}
.footer-links a {
  display: block; color: var(--text-muted);
  font-size: 0.88rem; margin-bottom: 0.5rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-links a i { margin-right: 0.4rem; }
.footer-links a.gold { color: var(--gold); }
.footer-support-card {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.22);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  backdrop-filter: blur(8px);
}
.footer-timing-badge-wrap {
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px dashed rgba(255, 215, 0, 0.2);
}
.timing-hours-sm {
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.2px;
  margin-top: 0.25rem;
}
.footer-support-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.footer-support-item:last-child { margin-bottom: 0; }
.footer-support-item i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  width: 20px;
  text-align: center;
}
.support-item-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.15rem;
}
.support-link-highlight {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-block;
  transition: color var(--transition);
}
.support-link-highlight:hover { color: var(--gold); }
.timing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(255, 215, 0, 0.12);
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  margin-bottom: 0.5rem;
}
.timing-hours {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.3px;
  margin-bottom: 0.35rem;
}
.timing-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  max-width: 100%;
}
.disclaimer-highlight-box {
  background: rgba(255, 215, 0, 0.07);
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 12px;
  padding: 1.1rem 1.35rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(255, 215, 0, 0.05);
}
.disclaimer-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.disclaimer-highlight-box .disclaimer {
  font-size: 0.84rem;
  color: #e2e8f0;
  line-height: 1.55;
  margin: 0;
}
.disclaimer-highlight-box .disclaimer strong {
  color: var(--gold);
}
.copyright {
  font-size: 0.8rem; color: var(--text-muted); opacity: 0.7;
}

/* ===== FLOATING WA ===== */
.float-wa {
  position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--wa-green); color: #fff;
  display: grid; place-items: center; font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.float-wa:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

/* ===== COMPREHENSIVE RESPONSIVE & MOBILE POLISH ===== */
@media (max-width: 1200px) {
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 95;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
    pointer-events: none;
  }
  .nav-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(12, 14, 22, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1.5px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9);
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 100;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-nav-search {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.6rem 1rem;
    transition: border-color var(--transition);
  }
  .mobile-nav-search:focus-within {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.15);
  }
  .mobile-nav-search i {
    color: var(--gold);
    font-size: 0.9rem;
  }
  .mobile-nav-search input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.92rem;
    width: 100%;
  }
  .mobile-nav-search input::placeholder {
    color: var(--text-muted);
  }

  .nav-links-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: transparent;
    border: none;
    padding: 0;
  }
  .nav-links-wrap a {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 0.95rem;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all var(--transition);
  }
  .nav-links-wrap a i {
    color: var(--gold);
    width: 18px;
    text-align: center;
    font-size: 0.9rem;
  }
  .nav-links-wrap a:hover, .nav-links-wrap a.active {
    background: rgba(255, 215, 0, 0.12);
    color: var(--gold);
    border-color: rgba(255, 215, 0, 0.35);
    transform: translateX(4px);
  }

  .mobile-toggle { display: flex; }
}

@media (max-width: 1360px) and (min-width: 1201px) {
  .header .container { padding: 0 0.8rem; }
  .header-inner { gap: 0.9rem; }
  .logo { gap: 0.5rem; font-size: 1.05rem; }
  .nav-links-wrap { gap: 0.2rem; padding: 0.25rem 0.4rem; }
  .nav-links-wrap a { font-size: 0.82rem; gap: 0.3rem; padding: 0.35rem 0.6rem; }
  .header-actions { gap: 0.5rem; }
  .search-box { padding: 0.35rem 0.7rem; }
  .search-box input { width: 85px; }
  .search-box:focus-within input { width: 110px; }
}

@media (max-width: 960px) {
  .inquiry-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 1.6rem; }
  .about-list { grid-template-columns: 1fr 1fr; }
  .fab-preview-names { display: none; }
  .vip-portals-grid { grid-template-columns: 1fr; }
  .flagship-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .screenshot-device-frame { max-width: 280px; }
}

@media (max-width: 768px) {
  .header { padding: 0.55rem 0; }
  .header-inner { gap: 0.45rem; }
  .logo { gap: 0.4rem; font-size: 1rem; }
  .brand-logo-img { height: 32px; }
  .header-actions { gap: 0.35rem; }
  .search-box { display: none; }
  .btn-select-counter { padding: 0.35rem 0.6rem; font-size: 0.76rem; }
  .header-wa-btn { padding: 0.35rem 0.65rem; font-size: 0.76rem; }
  
  .hero {
    padding-top: 78px;
    padding-bottom: 2.8rem;
  }
  .hero-crest-badge {
    margin-top: 0;
    margin-bottom: 0.9rem;
  }
  .hero-crest-img {
    height: 95px;
  }
  .hero-badge { font-size: 0.75rem; padding: 0.35rem 0.8rem; margin-bottom: 1rem; }
  .hero h1 { font-size: clamp(1.75rem, 5.5vw, 2.6rem); margin-bottom: 0.9rem; }
  .hero-desc { font-size: 0.95rem; margin-bottom: 1.5rem; padding: 0 0.5rem; }
  .hero-cta { gap: 0.75rem; margin-bottom: 2.5rem; }
  .hero-stats { gap: 1.5rem; }
  .stat-num, .stat-text { font-size: 1.7rem; }
  .stat-label { font-size: 0.78rem; }

  .sites-section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 1.8rem; }
  .filter-bar {
    flex-direction: column; align-items: stretch; gap: 0.85rem; padding: 0.85rem;
  }
  .filter-group {
    display: flex; gap: 0.4rem; overflow-x: auto;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    padding-bottom: 2px;
  }
  .filter-group::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; padding: 0.4rem 0.9rem; font-size: 0.82rem; }
  .action-group {
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem; width: 100%;
  }
  .action-group .btn { flex: 1 1 auto; justify-content: center; font-size: 0.8rem; padding: 0.45rem 0.7rem; }
  .sort-wrap { width: 100%; justify-content: space-between; margin-top: 0.2rem; }
  .sort-wrap select { flex: 1; margin-left: 0.5rem; }

  .sites-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 0.75rem;
  }

  .inquiry-section { padding: 3.5rem 0; }
  .inquiry-form-card, .whatsapp-bubble-card { padding: 1.25rem; }
  .features-section, .about-section { padding: 3.5rem 0; }
  .cta-section { padding: 3rem 0; }
  .cta-card { padding: 2.2rem 1.2rem; }
}

@media (max-width: 540px) {
  .logo-text { font-size: 0.92rem; }
  .brand-logo-img { height: 28px; }
  .header-actions { gap: 0.3rem; }
  
  /* Compact button styling on mobile to guarantee zero right-edge clipping */
  .counter-label { display: none; }
  .wa-btn-label { display: none; }
  .btn-select-counter { padding: 0.35rem 0.55rem; font-size: 0.76rem; }
  .header-wa-btn { padding: 0.35rem 0.6rem; font-size: 0.85rem; }
  
  .hero {
    padding-top: 72px;
    padding-bottom: 1.4rem;
  }
  .hero-crest-badge {
    margin-top: 0;
    margin-bottom: 0.85rem;
  }
  .hero-crest-img {
    height: 85px;
  }
  .hero h1 { font-size: 1.65rem; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.65rem; margin-top: 1.2rem; }
  .stat-num, .stat-text { font-size: 1.35rem; }
  .stat-label { font-size: 0.74rem; }

  .disclaimer-ticker-wrap {
    margin: 0 0 1.2rem 0;
    max-width: 100vw;
    overflow: hidden;
  }

  .vip-portals-section {
    padding: 1.4rem 0 2rem;
  }
  .vip-portal-card.flagship-card {
    padding: 1.2rem 1rem;
    border-radius: 16px;
  }
  .flagship-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .screenshot-device-frame {
    max-width: 280px;
    margin: 0 auto;
  }
  .vip-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
  .vip-item-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  .vip-item-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .sites-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
  }
  .site-card {
    padding: 0.55rem;
    gap: 0.4rem;
    border-radius: 10px;
  }
  .site-card-frame {
    height: 64px;
    padding: 0.35rem;
  }
  .site-showcase-img {
    max-height: 40px;
  }
  .site-name {
    font-size: 0.76rem;
  }
  .site-meta {
    font-size: 0.68rem;
  }
  .btn-toggle-select {
    padding: 0.35rem 0.45rem;
    font-size: 0.68rem;
  }
  .btn-visit {
    width: 26px;
    height: 26px;
    font-size: 0.68rem;
  }
  .form-row { grid-template-columns: 1fr; }
  .functions-grid { grid-template-columns: 1fr; }
  .about-list { grid-template-columns: 1fr; }

  /* Floating Action Bar mobile perfection - Zero clipping */
  .floating-action-bar {
    padding: 0.5rem 0.65rem calc(0.5rem + env(safe-area-inset-bottom, 0px));
  }
  .floating-action-bar .fab-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    width: 100%;
    padding: 0;
  }
  .fab-info {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    flex-shrink: 0;
  }
  .fab-badge {
    font-size: 0.74rem;
    font-weight: 800;
    padding: 0.35rem 0.55rem;
    border-radius: 50px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
  }
  .fab-badge-label {
    display: none;
  }
  .fab-preview-names {
    display: none;
  }
  .fab-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: flex-end;
  }
  .btn-fab-clear {
    padding: 0.38rem 0.55rem;
    font-size: 0.74rem;
    flex-shrink: 0;
  }
  .btn-fab-edit {
    padding: 0.38rem 0.55rem;
    font-size: 0.74rem;
    flex-shrink: 0;
  }
  .btn-fab-send {
    padding: 0.38rem 0.65rem;
    font-size: 0.76rem;
    flex: 1;
    max-width: 155px;
    justify-content: center;
    white-space: nowrap;
  }

  .float-wa {
    bottom: 4.8rem;
    right: 0.85rem;
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }

  /* Frontline Gateway Mobile Optimizations */
  .frontline-action-container {
    padding: 1.25rem 0.95rem 1.15rem;
    border-radius: 18px;
    margin-bottom: 1.8rem;
  }
  .frontline-btn-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-bottom: 1.1rem;
  }
  .btn-frontline-hero-gold,
  .btn-frontline-hero-green {
    padding: 0.85rem 1.1rem;
    border-radius: 14px;
  }
  .btn-frontline-hero-gold i.fa-id-card,
  .btn-frontline-hero-green i.fa-user-check {
    font-size: 1.5rem;
  }
  .btn-main-title {
    font-size: 1.12rem;
  }
  .btn-sub-title {
    font-size: 0.74rem;
  }
  .frontline-security-banner {
    padding: 0.35rem 0.75rem;
    gap: 0.4rem;
    margin-bottom: 1rem;
    font-size: 0.78rem;
  }
  .fsb-badge {
    font-size: 0.68rem;
    padding: 0.15rem 0.5rem;
  }
  .fsb-text {
    font-size: 0.78rem;
    gap: 0.35rem;
  }
  .frontline-trust-chips {
    gap: 0.4rem;
    margin-bottom: 1.1rem;
  }
  .trust-chip {
    font-size: 0.76rem;
    padding: 0.35rem 0.7rem;
    gap: 0.35rem;
  }
  .btn-explore-redirect {
    font-size: 0.82rem;
    padding: 0.55rem 1rem;
    width: 100%;
    justify-content: center;
  }

  /* Modal Mobile Optimization */
  .modal-overlay {
    padding: 1rem 0.75rem;
  }
  .modal-card {
    padding: 1.5rem 1.15rem 1.35rem;
    border-radius: 18px;
    max-height: calc(100dvh - 1.75rem);
    max-height: calc(100vh - 1.75rem);
  }
  .modal-close {
    top: 0.7rem;
    right: 0.7rem;
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }
  .modal-logo-wrap {
    margin-bottom: 0.45rem;
  }
  .modal-logo-img {
    height: 58px;
  }
  .modal-badge {
    font-size: 0.64rem;
    letter-spacing: 1.2px;
    padding: 0.25rem 0.65rem;
    margin-bottom: 0.65rem;
  }
  .modal-alert-box {
    padding: 0.75rem 0.8rem;
    margin-bottom: 0.85rem;
    border-radius: 14px;
  }
  .modal-alert-title {
    font-size: 0.96rem;
  }
  .modal-alert-sub {
    font-size: 0.82rem;
    margin-bottom: 0.5rem;
  }
  .modal-domain-pill {
    font-size: 0.86rem;
    padding: 0.3rem 0.85rem;
  }
  .modal-highlights {
    gap: 0.4rem;
    margin-bottom: 0.95rem;
  }
  .highlight {
    font-size: 0.78rem;
    padding: 0.45rem 0.55rem;
    gap: 0.35rem;
  }
  .modal-actions {
    gap: 0.55rem;
  }
  .modal-actions .btn {
    padding: 0.7rem 0.85rem;
    font-size: 0.88rem;
    border-radius: 10px;
  }
}

@media (max-width: 380px) {
  .logo-text { font-size: 0.84rem; }
  .brand-logo-img { height: 24px; }
  .header-inner { gap: 0.25rem; }
  .header-actions { gap: 0.25rem; }
  .btn-select-counter { padding: 0.3rem 0.45rem; font-size: 0.72rem; }
  .header-wa-btn { padding: 0.3rem 0.5rem; font-size: 0.8rem; }
  
  .hero {
    padding-top: 65px;
  }
  .hero-crest-badge {
    margin-top: 0;
    margin-bottom: 0.65rem;
  }
  .hero-crest-img {
    height: 75px;
  }
  .hero h1 { font-size: 1.4rem; }
  .hero-stats { gap: 0.4rem; }
  .stat-num, .stat-text { font-size: 1.2rem; }
  .stat-label { font-size: 0.68rem; }

  /* Ultra-compact modal for narrow screens */
  .modal-overlay {
    padding: 0.75rem 0.5rem;
  }
  .modal-card {
    padding: 1.3rem 0.85rem 1.15rem;
    border-radius: 16px;
    max-height: calc(100dvh - 1.25rem);
  }
  .modal-logo-img {
    height: 60px;
  }
  .modal-badge {
    font-size: 0.58rem;
    letter-spacing: 1px;
    padding: 0.22rem 0.5rem;
    margin-bottom: 0.6rem;
  }
  .modal-card h2 {
    font-size: 1.2rem;
  }
  .modal-sub {
    font-size: 0.78rem;
    margin-bottom: 0.75rem;
  }
  .highlight {
    font-size: 0.73rem;
    padding: 0.4rem 0.5rem;
    gap: 0.35rem;
  }
  .modal-cta-text {
    font-size: 0.75rem;
    margin-bottom: 0.7rem;
  }
  .modal-actions .btn {
    padding: 0.62rem 0.75rem;
    font-size: 0.8rem;
  }
}
