:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --dark: #0A0C10;
  --dark-2: #111520;
  --dark-3: #181D2A;
  --dark-4: #1E2435;
  --text-muted: #8892A4;
  --text-light: #CDD5E0;
  --white: #FFFFFF;
  --border: rgba(201,168,76,0.15);
  --glow: 0 0 60px rgba(201,168,76,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display-font {
  font-family: 'Syne', sans-serif;
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(10,12,16,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white) !important;
  letter-spacing: -0.5px;
}
.sidebar-logo img,
.footer-brand img,
.navbar-brand img {
    width: 230px;
}
.nav-link {
  color: var(--text-muted) !important;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  padding: 0.4rem 1rem !important;
  transition: color 0.2s ease;
}

.nav-link:hover { color: var(--white) !important; }

.btn-nav-login {
  border: 1px solid var(--border);
  color: var(--text-light) !important;
  border-radius: 6px;
  padding: 0.6rem 1.2rem !important;
  transition: all 0.2s ease;
}

.btn-nav-login:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
}

.btn-nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  border-radius: 6px;
  padding: 0.6rem 1.3rem !important;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-nav-cta:hover {
    color:#000;
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

/* ===== HERO ===== */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgb(201 168 76 / 25%) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease both;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -2px;
  animation: fadeUp 0.7s ease 0.1s both;
}

.hero h1 .gold { color: var(--gold); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.7;
  margin: 1.5rem 0 2.5rem;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.3s both;
}

.btn-primary-gold {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 0.85rem 2rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-gold:hover {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.85rem 2rem;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.7s ease 0.4s both;
}

.stat-item {}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
}

.stat-num span { color: var(--gold); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

/* Hero visual */
.hero-visual {
  position: relative;
  animation: fadeLeft 0.8s ease 0.3s both;
}

.hero-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--glow);
}

.hero-card-main {
  padding: 2rem;
}
.publishers_section {
        padding: 50px 0;
    position: relative;
}
.publishers_section h4 {
    text-align: center;
    color: #ffffff;
}
.publishers_section h4 span {
    color: #c9a74c;
    font-weight: 600;
}
.card-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.card-value {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
}

.card-value span { color: var(--gold); }

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(74,222,128,0.1);
  color: #4ADE80;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 0.5rem;
}

.mini-bar {
  height: 4px;
  background: var(--dark-4);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 1rem;
}

.mini-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  animation: barGrow 1.5s ease 0.8s both;
}

@keyframes barGrow {
  from { width: 0; }
  to { width: var(--w); }
}

.offer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.offer-row:last-child { border-bottom: none; }

.offer-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: 10px;
}

.offer-name { font-size: 0.85rem; color: var(--text-light); }
.offer-payout { font-size: 0.85rem; font-weight: 600; color: var(--gold); }

.floating-tag {
  position: absolute;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  color: var(--text-light);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  white-space: nowrap;
}

.tag-top { top: -20px; right: -30px; }
.tag-bottom { bottom: -20px; left: -40px; }

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

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== HOW IT WORKS ===== */
.section { padding: 5rem 0; }

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.7;
  margin-top: 0.75rem;
}

.step-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(201,168,76,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover::before { opacity: 1; }
.step-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.step-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ===== BENEFITS ===== */
.benefits-section { background: linear-gradient(2deg, #111520, #0a0b10); }

.benefit-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s ease;
  height: 100%;
}

.benefit-item:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.benefit-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
}

.benefit-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.benefit-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ===== WHY US ===== */
.why-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  top: -60px; right: -60px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.check-item:last-child { border-bottom: none; }

.check-icon {
  width: 22px; height: 22px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* ===== CTA ===== */
.cta-section {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1.1;
}

.cta-title span { color: var(--gold); }

/* ===== FOOTER ===== */
footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}

.footer-brand span { color: var(--gold); }

.footer-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; max-width: 260px; margin-top: 0.75rem; }

