/* ==========================================================================
   biz-IT — redesign stylesheet
   Brand colors sourced from Logo Color Guide:
   bg #010506 · text #EEF8F7 · orange #E35F21 · amber #FAAB05
   yellow #FFD647 · greys #4D4D4D/#6B6B6A/#9E9E9E · deep red #8C0303
   Font: Montserrat
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root{
  --bg:            #050807;
  --bg-1:          #0a0f0d;
  --bg-2:          #0d1512;
  --surface:       rgba(238,248,247,0.035);
  --surface-hover: rgba(238,248,247,0.06);
  --border:        rgba(238,248,247,0.10);
  --border-soft:   rgba(238,248,247,0.06);
  --text:          #EEF8F7;
  --text-dim:      #9E9E9E;
  --text-dim2:     #6B6B6A;
  --orange:        #E35F21;
  --amber:         #FAAB05;
  --yellow:        #FFD647;
  --deepred:       #8C0303;
  --grad-brand: linear-gradient(120deg, #E35F21 0%, #FAAB05 55%, #FFD647 100%);
  --glow-orange: rgba(227,95,33,0.35);
  --glow-amber:  rgba(250,171,5,0.28);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --maxw: 1200px;
  --shadow-card: 0 20px 60px -20px rgba(0,0,0,0.6);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:'Montserrat', -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  position:relative;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-weight:700; letter-spacing:-0.01em; }
p{ margin:0; }
button{ font-family:inherit; }

.container{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 28px;
}

/* ---------------- background texture: dot grid + glow blobs -------------- */
.bg-fx{
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  overflow:hidden;
}
#bg-canvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0.9;
  mask-image:radial-gradient(ellipse 100% 90% at 65% 20%, black 40%, transparent 92%);
  -webkit-mask-image:radial-gradient(ellipse 100% 90% at 65% 20%, black 40%, transparent 92%);
}
@media (max-width:720px){
  #bg-canvas{ opacity:0.6; }
}
.bg-fx::before{
  content:"";
  position:absolute;
  inset:-10%;
  background-image:radial-gradient(rgba(238,248,247,0.09) 1px, transparent 1.4px);
  background-size:26px 26px;
  mask-image:radial-gradient(ellipse 80% 60% at 50% 0%, black 10%, transparent 75%);
  -webkit-mask-image:radial-gradient(ellipse 80% 60% at 50% 0%, black 10%, transparent 75%);
  opacity:0.55;
}
.glow{
  position:absolute;
  border-radius:50%;
  filter:blur(90px);
  opacity:0.55;
}
.glow-1{ width:640px; height:640px; top:-220px; left:50%; transform:translateX(-50%); background:radial-gradient(circle, var(--glow-orange), transparent 70%); }
.glow-2{ width:520px; height:520px; top:420px; right:-180px; background:radial-gradient(circle, var(--glow-amber), transparent 70%); opacity:0.35; }
.glow-3{ width:480px; height:480px; bottom:-160px; left:-160px; background:radial-gradient(circle, rgba(227,95,33,0.25), transparent 70%); }

/* ------------------------------- nav -------------------------------- */
.nav-wrap{
  position:sticky;
  top:18px;
  z-index:50;
  padding:0 16px;
  margin-bottom:-72px;
}
.nav{
  max-width:var(--maxw);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:10px 12px 10px 18px;
  background:rgba(10,15,13,0.62);
  border:1px solid var(--border);
  border-radius:var(--radius-pill);
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
  box-shadow:0 10px 40px -18px rgba(0,0,0,0.7);
}
.nav__logo{ display:flex; align-items:center; gap:10px; }
.nav__logo img{ height:38px; width:auto; }
.nav__links{ display:flex; align-items:center; gap:6px; }
.nav__links a{
  font-size:14px;
  font-weight:500;
  padding:9px 16px;
  border-radius:var(--radius-pill);
  color:var(--text-dim);
  transition:.2s ease;
}
.nav__links a:hover{ color:var(--text); background:var(--surface); }
.nav__links a.active{ color:var(--text); background:var(--surface); }
.nav__cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 20px;
  border-radius:var(--radius-pill);
  background:var(--grad-brand);
  color:#160a02;
  font-weight:700;
  font-size:14px;
  white-space:nowrap;
  box-shadow:0 8px 24px -8px var(--glow-orange);
  transition:transform .2s ease, box-shadow .2s ease;
}
.nav__cta:hover{ transform:translateY(-1px); box-shadow:0 12px 30px -8px var(--glow-orange); }
.nav__burger{ display:none; }

