:root{
  --bg:#070b0a;
  --bg-soft:#0d1311;
  --panel:#111816;
  --panel-2:#151e1b;
  --text:#f4f7f5;
  --muted:#a4b0aa;
  --line:rgba(255,255,255,.09);
  --green:#21c777;
  --green-2:#6cf0ad;
  --cyan:#69d7ff;
  --violet:#a790ff;
  --shadow:0 24px 70px rgba(0,0,0,.38);
  --radius:28px;
  --radius-sm:18px;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:
radial-gradient(circle at 82% 12%,rgba(33,199,119,.10),transparent 24rem),
radial-gradient(circle at 18% 48%,rgba(105,215,255,.06),transparent 25rem),
var(--bg);color:var(--text);font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;line-height:1.6;overflow-x:hidden}
body::before{content:"";position:fixed;inset:0;pointer-events:none;opacity:.35;background-image:linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);background-size:42px 42px;mask-image:linear-gradient(to bottom,black,transparent 78%)}
a{color:inherit;text-decoration:none}
img,svg{max-width:100%;display:block}
button,input,textarea,select{font:inherit}
button{cursor:pointer}
.container{width:min(calc(100% - 40px),var(--max));margin-inline:auto}
.section{padding:96px 0;position:relative}
.section-tight{padding:64px 0}
.eyebrow{display:inline-flex;align-items:center;gap:9px;padding:7px 11px;border:1px solid var(--line);border-radius:999px;color:#d7e1dc;background:rgba(255,255,255,.035);font-size:.78rem;letter-spacing:.12em;text-transform:uppercase}
.eyebrow::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--green);box-shadow:0 0 18px var(--green)}
.section-title{font-size:clamp(2.1rem,5vw,4rem);line-height:1.02;letter-spacing:-.045em;margin:20px 0 16px;max-width:840px}
.section-copy{color:var(--muted);max-width:680px;font-size:1.04rem}
.text-gradient{background:linear-gradient(90deg,var(--green-2),var(--cyan));-webkit-background-clip:text;background-clip:text;color:transparent}
.glass{background:linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.025));border:1px solid var(--line);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);box-shadow:var(--shadow)}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:13px 18px;border-radius:999px;border:1px solid transparent;font-weight:700;transition:.25s ease;min-height:48px}
.btn-primary{background:linear-gradient(135deg,var(--green),#1aa761);color:#04130b;box-shadow:0 14px 35px rgba(33,199,119,.20)}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 18px 45px rgba(33,199,119,.28)}
.btn-secondary{border-color:var(--line);background:rgba(255,255,255,.035);color:var(--text)}
.btn-secondary:hover{border-color:rgba(255,255,255,.24);background:rgba(255,255,255,.07)}
.icon-circle{width:42px;height:42px;border:1px solid var(--line);border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.04)}

/* Navigation */
.site-header{position:fixed;top:0;left:0;right:0;z-index:80;padding:18px 0;transition:.25s ease}
.site-header.scrolled{padding:10px 0;background:rgba(6,10,9,.80);backdrop-filter:blur(18px);border-bottom:1px solid var(--line)}
.nav{display:flex;align-items:center;justify-content:space-between;gap:24px}
.brand{display:flex;align-items:center;gap:11px;font-weight:900;letter-spacing:-.035em}
.brand-mark{width:36px;height:36px;border-radius:12px;background:conic-gradient(from 30deg,var(--green),var(--cyan),var(--green));position:relative;box-shadow:0 0 28px rgba(33,199,119,.24)}
.brand-mark::after{content:"";position:absolute;inset:7px;border-radius:8px;background:#0b100e}
.brand-name{font-size:1.05rem}.brand-name span{color:var(--green-2)}
.nav-links{display:flex;align-items:center;gap:6px;padding:6px;border:1px solid var(--line);border-radius:999px;background:rgba(255,255,255,.035);backdrop-filter:blur(16px)}
.nav-links a,.drop-btn{padding:10px 13px;border-radius:999px;color:#cbd5d0;font-size:.9rem;border:0;background:transparent}
.nav-links a:hover,.nav-links a.active,.drop-btn:hover{color:#fff;background:rgba(255,255,255,.07)}
.nav-actions{display:flex;gap:10px;align-items:center}
.mobile-toggle{display:none;background:rgba(255,255,255,.05);color:#fff;border:1px solid var(--line);border-radius:14px;width:46px;height:46px}
.dropdown{position:relative}.dropdown-menu{position:absolute;top:calc(100% + 12px);left:0;width:260px;padding:10px;border:1px solid var(--line);border-radius:18px;background:#0f1513;box-shadow:var(--shadow);opacity:0;visibility:hidden;transform:translateY(8px);transition:.2s ease}.dropdown:hover .dropdown-menu,.dropdown.open .dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}.dropdown-menu a{display:block;border-radius:12px;padding:11px 12px}.dropdown-menu small{display:block;color:var(--muted);font-size:.72rem;margin-top:2px}

/* Hero */
.hero{min-height:100svh;padding:150px 0 88px;display:flex;align-items:center;position:relative;overflow:hidden}
.hero-grid{display:grid;grid-template-columns:1.02fr .98fr;gap:54px;align-items:center}
.hero h1{font-size:clamp(3.2rem,7vw,6.6rem);line-height:.92;letter-spacing:-.065em;margin:22px 0 24px;max-width:850px}
.hero p{color:var(--muted);font-size:1.12rem;max-width:650px}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:32px}
.hero-meta{display:flex;flex-wrap:wrap;gap:22px;margin-top:34px;color:#cbd6d0;font-size:.9rem}.hero-meta span{display:flex;align-items:center;gap:8px}.hero-meta i{width:7px;height:7px;border-radius:50%;background:var(--green)}
.hero-orb{position:absolute;border-radius:50%;filter:blur(2px);opacity:.6;animation:float 9s ease-in-out infinite}.hero-orb.one{width:250px;height:250px;background:radial-gradient(circle,rgba(33,199,119,.22),transparent 67%);top:10%;right:8%}.hero-orb.two{width:200px;height:200px;background:radial-gradient(circle,rgba(105,215,255,.12),transparent 68%);bottom:10%;left:6%;animation-delay:-4s}
@keyframes float{50%{transform:translateY(-18px) translateX(7px)}}
.hero-visual{position:relative;min-height:540px}
.system-shell{position:absolute;inset:20px 0 20px 26px;border-radius:34px;padding:18px;background:linear-gradient(145deg,rgba(17,31,26,.94),rgba(9,13,12,.92));border:1px solid rgba(255,255,255,.11);box-shadow:0 45px 100px rgba(0,0,0,.48);overflow:hidden;transform:perspective(1000px) rotateY(-3deg) rotateX(1deg)}
.system-shell::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 70% 20%,rgba(33,199,119,.12),transparent 32rem);pointer-events:none}
.window-top{display:flex;align-items:center;justify-content:space-between;padding:6px 4px 18px;border-bottom:1px solid var(--line)}.window-dots{display:flex;gap:7px}.window-dots span{width:8px;height:8px;border-radius:50%;background:#4f5b56}.window-title{font-size:.8rem;color:#9eadA5}
.dashboard-grid{display:grid;grid-template-columns:1.25fr .75fr;gap:14px;padding-top:16px}.dash-card{position:relative;border:1px solid var(--line);border-radius:20px;background:rgba(255,255,255,.035);padding:16px;min-height:140px;overflow:hidden}.dash-card h4{margin:0 0 5px;font-size:.88rem}.dash-card p{font-size:.75rem;margin:0;color:#88958f}.chart{height:96px;margin-top:16px;display:flex;align-items:flex-end;gap:8px}.chart span{flex:1;border-radius:7px 7px 3px 3px;background:linear-gradient(to top,rgba(33,199,119,.25),var(--green));min-height:10px}.chart span:nth-child(2){height:48%}.chart span:nth-child(3){height:74%}.chart span:nth-child(4){height:58%}.chart span:nth-child(5){height:86%}.chart span:nth-child(6){height:67%}.chart span:nth-child(7){height:94%}
.metric{font-size:2rem;font-weight:900;letter-spacing:-.05em;margin-top:28px}.mini-list{margin-top:15px;display:grid;gap:9px}.mini-row{display:flex;justify-content:space-between;gap:10px;color:#cad5cf;font-size:.78rem}.mini-row span:last-child{color:var(--green-2)}
.full-card{grid-column:1/-1;min-height:150px}.flow-row{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:20px}.flow-item{border:1px solid var(--line);border-radius:14px;padding:12px;background:rgba(255,255,255,.025)}.flow-item b{font-size:.78rem;display:block}.flow-item small{color:var(--muted)}
.float-chip{position:absolute;padding:12px 15px;border-radius:16px;border:1px solid var(--line);background:rgba(10,15,13,.85);backdrop-filter:blur(12px);box-shadow:var(--shadow);font-size:.82rem;font-weight:700}.float-chip::before{content:"";display:inline-block;width:8px;height:8px;margin-right:8px;border-radius:50%;background:var(--green);box-shadow:0 0 14px var(--green)}.chip-1{top:64px;right:-20px}.chip-2{bottom:74px;left:-14px}.chip-3{bottom:24px;right:38px}

/* Stats */
.stats-wrap{display:grid;grid-template-columns:repeat(4,1fr);border:1px solid var(--line);border-radius:26px;overflow:hidden;background:rgba(255,255,255,.025)}.stat{padding:30px;border-right:1px solid var(--line)}.stat:last-child{border-right:0}.stat strong{display:block;font-size:2.25rem;letter-spacing:-.04em}.stat span{color:var(--muted);font-size:.88rem}

/* Cards */
.cards-4{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:42px}.solution-card{position:relative;min-height:370px;padding:24px;border-radius:26px;border:1px solid var(--line);background:linear-gradient(160deg,rgba(255,255,255,.055),rgba(255,255,255,.018));overflow:hidden;transition:.3s ease}.solution-card:hover{transform:translateY(-7px);border-color:rgba(108,240,173,.32);box-shadow:0 30px 70px rgba(0,0,0,.34)}.solution-icon{width:52px;height:52px;border-radius:16px;display:grid;place-items:center;background:rgba(33,199,119,.10);border:1px solid rgba(33,199,119,.18);font-weight:900;color:var(--green-2)}.solution-card h3{font-size:1.45rem;line-height:1.1;margin:76px 0 12px;letter-spacing:-.03em}.solution-card p{color:var(--muted);font-size:.92rem}.solution-card .arrow{position:absolute;right:20px;bottom:20px;width:42px;height:42px;border-radius:50%;display:grid;place-items:center;border:1px solid var(--line);transition:.25s}.solution-card:hover .arrow{background:var(--green);color:#04130b;transform:rotate(45deg)}.solution-card::after{content:"";position:absolute;width:180px;height:180px;border-radius:50%;right:-80px;top:-80px;background:radial-gradient(circle,rgba(33,199,119,.12),transparent 68%)}

/* Feature split */
.feature-grid{display:grid;grid-template-columns:1fr 1fr;gap:52px;align-items:center}.product-mock{padding:18px;border-radius:30px;min-height:470px;position:relative;overflow:hidden}.mock-sidebar{position:absolute;left:18px;top:18px;bottom:18px;width:86px;border-right:1px solid var(--line);padding-right:15px}.mock-logo{width:38px;height:38px;border-radius:12px;background:var(--green);margin-bottom:28px}.mock-nav{display:grid;gap:10px}.mock-nav span{height:10px;border-radius:999px;background:rgba(255,255,255,.08)}.mock-nav span:nth-child(2){background:rgba(33,199,119,.35)}.mock-main{margin-left:104px}.mock-title{width:42%;height:16px;border-radius:99px;background:rgba(255,255,255,.13);margin:12px 0 22px}.mock-kpis{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.mock-kpi{height:84px;border:1px solid var(--line);border-radius:16px;background:rgba(255,255,255,.025);padding:12px}.mock-kpi b{font-size:1.25rem;display:block}.mock-kpi small{color:var(--muted)}.mock-table{margin-top:15px;border:1px solid var(--line);border-radius:18px;overflow:hidden}.mock-row{display:grid;grid-template-columns:1fr .7fr .5fr;gap:10px;padding:12px;border-bottom:1px solid var(--line);font-size:.72rem;color:#abb7b1}.mock-row:last-child{border-bottom:0}.check-list{display:grid;gap:13px;margin:26px 0}.check-list div{display:flex;align-items:flex-start;gap:11px;color:#dce5e0}.check-list i{width:22px;height:22px;border-radius:50%;background:rgba(33,199,119,.12);border:1px solid rgba(33,199,119,.22);display:grid;place-items:center;font-style:normal;color:var(--green-2);font-size:.7rem;flex:0 0 auto}

/* Project cards */
.project-list{display:grid;gap:22px;margin-top:42px}.project-card{display:grid;grid-template-columns:1.15fr .85fr;gap:24px;border:1px solid var(--line);border-radius:30px;padding:18px;background:rgba(255,255,255,.025);overflow:hidden;transition:.3s}.project-card:hover{border-color:rgba(255,255,255,.18);transform:translateY(-3px)}.project-visual{min-height:310px;border-radius:20px;background:linear-gradient(145deg,#17211d,#0b100e);border:1px solid var(--line);padding:18px;position:relative;overflow:hidden}.project-visual::after{content:"";position:absolute;width:240px;height:240px;border-radius:50%;right:-80px;bottom:-100px;background:radial-gradient(circle,rgba(105,215,255,.13),transparent 65%)}.project-copy{padding:24px 20px;align-self:center}.project-copy h3{font-size:2rem;letter-spacing:-.04em;margin:12px 0}.project-copy p{color:var(--muted)}.tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:20px}.tag{padding:7px 10px;border-radius:999px;border:1px solid var(--line);font-size:.73rem;color:#c3cec8;background:rgba(255,255,255,.03)}
.sheet{background:#f6f8f7;color:#163126;border-radius:16px;padding:14px;width:86%;height:235px;margin:20px auto 0;box-shadow:0 20px 60px rgba(0,0,0,.28);transform:rotate(-1.5deg)}.sheet-top{display:flex;justify-content:space-between;font-size:.65rem;font-weight:800;border-bottom:2px solid #33a867;padding-bottom:8px}.sheet-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:2px;margin-top:10px}.sheet-grid span{height:16px;background:#dce8e1;border-radius:2px}.sheet-grid span:nth-child(5n+1){background:#a9d8bd}.sheet-formula{margin-top:12px;height:20px;background:#e7efe9;border:1px solid #bfd2c5;border-radius:4px;font:600 9px/20px monospace;padding:0 7px}

/* Process */
.process{display:grid;grid-template-columns:repeat(5,1fr);gap:12px;margin-top:42px}.step{padding:22px;border:1px solid var(--line);border-radius:20px;background:rgba(255,255,255,.025);min-height:190px}.step-num{font-size:.72rem;color:var(--green-2);letter-spacing:.14em}.step h3{font-size:1.08rem;margin:36px 0 8px}.step p{font-size:.84rem;color:var(--muted);margin:0}

/* Technologies */
.tech-row{display:flex;flex-wrap:wrap;gap:12px;margin-top:34px}.tech{padding:13px 17px;border:1px solid var(--line);border-radius:16px;background:rgba(255,255,255,.03);font-weight:800;letter-spacing:.01em}.tech small{font-weight:500;color:var(--muted);margin-left:6px}

/* AI feature */
.ai-panel{display:grid;grid-template-columns:.9fr 1.1fr;gap:40px;align-items:center;padding:42px;border-radius:34px;position:relative;overflow:hidden}.ai-panel::before{content:"";position:absolute;inset:auto -120px -160px auto;width:420px;height:420px;border-radius:50%;background:radial-gradient(circle,rgba(167,144,255,.16),transparent 66%)}.chat-preview{border:1px solid var(--line);border-radius:26px;background:#0b100e;overflow:hidden;box-shadow:var(--shadow)}.chat-preview-head{display:flex;align-items:center;justify-content:space-between;padding:16px 18px;border-bottom:1px solid var(--line)}.online{display:flex;align-items:center;gap:8px;font-size:.8rem;color:#cbd6d0}.online::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--green)}.chat-preview-body{padding:18px;display:grid;gap:13px;min-height:300px}.bubble{max-width:82%;padding:12px 14px;border-radius:16px;font-size:.85rem}.bubble.bot{background:rgba(255,255,255,.06);border:1px solid var(--line)}.bubble.user{background:rgba(33,199,119,.14);border:1px solid rgba(33,199,119,.18);margin-left:auto}.quick-row{display:flex;flex-wrap:wrap;gap:7px}.quick-pill{border:1px solid var(--line);padding:7px 9px;border-radius:999px;color:#c9d4ce;font-size:.72rem}.chat-preview-input{margin:0 18px 18px;border:1px solid var(--line);border-radius:999px;padding:10px 12px;display:flex;justify-content:space-between;color:#74817b;font-size:.78rem}

/* CTA */
.cta{padding:55px;border:1px solid rgba(108,240,173,.17);border-radius:34px;background:linear-gradient(135deg,rgba(33,199,119,.10),rgba(105,215,255,.04),rgba(255,255,255,.02));display:flex;justify-content:space-between;align-items:center;gap:26px}.cta h2{font-size:clamp(2rem,4vw,3.3rem);line-height:1;letter-spacing:-.045em;margin:0 0 12px}.cta p{margin:0;color:var(--muted)}

/* Inner pages */
.page-hero{padding:170px 0 80px;min-height:66vh;display:flex;align-items:flex-end}.page-hero h1{font-size:clamp(3.2rem,7vw,6.3rem);line-height:.95;letter-spacing:-.06em;margin:20px 0}.page-hero p{max-width:700px;color:var(--muted);font-size:1.1rem}.two-col{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:start}.content-card{padding:30px;border:1px solid var(--line);border-radius:26px;background:rgba(255,255,255,.025)}.content-card h3{margin-top:0;font-size:1.4rem}.content-card p,.content-card li{color:var(--muted)}.content-card ul{padding-left:20px}.pill-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}.pill-card{padding:18px;border-radius:18px;border:1px solid var(--line);background:rgba(255,255,255,.025)}.pill-card b{display:block;margin-bottom:4px}.pill-card span{font-size:.85rem;color:var(--muted)}
.solution-detail{display:grid;grid-template-columns:.75fr 1.25fr;gap:42px}.sticky-intro{position:sticky;top:120px}.feature-list{display:grid;gap:14px}.feature-row{padding:22px;border:1px solid var(--line);border-radius:20px;background:rgba(255,255,255,.025)}.feature-row b{display:block;font-size:1rem}.feature-row span{color:var(--muted);font-size:.9rem}

/* Forms */
.form-card{padding:30px;border:1px solid var(--line);border-radius:28px;background:rgba(255,255,255,.025)}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}.field{display:grid;gap:7px}.field.full{grid-column:1/-1}.field label{font-size:.8rem;color:#d4ddd8}.field input,.field textarea,.field select{width:100%;border:1px solid var(--line);background:#0b100e;color:#f4f7f5;border-radius:14px;padding:13px 14px;outline:none;transition:.2s}.field input:focus,.field textarea:focus,.field select:focus{border-color:rgba(33,199,119,.45);box-shadow:0 0 0 4px rgba(33,199,119,.07)}.field textarea{min-height:150px;resize:vertical}.checkbox{display:flex;gap:10px;align-items:flex-start;color:var(--muted);font-size:.82rem}.checkbox input{margin-top:4px}.form-status{min-height:24px;color:var(--muted);font-size:.83rem;margin-top:10px}.hp{position:absolute!important;left:-10000px!important;opacity:0!important}
.contact-layout{display:grid;grid-template-columns:.75fr 1.25fr;gap:40px}.contact-info{display:grid;gap:12px}.info-card{padding:20px;border:1px solid var(--line);border-radius:18px;background:rgba(255,255,255,.025)}.info-card small{display:block;color:var(--muted);margin-bottom:5px}.info-card b{font-size:1rem}

/* Footer */
.site-footer{padding:70px 0 30px;border-top:1px solid var(--line);margin-top:70px}.footer-grid{display:grid;grid-template-columns:1.4fr .8fr .8fr .8fr;gap:34px}.footer-brand p{max-width:370px;color:var(--muted);font-size:.9rem}.footer-col h4{font-size:.8rem;text-transform:uppercase;letter-spacing:.1em;color:#d8e2dd;margin:0 0 15px}.footer-col a{display:block;color:var(--muted);font-size:.88rem;margin:9px 0}.footer-col a:hover{color:#fff}.footer-bottom{display:flex;justify-content:space-between;gap:20px;padding-top:28px;margin-top:35px;border-top:1px solid var(--line);color:#75817b;font-size:.78rem}

/* Chatbot */
.ai-launcher{position:fixed;right:22px;bottom:22px;z-index:95;display:flex;align-items:center;gap:9px;border:1px solid rgba(108,240,173,.22);border-radius:999px;padding:10px 14px 10px 10px;background:rgba(8,14,12,.90);color:#fff;box-shadow:0 18px 50px rgba(0,0,0,.42);backdrop-filter:blur(18px);font-weight:800}.ai-launcher .spark{width:36px;height:36px;border-radius:50%;display:grid;place-items:center;background:linear-gradient(135deg,var(--green),var(--cyan));color:#06100c}.ai-launcher:hover{transform:translateY(-2px)}
.ai-chat{position:fixed;right:22px;bottom:86px;width:min(390px,calc(100vw - 28px));height:min(620px,calc(100svh - 120px));z-index:96;border:1px solid var(--line);border-radius:26px;background:rgba(8,13,11,.96);box-shadow:0 30px 90px rgba(0,0,0,.58);backdrop-filter:blur(22px);display:none;overflow:hidden}.ai-chat.open{display:flex;flex-direction:column;animation:chatIn .22s ease}@keyframes chatIn{from{opacity:0;transform:translateY(8px) scale(.98)}}.ai-head{display:flex;justify-content:space-between;align-items:center;padding:15px 16px;border-bottom:1px solid var(--line)}.ai-identity{display:flex;align-items:center;gap:10px}.ai-avatar{width:38px;height:38px;border-radius:13px;display:grid;place-items:center;background:linear-gradient(135deg,var(--green),var(--cyan));color:#04130b;font-weight:900}.ai-identity b{display:block;font-size:.9rem}.ai-identity small{display:block;color:var(--muted);font-size:.7rem}.ai-close{width:34px;height:34px;border-radius:11px;border:1px solid var(--line);background:rgba(255,255,255,.04);color:#fff}.ai-messages{flex:1;overflow:auto;padding:15px;display:flex;flex-direction:column;gap:10px}.ai-message{max-width:86%;padding:10px 12px;border-radius:15px;font-size:.84rem;white-space:pre-wrap}.ai-message.bot{background:rgba(255,255,255,.055);border:1px solid var(--line)}.ai-message.user{margin-left:auto;background:rgba(33,199,119,.16);border:1px solid rgba(33,199,119,.18)}.ai-message.system{background:transparent;border:1px dashed var(--line);color:var(--muted);max-width:100%;font-size:.74rem}.ai-typing{display:inline-flex;gap:4px;align-items:center}.ai-typing i{width:5px;height:5px;border-radius:50%;background:#9fb0a7;animation:dot 1.1s infinite}.ai-typing i:nth-child(2){animation-delay:.15s}.ai-typing i:nth-child(3){animation-delay:.3s}@keyframes dot{50%{opacity:.25;transform:translateY(-2px)}}.ai-quick{display:flex;gap:7px;overflow-x:auto;padding:0 15px 10px;scrollbar-width:none}.ai-quick button{white-space:nowrap;border:1px solid var(--line);border-radius:999px;background:rgba(255,255,255,.03);color:#d5ded9;padding:7px 9px;font-size:.72rem}.ai-form{display:flex;gap:8px;padding:12px;border-top:1px solid var(--line)}.ai-form textarea{flex:1;resize:none;max-height:98px;min-height:44px;border:1px solid var(--line);border-radius:14px;background:#0a0f0d;color:#fff;padding:11px 12px;outline:none}.ai-send{width:44px;height:44px;border-radius:14px;border:0;background:var(--green);color:#04130b;font-weight:900}.ai-note{padding:0 14px 10px;color:#66736d;font-size:.66rem;text-align:center}

/* Reveal */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .7s ease,transform .7s ease}.reveal.visible{opacity:1;transform:none}

@media (max-width:1050px){
  .nav-links{display:none}.nav-actions .btn{display:none}.mobile-toggle{display:block}
  .nav-links.mobile-open{display:flex;position:absolute;top:70px;left:20px;right:20px;border-radius:22px;padding:12px;flex-direction:column;align-items:stretch;background:#0c1210}.nav-links.mobile-open a,.nav-links.mobile-open .drop-btn{text-align:left;width:100%}.dropdown-menu{position:static;width:100%;display:none;opacity:1;visibility:visible;transform:none;box-shadow:none;margin-top:5px}.dropdown.open .dropdown-menu{display:block}
  .hero-grid,.feature-grid,.ai-panel,.two-col,.contact-layout,.solution-detail{grid-template-columns:1fr}.hero{padding-top:130px}.hero-visual{min-height:500px}.system-shell{inset:10px}.cards-4{grid-template-columns:repeat(2,1fr)}.stats-wrap{grid-template-columns:repeat(2,1fr)}.stat:nth-child(2){border-right:0}.stat:nth-child(-n+2){border-bottom:1px solid var(--line)}.project-card{grid-template-columns:1fr}.process{grid-template-columns:repeat(3,1fr)}.footer-grid{grid-template-columns:1.2fr 1fr 1fr}.footer-brand{grid-column:1/-1}.sticky-intro{position:static}
}
@media (max-width:700px){
  .container{width:min(calc(100% - 26px),var(--max))}.section{padding:72px 0}.hero{min-height:auto}.hero h1{font-size:clamp(3rem,16vw,4.6rem)}.hero-visual{min-height:430px}.system-shell{transform:none}.dashboard-grid{grid-template-columns:1fr}.full-card{grid-column:auto}.flow-row{grid-template-columns:repeat(2,1fr)}.float-chip{font-size:.7rem}.chip-1{right:4px}.chip-2{left:4px}.chip-3{display:none}.cards-4,.stats-wrap,.process,.footer-grid,.form-grid,.pill-grid{grid-template-columns:1fr}.stat{border-right:0;border-bottom:1px solid var(--line)!important}.stat:last-child{border-bottom:0!important}.solution-card{min-height:290px}.solution-card h3{margin-top:55px}.project-visual{min-height:250px}.sheet{width:94%;height:205px}.process{gap:10px}.ai-panel{padding:24px}.cta{padding:30px;flex-direction:column;align-items:flex-start}.page-hero{padding-top:145px;min-height:58vh}.footer-brand{grid-column:auto}.footer-bottom{flex-direction:column}.ai-launcher{right:14px;bottom:14px}.ai-launcher .label{display:none}.ai-launcher{padding:8px}.ai-chat{right:14px;bottom:74px}.field.full{grid-column:auto}
}
@media (prefers-reduced-motion:reduce){*{scroll-behavior:auto!important;animation:none!important;transition:none!important}.reveal{opacity:1;transform:none}}
.ai-lead-form{max-width:100%;border:1px solid rgba(33,199,119,.20);border-radius:17px;padding:12px;background:rgba(33,199,119,.05);display:grid;gap:8px}.ai-lead-form b{font-size:.82rem}.ai-lead-form input,.ai-lead-form select,.ai-lead-form textarea{width:100%;border:1px solid var(--line);background:#090e0c;color:#fff;border-radius:10px;padding:9px 10px;font-size:.76rem;outline:none}.ai-lead-form textarea{min-height:70px;resize:vertical}.ai-lead-form label{display:flex;gap:7px;color:var(--muted);font-size:.68rem;align-items:flex-start}.ai-lead-form label input{width:auto;margin-top:3px}.ai-lead-form button{border:0;border-radius:10px;background:var(--green);color:#04130b;padding:9px 11px;font-weight:800;font-size:.76rem}.ai-lead-status{font-size:.68rem;color:var(--muted)}


/* =========================
   V2 LIGHT THEME + HERO
   ========================= */
:root{
  --bg:#f5f8f7;
  --bg-soft:#eef4f2;
  --panel:#ffffff;
  --panel-2:#f8fbfa;
  --text:#13211d;
  --muted:#5e7068;
  --line:rgba(19,33,29,.10);
  --green:#20b36e;
  --green-2:#47d792;
  --cyan:#36b9ec;
  --violet:#9c8bff;
  --shadow:0 24px 60px rgba(27,53,45,.10);
}
body{
  background:
    radial-gradient(circle at 8% 10%, rgba(71,215,146,.20), transparent 22rem),
    radial-gradient(circle at 92% 12%, rgba(54,185,236,.16), transparent 24rem),
    linear-gradient(180deg,#f8fbfa 0%, #f2f7f5 35%, #edf4f2 100%);
  color:var(--text);
}
body::before{
  opacity:.16;
  background-image:linear-gradient(rgba(19,33,29,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(19,33,29,.05) 1px,transparent 1px);
}
.eyebrow{color:#355148;background:rgba(255,255,255,.85);border-color:rgba(19,33,29,.08);box-shadow:0 10px 30px rgba(21,47,39,.06)}
.glass{background:linear-gradient(145deg,rgba(255,255,255,.88),rgba(255,255,255,.72));border:1px solid rgba(19,33,29,.08);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);box-shadow:var(--shadow)}
.btn-secondary{border-color:rgba(19,33,29,.10);background:rgba(255,255,255,.88);color:var(--text)}
.btn-secondary:hover{border-color:rgba(19,33,29,.18);background:#fff}
.site-header.scrolled{background:rgba(248,251,250,.82);border-bottom:1px solid rgba(19,33,29,.08)}
.brand-mark::after{background:#f5fbf8}
.nav-links{background:rgba(255,255,255,.82);border-color:rgba(19,33,29,.08);box-shadow:0 12px 34px rgba(23,46,39,.06)}
.nav-links a,.drop-btn{color:#355148}
.nav-links a:hover,.nav-links a.active,.drop-btn:hover{color:var(--text);background:rgba(19,33,29,.05)}
.mobile-toggle{background:rgba(255,255,255,.84);color:var(--text);border-color:rgba(19,33,29,.08)}
.dropdown-menu{background:#ffffff;border-color:rgba(19,33,29,.08);box-shadow:0 24px 50px rgba(19,33,29,.12)}
.dropdown-menu small{color:#73857e}
.hero{min-height:100svh;padding:150px 0 90px;background:linear-gradient(180deg,rgba(255,255,255,.55),rgba(255,255,255,0))}
.hero h1{font-size:clamp(3rem,7vw,6rem);max-width:780px;color:#12211c}
.hero p{color:#556860;max-width:640px}
.hero-meta{color:#476057}
.hero-trust{display:flex;flex-wrap:wrap;gap:14px;margin-top:30px}
.hero-trust div{min-width:135px;padding:14px 16px;border-radius:18px;background:rgba(255,255,255,.80);border:1px solid rgba(19,33,29,.08);box-shadow:0 16px 34px rgba(16,42,35,.06)}
.hero-trust strong{display:block;font-size:1.25rem;line-height:1;color:#0f211b}
.hero-trust small{display:block;color:#61756d;margin-top:4px}
.hero-orb{opacity:.9;filter:blur(0)}
.hero-orb.one{background:radial-gradient(circle,rgba(71,215,146,.24),transparent 68%)}
.hero-orb.two{background:radial-gradient(circle,rgba(54,185,236,.18),transparent 68%)}
.hero-showcase{position:relative;min-height:560px}
.hero-stage{position:relative;min-height:560px;border-radius:36px;padding:34px;overflow:hidden;background:linear-gradient(145deg,rgba(255,255,255,.92),rgba(240,247,245,.86));border:1px solid rgba(19,33,29,.08);box-shadow:0 34px 80px rgba(18,40,34,.12)}
.hero-stage::before{content:"";position:absolute;inset:auto 0 0 0;height:40%;background:linear-gradient(180deg,rgba(71,215,146,0),rgba(71,215,146,.08));pointer-events:none}
.hero-grid-lines{position:absolute;inset:0;opacity:.38;background-image:linear-gradient(rgba(19,33,29,.04) 1px, transparent 1px),linear-gradient(90deg, rgba(19,33,29,.04) 1px, transparent 1px);background-size:34px 34px;mask-image:linear-gradient(to bottom,black,transparent 92%)}
.hero-ring{position:absolute;border-radius:50%;border:1px dashed rgba(32,179,110,.24);animation:heroSpin 18s linear infinite}
.hero-ring.ring-a{width:360px;height:360px;top:100px;left:120px}
.hero-ring.ring-b{width:250px;height:250px;top:155px;left:175px;animation-direction:reverse;animation-duration:14s;border-color:rgba(54,185,236,.22)}
@keyframes heroSpin{to{transform:rotate(360deg)}}
.hero-center-card{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:min(78%,420px);padding:28px;border-radius:28px;background:linear-gradient(145deg,#fdfefe,#f3f8f6);border:1px solid rgba(19,33,29,.08);box-shadow:0 28px 60px rgba(15,38,31,.10);z-index:2;text-align:left}
.hero-center-card .center-label{display:inline-flex;align-items:center;gap:8px;font-size:.74rem;font-weight:700;letter-spacing:.11em;text-transform:uppercase;color:#466359}
.hero-center-card .center-label::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--green)}
.hero-center-card h3{font-size:1.75rem;line-height:1.05;letter-spacing:-.04em;margin:14px 0 10px;color:#10211c}
.hero-center-card p{font-size:.95rem;color:#5c6e67;margin:0 0 18px}
.center-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.center-stats div{padding:12px;border-radius:16px;background:rgba(255,255,255,.9);border:1px solid rgba(19,33,29,.08)}
.center-stats b{display:block;font-size:.92rem;color:#12221d}
.center-stats small{display:block;font-size:.74rem;color:#6c7f77}
.hero-float-card{position:absolute;max-width:220px;padding:14px 16px;border-radius:18px;background:rgba(255,255,255,.92);border:1px solid rgba(19,33,29,.08);box-shadow:0 18px 40px rgba(18,42,34,.10);animation:floatCard 7s ease-in-out infinite;z-index:2}
.hero-float-card b{display:block;font-size:.92rem;color:#10211c}
.hero-float-card small{display:block;font-size:.76rem;color:#61746d;margin-top:4px}
.card-payroll{top:36px;left:26px}
.card-accounting{top:80px;right:24px;animation-delay:-1.2s}
.card-inventory{left:18px;bottom:76px;animation-delay:-2.2s}
.card-ai{right:38px;bottom:144px;animation-delay:-3.4s}
.card-website{right:100px;bottom:26px;animation-delay:-2.8s}
@keyframes floatCard{50%{transform:translateY(-10px)}}
.stats-wrap,.solution-card,.content-card,.feature-row,.pill-card,.info-card,.form-card,.project-card,.process-card,.product-mock,.cta,.ai-panel{background:rgba(255,255,255,.82)!important;border-color:rgba(19,33,29,.08)!important;box-shadow:0 20px 45px rgba(18,40,34,.06)}
.stat span,.section-copy,.content-card p,.content-card li,.pill-card span,.feature-row span,.info-card small,.cta p,.footer-col a{color:#5d6f68}
.stat strong,.section-title,.content-card h3,.feature-row b,.cta h2,.footer-col h4{color:#12221d}
.solution-card{min-height:330px}
.solution-icon{background:rgba(32,179,110,.10);border-color:rgba(32,179,110,.14)}
.solution-card .arrow{border-color:rgba(19,33,29,.08);background:#fff}
.project-visual,.sheet,.mock-table,.mock-row,.mock-kpi,.flow-item{background:rgba(255,255,255,.8)}
.flow-item,.mock-kpi,.mock-row,.field input,.field textarea,.field select{border-color:rgba(19,33,29,.08)!important}
.field label{color:#314a42}
.field input,.field textarea,.field select{background:#fff;color:#11211c}
.check-list div{background:rgba(255,255,255,.84);border-color:rgba(19,33,29,.08)}
.cta{background:linear-gradient(135deg,rgba(32,179,110,.10),rgba(54,185,236,.09),rgba(255,255,255,.85))}
.site-footer{background:#10201b;color:#dce7e2;border-top:0}
.footer-brand p,.footer-col a,.footer-bottom{color:#96aaa2}
.footer-col a:hover{color:#fff}
.footer-col h4{color:#f3f9f6}
.footer-bottom{border-top-color:rgba(255,255,255,.08)}
.ai-launcher{background:rgba(10,17,15,.94)}
@media (max-width:1050px){
  .nav-links.mobile-open{background:#ffffff;border:1px solid rgba(19,33,29,.08);box-shadow:0 22px 44px rgba(19,33,29,.08)}
  .hero-showcase{min-height:520px}
}
@media (max-width:700px){
  .hero-showcase,.hero-stage{min-height:460px}
  .hero-trust{gap:10px}
  .hero-trust div{min-width:unset;flex:1 1 calc(50% - 10px)}
  .hero-center-card{width:calc(100% - 36px);padding:20px}
  .hero-center-card h3{font-size:1.35rem}
  .center-stats{grid-template-columns:1fr}
  .hero-float-card{max-width:170px;padding:10px 12px}
  .card-payroll{top:14px;left:12px}
  .card-accounting{top:40px;right:12px}
  .card-inventory{left:10px;bottom:72px}
  .card-ai{right:12px;bottom:120px}
  .card-website{right:56px;bottom:18px}
}


/* =========================
   V2.1 CHAT CONTRAST FIX
   Keep the AI panel dark even when the site uses the light theme.
   ========================= */
.ai-launcher{
  background:rgba(10,18,15,.96)!important;
  color:#f3faf6!important;
  border-color:rgba(71,215,146,.28)!important;
  box-shadow:0 18px 48px rgba(10,30,22,.24)!important;
}
.ai-chat{
  color:#eef7f2!important;
  background:linear-gradient(180deg,rgba(13,21,18,.985),rgba(9,16,13,.99))!important;
  border-color:rgba(255,255,255,.10)!important;
  box-shadow:0 30px 90px rgba(7,19,14,.38)!important;
}
.ai-head{background:rgba(13,21,18,.98)!important;border-bottom-color:rgba(255,255,255,.08)!important}
.ai-identity b{color:#f4fbf7!important}
.ai-identity small{color:#9eb1a8!important}
.ai-close{color:#f2f8f5!important;background:#1b2521!important;border-color:rgba(255,255,255,.08)!important}
.ai-messages{scrollbar-color:#6b7d74 #101915;scrollbar-width:thin}
.ai-messages::-webkit-scrollbar{width:9px}
.ai-messages::-webkit-scrollbar-track{background:#101915;border-radius:999px}
.ai-messages::-webkit-scrollbar-thumb{background:#607269;border-radius:999px;border:2px solid #101915}
.ai-message{color:#edf6f1!important;line-height:1.58!important}
.ai-message.bot{background:#1a2420!important;border-color:rgba(255,255,255,.075)!important;color:#edf6f1!important}
.ai-message.user{background:#0d4f35!important;border-color:#17764f!important;color:#f2fff8!important}
.ai-message.system{color:#9eb1a8!important;background:#111a16!important;border-color:rgba(255,255,255,.08)!important}
.ai-typing i{background:#b8c8c0!important}
.ai-quick{display:flex!important;flex-wrap:wrap!important;overflow:visible!important;gap:7px!important;padding:2px 14px 12px!important;border-top:1px solid rgba(255,255,255,.035)}
.ai-quick button{color:#e9f2ed!important;background:#18221e!important;border-color:rgba(255,255,255,.08)!important;padding:7px 10px!important}
.ai-quick button:hover{background:#22312b!important;border-color:rgba(71,215,146,.25)!important}
.ai-form{background:#0d1512!important;border-top-color:rgba(255,255,255,.08)!important}
.ai-form textarea{background:#07100c!important;color:#f5fbf8!important;border-color:rgba(255,255,255,.08)!important;caret-color:#47d792!important}
.ai-form textarea::placeholder{color:#82958c!important;opacity:1}
.ai-send{background:#21c777!important;color:#04130b!important}
.ai-note{background:#0d1512!important;color:#81948b!important}
.ai-lead-form{background:#131e19!important;border-color:rgba(71,215,146,.22)!important;color:#edf6f1!important}
.ai-lead-form b{color:#f4fbf7!important}
.ai-lead-form input,.ai-lead-form select,.ai-lead-form textarea{background:#09110e!important;color:#f2f8f5!important;border-color:rgba(255,255,255,.09)!important}
.ai-lead-form input::placeholder,.ai-lead-form textarea::placeholder{color:#82958c!important;opacity:1}
.ai-lead-form select option{background:#0d1512;color:#f2f8f5}
.ai-lead-form label,.ai-lead-status{color:#9eb1a8!important}
.ai-live-status{display:inline-flex;align-items:center;gap:6px;color:#9eb1a8!important}
.ai-live-status::before{content:"";width:7px;height:7px;border-radius:50%;background:#8a9c93;box-shadow:0 0 0 3px rgba(138,156,147,.10)}
.ai-live-status.live::before{background:#36d881;box-shadow:0 0 12px rgba(54,216,129,.7)}
.ai-live-status.fallback::before{background:#f1bd55;box-shadow:0 0 12px rgba(241,189,85,.35)}
@media (max-width:700px){
  .ai-chat{width:calc(100vw - 28px)!important;max-height:calc(100svh - 94px)!important}
  .ai-quick{gap:6px!important}
  .ai-quick button{font-size:.69rem!important;padding:6px 8px!important}
}

/* v3.0 Sales Intelligence chat controls */
.ai-head-actions{display:flex;align-items:center;gap:7px}
.ai-new,.ai-close{width:34px;height:34px;border-radius:11px;border:1px solid rgba(255,255,255,.09);background:rgba(255,255,255,.05);color:#eef8f3;display:grid;place-items:center}
.ai-new{font-size:1rem;font-weight:800}
.ai-new:hover,.ai-close:hover{background:rgba(255,255,255,.10)}
.ai-lead-context{font-size:.70rem;line-height:1.45;color:#a9b9b1;background:rgba(255,255,255,.04);border:1px dashed rgba(255,255,255,.10);border-radius:11px;padding:9px 10px}


/* =========================================================
   v3.1 MINIMAL BUSINESS UI + AGENT WING
   Inspired by classic minimalist business-site principles:
   restrained layout, strong hierarchy, whitespace, clean CTAs.
   ========================================================= */
:root{
  --bg:#f7f7f4; --bg-soft:#eef1ed; --panel:#ffffff; --panel-2:#f4f6f3;
  --text:#18211e; --muted:#68736e; --line:#dfe5e1;
  --green:#17b86a; --green-2:#31c77b; --cyan:#24b8c8;
  --shadow:0 16px 42px rgba(22,38,32,.08); --radius:18px; --radius-sm:12px; --max:1180px;
}
body{background:var(--bg)!important;color:var(--text)!important;background-image:none!important;font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif!important}
body::before{display:none!important}
.container{width:min(calc(100% - 48px),var(--max))}
.section{padding:88px 0}
.section-tight{padding:48px 0}
.eyebrow{padding:0!important;border:0!important;background:transparent!important;box-shadow:none!important;border-radius:0!important;color:#277153!important;font-size:.76rem!important;font-weight:800!important;letter-spacing:.13em!important}
.eyebrow::before{display:none!important}
.section-title{font-size:clamp(2.25rem,4.7vw,4.35rem)!important;line-height:1.02!important;letter-spacing:-.055em!important;color:#17201d!important;margin:14px 0 16px!important}
.section-copy{color:var(--muted)!important;font-size:1.02rem!important;line-height:1.75!important}
.text-gradient{background:none!important;color:#168b55!important;-webkit-text-fill-color:initial!important}
.glass{background:#fff!important;border:1px solid var(--line)!important;box-shadow:var(--shadow)!important;backdrop-filter:none!important;-webkit-backdrop-filter:none!important}
.btn{border-radius:9px!important;min-height:47px!important;padding:12px 18px!important;font-weight:750!important;box-shadow:none!important}
.btn-primary{background:#16211d!important;color:#fff!important;border-color:#16211d!important}
.btn-primary:hover{background:#1f9a5e!important;border-color:#1f9a5e!important;transform:translateY(-1px)!important}
.btn-secondary{background:#fff!important;color:#17201d!important;border:1px solid #d8dfdb!important}
.btn-secondary:hover{background:#f1f5f2!important;border-color:#cbd5cf!important}

/* Minimal navigation */
.site-header{padding:14px 0!important;background:rgba(247,247,244,.93)!important;border-bottom:1px solid transparent!important;backdrop-filter:blur(12px)!important}
.site-header.scrolled{padding:9px 0!important;background:rgba(247,247,244,.96)!important;border-bottom-color:#e0e5e1!important;box-shadow:0 8px 26px rgba(20,34,29,.05)!important}
.nav{gap:28px!important}
.brand{gap:10px!important;letter-spacing:0!important;min-width:max-content}
.brand-logo{width:42px;height:42px;object-fit:contain;display:block}
.brand-name{display:grid;line-height:1.02!important;font-size:1rem!important}
.brand-name strong{color:#18211e;font-weight:900;letter-spacing:-.035em}
.brand-name small{font-size:.62rem;color:#738079;font-weight:650;letter-spacing:.045em;margin-top:4px}
.nav-links{border:0!important;background:transparent!important;box-shadow:none!important;border-radius:0!important;padding:0!important;gap:8px!important;backdrop-filter:none!important}
.nav-links a,.drop-btn{color:#4c5953!important;font-size:.87rem!important;font-weight:650!important;padding:9px 10px!important;border-radius:6px!important}
.nav-links a:hover,.nav-links a.active,.drop-btn:hover{background:#edf2ee!important;color:#14211c!important}
.dropdown-menu{border-radius:12px!important;border:1px solid #dfe5e1!important;background:#fff!important;box-shadow:0 18px 42px rgba(22,38,32,.10)!important;padding:8px!important}
.nav-wing-btn{background:#16211d!important;color:#fff!important;border-color:#16211d!important}
.mobile-toggle{background:#fff!important;color:#17201d!important;border-color:#dce3df!important;border-radius:9px!important}

/* Homepage hero */
.v31-hero{min-height:94svh!important;padding:146px 0 84px!important;background:linear-gradient(180deg,#f7f7f4 0%,#f1f4f0 100%)!important;overflow:hidden!important}
.v31-hero .hero-grid{grid-template-columns:1.03fr .97fr!important;gap:74px!important}
.v31-hero h1{font-size:clamp(3.25rem,6.8vw,6.35rem)!important;line-height:.92!important;letter-spacing:-.07em!important;margin:20px 0 26px!important;max-width:820px!important;color:#15201c!important}
.v31-hero p{color:#65716b!important;max-width:660px!important;font-size:1.08rem!important;line-height:1.75!important}
.hero-proof{display:flex;gap:12px;flex-wrap:wrap;margin-top:30px}
.hero-proof span{font-size:.76rem;font-weight:700;color:#5d6b64;padding:7px 10px;border:1px solid #dbe2de;background:#fafbf9;border-radius:999px}
.hero-showcase{min-height:520px!important;position:relative}
.business-board{position:absolute;inset:28px 8px 28px 38px;background:#fff;border:1px solid #dce3df;border-radius:18px;box-shadow:0 28px 70px rgba(27,45,38,.11);padding:25px;overflow:hidden}
.business-board::before{content:"";position:absolute;width:6px;height:100%;left:0;top:0;background:linear-gradient(#1cb86d,#20b6c5)}
.board-head{display:flex;justify-content:space-between;gap:18px;align-items:flex-start;padding-bottom:22px;border-bottom:1px solid #e6ebe7}
.board-head small{display:block;color:#7c8982;font-size:.7rem;text-transform:uppercase;letter-spacing:.11em;font-weight:700}
.board-head strong{display:block;margin-top:5px;font-size:1.3rem;letter-spacing:-.035em}
.board-status{font-size:.7rem;font-weight:800;color:#16784a;background:#e9f7ef;border:1px solid #ccead8;padding:7px 9px;border-radius:999px}
.board-kpis{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin:20px 0}
.board-kpis div{padding:16px;border:1px solid #e0e6e2;border-radius:11px;background:#fafbf9}
.board-kpis small{display:block;color:#7a877f;font-size:.68rem}
.board-kpis strong{display:block;font-size:1rem;margin-top:4px}
.board-list{display:grid;gap:0;border:1px solid #e1e7e3;border-radius:12px;overflow:hidden}
.board-list>div{display:grid;grid-template-columns:34px 1fr auto;align-items:center;gap:12px;padding:14px 15px;border-bottom:1px solid #e8ece9;background:#fff}
.board-list>div:last-child{border-bottom:0}
.board-list>div>span{font-size:.67rem;font-weight:850;color:#198957}
.board-list p{margin:0!important;font-size:.82rem!important;color:#17201d!important}
.board-list p b{display:block}.board-list p small{display:block;color:#7c8881;margin-top:2px}
.board-list em{font-style:normal;font-size:.68rem;color:#66736c;padding:6px 8px;border-radius:999px;background:#f0f3f1}
.hero-note{position:absolute;background:#fff;border:1px solid #dce3df;border-radius:12px;box-shadow:0 16px 38px rgba(24,42,35,.10);padding:12px 14px;animation:wingFloat 6s ease-in-out infinite}
.hero-note b{display:block;font-size:.79rem}.hero-note small{display:block;color:#758179;font-size:.68rem;margin-top:2px}
.note-one{left:0;bottom:38px}.note-two{right:-12px;top:20px;display:flex;align-items:center;gap:9px;animation-delay:-2.5s}.note-two img{width:34px;height:34px;object-fit:contain}
@keyframes wingFloat{50%{transform:translateY(-7px)}}

/* Business cards: restrained, editorial */
.stats-wrap{border-radius:14px!important;background:#fff!important;border:1px solid #dfe5e1!important;box-shadow:none!important}
.stat{padding:24px!important;border-color:#e4e9e6!important}.stat strong{color:#18211e!important;font-size:1.9rem!important}.stat span{color:#748078!important}
.cards-4{gap:14px!important;margin-top:34px!important}
.solution-card{min-height:320px!important;padding:24px!important;border-radius:14px!important;background:#fff!important;border:1px solid #dfe5e1!important;box-shadow:none!important}
.solution-card::before{content:"";position:absolute;left:0;top:0;width:100%;height:3px;background:linear-gradient(90deg,#1cba6e,#2ab3bd);transform:scaleX(0);transform-origin:left;transition:.25s ease}
.solution-card:hover{transform:translateY(-4px)!important;border-color:#cfd9d3!important;box-shadow:0 16px 35px rgba(25,43,36,.08)!important}.solution-card:hover::before{transform:scaleX(1)}
.solution-icon{width:44px!important;height:44px!important;border-radius:9px!important;background:#eef7f2!important;color:#18794d!important;border-color:#d8eadf!important}
.solution-card h3{margin:62px 0 12px!important;font-size:1.35rem!important;color:#19231f!important}.solution-card p{color:#6d7972!important;line-height:1.7!important}
.solution-card .arrow{border-radius:9px!important;background:#f5f7f5!important;color:#1c5f43!important;border-color:#e1e7e3!important}
.product-mock,.project-card,.content-card,.feature-row,.pill-card,.form-card,.info-card,.process .step,.cta{border-radius:14px!important;box-shadow:none!important;border-color:#dfe5e1!important;background:#fff!important}
.cta{background:#17221e!important;color:#fff!important;border:0!important}.cta h2{color:#fff!important}.cta p{color:#aebbb4!important}.cta .btn-primary{background:#28be73!important;border-color:#28be73!important;color:#102018!important}

/* Agent Wing showcase */
.wing-section{background:#edf2ee;border-top:1px solid #e1e6e3;border-bottom:1px solid #e1e6e3}
.wing-grid{display:grid;grid-template-columns:.9fr 1.1fr .58fr;gap:22px;align-items:center}
.wing-copy{padding-right:20px}.wing-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:26px}
.wing-card{background:#111b17;border-radius:16px;padding:18px;color:#edf6f1;box-shadow:0 20px 48px rgba(12,29,21,.15)}
.wing-card-head{display:flex;align-items:center;gap:10px;padding-bottom:13px;border-bottom:1px solid rgba(255,255,255,.08)}
.wing-card-head img{width:42px;height:42px;object-fit:contain;background:#fff;border-radius:11px;padding:3px}.wing-card-head b{display:block}.wing-card-head small{color:#91a39a;font-size:.72rem}
.wing-chat-sample{display:grid;gap:9px;padding-top:15px}.wing-bubble{margin:0;padding:10px 12px;border-radius:12px;font-size:.78rem;line-height:1.55;max-width:90%}.wing-bubble.bot{background:#1b2822;border:1px solid rgba(255,255,255,.07)}.wing-bubble.user{background:#0d5e3c;border:1px solid #16784f;margin-left:auto}
.wing-qr{background:#fff;border:1px solid #dce3df;border-radius:14px;padding:16px;text-align:center}.wing-qr img{width:150px;height:150px;display:block;margin:0 auto 13px}.wing-qr b{display:block;font-size:.86rem}.wing-qr small{display:block;color:#748078;font-size:.7rem;line-height:1.5;margin-top:5px}

/* Footer */
.site-footer{background:#15201c!important;color:#e9f2ed!important;margin-top:0!important;border:0!important}.site-footer .brand-name strong{color:#fff}.site-footer .brand-name small{color:#93a49b}.footer-brand p,.footer-col a,.footer-bottom{color:#94a59d!important}.footer-col h4{color:#eef5f1!important}.footer-col a:hover{color:#fff!important}.footer-bottom{border-color:rgba(255,255,255,.08)!important}
.site-footer .brand-logo{filter:drop-shadow(0 2px 4px rgba(0,0,0,.15))}

/* Agent Wing floating launcher */
.ai-launcher{right:22px!important;bottom:22px!important;width:58px!important;height:58px!important;padding:5px!important;gap:8px!important;border-radius:16px!important;overflow:hidden!important;background:#111d18!important;border:1px solid rgba(255,255,255,.08)!important;box-shadow:0 15px 38px rgba(10,27,19,.22)!important;transition:width .25s ease,transform .2s ease,border-radius .25s ease!important;justify-content:flex-start!important}
.wing-launcher-icon{width:46px;height:46px;min-width:46px;border-radius:12px;background:#fff;overflow:hidden;display:grid;place-items:center}
.wing-launcher-icon img{width:44px;height:44px;object-fit:contain}
.ai-launcher .label{white-space:nowrap;opacity:0;max-width:0;overflow:hidden;transition:opacity .18s ease .05s,max-width .25s ease;color:#fff;font-size:.82rem;font-weight:800}
@media (hover:hover) and (pointer:fine){.ai-launcher:hover{width:170px!important;border-radius:16px!important;transform:translateY(-2px)!important}.ai-launcher:hover .label{opacity:1;max-width:104px}}

/* Agent Wing chat */
.ai-chat{border-radius:18px!important;background:#111b17!important;border:1px solid rgba(255,255,255,.08)!important;box-shadow:0 28px 75px rgba(8,22,15,.32)!important}
.ai-head{padding:12px 13px!important;background:#111b17!important}.ai-identity{gap:9px!important}.ai-avatar{width:42px!important;height:42px!important;border-radius:11px!important;background:#fff!important;padding:2px!important;overflow:hidden!important}.ai-avatar img{width:100%;height:100%;object-fit:contain}.ai-identity b{font-size:.9rem!important}.ai-identity small,.ai-live-status{display:none!important}
.ai-messages{padding:14px!important}.ai-message{border-radius:12px!important;font-size:.82rem!important;line-height:1.58!important}.ai-message.bot{background:#1b2822!important}.ai-message.user{background:#0d5f3d!important;border-color:#167c51!important}.ai-message.system{display:none!important}
.ai-quick{padding:4px 13px 11px!important}.ai-quick button{border-radius:9px!important;background:#18251f!important;padding:7px 9px!important}
.ai-form{padding:10px 12px!important}.ai-form textarea{border-radius:10px!important}.ai-send{border-radius:10px!important}.ai-note{font-size:.62rem!important;padding-bottom:9px!important}
.ai-lead-form{border-radius:12px!important}

/* Inner-page consistency */
.page-hero{padding:155px 0 74px!important;min-height:58vh!important;background:linear-gradient(180deg,#f7f7f4,#f1f4f0)}
.page-hero h1{color:#17201d!important}.page-hero p{color:#69766f!important}

@media (max-width:1050px){
  .nav-links.mobile-open{background:#fff!important;border:1px solid #dfe5e1!important;border-radius:12px!important;box-shadow:0 18px 40px rgba(20,37,30,.10)!important}
  .v31-hero .hero-grid,.wing-grid{grid-template-columns:1fr!important}
  .hero-showcase{min-height:490px!important;max-width:700px;width:100%;margin-inline:auto}.business-board{inset:24px 20px}.wing-copy{padding-right:0}.wing-qr{display:grid;grid-template-columns:150px 1fr;align-items:center;text-align:left;gap:18px}.wing-qr img{margin:0}
}
@media (max-width:700px){
  .container{width:min(calc(100% - 28px),var(--max))!important}.section{padding:68px 0!important}
  .brand-logo{width:36px;height:36px}.brand-name small{display:none}.brand-name strong{font-size:.95rem}
  .v31-hero{padding-top:122px!important;min-height:auto!important}.v31-hero h1{font-size:clamp(3rem,15vw,4.5rem)!important}.hero-showcase{min-height:455px!important}.business-board{inset:18px 0 28px!important;padding:18px!important}.board-kpis{grid-template-columns:1fr!important}.board-kpis div:nth-child(n+3){display:none}.board-list>div{grid-template-columns:28px 1fr!important}.board-list em{display:none}.note-one{display:none}.note-two{right:6px;top:4px}
  .wing-grid{gap:14px!important}.wing-qr{grid-template-columns:1fr!important;text-align:center!important}.wing-qr img{margin:0 auto!important}
  .ai-launcher{right:14px!important;bottom:14px!important;width:58px!important}.ai-launcher .label{display:none!important}.ai-chat{right:14px!important;bottom:82px!important}
}

/* =========================================================
   v3.3 CLIENT-FOCUSED UI REVISION
   UI only: Agent Wing behavior/API logic is unchanged.
   ========================================================= */

/* Refined hero with real business workflow visual */
.v31-hero{padding:138px 0 76px!important;min-height:88svh!important;background:linear-gradient(180deg,#fbfcfa 0%,#f3f6f2 100%)!important}
.v31-hero .hero-grid{grid-template-columns:.92fr 1.08fr!important;gap:58px!important;align-items:center!important}
.v31-hero h1{font-size:clamp(3.2rem,6.2vw,5.9rem)!important;line-height:.93!important;max-width:760px!important}
.v31-hero .hero-actions{margin-top:30px!important}
.v31-hero .hero-actions .btn-primary{background:#0f6b42!important;border-color:#0f6b42!important}
.v31-hero .hero-actions .btn-primary:hover{background:#138252!important;border-color:#138252!important}
.hero-photo-wrap{min-height:560px!important;display:flex;align-items:center}
.hero-photo-card{position:relative;width:100%;min-height:540px;border-radius:26px;overflow:hidden;background:#e9efeb;border:1px solid #dfe6e1;box-shadow:0 28px 68px rgba(24,43,35,.12)}
.hero-photo-card>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center center;display:block}
.hero-photo-shade{position:absolute;inset:0;background:linear-gradient(90deg,rgba(248,250,248,.36) 0%,rgba(248,250,248,.04) 36%,rgba(11,35,24,.02) 100%);pointer-events:none}
.hero-quality-card{position:absolute;right:22px;top:24px;width:148px;padding:15px 16px;background:rgba(255,255,255,.92);border:1px solid rgba(218,228,221,.94);border-radius:16px;box-shadow:0 18px 40px rgba(24,44,35,.12);backdrop-filter:blur(9px)}
.quality-check{width:28px;height:28px;border-radius:50%;display:grid;place-items:center;background:#e2f5e9;color:#0d7845;font-weight:900;margin-bottom:12px}
.hero-quality-card b{display:block;color:#17221e;font-size:.9rem;line-height:1.45}.hero-quality-card strong{display:block;color:#11844e;font-size:.78rem;margin-top:8px}
.hero-brand-chip{position:absolute;left:20px;bottom:20px;display:flex;align-items:center;gap:10px;padding:10px 13px;background:rgba(255,255,255,.92);border:1px solid rgba(218,228,221,.94);border-radius:13px;box-shadow:0 12px 30px rgba(24,44,35,.10)}
.hero-brand-chip img{width:36px;height:36px;object-fit:contain}.hero-brand-chip b{display:block;font-size:.8rem}.hero-brand-chip small{display:block;font-size:.62rem;color:#728078;margin-top:2px}
.hero-proof span{background:#fff;border-color:#dbe4de;color:#506158}

/* Cleaner workflow section replacing the public tech stack */
.process-section{background:#fff;border-top:1px solid #e7ebe8;border-bottom:1px solid #e7ebe8}
.workflow-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:0;margin-top:42px;border:1px solid #dfe5e1;border-radius:18px;background:#fbfcfa;overflow:hidden}
.workflow-step{display:flex;gap:16px;padding:26px 24px;min-height:160px;border-right:1px solid #e3e8e5;align-items:flex-start}
.workflow-step:last-child{border-right:0}
.workflow-icon{width:42px;height:42px;min-width:42px;border-radius:12px;display:grid;place-items:center;background:#eaf5ee;color:#117847;font-size:.76rem;font-weight:900;letter-spacing:.05em}
.workflow-step h3{margin:2px 0 8px;font-size:1.08rem;color:#18221e}.workflow-step p{margin:0;color:#68756e;font-size:.84rem;line-height:1.65}

/* Premium consultation area used on Home and Contact */
.consultation-section,.contact-pro-section{background:linear-gradient(180deg,#eef3ef 0%,#f7f8f6 100%);border-top:1px solid #e0e6e2}
.consultation-heading{max-width:760px;margin-bottom:34px}
.consultation-layout,.contact-pro-layout{display:grid;grid-template-columns:.72fr 1.56fr .72fr;gap:18px;align-items:stretch}
.consultation-info{display:grid;gap:12px;align-content:start}
.contact-mini-card{display:flex;align-items:center;gap:13px;min-height:96px;padding:18px;background:#fff;border:1px solid #dfe5e1;border-radius:15px;box-shadow:0 8px 24px rgba(24,42,35,.035)}
.contact-mini-icon{width:42px;height:42px;min-width:42px;border-radius:12px;display:grid;place-items:center;background:#edf7f1;color:#0d7b47;font-weight:900;font-size:1.15rem}
.contact-mini-card small{display:block;color:#75817b;font-size:.71rem;margin-bottom:5px}.contact-mini-card b{display:block;color:#18221e;font-size:.9rem;line-height:1.35}.contact-mini-card b a{color:inherit}.contact-mini-card em{display:block;color:#7c8982;font-size:.68rem;font-style:normal;margin-top:3px}
.contact-mini-card .btn{min-height:40px!important;padding:8px 12px!important;margin-top:5px!important;font-size:.76rem!important;color:#0e7445!important;border-color:#cfe2d7!important;background:#fff!important}
.robot-mini{padding:4px;overflow:hidden;background:#e9f6ee}.robot-mini img{width:100%;height:100%;object-fit:contain}
.premium-form-card{padding:26px!important;border-radius:18px!important;box-shadow:0 16px 46px rgba(24,42,35,.06)!important}
.form-intro{margin-bottom:22px}.form-intro h3{margin:0 0 6px;font-size:1.35rem;color:#18221e;letter-spacing:-.025em}.form-intro p{margin:0;color:#728078;font-size:.85rem}
.premium-form-card .form-grid{gap:15px}
.premium-form-card .field label{color:#38473f!important;font-size:.75rem!important;font-weight:700}
.premium-form-card .field input,.premium-form-card .field textarea,.premium-form-card .field select{background:#fff!important;color:#17211d!important;border:1px solid #dfe5e1!important;border-radius:11px!important;padding:13px 14px!important;box-shadow:inset 0 1px 1px rgba(13,34,24,.02)}
.premium-form-card .field input::placeholder,.premium-form-card .field textarea::placeholder{color:#929d97!important}
.premium-form-card .field input:focus,.premium-form-card .field textarea:focus,.premium-form-card .field select:focus{border-color:#a9d7bb!important;box-shadow:0 0 0 4px rgba(25,154,89,.08)!important}
.premium-form-card .field textarea{min-height:150px}
.consent-field{margin-top:1px}.consent-row{display:grid!important;grid-template-columns:18px 1fr!important;gap:11px!important;align-items:start!important;color:#596860!important;font-size:.73rem!important;line-height:1.55!important;padding:2px 1px}
.consent-row input{width:17px!important;height:17px!important;margin:2px 0 0!important;padding:0!important;accent-color:#117b48;box-shadow:none!important}
.form-submit{width:100%;justify-content:center!important;background:#0d6d42!important;border-color:#0d6d42!important;color:#fff!important;margin-top:2px}
.form-submit:hover{background:#11824f!important;border-color:#11824f!important}
.qr-consult-card{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:24px 18px;background:#fff;border:1px solid #dfe5e1;border-radius:18px;box-shadow:0 14px 38px rgba(24,42,35,.05);min-height:100%}
.qr-frame{width:min(100%,190px);aspect-ratio:1;border-radius:15px;background:#f7f9f7;border:1px solid #e2e8e4;padding:13px;display:grid;place-items:center}.qr-frame img{width:100%;height:100%;object-fit:contain;display:block}
.qr-spark{width:36px;height:36px;display:grid;place-items:center;border-radius:50%;background:#eaf6ee;color:#11804b;font-size:1.05rem;margin:18px 0 10px}
.qr-consult-card h3{font-size:1.35rem;line-height:1.05;margin:0;color:#18221e;letter-spacing:-.035em}.qr-consult-card h3 span{color:#0d834d}.qr-consult-card p{font-size:.76rem;line-height:1.55;color:#748178;max-width:190px;margin:12px auto 0}
.contact-pro-section{padding-top:68px!important}.contact-pro-layout{margin-top:0}

/* Refine the existing Wing QR card without changing Agent Wing logic */
.wing-qr{padding:20px!important;border-radius:18px!important;box-shadow:0 12px 34px rgba(22,40,32,.05)!important}.wing-qr img{width:162px!important;height:162px!important}.wing-qr b{font-size:.96rem!important;color:#18221e}.wing-qr small{font-size:.74rem!important;line-height:1.55!important}

/* Public-facing chat launcher: green brand treatment, AI internals untouched */
.ai-launcher{background:#0d6f43!important;border-color:#0d6f43!important}.ai-launcher:hover{background:#0e7e4b!important;border-color:#0e7e4b!important}.wing-launcher-icon{background:#fff!important}

/* Home stats wording/appearance */
.stats-wrap{box-shadow:0 12px 32px rgba(24,42,35,.035)!important}

@media (max-width:1050px){
  .v31-hero .hero-grid{grid-template-columns:1fr!important;gap:38px!important}.hero-photo-wrap{min-height:520px!important}.hero-photo-card{min-height:520px}
  .workflow-steps{grid-template-columns:repeat(2,1fr)}.workflow-step:nth-child(2){border-right:0}.workflow-step:nth-child(-n+2){border-bottom:1px solid #e3e8e5}
  .consultation-layout,.contact-pro-layout{grid-template-columns:.75fr 1.25fr}.qr-consult-card{grid-column:1/-1;display:grid;grid-template-columns:170px 1fr;gap:22px;text-align:left;justify-content:start}.qr-spark{display:none}.qr-consult-card h3,.qr-consult-card p{margin-left:0;margin-right:0}.qr-consult-card p{max-width:360px}.qr-frame{grid-row:1/3}
}
@media (max-width:700px){
  .v31-hero{padding-top:118px!important}.v31-hero h1{font-size:clamp(3rem,14vw,4.25rem)!important}.hero-photo-wrap,.hero-photo-card{min-height:430px!important}.hero-quality-card{right:12px;top:12px;width:128px;padding:12px}.hero-brand-chip{left:12px;bottom:12px}.hero-photo-card>img{object-position:58% center}
  .workflow-steps{grid-template-columns:1fr}.workflow-step{border-right:0!important;border-bottom:1px solid #e3e8e5!important;min-height:auto}.workflow-step:last-child{border-bottom:0!important}
  .consultation-layout,.contact-pro-layout{grid-template-columns:1fr}.consultation-info{grid-template-columns:1fr 1fr}.contact-mini-card{min-height:88px;padding:14px}.assistant-card{grid-column:1/-1}.premium-form-card{padding:19px!important}.premium-form-card .form-grid{grid-template-columns:1fr!important}.premium-form-card .field.full{grid-column:auto!important}.qr-consult-card{grid-column:auto;display:flex;text-align:center}.qr-frame{grid-row:auto;width:178px}.qr-consult-card h3,.qr-consult-card p{margin-left:auto;margin-right:auto}
}
@media (max-width:460px){.consultation-info{grid-template-columns:1fr}.assistant-card{grid-column:auto}.hero-quality-card{display:none}}


/* =========================
   v3.4 UI polish
   ========================= */
/* Larger, office-only homepage hero */
.v31-hero .hero-grid{grid-template-columns:.88fr 1.12fr!important;gap:54px!important}
.hero-photo-wrap{min-height:590px!important}
.hero-photo-card.office-only-hero{min-height:575px!important;border-radius:28px!important;background:#eef2ef!important;box-shadow:0 30px 72px rgba(24,43,35,.13)!important}
.hero-photo-card.office-only-hero>img{object-fit:cover!important;object-position:center!important;transform:scale(1.015)}

/* Contact page: QR lives inside Chat with Us card */
.contact-pro-layout{grid-template-columns:.82fr 1.58fr!important;gap:22px!important;align-items:start!important}
.contact-pro-layout .consultation-info{display:grid;gap:12px}
.assistant-qr-card{position:relative;display:grid!important;grid-template-columns:42px 1fr 92px;align-items:center!important;gap:14px!important;min-height:126px!important;padding:16px!important}
.assistant-qr-card .assistant-copy{min-width:0}
.assistant-qr-card .assistant-copy>b{display:block;font-size:.9rem;color:#18221e;margin:1px 0 3px}
.assistant-qr-card .assistant-copy>span{display:block;color:#748078;font-size:.69rem;line-height:1.45}
.assistant-qr-card .btn{margin-top:7px!important}
.assistant-qr-img{width:88px;height:88px;object-fit:contain;padding:5px;border:1px solid #dfe5e1;border-radius:10px;background:#fff}

/* Footer social presence */
.social-links{display:grid;gap:8px;margin-top:16px}
.social-link{display:flex!important;align-items:center;gap:9px!important;margin:0!important;color:#a8b7b0!important;font-size:.8rem!important}
.social-link:hover{color:#fff!important}
.social-icon{width:28px;height:28px;border-radius:8px;display:grid;place-items:center;font-weight:900;font-size:.85rem;line-height:1;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.08)}
.social-link.facebook .social-icon{background:#1877f2;color:#fff;border-color:#1877f2;font-family:Arial,sans-serif;font-size:1.08rem}
.social-link.instagram .social-icon{background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);color:#fff;border:0;font-size:1.05rem}
.social-link.linkedin .social-icon{background:#0a66c2;color:#fff;border-color:#0a66c2;font-family:Arial,sans-serif}

@media (max-width:1050px){
  .v31-hero .hero-grid{grid-template-columns:1fr!important;gap:38px!important}
  .hero-photo-wrap{min-height:520px!important}
  .hero-photo-card.office-only-hero{min-height:500px!important}
  .contact-pro-layout{grid-template-columns:.8fr 1.2fr!important}
}
@media (max-width:700px){
  .hero-photo-wrap{min-height:390px!important}
  .hero-photo-card.office-only-hero{min-height:380px!important}
  .contact-pro-layout{grid-template-columns:1fr!important}
  .assistant-qr-card{grid-template-columns:42px 1fr 82px;min-height:116px!important}
  .assistant-qr-img{width:78px;height:78px}
}


/* =========================================================
   v3.5 — Compact background-image homepage hero
   UI only. Agent Wing / AI logic untouched.
   ========================================================= */
.hero.v31-hero.hero-bg-office{
  position:relative!important;
  min-height:680px!important;
  padding:122px 0 62px!important;
  display:flex!important;
  align-items:center!important;
  overflow:hidden!important;
  isolation:isolate;
  background:#f5f7f4 url('../images/hero-office-dashboard.png') right center / cover no-repeat!important;
}
.hero.v31-hero.hero-bg-office::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  background:linear-gradient(90deg,
    rgba(250,251,249,.99) 0%,
    rgba(250,251,249,.98) 25%,
    rgba(250,251,249,.94) 40%,
    rgba(250,251,249,.74) 55%,
    rgba(250,251,249,.24) 72%,
    rgba(250,251,249,.04) 100%);
}
.hero.v31-hero.hero-bg-office::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(237,244,239,.14));
}
.hero-bg-shade{display:none}
.hero-bg-content{position:relative;z-index:1;width:min(calc(100% - 40px),var(--max));margin-inline:auto}
.hero-bg-office .hero-copy{width:min(620px,54%)}
.hero-bg-office h1{
  font-size:clamp(3rem,5.25vw,5.4rem)!important;
  line-height:.94!important;
  max-width:690px!important;
  margin:18px 0 20px!important;
  text-wrap:balance;
}
.hero-bg-office p{max-width:590px!important;font-size:1.03rem!important;line-height:1.68!important;color:#53635b!important}
.hero-bg-office .hero-actions{margin-top:26px!important}
.hero-bg-office .hero-proof{margin-top:24px!important}
.hero-bg-office .hero-proof span{background:rgba(255,255,255,.86)!important;backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px)}

@media (max-width:1050px){
  .hero.v31-hero.hero-bg-office{
    min-height:650px!important;
    background-position:62% center!important;
  }
  .hero.v31-hero.hero-bg-office::before{
    background:linear-gradient(90deg,rgba(250,251,249,.99) 0%,rgba(250,251,249,.97) 38%,rgba(250,251,249,.82) 58%,rgba(250,251,249,.26) 100%);
  }
  .hero-bg-office .hero-copy{width:min(620px,68%)}
}
@media (max-width:760px){
  .hero.v31-hero.hero-bg-office{
    min-height:620px!important;
    padding:112px 0 48px!important;
    background-position:67% center!important;
  }
  .hero.v31-hero.hero-bg-office::before{
    background:linear-gradient(90deg,rgba(250,251,249,.985) 0%,rgba(250,251,249,.96) 54%,rgba(250,251,249,.76) 78%,rgba(250,251,249,.48) 100%);
  }
  .hero-bg-office .hero-copy{width:88%;max-width:590px}
  .hero-bg-office h1{font-size:clamp(2.85rem,12.8vw,4.15rem)!important;max-width:590px!important}
  .hero-bg-office p{font-size:.98rem!important;max-width:520px!important}
}
@media (max-width:520px){
  .hero.v31-hero.hero-bg-office{
    min-height:auto!important;
    padding:104px 0 44px!important;
    background-position:72% center!important;
  }
  .hero.v31-hero.hero-bg-office::before{
    background:linear-gradient(90deg,rgba(250,251,249,.99) 0%,rgba(250,251,249,.97) 67%,rgba(250,251,249,.78) 100%);
  }
  .hero-bg-office .hero-copy{width:100%}
  .hero-bg-office h1{font-size:clamp(2.65rem,13.5vw,3.8rem)!important}
  .hero-bg-office .hero-proof{gap:8px!important}
  .hero-bg-office .hero-proof span{font-size:.68rem!important}
}


/* =========================================================
   v3.6 — Full-width office background hero
   Production UI only. Agent Wing / AI behavior unchanged.
   ========================================================= */
.hero.v31-hero.hero-bg-office{
  width:100%!important;
  max-width:none!important;
  min-height:610px!important;
  padding:118px 0 54px!important;
  background-image:url('../images/hero-office-dashboard.png')!important;
  background-size:cover!important;
  background-position:center center!important;
  background-repeat:no-repeat!important;
}
.hero.v31-hero.hero-bg-office::before{
  background:linear-gradient(90deg,
    rgba(249,251,248,.995) 0%,
    rgba(249,251,248,.985) 27%,
    rgba(249,251,248,.925) 43%,
    rgba(249,251,248,.70) 57%,
    rgba(249,251,248,.22) 76%,
    rgba(249,251,248,.05) 100%)!important;
}
.hero-bg-content{width:min(calc(100% - 64px),1320px)!important;max-width:1320px!important}
.hero-bg-office .hero-copy{width:min(650px,52%)!important}
.hero-bg-office h1{font-size:clamp(3rem,5vw,5.3rem)!important;line-height:.93!important;max-width:700px!important}
.hero-bg-office p{max-width:580px!important}
@media (min-width:1500px){
  .hero.v31-hero.hero-bg-office{min-height:640px!important;background-position:center 48%!important}
  .hero-bg-content{max-width:1420px!important}
}
@media (max-width:1050px){
  .hero.v31-hero.hero-bg-office{min-height:610px!important;background-position:60% center!important}
  .hero-bg-content{width:min(calc(100% - 40px),var(--max))!important}
  .hero-bg-office .hero-copy{width:min(620px,70%)!important}
}
@media (max-width:760px){
  .hero.v31-hero.hero-bg-office{min-height:590px!important;padding:108px 0 44px!important;background-position:68% center!important}
  .hero-bg-office .hero-copy{width:92%!important}
}
@media (max-width:520px){
  .hero.v31-hero.hero-bg-office{min-height:auto!important;padding:100px 0 42px!important;background-position:72% center!important}
  .hero-bg-office .hero-copy{width:100%!important}
}