.footer-heading {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

.footer-link {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.2s ease;
}
.bulate_point_area {
        margin-top: 1rem;
    text-align: center;
}
.footer-link:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

.social-btn {
  width: 36px; height: 36px;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-left: 0.5rem;
}

.social-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* Address block */
.address-block {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.address-block strong { color: var(--text-light); display: block; margin-bottom: 0.3rem; font-family: 'Syne', sans-serif; font-size: 0.85rem; }
.counter_bottom {
    margin-top: 50px;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;    
}
.counter_bottom .stat-item {
        padding: 1.5rem;
    background: #121520;
    border: 1px solid rgb(201 168 76 / 25%);
    border-radius: 14px;
    transition: all 0.3s ease;
}
/* ===== LOGO SLIDER ===== */
    .logo-slider-section {
      
      overflow: hidden;
    }
 
 
    .slider-track-wrapper {
      overflow: hidden;
      position: relative;
      mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    }
 
    .slider-track {
      display: flex;
      gap: 2.5rem;
      width: max-content;
      animation: infiniteSlide 28s linear infinite;
    }
 
    .slider-track:hover { animation-play-state: paused; }
 
    @keyframes infiniteSlide {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
 
    .logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--dark-3);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 0.9rem 2rem;
      min-width: 150px;
      transition: all 0.3s ease;
      flex-shrink: 0;
    }
 
    .logo-item:hover {
      border-color: rgba(201,168,76,0.35);
      background: var(--dark-4);
    }
 
    .logo-text {
          white-space: nowrap;
        height: 70px;
    }
    .logo-text img {
        height: 100%;
        object-fit: scale-down;
    }
    /* ===== ABOUT US ===== */
    .about-section { background: linear-gradient(178deg, #111520, #0a0b10); }
 
    .about-img-wrap {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
    }
 
 
    .about-content { padding-left: 1rem; }
 
    .about-feature {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }
 
    .about-feature:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
 
    .about-feat-icon {
      width: 40px; height: 40px;
      min-width: 40px;
      border-radius: 10px;
      background: rgba(201,168,76,0.08);
      border: 1px solid rgba(201,168,76,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: var(--gold);
    }
 
    .about-feat-title {
      font-family: 'Syne', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.25rem;
    }
 
    .about-feat-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }
 
/* ===== FULL PAGE LAYOUT ===== */
  .login-page-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }

  .login-page-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
      radial-gradient(ellipse 55% 55% at 15% 20%, rgba(201,168,76,0.06) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 85% 80%, rgba(96,165,250,0.04) 0%, transparent 60%);
  }

  .login-grid-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
      linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
  }

  /* ===== OUTER CARD ===== */
  .login-outer {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    animation: loginFadeUp 0.6s ease both;
  }

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

  /* ===== BRAND HEADER ===== */
  .login-brand {
    text-align: center;
    margin-bottom: 2rem;
  }

  .login-brand-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: -0.5px;
    text-decoration: none;
  }

  .login-brand-logo span { color: var(--gold); }

  .login-brand-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
  }

  /* ===== CARD ===== */
  .login-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.02);
    position: relative;
    overflow: hidden;
  }

  .login-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  /* ===== TITLE ===== */
  .login-title-wrap {
    margin-bottom: 2rem;
  }

  .login-title-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
  }

  .login-title-dot {
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
    animation: dotPulse 2s ease infinite;
  }

  @keyframes dotPulse {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:0.4; transform:scale(1.5); }
  }

  .login-card h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    margin: 0;
  }

  .login-card-sub {
    font-size: 0.83rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
  }

  /* ===== ALERTS ===== */
  .alert-custom {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.83rem;
    margin-bottom: 1.2rem;
  }

  .alert-custom.error {
    background: rgba(248,113,113,0.1);
    border: 1px solid rgba(248,113,113,0.25);
    color: var(--red);
  }

  .alert-custom.success {
    background: rgba(74,222,128,0.08);
    border: 1px solid rgba(74,222,128,0.2);
    color: var(--green);
  }

  .alert-icon { font-size: 1rem; flex-shrink: 0; }

  /* ===== FORM FIELDS ===== */
  .field-group {
    margin-bottom: 1.2rem;
  }

  .field-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.5rem;
    display: block;
  }

  .field-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }

  .field-icon {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: color 0.2s ease;
    z-index: 2;
  }

  .field-input {
    width: 100%;
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 0.8rem 1rem 0.8rem 2.8rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--white);
    outline: none;
    transition: all 0.2s ease;
    -webkit-appearance: none;
  }

  .field-input::placeholder { color: rgba(136,146,164,0.6); }

  .field-input:focus {
    border-color: rgba(201,168,76,0.4);
    background: var(--dark-4);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.07);
  }

  .field-wrap:focus-within .field-icon { color: var(--gold); }

  /* Password toggle */
  .field-toggle {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.95rem;
    padding: 0;
    transition: color 0.2s ease;
    z-index: 2;
  }

  .field-toggle:hover { color: var(--gold); }

  /* ===== DIVIDER ===== */
  .form-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 1.5rem 0;
  }

  /* ===== FOOTER ROW ===== */
  .form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .form-footer-link {
    font-size: 0.83rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .form-footer-link a, .form-footer-link span a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
  }

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

  /* ===== BUTTONS ===== */
  .btn-gold {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 0.8rem 1.8rem;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    text-decoration: none;
  }

  .btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.3);
  }

  .btn-ghost-sm {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 0.8rem 1.2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }

  .btn-ghost-sm:hover {
    border-color: var(--border);
    color: var(--text-light);
  }

  .btn-row {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
  }

  /* ===== SLIDE ANIMATIONS ===== */
  #loginForm, #forgotForm {
    transition: all 0.35s ease;
  }

  /* ===== BOTTOM NOTE ===== */
  .login-bottom-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.78rem;
    color: var(--text-muted);
  }

  .login-bottom-note a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
  }

  /* ===== SECURITY BADGE ===== */
  .security-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.8rem;
    font-size: 0.73rem;
    color: rgb(136 146 164);
  }

  .security-strip i { color: rgb(74 222 128 / 83%); }    
    