/* ------------------------------- lang switch -------------------------- */
.lang-switch{ position:relative; }
.lang-switch__toggle{
  display:flex;
  align-items:center;
  gap:7px;
  background:rgba(255,255,255,0.04);
  border:1px solid var(--border);
  border-radius:var(--radius-pill);
  padding:7px 12px 7px 8px;
  cursor:pointer;
  color:var(--text);
  font-family:inherit;
  font-size:13px;
  font-weight:600;
  line-height:1;
}
.lang-switch__toggle:hover{ border-color:rgba(255,255,255,0.28); background:var(--surface); }
.lang-flag{
  width:20px;
  height:14px;
  border-radius:3px;
  overflow:hidden;
  display:inline-flex;
  flex-shrink:0;
  box-shadow:0 0 0 1px rgba(255,255,255,0.14);
}
.lang-flag svg, .lang-flag img{ width:100%; height:100%; display:block; object-fit:cover; }
.lang-switch__chevron{ opacity:.65; transition:transform .18s ease; flex-shrink:0; }
.lang-switch.is-open .lang-switch__chevron{ transform:rotate(180deg); }
.lang-switch__menu{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  min-width:168px;
  background:#0b1210;
  border:1px solid var(--border);
  border-radius:12px;
  padding:6px;
  display:none;
  flex-direction:column;
  gap:2px;
  z-index:60;
  box-shadow:0 16px 36px -10px rgba(0,0,0,0.65);
}
.lang-switch.is-open .lang-switch__menu{ display:flex; }
.lang-switch__item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:9px 10px;
  border-radius:8px;
  color:var(--text-dim);
  font-size:13.5px;
  font-weight:500;
  transition:.15s ease;
}
.lang-switch__item:hover{ background:var(--surface); color:var(--text); }
.lang-switch__item.is-active{ color:var(--amber); }
@media (max-width:720px){
  .lang-switch__toggle span:not(.lang-flag){ display:none; }
  .lang-switch__toggle{ padding:7px 9px; }
  .lang-switch__chevron{ display:none; }
}

/* ------------------------------- buttons ------------------------------ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 28px;
  border-radius:var(--radius-pill);
  font-weight:700;
  font-size:15px;
  cursor:pointer;
  border:1px solid transparent;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn-primary{
  background:var(--grad-brand);
  color:#160a02;
  box-shadow:0 10px 30px -8px var(--glow-orange);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 16px 40px -10px var(--glow-orange); }
.btn-ghost{
  background:var(--surface);
  border-color:var(--border);
  color:var(--text);
}
.btn-ghost:hover{ background:var(--surface-hover); border-color:rgba(238,248,247,0.22); }

/* -------------------------------- hero --------------------------------- */
.hero{
  position:relative;
  padding:180px 0 110px;
  text-align:center;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 16px;
  border-radius:var(--radius-pill);
  border:1px solid var(--border);
  background:var(--surface);
  font-size:12.5px;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--amber);
  margin-bottom:26px;
}
.eyebrow .dot{ width:6px; height:6px; border-radius:50%; background:var(--amber); box-shadow:0 0 10px var(--amber); }
.hero h1{
  font-size:clamp(32px, 4.6vw, 52px);
  line-height:1.18;
  max-width:960px;
  margin:0 auto 22px;
}
.hero h1 .accent{
  background:var(--grad-brand);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero p.lead{
  font-size:19px;
  color:var(--text-dim);
  max-width:600px;
  margin:0 auto 40px;
  font-weight:400;
  line-height:1.6;
}
.hero .actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* hero mock panel */
.hero-panel{
  position:relative;
  max-width:1040px;
  margin:76px auto 0;
  border-radius:32px;
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(238,248,247,0.05), rgba(238,248,247,0.015));
  box-shadow:var(--shadow-card);
  padding:22px;
  backdrop-filter:blur(6px);
}
.hero-panel__bar{
  display:flex;
  align-items:center;
  gap:8px;
  padding:0 6px 18px;
}
.hero-panel__bar span{ width:10px; height:10px; border-radius:50%; background:rgba(238,248,247,0.15); }
.hero-panel__grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.hero-panel__grid--stats{
  grid-template-columns:repeat(4, 1fr);
  margin-top:14px;
}

