/* ============ UBUNGO PLAZA COMPLEX — SHARED DESIGN SYSTEM ============ */
:root{
  --bg:#F9F9F9;
  --ink:#092634;
  --blue:#004E72;
  --accent:#FF6E42;
  --accent-dim:#e85f34;
  --card:#FFFFFF;
  --line:rgba(9,38,52,0.12);
  --muted:#5C7688;
  --radius:14px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important;}
}
body{margin:0; background:var(--bg); color:var(--ink); font-family:'Inter',system-ui,sans-serif; -webkit-font-smoothing:antialiased; line-height:1.5;}
h1,h2,h3,.display{font-family:'Space Grotesk',sans-serif; letter-spacing:-0.01em; margin:0;}
.mono{font-family:'IBM Plex Mono',monospace;}
a{color:inherit;}
img,svg{display:block; max-width:100%;}
:focus-visible{outline:2px solid var(--accent); outline-offset:3px;}
.wrap{max-width:1180px; margin:0 auto; padding:0 28px;}
section{padding:80px 0;}
@media (max-width:720px){ section{padding:52px 0;} }

.eyebrow{font-family:'IBM Plex Mono',monospace; font-size:12px; text-transform:uppercase; letter-spacing:0.14em; color:var(--accent); font-weight:500; margin-bottom:14px; display:block;}
.section-head{max-width:640px; margin-bottom:44px;}
.section-head h2{font-size:clamp(26px,3.2vw,38px); font-weight:600;}
.section-head p{color:var(--muted); font-size:16px; margin-top:12px;}