/* ===== PAGE WRAP ===== */
  .reg-page-wrap {
    min-height: 100vh;
    padding: 3rem 1rem 4rem;
    position: relative;
    overflow-x: hidden;
        background: var(--dark);
  }

  .reg-page-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
      radial-gradient(ellipse 50% 40% at 10% 10%, rgba(201,168,76,0.06) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 90% 90%, rgba(96,165,250,0.03) 0%, transparent 60%);
  }

  .reg-grid-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
      linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 100%);
  }

  .reg-inner {
    position: relative;
    z-index: 1;
    max-width: 1060px;
    margin: 0 auto;
    animation: regFadeUp 0.6s ease both;
  }

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

  /* ===== BRAND HEADER ===== */
  .reg-brand {
    text-align: center;
    margin-bottom: 2rem;
  }

  .reg-brand-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.7rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
  }

  .reg-brand-logo span { color: var(--gold); }
  .reg-brand-sub { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.25rem; }

  /* ===== PAGE TITLE ===== */
  .reg-page-title {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .reg-page-title h3 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    margin: 0;
  }

  .reg-page-title h3 small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    display: block;
    margin-top: 0.3rem;
    letter-spacing: 0;
  }

  .reg-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 0.72rem;
    color: var(--gold-light);
    letter-spacing: 0.5px;
    margin-bottom: 0.9rem;
  }

  .reg-badge-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
    animation: dotPulse 2s ease infinite;
  }

  @keyframes dotPulse {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:0.4; transform:scale(1.5); }
  }

  /* ===== ALERT ===== */
  .alert-custom {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.85rem 1.1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    background: rgba(248,113,113,0.1);
    border: 1px solid rgba(248,113,113,0.25);
    color: var(--red);
  }

  .alert-custom i { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

  /* ===== GRID ===== */
  .reg-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 1.5rem;
    align-items: start;
  }

  @media (max-width: 900px) {
    .reg-grid { grid-template-columns: 1fr; }
  }

  /* ===== PANEL CARD ===== */
  .reg-panel {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
  }

  .reg-panel::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
    pointer-events: none;
  }

  .reg-panel-head {
    padding: 1.2rem 1.8rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .reg-panel-head-icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.95rem;
    flex-shrink: 0;
  }

  .reg-panel-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
  }

  .reg-panel-body {
    padding: 1.8rem;
  }

  /* ===== SECTION DIVIDER INSIDE PANEL ===== */
  .panel-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 1.5rem 0;
  }

  .panel-section-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .panel-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
  }

  /* ===== FORM FIELDS ===== */
  .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  @media (max-width: 600px) {
    .field-row { grid-template-columns: 1fr; }
  }

  .field-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }

  @media (max-width: 700px) {
    .field-row-3 { grid-template-columns: 1fr 1fr; }
  }

  .field-group { margin-bottom: 0; }

  .field-label {
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.45rem;
    display: block;
    transition: color 0.2s ease;
  }

  .field-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }

  .field-icon {
    position: absolute;
    left: 13px;
    color: var(--text-muted);
    font-size: 0.95rem;
    pointer-events: none;
    transition: color 0.2s ease;
    z-index: 2;
  }

  .field-input,
  .field-select,
  .field-textarea {
    width: 100%;
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 0.72rem 0.9rem 0.72rem 2.6rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    color: var(--white);
    outline: none;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
  }

  .field-textarea {
    padding: 0.75rem 0.9rem 0.75rem 2.6rem;
    resize: none;
    height: 90px;
    line-height: 1.6;
  }

  .field-no-icon {
    padding-left: 0.9rem !important;
  }

  .field-input::placeholder,
  .field-textarea::placeholder { color: rgba(136,146,164,0.5); }

  .field-input:focus,
  .field-select:focus,
  .field-textarea:focus {
    border-color: rgba(201,168,76,0.4);
    background: var(--dark-4);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.07);
  }

  .field-wrap:focus-within .field-icon { color: var(--gold); }
  .field-wrap:focus-within + .field-label,
  .field-group:focus-within .field-label { color: var(--gold); }

  /* Select arrow */
  .field-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238892A4' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 2rem;
  }

  .field-select option { background: var(--dark-3); color: var(--white); }

  /* Password toggle */
  .field-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
    transition: color 0.2s ease;
    z-index: 2;
  }

  .field-toggle:hover { color: var(--gold); }

  /* ===== HELPER TEXT ===== */
  .field-hint {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
    line-height: 1.5;
    padding-left: 2px;
  }

  /* ===== CAPTCHA ROW ===== */
  .captcha-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .captcha-img {
    border-radius: 8px;
    border: 1px solid var(--border);
    height: 44px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .captcha-img img { height: 100%; display: block; }

  /* ===== AGREE ROW ===== */
  .agree-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.9rem 1.1rem;
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 10px;
  }

  .agree-row input[type="checkbox"] {
    width: 16px; height: 16px;
    accent-color: var(--gold);
    cursor: pointer;
    flex-shrink: 0;
  }

  .agree-row a { color: var(--gold); text-decoration: none; font-weight: 500; }
  .agree-row a:hover { color: var(--gold-light); }

  /* ===== SUBMIT AREA ===== */
  .submit-area {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
  }

  .submit-login-link {
    font-size: 0.83rem;
    color: var(--text-muted);
  }

  .submit-login-link a { color: var(--gold); text-decoration: none; font-weight: 500; }
  .submit-login-link a:hover { color: var(--gold-light); }

  
  

  /* ===== SIDE TRUST CARD ===== */
  .trust-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.3rem;
    margin-top: 1.2rem;
  }

  .trust-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.03);
  }

  .trust-item:last-child { border-bottom: none; }
  .trust-item i { color: var(--green); font-size: 0.8rem; flex-shrink: 0; }    
    
    


  /* ===== PAGE WRAP ===== */
  .contact-page-wrap {
    min-height: 100vh;
    background: var(--dark);
    padding: 3rem 1rem 5rem;
    position: relative;
    overflow-x: hidden;
  }

  .contact-bg {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 0;
    background:
      radial-gradient(ellipse 50% 50% at 15% 20%, rgba(201,168,76,0.06) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 85% 75%, rgba(96,165,250,0.04) 0%, transparent 60%);
  }

  .contact-grid-bg {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 0;
    background-image:
      linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 100%);
  }

  .contact-inner {
    position: relative; z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    animation: contactFadeUp 0.6s ease both;
  }

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

  /* ===== BRAND ===== */
  .contact-brand {
    text-align: center;
    margin-bottom: 2rem;
  }

  .contact-brand-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.7rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
  }

  .contact-brand-logo span { color: var(--gold); }
  .contact-brand-sub { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.25rem; }

  /* ===== PAGE TITLE ===== */
  .contact-page-title {
    text-align: center;
    margin-bottom: 3rem;
  }

  .contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 0.72rem;
    color: var(--gold-light);
    letter-spacing: 0.5px;
    margin-bottom: 0.9rem;
  }

  .contact-badge-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
    animation: dotPulse 2s ease infinite;
  }

  @keyframes dotPulse {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:0.4; transform:scale(1.5); }
  }

  .contact-page-title h3 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    margin: 0;
  }

  .contact-page-title p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-top: 0.6rem;
    line-height: 1.7;
  }

  /* ===== MAIN GRID ===== */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1.5rem;
    align-items: start;
  }

  @media (max-width: 860px) {
    .contact-grid { grid-template-columns: 1fr; }
  }

  /* ===== FORM CARD ===== */
  .contact-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
  }

  .contact-card::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
    pointer-events: none;
  }

  .contact-card-head {
    padding: 1.3rem 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .contact-card-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
  }

  .contact-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
  }

  .contact-card-body { padding: 2rem; }

  /* ===== ALERT ===== */
  .alert-custom {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.85rem 1.1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    background: rgba(248,113,113,0.1);
    border: 1px solid rgba(248,113,113,0.25);
    color: var(--red);
  }

  .alert-custom i { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

  /* ===== FIELDS ===== */
  .field-group { margin-bottom: 1.2rem; }

  .field-label {
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.45rem;
    display: block;
    transition: color 0.2s ease;
  }

  .field-group:focus-within .field-label { color: var(--gold); }

  .field-wrap { position: relative; display: flex; align-items: center; }

  .field-icon {
    position: absolute;
    left: 13px;
    color: var(--text-muted);
    font-size: 0.95rem;
    pointer-events: none;
    transition: color 0.2s ease;
    z-index: 2;
  }

  .field-wrap:focus-within .field-icon { color: var(--gold); }

  .field-input,
  .field-textarea {
    width: 100%;
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 0.75rem 1rem 0.75rem 2.6rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    color: var(--white);
    outline: none;
    transition: all 0.2s ease;
    -webkit-appearance: none;
  }

  .field-textarea {
    padding: 0.75rem 1rem 0.75rem 2.6rem;
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
  }

  .field-input::placeholder,
  .field-textarea::placeholder { color: rgba(136,146,164,0.5); }

  .field-input:focus,
  .field-textarea:focus {
    border-color: rgba(201,168,76,0.4);
    background: var(--dark-4);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.07);
  }

  /* ===== TWO-COL ROW ===== */
  .field-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  @media (max-width: 580px) {
    .field-row-2 { grid-template-columns: 1fr; }
  }

  /* ===== CAPTCHA ===== */
  .panel-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 1.5rem 0;
  }

  .captcha-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .captcha-img {
    border-radius: 8px;
    border: 1px solid var(--border);
    height: 44px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--dark-3);
  }

  .captcha-img img { height: 100%; display: block; }

 

  /* ===== RIGHT SIDEBAR ===== */
  .info-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 1.2rem;
    position: relative;
  }

  .info-card::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .info-card-head {
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }

  .info-card-head-icon {
    width: 32px; height: 32px;
    border-radius: 7px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  .info-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
  }

  .info-card-body { padding: 1.4rem 1.5rem; }

  /* Contact Info Items */
  .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.2s ease;
  }

  .contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }
  .contact-info-item:first-child { padding-top: 0; }

  .ci-icon {
    width: 36px; height: 36px;
    min-width: 36px;
    border-radius: 9px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--gold);
    margin-top: 1px;
  }

  .ci-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
  }

  .ci-value {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.5;
  }

  .ci-value a { color: var(--gold); text-decoration: none; }
  .ci-value a:hover { color: var(--gold-light); }

  /* Response time card */
  .response-card {
    background: rgba(201,168,76,0.05);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .response-card-icon {
    width: 38px; height: 38px;
    min-width: 38px;
    border-radius: 9px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gold);
  }

  .response-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
  }

  .response-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

  /* Support hours */
  .hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 0;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }

  .hours-row:last-child { border-bottom: none; }
  .hours-day { color: var(--text-muted); }

  .hours-time {
    color: var(--text-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .hours-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
  }

 
  
/* ===== HERO public ===== */
  .pub-hero {
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: var(--dark);
  }
  
  .pub-hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 60% at 60% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 5% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
    pointer-events: none;
  }

  .pub-hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    pointer-events: none;
  }

  .pub-hero-inner {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  @media (max-width: 768px) { .pub-hero-inner { grid-template-columns: 1fr; } }

  .pub-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.22);
    border-radius: 100px;
    padding: 5px 15px;
    font-size: 0.73rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 0.5px;
    margin-bottom: 1.3rem;
  }

  .badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: bdot 2s ease infinite;
  }

  @keyframes bdot {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:0.4; transform:scale(1.5); }
  }

  .pub-hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1.08;
    margin-bottom: 1.2rem;
  }

  .pub-hero h1 span { color: var(--gold); }

  .pub-hero-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 480px;
  }

  .pub-bullet-list {
    list-style: none;
    padding: 0; margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .pub-bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  .pub-bullet-list li i {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* Hero visual — stats grid */
  .hero-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .hero-stat-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.3rem 1.4rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .hero-stat-card::before {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  }

  .hero-stat-card:hover {
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  }

  .hsc-icon {
    width: 38px; height: 38px;
    border-radius: 9px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .hsc-val {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
  }

  .hsc-val span { color: var(--gold); }
  .hsc-lbl { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

  /* ===== BENEFITS SECTION ===== */
  .benefits-section_public { background: var(--dark-2); }

  .section-title-center {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.1;
  }

  /* Feature rows */
  .feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
    align-items: center;
    margin-bottom: 4rem;
  }

  .feature-row:last-child { margin-bottom: 0; }

  @media (max-width: 768px) {
    .feature-row { grid-template-columns: 1fr; gap: 2rem; }
    .feature-row.reverse .feature-text { order: -1; }
  }

  .feature-row.reverse .feature-visual { order: 2; }
  .feature-row.reverse .feature-text  { order: 1; }

  @media (max-width: 768px) {
    .feature-row.reverse .feature-visual { order: 1; }
    .feature-row.reverse .feature-text  { order: 0; }
  }

  .feature-visual {
    border: 1px solid var(--border);
    border-radius: 18px;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--dark-3);
  }

  .feature-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 17px;
    transition: transform 0.4s ease;
  }

  .feature-row:hover .feature-visual img { transform: scale(1.03); }

  .feature-visual::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,12,16,0.35) 0%, transparent 60%);
    border-radius: 17px;
    pointer-events: none;
  }

  .feat-num {
    position: absolute;
    bottom: 1rem; right: 1.3rem;
    font-family: 'Syne', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.08);
    line-height: 1;
    user-select: none;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  }

  .feat-tag {
    position: absolute;
    top: 1rem; left: 1rem;
    background: rgba(10,12,16,0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
  }

  .feature-text {}

  .feat-icon-wrap {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }

  .feat-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    margin-bottom: 0.6rem;
  }

  .feat-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
  }

  .feat-list {
    list-style: none;
    padding: 0; margin: 0.8rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  .feat-list li i { color: var(--gold); font-size: 0.95rem; flex-shrink:0; margin-top:2px; }

  /* ===== TOOLS SECTION ===== */
  .tools-section { background: var(--dark); }

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

  @media (max-width: 900px) { .tools-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .tools-grid { grid-template-columns: 1fr; } }

  .tool-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
  }

  .tool-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    background: var(--dark-3);
  }

  .tool-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .tool-card-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(10,12,16,0.85) 100%);
    pointer-events: none;
  }

  .tool-card:hover .tool-card-img img { transform: scale(1.05); }

  .tool-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at top left, rgba(201,168,76,0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
  }

  .tool-card:hover::before { opacity: 1; }
  .tool-card:hover {
    border-color: rgba(201,168,76,0.28);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  }

  .tool-card-body {
    padding: 1.5rem 1.8rem 1.8rem;
    position: relative;
    z-index: 2;
  }

  .tool-card-icon {
    width: 44px; height: 44px;
    border-radius: 11px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .tool-num {
    position: absolute;
    top: 1rem; right: 1.4rem;
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(201,168,76,0.06);
    line-height: 1;
    user-select: none;
  }

  .tool-title {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
  }

  .tool-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.65;
  }

  .tool-list {
    list-style: none;
    padding: 0; margin: 0.75rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }

  .tool-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
  }

  .tool-list li i { color: var(--gold); font-size: 0.85rem; flex-shrink:0; margin-top:2px; }

  /* ===== CTA BOTTOM ===== */
  .cta-bottom {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
  }

  .cta-bottom-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1.5px;
    line-height: 1.1;
  }

  .cta-title span { color: var(--gold); }
