
/* ══════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════ */
#why-choose-us {
  position: relative;
  padding: 110px 0 120px;
  overflow: hidden;
  background: var(--white);
  font-family: var(--font);
}

/* soft dot-grid background */
#why-choose-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(55,47,255,.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

/* blobs */
#why-choose-us .wcu-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
#why-choose-us .wcu-blob-1 {
  width: 480px; height: 480px;
  background: rgba(55,47,255,.07);
  top: -120px; left: -180px;
}
#why-choose-us .wcu-blob-2 {
  width: 360px; height: 360px;
  background: rgba(144,0,255,.06);
  bottom: -100px; right: -100px;
}

.wcu-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Left content ── */

.wcu-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--brand);
  background: rgba(55,47,255,.08);
  border: 1px solid rgba(55,47,255,.2);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.wcu-eyebrow i { font-size: 10px; }

.wcu-watermark {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  background: linear-gradient(to bottom, #9000ff, #ffffff00);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: -10px;
  letter-spacing: -2px; user-select: none;
}

.wcu-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -1px; color: var(--text-dark);
  margin-bottom: 18px;
}
.wcu-title cite {
  font-style: normal;
  background: var(--grad-h);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wcu-desc {
  font-size: 14.5px; line-height: 1.85;
  color: var(--text-muted); margin-bottom: 36px;
  max-width: 480px;
}

/* numbered list */
.wcu-list {
  display: flex; flex-direction: column; gap: 18px;
}

.wcu-item {
  display: flex; align-items: flex-start; gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: var(--shadow-card);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.wcu-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(55,47,255,.25);
}

.wcu-num {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: #fff;
  box-shadow: 0 10px 20px rgba(36,57,255,.22);
}
.wcu-num.a { background: linear-gradient(to right, #9000ff, #2439ff); }
.wcu-num.b { background: linear-gradient(to right, #00b3f5, #4938f1); }

.wcu-item-text {
  font-size: 13.5px; color: var(--text-mid);
  line-height: 1.75; padding-top: 2px;
}

/* ── Right visual (floating card stack) ── */
.wcu-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 440px;
}

.wcu-card-main {
  width: 100%; max-width: 360px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: var(--shadow-hover);
  position: relative; z-index: 2;
  overflow: hidden;
}
.wcu-card-main::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-h);
}

.wcu-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 28px;
}
.wcu-stat {
  background: rgba(55,47,255,.04);
  border: 1px solid rgba(55,47,255,.1);
  border-radius: 14px; padding: 18px 16px; text-align: center;
  transition: background .25s, transform .25s;
}
.wcu-stat:hover { background: rgba(55,47,255,.08); transform: translateY(-3px); }
.wcu-stat-num {
  font-size: 30px; font-weight: 800;
  background: var(--grad-h);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 4px;
}
.wcu-stat-lbl {
  font-size: 11px; color: var(--text-muted);
  font-weight: 600; letter-spacing: .5px;
}

.wcu-trust {
  display: flex; align-items: center; gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(55,47,255,.08);
}
.wcu-trust-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, #372fff, #7b5fff);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
  box-shadow: 0 8px 20px rgba(55,47,255,.28);
}
.wcu-trust p { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }
.wcu-trust p strong { color: var(--text-dark); font-weight: 700; }

/* floating chips */
.wcu-chip {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 9px 16px;
  font-size: 12px; font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 8px 28px rgba(55,47,255,.12);
  display: flex; align-items: center; gap: 8px;
  animation: floatChip 4s ease-in-out infinite alternate;
  z-index: 3; white-space: nowrap;
}
.wcu-chip .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand); flex-shrink: 0;
}
.wcu-chip.c1 { top: 20px; right: -10px; animation-delay: 0s; }
.wcu-chip.c2 { bottom: 80px; left: -20px; animation-delay: 1.4s; }
.wcu-chip.c3 { bottom: 0px; right: 40px; animation-delay: .7s; }

@keyframes floatChip {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* ══════════════════════════════════════════════
   GET IN TOUCH / FREE SAMPLE
══════════════════════════════════════════════ */
#get-in-touch {
  position: relative;
  padding: 110px 0 120px;
  overflow: hidden;
  background: var(--off-white);
  font-family: var(--font);
}

#get-in-touch::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(55,47,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none; z-index: 0;
}

#get-in-touch .git-blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none; z-index: 0;
}
#get-in-touch .git-blob-1 {
  width: 440px; height: 440px;
  background: rgba(55,47,255,.08);
  bottom: -120px; left: -140px;
}
#get-in-touch .git-blob-2 {
  width: 320px; height: 320px;
  background: rgba(144,0,255,.07);
  top: -80px; right: -100px;
}

.git-container {
  max-width: 1240px;
  margin: 0 auto; padding: 0 32px;
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ── Left illustration column ── */
.git-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

.git-illustration {
  width: 100%; max-width: 380px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px 36px;
  box-shadow: var(--shadow-hover);
  position: relative; z-index: 2; overflow: hidden;
}
.git-illustration::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-h);
}

.git-icon-wrap {
  width: 72px; height: 72px; border-radius: 20px;
  background: var(--grad-h);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin-bottom: 22px;
  box-shadow: 0 12px 32px rgba(55,47,255,.28);
}

.git-illustration h3 {
  font-size: 20px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px;
}
.git-illustration p {
  font-size: 13px; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px;
}

