/* ============================================================
   LCS India — Add-on module
   Login panel • Services + detail modal • Control-tower contact
   • Chatbot  (loads after platform.css, reuses its tokens)
   ============================================================ */

/* ---------- Hero login card ---------- */
.login-card{position:relative;border:1px solid var(--line);border-radius:var(--r-lg);
  background:linear-gradient(180deg,rgba(17,27,44,.9),rgba(10,16,25,.95));
  backdrop-filter:blur(16px);box-shadow:var(--shadow);overflow:hidden}
.login-card::before{content:"";position:absolute;inset:0;border-radius:inherit;padding:1px;
  background:linear-gradient(140deg,rgba(67,194,212,.5),transparent 42%,transparent 68%,rgba(233,58,93,.4));
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;mask-composite:exclude;pointer-events:none}
.login-status{display:flex;align-items:center;justify-content:space-between;gap:.6rem;
  padding:.7rem 1.1rem;border-bottom:1px solid var(--line);background:rgba(13,21,34,.55);
  font-size:.72rem;color:var(--muted)}
.login-status .ls-left{display:inline-flex;align-items:center;gap:.5em;font-family:var(--display);
  font-weight:600;color:var(--ink-2)}
.login-status .ls-left i{width:7px;height:7px;border-radius:50%;background:var(--green);
  box-shadow:0 0 0 0 rgba(37,194,129,.6);animation:pulseG 1.8s infinite}
.login-status .ls-right{display:inline-flex;align-items:center;gap:.4em;color:var(--teal-2);font-weight:600;letter-spacing:.08em}
.login-body{padding:1.6rem 1.5rem 1.7rem}
.login-head{display:flex;align-items:center;gap:.75rem;margin-bottom:1.3rem}
.login-head .lk{width:42px;height:42px;border-radius:12px;display:grid;place-items:center;flex-shrink:0;
  background:linear-gradient(135deg,rgba(67,194,212,.18),rgba(45,169,190,.04));border:1px solid rgba(67,194,212,.28)}
.login-head .lk svg{width:21px;height:21px;color:var(--teal-2)}
.login-head b{font-family:var(--display);font-size:1.05rem;display:block;line-height:1.15}
.login-head span{font-size:.76rem;color:var(--muted)}
.field{margin-bottom:1rem}
.field label{display:block;font-size:.74rem;font-weight:600;color:var(--ink-2);margin-bottom:.4rem;letter-spacing:.02em}
.field .inp{position:relative}
.field .inp svg{position:absolute;left:.85rem;top:50%;transform:translateY(-50%);width:17px;height:17px;color:var(--faint);pointer-events:none}
.field input{width:100%;background:rgba(5,8,15,.6);border:1px solid var(--line-2);border-radius:11px;
  color:var(--ink);font-family:var(--font);font-size:.92rem;padding:.85em 1em .85em 2.6em;transition:.2s}
.field input::placeholder{color:var(--faint)}
.field input:focus{outline:none;border-color:var(--teal-2);box-shadow:0 0 0 3px rgba(67,194,212,.14);background:rgba(5,8,15,.85)}
.field .toggle-pw{position:absolute;right:.6rem;top:50%;transform:translateY(-50%);width:30px;height:30px;
  display:grid;place-items:center;border-radius:8px;color:var(--muted)}
.field .toggle-pw:hover{color:var(--teal-2);background:rgba(67,194,212,.08)}
.login-row{display:flex;align-items:center;justify-content:space-between;margin:-.2rem 0 1.2rem;font-size:.78rem}
.login-row label{display:inline-flex;align-items:center;gap:.45em;color:var(--muted);cursor:pointer}
.login-row a{color:var(--teal-2);font-weight:600}
.login-row a:hover{text-decoration:underline}
.btn-login-full{width:100%;justify-content:center;background:var(--grad-teal);color:#02141a;
  box-shadow:var(--glow-teal);font-family:var(--display);font-weight:600;border-radius:11px;padding:.92em 1em;
  display:inline-flex;align-items:center;gap:.5em;transition:transform .2s,box-shadow .2s}