/* ---------- NAV ---------- */
header{position:sticky; top:0; z-index:50; background:rgba(249,249,249,0.9); backdrop-filter:blur(10px); border-bottom:1px solid var(--line);}
nav.wrap{display:flex; align-items:center; justify-content:space-between; height:76px;}
.logo{display:flex; align-items:center; gap:10px; font-family:'Space Grotesk'; font-weight:700; font-size:18px; text-decoration:none; color:var(--ink);}
.logo .mark{width:30px; height:30px; border-radius:8px; background:var(--ink); position:relative; flex:none;}
.logo .mark::before,.logo .mark::after{content:""; position:absolute; background:var(--accent);}
.logo .mark::before{width:100%; height:2px; top:14px; left:0;}
.logo .mark::after{width:2px; height:100%; left:14px; top:0;}
.nav-links{display:flex; gap:28px; list-style:none; margin:0; padding:0; font-size:14.5px; font-weight:500;}
.nav-links a{text-decoration:none; color:var(--ink); opacity:0.75; transition:opacity .15s;}
.nav-links a:hover,.nav-links a.current{opacity:1;}
.nav-links a.current{color:var(--accent); opacity:1;}
.nav-right{display:flex; align-items:center; gap:14px;}
.nav-cta{background:var(--accent); color:#fff; border:none; font-family:'Inter'; font-weight:600; font-size:14px; padding:11px 20px; border-radius:100px; cursor:pointer; text-decoration:none; display:inline-block; box-shadow:0 6px 16px rgba(255,110,66,0.28); transition:transform .15s, box-shadow .15s;}
.nav-cta:hover{transform:translateY(-1px); box-shadow:0 10px 20px rgba(255,110,66,0.36);}
.nav-toggle{display:none; background:none; border:none; cursor:pointer; padding:6px;}
.nav-toggle span{display:block; width:22px; height:2px; background:var(--ink); margin:5px 0;}
@media (max-width:920px){ .nav-links{display:none;} .nav-toggle{display:block;} }

.avatar-wrap{position:relative;}
.avatar-btn{width:38px; height:38px; border-radius:50%; border:1.5px solid var(--line); background:var(--bg); display:flex; align-items:center; justify-content:center; cursor:pointer; padding:0; flex:none; transition:border-color .15s;}
.avatar-btn:hover{border-color:var(--accent);}
.avatar-btn svg{width:18px; height:18px; stroke:var(--ink);}
.avatar-menu{position:absolute; top:calc(100% + 12px); right:0; width:250px; background:var(--card); border:1px solid var(--line); border-radius:14px; box-shadow:0 18px 40px rgba(9,38,52,0.14); padding:18px; opacity:0; visibility:hidden; transform:translateY(-6px); transition:opacity .15s, transform .15s, visibility .15s; z-index:80;}
.avatar-menu.open{opacity:1; visibility:visible; transform:translateY(0);}
.avatar-menu .menu-head{font-size:13px; color:var(--muted); margin-bottom:14px; line-height:1.4;}
.avatar-menu .menu-head b{display:block; color:var(--ink); font-family:'Space Grotesk'; font-size:15px; margin-bottom:2px;}
.menu-btn-primary{display:block; width:100%; text-align:center; background:var(--accent); color:#fff; font-weight:600; font-size:13.5px; padding:11px; border-radius:100px; text-decoration:none; border:none; cursor:pointer; margin-bottom:10px;}
.menu-btn-ghost{display:block; width:100%; text-align:center; background:transparent; color:var(--ink); font-weight:600; font-size:13.5px; padding:10px; border-radius:100px; text-decoration:none; border:1px solid var(--line); cursor:pointer;}
.menu-divider{height:1px; background:var(--line); margin:16px 0;}
.menu-links{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:2px;}
.menu-links a{display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--ink); font-size:13.5px; padding:9px 6px; border-radius:8px; transition:background .12s;}
.menu-links a:hover{background:var(--bg);}
.menu-links a svg{width:15px; height:15px; stroke:var(--muted); flex:none;}

/* ---------- PAGE HERO (dark, shared across inner pages) ---------- */
.page-hero{background:radial-gradient(1100px 500px at 12% -10%, #0d3a52 0%, var(--ink) 55%, #061922 100%); color:#fff; padding:70px 0 60px; position:relative; overflow:hidden;}
.page-hero.has-photo{background-size:cover; background-position:center;}
.page-hero.has-photo::before{content:""; position:absolute; inset:0; background:linear-gradient(100deg, rgba(6,25,34,0.94) 0%, rgba(6,25,34,0.75) 42%, rgba(6,25,34,0.4) 100%); z-index:0;}
.page-hero .wrap{position:relative; z-index:2;}
.hero3d-canvas{position:absolute; inset:0; width:100%; height:100%; z-index:1; pointer-events:none; display:block;}
.page-hero .eyebrow{color:#ffb59c;}
.page-hero h1{font-size:clamp(30px,4.4vw,46px); font-weight:600; line-height:1.08; color:#fff; max-width:760px;}
.page-hero p.lede{color:#c7d7de; font-size:16.5px; max-width:560px; margin-top:16px;}
.hero-actions{display:flex; gap:14px; margin-top:28px; flex-wrap:wrap;}
.btn-primary{background:var(--accent); color:#fff; padding:14px 26px; border-radius:100px; font-weight:600; text-decoration:none; font-size:14.5px; border:none; cursor:pointer; display:inline-block;}
.btn-primary:hover{background:var(--accent-dim);}
.btn-ghost{background:transparent; color:#fff; padding:14px 26px; border-radius:100px; font-weight:600; text-decoration:none; font-size:14.5px; border:1px solid rgba(255,255,255,0.3); cursor:pointer; display:inline-block;}
.btn-ghost.on-light{color:var(--ink); border-color:var(--line);}
.btn-secondary{background:var(--blue); color:#fff; padding:13px 22px; border-radius:100px; font-weight:600; text-decoration:none; font-size:14px; border:none; cursor:pointer; display:inline-block;}

/* ---------- STICKY SUB-BAR ---------- */
.sticky-bar{position:sticky; top:76px; z-index:40; background:var(--card); border-bottom:1px solid var(--line); box-shadow:0 8px 20px rgba(9,38,52,0.05);}
.sticky-bar .wrap{display:flex; align-items:center; gap:16px; padding-top:14px; padding-bottom:14px; flex-wrap:wrap;}
.sb-field{display:flex; flex-direction:column; gap:4px; flex:1; min-width:130px;}
.sb-field label{font-family:'IBM Plex Mono'; font-size:10.5px; text-transform:uppercase; letter-spacing:0.05em; color:var(--muted);}
.sb-field input,.sb-field select{border:1px solid var(--line); border-radius:9px; padding:9px 10px; font-family:'Inter'; font-size:13.5px; background:var(--bg); color:var(--ink);}

/* ---------- TABS / SEGMENTED ---------- */
.tabs{display:inline-flex; background:var(--card); border:1px solid var(--line); border-radius:100px; padding:4px; gap:2px;}
.tabs button{background:none; border:none; padding:10px 18px; border-radius:100px; font-family:'Inter'; font-weight:600; font-size:13.5px; color:var(--muted); cursor:pointer;}
.tabs button.active{background:var(--ink); color:#fff;}
.tab-panel{display:none;}
.tab-panel.active{display:block;}

.seg{display:flex; background:rgba(0,0,0,0.3); border-radius:100px; padding:4px; gap:2px;}
.seg.on-light{background:var(--bg); border:1px solid var(--line);}
.seg button{flex:1; background:none; border:none; color:#cfe0e6; font-family:'Inter'; font-size:13px; font-weight:600; padding:9px 10px; border-radius:100px; cursor:pointer;}
.seg.on-light button{color:var(--muted);}
.seg button.active{background:var(--accent); color:#fff;}

/* ---------- CARDS / GRIDS ---------- */
.grid-2{display:grid; grid-template-columns:1fr 1fr; gap:24px;}
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
.grid-4{display:grid; grid-template-columns:repeat(4,1fr); gap:18px;}
@media (max-width:860px){ .grid-2,.grid-3,.grid-4{grid-template-columns:1fr;} }
@media (min-width:640px) and (max-width:860px){ .grid-4{grid-template-columns:1fr 1fr;} }

.card{background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:26px; transition:transform .18s, box-shadow .18s;}
.card:hover{transform:translateY(-3px); box-shadow:0 14px 30px rgba(9,38,52,0.08);}
.card .tag{font-family:'IBM Plex Mono'; font-size:11px; text-transform:uppercase; letter-spacing:0.08em; color:var(--blue); background:rgba(0,78,114,0.08); padding:5px 10px; border-radius:100px; display:inline-block; margin-bottom:16px;}
.card h3{font-size:19px; font-weight:600; margin-bottom:8px;}
.card p{color:var(--muted); font-size:14.5px;}
.badge-row{display:flex; flex-wrap:wrap; gap:8px; margin-top:16px;}
.badge{font-family:'IBM Plex Mono'; font-size:11.5px; background:var(--bg); border:1px solid var(--line); color:var(--ink); padding:6px 11px; border-radius:8px;}
.price-tag{font-family:'Space Grotesk'; font-size:22px; font-weight:600; color:var(--accent); margin-top:16px;}
.price-tag span{font-family:'IBM Plex Mono'; font-size:12px; color:var(--muted); font-weight:400;}

.stat-card{background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:26px;}
.stat-card b{display:block; font-family:'Space Grotesk'; font-size:34px; font-weight:600; color:var(--ink);}
.stat-card span{font-family:'IBM Plex Mono'; font-size:11.5px; text-transform:uppercase; letter-spacing:0.05em; color:var(--muted);}

.gallery-tabs{display:flex; gap:8px; margin-bottom:14px; flex-wrap:wrap;}
.gallery-tabs button{background:var(--bg); border:1px solid var(--line); padding:8px 14px; border-radius:100px; font-size:12.5px; font-weight:600; color:var(--muted); cursor:pointer;}
.gallery-tabs button.active{background:var(--ink); color:#fff; border-color:var(--ink);}
.gallery-frame{aspect-ratio:16/9; border-radius:12px; display:none; flex-direction:column; align-items:center; justify-content:center; gap:14px; color:#fff; font-family:'IBM Plex Mono'; font-size:12.5px; letter-spacing:0.03em; text-align:center; padding:20px; position:relative; overflow:hidden;}
.gallery-frame.active{display:flex;}
.gallery-frame .room-caption{max-width:280px; color:rgba(255,255,255,0.85); line-height:1.4;}
.room-icon{width:64px; height:64px; position:relative; z-index:1;}
.room-icon svg{width:100%; height:100%; overflow:visible;}
.room-icon .ri-stroke{fill:none; stroke:#fff; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; stroke-dasharray:1; stroke-dashoffset:1; animation:ri-draw 1.6s ease forwards;}
.gallery-frame.active .room-icon .ri-stroke{animation:ri-draw 1.6s ease forwards;}
@keyframes ri-draw{ to{ stroke-dashoffset:0; } }
.room-icon .ri-glow{fill:var(--accent); opacity:0.55; animation:ri-pulse 2.6s ease-in-out infinite;}
@keyframes ri-pulse{ 0%,100%{opacity:0.35; transform:scale(0.9);} 50%{opacity:0.75; transform:scale(1.08);} }
.room-icon .ri-steam{fill:none; stroke:rgba(255,255,255,0.7); stroke-width:1.4; stroke-linecap:round; transform-origin:center bottom; animation:ri-steam 2.4s ease-in-out infinite;}
.room-icon .ri-steam.d2{animation-delay:.4s;}
.room-icon .ri-steam.d3{animation-delay:.8s;}
@keyframes ri-steam{ 0%{opacity:0; transform:translateY(4px);} 30%{opacity:0.8;} 100%{opacity:0; transform:translateY(-8px);} }
.room-icon .ri-twinkle{fill:#fff; animation:ri-twinkle 2.2s ease-in-out infinite;}
.room-icon .ri-twinkle.d2{animation-delay:.5s;}
.room-icon .ri-twinkle.d3{animation-delay:1s;}
@keyframes ri-twinkle{ 0%,100%{opacity:0.25;} 50%{opacity:1;} }
.room-icon .ri-blink{fill:var(--accent); animation:ri-blink 1.3s step-end infinite;}
@keyframes ri-blink{ 0%,49%{opacity:1;} 50%,100%{opacity:0;} }
.gallery-frame::before{content:""; position:absolute; inset:0; background:radial-gradient(circle at 50% 35%, rgba(255,255,255,0.08), transparent 60%); pointer-events:none;}

.floorplan-card{background:linear-gradient(135deg,#eef3f5,#e2ebee); border:1px solid var(--line); border-radius:16px; padding:24px; aspect-ratio:4/3; position:relative; overflow:hidden;}
.floorplan-card .grid-lines{position:absolute; inset:20px; background-image:linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size:24px 24px; border:1.5px dashed var(--blue); border-radius:8px; opacity:0.6;}
.floorplan-card .fp-label{position:absolute; top:14px; left:14px; z-index:2; background:rgba(255,255,255,0.85); font-family:'IBM Plex Mono'; font-size:11px; padding:4px 10px; border-radius:100px; color:var(--blue);}

/* Animated office blueprint (replaces the flat grid placeholder) */
.office-plan-wrap{position:absolute; inset:20px; overflow:hidden;}
.office-plan-wrap svg{width:100%; height:100%;}
.office-plan-wrap::after{
  content:""; position:absolute; left:0; right:0; top:0; height:2px;
  background:linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity:0.55; animation:op-scan 4s linear infinite;
}
@keyframes op-scan{ 0%{top:0%;} 100%{top:100%;} }
.op-wall{fill:none; stroke:var(--blue); stroke-width:1.6; stroke-dasharray:1; stroke-dashoffset:1; animation:op-draw 2s ease forwards;}
@keyframes op-draw{ to{ stroke-dashoffset:0; } }
.op-desk{fill:none; stroke:var(--line); stroke-width:1.2;}
.op-dot{fill:#2FA35A; animation:op-pulse 2.2s ease-in-out infinite;}
.op-dot.d2{animation-delay:.5s;}
.op-dot.d3{animation-delay:1s;}
.op-dot.d4{animation-delay:1.4s;}
@keyframes op-pulse{ 0%,100%{opacity:.35; r:2.4;} 50%{opacity:1; r:3.6;} }
.op-label{fill:var(--muted); font-family:'IBM Plex Mono'; font-size:6.5px; letter-spacing:0.04em; text-transform:uppercase;}

/* ---------- DARK PANEL / CALCULATOR ---------- */
.dark-panel{background:var(--ink); border-radius:20px; padding:36px; color:#fff;}
.calc-shell{display:grid; grid-template-columns:1fr 1fr; gap:36px;}
@media (max-width:860px){ .calc-shell{grid-template-columns:1fr;} }
.calc-panel{background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14); border-radius:16px; padding:24px;}
.calc-field{margin-bottom:20px;}
.calc-field label{font-family:'IBM Plex Mono'; font-size:11.5px; color:#9db3bd; text-transform:uppercase; letter-spacing:0.05em; display:block; margin-bottom:10px;}
input[type="range"]{-webkit-appearance:none; flex:1; height:4px; background:rgba(255,255,255,0.2); border-radius:4px; outline:none;}
input[type="range"]::-webkit-slider-thumb{-webkit-appearance:none; width:18px; height:18px; border-radius:50%; background:var(--accent); cursor:pointer; border:3px solid #fff;}
input[type="range"]::-moz-range-thumb{width:18px; height:18px; border-radius:50%; background:var(--accent); cursor:pointer; border:3px solid #fff;}
.slider-row{display:flex; align-items:center; gap:14px;}
.slider-val{font-family:'IBM Plex Mono'; font-size:13.5px; min-width:70px; text-align:right;}
.calc-select{width:100%; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.18); color:#fff; border-radius:9px; padding:11px 12px; font-family:'Inter'; font-size:14px;}
.calc-select option{color:#111;}
.calc-total{display:flex; justify-content:space-between; align-items:baseline; margin-top:22px; padding-top:18px; border-top:1px solid rgba(255,255,255,0.16);}
.calc-total span{font-family:'IBM Plex Mono'; font-size:12px; color:#9db3bd; text-transform:uppercase; letter-spacing:0.05em;}
.calc-total b{font-family:'Space Grotesk'; font-size:28px; color:var(--accent); font-weight:600;}
.check-row{display:flex; align-items:flex-start; gap:10px; margin-bottom:12px; font-size:13.5px; color:#cfe0e6;}
.check-row input{margin-top:3px; accent-color:var(--accent);}
.capacity-list{list-style:none; padding:0; margin:0 0 24px; display:flex; flex-direction:column; gap:10px;}
.capacity-list li{display:flex; justify-content:space-between; font-family:'IBM Plex Mono'; font-size:13px; color:#cfe0e6; border-bottom:1px dashed rgba(255,255,255,0.15); padding-bottom:8px;}
.capacity-list li b{color:#fff; font-weight:500;}

/* ---------- TABLES ---------- */
.compare-table{width:100%; border-collapse:collapse; background:var(--card); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;}
.compare-table th,.compare-table td{padding:14px 16px; text-align:left; font-size:13.5px; border-bottom:1px solid var(--line);}
.compare-table th{font-family:'IBM Plex Mono'; font-size:11px; text-transform:uppercase; letter-spacing:0.05em; color:var(--muted); background:var(--bg);}
.compare-table td.hl{color:var(--accent); font-weight:600;}
.tt{position:relative; border-bottom:1px dotted var(--blue); cursor:help;}
.tt .tt-pop{position:absolute; bottom:calc(100% + 8px); left:0; width:220px; background:var(--ink); color:#fff; font-size:12px; padding:10px 12px; border-radius:8px; opacity:0; pointer-events:none; transition:opacity .15s; z-index:10;}
.tt:hover .tt-pop{opacity:1;}

/* ---------- FORMS ---------- */
.form-card{background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:30px;}
.form-grid{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
@media (max-width:640px){ .form-grid{grid-template-columns:1fr;} }
.f-field{display:flex; flex-direction:column; gap:6px; margin-bottom:16px;}
.f-field.full{grid-column:1/-1;}
.f-field label{font-family:'IBM Plex Mono'; font-size:11px; text-transform:uppercase; letter-spacing:0.05em; color:var(--muted);}
.f-field input,.f-field select,.f-field textarea{border:1px solid var(--line); border-radius:9px; padding:11px 12px; font-family:'Inter'; font-size:14px; background:var(--bg); color:var(--ink);}
.radio-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:10px;}
@media (max-width:640px){ .radio-grid{grid-template-columns:1fr;} }
.radio-card{border:1.5px solid var(--line); border-radius:12px; padding:14px; cursor:pointer; font-size:13.5px; position:relative;}
.radio-card input{position:absolute; opacity:0;}
.radio-card b{display:block; font-family:'Space Grotesk'; font-size:14.5px; margin-bottom:3px;}
.radio-card span{color:var(--muted); font-size:12.5px;}
.radio-card:has(input:checked){border-color:var(--accent); background:rgba(255,110,66,0.06);}
.confirm-box{background:rgba(0,78,114,0.06); border:1px solid rgba(0,78,114,0.2); border-radius:12px; padding:16px 18px; font-size:13.5px; color:var(--blue); margin-top:16px;}

.stepper-count{display:flex; align-items:center; gap:14px;}
.stepper-count button{width:32px; height:32px; border-radius:50%; border:1px solid var(--line); background:var(--card); font-size:16px; cursor:pointer;}
.stepper-count span{font-family:'IBM Plex Mono'; min-width:20px; text-align:center;}

/* ---------- MISC BANDS ---------- */
.transit-band{background:var(--blue); color:#fff; border-radius:20px; padding:40px; display:grid; grid-template-columns:1.1fr 0.9fr; gap:40px;}
@media (max-width:860px){ .transit-band{grid-template-columns:1fr;} }
.transit-band h3{font-size:22px; font-weight:600;}
.transit-band p{color:#cfe3ea; font-size:14.5px; margin-top:10px;}
.route-item{display:flex; justify-content:space-between; align-items:center; padding:14px 0; border-bottom:1px solid rgba(255,255,255,0.18); font-size:14px;}
.route-item:last-child{border-bottom:none;}
.route-item .time{font-family:'IBM Plex Mono'; background:rgba(255,255,255,0.14); padding:5px 12px; border-radius:100px; font-size:12.5px;}

.cta-band{background:var(--ink); border-radius:24px; padding:52px; text-align:center;}
.cta-band h2{color:#fff; font-size:clamp(24px,3.4vw,32px);}
.cta-band p{color:#a9bfc9; margin-top:12px; max-width:480px; margin-left:auto; margin-right:auto;}
.cta-band .hero-actions{justify-content:center; margin-top:24px;}

.split{display:grid; grid-template-columns:1fr 1fr; gap:52px; align-items:center;}
@media (max-width:900px){ .split{grid-template-columns:1fr;} }

/* ---------- FOOTER ---------- */
footer{background:#061922; color:#9db3bd; padding:60px 0 30px; margin-top:20px;}
.foot-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px; margin-bottom:44px;}
@media (max-width:760px){ .foot-grid{grid-template-columns:1fr 1fr;} }
.foot-grid h4{color:#fff; font-size:13px; text-transform:uppercase; letter-spacing:0.06em; font-family:'IBM Plex Mono'; margin-bottom:16px;}
.foot-grid ul{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; font-size:14px;}
.foot-grid ul a{text-decoration:none; color:#9db3bd;}
.foot-grid ul a:hover{color:#fff;}
.pay-row{display:flex; flex-wrap:wrap; gap:8px; margin-top:14px;}
.pay-chip{font-family:'IBM Plex Mono'; font-size:11px; border:1px solid rgba(255,255,255,0.18); padding:6px 10px; border-radius:6px; color:#cfe0e6;}
.foot-bottom{border-top:1px solid rgba(255,255,255,0.1); padding-top:22px; display:flex; justify-content:space-between; font-size:12.5px; flex-wrap:wrap; gap:12px;}

/* ---------- FOOTER v2 (brand authority) ---------- */
.foot-brand-bio{font-size:13.5px; color:#9db3bd; margin-top:14px; max-width:280px; line-height:1.55;}
.foot-social{display:flex; gap:10px; margin-top:18px;}
.foot-social a{width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,0.16); display:flex; align-items:center; justify-content:center; transition:border-color .15s, background .15s;}
.foot-social a:hover{border-color:var(--accent); background:rgba(255,110,66,0.1);}
.foot-social svg{width:15px; height:15px; stroke:#cfe0e6;}
.foot-strip{border-top:1px solid rgba(255,255,255,0.1); padding:28px 0; display:flex; justify-content:space-between; align-items:center; gap:24px; flex-wrap:wrap;}
.foot-newsletter{display:flex; gap:8px; flex-wrap:wrap;}
.foot-newsletter input{background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.18); color:#fff; border-radius:9px; padding:10px 14px; font-family:'Inter'; font-size:13.5px; min-width:220px;}
.foot-newsletter input::placeholder{color:#7d95a1;}
.foot-newsletter button{background:var(--accent); color:#fff; border:none; border-radius:9px; padding:10px 18px; font-weight:600; font-size:13.5px; cursor:pointer;}
.trust-badges{display:flex; gap:10px; flex-wrap:wrap;}
.trust-badge{display:flex; align-items:center; gap:7px; font-family:'IBM Plex Mono'; font-size:11px; color:#9db3bd; border:1px solid rgba(255,255,255,0.14); padding:6px 11px; border-radius:100px;}
.trust-badge svg{width:12px; height:12px; stroke:#4CD07D; flex:none;}
.foot-legal-links{display:flex; gap:16px; flex-wrap:wrap; font-size:12.5px;}
.foot-legal-links a{text-decoration:none; color:#9db3bd;}
.foot-legal-links a:hover{color:#fff;}

.wa-bubble{position:fixed; bottom:22px; right:22px; width:58px; height:58px; border-radius:50%; background:#25D366; display:flex; align-items:center; justify-content:center; box-shadow:0 10px 24px rgba(0,0,0,0.25); z-index:60; cursor:pointer; border:none;}
.wa-bubble svg{width:28px; height:28px;}

/* ---------- LOGIN SPLIT ---------- */
.login-shell{display:grid; grid-template-columns:1fr 1fr; min-height:640px; border-radius:22px; overflow:hidden; border:1px solid var(--line);}
@media (max-width:860px){ .login-shell{grid-template-columns:1fr;} }
.login-visual{
  position:relative; color:#fff; padding:44px; display:flex; flex-direction:column; justify-content:flex-end;
  min-height:320px; background-size:cover; background-position:center; overflow:hidden;
}
.login-visual::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(6,25,34,0.35) 0%, rgba(6,25,34,0.55) 55%, rgba(6,25,34,0.92) 100%);
  z-index:0;
}
.login-visual > *{position:relative; z-index:1;}
.login-visual.lv-individual{background-image:url('images/plaza-exterior-aerial.jpeg');}
.login-visual.lv-corporate{background-image:url('images/plaza-conference-audience.jpeg');}
.login-visual .badge-row{margin-top:18px;}
.login-visual .lv-tag{
  display:inline-flex; align-items:center; gap:6px; font-family:'IBM Plex Mono'; font-size:11px; text-transform:uppercase;
  letter-spacing:0.06em; background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.22); color:#fff;
  padding:6px 12px; border-radius:100px; margin-bottom:16px; width:fit-content; backdrop-filter:blur(4px);
}
.login-visual .lv-tag .dot{width:6px; height:6px; border-radius:50%; background:var(--accent);}
.login-form-side{background:var(--card); padding:44px;}
.mode-toggle{display:flex; background:var(--bg); border:1px solid var(--line); border-radius:100px; padding:4px; margin-bottom:28px;}
.mode-toggle button{flex:1; background:none; border:none; padding:11px; border-radius:100px; font-weight:600; font-size:13.5px; color:var(--muted); cursor:pointer;}
.mode-toggle button.active{background:var(--ink); color:#fff;}
.social-row{display:flex; flex-direction:column; gap:10px; margin-bottom:22px;}
.social-btn{display:flex; align-items:center; justify-content:center; gap:10px; border:1px solid var(--line); background:var(--card); padding:11px; border-radius:10px; font-weight:600; font-size:13.5px; cursor:pointer;}
.or-divider{display:flex; align-items:center; gap:12px; color:var(--muted); font-size:12px; margin:18px 0; font-family:'IBM Plex Mono';}
.or-divider::before,.or-divider::after{content:""; flex:1; height:1px; background:var(--line);}
.incentive-banner{background:rgba(255,110,66,0.08); border:1px solid rgba(255,110,66,0.25); color:var(--accent-dim); font-size:13px; padding:12px 14px; border-radius:10px; margin-bottom:22px;}
.pw-field{position:relative;}
.pw-toggle{position:absolute; right:10px; top:9px; background:none; border:none; cursor:pointer; color:var(--muted); font-size:12px; font-family:'IBM Plex Mono';}
.trust-row{display:flex; gap:14px; margin-top:20px; flex-wrap:wrap;}
.trust-chip{font-family:'IBM Plex Mono'; font-size:10.5px; color:var(--muted); display:flex; align-items:center; gap:6px;}
.trust-chip .dot{width:6px; height:6px; border-radius:50%; background:#2FA35A;}

/* ---------- AI PLAZA ASSISTANT WIDGET ---------- */
.ai-widget{position:fixed; bottom:22px; left:22px; z-index:65; font-family:'Inter',sans-serif;}
.ai-toggle-btn{width:58px; height:58px; border-radius:50%; background:var(--ink); border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:0 10px 24px rgba(9,38,52,0.35); position:relative; transition:transform .15s;}
.ai-toggle-btn:hover{transform:translateY(-2px);}
.ai-toggle-btn svg{width:25px; height:25px; stroke:#fff;}
.ai-toggle-btn .ai-badge-dot{position:absolute; top:1px; right:1px; width:13px; height:13px; border-radius:50%; background:var(--accent); border:2.5px solid var(--bg);}
.ai-panel{
  position:absolute; bottom:74px; left:0; width:340px; max-width:calc(100vw - 44px); background:var(--card);
  border:1px solid var(--line); border-radius:18px; box-shadow:0 24px 60px rgba(9,38,52,0.25);
  display:flex; flex-direction:column; overflow:hidden;
  opacity:0; visibility:hidden; transform:translateY(10px) scale(0.97); transition:opacity .18s, transform .18s, visibility .18s;
}
.ai-panel.open{opacity:1; visibility:visible; transform:translateY(0) scale(1);}
.ai-panel-header{background:var(--ink); color:#fff; padding:14px 16px; display:flex; align-items:center; justify-content:space-between;}
.ai-panel-title{display:flex; align-items:center; gap:8px; font-family:'Space Grotesk'; font-weight:600; font-size:14.5px;}
.ai-dot{width:8px; height:8px; border-radius:50%; background:#4CD07D; animation:ai-live-pulse 2s infinite;}
@keyframes ai-live-pulse{0%{box-shadow:0 0 0 0 rgba(76,208,125,.5);} 70%{box-shadow:0 0 0 7px rgba(76,208,125,0);} 100%{box-shadow:0 0 0 0 rgba(76,208,125,0);}}
.ai-close-btn{background:none; border:none; color:#cfe0e6; font-size:20px; line-height:1; cursor:pointer; padding:0 4px;}
.ai-messages{padding:14px 16px; display:flex; flex-direction:column; gap:10px; max-height:360px; overflow-y:auto; background:var(--bg);}
.ai-msg{font-size:13.5px; line-height:1.5; padding:10px 13px; border-radius:12px; max-width:85%; white-space:pre-wrap;}
.ai-msg-bot{background:var(--card); border:1px solid var(--line); color:var(--ink); align-self:flex-start; border-bottom-left-radius:4px;}
.ai-msg-user{background:var(--ink); color:#fff; align-self:flex-end; border-bottom-right-radius:4px;}
.ai-msg-typing{display:flex; gap:4px; align-items:center; padding:12px 14px;}
.ai-msg-typing span{width:6px; height:6px; border-radius:50%; background:var(--muted); animation:ai-bounce 1.2s infinite;}
.ai-msg-typing span:nth-child(2){animation-delay:.15s;}
.ai-msg-typing span:nth-child(3){animation-delay:.3s;}
@keyframes ai-bounce{0%,60%,100%{transform:translateY(0); opacity:.5;} 30%{transform:translateY(-4px); opacity:1;}}
.ai-input-row{display:flex; gap:8px; padding:12px; border-top:1px solid var(--line); background:var(--card);}
.ai-input-row input{flex:1; border:1px solid var(--line); border-radius:100px; padding:10px 14px; font-size:13.5px; font-family:'Inter'; background:var(--bg); color:var(--ink);}
.ai-send-btn{width:38px; height:38px; border-radius:50%; background:var(--accent); border:none; color:#fff; cursor:pointer; display:flex; align-items:center; justify-content:center; flex:none;}
.ai-send-btn:disabled{opacity:.5; cursor:not-allowed;}
.ai-send-btn svg{width:16px; height:16px;}
@media (prefers-reduced-motion: reduce){ .ai-dot{animation:none;} .ai-msg-typing span{animation:none;} }
