:root{
  --bg:#070a12;
  --bg-2:#0a0e18;
  --surface:rgba(17,23,38,.72);
  --surface-strong:#101727;
  --surface-soft:#0c111d;
  --border:rgba(255,255,255,.10);
  --border-strong:rgba(112,162,255,.28);
  --text:#f5f7fb;
  --muted:#9ba7bb;
  --blue:#5aa7ff;
  --cyan:#5de0d0;
  --purple:#9b87f5;
  --success:#62e0a1;
  --shadow:0 25px 80px rgba(0,0,0,.35);
  --radius:24px;
  --container:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background: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;
}
a{color:inherit;text-decoration:none}
button,input,textarea{font:inherit}
img{max-width:100%;display:block}
.container{width:min(calc(100% - 40px),var(--container));margin-inline:auto}
.section{position:relative;padding:118px 0}
.section-soft{
  background:linear-gradient(180deg,rgba(255,255,255,.018),rgba(255,255,255,.006));
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05)
}
.skip-link{
  position:fixed;left:18px;top:-80px;z-index:1000;
  background:#fff;color:#000;padding:10px 14px;border-radius:10px
}
.skip-link:focus{top:18px}
.site-bg{position:fixed;inset:0;pointer-events:none;z-index:-1;overflow:hidden}
.grid-mask{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:56px 56px;
  mask-image:linear-gradient(to bottom,black,transparent 78%);
}
.glow{position:absolute;border-radius:999px;filter:blur(80px);opacity:.26}
.glow-a{width:520px;height:520px;background:#195fc7;top:-180px;left:-150px}
.glow-b{width:420px;height:420px;background:#5730b6;top:240px;right:-180px}
.site-header{
  position:sticky;top:0;z-index:100;
  backdrop-filter:blur(18px);
  background:rgba(7,10,18,.68);
  border-bottom:1px solid rgba(255,255,255,.065)
}
.nav-shell{height:78px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.brand{display:flex;align-items:center;gap:12px;font-weight:800;letter-spacing:-.03em}
.brand-icon{
  width:38px;height:38px;display:grid;place-items:center;border-radius:12px;
  background:linear-gradient(135deg,var(--blue),var(--purple));
  box-shadow:0 12px 30px rgba(90,167,255,.25)
}
.brand-name{font-size:19px}.brand-name span{color:var(--blue)}
.nav{display:flex;align-items:center;gap:30px}
.nav a{color:#b9c2d2;font-size:14px;font-weight:650;transition:.2s ease}
.nav a:hover{color:#fff}
.nav-button{
  padding:11px 17px;border:1px solid var(--border);border-radius:12px;
  background:rgba(255,255,255,.04)
}
.menu-toggle{display:none;border:0;background:transparent;padding:8px;cursor:pointer}
.menu-toggle span{display:block;width:24px;height:2px;background:#fff;margin:5px 0;border-radius:2px}
.hero{padding-top:105px;min-height:760px;display:flex;align-items:center}
.hero-layout{display:grid;grid-template-columns:1.08fr .92fr;gap:82px;align-items:center}
.availability{
  display:inline-flex;align-items:center;gap:9px;padding:8px 12px;
  border:1px solid rgba(98,224,161,.2);border-radius:999px;
  color:#bdeed4;background:rgba(98,224,161,.055);font-size:13px;font-weight:700
}
.availability-dot{
  width:8px;height:8px;border-radius:50%;background:var(--success);
  box-shadow:0 0 0 6px rgba(98,224,161,.09)
}
.hero-kicker{margin:28px 0 12px;color:#7fa8e7;font-size:12px;font-weight:800;letter-spacing:.16em}
.hero h1{margin:0;max-width:780px;font-size:clamp(48px,6vw,78px);line-height:1.03;letter-spacing:-.058em}
.hero h1 span{
  display:block;background:linear-gradient(90deg,#79b7ff,#68e1d3 48%,#a597ff);
  -webkit-background-clip:text;background-clip:text;color:transparent
}
.hero-text{max-width:680px;margin:26px 0 0;color:var(--muted);font-size:18px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:34px}
.button{
  min-height:50px;display:inline-flex;align-items:center;justify-content:center;gap:12px;
  border-radius:14px;padding:0 20px;font-weight:750;border:1px solid transparent;
  cursor:pointer;transition:transform .2s ease,border-color .2s ease,background .2s ease
}
.button:hover{transform:translateY(-2px)}
.button.primary{
  background:linear-gradient(135deg,#4d9cff,#7668ef);color:#fff;
  box-shadow:0 16px 36px rgba(72,126,242,.23)
}
.button.ghost{border-color:var(--border);background:rgba(255,255,255,.035);color:#d7deea}
.hero-metrics{
  margin-top:48px;display:grid;grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--border);padding-top:24px;gap:16px
}
.hero-metrics div{display:flex;flex-direction:column}
.hero-metrics strong{font-size:20px}.hero-metrics span{font-size:12px;color:var(--muted)}
.hero-panel{
  position:relative;border:1px solid var(--border-strong);border-radius:28px;
  background:linear-gradient(160deg,rgba(20,29,48,.90),rgba(9,13,23,.94));
  box-shadow:var(--shadow);overflow:visible;transform:perspective(1000px) rotateY(-4deg) rotateX(2deg)
}
.panel-top{
  height:52px;padding:0 18px;display:flex;align-items:center;gap:7px;
  border-bottom:1px solid var(--border);background:rgba(255,255,255,.025);
  border-radius:28px 28px 0 0
}
.panel-dot{width:9px;height:9px;border-radius:50%;background:#334159}
.panel-top small{margin-left:auto;color:#65738a}
.panel-content{padding:28px}
.status-line{display:flex;justify-content:space-between;gap:20px;padding:10px 0;border-bottom:1px solid rgba(255,255,255,.055)}
.status-label{font-size:11px;letter-spacing:.12em;color:#6f7d94}
.status-value{font-size:13px;font-weight:700;color:#d8dfeb}.status-value.success{color:var(--success)}
.code-window{
  margin-top:26px;padding:21px 18px;border:1px solid rgba(255,255,255,.08);
  border-radius:17px;background:#080c15;font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
  font-size:13px;box-shadow:inset 0 1px 0 rgba(255,255,255,.025)
}
.code-window p{margin:6px 0;color:#b9c4d7}.code-window i{display:inline-block;width:28px;color:#44516a;font-style:normal}
.code-purple{color:#c39afa}.code-green{color:#79e5b2}.code-blue{color:#70b9ff}
.floating-tag{
  position:absolute;padding:10px 13px;border-radius:12px;border:1px solid var(--border);
  background:rgba(11,16,28,.92);color:#c8d1df;font-size:12px;font-weight:800;
  box-shadow:0 15px 35px rgba(0,0,0,.35)
}
.tag-a{right:-35px;top:110px}.tag-b{left:-36px;bottom:58px}
.logo-strip{border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:rgba(255,255,255,.018)}
.logo-strip-inner{
  min-height:86px;display:flex;align-items:center;justify-content:space-between;gap:28px;flex-wrap:wrap
}
.logo-strip span{font-size:11px;letter-spacing:.16em;color:#718099;font-weight:800}
.section-heading{max-width:760px;margin-bottom:48px}
.section-heading.centered{text-align:center;margin-inline:auto}
.section-heading h2{margin:10px 0 0;font-size:clamp(35px,4.5vw,54px);line-height:1.08;letter-spacing:-.045em}
.section-heading p{color:var(--muted);font-size:17px;max-width:680px;margin:18px auto 0}
.eyebrow{color:#6fa9f3;font-size:12px;font-weight:850;letter-spacing:.17em}
.about-layout{display:grid;grid-template-columns:.9fr 1.1fr;gap:88px;align-items:start}
.about-card{
  padding:36px;border:1px solid var(--border);border-radius:var(--radius);
  background:linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.018))
}
.about-card p{margin:0 0 18px;color:#b6c0d0;font-size:17px}
.about-card strong{color:#fff}
.skill-cloud{display:flex;gap:10px;flex-wrap:wrap;margin-top:27px}
.skill-cloud span,.project-tech span{
  padding:8px 11px;border:1px solid rgba(255,255,255,.085);border-radius:999px;
  color:#aeb8ca;background:rgba(255,255,255,.025);font-size:12px;font-weight:700
}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.service-card{
  min-height:245px;padding:28px;border:1px solid var(--border);border-radius:20px;
  background:linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.012));
  transition:transform .25s ease,border-color .25s ease,background .25s ease
}
.service-card:hover{transform:translateY(-5px);border-color:rgba(90,167,255,.33);background:rgba(90,167,255,.045)}
.card-number{display:inline-block;color:#6388ba;font-size:12px;font-weight:800;letter-spacing:.12em}
.service-card h3{margin:42px 0 10px;font-size:21px}.service-card p{margin:0;color:var(--muted);font-size:14px}
.projects-list{display:flex;flex-direction:column;gap:34px}
.project-card{
  display:grid;grid-template-columns:1.03fr .97fr;min-height:480px;
  border:1px solid var(--border);border-radius:28px;overflow:hidden;
  background:linear-gradient(145deg,rgba(255,255,255,.04),rgba(255,255,255,.015))
}
.project-card.reverse .project-preview{order:2}.project-card.reverse .project-info{order:1}
.project-preview{position:relative;display:grid;place-items:center;min-height:440px;overflow:hidden}
.hotel-preview{
  background:
    radial-gradient(circle at 35% 35%,rgba(202,162,92,.18),transparent 28%),
    linear-gradient(145deg,#18130d,#090c12)
}
.bcs-preview{
  background:
    radial-gradient(circle at 60% 45%,rgba(66,130,255,.23),transparent 34%),
    linear-gradient(145deg,#09111f,#080b11)
}
.project-browser{
  width:75%;aspect-ratio:1.45;border:1px solid rgba(255,255,255,.15);border-radius:16px;
  background:linear-gradient(rgba(0,0,0,.18),rgba(0,0,0,.25)),linear-gradient(135deg,#3b2b18,#121212);
  box-shadow:0 35px 70px rgba(0,0,0,.45);overflow:hidden;transform:rotate(-3deg)
}
.browser-bar{height:32px;background:rgba(0,0,0,.34);display:flex;align-items:center;gap:6px;padding:0 12px}
.browser-bar i{width:7px;height:7px;border-radius:50%;background:#72624f}
.hotel-brand{height:calc(100% - 32px);display:flex;flex-direction:column;align-items:center;justify-content:center;letter-spacing:.28em}
.hotel-brand small{font-size:11px;color:#c8a66c}.hotel-brand strong{font-family:Georgia,serif;font-size:45px;letter-spacing:.08em;color:#f6ead6}
.hotel-brand span{font-size:10px;color:#a68e6c}
.project-year{
  position:absolute;left:22px;bottom:20px;padding:8px 11px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);font-size:11px;font-weight:800;color:#cdd6e4;background:rgba(0,0,0,.35)
}
.project-info{padding:50px;display:flex;flex-direction:column;justify-content:center}
.project-labels{display:flex;gap:9px;flex-wrap:wrap}
.project-labels span{color:#79aef1;font-size:11px;font-weight:850;letter-spacing:.1em;text-transform:uppercase}
.project-info h3{margin:18px 0 14px;font-size:35px;line-height:1.12;letter-spacing:-.035em}
.project-info p{margin:0;color:var(--muted);font-size:16px}
.project-tech{display:flex;flex-wrap:wrap;gap:8px;margin-top:24px}
.project-info>a{margin-top:31px;font-weight:800;color:#dce8fb}.project-info>a span{color:var(--blue)}
.bcs-network{position:relative;width:280px;height:280px;display:grid;place-items:center}
.bcs-network::before,.bcs-network::after{content:"";position:absolute;border:1px solid rgba(90,167,255,.2);border-radius:50%}
.bcs-network::before{inset:28px}.bcs-network::after{inset:70px}
.bcs-core{
  width:92px;height:92px;border-radius:28px;display:grid;place-items:center;z-index:2;
  font-size:25px;font-weight:900;background:linear-gradient(135deg,#4d9cff,#725ee9);
  box-shadow:0 0 50px rgba(77,156,255,.35)
}
.node{
  position:absolute;padding:8px 10px;border-radius:10px;border:1px solid rgba(255,255,255,.1);
  background:#10182a;color:#a9bad1;font-size:11px;font-weight:750
}
.node-a{top:15px;left:105px}.node-b{top:76px;right:-12px}.node-c{bottom:58px;right:4px}.node-d{bottom:5px;left:103px}.node-e{top:110px;left:-12px}
.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.process-card{padding:26px;border-top:1px solid var(--border);background:rgba(255,255,255,.015);min-height:210px}
.process-card>span{color:#6389be;font-size:12px;font-weight:850;letter-spacing:.13em}
.process-card h3{margin:40px 0 10px;font-size:21px}.process-card p{margin:0;color:var(--muted);font-size:14px}
.contact-shell{
  display:grid;grid-template-columns:.92fr 1.08fr;gap:70px;padding:58px;
  border:1px solid var(--border-strong);border-radius:30px;
  background:
    radial-gradient(circle at 10% 0%,rgba(72,132,244,.13),transparent 34%),
    linear-gradient(145deg,rgba(20,28,47,.92),rgba(9,13,23,.94));
  box-shadow:var(--shadow)
}
.contact-copy h2{margin:10px 0 18px;font-size:46px;line-height:1.08;letter-spacing:-.045em}
.contact-copy p{color:var(--muted);font-size:16px}
.contact-email{display:inline-flex;gap:10px;margin-top:24px;font-size:19px;font-weight:850;color:#fff}
.contact-email span{color:var(--blue)}
.contact-form{display:flex;flex-direction:column;gap:16px}
.contact-form label{display:flex;flex-direction:column;gap:7px}
.contact-form label>span{color:#9eacc1;font-size:12px;font-weight:750}
.contact-form input,.contact-form textarea{
  width:100%;border:1px solid rgba(255,255,255,.1);border-radius:13px;
  background:rgba(4,7,13,.55);color:#fff;padding:14px 15px;outline:none;resize:vertical
}
.contact-form input:focus,.contact-form textarea:focus{border-color:rgba(90,167,255,.55);box-shadow:0 0 0 4px rgba(90,167,255,.08)}
.contact-form small{color:#718097}
.footer{border-top:1px solid var(--border);padding:28px 0}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:25px}
.footer p,.footer>a{color:#7f8ca0;font-size:13px}
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease,transform .7s ease}
.reveal.visible{opacity:1;transform:none}
.delay-1{transition-delay:.09s}.delay-2{transition-delay:.18s}.delay-3{transition-delay:.27s}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}.reveal{opacity:1;transform:none;transition:none}
  .button,.service-card{transition:none}
}
@media (max-width:980px){
  .hero-layout,.about-layout,.contact-shell{grid-template-columns:1fr}
  .hero-panel{max-width:680px;transform:none}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .project-card{grid-template-columns:1fr}.project-card.reverse .project-preview,.project-card.reverse .project-info{order:initial}
  .process-grid{grid-template-columns:repeat(2,1fr)}
  .tag-a{right:12px}.tag-b{left:12px}
}
@media (max-width:760px){
  .section{padding:86px 0}
  .container{width:min(calc(100% - 28px),var(--container))}
  .menu-toggle{display:block}
  .nav{
    position:absolute;left:14px;right:14px;top:70px;display:none;flex-direction:column;align-items:stretch;gap:4px;
    padding:12px;border:1px solid var(--border);border-radius:16px;background:rgba(8,12,21,.98);box-shadow:var(--shadow)
  }
  .nav.open{display:flex}.nav a{padding:12px 13px}.nav-button{text-align:center}
  .hero{padding-top:70px;min-height:auto}.hero-layout{gap:55px}.hero h1{font-size:47px}
  .hero-text{font-size:16px}.hero-metrics{grid-template-columns:1fr;gap:18px}
  .logo-strip-inner{justify-content:center;padding:20px 0}.logo-strip span{font-size:10px}
  .services-grid,.process-grid{grid-template-columns:1fr}
  .service-card{min-height:210px}
  .project-info{padding:34px 25px}.project-info h3{font-size:29px}
  .project-preview{min-height:340px}.project-browser{width:84%}
  .hotel-brand strong{font-size:35px}
  .contact-shell{padding:31px 22px;gap:42px}.contact-copy h2{font-size:37px}
  .footer-inner{flex-direction:column;text-align:center}
}

/* v2.1 premium motion & conversion upgrade */
.site-bg::after{content:"";position:fixed;inset:0;pointer-events:none;opacity:.045;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E")}
.hero::before{content:"";position:absolute;width:580px;height:580px;right:5%;top:6%;border-radius:50%;background:radial-gradient(circle,rgba(67,138,255,.17),transparent 66%);filter:blur(10px);animation:heroGlow 8s ease-in-out infinite alternate;pointer-events:none}
.hero-panel{animation:panelFloat 6s ease-in-out infinite;transform-style:preserve-3d;will-change:transform}
.hero-panel::before{content:"";position:absolute;inset:-1px;border-radius:inherit;background:linear-gradient(115deg,transparent 15%,rgba(114,190,255,.24),transparent 48%);transform:translateX(-110%);animation:panelScan 6.5s ease-in-out infinite;pointer-events:none;z-index:0}
.hero-panel>*{position:relative;z-index:1}
.dashboard-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px;color:#92a5c1;font-size:10px;font-weight:850;letter-spacing:.14em}
.live-dot{display:inline-block;width:7px;height:7px;margin-right:7px;border-radius:50%;background:#39dc8a;box-shadow:0 0 0 0 rgba(57,220,138,.55);animation:livePulse 1.8s infinite}
.dashboard-time{font-variant-numeric:tabular-nums;color:#70839f}
.dashboard-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:9px;margin-bottom:14px}
.dashboard-metric{padding:11px 12px;border:1px solid rgba(255,255,255,.075);border-radius:11px;background:rgba(255,255,255,.025)}
.dashboard-metric span{display:block;color:#647590;font-size:8px;font-weight:850;letter-spacing:.13em;margin-bottom:4px}.dashboard-metric strong{font-size:12px;color:#dce8f8}.dashboard-metric strong.success{color:#52e59b}
.hero-metrics strong{font-variant-numeric:tabular-nums}.counter{display:inline-block;min-width:.65em}
.service-top{display:flex;align-items:center;justify-content:space-between}.service-icon{width:38px;height:38px;display:grid;place-items:center;border:1px solid rgba(95,163,255,.18);border-radius:12px;background:rgba(90,167,255,.055);color:#75adf5;font-size:14px;font-weight:900;transition:.3s ease}
.service-card{position:relative;overflow:hidden}.service-card::after{content:"";position:absolute;inset:auto -35% -75% -35%;height:150px;background:radial-gradient(circle,rgba(70,139,255,.18),transparent 65%);opacity:0;transition:.35s ease}.service-card:hover::after{opacity:1}.service-card:hover .service-icon{transform:rotate(-5deg) scale(1.08);border-color:rgba(95,163,255,.45);box-shadow:0 0 24px rgba(76,145,255,.16)}
.why-section{position:relative;overflow:hidden}.why-section::before{content:"";position:absolute;inset:10% -20%;background:radial-gradient(circle at center,rgba(65,119,226,.08),transparent 52%);pointer-events:none}.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.why-card{position:relative;padding:30px 25px;min-height:250px;border:1px solid var(--border);border-radius:20px;background:linear-gradient(155deg,rgba(255,255,255,.035),rgba(255,255,255,.012));transition:.3s ease}.why-card:hover{transform:translateY(-6px);border-color:rgba(90,167,255,.31);box-shadow:0 20px 45px rgba(0,0,0,.2)}.why-card>span{display:inline-grid;place-items:center;width:34px;height:34px;border-radius:10px;background:rgba(90,167,255,.08);color:#70a9f3;font-size:11px;font-weight:900}.why-card h3{margin:48px 0 10px;font-size:20px}.why-card p{margin:0;color:var(--muted);font-size:14px}
.project-card{transition:transform .35s ease,border-color .35s ease,box-shadow .35s ease}.project-card:hover{transform:translateY(-4px);border-color:rgba(89,159,255,.25);box-shadow:0 26px 70px rgba(0,0,0,.25)}
@keyframes panelFloat{0%,100%{transform:translateY(0) rotateX(0) rotateY(0)}50%{transform:translateY(-10px) rotateX(.8deg) rotateY(-.8deg)}}
@keyframes heroGlow{to{transform:translate3d(-30px,25px,0) scale(1.08);opacity:.75}}
@keyframes panelScan{0%,60%{transform:translateX(-110%)}85%,100%{transform:translateX(110%)}}
@keyframes livePulse{0%{box-shadow:0 0 0 0 rgba(57,220,138,.5)}70%{box-shadow:0 0 0 8px rgba(57,220,138,0)}100%{box-shadow:0 0 0 0 rgba(57,220,138,0)}}
@media (max-width:980px){.why-grid{grid-template-columns:repeat(2,1fr)}.hero-panel{animation:none}}
@media (max-width:760px){.why-grid{grid-template-columns:1fr}.why-card{min-height:210px}.dashboard-grid{grid-template-columns:1fr 1fr}}
@media (prefers-reduced-motion:reduce){.hero-panel,.hero-panel::before,.hero::before,.live-dot{animation:none!important}}

/* v2.2 premium additions */
body::before{
  content:"";position:fixed;inset:0;pointer-events:none;z-index:9999;opacity:.028;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E")
}
.hero-trust{display:flex;flex-wrap:wrap;gap:10px 18px;margin-top:22px;color:#aeb9ca;font-size:12px;font-weight:700}
.hero-trust span{display:inline-flex;align-items:center;gap:7px}.hero-trust i{font-style:normal;color:var(--success)}
.dashboard-health{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:14px}
.health-card{padding:13px;border:1px solid rgba(255,255,255,.08);border-radius:12px;background:rgba(255,255,255,.02)}
.health-card>div{display:flex;justify-content:space-between;gap:10px;color:#8f9cb0;font-size:10px;font-weight:800;letter-spacing:.08em}
.health-card strong{color:#e8eef8}.health-bar{height:5px;margin-top:10px;border-radius:999px;background:rgba(255,255,255,.07);overflow:hidden}
.health-bar span{display:block;height:100%;width:40%;border-radius:inherit;background:linear-gradient(90deg,var(--blue),var(--cyan));transition:width .7s ease}
.system-row{display:flex;justify-content:space-between;align-items:center;margin-top:12px;padding:10px 12px;border:1px solid rgba(255,255,255,.075);border-radius:11px;color:#8f9cb0;font-size:10px;font-weight:800;letter-spacing:.08em}
.system-row strong{color:var(--success)}
.project-actions{display:flex;gap:16px;flex-wrap:wrap;margin-top:31px}.project-actions a{font-weight:800;color:#dce8fb}.project-actions a span{color:var(--blue)}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}.contact-grid .full{grid-column:1/-1}
.contact-form select{width:100%;border:1px solid rgba(255,255,255,.1);border-radius:13px;background:#080c15;color:#fff;padding:14px 15px;outline:none}
.contact-form select:focus{border-color:rgba(90,167,255,.55);box-shadow:0 0 0 4px rgba(90,167,255,.08)}
.case-hero{padding:150px 0 80px}.case-hero .section-heading{max-width:860px}.case-meta{display:flex;flex-wrap:wrap;gap:10px;margin-top:28px}.case-meta span{padding:8px 12px;border:1px solid var(--border);border-radius:999px;color:#aeb8ca;font-size:12px;font-weight:700}
.case-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.case-block{padding:28px;border:1px solid var(--border);border-radius:20px;background:rgba(255,255,255,.022)}.case-block h3{margin:0 0 10px}.case-block p{margin:0;color:var(--muted)}
.case-story{max-width:850px}.case-story h2{font-size:40px;letter-spacing:-.04em}.case-story p{color:var(--muted);font-size:17px}.case-back{display:inline-flex;margin-top:30px;color:#b8c7dc;font-weight:800}
@media(max-width:760px){.dashboard-health,.contact-grid,.case-grid{grid-template-columns:1fr}.contact-grid .full{grid-column:auto}.hero-trust{gap:8px 12px}.case-hero{padding-top:120px}}

/* v3.0 hero redesign */
.hero-v3{min-height:820px;padding:118px 0 92px;overflow:hidden}
.hero-v3::after{content:"";position:absolute;width:760px;height:760px;left:-210px;top:-80px;border-radius:50%;background:radial-gradient(circle,rgba(41,119,255,.18),rgba(70,211,208,.07) 36%,transparent 68%);filter:blur(6px);pointer-events:none}
.hero-layout-v3{grid-template-columns:1.04fr .96fr;gap:92px;position:relative;z-index:1}
.hero-v3 .hero-copy{max-width:650px}
.hero-v3 .hero-kicker{margin-top:30px;color:#87aef1}
.hero-v3 h1{font-size:clamp(56px,6.3vw,86px);max-width:680px;line-height:.98;letter-spacing:-.065em}
.hero-v3 h1 span{margin-top:7px}
.hero-v3 .hero-text{max-width:615px;font-size:17px;line-height:1.8;margin-top:28px}
.hero-v3 .hero-actions{margin-top:32px}
.hero-badges{display:flex;flex-wrap:wrap;gap:9px;margin-top:24px}
.hero-badges span{padding:7px 10px;border:1px solid rgba(255,255,255,.085);border-radius:999px;background:rgba(255,255,255,.025);color:#aab7ca;font-size:11px;font-weight:750;letter-spacing:.02em}
.hero-badges span:first-child{color:#c5f1db;border-color:rgba(98,224,161,.18);background:rgba(98,224,161,.045)}
.hero-metrics-v3{border:0;padding:0;margin-top:34px;gap:12px}
.hero-metrics-v3 .metric-card{min-height:94px;padding:17px 18px;border:1px solid rgba(255,255,255,.085);border-radius:17px;background:linear-gradient(150deg,rgba(255,255,255,.045),rgba(255,255,255,.014));box-shadow:inset 0 1px 0 rgba(255,255,255,.025)}
.hero-metrics-v3 .metric-card strong{font-size:24px;line-height:1.1}
.hero-metrics-v3 .metric-card>span{margin-top:8px;font-size:11px}
.hero-panel-v3{border-radius:26px;transform:none;background:linear-gradient(155deg,rgba(18,27,45,.94),rgba(7,11,20,.97));box-shadow:0 35px 100px rgba(0,0,0,.46),0 0 0 1px rgba(74,145,255,.08),0 0 80px rgba(46,112,229,.09)}
.hero-panel-v3 .panel-top{height:48px;border-radius:26px 26px 0 0}
.panel-content-v3{padding:28px 30px 24px}
.dashboard-head-v3{margin-bottom:24px}
.dashboard-head-v3>div{display:flex;align-items:center;gap:10px}
.dashboard-head-v3>div>div{display:flex;flex-direction:column;gap:2px}
.dashboard-head-v3 small{color:#71839e;font-size:8px;letter-spacing:.15em}
.dashboard-head-v3 strong{color:#edf3fc;font-size:14px;letter-spacing:-.02em}
.status-stack{border:1px solid rgba(255,255,255,.075);border-radius:16px;overflow:hidden;background:rgba(2,6,13,.28)}
.status-item{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:14px 16px;border-bottom:1px solid rgba(255,255,255,.06)}
.status-item:last-child{border-bottom:0}
.status-item span{color:#8d9bb0;font-size:11px;font-weight:750}
.status-item strong{color:#e5edf8;font-size:11px;letter-spacing:.08em}
.status-item strong.success{color:var(--success)}
.dashboard-health-v3{margin-top:14px}
.dashboard-health-v3 .health-card{padding:14px 15px;background:rgba(255,255,255,.018)}
.code-window-v3{margin-top:16px;padding:18px;border-radius:15px;background:rgba(1,5,12,.55)}
.code-window-v3 p{margin:7px 0}
.panel-footer-v3{display:flex;align-items:center;justify-content:space-between;gap:20px;padding-top:17px;margin-top:16px;border-top:1px solid rgba(255,255,255,.065);font-size:10px;color:#8391a6}
.panel-footer-v3 span{display:flex;align-items:center;gap:8px}
.panel-footer-v3 span i{width:7px;height:7px;border-radius:50%;background:var(--success);box-shadow:0 0 14px rgba(98,224,161,.7)}
.panel-footer-v3 strong{color:#c8d3e3;font-size:10px}
.hero-panel-v3::after{content:"API · MYSQL · LINUX";position:absolute;right:-26px;bottom:-32px;padding:10px 14px;border:1px solid rgba(90,167,255,.22);border-radius:11px;background:#0b111d;color:#91a7c4;font-size:9px;font-weight:850;letter-spacing:.12em;box-shadow:0 16px 34px rgba(0,0,0,.3)}
@media(max-width:980px){.hero-v3{padding-top:95px}.hero-layout-v3{grid-template-columns:1fr;gap:62px}.hero-v3 .hero-copy{max-width:760px}.hero-panel-v3{max-width:720px}.hero-panel-v3::after{right:12px}}
@media(max-width:760px){.hero-v3{padding:72px 0 62px}.hero-v3 h1{font-size:48px}.hero-v3 .hero-text{font-size:16px}.hero-metrics-v3{grid-template-columns:1fr}.hero-metrics-v3 .metric-card{min-height:82px}.panel-content-v3{padding:22px 18px}.hero-panel-v3::after{display:none}}

/* v3.1 refined hero */
.hero-v31{min-height:820px;padding:118px 0 90px;overflow:hidden}
.hero-v31::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 25% 42%,rgba(52,132,255,.13),transparent 28%),radial-gradient(circle at 74% 43%,rgba(93,224,208,.06),transparent 26%);pointer-events:none}
.hero-layout-v31{display:grid;grid-template-columns:minmax(0,1.03fr) minmax(420px,.97fr);gap:86px;align-items:center;position:relative;z-index:1}
.hero-copy-v31{max-width:660px}
.hero-v31 .hero-kicker{margin:27px 0 13px;color:#7faaf0;font-size:11px;letter-spacing:.19em}
.hero-v31 h1{font-size:clamp(54px,5.75vw,78px);line-height:1.01;letter-spacing:-.061em;max-width:700px}
.hero-v31 h1 span{display:block;margin-top:8px;background:linear-gradient(90deg,#73b5ff 0%,#5fddd2 48%,#9a8cf8 100%);-webkit-background-clip:text;background-clip:text;color:transparent}
.hero-v31 .hero-text{max-width:620px;margin-top:25px;font-size:17px;line-height:1.78;color:#a4afc0}
.hero-v31 .hero-actions{margin-top:31px}
.hero-proof{display:grid;grid-template-columns:repeat(3,1fr);gap:0;margin-top:42px;padding-top:25px;border-top:1px solid rgba(255,255,255,.09)}
.hero-proof>div{position:relative;padding:0 22px 0 0;display:flex;flex-direction:column;min-height:69px}
.hero-proof>div+div{padding-left:22px;border-left:1px solid rgba(255,255,255,.075)}
.hero-proof i{font-style:normal;color:#5f94de;font-size:9px;font-weight:900;letter-spacing:.15em;margin-bottom:8px}
.hero-proof strong{font-size:13px;color:#eff4fb;line-height:1.25}
.hero-proof span{font-size:11px;color:#7f8ca0;margin-top:4px;line-height:1.35}
.systems-visual{position:relative;min-height:570px;display:grid;place-items:center;isolation:isolate}
.visual-glow{position:absolute;width:500px;height:500px;border-radius:50%;background:radial-gradient(circle,rgba(54,131,255,.17),rgba(83,86,222,.07) 43%,transparent 70%);filter:blur(8px);z-index:-1}
.systems-card{position:relative;width:min(100%,500px);border:1px solid rgba(101,159,255,.28);border-radius:27px;background:linear-gradient(155deg,rgba(17,27,46,.96),rgba(7,12,22,.98));box-shadow:0 42px 110px rgba(0,0,0,.52),0 0 80px rgba(48,112,226,.1);overflow:hidden}
.systems-card::before{content:"";position:absolute;inset:0;background:linear-gradient(125deg,rgba(255,255,255,.045),transparent 22%,transparent 76%,rgba(88,161,255,.035));pointer-events:none}
.systems-topbar{height:50px;padding:0 18px;display:grid;grid-template-columns:1fr auto 1fr;align-items:center;border-bottom:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.018)}
.systems-topbar>div{display:flex;gap:6px}.systems-topbar>div span{width:7px;height:7px;border-radius:50%;background:#33425c}
.systems-topbar small{color:#6e7c91;font-size:9px;letter-spacing:.08em}
.systems-topbar b{justify-self:end;color:#64e7a7;font-size:8px;letter-spacing:.15em}.systems-topbar b i{display:inline-block;width:6px;height:6px;border-radius:50%;background:#54e699;margin-right:6px;box-shadow:0 0 0 5px rgba(84,230,153,.07)}
.architecture-stage{position:relative;height:330px;margin:10px 16px 0;border-bottom:1px solid rgba(255,255,255,.065);overflow:hidden}
.architecture-stage::before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);background-size:32px 32px;mask-image:radial-gradient(circle at center,black,transparent 74%)}
.orbit{position:absolute;left:50%;top:50%;border:1px solid rgba(87,151,255,.17);border-radius:50%;transform:translate(-50%,-50%)}
.orbit-one{width:205px;height:205px}.orbit-two{width:305px;height:305px;border-style:dashed;animation:orbitSpin 28s linear infinite}
.core-node{position:absolute;left:50%;top:50%;width:92px;height:92px;border-radius:27px;transform:translate(-50%,-50%);display:grid;place-items:center;background:linear-gradient(145deg,#4f97ff,#6a68ef);box-shadow:0 0 0 10px rgba(85,135,246,.08),0 20px 48px rgba(55,99,222,.32)}
.core-node span{font-size:34px;font-weight:900;line-height:1}.core-node small{position:absolute;bottom:12px;font-size:7px;font-weight:900;letter-spacing:.18em;color:rgba(255,255,255,.72)}
.system-node{position:absolute;min-width:90px;padding:10px 12px;border:1px solid rgba(255,255,255,.09);border-radius:12px;background:rgba(8,14,25,.92);box-shadow:0 13px 30px rgba(0,0,0,.28);backdrop-filter:blur(8px)}
.system-node b{display:block;font-size:10px;letter-spacing:.09em;color:#dce8f8}.system-node small{display:block;margin-top:2px;font-size:8px;color:#6f7f96}
.node-web{left:22px;top:60px}.node-api{right:18px;top:52px}.node-db{right:7px;bottom:55px}.node-linux{left:11px;bottom:48px}.node-auto{left:50%;top:18px;transform:translateX(-50%)}
.systems-summary{display:grid;grid-template-columns:repeat(3,1fr);gap:9px;padding:17px 18px 15px}
.systems-summary>div{padding:11px 12px;border:1px solid rgba(255,255,255,.065);border-radius:11px;background:rgba(255,255,255,.018)}
.systems-summary span{display:block;color:#738198;font-size:8px;letter-spacing:.08em}.systems-summary strong{display:block;margin-top:5px;font-size:10px;color:#dce6f5}.systems-summary strong.success{color:#62e0a1}
.systems-footer{height:45px;padding:0 19px;display:flex;align-items:center;justify-content:space-between;border-top:1px solid rgba(255,255,255,.065);color:#718097;font-size:9px;font-weight:800;letter-spacing:.05em}
.systems-footer span i{display:inline-block;width:6px;height:6px;border-radius:50%;background:#54e699;margin-right:7px;box-shadow:0 0 0 5px rgba(84,230,153,.055)}
.systems-footer time{font-variant-numeric:tabular-nums}
.floating-chip{position:absolute;padding:10px 12px;border:1px solid rgba(101,159,255,.18);border-radius:11px;background:rgba(8,14,25,.94);box-shadow:0 16px 35px rgba(0,0,0,.35);color:#aebbd0;font-size:9px;font-weight:800;letter-spacing:.04em;white-space:nowrap}
.floating-chip span{display:inline-grid;place-items:center;width:19px;height:19px;margin-right:7px;border-radius:6px;background:rgba(89,157,255,.1);color:#78adf2;font-size:7px}
.chip-one{left:-12px;top:88px}.chip-two{right:-19px;top:220px}.chip-three{left:22px;bottom:15px}
@keyframes orbitSpin{to{transform:translate(-50%,-50%) rotate(360deg)}}
@media(max-width:1020px){.hero-layout-v31{grid-template-columns:1fr;gap:55px}.hero-copy-v31{max-width:760px}.systems-visual{min-height:550px}.systems-card{width:min(100%,620px)}.chip-one{left:4%}.chip-two{right:4%}}
@media(max-width:680px){.hero-v31{padding:80px 0 62px}.hero-v31 h1{font-size:46px}.hero-v31 .hero-text{font-size:15px}.hero-proof{grid-template-columns:1fr;gap:15px}.hero-proof>div,.hero-proof>div+div{padding:0 0 15px;border-left:0;border-bottom:1px solid rgba(255,255,255,.06)}.systems-visual{min-height:auto}.systems-card{border-radius:21px}.architecture-stage{height:305px;margin-inline:10px}.orbit-two{width:270px;height:270px}.orbit-one{width:180px;height:180px}.system-node{min-width:76px;padding:8px 9px}.node-web{left:4px}.node-api{right:4px}.node-db{right:0}.node-linux{left:0}.systems-summary{grid-template-columns:1fr}.floating-chip{display:none}}
@media(prefers-reduced-motion:reduce){.orbit-two{animation:none}}

/* =========================
   ZLAJA.BA V4 ENTERPRISE HERO
   ========================= */
.hero-v4{padding:74px 0 54px;position:relative;overflow:hidden}
.hero-v4::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 19% 28%,rgba(42,119,255,.16),transparent 27%),radial-gradient(circle at 76% 36%,rgba(108,65,255,.12),transparent 31%);pointer-events:none}
.hero-v4-grid{position:relative;display:grid;grid-template-columns:.96fr 1.04fr;gap:70px;align-items:center;min-height:640px}
.hero-v4-copy{max-width:620px}
.hero-v4-copy h1{font-size:clamp(58px,6.1vw,88px);line-height:.96;letter-spacing:-.065em;margin:22px 0 26px;color:#f8fbff}
.hero-v4-copy h1 span{background:linear-gradient(100deg,#56a6ff 5%,#6ae6da 48%,#8a62ff 95%);-webkit-background-clip:text;background-clip:text;color:transparent}
.hero-v4-copy .hero-text{max-width:590px;font-size:17px;line-height:1.85;color:#aeb9cb}
.hero-v4-copy .hero-actions{margin-top:30px}
.hero-benefits{display:grid;grid-template-columns:repeat(4,1fr);gap:17px;margin-top:34px;padding-top:27px;border-top:1px solid rgba(255,255,255,.10)}
.hero-benefits>div{display:flex;gap:11px;align-items:center;min-width:0}
.benefit-icon{width:34px;height:34px;display:grid;place-items:center;color:#45e7ba;font-weight:900;font-size:18px;flex:0 0 auto}
.hero-benefits p{margin:0;line-height:1.15}.hero-benefits strong{display:block;font-size:12px;color:#f2f6fc}.hero-benefits small{display:block;margin-top:5px;font-size:10px;color:#77859b}
.core-dashboard{position:relative;border:1px solid rgba(142,168,215,.30);border-radius:22px;padding:24px;background:linear-gradient(145deg,rgba(15,24,43,.96),rgba(5,10,20,.96));box-shadow:0 32px 100px rgba(0,0,0,.47),0 0 70px rgba(65,100,255,.08),inset 0 1px 0 rgba(255,255,255,.05)}
.core-dashboard::after{content:"";position:absolute;inset:0;border-radius:22px;background:linear-gradient(90deg,transparent,rgba(67,127,255,.04),transparent);pointer-events:none}
.core-head{display:flex;justify-content:space-between;align-items:center;font-size:11px;letter-spacing:.14em;color:#9cabc0;font-weight:800}
.core-head b{color:#5af0bd;font-size:10px}.core-head b i{display:inline-block;width:7px;height:7px;border-radius:50%;background:#55ecb8;box-shadow:0 0 15px #55ecb8;margin-right:7px;animation:corePulse 1.7s infinite}
.core-map{position:relative;height:405px;margin-top:8px;overflow:hidden}
.core-ring{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);border:1px solid rgba(77,133,255,.23);border-radius:50%}
.ring-a{width:175px;height:175px;box-shadow:0 0 35px rgba(76,91,255,.12)}.ring-b{width:260px;height:260px;border-style:dashed}.ring-c{width:340px;height:340px;border-color:rgba(76,133,255,.12)}
.core-center{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:98px;height:98px;border-radius:27px;display:grid;place-items:center;align-content:center;background:linear-gradient(145deg,#36b8ff,#654eff 68%,#9a43ff);box-shadow:0 0 40px rgba(67,103,255,.55),0 0 100px rgba(106,64,255,.18);z-index:3;animation:coreFloat 4s ease-in-out infinite}
.core-center strong{font-size:38px;line-height:1}.core-center small{font-size:9px;letter-spacing:.2em;font-weight:900;margin-top:7px}
.core-service{position:absolute;display:flex;align-items:center;gap:12px;min-width:148px;padding:13px 15px;border:1px solid rgba(137,164,210,.25);border-radius:14px;background:linear-gradient(145deg,rgba(20,31,53,.95),rgba(8,14,25,.95));box-shadow:0 16px 32px rgba(0,0,0,.24);z-index:4}
.core-service::after{content:"";position:absolute;width:7px;height:7px;border-radius:50%;background:#3898ff;box-shadow:0 0 14px #3898ff}
.core-service p{margin:0}.core-service b{display:block;font-size:12px;letter-spacing:.06em}.core-service small{display:block;color:#8290a5;font-size:9px;margin-top:4px}.svc-icon{font-size:22px;color:#8db8ff}
.svc-web{left:50%;top:18px;transform:translateX(-50%)}.svc-web::after{left:50%;bottom:-43px}
.svc-api{left:3px;top:126px}.svc-api::after{right:-52px;top:50%}
.svc-auto{right:3px;top:126px}.svc-auto::after{left:-52px;top:50%}
.svc-linux{left:19px;bottom:18px}.svc-linux::after{right:-48px;top:18%}
.svc-db{right:18px;bottom:18px}.svc-db::after{left:-48px;top:18%}
.core-status{display:grid;grid-template-columns:repeat(4,1fr);border:1px solid rgba(137,164,210,.20);border-radius:13px;background:rgba(5,10,18,.53);overflow:hidden}
.core-status>div{padding:15px 17px;border-right:1px solid rgba(255,255,255,.07)}.core-status>div:last-child{border-right:0}
.core-status span{display:block;font-size:8px;letter-spacing:.13em;color:#78879c}.core-status strong{display:block;margin-top:9px;font-size:11px;color:#e5ebf4}.core-status strong.success{color:#48e5b2}.core-status strong i{display:inline-block;width:7px;height:7px;border-radius:50%;background:#46e4af;margin-right:7px}.core-status em{font-style:normal;color:#42e4ac;font-size:18px;margin-left:5px}
.heartbeat{display:inline-block;animation:beat 1.3s ease-in-out infinite}
.core-monitor{display:flex;justify-content:space-between;align-items:center;margin-top:14px;padding:13px 16px;border:1px solid rgba(137,164,210,.18);border-radius:12px;color:#a8b5c9;font-size:10px;letter-spacing:.08em}.core-monitor time{font-family:ui-monospace,monospace;color:#8290a5}
.hero-metrics{position:relative;margin-top:54px;display:grid;grid-template-columns:repeat(4,1fr);border:1px solid rgba(137,164,210,.22);border-radius:18px;background:linear-gradient(145deg,rgba(13,20,35,.85),rgba(7,11,19,.85));overflow:hidden}
.hero-metrics>div{display:flex;align-items:center;justify-content:center;gap:18px;padding:27px 24px;border-right:1px solid rgba(255,255,255,.08)}.hero-metrics>div:last-child{border-right:0}
.metric-icon{width:48px;height:48px;border:1px solid rgba(86,125,255,.25);border-radius:14px;display:grid;place-items:center;color:#67a4ff;background:rgba(50,77,160,.12);font-size:22px}.hero-metrics p{margin:0}.hero-metrics strong{display:block;font-size:31px;line-height:1}.hero-metrics small{display:block;color:#8390a5;font-size:11px;margin-top:7px}
.technology-row{position:relative;margin-top:38px}.technology-title{display:flex;align-items:center;gap:22px;color:#68758b;font-size:10px;letter-spacing:.18em;justify-content:center}.technology-title span{height:1px;background:rgba(255,255,255,.08);flex:1}.technology-pills{display:flex;justify-content:center;flex-wrap:wrap;gap:12px;margin-top:24px}.technology-pills span{padding:11px 16px;border:1px solid rgba(139,160,199,.17);border-radius:11px;background:rgba(8,13,23,.76);color:#c0cad9;font-size:11px;font-weight:800;transition:.25s}.technology-pills span:hover{transform:translateY(-3px);border-color:rgba(86,125,255,.45);box-shadow:0 10px 30px rgba(53,84,204,.12)}
@keyframes corePulse{0%,100%{opacity:.55;transform:scale(.8)}50%{opacity:1;transform:scale(1.2)}}
@keyframes coreFloat{0%,100%{transform:translate(-50%,-50%) translateY(0)}50%{transform:translate(-50%,-50%) translateY(-7px)}}
@keyframes beat{0%,100%{transform:scaleX(.8);opacity:.6}50%{transform:scaleX(1.25);opacity:1}}
@media (max-width:1050px){.hero-v4-grid{grid-template-columns:1fr;gap:50px}.hero-v4-copy{max-width:760px}.hero-benefits{max-width:720px}.core-dashboard{max-width:720px;margin:auto}.hero-metrics{grid-template-columns:repeat(2,1fr)}.hero-metrics>div:nth-child(2){border-right:0}.hero-metrics>div:nth-child(-n+2){border-bottom:1px solid rgba(255,255,255,.08)}}
@media (max-width:700px){.hero-v4{padding-top:45px}.hero-v4-copy h1{font-size:clamp(48px,14vw,68px)}.hero-benefits{grid-template-columns:repeat(2,1fr)}.core-map{height:480px}.core-service{min-width:128px;padding:10px}.svc-web{top:8px}.svc-api{left:0;top:118px}.svc-auto{right:0;top:118px}.svc-linux{left:0;bottom:40px}.svc-db{right:0;bottom:40px}.ring-c{width:290px;height:290px}.ring-b{width:220px;height:220px}.core-status{grid-template-columns:repeat(2,1fr)}.core-status>div:nth-child(2){border-right:0}.core-status>div:nth-child(-n+2){border-bottom:1px solid rgba(255,255,255,.07)}.hero-metrics{grid-template-columns:1fr}.hero-metrics>div{border-right:0!important;border-bottom:1px solid rgba(255,255,255,.08)}.hero-metrics>div:last-child{border-bottom:0}.technology-pills{justify-content:flex-start}}
@media (max-width:480px){.hero-benefits{grid-template-columns:1fr 1fr}.hero-benefits small{display:none}.core-dashboard{padding:16px}.core-map{height:430px}.core-service{min-width:105px}.core-service small{display:none}.svc-icon{font-size:18px}.core-center{width:82px;height:82px}.core-center strong{font-size:31px}.ring-c{width:245px;height:245px}.ring-b{width:190px;height:190px}.ring-a{width:135px;height:135px}.core-status>div{padding:12px}.core-monitor{font-size:9px}}

/* =========================
   V4 HERO LAYOUT HOTFIX
   Prevent legacy .hero flex rules from placing the hero grid,
   metrics and technologies in one horizontal row.
   ========================= */
.hero.hero-v4{
  display:block;
  min-height:auto;
  align-items:initial;
  padding:74px 0 58px;
}
.hero-v4 > .container{
  width:min(calc(100% - 40px),var(--container));
  margin-inline:auto;
}
.hero-v4-grid{
  width:100%;
  grid-template-columns:minmax(0,.96fr) minmax(460px,1.04fr);
}
.hero-v4-copy,
.core-dashboard{
  min-width:0;
}
.hero-v4-copy h1{
  overflow-wrap:normal;
  word-break:normal;
}
.hero-metrics,
.technology-row{
  width:min(calc(100% - 40px),var(--container));
  margin-left:auto;
  margin-right:auto;
}
@media (max-width:1050px){
  .hero.hero-v4{padding-top:64px}
  .hero-v4-grid{grid-template-columns:1fr}
}
@media (max-width:700px){
  .hero.hero-v4{padding:45px 0 46px}
}

/* =========================
   V4.1 ENTERPRISE POLISH PATCH
   ========================= */
.site-header{background:rgba(6,10,18,.78);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px)}
.nav-shell{height:84px}
.brand{gap:14px}
.brand-icon{width:42px;height:42px;border-radius:13px;font-size:17px;box-shadow:0 12px 34px rgba(71,105,255,.28),0 0 0 1px rgba(255,255,255,.06) inset}
.brand-name{font-size:20px}
.nav{gap:34px}
.nav a{font-size:14.5px;letter-spacing:.01em}
.nav-button{padding:13px 19px;border-color:rgba(130,153,190,.24);background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018));box-shadow:inset 0 1px 0 rgba(255,255,255,.05)}

.hero.hero-v4{padding-top:82px}
.hero-v4::after{content:"";position:absolute;left:-8%;top:90px;width:620px;height:620px;border-radius:50%;background:radial-gradient(circle,rgba(50,132,255,.14),rgba(56,82,255,.035) 46%,transparent 70%);filter:blur(4px);pointer-events:none}
.hero-v4-grid{gap:84px;min-height:650px}
.hero-v4-copy{position:relative;z-index:1}
.hero-v4-copy h1{font-size:clamp(58px,5.7vw,84px);line-height:.975;max-width:640px;text-wrap:balance}
.hero-v4-copy .hero-text{max-width:600px}
.hero-actions{gap:13px}
.button{min-height:51px;padding:0 21px;border-radius:13px}
.button.primary{box-shadow:0 18px 40px rgba(61,108,255,.24),inset 0 1px 0 rgba(255,255,255,.19)}
.button.primary:hover{box-shadow:0 23px 52px rgba(61,108,255,.34),inset 0 1px 0 rgba(255,255,255,.24)}
.button.ghost{position:relative;overflow:hidden;border-color:rgba(142,162,198,.26);background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018));box-shadow:inset 0 1px 0 rgba(255,255,255,.045)}
.button.ghost::before{content:"";position:absolute;inset:0;transform:translateX(-120%);background:linear-gradient(100deg,transparent,rgba(107,154,255,.11),transparent);transition:transform .55s ease}
.button.ghost:hover{border-color:rgba(104,153,255,.52);box-shadow:0 16px 34px rgba(30,61,137,.18),inset 0 1px 0 rgba(255,255,255,.07)}
.button.ghost:hover::before{transform:translateX(120%)}
.button span{transition:transform .22s ease}.button:hover span{transform:translateX(3px)}

.hero-benefits{gap:23px;margin-top:38px;padding-top:29px}
.hero-benefits>div{gap:13px}
.benefit-icon{width:40px;height:40px;border:1px solid rgba(66,230,183,.15);border-radius:12px;background:rgba(48,207,166,.055);font-size:19px;box-shadow:inset 0 1px 0 rgba(255,255,255,.035)}
.hero-benefits strong{font-size:13px}.hero-benefits small{font-size:10.5px;line-height:1.35}

.core-dashboard{padding:27px;border-radius:25px;border-color:rgba(142,168,215,.36);box-shadow:0 38px 110px rgba(0,0,0,.5),0 0 90px rgba(65,100,255,.11),inset 0 1px 0 rgba(255,255,255,.06)}
.core-dashboard::before{content:"";position:absolute;left:50%;top:46%;width:290px;height:290px;transform:translate(-50%,-50%);border-radius:50%;background:radial-gradient(circle,rgba(77,114,255,.22),rgba(111,71,255,.075) 40%,transparent 70%);filter:blur(10px);pointer-events:none}
.core-map{height:420px}
.core-center{width:116px;height:116px;border-radius:31px;box-shadow:0 0 0 12px rgba(72,112,255,.06),0 0 55px rgba(67,103,255,.68),0 0 125px rgba(106,64,255,.24);animation:coreFloat 4s ease-in-out infinite,coreGlow 2.4s ease-in-out infinite}
.core-center strong{font-size:44px}.core-center small{bottom:auto;font-size:9px;margin-top:8px}
.ring-a{width:198px;height:198px}.ring-b{width:286px;height:286px}.ring-c{width:372px;height:372px}
.core-service{transition:transform .24s ease,border-color .24s ease,box-shadow .24s ease}
.core-service:hover{transform:translateY(-3px);border-color:rgba(95,155,255,.46);box-shadow:0 20px 40px rgba(0,0,0,.3),0 0 30px rgba(69,112,255,.1)}
.svc-web:hover{transform:translateX(-50%) translateY(-3px)}
.core-status>div{transition:background .22s ease}.core-status>div:hover{background:rgba(80,119,255,.045)}

.hero-metrics{margin-top:58px;border-radius:20px;box-shadow:0 24px 70px rgba(0,0,0,.20),inset 0 1px 0 rgba(255,255,255,.035)}
.hero-metrics>div{position:relative;padding:30px 24px;transition:background .23s ease,transform .23s ease}
.hero-metrics>div:hover{background:linear-gradient(145deg,rgba(51,83,180,.09),rgba(255,255,255,.015))}
.metric-icon{width:52px;height:52px;border-radius:15px;background:linear-gradient(145deg,rgba(57,92,202,.19),rgba(27,42,88,.11));box-shadow:inset 0 1px 0 rgba(255,255,255,.04)}
.metric-icon svg{width:23px;height:23px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.hero-metrics strong{font-size:33px}.hero-metrics small{font-size:11.5px}
.technology-row{margin-top:42px}.technology-pills span{padding:11px 17px;background:linear-gradient(145deg,rgba(12,19,32,.88),rgba(7,11,20,.78))}

@keyframes coreGlow{0%,100%{filter:brightness(1);box-shadow:0 0 0 12px rgba(72,112,255,.06),0 0 55px rgba(67,103,255,.58),0 0 125px rgba(106,64,255,.19)}50%{filter:brightness(1.08);box-shadow:0 0 0 15px rgba(72,112,255,.085),0 0 70px rgba(67,103,255,.78),0 0 150px rgba(106,64,255,.28)}}

@media(max-width:1050px){.nav-shell{height:78px}.hero-v4-grid{gap:58px}.core-dashboard{max-width:760px}.hero-benefits{grid-template-columns:repeat(4,1fr)}}
@media(max-width:700px){.hero.hero-v4{padding-top:52px}.hero-benefits{grid-template-columns:repeat(2,1fr)}.core-dashboard{padding:18px}.core-map{height:455px}.core-center{width:94px;height:94px}.core-center strong{font-size:36px}.ring-a{width:160px;height:160px}.ring-b{width:220px;height:220px}.ring-c{width:288px;height:288px}.hero-metrics>div{padding:24px 20px}}
@media(max-width:480px){.brand-icon{width:38px;height:38px}.brand-name{font-size:18px}.hero-benefits{gap:12px}.benefit-icon{width:36px;height:36px}.core-map{height:420px}.core-center{width:84px;height:84px}.core-center strong{font-size:32px}}

/* v4.2 content polish: About, Services and Value sections */
#about.section { padding-top: 118px; padding-bottom: 118px; }
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: stretch;
}
.about-layout .section-heading { padding: 34px 0; align-self: center; }
.about-layout .section-heading h2 { max-width: 620px; font-size: clamp(2.5rem, 4.4vw, 5rem); line-height: .98; letter-spacing: -.055em; }
.about-layout .section-heading p { max-width: 560px; margin-top: 24px; color: var(--muted); font-size: 1.02rem; line-height: 1.85; }
.about-card.about-card-v42 {
  position: relative; overflow: hidden; padding: 42px; border-radius: 24px;
  border: 1px solid rgba(129,159,214,.26);
  background: linear-gradient(145deg, rgba(15,24,42,.92), rgba(7,12,23,.78));
  box-shadow: 0 28px 80px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.035);
}
.about-card.about-card-v42::before { content:""; position:absolute; inset:auto -70px -90px auto; width:260px; height:260px; border-radius:50%; background:rgba(77,121,255,.16); filter:blur(55px); }
.about-intro { display:grid; gap:18px; position:relative; z-index:1; }
.about-intro p { margin:0; color:#b8c3d6; line-height:1.8; font-size:1rem; }
.about-pillars { position:relative; z-index:1; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; margin-top:30px; }
.about-pillar { padding:18px; border:1px solid rgba(130,157,204,.17); border-radius:15px; background:rgba(255,255,255,.018); transition:.28s ease; }
.about-pillar:hover { transform:translateY(-4px); border-color:rgba(78,154,255,.5); background:rgba(45,98,192,.08); }
.about-pillar span { display:block; margin-bottom:9px; color:#62d8ff; font-size:.68rem; font-weight:800; letter-spacing:.12em; }
.about-pillar strong { display:block; color:#f5f8ff; font-size:.96rem; margin-bottom:6px; }
.about-pillar small { color:#8998b0; line-height:1.55; }
.about-stack { position:relative; z-index:1; display:flex; flex-wrap:wrap; gap:8px; margin-top:28px; padding-top:24px; border-top:1px solid rgba(255,255,255,.07); }
.about-stack span { padding:8px 11px; border-radius:999px; border:1px solid rgba(132,160,207,.18); color:#aebbd0; background:rgba(255,255,255,.02); font-size:.72rem; }

#services.section { padding-top: 116px; padding-bottom: 124px; }
.services-grid { gap:18px; }
.service-card { min-height:260px; padding:28px; border-radius:19px; position:relative; overflow:hidden; }
.service-card::after { content:""; position:absolute; left:0; right:0; bottom:0; height:2px; transform:scaleX(0); transform-origin:left; background:linear-gradient(90deg,#4ca4ff,#7567ff); transition:transform .35s ease; }
.service-card:hover::after { transform:scaleX(1); }
.service-card:hover { transform:translateY(-7px); border-color:rgba(95,153,255,.5); box-shadow:0 22px 58px rgba(0,0,0,.25); }
.service-icon { width:42px; height:42px; display:grid; place-items:center; border-radius:12px; font-size:1rem; background:linear-gradient(145deg,rgba(47,108,219,.22),rgba(72,58,170,.18)); border:1px solid rgba(95,156,255,.32); color:#73d4ff; }
.service-card h3 { margin-top:30px; font-size:1.14rem; }
.service-card p { line-height:1.72; }
.service-more { display:inline-flex; gap:8px; align-items:center; margin-top:22px; color:#78cfff; font-size:.78rem; font-weight:700; letter-spacing:.03em; }
.service-card:hover .service-more span { transform:translateX(4px); }
.service-more span { transition:transform .25s ease; }

.why-section { padding-top:116px; padding-bottom:120px; }
.why-grid.case-value-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; max-width:1000px; margin-inline:auto; }
.case-value-card { position:relative; min-height:230px; padding:30px; border-radius:20px; border:1px solid rgba(129,156,201,.2); background:linear-gradient(150deg,rgba(16,25,43,.8),rgba(7,12,22,.72)); overflow:hidden; }
.case-value-card::before { content:""; position:absolute; width:170px; height:170px; border-radius:50%; right:-80px; top:-90px; background:rgba(72,101,255,.15); filter:blur(36px); }
.case-value-card .case-no { color:#6edaff; font-size:.68rem; font-weight:800; letter-spacing:.16em; }
.case-value-card h3 { margin:42px 0 12px; font-size:1.28rem; }
.case-value-card p { color:#9dabc0; line-height:1.7; }
.case-value-card .case-result { display:flex; gap:10px; flex-wrap:wrap; margin-top:22px; }
.case-value-card .case-result span { padding:7px 10px; border:1px solid rgba(125,154,204,.17); border-radius:999px; font-size:.68rem; color:#b7c6db; }

@media (max-width: 900px) {
  .about-layout { grid-template-columns:1fr; gap:28px; }
  .about-layout .section-heading { padding:0; }
  .about-pillars, .why-grid.case-value-grid { grid-template-columns:1fr; }
}
@media (max-width: 560px) {
  #about.section, #services.section, .why-section { padding-top:82px; padding-bottom:86px; }
  .about-card.about-card-v42 { padding:24px; border-radius:18px; }
  .service-card { min-height:auto; }
}

/* v5.3 — repeated services section replaced by selected work */
.featured-work .section-heading{max-width:760px;margin-inline:auto}
.featured-work-grid{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:18px;margin-top:42px}
.featured-work-card{position:relative;overflow:hidden;display:grid;grid-template-columns:minmax(210px,.82fr) minmax(0,1.18fr);min-height:320px;border:1px solid rgba(132,164,214,.2);border-radius:22px;background:linear-gradient(145deg,rgba(17,27,45,.92),rgba(8,14,25,.92));box-shadow:0 26px 70px rgba(0,0,0,.22);transition:transform .35s ease,border-color .35s ease,box-shadow .35s ease}
.featured-work-card:hover{transform:translateY(-6px);border-color:rgba(89,151,255,.5);box-shadow:0 34px 90px rgba(0,0,0,.32),0 0 46px rgba(54,119,255,.08)}
.featured-work-card:nth-child(1){grid-column:span 7}.featured-work-card:nth-child(2){grid-column:span 5}.featured-work-card:nth-child(3){grid-column:3/span 8;min-height:275px}
.featured-work-visual{position:relative;display:grid;place-items:center;min-height:100%;padding:28px;border-right:1px solid rgba(132,164,214,.14);background:radial-gradient(circle at 50% 45%,rgba(56,126,255,.18),transparent 48%),linear-gradient(145deg,rgba(16,27,48,.78),rgba(7,13,23,.72))}
.featured-index{position:absolute;top:20px;left:20px;font-size:.72rem;letter-spacing:.16em;color:#80aaff}
.featured-work-copy{display:flex;flex-direction:column;justify-content:center;padding:34px}
.featured-work-copy h3{max-width:520px;margin:14px 0 12px;font-size:clamp(1.35rem,2.2vw,2rem);line-height:1.08}
.featured-work-copy p{margin:0;color:var(--muted);line-height:1.75}
.featured-results{display:flex;flex-wrap:wrap;gap:8px;margin:20px 0}
.featured-results span{padding:7px 10px;border:1px solid rgba(128,170,255,.18);border-radius:999px;background:rgba(72,118,190,.08);font-size:.72rem;color:#c7d7ef}
.featured-link{display:inline-flex;align-items:center;gap:9px;width:max-content;margin-top:auto;color:#77c8ff;font-weight:700;text-decoration:none}
.featured-link span{transition:transform .25s ease}.featured-link:hover span{transform:translateX(4px)}
.featured-orbit{position:relative;width:190px;aspect-ratio:1;border:1px dashed rgba(80,146,255,.34);border-radius:50%;animation:featuredSpin 18s linear infinite}
.featured-orbit:before,.featured-orbit:after{content:"";position:absolute;border:1px solid rgba(83,137,228,.18);border-radius:50%;inset:23px}.featured-orbit:after{inset:48px}
.featured-core{position:absolute;inset:50% auto auto 50%;translate:-50% -50%;display:grid;place-items:center;width:72px;aspect-ratio:1;border-radius:22px;background:linear-gradient(145deg,#55a4ff,#744cff);box-shadow:0 0 36px rgba(76,117,255,.44);font-weight:800;animation:featuredCounterSpin 18s linear infinite}
.featured-node{position:absolute;padding:6px 9px;border:1px solid rgba(125,168,235,.25);border-radius:8px;background:#0d1728;font-size:.58rem;color:#d7e7ff;animation:featuredCounterSpin 18s linear infinite}.node-web{top:-13px;left:50%;translate:-50% 0}.node-api{left:-18px;top:50%;translate:0 -50%}.node-db{right:-12px;top:50%;translate:0 -50%}.node-linux{bottom:-12px;left:50%;translate:-50% 0}
.hotel-mini-window{width:min(100%,230px);aspect-ratio:1.35;border:1px solid rgba(219,183,115,.3);border-radius:16px;background:linear-gradient(145deg,#17130e,#0e0d0c);box-shadow:0 26px 50px rgba(0,0,0,.32);transform:rotate(-3deg);display:flex;flex-direction:column;align-items:center;justify-content:center;color:#f0d49e}.hotel-mini-window strong{font-family:Georgia,serif;font-size:1.45rem;letter-spacing:.13em}.hotel-mini-window small{margin-top:6px;color:#ad9670}.hotel-mini-dots{position:absolute;top:12px;left:15px;color:#8d7651;letter-spacing:.2em}
.next-project-mark{display:grid;place-items:center;width:140px;aspect-ratio:1;border:1px dashed rgba(116,168,255,.38);border-radius:50%;background:radial-gradient(circle,rgba(78,131,255,.18),transparent 65%)}.next-project-mark span{font-size:3.2rem;line-height:1;color:#85c9ff}.next-project-mark small{font-size:.62rem;letter-spacing:.16em;color:#9ab6dc}
@keyframes featuredSpin{to{transform:rotate(360deg)}}@keyframes featuredCounterSpin{to{transform:rotate(-360deg)}}
@media(max-width:980px){.featured-work-card:nth-child(n){grid-column:1/-1}.featured-work-card{grid-template-columns:260px 1fr}}
@media(max-width:680px){.featured-work-card{grid-template-columns:1fr}.featured-work-visual{min-height:230px;border-right:0;border-bottom:1px solid rgba(132,164,214,.14)}.featured-work-copy{padding:26px}.featured-work-grid{margin-top:28px}}

/* =========================================================
   v5.4 — Featured Work & Results layout polish
   ========================================================= */
.featured-work{
  padding-top:110px;
  padding-bottom:86px;
  background:
    radial-gradient(circle at 22% 25%,rgba(45,105,210,.09),transparent 34%),
    radial-gradient(circle at 86% 82%,rgba(114,73,219,.07),transparent 30%),
    linear-gradient(180deg,rgba(6,11,20,.86),rgba(8,14,24,.98));
}
.featured-work .container,.why-section .container{max-width:1240px}
.featured-work .section-heading{max-width:820px}
.featured-work .section-heading h2{font-size:clamp(2.15rem,4vw,3.65rem);line-height:1.02;letter-spacing:-.045em}
.featured-work .section-heading p{max-width:700px;margin-inline:auto;font-size:1rem;line-height:1.75}
.featured-work-grid{gap:22px;margin-top:54px;align-items:stretch}
.featured-work-card{min-height:390px;border-radius:26px}
.featured-work-card:nth-child(1){grid-column:span 7}
.featured-work-card:nth-child(2){grid-column:span 5}
.featured-work-card:nth-child(3){grid-column:1/-1;min-height:250px;grid-template-columns:300px minmax(0,1fr)}
.featured-work-card:nth-child(3) .featured-work-visual{min-height:250px}
.featured-work-copy{padding:42px 40px}
.featured-work-copy h3{font-size:clamp(1.55rem,2.5vw,2.45rem);line-height:1.04}
.featured-work-copy p{font-size:.98rem;line-height:1.75;max-width:620px}
.featured-results{margin:24px 0}
.featured-results span{padding:8px 12px;font-size:.75rem}
.featured-link{font-size:.92rem}
.featured-work-visual{padding:34px}
.featured-orbit{width:220px}
.hotel-mini-window{transform:scale(1.08)}
.next-project-mark{width:158px}
.featured-next .featured-work-copy{display:grid;grid-template-columns:minmax(0,1fr) auto;column-gap:36px;align-items:center}
.featured-next .featured-work-copy .project-labels,
.featured-next .featured-work-copy h3,
.featured-next .featured-work-copy p,
.featured-next .featured-work-copy .featured-results{grid-column:1}
.featured-next .featured-link{grid-column:2;grid-row:1/6;align-self:center;margin:0;padding:14px 18px;border:1px solid rgba(113,161,237,.25);border-radius:12px;background:rgba(80,130,220,.08)}

.why-section{
  position:relative;
  padding-top:96px;
  padding-bottom:110px;
  background:
    linear-gradient(180deg,rgba(8,14,24,.98),rgba(9,16,29,.98)),
    radial-gradient(circle at 50% 0,rgba(73,132,236,.09),transparent 45%);
  border-top:1px solid rgba(133,164,214,.1);
}
.why-section:before{content:"";position:absolute;left:50%;top:0;width:min(1240px,calc(100% - 40px));height:1px;transform:translateX(-50%);background:linear-gradient(90deg,transparent,rgba(88,157,255,.45),transparent)}
.why-section .section-heading{max-width:760px;margin-inline:auto}
.why-section .section-heading h2{font-size:clamp(2rem,3.5vw,3.2rem);line-height:1.03;letter-spacing:-.04em}
.why-section .section-heading p{font-size:1rem;line-height:1.7}
.case-value-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;margin-top:46px}
.case-value-card{min-height:265px;padding:30px 27px;border-radius:20px;background:linear-gradient(155deg,rgba(18,31,55,.92),rgba(8,15,27,.95));border:1px solid rgba(108,155,228,.18);box-shadow:0 20px 56px rgba(0,0,0,.18);transition:transform .3s ease,border-color .3s ease,box-shadow .3s ease}
.case-value-card:hover{transform:translateY(-6px);border-color:rgba(86,155,255,.42);box-shadow:0 30px 76px rgba(0,0,0,.3),0 0 36px rgba(50,116,224,.08)}
.case-value-card h3{font-size:1.15rem;line-height:1.25;margin:18px 0 12px}
.case-value-card p{font-size:.9rem;line-height:1.72}
.case-result{margin-top:auto;padding-top:20px}

@media(max-width:1050px){
  .featured-work-card:nth-child(n){grid-column:1/-1}
  .featured-work-card{grid-template-columns:300px minmax(0,1fr)}
  .case-value-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:720px){
  .featured-work{padding-top:82px;padding-bottom:68px}
  .featured-work-grid{margin-top:34px}
  .featured-work-card,.featured-work-card:nth-child(3){grid-template-columns:1fr;min-height:auto}
  .featured-work-card:nth-child(3) .featured-work-visual{min-height:220px}
  .featured-work-copy{padding:28px 25px}
  .featured-next .featured-work-copy{display:flex;align-items:flex-start}
  .featured-next .featured-link{margin-top:4px;padding:0;border:0;background:transparent}
  .case-value-grid{grid-template-columns:1fr}
  .why-section{padding-top:76px;padding-bottom:82px}
  .case-value-card{min-height:auto}
}

/* =========================================================
   v5.5 Featured Work Showcase
   ========================================================= */
.featured-work-v55{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
  max-width:1180px;
  margin:56px auto 0;
}
.featured-work-v55 .featured-work-card:nth-child(n){grid-column:auto;min-height:0}
.featured-work-v55 .featured-primary{
  grid-column:1/-1;
  display:grid;
  grid-template-columns:minmax(360px,.95fr) minmax(0,1.45fr);
  min-height:430px;
  border-color:rgba(102,158,255,.3);
  background:
    radial-gradient(circle at 18% 45%,rgba(54,126,255,.13),transparent 33%),
    linear-gradient(145deg,rgba(16,27,47,.96),rgba(7,13,24,.95));
}
.featured-work-v55 .featured-primary .featured-work-visual{min-height:430px}
.featured-work-v55 .featured-primary .featured-work-copy{padding:52px 56px}
.featured-work-v55 .featured-primary .featured-work-copy h3{font-size:clamp(2rem,3.3vw,3.35rem);max-width:760px}
.featured-work-v55 .featured-primary .featured-work-copy p{font-size:1.05rem;max-width:760px}
.featured-project-metrics{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin:26px 0 20px}
.featured-project-metrics div{padding:14px 16px;border:1px solid rgba(130,166,223,.16);border-radius:14px;background:rgba(8,15,27,.64)}
.featured-project-metrics strong{display:block;font-size:1.25rem;letter-spacing:-.02em;color:#f5f8ff}
.featured-project-metrics small{display:block;margin-top:4px;color:var(--muted);font-size:.72rem;text-transform:uppercase;letter-spacing:.08em}
.featured-work-v55 .featured-secondary{
  display:grid;
  grid-template-columns:minmax(190px,.78fr) minmax(0,1.22fr);
  min-height:330px;
}
.featured-work-v55 .featured-secondary .featured-work-visual{min-height:330px}
.featured-work-v55 .featured-secondary .featured-work-copy{padding:34px}
.featured-work-v55 .featured-secondary .featured-work-copy h3{font-size:clamp(1.45rem,2vw,2rem)}
.featured-work-v55 .featured-secondary .featured-work-copy p{font-size:.92rem;line-height:1.7}
.featured-work-v55 .featured-link.featured-cta{display:inline-flex;align-items:center;gap:10px;width:max-content;margin-top:24px;padding:11px 14px;border:1px solid rgba(108,157,238,.22);border-radius:11px;background:rgba(23,42,73,.34);transition:transform .25s ease,border-color .25s ease,background .25s ease}
.featured-work-v55 .featured-link.featured-cta:hover{transform:translateX(4px);border-color:rgba(97,161,255,.55);background:rgba(39,72,123,.44)}
.featured-work-v55 .featured-work-card::after{content:"";position:absolute;inset:auto -10% -55% 20%;height:70%;background:radial-gradient(circle,rgba(70,128,255,.11),transparent 68%);pointer-events:none;opacity:0;transition:opacity .35s ease}
.featured-work-v55 .featured-work-card:hover::after{opacity:1}
@media(max-width:1000px){
  .featured-work-v55 .featured-primary{grid-template-columns:300px 1fr}
  .featured-work-v55 .featured-secondary{grid-template-columns:1fr}
  .featured-work-v55 .featured-secondary .featured-work-visual{min-height:240px;border-right:0;border-bottom:1px solid rgba(132,164,214,.14)}
}
@media(max-width:760px){
  .featured-work-v55{grid-template-columns:1fr;gap:18px;margin-top:34px}
  .featured-work-v55 .featured-primary,.featured-work-v55 .featured-secondary{grid-column:1;grid-template-columns:1fr}
  .featured-work-v55 .featured-primary .featured-work-visual{min-height:290px;border-right:0;border-bottom:1px solid rgba(132,164,214,.14)}
  .featured-work-v55 .featured-primary .featured-work-copy{padding:30px 25px}
  .featured-work-v55 .featured-secondary .featured-work-copy{padding:27px 24px}
  .featured-project-metrics{grid-template-columns:1fr}
}


/* =========================================================
   v6.0 — Featured Projects rebuilt from scratch
   ========================================================= */
.featured-showcase-v6{
  width:min(1180px,100%);
  margin:56px auto 0;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}
.featured-showcase-v6 > .featured-work-card{
  grid-column:auto !important;
  min-height:0 !important;
  display:grid !important;
  overflow:hidden;
  border-radius:26px;
}
.featured-showcase-v6 > .featured-primary{
  grid-column:1/-1 !important;
  grid-template-columns:minmax(360px,.9fr) minmax(0,1.35fr) !important;
  min-height:440px !important;
}
.featured-showcase-v6 > .featured-primary .featured-work-visual{
  min-height:440px !important;
  border-right:1px solid rgba(132,164,214,.14) !important;
  border-bottom:0 !important;
}
.featured-showcase-v6 > .featured-primary .featured-work-copy{
  min-width:0;
  padding:54px 58px !important;
}
.featured-showcase-v6 > .featured-primary .featured-work-copy h3{
  max-width:720px;
  font-size:clamp(2rem,3.2vw,3.25rem) !important;
  overflow-wrap:normal;
  word-break:normal;
}
.featured-showcase-v6 > .featured-primary .featured-work-copy p{
  max-width:700px;
  font-size:1.03rem !important;
}
.featured-showcase-v6 > .featured-secondary{
  grid-template-columns:minmax(190px,.8fr) minmax(0,1.2fr) !important;
  min-height:350px !important;
}
.featured-showcase-v6 > .featured-secondary .featured-work-visual{
  min-height:350px !important;
  border-right:1px solid rgba(132,164,214,.14) !important;
  border-bottom:0 !important;
}
.featured-showcase-v6 > .featured-secondary .featured-work-copy{
  min-width:0;
  padding:38px 36px !important;
}
.featured-showcase-v6 > .featured-secondary .featured-work-copy h3{
  font-size:clamp(1.55rem,2.2vw,2.1rem) !important;
  overflow-wrap:normal;
  word-break:normal;
}
.featured-showcase-v6 .featured-work-copy{
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
  align-items:flex-start !important;
}
.featured-showcase-v6 .featured-link.featured-cta{
  margin-top:24px !important;
}
.featured-showcase-v6 .featured-project-metrics{
  width:100%;
  max-width:620px;
}
@media (max-width:1000px){
  .featured-showcase-v6 > .featured-primary{
    grid-template-columns:290px minmax(0,1fr) !important;
  }
  .featured-showcase-v6 > .featured-primary .featured-work-copy{
    padding:42px 38px !important;
  }
  .featured-showcase-v6 > .featured-secondary{
    grid-template-columns:1fr !important;
  }
  .featured-showcase-v6 > .featured-secondary .featured-work-visual{
    min-height:235px !important;
    border-right:0 !important;
    border-bottom:1px solid rgba(132,164,214,.14) !important;
  }
}
@media (max-width:760px){
  .featured-showcase-v6{
    grid-template-columns:1fr;
    gap:18px;
    margin-top:34px;
  }
  .featured-showcase-v6 > .featured-primary,
  .featured-showcase-v6 > .featured-secondary{
    grid-column:1 !important;
    grid-template-columns:1fr !important;
  }
  .featured-showcase-v6 > .featured-primary .featured-work-visual{
    min-height:280px !important;
    border-right:0 !important;
    border-bottom:1px solid rgba(132,164,214,.14) !important;
  }
  .featured-showcase-v6 > .featured-primary .featured-work-copy,
  .featured-showcase-v6 > .featured-secondary .featured-work-copy{
    padding:28px 24px !important;
  }
  .featured-showcase-v6 .featured-project-metrics{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}
@media (max-width:520px){
  .featured-showcase-v6 .featured-project-metrics{
    grid-template-columns:1fr;
  }
}

/* =========================================================
   v6.1 — BCS visual motion refinement
   Replaces the full carousel spin with a subtle premium float.
   ========================================================= */
.featured-showcase-v6 .featured-bcs .featured-orbit{
  animation:bcsOrbitFloat 5.8s ease-in-out infinite !important;
  transform-origin:center;
  will-change:transform,filter;
  filter:drop-shadow(0 0 18px rgba(71,123,255,.12));
}
.featured-showcase-v6 .featured-bcs .featured-core{
  animation:bcsCoreBreath 3.2s ease-in-out infinite !important;
}
.featured-showcase-v6 .featured-bcs .featured-node{
  animation:none !important;
  transition:transform .3s ease,border-color .3s ease,box-shadow .3s ease;
}
.featured-showcase-v6 .featured-bcs:hover .featured-node{
  border-color:rgba(125,181,255,.48);
  box-shadow:0 0 20px rgba(70,132,255,.12);
}
.featured-showcase-v6 .featured-bcs:hover .node-web{transform:translateY(-2px)}
.featured-showcase-v6 .featured-bcs:hover .node-api{transform:translateX(-2px)}
.featured-showcase-v6 .featured-bcs:hover .node-db{transform:translateX(2px)}
.featured-showcase-v6 .featured-bcs:hover .node-linux{transform:translateY(2px)}

@keyframes bcsOrbitFloat{
  0%,100%{transform:translateY(0) rotate(-1.2deg);filter:drop-shadow(0 0 16px rgba(71,123,255,.10))}
  50%{transform:translateY(-7px) rotate(1.2deg);filter:drop-shadow(0 0 25px rgba(71,123,255,.19))}
}
@keyframes bcsCoreBreath{
  0%,100%{transform:scale(1);box-shadow:0 0 36px rgba(76,117,255,.44)}
  50%{transform:scale(1.055);box-shadow:0 0 50px rgba(76,117,255,.62),0 0 90px rgba(95,71,255,.16)}
}
@media (prefers-reduced-motion:reduce){
  .featured-showcase-v6 .featured-bcs .featured-orbit,
  .featured-showcase-v6 .featured-bcs .featured-core{animation:none !important}
}

/* =========================================================
   v6.2 — BCS premium orbital motion
   The orbit rotates slowly while labels remain upright.
   ========================================================= */
.featured-showcase-v6 .featured-bcs .featured-orbit{
  animation:bcsOrbitRotate 42s linear infinite !important;
  transform-origin:50% 50%;
  will-change:transform,filter;
  filter:drop-shadow(0 0 20px rgba(71,123,255,.16));
}
.featured-showcase-v6 .featured-bcs .featured-orbit::before{
  animation:bcsRingReverse 54s linear infinite;
  box-shadow:inset 0 0 28px rgba(64,117,255,.05);
}
.featured-showcase-v6 .featured-bcs .featured-orbit::after{
  animation:bcsRingForward 34s linear infinite;
  box-shadow:0 0 26px rgba(77,126,255,.06);
}
.featured-showcase-v6 .featured-bcs .featured-core{
  animation:bcsCoreStayUpright 42s linear infinite !important;
  transform-origin:center;
}
.featured-showcase-v6 .featured-bcs .featured-node{
  animation:bcsNodeStayUpright 42s linear infinite !important;
  transition:border-color .3s ease,box-shadow .3s ease,background .3s ease;
}
.featured-showcase-v6 .featured-bcs:hover .featured-orbit{
  animation-duration:32s !important;
  filter:drop-shadow(0 0 30px rgba(71,123,255,.24));
}
.featured-showcase-v6 .featured-bcs:hover .featured-node{
  border-color:rgba(125,181,255,.52);
  background:#101d31;
  box-shadow:0 0 20px rgba(70,132,255,.15);
}

@keyframes bcsOrbitRotate{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}
@keyframes bcsNodeStayUpright{
  from{transform:rotate(0deg)}
  to{transform:rotate(-360deg)}
}
@keyframes bcsCoreStayUpright{
  0%{transform:rotate(0deg) scale(1);box-shadow:0 0 36px rgba(76,117,255,.44)}
  25%{transform:rotate(-90deg) scale(1.035);box-shadow:0 0 46px rgba(76,117,255,.58),0 0 82px rgba(95,71,255,.14)}
  50%{transform:rotate(-180deg) scale(1);box-shadow:0 0 36px rgba(76,117,255,.44)}
  75%{transform:rotate(-270deg) scale(1.035);box-shadow:0 0 46px rgba(76,117,255,.58),0 0 82px rgba(95,71,255,.14)}
  100%{transform:rotate(-360deg) scale(1);box-shadow:0 0 36px rgba(76,117,255,.44)}
}
@keyframes bcsRingReverse{
  from{transform:rotate(0deg)}
  to{transform:rotate(-360deg)}
}
@keyframes bcsRingForward{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}
@media (prefers-reduced-motion:reduce){
  .featured-showcase-v6 .featured-bcs .featured-orbit,
  .featured-showcase-v6 .featured-bcs .featured-orbit::before,
  .featured-showcase-v6 .featured-bcs .featured-orbit::after,
  .featured-showcase-v6 .featured-bcs .featured-core,
  .featured-showcase-v6 .featured-bcs .featured-node{animation:none !important}
}

/* =========================================================
   v6.3 — Hotel Rekić card visual integration
   Keeps the warm hotel identity inside the Zlaja.ba tech system.
   ========================================================= */
.featured-showcase-v6 .featured-hotel{
  background:
    radial-gradient(circle at 14% 42%,rgba(56,126,255,.14),transparent 34%),
    radial-gradient(circle at 88% 88%,rgba(129,77,255,.08),transparent 30%),
    linear-gradient(145deg,rgba(15,26,45,.96),rgba(7,13,24,.98));
}
.featured-showcase-v6 .featured-hotel .hotel-tech-visual{
  isolation:isolate;
  overflow:hidden;
  background:
    linear-gradient(rgba(91,139,213,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(91,139,213,.045) 1px,transparent 1px),
    radial-gradient(circle at 50% 52%,rgba(70,129,255,.20),transparent 46%),
    linear-gradient(145deg,rgba(15,29,51,.96),rgba(7,14,26,.96));
  background-size:24px 24px,24px 24px,auto,auto;
}
.featured-showcase-v6 .featured-hotel .hotel-tech-visual::before,
.featured-showcase-v6 .featured-hotel .hotel-tech-visual::after{
  content:"";
  position:absolute;
  width:190px;
  aspect-ratio:1;
  border-radius:50%;
  border:1px solid rgba(87,146,255,.15);
  left:50%;top:50%;
  transform:translate(-50%,-50%);
  pointer-events:none;
}
.featured-showcase-v6 .featured-hotel .hotel-tech-visual::after{
  width:250px;
  border-style:dashed;
  border-color:rgba(120,87,255,.12);
  animation:hotelHaloSpin 26s linear infinite;
}
.hotel-architecture{position:absolute;inset:0;z-index:-1;opacity:.55;pointer-events:none}
.hotel-architecture span{position:absolute;height:1px;background:linear-gradient(90deg,transparent,rgba(101,158,255,.30),transparent);transform-origin:center}
.hotel-architecture span:nth-child(1){width:76%;left:12%;top:34%;transform:rotate(-24deg)}
.hotel-architecture span:nth-child(2){width:82%;left:9%;top:62%;transform:rotate(19deg)}
.hotel-architecture span:nth-child(3){width:62%;left:19%;top:49%;transform:rotate(90deg)}
.hotel-brand-frame{
  position:relative;
  width:min(100%,238px);
  min-height:190px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:28px 24px 22px;
  border:1px solid rgba(108,159,238,.30);
  border-radius:22px;
  background:
    linear-gradient(145deg,rgba(15,24,39,.92),rgba(8,12,20,.96));
  box-shadow:
    0 28px 64px rgba(0,0,0,.38),
    0 0 42px rgba(70,125,255,.13),
    inset 0 1px rgba(255,255,255,.04);
  transform:perspective(700px) rotateY(-5deg) rotateX(2deg);
  transition:transform .4s ease,border-color .4s ease,box-shadow .4s ease;
}
.featured-hotel:hover .hotel-brand-frame{
  transform:perspective(700px) rotateY(0) rotateX(0) translateY(-4px);
  border-color:rgba(109,171,255,.48);
  box-shadow:0 34px 78px rgba(0,0,0,.44),0 0 58px rgba(72,131,255,.22),inset 0 1px rgba(255,255,255,.05);
}
.hotel-status{position:absolute;top:14px;right:15px;display:flex;align-items:center;gap:7px;font-size:.58rem;letter-spacing:.16em;color:#81ffd0}
.hotel-status i{width:6px;height:6px;border-radius:50%;background:#55efb3;box-shadow:0 0 12px rgba(85,239,179,.8);animation:hotelStatusPulse 2s ease-in-out infinite}
.hotel-brand-mark{text-align:center;color:#f1d59c;text-shadow:0 0 22px rgba(221,176,91,.14)}
.hotel-brand-mark small{display:block;margin-bottom:7px;font-size:.54rem;letter-spacing:.4em;color:#9cb8dd}
.hotel-brand-mark strong{display:block;font-family:Georgia,serif;font-size:1.75rem;letter-spacing:.16em;font-weight:500}
.hotel-brand-mark em{display:block;margin-top:7px;font-family:Georgia,serif;font-size:.72rem;letter-spacing:.18em;color:#b69c6d;font-style:normal}
.hotel-frame-caption{position:absolute;left:18px;right:18px;bottom:13px;padding-top:10px;border-top:1px solid rgba(120,159,218,.14);font-size:.57rem;letter-spacing:.15em;text-align:center;text-transform:uppercase;color:#7993b8}
.hotel-work-copy .project-labels span:first-child{color:#8ed4ff}
.hotel-project-metrics{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;width:100%;margin:20px 0 2px}
.hotel-project-metrics div{padding:13px 14px;border:1px solid rgba(119,163,231,.17);border-radius:12px;background:linear-gradient(145deg,rgba(17,31,53,.72),rgba(7,14,25,.76))}
.hotel-project-metrics strong{display:block;font-size:1.05rem;color:#f4f8ff}
.hotel-project-metrics small{display:block;margin-top:4px;font-size:.63rem;letter-spacing:.08em;text-transform:uppercase;color:#7792b9}
.hotel-project-cta{padding:11px 14px;border:1px solid rgba(91,158,255,.22);border-radius:10px;background:linear-gradient(135deg,rgba(52,117,236,.12),rgba(112,67,224,.10))}
@keyframes hotelHaloSpin{to{transform:translate(-50%,-50%) rotate(360deg)}}
@keyframes hotelStatusPulse{50%{opacity:.45;transform:scale(.78)}}
@media(max-width:1000px){
  .featured-showcase-v6 .featured-hotel .hotel-tech-visual{min-height:265px !important}
  .hotel-brand-frame{width:min(100%,270px)}
}
@media(max-width:520px){
  .hotel-project-metrics{grid-template-columns:1fr}
  .hotel-brand-frame{min-height:178px}
}
@media(prefers-reduced-motion:reduce){
  .featured-showcase-v6 .featured-hotel .hotel-tech-visual::after,.hotel-status i{animation:none}
}

/* =========================================================
   v6.4 — Expanded project case studies
   ========================================================= */
.case-v64{position:relative;z-index:1}.case-v64 .container{width:min(1180px,calc(100% - 44px));margin-inline:auto}.case-v64-hero{padding:112px 0 74px;border-bottom:1px solid rgba(122,157,210,.14)}.case-v64-hero-grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(390px,.95fr);gap:72px;align-items:center}.case-v64-intro h1{max-width:760px;margin:16px 0 20px;font-size:clamp(2.7rem,5.1vw,5.25rem);line-height:.94;letter-spacing:-.055em}.case-v64-lead{max-width:690px;font-size:1.08rem;line-height:1.8;color:#9fb0c8}.case-v64-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}.case-v64-actions .secondary{background:rgba(11,20,34,.6);border:1px solid rgba(132,164,214,.2);color:#edf5ff}.case-v64-system-card{padding:20px;border:1px solid rgba(111,158,228,.28);border-radius:26px;background:linear-gradient(155deg,rgba(17,31,53,.92),rgba(6,12,22,.97));box-shadow:0 32px 90px rgba(0,0,0,.36),0 0 60px rgba(57,105,255,.08)}.case-v64-system-top{display:flex;justify-content:space-between;align-items:center;font-size:.66rem;letter-spacing:.18em;color:#8ba2c4}.case-v64-system-top b{display:flex;align-items:center;gap:8px;color:#72ffc2}.case-v64-system-top i{width:7px;height:7px;border-radius:50%;background:#59efb1;box-shadow:0 0 15px #59efb1}.case-v64-orbit{position:relative;min-height:370px;margin:18px 0}.case-v64-ring{position:absolute;left:50%;top:50%;border:1px solid rgba(76,133,232,.25);border-radius:50%;transform:translate(-50%,-50%)}.case-v64-ring.ring-one{width:255px;height:255px}.case-v64-ring.ring-two{width:340px;height:340px;border-style:dashed;animation:v64spin 45s linear infinite}.case-v64-core{position:absolute;left:50%;top:50%;display:grid;place-items:center;width:118px;height:118px;border-radius:32px;transform:translate(-50%,-50%);font-size:2rem;font-weight:800;letter-spacing:.05em;background:linear-gradient(145deg,#3c8eff,#7948ff);box-shadow:0 0 44px rgba(71,116,255,.52)}.case-v64-core small{display:block;font-size:.55rem;letter-spacing:.25em}.case-v64-node{position:absolute;padding:10px 14px;border:1px solid rgba(116,160,229,.25);border-radius:10px;background:#0c1728;color:#dceaff;font-size:.65rem;letter-spacing:.12em;box-shadow:0 12px 30px rgba(0,0,0,.24)}.case-v64-node.n1{left:50%;top:4%;transform:translateX(-50%)}.case-v64-node.n2{right:4%;top:25%}.case-v64-node.n3{right:6%;bottom:22%}.case-v64-node.n4{left:50%;bottom:2%;transform:translateX(-50%)}.case-v64-node.n5{left:4%;bottom:22%}.case-v64-node.n6{left:5%;top:25%}.case-v64-health{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.case-v64-health span{padding:15px;border:1px solid rgba(114,156,222,.16);border-radius:14px;background:rgba(6,13,24,.72)}.case-v64-health b,.case-v64-health small{display:block}.case-v64-health b{font-size:1.1rem}.case-v64-health small{margin-top:4px;font-size:.64rem;text-transform:uppercase;letter-spacing:.09em;color:#7791b7}.case-v64-metrics{padding:0 0 74px}.case-v64-metric-grid{display:grid;grid-template-columns:repeat(4,1fr);border:1px solid rgba(116,157,218,.17);border-radius:22px;overflow:hidden;background:linear-gradient(145deg,rgba(14,26,45,.72),rgba(7,13,23,.72))}.case-v64-metric-grid article{padding:28px 24px;border-right:1px solid rgba(116,157,218,.15)}.case-v64-metric-grid article:last-child{border-right:0}.case-v64-metric-grid span{font-size:.68rem;letter-spacing:.18em;color:#66b8ff}.case-v64-metric-grid strong{display:block;margin:12px 0 8px;font-size:1.05rem}.case-v64-metric-grid p{margin:0;color:#8497b3;font-size:.84rem;line-height:1.65}.case-v64-section{padding:96px 0}.case-v64-heading{max-width:760px;margin:0 auto 44px;text-align:center}.case-v64-heading.align-left{margin-inline:0;text-align:left}.case-v64-heading h2{margin:12px 0 14px;font-size:clamp(2rem,3.7vw,3.55rem);line-height:1.04;letter-spacing:-.045em}.case-v64-heading p{color:#8fa2bd;line-height:1.75}.case-v64-architecture{display:grid;grid-template-columns:1fr 220px 1fr;gap:26px;align-items:stretch}.arch-column{display:grid;gap:18px}.arch-column article,.case-v64-module-grid article,.hotel-experience-grid article,.hotel-content-map article{padding:24px;border:1px solid rgba(116,158,222,.18);border-radius:18px;background:linear-gradient(145deg,rgba(15,28,48,.8),rgba(7,13,23,.82))}.arch-column small{font-size:.62rem;letter-spacing:.16em;color:#65b7ff}.arch-column h3{margin:10px 0}.arch-column p{margin:0;color:#8ca0bc;line-height:1.7}.arch-center{position:relative;display:grid;place-items:center}.arch-center::before,.arch-center::after{content:"";position:absolute;width:100%;height:1px;background:linear-gradient(90deg,transparent,#3d8cff,transparent)}.arch-center::before{top:34%}.arch-center::after{bottom:34%}.arch-core{position:relative;z-index:2;display:grid;place-items:center;width:142px;height:142px;border-radius:38px;text-align:center;font-size:1.5rem;font-weight:800;background:linear-gradient(145deg,#347edc,#7045e9);box-shadow:0 0 55px rgba(67,112,255,.38)}.arch-core span{font-size:.55rem;letter-spacing:.23em}.case-v64-module-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.case-v64-module-grid b,.hotel-experience-grid b{font-size:.65rem;color:#67b8ff}.case-v64-module-grid h3{margin:14px 0 10px}.case-v64-module-grid p{min-height:78px;color:#8fa2bd;line-height:1.7}.case-v64-module-grid span{font-size:.67rem;letter-spacing:.08em;color:#71caff}.case-v64-split{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr);gap:44px;align-items:start}.case-v64-timeline{display:grid;gap:14px}.case-v64-timeline article{display:grid;grid-template-columns:62px 1fr;gap:18px;padding:20px;border:1px solid rgba(111,154,217,.15);border-radius:15px;background:rgba(9,17,30,.65)}.case-v64-timeline span{display:grid;place-items:center;width:44px;height:44px;border:1px solid rgba(86,155,255,.28);border-radius:12px;color:#65b7ff}.case-v64-timeline h3{margin:0 0 7px}.case-v64-timeline p{margin:0;color:#8fa1ba;line-height:1.65}.case-v64-result-card{position:sticky;top:110px;padding:32px;border:1px solid rgba(101,157,241,.27);border-radius:22px;background:radial-gradient(circle at top right,rgba(86,91,255,.17),transparent 44%),linear-gradient(145deg,rgba(16,30,53,.93),rgba(7,13,24,.97))}.case-v64-result-card h3{margin:14px 0 22px;font-size:1.8rem}.case-v64-result-card ul{display:grid;gap:13px;padding:0;margin:0;list-style:none}.case-v64-result-card li{padding-left:24px;color:#9dafc8;line-height:1.6}.case-v64-result-card li::before{content:"✓";position:absolute;margin-left:-24px;color:#63efb3}.case-v64-flow{display:grid;grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;gap:14px;align-items:center}.case-v64-flow article{min-height:180px;padding:24px;border:1px solid rgba(112,155,220,.16);border-radius:18px;background:linear-gradient(145deg,rgba(15,28,48,.78),rgba(7,13,23,.8))}.case-v64-flow b{font-size:.7rem;color:#61b9ff}.case-v64-flow h3{margin:15px 0 10px}.case-v64-flow p{margin:0;color:#8da0bb;line-height:1.65}.case-v64-flow>i{font-style:normal;color:#4f8dd9}.case-v64-cta{padding:86px 0 110px}.case-v64-cta .container{display:flex;justify-content:space-between;gap:42px;align-items:end;padding:42px;border:1px solid rgba(112,157,225,.2);border-radius:24px;background:linear-gradient(135deg,rgba(19,39,69,.82),rgba(8,14,26,.9))}.case-v64-cta h2{max-width:720px;margin:12px 0;font-size:clamp(2rem,4vw,3.4rem)}.case-v64-cta p{max-width:720px;color:#92a6c1}.case-v64-cta .case-back{display:block;margin-top:14px}.hotel-case-visual{position:relative;min-height:470px}.hotel-case-browser{position:absolute;left:0;top:20px;width:82%;border:1px solid rgba(198,160,90,.3);border-radius:22px;overflow:hidden;background:#0b111b;box-shadow:0 35px 90px rgba(0,0,0,.42),0 0 50px rgba(65,114,255,.1);transform:perspective(900px) rotateY(-4deg)}.hotel-browser-bar{display:flex;align-items:center;gap:7px;padding:12px 14px;border-bottom:1px solid rgba(132,159,196,.12);color:#6f83a3;font-size:.62rem}.hotel-browser-bar i{width:7px;height:7px;border-radius:50%;background:#31445f}.hotel-browser-bar span{margin-left:auto}.hotel-browser-body{display:grid;place-items:center;min-height:340px;text-align:center;background:radial-gradient(circle at center,rgba(173,132,59,.13),transparent 45%),linear-gradient(145deg,#111a28,#080d15);color:#e7cc96}.hotel-browser-body small{letter-spacing:.35em;color:#7f9bc1}.hotel-browser-body strong{margin-top:16px;font-family:Georgia,serif;font-size:3.6rem;letter-spacing:.17em;font-weight:500}.hotel-browser-body em{font-family:Georgia,serif;font-style:normal;color:#aa9067}.hotel-browser-line{width:140px;height:1px;margin:20px 0;background:linear-gradient(90deg,transparent,#c7a76c,transparent)}.hotel-browser-body p{font-size:.75rem;letter-spacing:.13em;color:#8d9eb6}.hotel-case-phone{position:absolute;right:0;bottom:0;width:180px;height:330px;padding:14px;border:1px solid rgba(104,155,231,.3);border-radius:28px;background:#09111e;box-shadow:0 25px 70px rgba(0,0,0,.45),0 0 42px rgba(68,128,255,.13)}.hotel-case-phone>div{height:100%;display:flex;flex-direction:column;justify-content:end;padding:22px;border-radius:20px;background:radial-gradient(circle at top,rgba(177,135,63,.14),transparent 40%),linear-gradient(#111a28,#090e16)}.hotel-case-phone small{font-family:Georgia,serif;color:#d7b97d}.hotel-case-phone strong{margin:12px 0;font-size:1.2rem}.hotel-case-phone span{font-size:.72rem;color:#89a0bf}.hotel-experience-grid{display:grid;grid-template-columns:1.2fr 1fr 1fr;gap:16px}.hotel-experience-main{grid-row:span 2;padding:34px!important;background:radial-gradient(circle at top right,rgba(196,144,53,.12),transparent 40%),linear-gradient(145deg,rgba(18,31,50,.9),rgba(8,13,22,.94))!important}.hotel-experience-main small{color:#d9ba7b;letter-spacing:.18em}.hotel-experience-main h3{margin:16px 0;font-size:2rem}.hotel-experience-main p,.hotel-experience-grid article p{color:#8fa2bd;line-height:1.7}.hotel-palette{display:flex;gap:10px;margin-top:26px}.hotel-palette i{width:42px;height:42px;border-radius:12px;border:1px solid rgba(255,255,255,.09)}.hotel-palette i:nth-child(1){background:#0b1320}.hotel-palette i:nth-child(2){background:#18263a}.hotel-palette i:nth-child(3){background:#c1a06a}.hotel-palette i:nth-child(4){background:#ede4d2}.hotel-device-stack{display:grid;gap:14px}.hotel-device{display:grid;grid-template-columns:80px 1fr;align-items:center;column-gap:18px;padding:20px;border:1px solid rgba(111,154,220,.16);border-radius:16px;background:rgba(9,17,30,.66)}.hotel-device span{grid-row:span 2;display:block;margin:auto;border:2px solid rgba(107,160,241,.42);background:linear-gradient(145deg,#16273f,#0a1220);box-shadow:inset 0 0 18px rgba(63,123,225,.12)}.hotel-device.desktop span{width:74px;height:46px;border-radius:7px}.hotel-device.tablet span{width:50px;height:66px;border-radius:8px}.hotel-device.mobile span{width:34px;height:66px;border-radius:9px}.hotel-device strong{align-self:end}.hotel-device small{align-self:start;color:#8295b2}.hotel-content-map{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.hotel-content-map span{font-size:.65rem;color:#d6b571}.hotel-content-map h3{margin:13px 0 8px}.hotel-content-map p{margin:0;color:#8da0bb;line-height:1.65}.hotel-result{border-color:rgba(198,158,88,.25);background:radial-gradient(circle at top right,rgba(196,145,54,.12),transparent 44%),linear-gradient(145deg,rgba(18,29,48,.93),rgba(8,13,22,.97))}.hotel-cta .container{background:radial-gradient(circle at 75% 20%,rgba(195,145,56,.12),transparent 35%),linear-gradient(135deg,rgba(19,37,64,.83),rgba(9,14,24,.92))}@keyframes v64spin{to{transform:translate(-50%,-50%) rotate(360deg)}}
@media(max-width:980px){.case-v64-hero-grid,.case-v64-split{grid-template-columns:1fr}.case-v64-system-card,.hotel-case-visual{max-width:650px;width:100%;margin-inline:auto}.case-v64-metric-grid{grid-template-columns:repeat(2,1fr)}.case-v64-metric-grid article:nth-child(2){border-right:0}.case-v64-metric-grid article:nth-child(-n+2){border-bottom:1px solid rgba(116,157,218,.15)}.case-v64-architecture{grid-template-columns:1fr}.arch-center{min-height:190px}.case-v64-module-grid,.hotel-content-map{grid-template-columns:repeat(2,1fr)}.case-v64-result-card{position:relative;top:auto}.case-v64-flow{grid-template-columns:1fr 1fr}.case-v64-flow>i{display:none}.hotel-experience-grid{grid-template-columns:1fr 1fr}.hotel-experience-main{grid-column:1/-1;grid-row:auto}.case-v64-cta .container{align-items:flex-start;flex-direction:column}}
@media(max-width:640px){.case-v64 .container{width:min(100% - 28px,1180px)}.case-v64-hero{padding:82px 0 52px}.case-v64-intro h1{font-size:clamp(2.45rem,13vw,4rem)}.case-v64-orbit{min-height:315px;transform:scale(.88)}.case-v64-health{grid-template-columns:1fr}.case-v64-metric-grid,.case-v64-module-grid,.hotel-content-map,.hotel-experience-grid,.case-v64-flow{grid-template-columns:1fr}.case-v64-metric-grid article{border-right:0!important;border-bottom:1px solid rgba(116,157,218,.15)!important}.case-v64-metric-grid article:last-child{border-bottom:0!important}.case-v64-section{padding:72px 0}.case-v64-architecture{gap:18px}.case-v64-timeline article{grid-template-columns:48px 1fr}.case-v64-cta .container{padding:28px}.hotel-case-visual{min-height:520px}.hotel-case-browser{width:100%;transform:none}.hotel-case-phone{right:14px;bottom:0;width:150px;height:285px}.hotel-browser-body{min-height:300px}.hotel-browser-body strong{font-size:2.6rem}}
@media(prefers-reduced-motion:reduce){.case-v64-ring.ring-two{animation:none}}


/* =========================================================
   v9.0 — Focused homepage
   Projects preview removed; homepage now flows directly from
   value proposition into the final conversion CTA.
   ========================================================= */
.home-why{padding-bottom:clamp(92px,10vw,150px)}
.home-final-cta{
  position:relative;
  padding-top:clamp(82px,9vw,132px);
  border-top:1px solid rgba(116,157,218,.14);
}
.home-final-cta::before{
  content:"";position:absolute;left:50%;top:0;width:min(920px,76vw);height:1px;
  transform:translateX(-50%);
  background:linear-gradient(90deg,transparent,rgba(83,137,255,.38),transparent);
}
@media(max-width:640px){
  .home-why{padding-bottom:76px}
  .home-final-cta{padding-top:72px}
}

/* =========================================================
   v9.1 — Final bottom polish
   Stronger value proposition + full-width conversion CTA.
   ========================================================= */
.home-why-v91{padding:clamp(92px,10vw,148px) 0 clamp(88px,9vw,130px)}
.home-why-v91 .container{width:min(100% - 48px,1180px)}
.home-why-head{display:grid;grid-template-columns:minmax(0,1fr) minmax(310px,.72fr);gap:70px;align-items:end;margin-bottom:46px}
.home-why-head h2{margin:12px 0 0;font-size:clamp(2.5rem,5vw,4.6rem);line-height:.94;letter-spacing:-.055em}
.home-why-head h2 span{background:linear-gradient(90deg,#5ea9ff,#57e0d4 52%,#8d72ff);-webkit-background-clip:text;background-clip:text;color:transparent}
.home-why-head>p{max-width:470px;margin:0 0 5px;color:#91a4bf;font-size:1.03rem;line-height:1.78}
.home-value-grid-v91{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
.home-value-grid-v91 .home-value-card{position:relative;min-height:255px;padding:25px 23px 22px;border:1px solid rgba(112,157,225,.18);border-radius:19px;overflow:hidden;background:linear-gradient(145deg,rgba(17,31,54,.82),rgba(7,13,24,.92));box-shadow:inset 0 1px rgba(255,255,255,.025);transition:transform .35s ease,border-color .35s ease,box-shadow .35s ease}
.home-value-grid-v91 .home-value-card::before{content:"";position:absolute;inset:auto -40px -90px auto;width:170px;height:170px;border-radius:50%;background:radial-gradient(circle,rgba(74,126,255,.16),transparent 68%);opacity:0;transition:opacity .35s ease}
.home-value-grid-v91 .home-value-card:hover{transform:translateY(-7px);border-color:rgba(101,165,255,.42);box-shadow:0 28px 55px rgba(0,0,0,.28),0 0 34px rgba(62,117,255,.11)}
.home-value-grid-v91 .home-value-card:hover::before{opacity:1}
.home-value-grid-v91 .home-value-card>span{display:block;margin-top:20px;color:#5daeff;font-size:.65rem;letter-spacing:.18em}
.home-value-grid-v91 .home-value-card h3{margin:13px 0 10px;font-size:1.08rem}
.home-value-grid-v91 .home-value-card p{margin:0;color:#879bb7;line-height:1.67;font-size:.88rem}
.home-value-grid-v91 .home-value-card b{position:absolute;left:23px;bottom:20px;font-size:.65rem;letter-spacing:.08em;text-transform:uppercase;color:#6ec9ff}
.value-icon{display:grid;place-items:center;width:38px;height:38px;border:1px solid rgba(93,157,255,.27);border-radius:11px;background:linear-gradient(145deg,rgba(28,53,91,.82),rgba(10,19,34,.9));color:#71d9ff;font-size:1.02rem;box-shadow:0 0 24px rgba(69,127,255,.08)}
.why-button-v91{margin-top:34px;padding:13px 18px}
.home-final-cta{padding:clamp(88px,9vw,132px) 0 84px}
.home-final-cta .container{width:min(100% - 48px,1180px)}
.home-cta-shell-v91{position:relative;display:grid;grid-template-columns:minmax(0,1.25fr) minmax(300px,.65fr);gap:54px;align-items:center;min-height:420px;padding:clamp(42px,5vw,70px);border:1px solid rgba(102,158,248,.33);border-radius:30px;overflow:hidden;background:radial-gradient(circle at 12% 12%,rgba(48,117,255,.24),transparent 36%),radial-gradient(circle at 85% 20%,rgba(116,70,255,.24),transparent 35%),linear-gradient(135deg,rgba(18,47,91,.94),rgba(12,24,50,.98) 55%,rgba(18,22,47,.98));box-shadow:0 38px 100px rgba(0,0,0,.42),0 0 65px rgba(55,106,255,.12),inset 0 1px rgba(255,255,255,.05)}
.home-cta-shell-v91::before{content:"";position:absolute;inset:0;background:linear-gradient(rgba(120,164,232,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(120,164,232,.04) 1px,transparent 1px);background-size:28px 28px;mask-image:linear-gradient(90deg,black,transparent 75%);pointer-events:none}
.home-cta-shell-v91::after{content:"";position:absolute;width:360px;height:360px;right:-110px;bottom:-170px;border:1px solid rgba(111,126,255,.18);border-radius:50%;box-shadow:0 0 0 42px rgba(97,98,255,.035),0 0 0 88px rgba(97,98,255,.025);pointer-events:none}
.home-cta-shell-v91 .home-cta-copy,.home-cta-shell-v91 .home-cta-panel{position:relative;z-index:2}
.home-cta-shell-v91 .home-cta-copy h2{max-width:760px;margin:15px 0 20px;font-size:clamp(2.75rem,5.6vw,5.6rem);line-height:.92;letter-spacing:-.06em}
.home-cta-shell-v91 .home-cta-copy h2 span{background:linear-gradient(90deg,#6ab4ff,#63d9e5 48%,#9876ff);-webkit-background-clip:text;background-clip:text;color:transparent}
.home-cta-shell-v91 .home-cta-copy>p{max-width:680px;margin:0;color:#a1b4cd;font-size:1.02rem;line-height:1.78}
.home-cta-shell-v91 .home-cta-trust{display:flex;flex-wrap:wrap;gap:11px 22px;margin-top:28px}
.home-cta-shell-v91 .home-cta-trust span{display:flex;align-items:center;gap:8px;color:#b9c8da;font-size:.8rem}
.home-cta-shell-v91 .home-cta-trust i{display:grid;place-items:center;width:19px;height:19px;border-radius:50%;background:rgba(73,232,175,.12);color:#5ef0b4;font-style:normal;font-size:.65rem;box-shadow:0 0 15px rgba(61,221,161,.11)}
.home-cta-shell-v91 .home-cta-panel{padding:27px;border:1px solid rgba(124,161,224,.22);border-radius:20px;background:linear-gradient(145deg,rgba(7,18,37,.72),rgba(6,12,25,.9));box-shadow:0 24px 55px rgba(0,0,0,.27),inset 0 1px rgba(255,255,255,.03)}
.home-cta-shell-v91 .home-cta-panel small{display:block;color:#67b9ff;letter-spacing:.18em;font-size:.62rem}
.home-cta-shell-v91 .home-cta-panel strong{display:block;margin:13px 0 10px;font-size:1.45rem;line-height:1.2}
.home-cta-shell-v91 .home-cta-panel p{margin:0;color:#8195b3;line-height:1.62}
.home-cta-shell-v91 .home-cta-actions{display:grid;gap:10px;margin-top:24px}
.home-cta-shell-v91 .home-cta-actions .button{justify-content:space-between;width:100%;padding:14px 16px}
.home-final-cta+.footer{border-top:0}
.footer{padding-top:24px}
@media(max-width:980px){.home-why-head{grid-template-columns:1fr;gap:24px}.home-value-grid-v91{grid-template-columns:repeat(2,1fr)}.home-cta-shell-v91{grid-template-columns:1fr;min-height:auto}.home-cta-shell-v91 .home-cta-panel{max-width:520px}}
@media(max-width:640px){.home-why-v91 .container,.home-final-cta .container{width:min(100% - 28px,1180px)}.home-value-grid-v91{grid-template-columns:1fr}.home-value-grid-v91 .home-value-card{min-height:225px}.home-cta-shell-v91{padding:29px 22px;border-radius:22px}.home-cta-shell-v91 .home-cta-copy h2{font-size:clamp(2.45rem,12.2vw,4rem)}.home-cta-shell-v91 .home-cta-trust{display:grid}.home-cta-shell-v91 .home-cta-panel{padding:22px}}

/* =========================================================
   v9.2 — Bento value cards + refined footer/back-to-top
   ========================================================= */
html{scroll-behavior:smooth}
.home-value-grid-v91{
  grid-template-columns:repeat(12,minmax(0,1fr));
  grid-auto-rows:minmax(220px,auto);
  gap:18px;
}
.home-value-grid-v91 .home-value-card{
  min-height:0;
  padding:28px 28px 25px;
}
.home-value-grid-v91 .value-card-communication{grid-column:span 7}
.home-value-grid-v91 .value-card-custom{grid-column:span 5}
.home-value-grid-v91 .value-card-security{grid-column:span 5}
.home-value-grid-v91 .value-card-support{grid-column:span 7}
.home-value-grid-v91 .home-value-card:nth-child(odd){
  background:
    radial-gradient(circle at 90% 10%,rgba(68,128,255,.12),transparent 34%),
    linear-gradient(145deg,rgba(17,31,54,.88),rgba(7,13,24,.95));
}
.home-value-grid-v91 .home-value-card:nth-child(even){
  background:
    radial-gradient(circle at 10% 100%,rgba(112,77,255,.10),transparent 38%),
    linear-gradient(145deg,rgba(15,28,50,.87),rgba(7,13,24,.95));
}
.home-value-grid-v91 .home-value-card h3{font-size:clamp(1.15rem,1.6vw,1.42rem);margin-top:17px}
.home-value-grid-v91 .home-value-card p{max-width:470px;font-size:.94rem;line-height:1.74}
.home-value-grid-v91 .home-value-card b{left:28px;bottom:24px}
.home-value-grid-v91 .value-icon{width:44px;height:44px;border-radius:13px;font-size:1.15rem}
.home-value-grid-v91 .home-value-card>span{position:absolute;right:25px;top:24px;margin:0;font-size:.7rem;color:#6888b6}
.home-value-grid-v91 .home-value-card::after{
  content:"";position:absolute;right:24px;bottom:24px;width:48px;height:1px;
  background:linear-gradient(90deg,transparent,rgba(95,169,255,.52));
  opacity:.55;transition:width .35s ease,opacity .35s ease;
}
.home-value-grid-v91 .home-value-card:hover::after{width:82px;opacity:1}

.footer-v92{padding:0;border-top:1px solid rgba(116,151,205,.14);background:rgba(5,10,18,.72);backdrop-filter:blur(18px)}
.footer-inner-v92{min-height:128px;display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:28px}
.footer-inner-v92>.brand{justify-self:start;transition:transform .25s ease,filter .25s ease}
.footer-inner-v92>.brand:hover{transform:translateY(-2px);filter:drop-shadow(0 0 18px rgba(90,132,255,.25))}
.footer-center-v92{text-align:center}
.footer-center-v92 p{margin:0;color:#72839b;font-size:.78rem}
.footer-center-v92 nav{display:flex;justify-content:center;gap:18px;margin-top:10px}
.footer-center-v92 nav a{color:#91a4bf;font-size:.72rem;transition:color .2s ease}
.footer-center-v92 nav a:hover{color:#eff6ff}
.footer-top-link{justify-self:end;display:inline-flex;align-items:center;gap:12px;padding:11px 13px 11px 16px;border:1px solid rgba(112,155,219,.17);border-radius:12px;color:#b7c6d9;font-size:.78rem;background:rgba(11,20,34,.42);transition:transform .25s ease,border-color .25s ease,background .25s ease}
.footer-top-link i{display:grid;place-items:center;width:27px;height:27px;border-radius:8px;background:linear-gradient(145deg,rgba(55,113,219,.35),rgba(99,68,224,.30));color:#f5f8ff;font-style:normal}
.footer-top-link:hover{transform:translateY(-3px);border-color:rgba(104,164,255,.42);background:rgba(15,28,47,.72)}
.floating-top{position:fixed;z-index:50;right:24px;bottom:24px;width:46px;height:46px;border:1px solid rgba(106,160,242,.30);border-radius:14px;background:linear-gradient(145deg,rgba(20,42,75,.94),rgba(20,19,52,.95));color:#eef6ff;box-shadow:0 18px 45px rgba(0,0,0,.34),0 0 26px rgba(73,119,255,.12);opacity:0;visibility:hidden;transform:translateY(12px);cursor:pointer;transition:opacity .25s ease,visibility .25s ease,transform .25s ease,border-color .25s ease}
.floating-top.visible{opacity:1;visibility:visible;transform:translateY(0)}
.floating-top:hover{transform:translateY(-4px);border-color:rgba(117,177,255,.62)}
.floating-top span{font-size:1.15rem}

@media(max-width:980px){
  .home-value-grid-v91 .home-value-card{grid-column:span 6}
  .footer-inner-v92{grid-template-columns:1fr auto;min-height:112px}
  .footer-center-v92{display:none}
}
@media(max-width:640px){
  .home-value-grid-v91{grid-template-columns:1fr;grid-auto-rows:auto}
  .home-value-grid-v91 .home-value-card{grid-column:1;min-height:230px;padding:24px 22px}
  .home-value-grid-v91 .home-value-card b{left:22px}
  .footer-inner-v92{grid-template-columns:1fr;justify-items:center;padding:28px 0;gap:18px}
  .footer-inner-v92>.brand,.footer-top-link{justify-self:center}
  .footer-center-v92{display:block;order:3}
  .footer-center-v92 nav{display:none}
  .floating-top{right:16px;bottom:16px;width:43px;height:43px}
}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}.floating-top,.footer-top-link,.footer-inner-v92>.brand{transition:none}}


/* =========================================================
   v9.3 — balanced 2x2 value grid + reliable footer anchors
   ========================================================= */
#page-top{position:absolute;top:0;left:0;width:1px;height:1px;pointer-events:none}
.home-why-v91{padding-bottom:clamp(76px,8vw,112px)}
.home-value-grid-v91{
  width:min(100%,1040px);
  margin:42px auto 0;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  grid-auto-rows:1fr;
  gap:18px;
}
.home-value-grid-v91 .home-value-card,
.home-value-grid-v91 .value-card-communication,
.home-value-grid-v91 .value-card-custom,
.home-value-grid-v91 .value-card-security,
.home-value-grid-v91 .value-card-support{
  grid-column:auto;
  min-height:235px;
  padding:27px 28px 26px 92px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  overflow:hidden;
}
.home-value-grid-v91 .home-value-card::before{
  width:220px;height:220px;right:-90px;bottom:-125px;opacity:.42;
}
.home-value-grid-v91 .home-value-card::after{display:none}
.home-value-grid-v91 .value-icon{
  position:absolute;left:27px;top:29px;
  width:47px;height:47px;border-radius:14px;
}
.home-value-grid-v91 .home-value-card>span{
  position:absolute;right:25px;top:27px;margin:0;
  font-size:.68rem;color:#6988b7;
}
.home-value-grid-v91 .home-value-card h3{
  margin:0 0 10px;font-size:clamp(1.12rem,1.45vw,1.38rem);
}
.home-value-grid-v91 .home-value-card p{
  max-width:430px;margin:0 0 20px;font-size:.91rem;line-height:1.7;
}
.home-value-grid-v91 .home-value-card b{
  position:static;margin-top:auto;padding-top:4px;
  font-size:.65rem;letter-spacing:.09em;
}
.home-value-grid-v91 .home-value-card:hover{
  transform:translateY(-5px);
}
.section-action .why-button-v91{margin-top:30px}

.footer-v92{position:relative}
.footer-inner-v92>.brand,.footer-top-link{cursor:pointer}
.footer-top-link:focus-visible,.footer-inner-v92>.brand:focus-visible{
  outline:2px solid #69b9ff;outline-offset:4px;
}

@media(max-width:760px){
  .home-why-head{gap:18px}
  .home-value-grid-v91{
    width:100%;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:30px;
  }
  .home-value-grid-v91 .home-value-card,
  .home-value-grid-v91 .value-card-communication,
  .home-value-grid-v91 .value-card-custom,
  .home-value-grid-v91 .value-card-security,
  .home-value-grid-v91 .value-card-support{
    grid-column:auto;min-height:220px;padding:68px 17px 18px;
  }
  .home-value-grid-v91 .value-icon{left:17px;top:17px;width:38px;height:38px;border-radius:11px}
  .home-value-grid-v91 .home-value-card>span{right:16px;top:20px;font-size:.6rem}
  .home-value-grid-v91 .home-value-card h3{font-size:.98rem;line-height:1.2}
  .home-value-grid-v91 .home-value-card p{font-size:.78rem;line-height:1.55;margin-bottom:14px}
  .home-value-grid-v91 .home-value-card b{font-size:.56rem;line-height:1.35}
}
@media(max-width:430px){
  .home-value-grid-v91{grid-template-columns:1fr}
  .home-value-grid-v91 .home-value-card,
  .home-value-grid-v91 .value-card-communication,
  .home-value-grid-v91 .value-card-custom,
  .home-value-grid-v91 .value-card-security,
  .home-value-grid-v91 .value-card-support{
    min-height:205px;padding:68px 20px 20px;
  }
  .home-value-grid-v91 .home-value-card h3{font-size:1.08rem}
  .home-value-grid-v91 .home-value-card p{font-size:.84rem}
}

/* =========================================================
   v9.4 — centered value section + unified CTA palette
   ========================================================= */
.home-why-v91{
  position:relative;
  padding:clamp(92px,9vw,132px) 0 clamp(82px,8vw,112px);
}
.home-why-v91::before{
  content:"";
  position:absolute;
  left:50%;top:0;
  width:min(1080px,82vw);height:1px;
  transform:translateX(-50%);
  background:linear-gradient(90deg,transparent,rgba(80,150,255,.26),transparent);
}
.home-why-v91 .container{
  width:min(100% - 48px,1120px);
  margin-inline:auto;
}
.home-why-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(300px,.72fr);
  align-items:end;
  gap:56px;
  margin:0 auto 42px;
}
.home-why-head>div{max-width:650px}
.home-why-head>p{justify-self:end;max-width:410px;margin:0 0 8px}
.home-value-grid-v91{
  width:100%;
  max-width:1040px;
  margin:0 auto;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.home-value-grid-v91 .home-value-card,
.home-value-grid-v91 .value-card-communication,
.home-value-grid-v91 .value-card-custom,
.home-value-grid-v91 .value-card-security,
.home-value-grid-v91 .value-card-support{
  min-height:270px;
  padding:84px 22px 24px;
  justify-content:flex-start;
  background:
    radial-gradient(circle at 50% 0%,rgba(66,136,255,.10),transparent 42%),
    linear-gradient(155deg,rgba(15,29,51,.94),rgba(7,14,25,.98));
}
.home-value-grid-v91 .value-icon{
  left:22px;top:24px;
  width:46px;height:46px;
}
.home-value-grid-v91 .home-value-card>span{right:21px;top:26px}
.home-value-grid-v91 .home-value-card h3{
  min-height:58px;
  margin:0 0 12px;
  font-size:1.18rem;
  line-height:1.38;
}
.home-value-grid-v91 .home-value-card p{
  max-width:none;
  margin:0 0 20px;
  font-size:.88rem;
  line-height:1.72;
}
.home-value-grid-v91 .home-value-card b{
  margin-top:auto;
  color:#6ecfff;
}
.section-action{text-align:center}
.section-action .why-button-v91{margin:30px auto 0}

.home-final-cta{
  padding:clamp(80px,8vw,116px) 0 64px;
}
.home-final-cta .container{
  width:min(100% - 48px,1120px);
  margin-inline:auto;
}
.home-cta-shell-v91{
  grid-template-columns:minmax(0,1.35fr) minmax(310px,.65fr);
  gap:46px;
  min-height:390px;
  padding:clamp(40px,4.8vw,62px);
  border-color:rgba(91,157,233,.28);
  background:
    radial-gradient(circle at 10% 8%,rgba(36,113,210,.18),transparent 34%),
    radial-gradient(circle at 92% 18%,rgba(30,169,194,.11),transparent 30%),
    linear-gradient(135deg,rgba(11,34,66,.98),rgba(8,24,45,.99) 58%,rgba(7,20,36,.99));
  box-shadow:0 34px 90px rgba(0,0,0,.38),0 0 52px rgba(49,116,199,.10),inset 0 1px rgba(255,255,255,.04);
}
.home-cta-shell-v91::after{
  border-color:rgba(79,160,215,.12);
  box-shadow:0 0 0 42px rgba(48,145,210,.025),0 0 0 88px rgba(44,154,190,.018);
}
.home-cta-shell-v91 .home-cta-copy h2{
  font-size:clamp(2.7rem,5vw,5rem);
}
.home-cta-shell-v91 .home-cta-copy h2 span{
  background:linear-gradient(90deg,#5daaff,#63d8df 54%,#76b9ff);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.home-cta-shell-v91 .home-cta-panel{
  border-color:rgba(89,150,218,.20);
  background:linear-gradient(150deg,rgba(8,25,47,.92),rgba(5,15,29,.97));
  box-shadow:0 22px 50px rgba(0,0,0,.24),inset 0 1px rgba(255,255,255,.025);
}
.home-cta-shell-v91 .home-cta-actions .button.primary{
  background:linear-gradient(90deg,#4f91ff,#58b8e8);
  box-shadow:0 12px 30px rgba(57,133,224,.20);
}
.home-cta-shell-v91 .home-cta-actions .button.primary:hover{
  box-shadow:0 16px 36px rgba(57,133,224,.28);
}
.home-cta-shell-v91 .home-cta-actions .button.ghost{
  background:rgba(12,29,49,.70);
  border-color:rgba(91,147,207,.22);
}
.footer-v92{
  border-top-color:rgba(84,137,194,.12);
  background:linear-gradient(180deg,rgba(6,13,22,.80),rgba(4,9,16,.96));
}

@media(max-width:980px){
  .home-why-head{grid-template-columns:1fr;gap:20px;text-align:center}
  .home-why-head>div,.home-why-head>p{max-width:720px;justify-self:center}
  .home-value-grid-v91{grid-template-columns:repeat(2,minmax(0,1fr));max-width:760px}
  .home-value-grid-v91 .home-value-card{min-height:245px}
  .home-cta-shell-v91{grid-template-columns:1fr;gap:30px}
  .home-cta-shell-v91 .home-cta-panel{max-width:none}
}
@media(max-width:640px){
  .home-why-v91 .container,.home-final-cta .container{width:min(100% - 28px,1120px)}
  .home-value-grid-v91{grid-template-columns:1fr;max-width:520px}
  .home-value-grid-v91 .home-value-card,
  .home-value-grid-v91 .value-card-communication,
  .home-value-grid-v91 .value-card-custom,
  .home-value-grid-v91 .value-card-security,
  .home-value-grid-v91 .value-card-support{
    min-height:220px;padding:76px 22px 22px;
  }
  .home-value-grid-v91 .home-value-card h3{min-height:0;font-size:1.1rem}
  .home-cta-shell-v91{padding:28px 22px;border-radius:22px}
}

/* =========================================================
   v10 — final homepage ending rebuild
   ========================================================= */
.home-why-v10{position:relative;padding:clamp(110px,10vw,160px) 0 clamp(105px,9vw,145px);overflow:hidden}
.home-why-v10::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 14% 18%,rgba(54,135,255,.13),transparent 34%),radial-gradient(circle at 88% 76%,rgba(69,221,210,.07),transparent 32%);pointer-events:none}
.home-why-v10 .container{position:relative;width:min(100% - 48px,1120px)}
.why-v10-intro{text-align:center;max-width:850px;margin:0 auto}
.why-v10-intro h2{margin:16px 0 24px;font-size:clamp(3rem,6vw,6.2rem);line-height:.92;letter-spacing:-.065em}
.why-v10-intro h2 span{background:linear-gradient(90deg,#5b9fff,#56dfd5 54%,#8f77ff);-webkit-background-clip:text;background-clip:text;color:transparent}
.why-v10-intro p{max-width:690px;margin:0 auto;color:#91a4bf;font-size:clamp(1rem,1.5vw,1.22rem);line-height:1.75}
.why-v10-line{display:grid;grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;align-items:center;gap:12px;margin:64px auto 26px;max-width:930px}
.why-v10-line span{height:1px;background:linear-gradient(90deg,transparent,rgba(79,164,255,.38),transparent)}
.why-v10-line i{width:8px;height:8px;border-radius:50%;background:#5ee2d3;box-shadow:0 0 0 7px rgba(94,226,211,.07),0 0 24px rgba(94,226,211,.5)}
.why-v10-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0;border-top:1px solid rgba(112,155,219,.16);border-bottom:1px solid rgba(112,155,219,.16)}
.why-v10-item{position:relative;padding:34px 28px 38px;min-height:260px;border-right:1px solid rgba(112,155,219,.14);transition:background .28s ease,transform .28s ease}
.why-v10-item:last-child{border-right:0}
.why-v10-item:hover{background:linear-gradient(180deg,rgba(56,124,230,.10),rgba(12,25,43,.08));transform:translateY(-5px)}
.why-v10-item>span{position:absolute;top:23px;right:23px;color:#5e7697;font-size:.72rem;letter-spacing:.18em}
.why-v10-icon{display:grid;place-items:center;width:48px;height:48px;border:1px solid rgba(90,169,255,.26);border-radius:15px;color:#61dbe0;background:rgba(12,32,55,.62);font-size:1.1rem}
.why-v10-item h3{margin:52px 0 14px;font-size:1.22rem;line-height:1.22}
.why-v10-item p{margin:0;color:#899cb6;line-height:1.7;font-size:.93rem}
.why-v10-action{text-align:center;margin-top:36px}
.why-v10-action .button{padding:14px 20px}
.home-cta-v10{padding:clamp(92px,9vw,140px) 0 clamp(96px,9vw,130px);border-top:1px solid rgba(112,155,219,.12)}
.home-cta-v10 .container{width:min(100% - 48px,1120px)}
.cta-v10{position:relative;text-align:center;padding:clamp(58px,7vw,92px) clamp(24px,6vw,82px);border:1px solid rgba(93,165,255,.28);border-radius:30px;background:radial-gradient(circle at 50% 0,rgba(69,151,255,.19),transparent 42%),linear-gradient(145deg,rgba(10,28,52,.96),rgba(6,15,29,.98));box-shadow:0 36px 90px rgba(0,0,0,.31),inset 0 1px rgba(255,255,255,.04);overflow:hidden}
.cta-v10::before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(87,143,220,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(87,143,220,.045) 1px,transparent 1px);background-size:38px 38px;mask-image:linear-gradient(to bottom,black,transparent 86%);pointer-events:none}
.cta-v10>*{position:relative}
.cta-v10 h2{margin:18px auto 22px;font-size:clamp(3rem,6.8vw,6.7rem);line-height:.91;letter-spacing:-.07em}
.cta-v10 h2 span{background:linear-gradient(90deg,#5ba5ff,#5be1d5 54%,#8b78ff);-webkit-background-clip:text;background-clip:text;color:transparent}
.cta-v10>p{max-width:720px;margin:0 auto;color:#91a5bf;font-size:clamp(1rem,1.35vw,1.17rem);line-height:1.72}
.cta-v10-actions{display:flex;justify-content:center;align-items:center;gap:15px;margin-top:34px;flex-wrap:wrap}
.cta-v10-actions .button{min-width:230px;justify-content:center;padding:16px 22px}
.cta-v10-mail{display:inline-flex;align-items:center;gap:22px;padding:15px 20px;border-bottom:1px solid rgba(117,177,255,.34);color:#dce9f8;font-weight:700;transition:color .2s ease,border-color .2s ease}
.cta-v10-mail:hover{color:#62dce1;border-color:#62dce1}
.cta-v10-trust{display:flex;justify-content:center;align-items:center;gap:16px;margin-top:38px;color:#7990ad;font-size:.76rem;letter-spacing:.05em;text-transform:uppercase;flex-wrap:wrap}
.cta-v10-trust i{width:4px;height:4px;border-radius:50%;background:#56dfd2;box-shadow:0 0 10px rgba(86,223,210,.7)}
.footer-v10{padding:0;border-top:1px solid rgba(112,155,219,.14);background:rgba(4,9,17,.78)}
.footer-v10-grid{display:grid;grid-template-columns:1fr 1.2fr .9fr;gap:60px;align-items:start;padding:58px 0 46px}
.footer-v10 .brand{align-self:start}
.footer-v10-nav{display:grid;grid-template-columns:1fr 1fr;gap:44px}
.footer-v10-nav div,.footer-v10-contact{display:flex;flex-direction:column;gap:12px}
.footer-v10 small{color:#5c7597;font-size:.67rem;font-weight:800;letter-spacing:.18em}
.footer-v10-nav a,.footer-v10-contact>a:not(.footer-top-link){color:#93a5bd;font-size:.88rem;transition:color .2s ease,transform .2s ease}
.footer-v10-nav a:hover,.footer-v10-contact>a:not(.footer-top-link):hover{color:#eef6ff;transform:translateX(3px)}
.footer-v10-contact{justify-self:end;min-width:210px}
.footer-v10-contact>a:first-of-type{font-size:1rem!important;color:#dbe7f6!important;font-weight:700}
.footer-v10 .footer-top-link{justify-self:start;margin-top:12px}
.footer-v10-bottom{display:flex;justify-content:space-between;gap:24px;padding:20px 0 25px;border-top:1px solid rgba(112,155,219,.10)}
.footer-v10-bottom p{margin:0;color:#647790;font-size:.72rem}
@media(max-width:900px){.why-v10-grid{grid-template-columns:repeat(2,1fr)}.why-v10-item:nth-child(2){border-right:0}.why-v10-item:nth-child(-n+2){border-bottom:1px solid rgba(112,155,219,.14)}.footer-v10-grid{grid-template-columns:1fr 1fr}.footer-v10-nav{order:3;grid-column:1/-1}.footer-v10-contact{justify-self:end}}
@media(max-width:620px){.home-why-v10 .container,.home-cta-v10 .container{width:min(100% - 28px,1120px)}.why-v10-line{display:none}.why-v10-grid{grid-template-columns:1fr;margin-top:42px}.why-v10-item,.why-v10-item:nth-child(2){border-right:0;border-bottom:1px solid rgba(112,155,219,.14);min-height:auto;padding:28px 22px 30px}.why-v10-item:last-child{border-bottom:0}.why-v10-item h3{margin-top:30px}.cta-v10{border-radius:22px;padding:48px 21px}.cta-v10-actions{flex-direction:column}.cta-v10-actions .button,.cta-v10-mail{width:100%;justify-content:center}.cta-v10-trust{display:grid;gap:10px}.cta-v10-trust i{display:none}.footer-v10-grid{grid-template-columns:1fr;gap:34px;padding:42px 0 34px}.footer-v10-contact{justify-self:start}.footer-v10-nav{grid-column:auto;order:initial}.footer-v10-bottom{flex-direction:column;align-items:flex-start}}

/* =========================================================
   V10.2 — HERO TYPOGRAPHY & UI POLISH
   ========================================================= */
.hero-benefits{
  gap:24px;
  margin-top:38px;
  padding-top:30px;
  align-items:stretch;
}
.hero-benefits>div{
  display:grid;
  grid-template-columns:44px minmax(0,1fr);
  gap:13px;
  align-items:center;
  min-height:58px;
}
.benefit-icon{
  width:44px;
  height:44px;
  border:1px solid rgba(74,229,190,.22);
  border-radius:13px;
  color:#57e7c0;
  background:linear-gradient(145deg,rgba(47,211,171,.10),rgba(32,89,125,.055));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05),0 10px 30px rgba(28,191,156,.06);
}
.benefit-icon svg,.metric-icon svg{
  width:22px;
  height:22px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.hero-benefits p{line-height:1.25;min-width:0}
.hero-benefits strong{
  font-size:13.5px;
  line-height:1.25;
  letter-spacing:-.01em;
  color:#f4f8ff;
}
.hero-benefits small{
  margin-top:4px;
  font-size:11px;
  line-height:1.35;
  color:#96a5ba;
}

.core-service{
  gap:13px;
  min-width:154px;
  padding:14px 16px;
}
.core-service b{font-size:12.5px;line-height:1.15;letter-spacing:.065em}
.core-service small{font-size:10px;line-height:1.35;margin-top:5px;color:#9aa8bb}
.svc-icon{font-size:21px;color:#91c2ff;line-height:1}
.core-head{font-size:11.5px;color:#b2bfd0}
.core-status span{font-size:8.5px;color:#8f9db1}
.core-status strong{font-size:11.5px}
.core-monitor{font-size:10.5px;color:#bdc8d8}

.hero-metrics>div{
  gap:20px;
  padding:31px 25px;
}
.metric-icon{
  width:54px;
  height:54px;
  border-radius:16px;
  color:#78adff;
  background:linear-gradient(145deg,rgba(58,91,190,.17),rgba(17,35,72,.10));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.045),0 14px 38px rgba(47,82,190,.07);
}
.metric-icon svg{width:24px;height:24px}
.hero-metrics strong{
  font-size:35px;
  letter-spacing:-.035em;
  color:#f4f8ff;
}
.hero-metrics small{
  margin-top:8px;
  color:#a1aec0;
  font-size:12px;
  line-height:1.3;
}

.technology-row{margin-top:42px}
.technology-title{font-size:10.5px;color:#8290a4}
.technology-pills{gap:11px;margin-top:25px}
.technology-pills span{
  min-height:39px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 17px;
  border-radius:11px;
  color:#d0d9e6;
  font-size:11.5px;
  letter-spacing:.01em;
  background:linear-gradient(145deg,rgba(13,21,36,.92),rgba(7,12,22,.84));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.025);
}
.technology-pills span:hover{
  color:#f4fbff;
  transform:translateY(-3px);
  border-color:rgba(75,203,226,.48);
  box-shadow:0 12px 32px rgba(42,144,206,.13),inset 0 1px 0 rgba(255,255,255,.05);
}

@media(max-width:1050px){
  .hero-benefits{grid-template-columns:repeat(2,minmax(0,1fr));max-width:680px}
}
@media(max-width:700px){
  .hero-benefits{gap:14px 18px}
  .hero-benefits>div{grid-template-columns:40px minmax(0,1fr)}
  .benefit-icon{width:40px;height:40px}
  .hero-metrics strong{font-size:32px}
  .technology-pills{justify-content:center}
}
@media(max-width:480px){
  .hero-benefits{grid-template-columns:1fr}
  .hero-benefits small{display:block}
  .hero-metrics>div{justify-content:flex-start;padding:23px 20px}
  .metric-icon{width:49px;height:49px}
  .technology-pills span{min-height:37px;padding:0 14px;font-size:11px}
}

/* =========================================================
   V10.3 — FINAL PIXEL POLISH
   ========================================================= */
.hero-v4-copy{
  padding-left:10px;
}
.hero-benefits{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.hero-benefits>div{
  grid-template-columns:46px minmax(0,1fr);
  gap:15px;
  padding-right:5px;
}
.hero-benefits p{
  display:flex;
  flex-direction:column;
  justify-content:center;
  margin:0;
  min-height:46px;
}
.hero-benefits strong{
  display:block;
  font-size:13.5px;
  line-height:1.22;
  white-space:normal;
}
.hero-benefits small{
  display:block;
  margin-top:5px;
  font-size:11.25px;
  line-height:1.45;
  white-space:normal;
}
.benefit-icon{
  flex:none;
  width:46px;
  height:46px;
}

.hero-actions .button{
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease,background .22s ease;
}
.hero-actions .button:hover{
  transform:translateY(-3px);
}
.hero-actions .button.primary:hover{
  box-shadow:0 15px 38px rgba(70,116,255,.28),0 0 28px rgba(63,218,228,.12);
}
.hero-actions .button.ghost:hover{
  border-color:rgba(104,181,255,.42);
  background:rgba(28,47,78,.38);
  box-shadow:0 13px 32px rgba(20,75,142,.12);
}

.core-head b i{
  animation:v103LivePulse 1.9s ease-out infinite;
}
.core-monitor time{
  color:#d5deea;
  font-variant-numeric:tabular-nums;
  letter-spacing:.08em;
}
.orbit-particles{
  position:absolute;
  inset:50% auto auto 50%;
  width:286px;
  height:286px;
  transform:translate(-50%,-50%);
  border-radius:50%;
  pointer-events:none;
  animation:v103OrbitSpin 26s linear infinite;
}
.orbit-particles i{
  position:absolute;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#55c8ff;
  box-shadow:0 0 13px rgba(68,187,255,.95),0 0 26px rgba(77,111,255,.45);
}
.orbit-particles i:nth-child(1){left:50%;top:-3px}
.orbit-particles i:nth-child(2){right:-3px;top:50%;background:#6f72ff}
.orbit-particles i:nth-child(3){left:50%;bottom:-3px;background:#45e4d0}
.orbit-particles i:nth-child(4){left:-3px;top:50%;width:4px;height:4px}

.hero-metrics strong{font-size:37px}
.hero-metrics small{font-size:12.5px;color:#aab6c8}
.hero-metrics>div:hover{
  transform:translateY(-3px);
  background:linear-gradient(145deg,rgba(53,91,194,.11),rgba(255,255,255,.018));
}
.metric-icon{
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}
.hero-metrics>div:hover .metric-icon{
  transform:translateY(-2px) scale(1.04);
  border-color:rgba(89,170,255,.42);
  box-shadow:0 13px 35px rgba(49,102,218,.15),inset 0 1px 0 rgba(255,255,255,.06);
}

.technology-pills span{
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease,color .2s ease,background .2s ease;
}
.technology-pills span:hover{
  background:linear-gradient(145deg,rgba(25,52,87,.96),rgba(9,17,31,.92));
}

@keyframes v103LivePulse{
  0%{box-shadow:0 0 0 0 rgba(76,239,179,.55),0 0 12px rgba(76,239,179,.7)}
  70%{box-shadow:0 0 0 8px rgba(76,239,179,0),0 0 16px rgba(76,239,179,.45)}
  100%{box-shadow:0 0 0 0 rgba(76,239,179,0),0 0 12px rgba(76,239,179,.7)}
}
@keyframes v103OrbitSpin{to{transform:translate(-50%,-50%) rotate(360deg)}}

@media(max-width:1050px){
  .hero-v4-copy{padding-left:0}
  .hero-benefits{grid-template-columns:repeat(2,minmax(0,1fr));gap:20px 26px}
  .hero-benefits>div{padding-right:0}
}
@media(max-width:700px){
  .hero-benefits{gap:16px 18px}
  .hero-benefits>div{grid-template-columns:42px minmax(0,1fr);gap:13px}
  .benefit-icon{width:42px;height:42px}
  .hero-benefits strong{font-size:13px}
  .hero-benefits small{font-size:10.75px}
  .orbit-particles{width:262px;height:262px}
  .hero-metrics strong{font-size:34px}
}
@media(max-width:480px){
  .hero-benefits{grid-template-columns:1fr;gap:14px}
  .hero-benefits>div{min-height:54px}
  .orbit-particles{display:none}
}
@media(prefers-reduced-motion:reduce){
  .core-head b i,.orbit-particles{animation:none!important}
}

/* =========================================================
   V10.3.1 — HERO BENEFITS LAYOUT FIX
   ========================================================= */
.hero-benefits{
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:18px 24px!important;
  max-width:100%;
}
.hero-benefits>div{
  display:grid!important;
  grid-template-columns:48px minmax(0,1fr)!important;
  align-items:center!important;
  column-gap:16px!important;
  min-width:0;
  padding:0!important;
}
.hero-benefits .benefit-icon{
  width:48px!important;
  height:48px!important;
  margin:0!important;
}
.hero-benefits p{
  min-width:0!important;
  min-height:48px!important;
  margin:0!important;
}
.hero-benefits strong{
  font-size:13.5px!important;
  line-height:1.25!important;
  overflow-wrap:normal;
  word-break:normal;
  hyphens:none;
}
.hero-benefits small{
  margin-top:4px!important;
  font-size:11.25px!important;
  line-height:1.4!important;
  color:#a8b4c5;
  overflow-wrap:normal;
  word-break:normal;
}
@media(max-width:560px){
  .hero-benefits{grid-template-columns:1fr!important;gap:14px!important}
}
/* Zlaja.ba ↔ Client Platform bridge */
.nav-client-link{display:grid!important;grid-template-columns:8px auto;grid-template-rows:auto auto;align-items:center;column-gap:8px;padding:7px 11px!important;border:1px solid rgba(44,131,212,.4)!important;border-radius:10px;background:linear-gradient(145deg,rgba(15,47,76,.85),rgba(8,29,49,.8));color:#eef7ff!important;line-height:1.05}.nav-client-link>i{grid-row:1/3;width:7px;height:7px;border-radius:50%;background:#42d99e;box-shadow:0 0 0 4px rgba(66,217,158,.08)}.nav-client-link>span{font-size:11px;font-weight:800}.nav-client-link>small{color:#6f98b8;font-size:7px;letter-spacing:.25px}.nav-client-link:hover{border-color:#3f93d8!important;background:#123957}.client-bridge-v1{position:relative;padding:35px 0 95px}.client-bridge-shell{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(310px,.65fr);align-items:center;gap:60px;padding:48px 52px;border:1px solid rgba(50,111,159,.45);border-radius:22px;background:radial-gradient(circle at 90% 50%,rgba(44,138,234,.16),transparent 32%),linear-gradient(125deg,#0a1d2f,#0d293e);box-shadow:0 30px 90px rgba(0,0,0,.22)}.client-bridge-copy h2{max-width:850px;margin:14px 0;font-size:clamp(35px,3.4vw,54px);line-height:1.05;letter-spacing:-.035em}.client-bridge-copy h2 span{color:#49a7ff}.client-bridge-copy>p{max-width:780px;color:#8ca4b7;line-height:1.7}.client-bridge-proof{display:flex;flex-wrap:wrap;gap:18px;margin-top:24px}.client-bridge-proof span{display:flex;align-items:center;gap:7px;color:#91aabd;font-size:11px}.client-bridge-proof i,.client-bridge-actions small>i{width:6px;height:6px;border-radius:50%;background:#42d99e}.client-bridge-actions{display:flex;align-items:stretch;flex-direction:column;gap:10px}.client-bridge-actions .button{justify-content:center}.client-bridge-actions small{display:flex;align-items:center;justify-content:center;gap:7px;margin-top:5px;color:#64829a;font-size:9px}.client-bridge-actions small a{color:#74b7f5}.footer-v10-nav{grid-template-columns:repeat(3,minmax(0,1fr))!important}.footer-client-links a{white-space:nowrap}
@media(max-width:1050px){.nav-client-link>small{display:none}.nav-client-link{grid-template-rows:auto}.nav-client-link>i{grid-row:auto}.client-bridge-shell{grid-template-columns:1fr;gap:30px}.client-bridge-actions{display:grid;grid-template-columns:1fr 1fr}.client-bridge-actions small{grid-column:1/-1}}
@media(max-width:760px){.nav-client-link{display:flex!important}.nav-client-link>small{display:block}.client-bridge-v1{padding:20px 18px 65px}.client-bridge-shell{padding:30px 24px}.client-bridge-actions{display:flex}.client-bridge-proof{align-items:flex-start;flex-direction:column;gap:10px}.footer-v10-nav{grid-template-columns:1fr!important}}

/* Compact Client Platform navigation correction */
.site-header .nav .nav-client-link{display:flex!important;grid-template:none!important;align-items:center!important;gap:7px!important;padding:10px 12px!important;line-height:1!important}.site-header .nav .nav-client-link>i{grid-row:auto!important;width:6px!important;height:6px!important;flex:0 0 6px}.site-header .nav .nav-client-link>span{font-size:10px!important;white-space:nowrap}.site-header .nav .nav-client-link>small{display:block!important;color:#70a9d7!important;font-size:10px!important}
@media(max-width:1050px){.site-header .nav .nav-client-link>i{display:none!important}}
@media(max-width:760px){.site-header .nav .nav-client-link>i{display:block!important}}

/* Homepage service story */
.home-services-v1{position:relative;padding:95px 0;background:linear-gradient(180deg,rgba(7,16,28,.35),rgba(8,20,34,.82),rgba(7,16,28,.35));border-top:1px solid rgba(46,80,109,.25);border-bottom:1px solid rgba(46,80,109,.25)}.home-services-head{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr);align-items:end;gap:55px;margin-bottom:38px}.home-services-head h2{max-width:870px;margin:15px 0 0;font-size:clamp(38px,4.3vw,64px);line-height:1.02;letter-spacing:-.045em}.home-services-head h2 span{color:#49a7ff}.home-services-head>p{color:#829bb0;line-height:1.75}.home-services-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.home-service-card{position:relative;min-height:285px;padding:29px;border:1px solid #203d55;border-radius:16px;background:linear-gradient(145deg,#0a1c2d,#081623);color:inherit;transition:.22s;overflow:hidden}.home-service-card:after{content:"";position:absolute;right:-65px;bottom:-80px;width:190px;height:190px;border-radius:50%;background:radial-gradient(circle,rgba(54,151,240,.12),transparent 68%)}.home-service-card:hover{transform:translateY(-4px);border-color:#347db6;background:linear-gradient(145deg,#0d253b,#091a2b)}.home-service-card>span{color:#55aaf5;font-size:9px;font-weight:800;letter-spacing:1.2px}.home-service-card>i{position:absolute;top:25px;right:27px;display:grid;place-items:center;width:35px;height:35px;border:1px solid #2a506d;border-radius:10px;color:#64b1f4;font-style:normal;transition:.2s}.home-service-card:hover>i{border-color:#4ca4e8;background:#123c5e;transform:translate(2px,-2px)}.home-service-card h3{max-width:470px;margin:51px 0 13px;font-size:25px;line-height:1.2}.home-service-card p{max-width:580px;color:#8199ad;line-height:1.7}.home-service-card small{position:absolute;bottom:25px;color:#526f87;font-size:9px;letter-spacing:.7px}.home-services-actions{display:flex;justify-content:center;gap:11px;margin-top:28px}.home-services-actions .button{min-width:245px;justify-content:center}.home-cta-v10 .cta-v10-actions{flex-wrap:wrap}.home-cta-v10 .cta-v10-actions .button{min-width:190px;justify-content:center}
@media(max-width:900px){.home-services-v1{padding:75px 0}.home-services-head{grid-template-columns:1fr;gap:18px}.home-services-grid{grid-template-columns:1fr}.home-service-card{min-height:260px}}
@media(max-width:620px){.home-services-v1{padding:65px 18px}.home-services-head h2{font-size:40px}.home-service-card{min-height:285px;padding:24px}.home-service-card h3{margin-top:42px;font-size:22px}.home-services-actions{align-items:stretch;flex-direction:column}.home-services-actions .button{width:100%}.home-cta-v10 .cta-v10-actions{align-items:stretch;flex-direction:column}.home-cta-v10 .cta-v10-actions .button{width:100%}}

/* Enriched homepage footer */
.footer-v10{position:relative;overflow:hidden;background:radial-gradient(circle at 88% 15%,rgba(66,95,229,.1),transparent 27%),linear-gradient(180deg,#07111d,#050d16)!important}.footer-v10:before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(70,111,145,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(70,111,145,.025) 1px,transparent 1px);background-size:52px 52px;pointer-events:none}.footer-v10-grid,.footer-v10-bottom{position:relative;z-index:1}.footer-v10-grid{grid-template-columns:1.35fr 1.8fr 1.1fr!important;gap:65px!important;padding-top:75px!important;padding-bottom:58px!important}.footer-v10-brand{max-width:310px}.footer-v10-brand>p{margin:24px 0 20px;color:#718ba0;font-size:12px;line-height:1.75}.footer-live{display:flex;align-items:center;gap:9px;width:max-content;padding:8px 11px;border:1px solid rgba(55,213,153,.2);border-radius:999px;background:rgba(39,151,111,.07);color:#50dca5;font-size:9px}.footer-live i{width:6px;height:6px;border-radius:50%;background:#42d99e;box-shadow:0 0 0 4px rgba(66,217,158,.08)}.footer-v10-nav{gap:35px!important}.footer-v10-nav>div{min-width:105px}.footer-v10-nav small,.footer-v10-contact>small{display:block;margin-bottom:19px;color:#63809a;font-size:9px;font-weight:800;letter-spacing:1.8px}.footer-v10-nav a{position:relative;width:max-content;color:#93a8ba!important;transition:.18s}.footer-v10-nav a:hover{color:#e8f4ff!important;transform:translateX(3px)}.footer-v10-contact{padding:24px!important;border:1px solid #203d55;border-radius:16px;background:linear-gradient(145deg,rgba(12,35,55,.9),rgba(7,23,37,.85))}.footer-v10-contact h3{margin:0 0 18px;color:#eaf5ff;font-size:17px;line-height:1.4}.footer-mail{display:flex!important;align-items:center;justify-content:space-between;padding-bottom:14px;border-bottom:1px solid #203c53;color:#9ed0ff!important;font-size:13px!important}.footer-project-link{display:flex!important;align-items:center;justify-content:space-between;margin-top:14px;padding:12px 14px;border-radius:9px;background:linear-gradient(135deg,#318cf0,#6f65ea);color:#fff!important;font-size:10px!important;font-weight:800}.footer-back-link{display:block!important;margin-top:15px;color:#648198!important;font-size:9px!important;text-align:center}.footer-v10-bottom{align-items:center!important;padding-top:20px!important;padding-bottom:24px!important}.footer-v10-bottom p:last-child{display:flex;align-items:center;gap:10px}.footer-v10-bottom p:last-child i{width:3px;height:3px;border-radius:50%;background:#3ed99d}
@media(max-width:1100px){.footer-v10-grid{grid-template-columns:1fr 1.6fr!important;gap:45px!important}.footer-v10-contact{grid-column:1/-1}.footer-v10-nav{grid-template-columns:repeat(3,1fr)!important}}
@media(max-width:700px){.footer-v10-grid{grid-template-columns:1fr!important;padding:55px 20px 40px!important}.footer-v10-nav{grid-template-columns:repeat(2,1fr)!important}.footer-client-links{grid-column:1/-1}.footer-v10-contact{grid-column:auto}.footer-v10-bottom{align-items:flex-start!important;gap:12px}.footer-v10-bottom p:last-child{flex-wrap:wrap}}

/* Professional compact footer correction */
.footer-v10{background:linear-gradient(180deg,#07111c,#050c14)!important;border-top:1px solid #172b3d!important}.footer-v10:before{opacity:.28}.footer-v10-grid{grid-template-columns:1.2fr 2.15fr 1.15fr!important;align-items:start!important;gap:50px!important;padding-top:58px!important;padding-bottom:46px!important}.footer-v10-brand{max-width:285px}.footer-v10-brand .brand-icon{width:46px!important;height:46px!important;border-radius:12px!important}.footer-v10-brand>p{margin:20px 0 17px;font-size:11px;line-height:1.7}.footer-live{padding:0;border:0;background:none;color:#65a88d;font-size:8px;letter-spacing:.4px}.footer-live i{width:5px;height:5px;box-shadow:none}.footer-v10-nav{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:30px!important;padding-top:3px}.footer-v10-nav small,.footer-v10-contact>small{margin-bottom:17px;font-size:8px;letter-spacing:1.6px}.footer-v10-nav a{margin-bottom:13px!important;font-size:11px!important}.footer-v10-contact{padding:3px 0 0 32px!important;border:0!important;border-left:1px solid #20384d!important;border-radius:0!important;background:none!important}.footer-v10-contact h3{max-width:300px;margin:0 0 17px;font-size:16px;line-height:1.45}.footer-mail{max-width:300px;padding:0 0 13px!important;font-size:12px!important}.footer-project-link{max-width:300px;margin-top:12px;padding:10px 12px;border:1px solid #315d80;border-radius:8px;background:#0b253a!important;color:#cbe8ff!important;font-size:9px!important}.footer-project-link:hover{border-color:#4c98d0;background:#10324d!important}.footer-back-link{max-width:300px;margin-top:12px!important;text-align:left!important}.footer-v10-bottom{padding-top:18px!important;padding-bottom:20px!important;border-top-color:#14283a!important}.footer-v10-bottom p{font-size:9px!important}
@media(max-width:1100px){.footer-v10-grid{grid-template-columns:1fr 1.7fr!important}.footer-v10-contact{grid-column:1/-1;padding:28px 0 0!important;border-left:0!important;border-top:1px solid #20384d!important}.footer-v10-contact h3,.footer-mail,.footer-project-link,.footer-back-link{max-width:520px}.footer-v10-nav{grid-template-columns:repeat(3,1fr)!important}}
@media(max-width:700px){.footer-v10-grid{grid-template-columns:1fr!important;gap:38px!important;padding:48px 20px 35px!important}.footer-v10-nav{grid-template-columns:repeat(2,1fr)!important}.footer-v10-contact{grid-column:auto}.footer-v10-bottom{padding-left:20px!important;padding-right:20px!important}}