.btn-login-full:hover{transform:translateY(-2px)}
.btn-login-full svg{width:17px;height:17px}
.login-note{margin-top:1rem;text-align:center;font-size:.72rem;color:var(--faint)}
.login-note b{color:var(--teal-2);font-weight:600}
.login-msg{font-size:.76rem;border-radius:9px;padding:.55rem .7rem;margin-bottom:1rem;display:none}
.login-msg.show{display:block}
.login-msg.warn{background:rgba(255,138,61,.12);color:var(--orange);border:1px solid rgba(255,138,61,.25)}

/* ---------- Services (10) ---------- */
.svc-card{position:relative;display:flex;flex-direction:column;min-height:0}
.svc-card .ico{margin-bottom:1.1rem}
.svc-card .snum{position:absolute;top:1.2rem;right:1.3rem;font-family:var(--display);font-weight:800;
  font-size:1.4rem;color:rgba(255,255,255,.05)}
.svc-card h3{margin-bottom:.55rem;font-size:1.06rem;padding-right:2rem}
.svc-card p{font-size:.85rem;color:var(--muted);line-height:1.55;flex:1}
.svc-more{margin-top:1.1rem;display:inline-flex;align-items:center;gap:.45em;font-family:var(--display);
  font-weight:600;font-size:.82rem;color:var(--teal-2);align-self:flex-start;transition:gap .2s}
.svc-more svg{width:15px;height:15px;transition:transform .2s}
.svc-more:hover{gap:.7em}
.svc-more:hover svg{transform:translateX(2px)}

/* no-JS fallback detail blocks (hidden when JS active; modal used instead) */
.js .svc-detail-store{display:none}
.svc-detail-store .svc-detail{border:1px solid var(--line);border-radius:var(--r);padding:1.5rem;
  margin-top:1rem;background:var(--card)}
.svc-detail-store .svc-detail h3{margin-bottom:.6rem}

/* ---------- Service detail modal ---------- */
.svc-modal{position:fixed;inset:0;z-index:200;display:flex;align-items:center;justify-content:center;
  padding:5vh 5vw;opacity:0;pointer-events:none;transition:opacity .3s}
.svc-modal.open{opacity:1;pointer-events:auto}
.svc-modal-backdrop{position:absolute;inset:0;background:rgba(3,5,10,.78);backdrop-filter:blur(6px)}
.svc-modal-card{position:relative;width:min(680px,100%);max-height:90vh;overflow-y:auto;
  border:1px solid var(--line-2);border-radius:var(--r-lg);
  background:linear-gradient(180deg,var(--card-2),var(--bg-2));box-shadow:var(--shadow);
  transform:translateY(18px) scale(.98);transition:transform .35s cubic-bezier(.2,.8,.2,1)}
.svc-modal.open .svc-modal-card{transform:none}
.svc-modal-top{position:relative;padding:1.7rem 1.8rem 1.2rem;border-bottom:1px solid var(--line);
  background:radial-gradient(500px 180px at 80% -20%,rgba(67,194,212,.16),transparent 60%)}
.svc-modal-top .mtag{font-size:.66rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--teal-2)}
.svc-modal-top h3{font-size:1.5rem;margin:.5rem 0 0;line-height:1.18}
.svc-modal-top .mic{width:46px;height:46px;border-radius:12px;display:grid;place-items:center;margin-bottom:1rem;
  background:linear-gradient(135deg,rgba(67,194,212,.18),rgba(45,169,190,.04));border:1px solid rgba(67,194,212,.28)}
.svc-modal-top .mic svg{width:23px;height:23px;color:var(--teal-2)}
.svc-modal-close{position:absolute;top:1.2rem;right:1.2rem;width:38px;height:38px;border-radius:10px;
  border:1px solid var(--line-2);display:grid;place-items:center;color:var(--ink-2);transition:.2s;background:rgba(5,8,15,.5)}