@media (max-width:720px){
  .hero-panel__grid--stats{ grid-template-columns:repeat(2,1fr); }
}

/* hero inline icons (fingerprint / AI chip) */
.hero-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:0.98em;
  height:0.98em;
  margin:0 0.08em 0 0.06em;
  color:var(--amber);
  vertical-align:middle;
}
.hero-icon svg{ width:100%; height:100%; }
.hero-icon img{ width:100%; height:100%; object-fit:contain; display:block; }
.hero-icon img.fingerprint-icon{ transform:scaleX(1.2); }
.hero-nowrap{ white-space:nowrap; }
.hero-tile{
  border-radius:var(--radius-md);
  border:1px solid var(--border-soft);
  background:rgba(238,248,247,0.03);
  padding:22px 18px;
  text-align:left;
  position:relative;
  overflow:hidden;
}
.hero-tile .num{
  font-size:30px;
  font-weight:800;
  background:var(--grad-brand);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-tile .lbl{ font-size:13px; color:var(--text-dim); margin-top:6px; }
.hero-tile.tall{ grid-column:span 1; grid-row:span 2; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; }

/* ------------------------------ sections -------------------------------- */
section{ position:relative; padding:110px 0; }
.section-head{ max-width:680px; margin:0 auto 56px; text-align:center; }
.section-head h2{ font-size:clamp(28px,4vw,42px); line-height:1.15; }
.section-head p{ margin-top:16px; color:var(--text-dim); font-size:17px; line-height:1.65; }
.kicker{
  display:inline-block;
  font-size:12.5px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--orange);
  margin-bottom:14px;
}

/* card grid */
.grid{ display:grid; gap:22px; }
.grid-3{ grid-template-columns:repeat(3, 1fr); }
.grid-2{ grid-template-columns:repeat(2, 1fr); }

.card{
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
  background:var(--surface);
  padding:32px 28px;
  transition:transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
  position:relative;
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(320px 160px at 20% -10%, rgba(250,171,5,0.16), transparent 60%);
  opacity:0;
  transition:opacity .3s ease;
}
.card:hover{ transform:translateY(-6px); border-color:rgba(250,171,5,0.35); background:var(--surface-hover); box-shadow:var(--shadow-card); }
.card:hover::before{ opacity:1; }
.card .icon{
  width:52px; height:52px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, rgba(227,95,33,0.18), rgba(250,171,5,0.10));
  border:1px solid rgba(250,171,5,0.25);
  margin-bottom:22px;
  color:var(--amber);
}
.card h3{ font-size:19px; margin-bottom:12px; }
.card p{ color:var(--text-dim); font-size:14.5px; line-height:1.7; }

