/* ============================================================
   VH DESKTOP STYLES — min-width: 768px
   Mobile styles are in app.css
   ============================================================ */

/* ── HIDE MOBILE ON DESKTOP ── */
@media (max-width: 767px) {
  #desktop-site { display: none !important; }
}

@media (min-width: 768px) {

  /* hide all mobile elements */
  #app,
  #tabs,
  #toast,
  #disclaimer,
  #offline-banner,
  #install-prompt,
  #amb,
  #grain,
  #bot { display: none !important; }

  body {
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--deep);
  }

  #desktop-site {
    display: block;
    min-height: 100vh;
    font-family: var(--fb);
    color: var(--ivory);
  }

  /* ── NAV ── */
  #d-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 48px;
    gap: 0;
    background: rgba(8,8,24,.78);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--hair);
    transition: background .3s;
  }
  #d-nav.scrolled {
    background: rgba(8,8,24,.96);
    border-color: var(--hair2);
  }

  .d-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--fd);
    font-weight: 700;
    font-size: 17px;
    color: var(--ivory);
    cursor: pointer;
    text-decoration: none;
    flex: none;
    user-select: none;
  }
  .d-logo svg { width: 26px; height: 26px; flex: none; }
  .d-logo b {
    background: var(--dawn);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .d-nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 32px;
    flex: 1;
  }

  .d-nav-link {
    padding: 7px 13px;
    border-radius: 10px;
    font-size: 13.5px;
    color: var(--stone);
    cursor: pointer;
    text-decoration: none;
    transition: background .18s, color .18s;
    white-space: nowrap;
    user-select: none;
  }
  .d-nav-link:hover { background: rgba(255,247,232,.06); color: var(--ivory); }
  .d-nav-link.active { color: var(--amber); }

  /* lang picker in nav */
  .d-nav-lang {
    display: flex;
    background: rgba(12,12,30,.8);
    border: 1px solid var(--hair2);
    border-radius: 999px;
    padding: 3px;
    gap: 1px;
    margin-right: 12px;
  }
  .d-lang-btn {
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--stone);
    cursor: pointer;
    transition: all .18s;
    letter-spacing: .04em;
    user-select: none;
  }
  .d-lang-btn.on { background: var(--dawn); color: #0A0A1E; }

  .d-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: none;
  }

  .d-btn-ghost {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid var(--hair2);
    color: var(--stone);
    font-size: 13px;
    cursor: pointer;
    background: none;
    font-family: var(--fd);
    font-weight: 600;
    transition: all .18s;
  }
  .d-btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

  .d-btn-cta {
    padding: 9px 20px;
    border-radius: 999px;
    background: var(--dawn);
    color: #0A0A1E;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-family: var(--fd);
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 6px 20px rgba(255,122,47,.4);
  }
  .d-btn-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(255,122,47,.55);
  }

  /* ── PAGE SYSTEM ── */
  .d-page { display: none; padding-top: 64px; }
  .d-page.on { display: block; }

  /* ── SECTION HELPERS ── */
  .d-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
  }
  .d-sec { padding: 80px 0; }
  .d-sec-sm { padding: 48px 0; }

  .sec-label {
    display: block;
    font-size: 11px;
    letter-spacing: .22em;
    color: var(--amber);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .sec-h2 {
    font-family: var(--fd);
    font-weight: 800;
    font-size: clamp(28px, 3.5vw, 44px);
    letter-spacing: -.025em;
    margin-bottom: 14px;
    line-height: 1.1;
  }
  .sec-h2 .hl {
    background: var(--dawn);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .sec-sub {
    font-size: clamp(14px, 1.4vw, 17px);
    color: var(--stone);
    line-height: 1.65;
    max-width: 560px;
    margin-bottom: 48px;
  }

  /* scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s cubic-bezier(.2,.75,.3,1), transform .6s cubic-bezier(.2,.75,.3,1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-d1 { transition-delay: .08s; }
  .reveal-d2 { transition-delay: .16s; }
  .reveal-d3 { transition-delay: .24s; }
  .reveal-d4 { transition-delay: .32s; }

  /* ── HERO ── */
  #d-hero {
    min-height: calc(100vh - 64px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 60px 48px 48px;
  }

  /* hero ambient blobs */
  .d-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }
  .d-blob-1 {
    width: 720px; height: 720px;
    left: -220px; top: -160px;
    background: radial-gradient(closest-side, rgba(255,122,47,.11), transparent 70%);
    animation: blobDrift1 18s ease-in-out infinite alternate;
  }
  .d-blob-2 {
    width: 640px; height: 640px;
    right: -200px; bottom: -120px;
    background: radial-gradient(closest-side, rgba(108,92,231,.09), transparent 70%);
    animation: blobDrift2 22s ease-in-out infinite alternate;
  }
  @keyframes blobDrift1 { to { transform: translate(60px, 50px) scale(1.1); } }
  @keyframes blobDrift2 { to { transform: translate(-60px,-50px) scale(1.08); } }

  /* particles */
  .d-pt {
    position: absolute;
    border-radius: 50%;
    background: var(--amber);
    pointer-events: none;
    animation: ptFloat var(--d,8s) ease-in-out infinite;
    opacity: var(--o,.35);
    width: var(--s,4px); height: var(--s,4px);
    left: var(--x,50%); top: var(--y,50%);
  }
  @keyframes ptFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(var(--mx,20px),var(--my,-28px)) scale(1.25); }
  }

  /* hero badge */
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,122,47,.12);
    border: 1px solid rgba(255,122,47,.3);
    border-radius: 999px;
    padding: 7px 18px;
    font-size: 12px;
    font-weight: 600;
    color: var(--kesar);
    margin-bottom: 28px;
    letter-spacing: .04em;
    animation: heroFade .8s ease-out .2s both;
  }
  .badge-star { animation: starSpin 3s linear infinite; display: inline-block; }
  @keyframes starSpin { to { transform: rotate(360deg); } }
  @keyframes heroFade { from { opacity:0; transform: translateY(12px); } to { opacity:1; transform: translateY(0); } }

  /* hero headline */
  .hero-h1 {
    font-family: var(--fd);
    font-weight: 800;
    font-size: clamp(42px, 5.8vw, 74px);
    line-height: 1.07;
    letter-spacing: -.03em;
    margin-bottom: 20px;
    max-width: 840px;
    animation: heroFade .9s ease-out .3s both;
  }
  .hero-sub {
    font-size: clamp(15px, 1.5vw, 18px);
    color: var(--stone);
    max-width: 580px;
    line-height: 1.68;
    margin-bottom: 40px;
    animation: heroFade .9s ease-out .45s both;
  }

  /* hero voice orb */
  @property --oa { syntax:'<angle>'; initial-value:0deg; inherits:false; }
  .d-orb-wrap {
    width: 100%;
    max-width: 640px;
    margin-bottom: 32px;
    animation: heroFade .9s ease-out .55s both;
  }
  .d-orb {
    position: relative;
    border-radius: 24px;
    padding: 1.5px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 24px 60px rgba(255,122,47,.2), 0 4px 16px rgba(0,0,0,.4);
    transition: transform .18s;
  }
  .d-orb:hover { transform: translateY(-2px); }
  .d-orb::before {
    content: "";
    position: absolute; inset: -50%; z-index: 0;
    background: conic-gradient(from var(--oa),#FF7A2F 0%,#FFC24B 25%,#6C5CE7 55%,#FF7A2F 100%);
    animation: orbSpin 6s linear infinite;
    filter: blur(16px); opacity: .9;
  }
  @keyframes orbSpin { to { --oa: 360deg; } }
  .d-orb-in {
    position: relative; z-index: 1;
    border-radius: 22.5px;
    background: rgba(10,10,26,.92);
    backdrop-filter: blur(22px);
    display: flex; align-items: center; gap: 16px;
    padding: 18px 22px;
  }
  .d-mic {
    width: 54px; height: 54px; flex: none;
    border-radius: 50%;
    background: var(--dawn);
    display: grid; place-items: center;
    font-size: 22px; color: #0A0A1E;
    box-shadow: 0 8px 24px rgba(255,122,47,.5);
    animation: micPulse 2.4s ease-in-out infinite;
  }
  .d-orb-ph {
    flex: 1;
    font-size: 16px;
    color: var(--ivory);
    font-weight: 500;
    font-family: var(--fg);
    text-align: left;
    transition: opacity .3s;
  }
  .d-orb-hint {
    display: block;
    font-size: 10.5px;
    color: var(--dim);
    margin-top: 4px;
    letter-spacing: .16em;
    font-family: var(--fb);
  }
  .d-wb-row {
    display: flex; gap: 3px; align-items: center; height: 20px;
  }
  .d-wb {
    width: 3px; border-radius: 2px; background: var(--amber);
  }
  .d-wb:nth-child(1){height:5px;animation:waveBar .9s ease-in-out infinite}
  .d-wb:nth-child(2){height:14px;animation:waveBar .9s ease-in-out .14s infinite}
  .d-wb:nth-child(3){height:8px;animation:waveBar .9s ease-in-out .28s infinite}
  .d-wb:nth-child(4){height:15px;animation:waveBar .9s ease-in-out .42s infinite}
  .d-wb:nth-child(5){height:6px;animation:waveBar .9s ease-in-out .56s infinite}

  /* hero feature pills */
  .hero-pills {
    display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
    margin-bottom: 52px;
    animation: heroFade .9s ease-out .65s both;
  }
  .h-pill {
    display: flex; align-items: center; gap: 7px;
    background: var(--glass); backdrop-filter: blur(12px);
    border: 1px solid var(--hair2); border-radius: 12px;
    padding: 10px 16px; font-size: 13.5px; color: var(--stone);
    transition: border-color .2s, color .2s, transform .2s;
    cursor: default;
  }
  .h-pill:hover { border-color: rgba(255,122,47,.35); color: var(--ivory); transform: translateY(-2px); }

  /* hero floating property cards */
  .hero-cards {
    display: flex; gap: 18px; justify-content: center;
    animation: heroFade .9s ease-out .75s both;
  }
  .h-card {
    width: 215px;
    border-radius: 18px; overflow: hidden;
    background: var(--glass); border: 1px solid var(--hair);
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
    animation: hcFloat var(--f,7s) ease-in-out var(--fd2,0s) infinite;
    transition: transform .4s ease, box-shadow .4s ease;
    cursor: pointer;
  }
  .h-card:hover {
    transform: translateY(-10px) scale(1.03) !important;
    box-shadow: 0 32px 64px rgba(0,0,0,.65), 0 0 0 1px rgba(255,122,47,.25);
    animation-play-state: paused;
  }
  @keyframes hcFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(var(--fy,-12px)); }
  }
  .hci { height: 95px; overflow: hidden; position: relative; }
  .hci svg { position: absolute; inset: 0; width: 100%; height: 100%; }
  .hcp { padding: 10px 12px; }
  .hcp-price {
    font-family: var(--fd); font-weight: 800; font-size: 15px;
    margin-bottom: 3px;
  }
  .hcp-title { font-size: 11.5px; color: var(--stone); }
  .hcp-tag {
    display: inline-block; margin-top: 6px;
    padding: 3px 7px; border-radius: 5px; font-size: 9.5px; font-weight: 700;
  }
  .hcp-tag.live { color: var(--live); background: rgba(62,207,142,.08); border: 1px solid rgba(62,207,142,.3); }
  .hcp-tag.ai   { color: var(--amber); background: rgba(255,194,75,.08); border: 1px solid rgba(255,194,75,.3); }

  /* ── WHO IS VH FOR ── */
  .user-grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 18px;
    margin-top: 40px;
  }
  .user-card {
    background: var(--glass); border: 1px solid var(--hair); border-radius: 22px;
    padding: 24px 20px; text-align: center;
    transition: border-color .25s, transform .25s, box-shadow .25s;
    cursor: pointer;
  }
  .user-card:hover {
    border-color: rgba(255,122,47,.4);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,.4);
  }
  .user-ico { font-size: 38px; display: block; margin-bottom: 14px; }
  .user-card h3 { font-family: var(--fd); font-weight: 700; font-size: 16px; margin-bottom: 8px; }
  .user-card p { font-size: 12.5px; color: var(--stone); line-height: 1.6; margin-bottom: 14px; }
  .user-cta { font-size: 12px; color: var(--amber); font-weight: 600; }

  /* ── HOW IT WORKS ── */
  .how-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 22px;
    margin-top: 40px;
  }
  .how-card {
    background: var(--glass); border: 1px solid var(--hair); border-radius: 22px;
    padding: 28px 24px; text-align: left;
    transition: border-color .25s, transform .25s;
  }
  .how-card:hover { border-color: rgba(255,122,47,.35); transform: translateY(-4px); }
  .how-num {
    width: 38px; height: 38px; border-radius: 13px;
    background: var(--dawn); color: #0A0A1E;
    font-family: var(--fd); font-weight: 800; font-size: 17px;
    display: grid; place-items: center; margin-bottom: 16px;
  }
  .how-card h3 { font-family: var(--fd); font-weight: 700; font-size: 17px; margin-bottom: 9px; }
  .how-card p { font-size: 13.5px; color: var(--stone); line-height: 1.65; }

  /* ── AREA PRICES ── */
  .areas-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
    margin-top: 36px;
  }
  .area-card {
    background: var(--glass); border: 1px solid var(--hair); border-radius: 18px;
    padding: 18px 16px;
    transition: border-color .2s, transform .2s;
  }
  .area-card:hover { border-color: rgba(255,122,47,.3); transform: translateY(-3px); }
  .area-name { font-family: var(--fd); font-weight: 700; font-size: 14px; margin-bottom: 6px; }
  .area-data { font-size: 12.5px; color: var(--stone); line-height: 1.7; }
  .area-data b { color: var(--amber); }

  /* ── APP CTA STRIP ── */
  .app-cta-strip {
    background: linear-gradient(135deg, rgba(255,122,47,.12), rgba(108,92,231,.1));
    border: 1px solid rgba(255,122,47,.25);
    border-radius: 28px;
    padding: 48px 48px;
    display: flex; align-items: center; gap: 48px;
    margin: 0 0 80px;
  }
  .app-cta-text { flex: 1; }
  .app-cta-text h3 {
    font-family: var(--fd); font-weight: 800;
    font-size: clamp(22px, 2.5vw, 32px);
    margin-bottom: 10px; letter-spacing: -.02em;
  }
  .app-cta-text p { font-size: 15px; color: var(--stone); line-height: 1.65; }
  .app-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
  .app-store-btn {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,247,232,.07); border: 1px solid var(--hair2);
    border-radius: 14px; padding: 11px 20px; cursor: pointer;
    transition: border-color .2s, transform .2s;
  }
  .app-store-btn:hover { border-color: rgba(255,122,47,.4); transform: translateY(-2px); }
  .app-store-btn span { font-size: 11px; color: var(--dim); display: block; }
  .app-store-btn b { font-family: var(--fd); font-size: 14px; font-weight: 700; display: block; }
  .qr-box {
    width: 100px; height: 100px;
    background: var(--glass); border: 1px solid var(--hair);
    border-radius: 14px; display: grid; place-items: center;
    font-size: 11px; color: var(--dim); text-align: center; flex: none;
  }

  /* ── PROPERTIES PAGE ── */
  .d-filter-bar {
    display: flex; gap: 10px; align-items: center;
    padding: 16px 0 24px; flex-wrap: wrap;
  }
  .d-filter-btn {
    padding: 9px 16px; border-radius: 12px;
    background: var(--glass); border: 1px solid var(--hair2);
    font-size: 13px; color: var(--stone); cursor: pointer;
    font-family: var(--fb); transition: all .18s;
  }
  .d-filter-btn.on { background: rgba(255,122,47,.15); border-color: rgba(255,122,47,.45); color: var(--amber); }
  .d-filter-btn:hover { border-color: rgba(255,122,47,.3); color: var(--ivory); }
  .d-prop-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr));
    gap: 22px; margin-bottom: 48px;
  }
  .d-prop-grid .pcard { margin-bottom: 0; cursor: pointer; }
  .d-prop-grid .pcard .pimg { height: 210px; }
  .d-wa-box {
    background: rgba(37,211,102,.07); border: 1px solid rgba(37,211,102,.25);
    border-radius: 22px; padding: 28px 32px;
    display: flex; align-items: center; gap: 24px;
    margin-top: 16px;
  }
  .d-wa-box h3 { font-family: var(--fd); font-weight: 700; font-size: 18px; margin-bottom: 6px; }
  .d-wa-box p { font-size: 13.5px; color: var(--stone); }
  .wa-cta-btn {
    padding: 13px 24px; border-radius: 999px; flex: none;
    background: linear-gradient(135deg,#25D366,#128C7E);
    color: #fff; font-weight: 700; font-size: 14px;
    border: none; cursor: pointer; font-family: var(--fd);
    box-shadow: 0 8px 22px rgba(37,211,102,.35);
    transition: transform .15s;
  }
  .wa-cta-btn:hover { transform: translateY(-2px); }

  /* ── LIST PROPERTY PAGE ── */
  .list-hero {
    padding: 60px 0 40px;
    display: flex; gap: 64px; align-items: flex-start;
  }
  .list-hero-left { flex: 1; }
  .list-hero-left h1 {
    font-family: var(--fd); font-weight: 800;
    font-size: clamp(32px, 4.5vw, 54px);
    letter-spacing: -.03em; margin-bottom: 16px;
    line-height: 1.08;
  }
  .list-hero-left p { font-size: 16px; color: var(--stone); line-height: 1.7; margin-bottom: 28px; }
  .plans-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
    margin: 40px 0;
  }
  .plan-card {
    border-radius: 22px; padding: 24px 20px;
    border: 1px solid var(--hair);
    background: var(--glass);
    transition: transform .2s, border-color .2s;
  }
  .plan-card:hover { transform: translateY(-4px); }
  .plan-card.featured {
    border-color: rgba(255,122,47,.45);
    background: linear-gradient(135deg,rgba(255,122,47,.13),rgba(255,194,75,.06));
    position: relative;
  }
  .plan-card.featured::before {
    content: "POPULAR";
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--dawn); color: #0A0A1E;
    font-size: 9.5px; font-weight: 700; letter-spacing: .1em;
    padding: 3px 10px; border-radius: 999px;
  }
  .plan-name { font-family: var(--fd); font-weight: 800; font-size: 18px; margin-bottom: 4px; }
  .plan-price {
    font-family: var(--fd); font-weight: 800; font-size: 28px;
    background: var(--dawn); -webkit-background-clip: text;
    background-clip: text; color: transparent; margin-bottom: 14px;
  }
  .plan-price small { font-size: 13px; color: var(--stone); font-weight: 400; }
  .plan-feats { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
  .plan-feats li { font-size: 13px; color: var(--stone); display: flex; gap: 8px; align-items: flex-start; }
  .plan-feats li::before { content: "✓"; color: var(--live); font-weight: 700; flex: none; }
  .how-steps {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
    margin-top: 32px;
  }
  .how-step {
    background: var(--glass); border: 1px solid var(--hair); border-radius: 18px;
    padding: 20px 16px;
  }
  .step-num {
    width: 32px; height: 32px; border-radius: 10px;
    background: var(--dawn); color: #0A0A1E;
    font-family: var(--fd); font-weight: 800; font-size: 15px;
    display: grid; place-items: center; margin-bottom: 12px;
  }
  .how-step h4 { font-family: var(--fd); font-weight: 700; font-size: 14px; margin-bottom: 6px; }
  .how-step p { font-size: 12.5px; color: var(--stone); line-height: 1.6; }
  .faq-list { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; }
  .faq-item {
    background: var(--glass); border: 1px solid var(--hair); border-radius: 16px;
    overflow: hidden;
  }
  .faq-q {
    padding: 16px 20px; font-family: var(--fd); font-weight: 600; font-size: 14px;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    transition: background .2s;
  }
  .faq-q:hover { background: rgba(255,247,232,.03); }
  .faq-q .arr { transition: transform .2s; color: var(--dim); }
  .faq-item.open .faq-q .arr { transform: rotate(180deg); }
  .faq-a {
    max-height: 0; overflow: hidden;
    font-size: 13.5px; color: var(--stone); line-height: 1.68;
    transition: max-height .3s ease, padding .3s;
    padding: 0 20px;
  }
  .faq-item.open .faq-a { max-height: 200px; padding: 0 20px 16px; }

  /* ── ABOUT PAGE ── */
  .about-hero {
    padding: 60px 0 40px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  }
  .about-hero h1 {
    font-family: var(--fd); font-weight: 800;
    font-size: clamp(34px, 4.5vw, 56px);
    letter-spacing: -.03em; margin-bottom: 20px; line-height: 1.08;
  }
  .about-hero p { font-size: 15px; color: var(--stone); line-height: 1.75; margin-bottom: 16px; }
  .stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
  .stat-box {
    background: var(--glass); border: 1px solid var(--hair); border-radius: 18px;
    padding: 20px; text-align: center;
  }
  .stat-box b {
    display: block; font-family: var(--fd); font-weight: 800; font-size: 28px;
    background: var(--dawn); -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .stat-box span { font-size: 12px; color: var(--stone); }
  .mission-box {
    background: linear-gradient(135deg,rgba(255,122,47,.1),rgba(108,92,231,.08));
    border: 1px solid rgba(255,122,47,.25); border-radius: 22px;
    padding: 32px 28px; margin: 40px 0;
  }
  .mission-box h3 { font-family: var(--fd); font-weight: 800; font-size: 20px; margin-bottom: 12px; }
  .mission-box p { font-size: 15px; color: var(--stone); line-height: 1.75; }
  .compliance-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
  .comp-badge {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 16px; border-radius: 12px;
    background: rgba(62,207,142,.08); border: 1px solid rgba(62,207,142,.25);
    font-size: 13px; color: var(--live);
  }

  /* ── CONTACT PAGE ── */
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    margin-top: 40px;
  }
  .contact-card {
    background: var(--glass); border: 1px solid var(--hair); border-radius: 22px;
    padding: 28px 24px;
  }
  .contact-card h3 { font-family: var(--fd); font-weight: 700; font-size: 18px; margin-bottom: 22px; }
  .c-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
  .c-ico {
    width: 42px; height: 42px; border-radius: 13px; flex: none;
    background: rgba(255,122,47,.1); border: 1px solid rgba(255,122,47,.22);
    display: grid; place-items: center; font-size: 18px;
  }
  .c-label { font-size: 10.5px; color: var(--dim); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 4px; }
  .c-val { font-size: 14px; color: var(--ivory); font-weight: 500; }
  .c-val a { color: var(--amber); text-decoration: none; transition: opacity .2s; }
  .c-val a:hover { opacity: .75; }
  .map-box {
    background: linear-gradient(135deg,rgba(255,122,47,.06),rgba(108,92,231,.06));
    border: 1px solid var(--hair); border-radius: 22px;
    height: 300px; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--stone); font-size: 14px; text-align: center; gap: 8px;
  }
  .wa-big-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: linear-gradient(135deg,#25D366,#128C7E);
    color: #fff; font-weight: 700; font-size: 15px;
    border-radius: 999px; padding: 14px 28px;
    cursor: pointer; border: none; font-family: var(--fd);
    box-shadow: 0 8px 24px rgba(37,211,102,.35);
    width: 100%; margin-top: 20px; transition: transform .15s;
  }
  .wa-big-btn:hover { transform: translateY(-2px); }

  /* ── CAREERS PAGE ── */
  .jobs-grid {
    display: grid; grid-template-columns: repeat(2,1fr); gap: 20px;
    margin-top: 36px;
  }
  .job-card {
    background: var(--glass); border: 1px solid var(--hair); border-radius: 22px;
    padding: 26px 24px;
    transition: border-color .22s, transform .22s, box-shadow .22s;
    cursor: pointer;
  }
  .job-card:hover {
    border-color: rgba(255,122,47,.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0,0,0,.4);
  }
  .job-tag {
    display: inline-block; padding: 4px 10px; border-radius: 7px;
    font-size: 10px; font-weight: 700; letter-spacing: .1em;
    background: rgba(255,122,47,.12); border: 1px solid rgba(255,122,47,.3);
    color: var(--kesar); margin-bottom: 13px;
  }
  .job-card h3 { font-family: var(--fd); font-weight: 700; font-size: 19px; margin-bottom: 10px; }
  .job-card p { font-size: 13.5px; color: var(--stone); line-height: 1.65; margin-bottom: 16px; }
  .skill-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
  .skill-tag {
    padding: 4px 10px; border-radius: 7px; font-size: 11.5px;
    background: rgba(108,92,231,.12); border: 1px solid rgba(108,92,231,.3);
    color: #9E92FF;
  }
  .job-apply-btn {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--amber); font-weight: 600; font-size: 13.5px;
    background: none; border: none; font-family: var(--fd);
    cursor: pointer; transition: gap .18s, opacity .18s;
    padding: 0;
  }
  .job-apply-btn:hover { gap: 14px; opacity: .8; }
  .apply-info-box {
    margin-top: 36px; padding: 28px 32px;
    background: var(--glass); border: 1px solid var(--hair); border-radius: 20px;
    text-align: center;
  }
  .apply-info-box p { font-size: 14px; color: var(--stone); margin-bottom: 8px; }
  .apply-info-box a { color: var(--amber); text-decoration: none; }
  .apply-info-box small { font-size: 12px; color: var(--dim); }

  /* ── DESKTOP APP (post-login) ── */
  #d-app { display: none; }
  #d-app.on { display: flex; height: calc(100vh - 64px); overflow: hidden; }
  .d-sidebar {
    width: 240px; flex: none;
    background: rgba(10,10,28,.96); backdrop-filter: blur(24px);
    border-right: 1px solid var(--hair);
    display: flex; flex-direction: column;
    padding: 20px 14px;
    overflow-y: auto;
  }
  .d-sidebar-link {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 14px; border-radius: 14px;
    font-size: 14px; color: var(--stone);
    cursor: pointer; transition: all .18s; margin-bottom: 4px;
    user-select: none;
  }
  .d-sidebar-link:hover { background: rgba(255,247,232,.06); color: var(--ivory); }
  .d-sidebar-link.on { background: rgba(255,122,47,.14); color: var(--amber); }
  .d-sidebar-link .si { font-size: 17px; flex: none; }
  .d-main {
    flex: 1; overflow-y: auto; display: flex; flex-direction: column;
  }
  .d-topbar {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 24px; background: rgba(8,8,24,.78);
    backdrop-filter: blur(20px); border-bottom: 1px solid var(--hair);
    position: sticky; top: 0; z-index: 6;
  }
  .d-topbar h2 { font-family: var(--fd); font-weight: 700; font-size: 17px; }
  .d-content { flex: 1; padding: 24px; }
  .d-card-grid {
    display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 20px;
  }
  .d-greeting { font-family: var(--fd); font-weight: 800; font-size: 24px; margin-bottom: 20px; }
  .d-user-pill {
    display: flex; align-items: center; gap: 10px;
    margin-left: auto;
    background: var(--glass); border: 1px solid var(--hair2); border-radius: 999px;
    padding: 6px 14px 6px 6px; cursor: pointer;
  }
  .d-avatar {
    width: 30px; height: 30px; border-radius: 10px;
    background: var(--dawn); display: grid; place-items: center;
    font-family: var(--fd); font-weight: 700; font-size: 13px; color: #0A0A1E;
  }
  .d-sidebar-bottom {
    margin-top: auto; padding-top: 14px;
    border-top: 1px solid var(--hair);
  }
  .d-sidebar-user {
    display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 14px;
    cursor: pointer; transition: background .18s;
  }
  .d-sidebar-user:hover { background: rgba(255,247,232,.05); }
  .d-sidebar-avatar {
    width: 36px; height: 36px; border-radius: 12px;
    background: var(--dawn); display: grid; place-items: center;
    font-family: var(--fd); font-weight: 700; font-size: 15px; color: #0A0A1E; flex: none;
  }

  /* ── FOOTER ── */
  #d-footer {
    border-top: 1px solid var(--hair);
    padding: 36px 48px 28px;
  }
  .footer-top {
    display: flex; gap: 48px; margin-bottom: 32px;
  }
  .footer-brand { flex: 1.5; }
  .footer-brand p { font-size: 13px; color: var(--stone); line-height: 1.65; margin-top: 12px; max-width: 320px; }
  .footer-col h4 { font-family: var(--fd); font-weight: 700; font-size: 12px; color: var(--stone); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
  .footer-col a { display: block; font-size: 13.5px; color: var(--dim); text-decoration: none; margin-bottom: 8px; cursor: pointer; transition: color .18s; }
  .footer-col a:hover { color: var(--stone); }
  .footer-bottom {
    border-top: 1px solid var(--hair); padding-top: 20px;
    display: flex; gap: 16px; flex-wrap: wrap; align-items: flex-start;
  }
  .footer-disc {
    font-size: 11.5px; color: var(--dim); line-height: 1.65; flex: 1;
  }
  .footer-disc a { color: var(--dim); text-decoration: underline; cursor: pointer; }
  .dpdp-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px; border-radius: 7px;
    background: rgba(62,207,142,.07); border: 1px solid rgba(62,207,142,.2);
    font-size: 10.5px; color: var(--live); flex: none;
  }

  /* ── BACK TO TOP ── */
  #back-top {
    position: fixed; bottom: 28px; right: 28px; z-index: 90;
    width: 44px; height: 44px; border-radius: 14px;
    background: var(--glass); backdrop-filter: blur(14px);
    border: 1px solid var(--hair2); display: grid; place-items: center;
    cursor: pointer; font-size: 17px; color: var(--stone);
    opacity: 0; pointer-events: none; transition: opacity .3s, transform .2s;
  }
  #back-top.show { opacity: 1; pointer-events: auto; }
  #back-top:hover { transform: translateY(-3px); border-color: rgba(255,122,47,.4); color: var(--amber); }

  /* ── PANEL BASE ── */
  .d-panel { display: none; }
  .d-panel.active { display: block; }


} /* end @media min-width:768px */