.svc-modal-close:hover{border-color:var(--crimson-2);color:var(--crimson-2);background:rgba(233,58,93,.08)}
.svc-modal-close svg{width:18px;height:18px}
.svc-modal-body{padding:1.5rem 1.8rem 1.9rem}
.svc-modal-body>p{color:var(--ink-2);font-size:.94rem;line-height:1.7;margin-bottom:1.4rem}
.svc-points{display:grid;gap:.7rem;margin-bottom:1.6rem}
.svc-points li{position:relative;padding-left:1.7rem;font-size:.88rem;color:var(--ink-2);line-height:1.5}
.svc-points li::before{content:"";position:absolute;left:.15rem;top:.32em;width:13px;height:7px;
  border-left:2px solid var(--teal-2);border-bottom:2px solid var(--teal-2);transform:rotate(-45deg)}
/* no-JS store readability */
.svc-detail-store .sd-top{display:flex;flex-direction:column;gap:.4rem;margin-bottom:.8rem}
.svc-detail-store .mic{width:42px;height:42px;border-radius:11px;display:grid;place-items:center;
  background:rgba(67,194,212,.1);border:1px solid rgba(67,194,212,.25)}
.svc-detail-store .mic svg{width:21px;height:21px;color:var(--teal-2)}
.svc-detail-store .mtag{font-size:.66rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--teal-2)}
.svc-detail-store .sd-body p{color:var(--ink-2);font-size:.9rem;line-height:1.65;margin-bottom:1rem}
.svc-modal-cta{display:flex;gap:.7rem;flex-wrap:wrap;padding-top:1.3rem;border-top:1px solid var(--line)}

/* ---------- Control-tower contact ---------- */
.ctc{position:relative;background:
  radial-gradient(800px 460px at 85% 0%,rgba(45,169,190,.12),transparent 60%),
  radial-gradient(700px 460px at 10% 100%,rgba(233,58,93,.1),transparent 60%),var(--bg-2);
  border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.ctc-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:2.6rem;align-items:center}
.ctc-cards{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.ctc-card{border:1px solid var(--line);border-radius:14px;background:var(--card);padding:1.3rem;transition:.3s}
.ctc-card:hover{border-color:rgba(67,194,212,.35);box-shadow:var(--shadow);transform:translateY(-4px)}
.ctc-card.urgent{border-color:rgba(233,58,93,.25)}
.ctc-card.urgent:hover{border-color:rgba(233,58,93,.5);box-shadow:var(--glow-crimson)}
.ctc-card .ci{width:40px;height:40px;border-radius:10px;display:grid;place-items:center;margin-bottom:.9rem;
  background:rgba(67,194,212,.1);border:1px solid rgba(67,194,212,.22)}
.ctc-card .ci svg{width:20px;height:20px;color:var(--teal-2)}
.ctc-card.urgent .ci{background:rgba(233,58,93,.12);border-color:rgba(233,58,93,.3)}
.ctc-card.urgent .ci svg{color:var(--crimson-2)}
.ctc-card .cl{font-size:.7rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--faint)}
.ctc-card b{font-family:var(--display);font-size:1.05rem;display:block;margin-top:.2rem}
.ctc-card a{color:inherit}
.ctc-card a:hover{color:var(--teal-2)}
.ctc-card.urgent a:hover{color:var(--crimson-2)}
.ctc-actions{display:flex;gap:.8rem;flex-wrap:wrap;margin-top:1.6rem}

/* ---------- Emergency FAB (re-stacked above chatbot) ---------- */
.emg-float{bottom:96px!important}

/* ---------- Chatbot ---------- */
.cbot-launch{position:fixed;right:20px;bottom:20px;z-index:120;width:60px;height:60px;border-radius:50%;
  display:grid;place-items:center;background:var(--grad-teal);color:#02141a;box-shadow:var(--glow-teal);
  transition:transform .25s,box-shadow .25s}