/* long-form service block (Solutions page) */
.service-block{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:44px;
  padding:56px 0;
  border-top:1px solid var(--border-soft);
}
.service-block:first-of-type{ border-top:none; padding-top:0; }
.service-block__side{ position:relative; }
.service-block__index{
  font-size:13px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--orange);
  margin-bottom:12px; display:block;
}
.service-block__side h3{ font-size:24px; line-height:1.25; }
.service-block__body p{ color:var(--text-dim); font-size:15.5px; line-height:1.8; margin-bottom:16px; }
.service-block__body p:last-child{ margin-bottom:0; }
.service-block__body a{ color:var(--yellow); border-bottom:1px solid rgba(255,214,71,0.4); }

/* stat strip */
.stat-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.stat-strip-3{ grid-template-columns:repeat(3,1fr); }
.stat{
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:26px 22px;
  background:var(--surface);
  text-align:center;
}
.stat .n{ font-size:32px; font-weight:800; background:var(--grad-brand); -webkit-background-clip:text; background-clip:text; color:transparent; }
.stat .l{ margin-top:8px; font-size:13.5px; color:var(--text-dim); }

/* split section w/ image tile */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.split .tile{
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
  background:linear-gradient(160deg, rgba(227,95,33,0.10), rgba(238,248,247,0.02));
  min-height:340px;
  display:flex; align-items:center; justify-content:center;
  position:relative;
  overflow:hidden;
}
.split .tile .ring{
  width:220px;height:220px;border-radius:50%;
  border:1px solid rgba(250,171,5,0.35);
  display:flex;align-items:center;justify-content:center;
}
.split .tile .ring::before{
  content:"";
  width:150px;height:150px;border-radius:50%;
  border:1px solid rgba(238,248,247,0.18);
}
.split .tile.tile-flow{ padding:38px 40px; align-items:center; }
@media (max-width:560px){ .split .tile.tile-flow{ padding:30px 26px; } }
.split .tile.tile-illustration{ padding:24px; flex-direction:column; gap:16px; }
.illustration-svg{ width:100%; height:auto; max-height:360px; }
.illustration-img{ width:100%; height:auto; max-width:420px; max-height:460px; object-fit:cover; display:block; border-radius:16px; }
.illustration-caption{ text-align:center; }
.illustration-caption strong{ display:block; color:var(--text); font-size:15px; font-weight:700; }
.illustration-caption span{ display:block; color:var(--text-dim); font-size:13px; margin-top:3px; }
@media (max-width:560px){ .split .tile.tile-illustration{ padding:16px; } }
.split h2{ font-size:clamp(26px,3.4vw,36px); margin-bottom:18px; line-height:1.2; }
.split p{ color:var(--text-dim); font-size:15.5px; line-height:1.8; margin-bottom:14px; }

