/* ===== AI Futuremakers — "Find out more" lead modal (shared across pages) ===== */
.fom-overlay{ position:fixed; inset:0; z-index:100000; display:none; align-items:center; justify-content:center; padding:20px; background:rgba(6,5,14,.74); -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px); }
.fom-overlay.open{ display:flex; }
.fom-modal{ position:relative; width:470px; max-width:100%; max-height:88vh; display:flex; flex-direction:column; overflow:hidden; border-radius:22px; border:1px solid rgba(255,255,255,.14); background:rgba(13,11,28,.99); box-shadow:0 40px 110px -28px rgba(0,0,0,.92); font-family:'Helvetica Neue',Helvetica,Arial,sans-serif; }
.fom-head{ display:flex; align-items:center; gap:12px; padding:16px 18px; border-bottom:1px solid rgba(255,255,255,.08); }
.fom-orb{ width:18px; height:18px; flex:0 0 auto; border-radius:50%; background:radial-gradient(circle at 35% 30%,#fff,#E8185A 45%,#7A1FFF 90%); box-shadow:0 0 12px rgba(232,24,90,.8); }
.fom-head b{ color:#fff; font-size:15px; display:block; line-height:1.1; }
.fom-head i{ font-style:normal; color:rgba(255,255,255,.5); font-size:12px; }
.fom-back{ background:none; border:none; color:rgba(255,255,255,.6); cursor:pointer; font-size:13px; font-weight:700; padding:5px 9px; border-radius:8px; display:none; }
.fom-back:hover{ color:#fff; background:rgba(255,255,255,.08); }
.fom-x{ margin-left:auto; background:rgba(255,255,255,.06); border:none; color:rgba(255,255,255,.75); width:34px; height:34px; border-radius:9px; cursor:pointer; font-size:22px; line-height:1; }
.fom-x:hover{ background:rgba(232,24,90,.25); color:#fff; }
.fom-body{ padding:20px; overflow-y:auto; }
.fom-choice{ display:flex; flex-direction:column; gap:13px; }
.fom-choice .sub{ color:rgba(255,255,255,.62); font-size:13.5px; line-height:1.5; margin-bottom:2px; }
.fom-opt{ display:flex; align-items:center; gap:14px; text-align:left; padding:16px 18px; border-radius:14px; border:1px solid rgba(255,255,255,.16); background:rgba(255,255,255,.04); color:#fff; cursor:pointer; transition:border-color .2s, background .2s, transform .15s; font-family:inherit; }
.fom-opt:hover{ border-color:#E8185A; background:rgba(232,24,90,.12); transform:translateY(-1px); }
.fom-opt .ic{ width:42px; height:42px; flex:0 0 auto; border-radius:12px; display:flex; align-items:center; justify-content:center; background:rgba(232,24,90,.18); }
.fom-opt .ic svg{ width:22px; height:22px; stroke:#fff; fill:none; stroke-width:2; }
.fom-opt .ic svg.fom-ic-star{ fill:#fff; stroke:none; }
.fom-opt b{ display:block; font-size:15px; }
.fom-opt small{ display:block; color:rgba(255,255,255,.55); font-size:12.5px; margin-top:3px; line-height:1.4; }
.fom-chat{ display:flex; flex-direction:column; height:min(58vh,440px); }
.fom-msgs{ flex:1; overflow-y:auto; display:flex; flex-direction:column; gap:10px; padding-right:4px; }
.fom-m{ font-size:13.5px; line-height:1.5; padding:11px 14px; border-radius:14px; max-width:92%; }
.fom-m.bot{ background:rgba(255,255,255,.06); color:rgba(255,255,255,.92); align-self:flex-start; border-bottom-left-radius:4px; }
.fom-m.you{ background:rgba(232,24,90,.85); color:#fff; align-self:flex-end; border-bottom-right-radius:4px; }
.fom-m .gobtn{ display:inline-block; margin-top:9px; padding:8px 14px; border-radius:10px; background:#E8185A; color:#fff; font-size:12px; font-weight:800; text-decoration:none; letter-spacing:.4px; border:none; cursor:pointer; font-family:inherit; }
.fom-sugg{ display:flex; flex-wrap:wrap; gap:7px; margin-top:10px; }
.fom-sugg button{ border:1px solid rgba(255,255,255,.18); background:rgba(255,255,255,.03); color:#fff; font-size:12px; padding:7px 11px; border-radius:999px; cursor:pointer; font-family:inherit; }
.fom-sugg button:hover{ border-color:#E8185A; background:rgba(232,24,90,.14); }
.fom-input{ display:flex; gap:8px; margin-top:12px; }
.fom-input input{ flex:1; padding:12px 14px; border-radius:12px; border:1px solid rgba(255,255,255,.18); background:rgba(255,255,255,.05); color:#fff; font-size:14px; font-family:inherit; }
.fom-input input:focus{ outline:none; border-color:#E8185A; }
.fom-input button{ padding:0 18px; border-radius:12px; border:none; background:#E8185A; color:#fff; font-weight:800; cursor:pointer; font-family:inherit; }
.fom-form{ display:flex; flex-direction:column; gap:12px; }
.fom-form .intro{ color:rgba(255,255,255,.62); font-size:13.5px; line-height:1.5; margin-bottom:2px; }
.fom-form label{ display:flex; flex-direction:column; gap:6px; font-size:11px; font-weight:700; letter-spacing:.5px; text-transform:uppercase; color:rgba(255,255,255,.55); }
.fom-form input{ padding:12px 14px; border-radius:12px; border:1px solid rgba(255,255,255,.18); background:rgba(255,255,255,.05); color:#fff; font-size:14px; font-family:inherit; }
.fom-form input:focus{ outline:none; border-color:#E8185A; }
.fom-err{ color:#ff7aa2; font-size:12.5px; min-height:15px; }
.fom-submit{ margin-top:2px; padding:14px; border-radius:12px; border:none; background:linear-gradient(120deg,#E8185A,#FF2D6F); color:#fff; font-size:15px; font-weight:800; cursor:pointer; font-family:inherit; }
.fom-submit:disabled{ opacity:.6; cursor:default; }
.fom-thanks{ text-align:center; padding:24px 10px; }
.fom-thanks .chk{ width:58px; height:58px; margin:0 auto 14px; border-radius:50%; background:rgba(232,24,90,.16); display:flex; align-items:center; justify-content:center; color:#FF2D6F; font-size:30px; }
.fom-thanks h3{ color:#fff; font-size:20px; margin:0 0 8px; }
.fom-thanks p{ color:rgba(255,255,255,.65); font-size:14px; line-height:1.5; }
@media (max-width:560px){ .fom-modal{ width:100%; max-height:92vh; } }