.cbot-launch:hover{transform:translateY(-3px) scale(1.05)}
.cbot-launch svg{width:27px;height:27px}
.cbot-launch .cbot-badge{position:absolute;top:-2px;right:-2px;width:18px;height:18px;border-radius:50%;
  background:var(--crimson);color:#fff;font-size:.62rem;font-weight:700;display:grid;place-items:center;
  border:2px solid var(--bg)}
.cbot-launch .rg{position:absolute;inset:0;border-radius:50%;border:2px solid var(--teal-2);animation:ping 2.4s ease-out infinite}
.cbot-launch.hide{opacity:0;pointer-events:none;transform:scale(.6)}

.cbot{position:fixed;right:20px;bottom:20px;z-index:121;width:min(380px,calc(100vw - 32px));
  height:min(560px,calc(100vh - 110px));display:flex;flex-direction:column;
  border:1px solid var(--line-2);border-radius:20px;overflow:hidden;background:var(--panel);
  box-shadow:var(--shadow);opacity:0;transform:translateY(20px) scale(.96);pointer-events:none;
  transform-origin:bottom right;transition:opacity .3s,transform .3s}
.cbot.open{opacity:1;transform:none;pointer-events:auto}
.cbot-head{display:flex;align-items:center;gap:.7rem;padding:.95rem 1.1rem;
  background:linear-gradient(135deg,rgba(45,169,190,.2),rgba(13,21,34,.9));border-bottom:1px solid var(--line)}
.cbot-head .ava{width:38px;height:38px;border-radius:11px;display:grid;place-items:center;flex-shrink:0;
  background:linear-gradient(135deg,rgba(67,194,212,.25),rgba(45,169,190,.05));border:1px solid rgba(67,194,212,.3)}