/* CTA band */
.cta-band{
  border-radius:36px;
  border:1px solid var(--border);
  background:linear-gradient(135deg, rgba(227,95,33,0.14), rgba(10,15,13,0.4));
  padding:70px 48px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-band h2{ font-size:clamp(26px,4vw,38px); margin-bottom:16px; }
.cta-band p{ color:var(--text-dim); font-size:16px; margin-bottom:32px; max-width:520px; margin-left:auto; margin-right:auto; }

/* page hero (inner pages) */
.page-hero{ padding:170px 0 70px; text-align:center; }
.page-hero h1{ font-size:clamp(32px,5vw,54px); max-width:820px; margin:0 auto 18px; line-height:1.12; }
.page-hero p{ color:var(--text-dim); font-size:17px; max-width:640px; margin:0 auto; line-height:1.7; }

/* form */
.form-card{
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
  background:var(--surface);
  padding:44px;
  max-width:720px;
  margin:0 auto;
}
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ display:flex; flex-direction:column; gap:8px; margin-bottom:18px; }
.field.full{ grid-column:1 / -1; }
.field label{ font-size:13px; font-weight:600; color:var(--text-dim); }
.field input, .field textarea{
  background:rgba(238,248,247,0.04);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  padding:13px 16px;
  color:var(--text);
  font-family:inherit;
  font-size:14.5px;
  outline:none;
  transition:border-color .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus{ border-color:var(--amber); background:rgba(238,248,247,0.06); }
.form-note{
  font-size:12.5px;
  color:var(--text-dim2);
  line-height:1.7;
  background:rgba(238,248,247,0.03);
  border:1px solid var(--border-soft);
  border-radius:var(--radius-sm);
  padding:16px 18px;
  margin-bottom:26px;
}

/* footer */
footer{ position:relative; padding:80px 0 34px; margin-top:60px; border-top:1px solid var(--border-soft); }
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 0.8fr 0.8fr 1.2fr;
  gap:40px;
  margin-bottom:56px;
}
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:18px; }
.footer-brand img{ height:38px; }
.footer-col h4{ font-size:13px; text-transform:uppercase; letter-spacing:.06em; color:var(--text-dim); margin-bottom:18px; font-weight:700; }
.footer-col p, .footer-col li a{ color:var(--text-dim); font-size:14px; line-height:2; }
.footer-col li a:hover{ color:var(--text); }
.footer-addr p{ line-height:1.8; margin-bottom:6px; }
.newsletter{ display:flex; gap:10px; margin-top:6px; }
.newsletter input{
  flex:1;
  background:rgba(238,248,247,0.04);
  border:1px solid var(--border);
  border-radius:var(--radius-pill);
  padding:12px 18px;
  color:var(--text);
  font-family:inherit;
  font-size:14px;
  outline:none;
}
.newsletter input:focus{ border-color:var(--amber); }
.newsletter button{
  padding:12px 22px;
  border-radius:var(--radius-pill);
  border:none;
  background:var(--grad-brand);
  color:#160a02;
  font-weight:700;
  cursor:pointer;
  white-space:nowrap;
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:28px;
  border-top:1px solid var(--border-soft);
  font-size:13px;
  color:var(--text-dim2);
  flex-wrap:wrap;
  gap:12px;
}

/* -------- meaningful section graphics (replace generic ring) -------- */