.privacy-section,  
.terms-section {
    background: var(--dark);
}
/* ===== HERO ===== */
  .about-hero {
    padding: 5rem 0 4.5rem;
    position: relative;
    overflow: hidden;
    background: var(--dark-2);
  }

  .about-hero-bg {
    position: absolute; inset: 0;
    pointer-events: none;
    background:
      radial-gradient(ellipse 55% 55% at 65% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
      radial-gradient(ellipse 35% 40% at 5% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
  }

  .about-hero-grid {
    position: absolute; inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(201,168,76,0.028) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.028) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  }

  .about-hero-inner {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
  }

  @media (max-width: 768px) {
    .about-hero-inner { grid-template-columns: 1fr; }
  }

  /* LEFT TEXT */
  .about-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.22);
    border-radius: 100px;
    padding: 5px 15px;
    font-size: 0.73rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 0.5px;
    margin-bottom: 1.3rem;
  }

  .badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: bdot 2s ease infinite;
  }

  @keyframes bdot {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:0.4; transform:scale(1.5); }
  }

  .about-hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1.08;
    margin-bottom: 1.3rem;
  }

  .about-hero h1 span { color: var(--gold); }

  .about-hero-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.8rem;
    max-width: 500px;
  }

  .about-hero-desc strong { color: var(--text-light); }

  .about-bullet-list {
    list-style: none;
    padding: 0; margin: 0 0 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .about-bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    padding: 0.7rem 1rem;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color 0.25s ease;
  }

  .about-bullet-list li:hover { border-color: rgba(201,168,76,0.3); }

  .about-bullet-list li i {
    color: var(--gold);
    font-size: 1.05rem;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .about-bullet-list li strong { color: var(--text-light); }

  /* RIGHT VISUAL */
  .about-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .av-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.4rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .av-card::before {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  }

  .av-card:hover {
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  }

  .av-card-wide {
    grid-column: span 2;
  }

  .av-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
  }

  .av-val {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1;
  }

  .av-val span { color: var(--gold); }

  .av-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
    line-height: 1.4;
  }

  .av-card-wide .av-val { font-size: 1.3rem; }

  .av-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(74,222,128,0.1);
    border: 1px solid rgba(74,222,128,0.2);
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 0.7rem;
    color: #4ADE80;
    font-weight: 600;
    margin-top: 6px;
  }

  .av-tag-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #4ADE80;
    animation: bdot 2s ease infinite;
  }

  /* ===== BENEFITS SECTION ===== */
  .benefits-section_about {
    padding: 5rem 0;
    background: var(--dark-2);
  }

  .section-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-weight: 500;
  }

  .section-title-center {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1.2px;
    line-height: 1.1;
  }

  /* Benefits grid */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 3rem;
  }

  @media (max-width: 860px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 540px) { .benefits-grid { grid-template-columns: 1fr; } }

  .benefit-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.8rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .benefit-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at top left, rgba(201,168,76,0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .benefit-card:hover::before { opacity: 1; }

  .benefit-card:hover {
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  }

  .benefit-card-num {
    position: absolute;
    top: 1rem; right: 1.3rem;
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(201,168,76,0.05);
    line-height: 1;
    user-select: none;
  }

  .benefit-img-wrap {
    width: 52px; height: 52px;
    border-radius: 13px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background 0.3s ease;
    flex-shrink: 0;
        font-size: 24px;
    color: #c9a74c;
  }

  .benefit-card:hover .benefit-img-wrap {
    background: rgba(201,168,76,0.14);
    border-color: rgba(201,168,76,0.3);
  }

  .benefit-img-wrap img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
  }

  .benefit-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-top: 0.2rem;
  }

  .benefit-desc {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.65;
  }

  .benefit-arrow {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: auto;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s ease;
    text-decoration: none;
  }

  .benefit-card:hover .benefit-arrow {
    opacity: 1;
    transform: translateX(0);
  }

  /* ===== MISSION SECTION ===== */
  .mission-section {
    padding: 5rem 0;
    background: var(--dark);
  }

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

  @media (max-width: 768px) { .mission-grid { grid-template-columns: 1fr; } }

  .mission-visual {
    margin-top:40px;
  }

  .mission-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .mission-stat {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
  }

  .mission-stat:hover {
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-2px);
  }

  .ms-val {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
  }

  .ms-val span { color: var(--gold); }
  .ms-lbl { font-size: 0.7rem; color: var(--text-muted); margin-top: 3px; }

  .mission-tools {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.2rem;
    margin-top:20px;
  }

  .mission-tools-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
  }

  .tool-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .tool-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: 8px;
    padding: 5px 11px;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--gold-light);
    white-space: nowrap;
    transition: all 0.2s ease;
  }

  .tool-pill:hover {
    background: rgba(201,168,76,0.14);
    border-color: rgba(201,168,76,0.35);
  }

  /* Mission Text */
  .mission-text {}

  .m-section-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-weight: 500;
  }

  .mission-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1.2px;
    line-height: 1.1;
    margin-bottom: 1.2rem;
  }

  .mission-title span { color: var(--gold); }

  .mission-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .mission-desc strong { color: var(--text-light); }

  .check-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .check-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.87rem;
    color: var(--text-muted);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }

  .check-list li:last-child { border-bottom: none; }

  .check-icon {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(74,222,128,0.1);
    border: 1px solid rgba(74,222,128,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ADE80;
    font-size: 0.7rem;
    flex-shrink: 0;
  }
/* ===== HERO ===== */
  .adv-hero {
    padding: 5rem 0 4.5rem;
    position: relative;
    overflow: hidden;
    background: var(--dark);
  }

  .adv-hero-bg {
    position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(ellipse 55% 55% at 70% 45%, rgba(201,168,76,0.07) 0%, transparent 70%),
      radial-gradient(ellipse 35% 40% at 5% 80%, rgba(96,165,250,0.04) 0%, transparent 60%);
  }

  .adv-hero-grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
      linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  }

  .adv-hero-inner {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
  }

  @media (max-width: 768px) {
    .adv-hero-inner { grid-template-columns: 1fr; }
  }

  /* badge */
  .adv-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.22);
    border-radius: 100px;
    padding: 5px 15px;
    font-size: 0.73rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 0.5px;
    margin-bottom: 1.3rem;
  }

  .badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: bdot 2s ease infinite;
  }

  @keyframes bdot {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:0.4; transform:scale(1.5); }
  }

  .adv-hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1.08;
    margin-bottom: 1.3rem;
  }

  .adv-hero h1 span { color: var(--gold); }

  .adv-hero-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.8rem;
    max-width: 500px;
  }

  .adv-hero-desc strong { color: var(--text-light); }

  /* bullet cards */
  .adv-bullet-list {
    list-style: none; padding: 0; margin: 0 0 2.2rem;
    display: flex; flex-direction: column; gap: 0.75rem;
  }

  .adv-bullet-list li {
    display: flex; align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.875rem; color: var(--text-muted); line-height: 1.65;
    padding: 0.75rem 1rem;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color 0.25s ease;
  }

  .adv-bullet-list li:hover { border-color: rgba(201,168,76,0.3); }
  .adv-bullet-list li i { color: var(--gold); font-size: 1.05rem; flex-shrink:0; margin-top:2px; }
  .adv-bullet-list li strong { color: var(--text-light); }

  /* right visual */
  .adv-visual {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    position: relative; overflow: hidden;
  }

  .adv-visual::before {
    content: '';
    position: absolute; top: -50px; right: -50px;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .adv-visual-label {
    font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 1.2rem;
  }

  /* flow steps */
  .flow-step {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    position: relative;
  }

  .flow-step:last-child { border-bottom: none; }

  .flow-num {
    width: 34px; height: 34px; min-width: 34px;
    border-radius: 50%;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.25);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.85rem;
    color: var(--gold);
  }

  .flow-title {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.9rem; color: var(--white); margin-bottom: 0.2rem;
  }

  .flow-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }

  .flow-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.2);
    border-radius: 100px; padding: 2px 9px;
    font-size: 0.68rem; color: #4ADE80; font-weight: 600;
    margin-left: auto; white-space: nowrap; flex-shrink: 0;
  }

  /* ===== ADV CARDS (3 main) ===== */
  .adv-cards-section {
    padding: 5rem 0;
    background: var(--dark-2);
  }

  .section-label {
    font-size: 0.72rem; text-transform: uppercase;
    letter-spacing: 3px; color: var(--gold);
    margin-bottom: 0.75rem; font-weight: 500;
  }

  .section-title-center {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800; color: var(--white);
    letter-spacing: -1.2px; line-height: 1.1;
  }

  .adv-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  @media (max-width: 860px) { .adv-cards-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 540px) { .adv-cards-grid { grid-template-columns: 1fr; } }

  .adv-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    display: flex; flex-direction: column;
  }

  .adv-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at top center, rgba(201,168,76,0.06) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
  }

  .adv-card:hover::before { opacity: 1; }
  .adv-card:hover {
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(0,0,0,0.5);
  }

  /* image area */
  .adv-card-img {
    padding: 20px;
    overflow: hidden; 
    position: relative;
  }

  .adv-card-img img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 4px 20px rgba(201,168,76,0.15));
  }

  .adv-card:hover .adv-card-img img { transform: scale(1.06); }

  .adv-card-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(24,29,42,0.9) 100%);
    pointer-events: none;
  }

  .adv-card-img-glow {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(circle at 50% 60%, rgba(201,168,76,0.08) 0%, transparent 65%);
  }

  /* card body */
  .adv-card-body {
    padding: 1.6rem 1.8rem 1.8rem;
    flex: 1; display: flex; flex-direction: column;
    position: relative; z-index: 1;
  }

  .adv-card-num {
    position: absolute; top: 1rem; right: 1.4rem;
    font-family: 'Syne', sans-serif; font-size: 3rem;
    font-weight: 800; color: rgba(201,168,76,0.06);
    line-height: 1; user-select: none;
  }

  .adv-card-hr {
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border: none; margin-bottom: 1.2rem;
    border-radius: 2px;
    width: 40px;
    transition: width 0.3s ease;
  }

  .adv-card:hover .adv-card-hr { width: 80px; }

  .adv-card-title {
    font-family: 'Syne', sans-serif; font-size: 1rem;
    font-weight: 800; color: var(--white);
    letter-spacing: 0.3px; margin-bottom: 0.6rem;
    text-transform: uppercase; font-size: 0.9rem;
    letter-spacing: 0.8px;
  }

  .adv-card-desc {
    font-size: 0.86rem; color: var(--text-muted);
    line-height: 1.7; flex: 1;
  }

  .adv-card-tag {
    display: inline-flex; align-items: center; gap: 5px;
    margin-top: 1.2rem;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: 8px; padding: 5px 12px;
    font-size: 0.75rem; font-weight: 600; color: var(--gold-light);
    width: fit-content;
  }

  /* ===== WHY ADVERTISE SECTION ===== */
  .why-section { padding: 5rem 0; background: var(--dark); }

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

  @media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }

  .why-text {}

  .why-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800; color: var(--white);
    letter-spacing: -1.2px; line-height: 1.1; margin-bottom: 1.2rem;
  }

  .why-title span { color: var(--gold); }

  .why-desc {
    font-size: 0.92rem; color: var(--text-muted);
    line-height: 1.8; margin-bottom: 2rem;
  }

  .why-desc strong { color: var(--text-light); }

  .why-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 0;
  }

  .why-list li {
    display: flex; align-items: flex-start; gap: 0.85rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.875rem; color: var(--text-muted);
  }

  .why-list li:last-child { border-bottom: none; }

  .why-list-icon {
    width: 34px; height: 34px; min-width: 34px;
    border-radius: 9px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1rem;
  }

  .why-list-title {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.88rem; color: var(--white); margin-bottom: 0.15rem;
  }

  .why-list-sub { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

  /* right metrics panel */
  .metrics-panel {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem; position: relative; overflow: hidden;
  }

  .metrics-panel::before {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 170px; height: 170px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .metrics-label {
    font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 1.4rem;
    display: flex; align-items: center; gap: 0.5rem;
  }

  .metrics-label::after {
    content: ''; flex: 1; height: 1px;
    background: var(--border);
  }

  .metrics-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    margin-bottom: 1rem;
  }

  .metric-box {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 12px; padding: 1.1rem;
    text-align: center; transition: all 0.3s ease;
  }

  .metric-box:hover {
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-2px);
  }

  .metric-val {
    font-family: 'Syne', sans-serif; font-size: 1.5rem;
    font-weight: 800; color: var(--white); letter-spacing: -0.5px;
  }

  .metric-val span { color: var(--gold); }
  .metric-lbl { font-size: 0.7rem; color: var(--text-muted); margin-top: 3px; }

  .metrics-bar-wrap { margin-top: 1rem; }

  .bar-label {
    display: flex; justify-content: space-between;
    font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.4rem;
  }

  .bar-label span:last-child { color: var(--gold); font-weight: 600; }

  .bar-track {
    height: 6px; background: var(--dark-4);
    border-radius: 6px; overflow: hidden; margin-bottom: 0.75rem;
  }

  .bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 6px;
    animation: barGrow 1.4s ease 0.5s both;
  }

  @keyframes barGrow {
    from { width: 0; }
    to { width: var(--w); }
  }
@media (max-width:767px) {
    .counter_bottom .stat-item {
        margin-bottom:30px;
    }
    .tag-top {
    right: 0;
}
.counter_bottom {
    max-width: 100%;
}
.hero-badge {
        margin-bottom: 1rem;
}
.about-content {
    padding-left: 0;
}
.mb_phone_view {
    margin-bottom:30px;
}
.benefits-section {
    padding-bottom:0;
}
.footer-bottom {
   margin-top:30px; 
}
.tag-bottom {
    left: 0;
}
.mp-tab,
.btn-ghost-sm,
.btn-ghost,
.btn-gold {
        padding: 10px 10px !important;
    font-size: 12px !important;
}
.mp-card-body,
.cc-card-body,
.reg-panel-body,
.login-card,
.contact-card-body {
    padding: 1rem !important;
}
.bulate_point_area {
 display:none;   
}
.topbar-page-title {
 display:none;   
}
.gw-actions {
    margin-top:20px;
}
.mp-card-head {
    display: block !important;
}
.sidebar-logo img,
.footer-brand img,
.navbar-brand img {
    width: 170px;
}

}