.cbot-head .ava svg{width:20px;height:20px;color:var(--teal-2)}
.cbot-head .ct{flex:1;min-width:0}
.cbot-head .ct b{font-family:var(--display);font-size:.95rem;display:block;line-height:1.1}
.cbot-head .ct span{font-size:.7rem;color:var(--green);display:inline-flex;align-items:center;gap:.4em}
.cbot-head .ct span i{width:6px;height:6px;border-radius:50%;background:var(--green);box-shadow:0 0 8px var(--green)}
.cbot-head .cx{width:32px;height:32px;border-radius:9px;display:grid;place-items:center;color:var(--ink-2);transition:.2s}
.cbot-head .cx:hover{background:rgba(255,255,255,.07);color:#fff}
.cbot-head .cx svg{width:18px;height:18px}
.cbot-log{flex:1;overflow-y:auto;padding:1.1rem;display:flex;flex-direction:column;gap:.7rem;
  scrollbar-width:thin;scrollbar-color:var(--line-2) transparent}
.cbot-log::-webkit-scrollbar{width:6px}
.cbot-log::-webkit-scrollbar-thumb{background:var(--line-2);border-radius:3px}
.msg{max-width:85%;padding:.7rem .9rem;border-radius:14px;font-size:.85rem;line-height:1.5}
.msg.bot{align-self:flex-start;background:var(--card-2);border:1px solid var(--line);border-bottom-left-radius:5px}
.msg.bot b{color:var(--teal-2)}
.msg.bot a{color:var(--teal-2);font-weight:600}
.msg.user{align-self:flex-end;background:var(--grad-teal);color:#02141a;border-bottom-right-radius:5px;font-weight:500}
.msg.urgent{border-color:rgba(233,58,93,.4);background:rgba(233,58,93,.08)}
.msg.urgent b{color:var(--crimson-2)}
.msg.urgent a{color:var(--crimson-2)}
.cbot-quick{display:flex;flex-wrap:wrap;gap:.45rem;padding:.2rem 1.1rem .4rem}
.cbot-quick button{font-size:.74rem;font-weight:600;color:var(--ink-2);padding:.45em .8em;border-radius:999px;
  border:1px solid var(--line-2);background:rgba(255,255,255,.02);transition:.2s}
.cbot-quick button:hover{border-color:var(--teal-2);color:var(--teal-2);background:rgba(67,194,212,.08)}
.cbot-quick button.urgent{border-color:rgba(233,58,93,.35);color:var(--crimson-2)}
.cbot-quick button.urgent:hover{background:rgba(233,58,93,.1)}
.cbot-foot{display:flex;align-items:center;gap:.5rem;padding:.7rem .8rem;border-top:1px solid var(--line);background:var(--bg-2)}
.cbot-foot input{flex:1;background:rgba(5,8,15,.6);border:1px solid var(--line-2);border-radius:999px;
  color:var(--ink);font-family:var(--font);font-size:.85rem;padding:.6em 1em}
.cbot-foot input:focus{outline:none;border-color:var(--teal-2)}
.cbot-foot button{width:38px;height:38px;border-radius:50%;background:var(--grad-teal);color:#02141a;
  display:grid;place-items:center;flex-shrink:0;transition:.2s}
.cbot-foot button:hover{transform:scale(1.06)}
.cbot-foot button svg{width:17px;height:17px}
/* inline lead form inside chat */
.cbot-form{align-self:stretch;max-width:100%;background:var(--card);border:1px solid var(--line-2);
  border-radius:14px;padding:.9rem;display:grid;gap:.55rem}
.cbot-form input,.cbot-form textarea{width:100%;background:rgba(5,8,15,.6);border:1px solid var(--line-2);
  border-radius:9px;color:var(--ink);font-family:var(--font);font-size:.82rem;padding:.55em .75em}
.cbot-form textarea{resize:vertical;min-height:56px}
.cbot-form input:focus,.cbot-form textarea:focus{outline:none;border-color:var(--teal-2)}
.cbot-form button{justify-content:center;background:var(--grad-teal);color:#02141a;font-family:var(--display);
  font-weight:600;font-size:.84rem;padding:.6em;border-radius:9px;display:inline-flex;align-items:center;gap:.4em}

/* ---------- Responsive ---------- */
@media(max-width:920px){
  .ctc-grid{grid-template-columns:1fr;gap:2rem}
}
@media(max-width:620px){
  .ctc-cards{grid-template-columns:1fr}
  .cbot{right:8px;bottom:8px;height:min(70vh,520px);border-radius:18px}
  .cbot-launch{right:14px;bottom:14px}
  .emg-float{bottom:86px!important;right:14px}
}
@media(prefers-reduced-motion:reduce){
  .cbot-launch .rg{animation:none}
}

/* ============================================================
   LIGHT THEME overrides for the add-on module
   ============================================================ */
/* login card */
.login-card{background:linear-gradient(180deg,#ffffff,#f5f9fd)}
.login-status{background:var(--card-2)}
.field input{background:#f4f8fc;color:var(--ink)}
.field input:focus{background:#fff;box-shadow:0 0 0 3px rgba(31,143,166,.14)}

/* services */
.svc-card .snum{color:rgba(18,42,71,.07)}

/* service detail modal */
.svc-modal-backdrop{background:rgba(15,30,50,.5);backdrop-filter:blur(4px)}
.svc-modal-close{background:rgba(255,255,255,.7)}
.svc-modal-top{background:radial-gradient(500px 180px at 80% -20%,rgba(31,143,166,.14),transparent 60%)}

/* chatbot */
.cbot-head{background:linear-gradient(135deg,rgba(31,143,166,.16),#ffffff)}
.cbot-head .cx:hover{background:rgba(18,42,71,.06);color:var(--ink)}
.cbot-quick button{background:rgba(18,42,71,.03)}
.cbot-quick button.wa{border-color:rgba(37,211,102,.45);color:#159a48}
.cbot-quick button.wa:hover{background:rgba(37,211,102,.1);color:#0f7e3a}
.cbot-foot input{background:#f4f8fc}
.cbot-form input,.cbot-form textarea{background:#f4f8fc}
.msg.bot{background:var(--card-2)}

/* ============================================================
   Deploy additions — ISO badges • hero services list •
   WhatsApp • inquiry form
   ============================================================ */
/* WhatsApp button */
.btn-wa{background:#25d366;color:#04331a;box-shadow:0 0 0 1px rgba(37,211,102,.35),0 14px 30px -14px rgba(37,211,102,.6)}
.btn-wa:hover{background:#20bd5b;color:#04331a}
.btn-wa svg{width:18px;height:18px}

/* ISO / compliance badges */
.iso-row{display:flex;flex-wrap:wrap;gap:.5rem;margin:0 0 1.6rem}
.iso-badge{display:inline-flex;align-items:center;gap:.45em;font-family:var(--display);font-weight:600;
  font-size:.72rem;color:var(--ink-2);border:1px solid var(--line-2);background:rgba(255,255,255,.6);
  border-radius:999px;padding:.42em .85em}
.iso-badge svg{width:14px;height:14px;color:var(--teal-2)}
.iso-badge.sm{font-size:.68rem;padding:.38em .72em}

/* hero interactive services list */
.hsvc{margin:0 0 1.7rem;border:1px solid var(--line);border-radius:var(--r);overflow:hidden;
  background:linear-gradient(180deg,rgba(255,255,255,.78),rgba(255,255,255,.55));
  backdrop-filter:blur(10px);box-shadow:var(--shadow)}
.hsvc-head{display:flex;align-items:baseline;justify-content:space-between;gap:.6rem;padding:.75rem 1rem;
  border-bottom:1px solid var(--line);background:rgba(255,255,255,.45)}
.hsvc-head span{font-family:var(--display);font-weight:700;font-size:.78rem;letter-spacing:.08em;text-transform:uppercase;color:var(--ink)}
.hsvc-head em{font-style:normal;font-size:.7rem;color:var(--muted)}
.hsvc-list{display:flex;flex-direction:column}
.hsvc-row{display:flex;align-items:center;gap:.8rem;padding:.68rem 1rem;border-bottom:1px solid var(--line);
  transition:background .2s,padding-left .2s}
.hsvc-row:last-child{border-bottom:none}
.hsvc-row:hover{background:rgba(31,143,166,.08);padding-left:1.3rem}
.hsvc-ic{width:34px;height:34px;border-radius:9px;flex-shrink:0;display:grid;place-items:center;
  background:rgba(31,143,166,.1);border:1px solid rgba(31,143,166,.22)}
.hsvc-ic svg{width:18px;height:18px;color:var(--teal-2)}
.hsvc-ic.warm{background:rgba(224,52,79,.1);border-color:rgba(224,52,79,.24)}
.hsvc-ic.warm svg{color:var(--crimson)}
.hsvc-tt{flex:1;min-width:0}
.hsvc-tt b{display:block;font-family:var(--display);font-size:.92rem;color:var(--ink);line-height:1.2}
.hsvc-tt span{font-size:.74rem;color:var(--muted)}
.hsvc-arrow{width:18px;height:18px;color:var(--faint);flex-shrink:0;transition:transform .2s,color .2s}
.hsvc-row:hover .hsvc-arrow{color:var(--teal-2);transform:translateX(3px)}

/* inquiry section */
.inq-grid{display:grid;grid-template-columns:1.45fr .9fr;gap:1.6rem;align-items:start}
.inq-form{border:1px solid var(--line);border-radius:var(--r);background:var(--card);padding:1.7rem;box-shadow:var(--shadow)}
.inq-2{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.inq-form .field{margin-bottom:1rem}
.inp.plain input{padding-left:1em}
.field textarea{width:100%;background:#f4f8fc;border:1px solid var(--line-2);border-radius:11px;color:var(--ink);
  font-family:var(--font);font-size:.92rem;padding:.8em 1em;resize:vertical;min-height:92px;line-height:1.5}
.field textarea::placeholder{color:var(--faint)}
.field textarea:focus{outline:none;border-color:var(--teal-2);box-shadow:0 0 0 3px rgba(31,143,166,.14);background:#fff}
.inq-actions{display:flex;gap:.7rem;flex-wrap:wrap;margin-top:.3rem}
.inq-note{font-size:.72rem;color:var(--faint);margin-top:.9rem}
.inq-msg{display:none;font-size:.84rem;border-radius:10px;padding:.7rem .9rem;margin-bottom:1.1rem}
.inq-msg.show{display:block}
.inq-msg.ok{background:rgba(18,138,93,.1);color:var(--green);border:1px solid rgba(18,138,93,.28)}
.inq-msg.warn{background:rgba(224,116,28,.1);color:var(--orange);border:1px solid rgba(224,116,28,.28)}
.inq-side{border:1px solid var(--line);border-radius:var(--r);padding:1.4rem;display:flex;flex-direction:column;gap:.7rem;
  background:linear-gradient(180deg,rgba(31,143,166,.06),var(--card))}
.inq-side-head{display:inline-flex;align-items:center;gap:.5em;font-family:var(--display);font-weight:600;
  font-size:.76rem;letter-spacing:.08em;text-transform:uppercase;color:var(--ink);margin-bottom:.2rem}
.inq-contact{display:flex;align-items:center;gap:.8rem;padding:.8rem;border:1px solid var(--line);border-radius:12px;
  background:var(--card);transition:.25s}
.inq-contact:hover{border-color:var(--teal-2);transform:translateX(3px);box-shadow:var(--shadow)}
.inq-contact .ic{width:40px;height:40px;border-radius:10px;flex-shrink:0;display:grid;place-items:center;
  background:rgba(31,143,166,.1);border:1px solid rgba(31,143,166,.2)}
.inq-contact .ic svg{width:20px;height:20px;color:var(--teal-2)}
.inq-c-t b{display:block;font-family:var(--display);font-size:.92rem;color:var(--ink)}
.inq-c-t span{font-size:.76rem;color:var(--muted)}
.inq-contact.wa .ic{background:rgba(37,211,102,.12);border-color:rgba(37,211,102,.32)}
.inq-contact.wa .ic svg{color:#1aa851}
.inq-contact.wa:hover{border-color:#25d366}
.inq-iso{display:flex;gap:.5rem;flex-wrap:wrap;margin-top:.4rem}

/* floating WhatsApp (bottom-left) */
.wa-float{position:fixed;left:20px;bottom:20px;z-index:90;width:56px;height:56px;border-radius:50%;
  display:grid;place-items:center;background:#25d366;color:#fff;
  box-shadow:0 12px 30px -10px rgba(37,211,102,.7);transition:transform .25s}
.wa-float:hover{transform:translateY(-3px) scale(1.05)}
.wa-float svg{width:28px;height:28px}
.wa-float .rg{position:absolute;inset:0;border-radius:50%;border:2px solid #25d366;animation:ping 2.6s ease-out infinite}

/* client logo marquee (real logos, scrolling) */
.logo-marquee{position:relative;overflow:hidden;margin-top:1.7rem;padding:.3rem 0;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
          mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent)}
.logo-track{display:flex;align-items:center;gap:1.1rem;width:max-content;animation:logoscroll 42s linear infinite}
.logo-marquee:hover .logo-track{animation-play-state:paused}
@keyframes logoscroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.logo-cell{flex:0 0 auto;width:176px;height:90px;display:grid;place-items:center;padding:1rem 1.5rem;
  background:#fff;border:1px solid var(--line);border-radius:14px;
  box-shadow:0 10px 26px -18px rgba(22,48,82,.4);transition:transform .3s,box-shadow .3s,border-color .3s}
.logo-cell:hover{transform:translateY(-4px);border-color:rgba(31,143,166,.4);box-shadow:var(--shadow)}
.logo-cell img{max-width:100%;max-height:50px;object-fit:contain;opacity:.92;transition:opacity .3s}
.logo-cell:hover img{opacity:1}

/* 3D tilt (applied by JS only on fine-pointer devices) */
.is-tilt{transform-style:preserve-3d}

/* high-tech SVG story scenes (layers 02–04) */
.scene-svg{position:absolute;inset:0;width:100%;height:100%;display:block}
.scene.svg-scene{background:#070d18}

/* keyboard focus visibility (publish-ready accessibility) */
:focus-visible{outline:2px solid var(--teal-2);outline-offset:2px;border-radius:5px}
.btn:focus-visible,.btn-primary:focus-visible,.btn-alert:focus-visible,.btn-wa:focus-visible,
.hsvc-row:focus-visible,.svc-more:focus-visible,.inq-contact:focus-visible{outline-offset:3px}
a:focus:not(:focus-visible),button:focus:not(:focus-visible){outline:none}

/* ============================================================
   3D SCROLL ANIMATION
   Content rotates + rises into place in 3D as it scrolls into view.
   Global (PC gets the full effect). Phones use a lighter angle via the
   ≤620 block below — that override is mobile-only and never touches PC.
   Reduced-motion users get no motion (handled in platform.css).
   ============================================================ */
.js [data-reveal],
.js [data-stagger]>*{
  transition:opacity .9s ease, transform .95s cubic-bezier(.16,.84,.24,1);
}
.js [data-reveal]{transform:perspective(1100px) rotateX(11deg) translateY(44px)}
.js [data-reveal="left"]{transform:perspective(1100px) rotateY(-17deg) translateX(-42px)}
.js [data-reveal="right"]{transform:perspective(1100px) rotateY(17deg) translateX(42px)}
.js [data-reveal="zoom"]{transform:perspective(1100px) translateZ(-100px) scale(.9)}
.js [data-stagger]>*{transform:perspective(1100px) rotateX(13deg) translateY(42px)}
/* the .in (revealed) state stays transform:none from platform.css — elements settle flat */

@media(max-width:620px){
  /* lighter 3D on phones (mobile-only — PC unaffected) */
  .js [data-reveal]{transform:perspective(900px) rotateX(6deg) translateY(26px)}
  .js [data-stagger]>*{transform:perspective(900px) rotateX(6deg) translateY(24px)}
  .js [data-reveal="left"]{transform:translateX(-22px)}
  .js [data-reveal="right"]{transform:translateX(22px)}
  .js [data-reveal="zoom"]{transform:scale(.94)}
}

@media(max-width:920px){
  .inq-grid{grid-template-columns:1fr}
}
@media(max-width:620px){
  .inq-2{grid-template-columns:1fr}
  .wa-float{left:14px;bottom:14px;width:50px;height:50px}
  .wa-float svg{width:24px;height:24px}
  .logo-cell{width:148px;height:78px;padding:.9rem 1.2rem}
  .logo-cell img{max-height:42px}
  /* --- streamline the tall mobile hero --- */
  .hero{padding-top:90px}
  .hero h1{font-size:1.95rem;line-height:1.16;letter-spacing:-.01em}
  .hero-sub{font-size:.98rem}
  .hero .hsvc{display:none}              /* same 6 services appear in #services right below */
  .hero .iso-row{margin-bottom:1.1rem}
  .hero-cta{margin-bottom:0}
  /* --- emergency FAB → compact icon-only circle (declutter mobile) --- */
  .emg-float{padding:0;width:48px;height:48px;border-radius:50%;justify-content:center;bottom:86px!important;right:14px}
  .emg-float .emg-label{display:none}
  .emg-float svg{width:22px;height:22px}
  /* --- comfier footer tap targets --- */
  .footer-col a{padding:.5rem 0}
}
@media(prefers-reduced-motion:reduce){
  .wa-float .rg{animation:none}
  .logo-track{animation:none;flex-wrap:wrap;justify-content:center}
}