.git-features {
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(55,47,255,.08);
}
.git-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-mid); font-weight: 500;
}
.git-feat-dot {
  width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%;
  background: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.git-feat-dot i { color: #fff; font-size: 9px; }

/* floating badge */
.git-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 9px 16px;
  font-size: 12px; font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 8px 28px rgba(55,47,255,.12);
  display: flex; align-items: center; gap: 8px;
  animation: floatChip 4s ease-in-out infinite alternate;
  z-index: 3;
}
.git-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #00d084; }
.git-badge.b1 { top: 10px; right: -12px; animation-delay: 0s; }
.git-badge.b2 { bottom: 60px; left: -20px; animation-delay: 1.2s; }

/* ── Right form column ── */

.git-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--brand);
  background: rgba(55,47,255,.08);
  border: 1px solid rgba(55,47,255,.2);
  padding: 7px 18px; border-radius: 50px; margin-bottom: 18px;
}
.git-eyebrow i { font-size: 10px; }

.git-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800; line-height: 1.15; letter-spacing: -1px;
  color: var(--text-dark); margin-bottom: 14px;
}
.git-title span {
  background: var(--grad-h);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.git-sub {
  font-size: 14.5px; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 30px;
}

/* iframe wrapper */
.git-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}
.git-form-wrap::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-h); z-index: 1;
}
.git-form-wrap iframe {
  display: block;
  width: 100%; border: none;
  min-height: 540px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .wcu-container, .git-container { gap: 48px; }
}
@media (max-width: 768px) {
  .wcu-container, .git-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .wcu-visual { min-height: auto; }
  .wcu-card-main { max-width: 100%; }
  .wcu-chip.c1, .wcu-chip.c2, .wcu-chip.c3,
  .git-badge.b1, .git-badge.b2 { display: none; }
  .git-illustration { max-width: 100%; }
  #why-choose-us, #get-in-touch { padding: 72px 0; }
  .wcu-container, .git-container { padding: 0 20px; }
}