/* orbit diagram: central hub + connected node badges (partnerships / ecosystem) */
.orbit-svg{ width:100%; height:100%; max-height:360px; }
.orbit-line{ stroke:url(#orbitLineGrad); stroke-width:1.4; opacity:.55; }
.orbit-node-rect{ fill:rgba(238,248,247,0.05); stroke:rgba(238,248,247,0.16); stroke-width:1; }
.orbit-node-text{ fill:var(--text-dim); font-family:'Montserrat',sans-serif; font-size:13px; font-weight:600; text-anchor:middle; dominant-baseline:middle; }
.orbit-core-text{ fill:#160a02; font-family:'Montserrat',sans-serif; font-size:15px; font-weight:800; text-anchor:middle; dominant-baseline:middle; }

/* partner orbit: biz-IT core + surrounding technology-partner marks */
.partner-tile{ padding:26px; min-height:420px; }
.partner-orbit{
  position:relative;
  width:100%;
  max-width:480px;
  aspect-ratio:1 / 0.98;
  margin:0 auto;
}
.partner-orbit__lines{ position:absolute; inset:0; width:100%; height:100%; }
.partner-orbit__lines line{ stroke:rgba(238,248,247,0.14); stroke-width:0.6; vector-effect:non-scaling-stroke; }
.partner-orbit__ring{ position:absolute; inset:17%; border:1px solid rgba(238,248,247,0.10); border-radius:50%; }
.partner-orbit__ring--outer{ inset:0; border-color:rgba(238,248,247,0.05); }
.partner-orbit__core{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:24%; aspect-ratio:1; border-radius:50%;
  background:radial-gradient(circle at 35% 30%, rgba(250,171,5,0.3), rgba(227,95,33,0.14) 60%, transparent 82%);
  border:1px solid rgba(250,171,5,0.35);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 44px -6px var(--glow-orange);
}
.partner-orbit__core img{ width:54%; }
.partner-node{
  position:absolute;
  transform:translate(-50%,-50%);
  width:132px;
  height:70px;
  border-radius:16px;
  background:rgba(238,248,247,0.06);
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  padding:10px 14px;
  transition:background .25s ease, border-color .25s ease, transform .25s ease;
}
.partner-node:hover{ background:rgba(238,248,247,0.11); border-color:rgba(250,171,5,0.45); transform:translate(-50%,-50%) scale(1.06); }
.partner-node img{ max-width:100%; max-height:100%; width:auto; height:auto; opacity:.92; }
.partner-node img.logo-ibm{ max-height:30px; }
.partner-node img.logo-aws{ max-height:32px; }
@media (max-width:720px){
  .partner-tile{ min-height:0; }
  .partner-orbit{ max-width:340px; }
  .partner-node{ width:96px; height:52px; padding:7px 10px; }
  .partner-node img.logo-ibm{ max-height:22px; }
  .partner-node img.logo-aws{ max-height:24px; }
}
@media (max-width:400px){
  .partner-node{ width:78px; height:44px; padding:5px 8px; }
}

/* integration diagram: concentric arcs + value nodes (Solutions ecosystem) */
.tile-integration{ padding:18px; }
.integration-svg{ width:100%; height:100%; max-height:360px; }
.node-label{
  fill:#EEF8F7;
  font-family:'Montserrat',sans-serif;
  font-size:9.5px;
  font-weight:700;
  letter-spacing:-0.2px;
  text-anchor:middle;
}
.node-label--dark{ fill:#160a02; }

/* flow / timeline component: Data pipeline & career timeline */
.flow{ width:100%; padding:8px 6px; }
.flow__step{
  position:relative;
  padding-left:30px;
  padding-bottom:26px;
  border-left:2px solid rgba(238,248,247,0.14);
}
.flow__step:last-child{ border-left:2px solid transparent; padding-bottom:0; }
.flow__dot{
  position:absolute; left:-7px; top:1px;
  width:12px; height:12px; border-radius:50%;
  background:rgba(238,248,247,0.28);
  border:2px solid var(--bg-1);
}
.flow__step.is-final .flow__dot{
  width:16px; height:16px; left:-9px;
  background:var(--grad-brand);
  box-shadow:0 0 14px var(--glow-orange);
}
.flow__title{ font-weight:700; font-size:15px; margin-bottom:4px; }
.flow__sub{ font-size:12.5px; color:var(--text-dim); margin-bottom:10px; line-height:1.5; }
.flow__step.is-final .flow__title{ color:var(--yellow); }
.flow__chips{ display:flex; flex-wrap:wrap; gap:7px; }
.chip{
  font-size:11px;
  padding:4px 11px;
  border-radius:999px;
  border:1px solid var(--border);
  color:var(--text-dim);
  background:rgba(238,248,247,0.03);
  white-space:nowrap;
}

.inline-logo{ display:inline-flex; align-items:center; height:1.9em; margin:0 0.16em; vertical-align:-0.62em; }
.inline-logo img{ height:100%; width:auto; display:block; }

/* approach / cooperation models panel */
.approach-panel{
  position:relative;
  border-radius:40px;
  border:1px solid var(--border);
  background:linear-gradient(155deg, rgba(227,95,33,0.16), rgba(10,15,13,0.6) 55%);
  padding:60px 52px;
  overflow:hidden;
}
.approach-panel__glow{
  position:absolute;
  width:520px; height:520px;
  top:-220px; right:-160px;
  background:radial-gradient(circle, rgba(250,171,5,0.25), transparent 70%);
  filter:blur(60px);
  pointer-events:none;
}
.approach-grid{
  position:relative;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:48px;
  margin-top:44px;
}
.approach-col h3{ font-size:20px; margin-bottom:14px; }
.approach-col p{ color:var(--text-dim); font-size:14.5px; line-height:1.75; margin-bottom:24px; min-height:0; }
.approach-list{ display:flex; flex-direction:column; }
.approach-list li{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 2px;
  border-bottom:1px solid var(--border-soft);
  font-size:14.5px;
  color:var(--text);
}
.approach-list li:last-child{ border-bottom:none; }
.approach-list li svg{ color:var(--amber); flex:0 0 auto; }
.approach-note{
  position:relative;
  margin-top:46px;
  font-size:15px;
  color:var(--text-dim);
}
.approach-note strong{
  color:var(--text);
  text-decoration:underline;
  text-decoration-color:var(--amber);
  text-underline-offset:4px;
}
@media (max-width:980px){
  .approach-grid{ grid-template-columns:1fr; gap:36px; }
  .approach-panel{ padding:44px 30px; }
}

/* references marquee */
.marquee-band{
  background:#000;
  border-top:1px solid var(--border-soft);
  border-bottom:1px solid var(--border-soft);
  padding:48px 0 56px;
  overflow:hidden;
  position:relative;
}
.marquee-head{ text-align:center; margin-bottom:32px; }
.marquee-viewport{
  overflow:hidden;
  width:100%;
  mask-image:linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image:linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track{
  display:flex;
  align-items:center;
  gap:64px;
  width:max-content;
  animation:marquee-pass 42s linear infinite;
  animation-play-state:running;
  animation-fill-mode:both;
  will-change:transform;
}
.marquee-track img{
  height:50px;
  width:auto;
  max-width:200px;
  object-fit:contain;
  opacity:.6;
  transition:opacity .25s ease;
  flex:0 0 auto;
}
.marquee-track img:hover{ opacity:1; }
.marquee-track img.logo-arly{ height:34px; }
@keyframes marquee-pass{
  0%{ transform:translateX(100vw); }
  100%{ transform:translateX(-100%); }
}
@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation:none; }
}
@media (max-width:720px){
  .marquee-track img{ height:34px; }
  .marquee-track{ gap:40px; }
}

/* misc */
.mt-lg{ margin-top:64px; }
.center{ text-align:center; }

/* reveal-on-scroll */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform:translateY(0); }

/* mobile nav burger + panel */
.nav__burger{
  width:38px; height:38px;
  border-radius:50%;
  border:1px solid var(--border);
  background:var(--surface);
  align-items:center; justify-content:center;
  cursor:pointer;
  flex-direction:column;
  gap:4px;
}
.nav__burger span{ width:16px; height:2px; background:var(--text); display:block; border-radius:2px; }
@media (max-width:720px){
  .nav__burger{ display:flex; }
  .nav__links{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:64px; left:0; right:0;
    background:rgba(10,15,13,0.96);
    border:1px solid var(--border);
    border-radius:20px;
    padding:10px;
    gap:2px;
    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:max-height .3s ease, opacity .3s ease;
  }
  .nav__links.open{ max-height:320px; opacity:1; padding:12px; }
  .nav__links a{ padding:12px 16px; }
}

/* form success note */
.form-success{
  display:none;
  margin-top:16px;
  padding:14px 18px;
  border-radius:var(--radius-sm);
  background:rgba(250,171,5,0.12);
  border:1px solid rgba(250,171,5,0.3);
  color:var(--yellow);
  font-size:14px;
  font-weight:600;
}

/* ------------------------------ responsive ------------------------------ */
@media (max-width: 980px){
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .split{ grid-template-columns:1fr; }
  .service-block{ grid-template-columns:1fr; }
  .hero-panel__grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 720px){
  .grid-3, .grid-2{ grid-template-columns:1fr; }
  .form-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .stat-strip{ grid-template-columns:repeat(2,1fr); }
  .hero{ padding:150px 0 80px; }
  .page-hero{ padding:150px 0 60px; }
  .hero-panel__grid{ grid-template-columns:1fr; }
}
@media (max-width:600px){
  .hero-nowrap{ white-space:normal; }
}