/* ── Reveal animation (reuse existing .reveal logic) ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }





/* COntact page */
    /* ─── REVEAL ANIMATION ───────────────────────────── */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity .65s ease, transform .65s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }

    /* ─── SHARED UTILITIES ───────────────────────────── */
    .grad-text {
      background: var(--grad-h);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .section-tag {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--brand);
      background: rgba(55,47,255,.08); border: 1px solid rgba(55,47,255,.2);
      padding: 7px 18px; border-radius: 50px; margin-bottom: 20px;
    }
    .section-tag i { font-size: 10px; }
    .container {
      max-width: 1240px; margin: 0 auto; padding: 0 32px;
    }

    /* ════════════════════════════════════════════════════
       PAGE HERO / BANNER
    ════════════════════════════════════════════════════ */
    #contact-hero {
      position: relative;
      padding: 160px 0 90px;
      overflow: hidden;
      background: linear-gradient(180deg, #ffffff 0%, #f4f3ff 100%);
    }
    #contact-hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(55,47,255,.06) 1px, transparent 1px);
      background-size: 30px 30px; pointer-events: none; z-index: 0;
    }
    .hero-blob {
      position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0;
    }
    .hero-blob-1 { width: 500px; height: 500px; background: rgba(55,47,255,.08); top: -150px; left: -150px; }
    .hero-blob-2 { width: 350px; height: 350px; background: rgba(144,0,255,.07); top: -80px; right: -100px; }

    .contact-hero-inner {
      position: relative; z-index: 2; text-align: center; max-width: 700px; margin: 0 auto;
    }
    .contact-hero-inner h1 {
      font-size: clamp(36px, 5vw, 64px); font-weight: 800; line-height: 1.1;
      letter-spacing: -1.5px; color: var(--text-dark); margin-bottom: 20px;
    }
    .contact-hero-inner p {
      font-size: 16px; color: var(--text-muted); line-height: 1.8; max-width: 520px; margin: 0 auto 44px;
    }

    /* breadcrumb */
    .breadcrumb {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 500; color: var(--text-muted);
      background: var(--white); border: 1px solid var(--border);
      padding: 6px 18px; border-radius: 50px; margin-bottom: 28px;
      box-shadow: var(--shadow-card);
    }
    .breadcrumb a { color: var(--brand); text-decoration: none; }
    .breadcrumb i { font-size: 9px; color: var(--text-muted); }

    /* quick-contact chips */
    .hero-chips {
      display: flex; align-items: center; justify-content: center;
      flex-wrap: wrap; gap: 12px; margin-top: 0;
    }
    .hero-chip {
      display: inline-flex; align-items: center; gap: 9px;
      padding: 10px 20px; border-radius: 50px;
      background: var(--white); border: 1px solid var(--border);
      box-shadow: var(--shadow-card); font-size: 13px; font-weight: 600;
      color: var(--text-dark); text-decoration: none;
      transition: transform .25s, box-shadow .25s, border-color .25s;
    }
    .hero-chip i { color: var(--brand); font-size: 12px; }
    .hero-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: rgba(55,47,255,.25); }

    /* ════════════════════════════════════════════════════
       CONTACT INFO CARDS ROW
    ════════════════════════════════════════════════════ */
    #contact-cards {
      padding: 0 0 80px;
      background: var(--light-bg);
      position: relative;
    }
    /* pull cards up to overlap hero */
    .cards-pull {
      transform: translateY(-50px);
    }
    .info-cards-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    }

    .info-card {
      background: var(--white); border: 1px solid var(--border-light);
      border-radius: 20px; padding: 36px 30px; text-align: center;
      box-shadow: var(--shadow-card); position: relative; overflow: hidden;
      transition: transform .3s, box-shadow .3s, border-color .3s;
    }
    .info-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: var(--grad-h); transform: scaleX(0); transform-origin: left;
      transition: transform .4s ease;
    }
    .info-card:hover::before { transform: scaleX(1); }
    .info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(55,47,255,.2); }

    .info-card-icon {
      width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 20px;
      background: rgba(55,47,255,.08); border: 1px solid rgba(55,47,255,.15);
      display: flex; align-items: center; justify-content: center; font-size: 24px;
    }
    .info-card-icon i { color: var(--brand); }
    .info-card h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
    .info-card p, .info-card a {
      font-size: 13.5px; color: var(--text-muted); line-height: 1.7;
      text-decoration: none; transition: color .2s;
    }
    .info-card a:hover { color: var(--brand); }

    /* ════════════════════════════════════════════════════
       MAIN CONTACT SECTION (form + details)
    ════════════════════════════════════════════════════ */
    #contact-main {
      position: relative; padding: 40px 0 100px;
      background: var(--light-bg); overflow: hidden;
    }
    #contact-main::before {
      content: ''; position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(55,47,255,.05) 1px, transparent 1px);
      background-size: 28px 28px; pointer-events: none; z-index: 0;
    }
    .contact-blob {
      position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0;
    }
    .contact-blob-1 { width: 420px; height: 420px; background: rgba(55,47,255,.08); bottom: -100px; left: -120px; }
    .contact-blob-2 { width: 300px; height: 300px; background: rgba(144,0,255,.07); top: -60px; right: -80px; }

    .contact-main-grid {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start;
    }

    /* ── Left: details panel ── */
    .contact-details-panel h2 {
      font-size: clamp(28px, 3vw, 40px); font-weight: 800; line-height: 1.15;
      letter-spacing: -1px; color: var(--text-dark); margin-bottom: 14px;
    }
    .contact-details-panel > p {
      font-size: 14.5px; color: var(--text-muted); line-height: 1.85; margin-bottom: 40px;
    }

    .detail-item {
      display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px;
      padding: 20px 22px; background: var(--white);
      border: 1px solid var(--border-light); border-radius: 16px;
      box-shadow: var(--shadow-card);
      transition: transform .3s, border-color .3s, box-shadow .3s;
    }
    .detail-item:hover { transform: translateX(6px); border-color: rgba(55,47,255,.25); box-shadow: var(--shadow-hover); }
    .detail-icon {
      width: 48px; height: 48px; flex-shrink: 0; border-radius: 13px;
      background: rgba(55,47,255,.09); border: 1px solid rgba(55,47,255,.15);
      display: flex; align-items: center; justify-content: center; font-size: 18px;
    }
    .detail-icon i { color: var(--brand); }
    .detail-text label {
      display: block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px;
    }
    .detail-text a, .detail-text span {
      font-size: 14px; font-weight: 600; color: var(--text-dark);
      text-decoration: none; line-height: 1.5; transition: color .2s;
    }
    .detail-text a:hover { color: var(--brand); }

    /* response-time badge */
    .response-badge {
      display: flex; align-items: center; gap: 12px;
      padding: 16px 20px; border-radius: 14px; margin-top: 28px;
      background: var(--brand); color: #fff; box-shadow: var(--shadow-brand);
    }
    .response-badge i { font-size: 20px; opacity: .85; }
    .response-badge p { font-size: 13px; line-height: 1.5; }
    .response-badge strong { display: block; font-size: 15px; font-weight: 700; }

    /* ── Right: form card ── */
    .contact-form-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-hover);
      position: relative;
    }
    .contact-form-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: var(--grad-h); z-index: 1;
    }
    .form-card-header {
      padding: 32px 36px 24px; border-bottom: 1px solid var(--border-light);
    }
    .form-card-header h3 { font-size: 20px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
    .form-card-header p { font-size: 13px; color: var(--text-muted); }
    .form-card-body { padding: 0; }
    .form-card-body iframe {
      display: block; width: 100%; border: none; min-height: 580px;
    }

    /* ════════════════════════════════════════════════════
       MAP SECTION
    ════════════════════════════════════════════════════ */
    #contact-map {
      position: relative; background: var(--dark-bg); padding: 80px 0;
      overflow: hidden;
    }
    #contact-map::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: var(--grad-h);
    }
    .map-inner {
      position: relative; z-index: 2;
    }
    .map-header {
      text-align: center; margin-bottom: 48px;
    }
    .map-header .section-tag { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.7); }
    .map-header h2 {
      font-size: clamp(28px, 3vw, 40px); font-weight: 800; color: #fff;
      letter-spacing: -1px; margin-bottom: 12px;
    }
    .map-header p { font-size: 14px; color: rgba(255,255,255,.5); }

    .map-wrap {
      border-radius: 24px; overflow: hidden;
      border: 1px solid rgba(255,255,255,.1);
      box-shadow: 0 24px 80px rgba(0,0,0,.3);
    }
    .map-wrap iframe { display: block; width: 100%; height: 400px; border: none; }


    /* Scroll top */
    #scroll-top {
      position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px;
      border-radius: 12px; background: var(--brand); color: #fff; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center; font-size: 14px;
      box-shadow: 0 8px 24px rgba(55,47,255,.3); opacity: 0; pointer-events: none;
      transform: translateY(10px); transition: opacity .3s, transform .3s; z-index: 800;
    }
    #scroll-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
    #scroll-top:hover { background: var(--brand-dark); transform: translateY(-2px); }

    /* ─── Responsive ──────────────────────────── */
    @media (max-width: 1024px) {
      .info-cards-grid { grid-template-columns: 1fr; }
      .contact-main-grid { gap: 40px; }
    }
    @media (max-width: 768px) {
      .contact-main-grid { grid-template-columns: 1fr; }
      .info-cards-grid { grid-template-columns: 1fr; }
      .cards-pull { transform: translateY(-30px); }
      .container { padding: 0 20px; }
      #contact-hero { padding: 140px 0 70px; }
      #contact-main { padding: 20px 0 70px; }
      .form-card-header { padding: 24px 24px 18px; }
    }
    @media (max-width: 600px) {
      .hero-chips { flex-direction: column; align-items: center; }
    }

    /* COntact page */


    /* overview page */
          .section-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--brand);
        background: rgba(55, 47, 255, 0.08);
        border: 1px solid rgba(55, 47, 255, 0.2);
        padding: 7px 18px;
        border-radius: 50px;
        margin-bottom: 20px;
      }
      .section-tag i {
        font-size: 10px;
      }
      .container {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 32px;
      }

    
      /* ════════════════════════
       HERO
    ════════════════════════ */
      #overview-hero {
        position: relative;
        padding: 160px 0 100px;
        background: linear-gradient(180deg, #ffffff 0%, #f4f3ff 100%);
        overflow: hidden;
      }
      #overview-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(
          circle,
          rgba(55, 47, 255, 0.06) 1px,
          transparent 1px
        );
        background-size: 30px 30px;
        pointer-events: none;
        z-index: 0;
      }
      .hero-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(100px);
        pointer-events: none;
        z-index: 0;
      }
      .hero-blob-1 {
        width: 500px;
        height: 500px;
        background: rgba(55, 47, 255, 0.08);
        top: -150px;
        left: -150px;
      }
      .hero-blob-2 {
        width: 350px;
        height: 350px;
        background: rgba(144, 0, 255, 0.07);
        top: -80px;
        right: -100px;
      }

      .hero-inner {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: center;
      }

      .breadcrumb {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        font-weight: 500;
        color: var(--text-muted);
        background: var(--white);
        border: 1px solid var(--border);
        padding: 6px 18px;
        border-radius: 50px;
        margin-bottom: 24px;
        box-shadow: var(--shadow-card);
      }
      .breadcrumb a {
        color: var(--brand);
        text-decoration: none;
      }
      .breadcrumb i {
        font-size: 9px;
      }
      .hero-content h1 {
        font-size: clamp(34px, 4vw, 56px);
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -1.5px;
        color: var(--text-dark);
        margin-bottom: 20px;
      }
      .hero-content p {
        font-size: 15px;
        color: var(--text-muted);
        line-height: 1.85;
        margin-bottom: 36px;
        max-width: 480px;
      }
      .hero-cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 28px;
        border-radius: 12px;
        background: var(--brand);
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: var(--shadow-brand);
        transition:
          background 0.2s,
          transform 0.2s;
      }
      .hero-cta:hover {
        background: var(--brand-dark);
        transform: translateY(-2px);
      }
      .hero-cta i {
        font-size: 12px;
      }

      .hero-visual {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 400px;
      }
      .hero-card {
        width: 100%;
        max-width: 380px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 24px;
        padding: 36px 32px;
        box-shadow: var(--shadow-hover);
        position: relative;
        z-index: 2;
        overflow: hidden;
      }
      .hero-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--grad-h);
      }
      .hero-card-icon {
        width: 64px;
        height: 64px;
        border-radius: 18px;
        background: rgba(55, 47, 255, 0.09);
        border: 1px solid rgba(55, 47, 255, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        margin-bottom: 20px;
      }
      .hero-card-icon i {
        color: var(--brand);
      }
      .hero-card h3 {
        font-size: 18px;
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 10px;
      }
      .hero-card p {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.75;
        margin-bottom: 28px;
      }
      .hero-card-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }
      .hero-tag {
        padding: 5px 12px;
        border-radius: 50px;
        background: rgba(55, 47, 255, 0.08);
        border: 1px solid rgba(55, 47, 255, 0.15);
        font-size: 11px;
        font-weight: 600;
        color: var(--brand);
      }
      .hero-float {
        position: absolute;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 50px;
        padding: 9px 16px;
        font-size: 12px;
        font-weight: 600;
        color: var(--text-dark);
        box-shadow: 0 8px 28px rgba(55, 47, 255, 0.12);
        display: flex;
        align-items: center;
        gap: 8px;
        animation: floatChip 4s ease-in-out infinite alternate;
        z-index: 3;
        white-space: nowrap;
      }
      .hero-float .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--brand);
      }
      .hero-float.f1 {
        top: 20px;
        right: -10px;
        animation-delay: 0s;
      }
      .hero-float.f2 {
        bottom: 80px;
        left: -20px;
        animation-delay: 1.2s;
      }
      @keyframes floatChip {
        0% {
          transform: translateY(0);
        }
        100% {
          transform: translateY(-10px);
        }
      }

      /* ════════════════════════
       INTRO SECTION
    ════════════════════════ */
      #overview-intro {
        padding: 100px 0;
        background: var(--white);
        position: relative;
        overflow: hidden;
      }
      #overview-intro::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(
          circle,
          rgba(55, 47, 255, 0.04) 1px,
          transparent 1px
        );
        background-size: 28px 28px;
        pointer-events: none;
      }
      .intro-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        position: relative;
        z-index: 2;
      }

      .intro-visual {
        position: relative;
      }
      .intro-img-wrap {
        border-radius: 24px;
        overflow: hidden;
        background: linear-gradient(
          135deg,
          rgba(55, 47, 255, 0.08),
          rgba(144, 0, 255, 0.06)
        );
        border: 1px solid var(--border);
        padding: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 380px;
      }
      .intro-placeholder {
        width: 100%;
        text-align: center;
      }
      .intro-placeholder-icon {
        font-size: 80px;
        background: var(--grad-h);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 16px;
        display: block;
      }
      .intro-placeholder p {
        font-size: 13px;
        color: var(--text-muted);
      }

      /* floating stat cards */
      .intro-stat {
        position: absolute;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 14px 20px;
        box-shadow: var(--shadow-hover);
        animation: floatChip 4s ease-in-out infinite alternate;
      }
      .intro-stat.s1 {
        top: -20px;
        right: -20px;
        animation-delay: 0s;
      }
      .intro-stat.s2 {
        bottom: 20px;
        left: -20px;
        animation-delay: 1.5s;
      }
      .intro-stat-num {
        font-size: 24px;
        font-weight: 800;
        background: var(--grad-h);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
      }
      .intro-stat-lbl {
        font-size: 11px;
        color: var(--text-muted);
        font-weight: 600;
        margin-top: 2px;
      }

      .intro-text h2 {
        font-size: clamp(28px, 3vw, 42px);
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -1px;
        color: var(--text-dark);
        margin-bottom: 20px;
      }
      .intro-text p {
        font-size: 14.5px;
        color: var(--text-muted);
        line-height: 1.85;
        margin-bottom: 16px;
      }

      /* ════════════════════════
       STATS COUNTER BAND
    ════════════════════════ */
      #overview-stats {
        padding: 80px 0;
        background: var(--dark-bg);
        position: relative;
        overflow: hidden;
      }
      #overview-stats::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--grad-h);
      }
      #overview-stats .blob-s {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        pointer-events: none;
      }
      #overview-stats .blob-s.b1 {
        width: 400px;
        height: 400px;
        background: rgba(55, 47, 255, 0.09);
        top: -100px;
        left: -100px;
      }
      #overview-stats .blob-s.b2 {
        width: 300px;
        height: 300px;
        background: rgba(144, 0, 255, 0.08);
        bottom: -80px;
        right: -80px;
      }

      .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2px;
        position: relative;
        z-index: 2;
      }
      .stat-item {
        padding: 48px 32px;
        text-align: center;
        position: relative;
        transition: background 0.25s;
      }
      .stat-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: rgba(255, 255, 255, 0.08);
      }
      .stat-item:hover {
        background: rgba(55, 47, 255, 0.08);
      }
      .stat-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: var(--brand-light);
        margin: 0 auto 20px;
      }
      .stat-num {
        font-size: clamp(36px, 4vw, 54px);
        font-weight: 800;
        background: var(--grad-h);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        margin-bottom: 8px;
      }
      .stat-lbl {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.55);
        font-weight: 500;
      }

      /* ════════════════════════
       MISSION / VISION TABS
    ════════════════════════ */
      #overview-mission {
        padding: 100px 0;
        background: var(--light-bg);
        position: relative;
        overflow: hidden;
      }
      #overview-mission::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(
          circle,
          rgba(55, 47, 255, 0.05) 1px,
          transparent 1px
        );
        background-size: 28px 28px;
        pointer-events: none;
      }
      .mission-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(90px);
        pointer-events: none;
      }
      .mission-blob.m1 {
        width: 400px;
        height: 400px;
        background: rgba(55, 47, 255, 0.07);
        top: -100px;
        right: -100px;
      }

      .mission-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: center;
        position: relative;
        z-index: 2;
      }

      /* tabs */

      .tab-nav {
        display: flex;
        gap: 8px;
        margin-bottom: 28px;
      }
      .tab-btn {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 11px 22px;
        border-radius: 12px;
        border: 1.5px solid var(--border);
        background: var(--white);
        font-size: 13px;
        font-weight: 700;
        color: var(--text-muted);
        cursor: pointer;
        transition: all 0.25s;
      }
      .tab-btn i {
        font-size: 13px;
      }
      .tab-btn.active {
        background: var(--brand);
        color: #fff;
        border-color: var(--brand);
        box-shadow: 0 6px 20px rgba(55, 47, 255, 0.28);
      }
      .tab-btn:not(.active):hover {
        border-color: rgba(55, 47, 255, 0.3);
        color: var(--brand);
        background: rgba(55, 47, 255, 0.05);
      }

      .tab-content {
        display: none;
        animation: fadeIn 0.35s ease;
      }
      .tab-content.active {
        display: block;
      }
      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateY(8px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .tab-content-inner {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 36px 32px;
        box-shadow: var(--shadow-card);
        position: relative;
        overflow: hidden;
      }
      .tab-content-inner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--grad-h);
      }
      .tab-content-inner p {
        font-size: 14.5px;
        color: var(--text-mid);
        line-height: 1.85;
      }

      /* mission visual */
      .mission-visual {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }
      .mv-card {
        background: var(--white);
        border: 1px solid var(--border-light);
        border-radius: 18px;
        padding: 28px 24px;
        box-shadow: var(--shadow-card);
        transition:
          transform 0.3s,
          border-color 0.3s,
          box-shadow 0.3s;
      }
      .mv-card:hover {
        transform: translateY(-6px);
        border-color: rgba(55, 47, 255, 0.2);
        box-shadow: var(--shadow-hover);
      }
      .mv-card:first-child {
        grid-column: 1 / -1;
      }
      .mv-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(55, 47, 255, 0.09);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        margin-bottom: 14px;
      }
      .mv-icon i {
        color: var(--brand);
      }
      .mv-card h4 {
        font-size: 14px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 6px;
      }
      .mv-card p {
        font-size: 12.5px;
        color: var(--text-muted);
        line-height: 1.7;
      }

      /* ════════════════════════
       SERVICES OVERVIEW
    ════════════════════════ */
      #overview-services {
        padding: 100px 0;
        background: var(--white);
        position: relative;
        overflow: hidden;
      }
      #overview-services::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(
          circle,
          rgba(55, 47, 255, 0.04) 1px,
          transparent 1px
        );
        background-size: 30px 30px;
        pointer-events: none;
      }

      .services-header {
        text-align: center;
        max-width: 640px;
        margin: 0 auto 64px;
        position: relative;
        z-index: 2;
      }
      .services-header h2 {
        font-size: clamp(28px, 3vw, 42px);
        font-weight: 800;
        letter-spacing: -1px;
        color: var(--text-dark);
        margin-bottom: 14px;
      }
      .services-header p {
        font-size: 14.5px;
        color: var(--text-muted);
        line-height: 1.8;
      }

      .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        position: relative;
        z-index: 2;
      }
      .service-card {
        background: var(--white);
        border: 1px solid var(--border-light);
        border-radius: 20px;
        padding: 32px 28px;
        box-shadow: var(--shadow-card);
        transition:
          transform 0.3s,
          border-color 0.3s,
          box-shadow 0.3s;
        position: relative;
        overflow: hidden;
      }
      .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--grad-h);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
      }
      .service-card:hover::before {
        transform: scaleX(1);
      }
      .service-card:hover {
        transform: translateY(-6px);
        border-color: rgba(55, 47, 255, 0.2);
        box-shadow: var(--shadow-hover);
      }
      .sc-icon {
        width: 54px;
        height: 54px;
        border-radius: 15px;
        background: rgba(55, 47, 255, 0.09);
        border: 1px solid rgba(55, 47, 255, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin-bottom: 20px;
      }
      .sc-icon i {
        color: var(--brand);
      }
      .service-card h4 {
        font-size: 15px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 10px;
      }
      .service-card p {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.75;
      }

      /* ════════════════════════
       CORE VALUES
    ════════════════════════ */
      #overview-values {
        padding: 100px 0;
        background: var(--dark-bg);
        position: relative;
        overflow: hidden;
      }
      #overview-values::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--grad-h);
      }
      .values-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(90px);
        pointer-events: none;
      }
      .values-blob.v1 {
        width: 500px;
        height: 500px;
        background: rgba(55, 47, 255, 0.08);
        top: -150px;
        left: -150px;
      }
      .values-blob.v2 {
        width: 350px;
        height: 350px;
        background: rgba(144, 0, 255, 0.07);
        bottom: -100px;
        right: -100px;
      }

      .values-header {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 64px;
        position: relative;
        z-index: 2;
      }
      .values-header .section-tag {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
        color: rgba(255, 255, 255, 0.7);
      }
      .values-header h2 {
        font-size: clamp(28px, 3vw, 42px);
        font-weight: 800;
        color: #fff;
        letter-spacing: -1px;
        margin-bottom: 12px;
      }
      .values-header p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.5);
      }

      .values-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        position: relative;
        z-index: 2;
      }
      .value-card {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        padding: 32px 28px;
        transition:
          background 0.3s,
          border-color 0.3s,
          transform 0.3s;
      }
      .value-card:hover {
        background: rgba(55, 47, 255, 0.12);
        border-color: rgba(55, 47, 255, 0.3);
        transform: translateY(-6px);
      }
      .vc-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        background: rgba(55, 47, 255, 0.2);
        border: 1px solid rgba(55, 47, 255, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-bottom: 20px;
      }
      .vc-icon i {
        color: var(--brand-light);
      }
      .value-card h4 {
        font-size: 15px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 10px;
      }
      .value-card p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.75;
      }

      /* CTA banner */
      .values-cta {
        margin-top: 64px;
        background: rgba(55, 47, 255, 0.15);
        border: 1px solid rgba(55, 47, 255, 0.25);
        border-radius: 24px;
        padding: 48px 40px;
        text-align: center;
        position: relative;
        z-index: 2;
        overflow: hidden;
      }
      .values-cta::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--grad-h);
      }
      .values-cta h3 {
        font-size: clamp(22px, 2.5vw, 32px);
        font-weight: 800;
        color: #fff;
        margin-bottom: 12px;
      }
      .values-cta p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.55);
        margin-bottom: 28px;
      }
      .values-cta a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 32px;
        border-radius: 12px;
        background: var(--brand);
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: var(--shadow-brand);
        transition:
          background 0.2s,
          transform 0.2s;
      }
      .values-cta a:hover {
        background: var(--brand-dark);
        transform: translateY(-2px);
      }

      /* ── Responsive ── */
      @media (max-width: 1024px) {

        .services-grid {
          grid-template-columns: 1fr 1fr;
        }
        .values-grid {
          grid-template-columns: 1fr 1fr;
        }
        .stats-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (max-width: 768px) {
        .hero-inner,
        .intro-grid,
        .mission-grid {
          grid-template-columns: 1fr;
          gap: 48px;
        }
        .hero-visual {
          display: none;
        }
        .services-grid,
        .values-grid {
          grid-template-columns: 1fr;
        }
        .mission-visual {
          grid-template-columns: 1fr 1fr;
        }
        .container {
          padding: 0 20px;
        }
        #overview-hero {
          padding: 140px 0 72px;
        }
        #overview-intro,
        #overview-mission,
        #overview-services,
        #overview-values {
          padding: 72px 0;
        }
        .stats-grid {
          grid-template-columns: 1fr 1fr;
        }
      }
      @media (max-width: 600px) {

        .stats-grid {
          grid-template-columns: 1fr 1fr;
        }
        .mv-card:first-child {
          grid-column: auto;
        }
      }
    /* overview page */


    /* about page */
        .section-tag {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--brand); background: rgba(55,47,255,.08); border: 1px solid rgba(55,47,255,.2);
      padding: 7px 18px; border-radius: 50px; margin-bottom: 20px;
    }
    .section-tag i { font-size: 10px; }
    .container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

    /* ════════════════════
       HERO — INTRO SECTION
    ════════════════════ */
    #about-hero {
      position: relative; padding: 100px 0 90px;
      background: linear-gradient(180deg, #ffffff 0%, #f4f3ff 100%);
      overflow: hidden;
    }
    #about-hero::before {
      content: ''; position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(55,47,255,.06) 1px, transparent 1px);
      background-size: 30px 30px; pointer-events: none; z-index: 0;
    }
    .hero-blob { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0; }
    .hero-blob-1 { width: 500px; height: 500px; background: rgba(55,47,255,.08); top: -150px; right: -150px; }
    .hero-blob-2 { width: 300px; height: 300px; background: rgba(144,0,255,.07); bottom: -80px; left: -80px; }

    .about-hero-grid {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
    }

    /* left: image column */
    .about-hero-visual { position: relative; display: flex; justify-content: center; }
    .hero-img-card {
      position: relative; width: 100%; max-width: 420px;
      background: var(--white); border: 1px solid var(--border);
      border-radius: 28px; overflow: hidden;
      box-shadow: var(--shadow-hover);
    }
    .hero-img-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: var(--grad-h);
    }
    .hero-img-placeholder {
      background: linear-gradient(135deg, rgba(55,47,255,.07), rgba(144,0,255,.05));
      min-height: 360px; display: flex; flex-direction: column;
      align-items: center; justify-content: center; padding: 40px;
      gap: 16px;
    }
    .hero-img-placeholder i { font-size: 72px; background: var(--grad-h); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .hero-img-placeholder span { font-size: 13px; color: var(--text-muted); font-weight: 500; }
    .hero-badge {
      position: absolute; bottom: 28px; left: -20px;
      background: var(--white); border: 1px solid var(--border);
      border-radius: 16px; padding: 14px 20px;
      box-shadow: var(--shadow-hover); display: flex; align-items: center; gap: 14px;
      animation: floatBadge 4s ease-in-out infinite alternate;
          z-index: 99;
    }
    .badge-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(55,47,255,.1); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
    .badge-icon i { color: var(--brand); }
    .badge-text strong { display: block; font-size: 18px; font-weight: 800; background: var(--grad-h); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
    .badge-text span { font-size: 11px; color: var(--text-muted); font-weight: 600; }
    .hero-badge-2 {
      position: absolute; top: 28px; right: -20px;
      background: var(--white); border: 1px solid var(--border);
      border-radius: 16px; padding: 14px 20px;
      box-shadow: var(--shadow-hover); display: flex; align-items: center; gap: 14px;
      animation: floatBadge 4s ease-in-out infinite alternate-reverse;
      z-index: 99;
    }
    @keyframes floatBadge { 0% { transform: translateY(0); } 100% { transform: translateY(-12px); } }

    /* right: text column */
    .breadcrumb {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 500; color: var(--text-muted);
      background: var(--white); border: 1px solid var(--border);
      padding: 6px 18px; border-radius: 50px; margin-bottom: 24px;
      box-shadow: var(--shadow-card);
    }
    .breadcrumb a { color: var(--brand); text-decoration: none; }
    .breadcrumb i { font-size: 9px; }
    .about-hero-text h1 { font-size: clamp(32px, 3.5vw, 52px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; color: var(--text-dark); margin-bottom: 16px; }
    .about-hero-text .lead { font-size: 15px; color: var(--text-muted); line-height: 1.85; margin-bottom: 28px; border-left: 3px solid var(--brand); padding-left: 18px; }
    .about-hero-text .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-primary { display: inline-flex; align-items: center; gap: 9px; padding: 13px 26px; border-radius: 12px; background: var(--brand); color: #fff; font-size: 13.5px; font-weight: 700; text-decoration: none; box-shadow: var(--shadow-brand); transition: background .2s, transform .2s; }
    .btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); }
    .btn-secondary { display: inline-flex; align-items: center; gap: 9px; padding: 13px 26px; border-radius: 12px; border: 1.5px solid rgba(55,47,255,.25); color: var(--brand); font-size: 13.5px; font-weight: 700; text-decoration: none; transition: background .2s, border-color .2s; }
    .btn-secondary:hover { background: rgba(55,47,255,.06); border-color: rgba(55,47,255,.4); }

    /* ════════════════════
       ABOUT CONTENT SECTION
    ════════════════════ */
    #about-content { padding: 100px 0; background: var(--white); position: relative; overflow: hidden; }
    #about-content::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(55,47,255,.04) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }

    .about-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; z-index: 2; }

    /* Left: description text */
    .about-text-col h2 { font-size: clamp(26px, 2.8vw, 38px); font-weight: 800; letter-spacing: -1px; color: var(--text-dark); margin-bottom: 24px; line-height: 1.2; }
    .about-text-col p { font-size: 14.5px; color: var(--text-mid); line-height: 1.9; margin-bottom: 18px; }
    .about-text-col p:last-of-type { margin-bottom: 0; }

    /* highlight quote block */
    .highlight-quote {
      margin: 32px 0; padding: 24px 28px;
      background: rgba(55,47,255,.04); border: 1px solid rgba(55,47,255,.12);
      border-left: 4px solid var(--brand); border-radius: 0 16px 16px 0;
    }
    .highlight-quote p { font-size: 15px; font-weight: 600; color: var(--text-dark); line-height: 1.7; margin: 0; font-style: italic; }
    .highlight-quote span { display: block; margin-top: 10px; font-size: 12px; font-weight: 600; color: var(--brand); font-style: normal; letter-spacing: 1px; text-transform: uppercase; }

    /* Right: feature cards */
    .about-features-col { display: flex; flex-direction: column; gap: 16px; }
    .feature-card {
      display: flex; align-items: flex-start; gap: 18px;
      background: var(--white); border: 1px solid var(--border-light);
      border-radius: 18px; padding: 24px 22px;
      box-shadow: var(--shadow-card);
      transition: transform .3s, border-color .3s, box-shadow .3s;
      position: relative; overflow: hidden;
    }
    .feature-card::before {
      content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
      background: var(--grad-h); transform: scaleY(0); transform-origin: top;
      transition: transform .4s ease;
    }
    .feature-card:hover::before { transform: scaleY(1); }
    .feature-card:hover { transform: translateX(6px); border-color: rgba(55,47,255,.2); box-shadow: var(--shadow-hover); }
    .fc-icon {
      width: 48px; height: 48px; flex-shrink: 0;
      border-radius: 13px; background: rgba(55,47,255,.09);
      border: 1px solid rgba(55,47,255,.15);
      display: flex; align-items: center; justify-content: center; font-size: 19px;
    }
    .fc-icon i { color: var(--brand); }

    .fc-body h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
    .fc-body p { font-size: 12.5px; color: var(--text-muted); line-height: 1.7; }

    /* ════════════════════
       STATS BAND
    ════════════════════ */
    #about-stats { padding: 80px 0; background: var(--dark-bg); position: relative; overflow: hidden; }
    #about-stats::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-h); }
    .stats-blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
    .stats-blob.b1 { width: 400px; height: 400px; background: rgba(55,47,255,.09); top: -100px; left: -100px; }
    .stats-blob.b2 { width: 300px; height: 300px; background: rgba(144,0,255,.08); bottom: -80px; right: -80px; }

    .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; position: relative; z-index: 2; }
    .stat-item { padding: 48px 28px; text-align: center; transition: background .25s; position: relative; }
    .stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,.08); }
    .stat-item:hover { background: rgba(55,47,255,.1); }
    .stat-icon-wrap { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--brand-light); margin: 0 auto 20px; }
    .stat-num { font-size: clamp(36px, 4vw, 52px); font-weight: 800; background: var(--grad-h); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 8px; }
    .stat-lbl { font-size: 13px; color: rgba(255,255,255,.5); font-weight: 500; }

    /* ════════════════════
       WHY CHOOSE SECTION
    ════════════════════ */
    #about-why { padding: 100px 0; background: var(--light-bg); position: relative; overflow: hidden; }
    #about-why::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(55,47,255,.05) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
    .why-blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
    .why-blob.w1 { width: 450px; height: 450px; background: rgba(55,47,255,.07); top: -120px; right: -120px; }

    .why-header { text-align: center; max-width: 600px; margin: 0 auto 64px; position: relative; z-index: 2; }
    .why-header h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: -1px; color: var(--text-dark); margin-bottom: 12px; }
    .why-header p { font-size: 14.5px; color: var(--text-muted); line-height: 1.8; }

    .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 2; }
    .why-card {
      background: var(--white); border: 1px solid var(--border-light);
      border-radius: 20px; padding: 32px 28px;
      box-shadow: var(--shadow-card);
      transition: transform .3s, border-color .3s, box-shadow .3s;
      position: relative; overflow: hidden;
    }
    .why-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: var(--grad-h); transform: scaleX(0); transform-origin: left;
      transition: transform .4s ease;
    }
    .why-card:hover::after { transform: scaleX(1); }
    .why-card:hover { transform: translateY(-6px); border-color: rgba(55,47,255,.2); box-shadow: var(--shadow-hover); }
    .why-num { font-size: 42px; font-weight: 900; background: var(--grad-h); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 16px; opacity: .35; }
    .why-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(55,47,255,.09); border: 1px solid rgba(55,47,255,.15); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 18px; }
    .why-icon i { color: var(--brand); }
    .why-card h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
    .why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.75; }

    /* ════════════════════
       CTA BAND
    ════════════════════ */
    #about-cta { padding: 80px 0; background: var(--white); position: relative; overflow: hidden; }
    #about-cta::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(55,47,255,.04) 1px, transparent 1px); background-size: 30px 30px; pointer-events: none; }

    .cta-inner {
      position: relative; z-index: 2;
      background: var(--dark-bg); border-radius: 28px;
      padding: 72px 60px; overflow: hidden;
      display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
    }
    .cta-inner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-h); }
    .cta-blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
    .cta-blob.c1 { width: 400px; height: 400px; background: rgba(55,47,255,.1); top: -150px; left: -100px; }
    .cta-blob.c2 { width: 300px; height: 300px; background: rgba(144,0,255,.08); bottom: -100px; right: -80px; }

    .cta-text { position: relative; z-index: 2; }
    .cta-text .section-tag { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.7); }
    .cta-text h2 { font-size: clamp(24px, 2.8vw, 38px); font-weight: 800; color: #fff; letter-spacing: -1px; margin-bottom: 14px; }
    .cta-text p { font-size: 14.5px; color: rgba(255,255,255,.55); line-height: 1.8; max-width: 520px; }
    .cta-actions { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
    .cta-btn-main { display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px; border-radius: 14px; background: var(--brand); color: #fff; font-size: 14px; font-weight: 700; text-decoration: none; box-shadow: var(--shadow-brand); transition: background .2s, transform .2s; white-space: nowrap; }
    .cta-btn-main:hover { background: var(--brand-dark); transform: translateY(-2px); }
    .cta-btn-ghost { display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px; border-radius: 14px; border: 1.5px solid rgba(255,255,255,.2); color: rgba(255,255,255,.8); font-size: 14px; font-weight: 700; text-decoration: none; transition: border-color .2s, background .2s; white-space: nowrap; }
    .cta-btn-ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); }

    /* scroll-to-top */
    #scroll-top { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; border-radius: 12px; background: var(--brand); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; box-shadow: 0 8px 24px rgba(55,47,255,.3); opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .3s, transform .3s; z-index: 800; }
    #scroll-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
    #scroll-top:hover { background: var(--brand-dark); transform: translateY(-2px); }

    /* ── Responsive ── */
    @media (max-width: 1024px) {
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .why-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .about-hero-grid, .about-content-grid { grid-template-columns: 1fr; gap: 48px; }
      .about-hero-visual { display: none; }
      .hero-badge, .hero-badge-2 { display: none; }
      .why-grid { grid-template-columns: 1fr; }
      .cta-inner { grid-template-columns: 1fr; text-align: center; padding: 48px 32px; }
      .cta-text p { max-width: 100%; }
      .cta-actions { align-items: center; }
      .container { padding: 0 20px; }
      #about-hero { padding: 72px 0 64px; }
      #about-content, #about-why { padding: 72px 0; }
    }
    @media (max-width: 600px) {
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .stat-item::after { display: none; }
    }
    /* about page */

    