
:root{
  --bg:#050915;
  --bg-2:#07111f;
  --bg-3:#0c1728;
  --ink:#f4f7ff;
  --muted:#b6c4dd;
  --muted-2:#8fa3c5;
  --line:rgba(191,214,255,.14);
  --line-strong:rgba(191,214,255,.26);
  --panel:rgba(11,20,34,.72);
  --panel-strong:rgba(14,26,44,.88);
  --brand:#4fd7ff;
  --brand-2:#8b5cf6;
  --brand-3:#13d6a6;
  --gold:#ffd18a;
  --shadow:0 24px 72px rgba(0,0,0,.36);
  --radius-2xl:36px;
  --radius-xl:28px;
  --radius-lg:22px;
  --radius-md:18px;
  --shell:min(1880px, calc(100vw - 16px));
  --content:min(1720px, calc(100vw - 20px));
  --narrow:min(1200px, calc(100vw - 20px));
  --header-h:84px;
  --ease:320ms cubic-bezier(.22,.8,.2,1);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 12% 0%, rgba(79,215,255,.16), transparent 28rem),
    radial-gradient(circle at 88% 4%, rgba(139,92,246,.18), transparent 30rem),
    radial-gradient(circle at 60% 96%, rgba(19,214,166,.10), transparent 24rem),
    linear-gradient(180deg, #040814 0%, #07101d 30%, #081120 100%);
  color:var(--ink);
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height:1.68;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
  overflow-wrap:break-word;
}
html[lang="ar"] body,
html[lang="fa"] body{
  font-family:"Noto Sans Arabic","Geeza Pro","Tahoma","Segoe UI",Arial,sans-serif;
}
html[lang="zh-Hans"] body{
  font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",system-ui,sans-serif;
}
html[lang="ja"] body{
  font-family:"Hiragino Sans","Yu Gothic","Meiryo",system-ui,sans-serif;
}
body.menu-open{overflow:hidden}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button,input,textarea,select{font:inherit}
button{cursor:pointer}
::selection{background:rgba(79,215,255,.28);color:#fff}
.skip-link{position:absolute;left:16px;top:-44px;padding:10px 14px;border-radius:999px;background:#fff;color:#09101b;z-index:100;transition:top var(--ease)}
.skip-link:focus{top:16px}
.site-bg,.site-grid,.site-noise{position:fixed;inset:0;pointer-events:none}
.site-bg{
  z-index:-3;
  background:
    radial-gradient(circle at 15% 18%, rgba(79,215,255,.10), transparent 20rem),
    radial-gradient(circle at 82% 12%, rgba(139,92,246,.10), transparent 24rem),
    radial-gradient(circle at 50% 100%, rgba(19,214,166,.07), transparent 26rem);
}
.site-grid{
  z-index:-2;
  opacity:.18;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size:120px 120px;
  mask-image:linear-gradient(to bottom, transparent, rgba(0,0,0,.82) 12%, rgba(0,0,0,.95) 48%, rgba(0,0,0,.5) 100%);
}
.site-noise{
  z-index:-1;
  opacity:.08;
  background-image:radial-gradient(rgba(255,255,255,.3) .7px, transparent .7px);
  background-size:18px 18px;
  mask-image:linear-gradient(to bottom, transparent, rgba(0,0,0,.9), transparent);
}
.shell{width:var(--shell);margin-inline:auto}
.content-shell{width:var(--content);margin-inline:auto}
.narrow-shell{width:var(--narrow);margin-inline:auto}
.page{padding-block:26px 44px}
.page-section{
  padding-block:clamp(54px, 7vw, 96px);
  content-visibility:auto;
  contain-intrinsic-size:860px;
}
.page-section--tight{padding-block:34px 68px}
.section-shell{width:var(--shell);margin-inline:auto}
.band{
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:var(--radius-2xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05) 28%, rgba(255,255,255,.02) 100%);
  box-shadow:var(--shadow), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter:blur(18px);
}
.band::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 0% 0%, rgba(79,215,255,.16), transparent 26rem),
    radial-gradient(circle at 100% 0%, rgba(139,92,246,.14), transparent 30rem),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 32%);
  pointer-events:none;
}
.glow-panel{
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04) 28%, rgba(255,255,255,.02) 100%);
  box-shadow:var(--shadow), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter:blur(18px);
}
.glow-panel::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  background:radial-gradient(520px circle at var(--mx,50%) var(--my,50%), rgba(79,215,255,.18), transparent 44%);
  opacity:0;
  transition:opacity var(--ease);
  pointer-events:none;
}
.glow-panel:hover::after{opacity:1}
.site-header{
  position:sticky;top:0;z-index:80;
  backdrop-filter:blur(18px);
  background:linear-gradient(180deg, rgba(5,9,21,.92), rgba(5,9,21,.58));
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header-bar{
  width:var(--shell);
  min-height:var(--header-h);
  margin-inline:auto;
  display:flex;align-items:center;justify-content:space-between;gap:18px;
}
.brand{display:flex;align-items:center;gap:14px;min-width:0;max-width:420px}
.brand-mark{
  width:54px;height:54px;flex:0 0 54px;
  display:grid;place-items:center;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
}
.brand-mark img{width:100%;height:100%}
.brand-text{display:flex;flex-direction:column;min-width:0}
.brand-text strong{font-size:1rem;letter-spacing:.14em;text-transform:uppercase}
.brand-text span{font-size:.82rem;color:var(--muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.main-nav{display:flex;align-items:center;gap:26px}
.main-nav a,.lang-inline a,.mobile-panel a{
  color:var(--muted);
  transition:color var(--ease), transform var(--ease);
}
.main-nav a{
  position:relative;padding:8px 0
}
.main-nav a::after,.lang-inline a::after{
  content:"";position:absolute;left:0;right:0;bottom:-2px;height:2px;border-radius:999px;
  background:linear-gradient(90deg,var(--brand),var(--brand-2));transform:scaleX(0);transform-origin:center;transition:transform var(--ease)
}
.main-nav a:hover,.main-nav a[aria-current="page"],.lang-inline a[aria-current="true"]{color:var(--ink)}
.main-nav a:hover::after,.main-nav a[aria-current="page"]::after,.lang-inline a[aria-current="true"]::after{transform:scaleX(1)}
.header-tools{display:flex;align-items:center;gap:14px}
.lang-inline{
  display:flex;align-items:center;gap:12px;
  padding:10px 14px;border-radius:999px;
  border:1px solid var(--line);background:rgba(255,255,255,.04);
}
.lang-inline a{position:relative;padding:4px 0;font-size:.9rem}
.button{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  min-height:50px;padding-inline:20px;
  border-radius:999px;border:1px solid transparent;
  font-weight:600;transition:transform var(--ease), background var(--ease), border-color var(--ease), color var(--ease), box-shadow var(--ease);
}
.button:hover{transform:translateY(-2px)}
.button-primary{
  color:#08111d;
  background:linear-gradient(135deg, #f6fbff 0%, #c7f4ff 24%, var(--brand) 66%, var(--brand-2) 120%);
  box-shadow:0 18px 46px rgba(79,215,255,.22);
}
.button-secondary{
  color:var(--ink);
  border-color:var(--line);
  background:rgba(255,255,255,.04);
}
.button-secondary:hover{background:rgba(255,255,255,.08)}
.mobile-toggle{
  display:none;width:48px;height:48px;padding:0;border-radius:16px;
  border:1px solid var(--line);background:rgba(255,255,255,.04);color:var(--ink);position:relative
}
.mobile-toggle span,.mobile-toggle span::before,.mobile-toggle span::after{
  content:"";position:absolute;left:13px;right:13px;height:2px;top:23px;border-radius:2px;background:currentColor;
  transition:transform var(--ease), opacity var(--ease), background var(--ease)
}
.mobile-toggle span::before{transform:translateY(-7px)}
.mobile-toggle span::after{transform:translateY(7px)}
.mobile-toggle[aria-expanded="true"] span{background:transparent}
.mobile-toggle[aria-expanded="true"] span::before{transform:rotate(45deg)}
.mobile-toggle[aria-expanded="true"] span::after{transform:rotate(-45deg)}
.mobile-panel{
  display:none;
  border-top:1px solid rgba(255,255,255,.06);
  background:rgba(4,9,20,.96);
}
.mobile-panel__inner{
  width:var(--shell);margin-inline:auto;padding:18px 0 24px;
  display:grid;gap:8px
}
.mobile-panel__inner a{
  padding:12px 0;font-size:1rem
}
.hero{
  width:var(--shell);
  margin-inline:auto;
  padding-top:18px;
}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.14fr) minmax(340px,.86fr);
  gap:24px;
}
.hero-copy,.hero-side{
  padding:clamp(26px,4vw,56px);
  min-height:720px;
}
.hero-copy{
  display:flex;flex-direction:column;justify-content:flex-end;
}
.hero-side{display:grid;grid-template-rows:auto auto 1fr auto;gap:18px}
.eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  margin:0 0 18px;
  font-size:.84rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#d9e6ff;
}
.eyebrow::before{
  content:"";width:18px;height:2px;border-radius:999px;
  background:linear-gradient(90deg,var(--brand),var(--brand-2));
}
.display{
  margin:0 0 18px;
  font-size:clamp(3rem, 6vw, 6.4rem);
  line-height:.94;
  letter-spacing:-.055em;
  max-width:11.2ch;
}
.lead{
  margin:0;
  max-width:62ch;
  color:var(--muted);
  font-size:1.08rem;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:28px}
.hero-pills{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px}
.pill{
  display:inline-flex;align-items:center;gap:10px;
  padding:12px 16px;border-radius:999px;border:1px solid var(--line);background:rgba(255,255,255,.04);
  color:#dbe8ff;font-size:.92rem
}
.pill::before{
  content:"";width:8px;height:8px;border-radius:50%;
  background:linear-gradient(135deg,var(--brand),var(--brand-2))
}
.side-label{display:flex;justify-content:space-between;gap:12px;align-items:center;color:var(--muted)}
.side-label strong{font-size:1rem;color:var(--ink)}
.side-points{display:grid;gap:12px;margin:0;padding:0;list-style:none}
.side-points li{
  padding:15px 16px;border-radius:18px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.05);
  color:#deebff
}
.side-points li::before{
  content:"";display:inline-block;width:10px;height:10px;border-radius:50%;margin-inline-end:10px;background:linear-gradient(135deg,var(--brand),var(--brand-3))
}
.visual-wrap{
  position:relative;
  min-height:320px;
}
.visual-wrap img{
  width:100%;height:100%;object-fit:cover;border-radius:24px;border:1px solid rgba(255,255,255,.08)
}
.float-chip{
  position:absolute;padding:14px 16px;border-radius:18px;background:rgba(5,11,22,.82);border:1px solid rgba(255,255,255,.08);box-shadow:var(--shadow)
}
.float-chip strong{display:block;margin-bottom:6px}
.float-a{top:18px;left:18px}
.float-b{right:18px;bottom:18px}
.metrics{
  width:var(--shell);
  margin:18px auto 0;
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px
}
.metric-card{padding:22px 20px}
.metric-card strong{display:block;font-size:clamp(1.7rem,3vw,2.3rem);line-height:1;margin-bottom:10px}
.metric-card span{color:var(--muted)}
.section-head{
  display:flex;justify-content:space-between;gap:28px;align-items:end;margin-bottom:28px
}
.section-head__copy{max-width:64ch}
.section-title{
  margin:0 0 12px;
  font-size:clamp(2rem,3vw,3.4rem);
  line-height:1.03;
  letter-spacing:-.04em;
}
.section-copy{
  margin:0;
  color:var(--muted);
  max-width:58ch;
}
.story-grid,.split-grid,.contact-grid,.service-hero-grid{
  display:grid;gap:24px
}
.story-grid{grid-template-columns:minmax(0,1.08fr) minmax(340px,.92fr)}
.split-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.contact-grid{grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr)}
.cards-3,.cards-4,.services-grid,.group-grid,.related-grid,.timeline-grid,.ability-grid,.trust-grid{
  display:grid;gap:18px
}
.cards-3,.ability-grid,.trust-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.cards-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.services-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.group-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.related-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.timeline-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.card{
  padding:24px;
  min-height:100%;
}
.card h3,.timeline-step h3,.service-hero-copy h1,.service-card h3,.contact-box h3,.footer-card strong{
  margin:0 0 10px;
}
.card p,.service-card p,.contact-box p,.timeline-step p{margin:0;color:var(--muted)}
.card .small{color:var(--muted-2)}
.service-card{
  display:flex;flex-direction:column;gap:14px;
  padding:24px;
  min-height:100%;
}
.service-top{display:flex;justify-content:space-between;gap:14px;align-items:flex-start}
.service-icon{
  width:58px;height:58px;flex:0 0 58px;display:grid;place-items:center;border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.08)
}
.service-icon svg{width:28px;height:28px}
.small-tag{
  display:inline-flex;align-items:center;gap:8px;padding:9px 12px;border-radius:999px;border:1px solid var(--line);background:rgba(255,255,255,.04);color:var(--muted);font-size:.82rem
}
.card-link{
  display:inline-flex;align-items:center;gap:8px;margin-top:auto;font-weight:600;color:#dff8ff;
  transition:gap var(--ease)
}
.card-link:hover{gap:12px}
.media-panel{
  padding:20px;
  display:grid;gap:18px;align-content:start
}
.media-panel img{
  width:100%;height:auto;border-radius:26px;border:1px solid rgba(255,255,255,.08)
}
.media-panel h3{margin:0 0 10px}
.media-panel p{margin:0;color:var(--muted)}
.section-pad{padding:28px}
.feature-flow{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px
}
.flow-step{
  padding:24px;
}
.flow-step strong{
  display:inline-flex;align-items:center;justify-content:center;
  width:42px;height:42px;border-radius:14px;border:1px solid var(--line);background:rgba(255,255,255,.04);margin-bottom:12px
}
.flow-step h3{margin:0 0 10px;font-size:1.1rem}
.flow-step p{margin:0;color:var(--muted)}
.service-hero{
  width:var(--shell);
  margin-inline:auto;
  padding-top:18px;
}
.service-hero-grid{
  grid-template-columns:minmax(0,1.04fr) minmax(320px,.96fr)
}
.service-hero-copy,.service-hero-side{
  padding:clamp(24px,3.6vw,42px)
}
.service-hero-copy h1{
  font-size:clamp(2.4rem,5vw,4.9rem);
  line-height:.97;
  letter-spacing:-.05em;
}
.service-hero-copy p{margin:0 0 22px;color:var(--muted);max-width:62ch}
.breadcrumbs{
  display:flex;flex-wrap:wrap;gap:8px;
  margin:0 0 14px;
  font-size:.92rem;color:var(--muted)
}
.breadcrumbs a{color:#dff3ff}
.bullets{display:grid;gap:12px;margin:0;padding:0;list-style:none}
.bullets li{
  padding:15px 16px;border-radius:18px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.04)
}
.bullets li::before{
  content:"";display:inline-block;width:9px;height:9px;border-radius:50%;margin-inline-end:10px;background:linear-gradient(135deg,var(--brand),var(--brand-2))
}
.contact-box{padding:24px}
.contact-list{display:grid;gap:16px}
.form-grid{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px
}
.form-grid .full{grid-column:1/-1}
label{display:grid;gap:8px;color:#dbe7ff}
input,textarea,select{
  width:100%;padding:14px 16px;border-radius:16px;border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);color:var(--ink)
}
input::placeholder,textarea::placeholder{color:#90a2c0}
textarea{min-height:160px;resize:vertical}
.form-note{margin-top:14px;color:var(--muted);font-size:.94rem}
.cta-band{
  padding:32px;
  display:grid;grid-template-columns:minmax(0,1.2fr) auto;gap:18px;align-items:center
}
.cta-band h2{margin:0 0 10px;font-size:clamp(2rem,3vw,3.2rem);line-height:1.05;letter-spacing:-.04em}
.cta-band p{margin:0;color:var(--muted);max-width:54ch}
.footer{
  width:var(--shell);
  margin:0 auto 16px;
  padding:0 0 18px;
}
.footer-grid{
  display:grid;grid-template-columns:minmax(0,1.2fr) repeat(2,minmax(0,.6fr));gap:18px;
  padding:28px;border-top:1px solid rgba(255,255,255,.08)
}
.footer-card p,.footer-card a{color:var(--muted)}
.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s ease, transform .7s ease
}
.reveal.is-visible{opacity:1;transform:none}
.selector-wrap{min-height:100vh;display:grid;place-items:center;padding:26px 0}
.selector-shell{
  width:min(1860px, calc(100vw - 16px));
  padding:28px;
}
.selector-head{max-width:70ch;margin-bottom:22px}
.selector-head h1{margin:0 0 14px;font-size:clamp(2.6rem,5vw,4.8rem);line-height:1;letter-spacing:-.05em}
.selector-head p{margin:0;color:var(--muted)}
.lang-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.lang-card{padding:24px;display:flex;flex-direction:column;gap:14px;min-height:220px}
.lang-card strong{font-size:1.35rem}
.lang-card span{color:var(--muted)}
.lang-card .button{width:max-content}
html[dir="rtl"] .brand,
html[dir="rtl"] .header-tools,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .hero-pills,
html[dir="rtl"] .main-nav,
html[dir="rtl"] .breadcrumbs,
html[dir="rtl"] .side-label,
html[dir="rtl"] .section-head{
  flex-direction:row-reverse;
}
html[dir="rtl"] .brand-text{text-align:right}
html[dir="rtl"] .float-a{left:auto;right:18px}
html[dir="rtl"] .float-b{right:auto;left:18px}
@media (max-width:1240px){
  .hero-grid,.story-grid,.split-grid,.contact-grid,.service-hero-grid{grid-template-columns:1fr}
  .hero-copy,.hero-side{min-height:unset}
  .cards-3,.ability-grid,.trust-grid,.related-grid,.timeline-grid,.services-grid,.group-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .metrics,.feature-flow{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:980px){
  :root{
    --shell:min(calc(100vw - 16px), 100vw - 16px);
    --content:min(calc(100vw - 20px), 100vw - 20px);
    --narrow:min(calc(100vw - 20px), 100vw - 20px);
    --header-h:76px;
  }
  .main-nav,.lang-inline,.header-tools>.button{display:none}
  .mobile-toggle,.mobile-panel{display:block}
  .header-bar{gap:12px}
  .brand{max-width:none}
  .brand-text span{max-width:22ch}
  .section-head{display:block}
  .section-copy{margin-top:12px}
  .hero-copy,.hero-side,.service-hero-copy,.service-hero-side,.card,.service-card,.contact-box,.cta-band,.selector-shell,.lang-card,.band.section-pad,.media-panel{padding:22px}
  .cards-3,.ability-grid,.trust-grid,.services-grid,.group-grid,.related-grid,.timeline-grid,.lang-grid,.footer-grid{grid-template-columns:1fr}
  .metrics,.feature-flow{grid-template-columns:1fr 1fr}
  .cta-band{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
}
@media (max-width:640px){
  .brand-text span{display:none}

  .display{font-size:clamp(2.35rem, 10.5vw, 3.5rem);max-width:none}
  .service-hero-copy h1{font-size:clamp(2rem, 9vw, 3rem)}
  .metrics,.feature-flow{grid-template-columns:1fr}
  .hero-copy,.hero-side,.service-hero-copy,.service-hero-side,.card,.service-card,.contact-box,.cta-band,.selector-shell,.lang-card,.media-panel{padding:20px}
  .visual-wrap{min-height:240px}
  .float-chip{position:static;margin-top:12px}
  .brand-mark{width:48px;height:48px;flex-basis:48px}
  .brand-text strong{font-size:.94rem}
  .brand-text span{font-size:.74rem}
  .page{padding-block:18px 28px}
  .page-section{padding-block:42px 54px}
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .reveal{opacity:1;transform:none;transition:none}
  *{animation:none!important;transition:none!important}
}


/* Locale-specific artwork and responsive polish */
.visual-wrap img,
.media-panel img,
.service-hero-side img{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  box-shadow:0 18px 48px rgba(0,0,0,.28);
}
html[lang="ru"] body{
  font-family:"Segoe UI", Inter, Arial, sans-serif;
}
html[lang="ru"] .display{
  font-size:clamp(2.7rem,5.1vw,5.4rem);
  max-width:12.5ch;
  letter-spacing:-.04em;
}
html[lang="ru"] .service-hero-copy h1{
  font-size:clamp(2.1rem,4.1vw,4.05rem);
  letter-spacing:-.03em;
}
html[lang="ru"] .section-title,
html[lang="ru"] .cta-band h2{
  font-size:clamp(1.85rem,2.7vw,2.95rem);
}
html[lang="ru"] .lang-inline a{font-size:.84rem}
html[lang="zh-Hans"] .display,
html[lang="ja"] .display{letter-spacing:-.025em}
html[lang="ar"] .display,
html[lang="fa"] .display{line-height:1.06;letter-spacing:0}
html[dir="rtl"] .hero-copy,
html[dir="rtl"] .service-hero-copy,
html[dir="rtl"] .media-panel,
html[dir="rtl"] .card,
html[dir="rtl"] .service-card,
html[dir="rtl"] .contact-box,
html[dir="rtl"] .footer-card{text-align:right}
html[dir="rtl"] .section-copy,
html[dir="rtl"] .lead,
html[dir="rtl"] .service-hero-copy p,
html[dir="rtl"] .card p,
html[dir="rtl"] .service-card p,
html[dir="rtl"] .contact-box p,
html[dir="rtl"] .footer-card p{margin-inline-start:auto}
@media (max-width:980px){
  :root{--shell:calc(100vw - 24px);--content:calc(100vw - 24px);--narrow:calc(100vw - 24px)}
  .hero-grid,.service-hero-grid,.story-grid,.split-grid,.contact-grid{gap:18px}
  .hero-copy,.hero-side,.service-hero-copy,.service-hero-side,.card,.service-card,.contact-box,.cta-band,.selector-shell,.lang-card,.band.section-pad,.media-panel{padding:24px}
  .hero-actions{display:grid;grid-template-columns:1fr;gap:12px}
  .hero-actions .button,.mobile-panel__inner .button{width:100%;justify-content:center}
  .hero-pills{display:grid;grid-template-columns:1fr;gap:10px}
  .pill{width:100%;border-radius:20px;align-items:flex-start}
  .section-head{margin-bottom:22px}
  .mobile-panel__inner{padding:18px 4px 24px}
  .mobile-panel__inner a{padding:12px 0}
  .footer-grid{padding:24px}
}
@media (max-width:640px){
  :root{--shell:calc(100vw - 16px);--content:calc(100vw - 16px);--narrow:calc(100vw - 16px)}
  .header-bar{min-height:72px}
  .page{padding-block:14px 24px}
  .page-section{padding-block:38px 48px}
  .hero-grid,.service-hero-grid,.story-grid,.split-grid,.contact-grid{gap:14px}
  .hero-copy,.hero-side,.service-hero-copy,.service-hero-side,.card,.service-card,.contact-box,.cta-band,.selector-shell,.lang-card,.media-panel,.band.section-pad{padding:18px}
  .section-title{font-size:clamp(1.7rem,8vw,2.35rem)}
  .display{font-size:clamp(2.15rem,10vw,3.2rem)}
  .lead,.section-copy,.service-hero-copy p,.card p,.service-card p{font-size:.99rem}
  .visual-wrap{min-height:220px}
  .service-top{flex-direction:column;align-items:flex-start}
  .float-chip{position:static;margin-top:12px;width:100%}
  .footer-grid{padding:20px}
  html[lang="ru"] .display{font-size:clamp(1.98rem,9vw,2.9rem)}
  html[lang="ru"] .service-hero-copy h1{font-size:clamp(1.85rem,8.6vw,2.75rem)}
}


/* --- Final polish: logo integration, editable text-overlays, mobile fixes, premium footer --- */
:root{
  --brand:#d7b56d;
  --brand-2:#6c98e9;
  --brand-3:#88c4ff;
  --gold:#e3c57d;
}
[hidden]{display:none !important}
body{
  background:
    radial-gradient(circle at 12% 0%, rgba(215,181,109,.14), transparent 28rem),
    radial-gradient(circle at 88% 4%, rgba(108,152,233,.16), transparent 30rem),
    radial-gradient(circle at 60% 96%, rgba(136,196,255,.08), transparent 24rem),
    linear-gradient(180deg, #040814 0%, #08101b 30%, #091323 100%);
}
.site-header{
  background:linear-gradient(180deg, rgba(4,8,18,.94), rgba(4,8,18,.68));
}
.brand{
  gap:16px;
}
.brand-mark{
  width:clamp(86px, 9vw, 112px);
  height:auto;
  flex:0 0 clamp(86px, 9vw, 112px);
  border:none;
  background:transparent;
  border-radius:0;
  box-shadow:none;
  padding:0;
}
.brand-mark img{
  width:100%;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 10px 24px rgba(0,0,0,.28));
}
.brand-text strong{
  letter-spacing:.18em;
}
.brand-text span{
  color:#b5c5e0;
}
.button-primary{
  background:linear-gradient(135deg, #fff7db 0%, #f3d893 20%, #d7b56d 48%, #749ce9 100%);
}
.band::before{
  background:
    radial-gradient(circle at 0% 0%, rgba(215,181,109,.18), transparent 26rem),
    radial-gradient(circle at 100% 0%, rgba(108,152,233,.15), transparent 30rem),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 32%);
}
.glow-panel::after{
  background:radial-gradient(520px circle at var(--mx,50%) var(--my,50%), rgba(215,181,109,.13), transparent 44%);
}
.mobile-panel{
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(4,9,20,.98);
}
.mobile-panel__inner{
  gap:0;
}
.mobile-panel__inner a{
  border-bottom:1px solid rgba(255,255,255,.06);
}
.mobile-panel__inner a:last-child{
  border-bottom:none;
}
.hero-copy,.hero-side,.service-hero-copy,.service-hero-side{
  min-height:0;
}
.visual-wrap,
.hero-visual{
  position:relative;
  min-height:320px;
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 48px rgba(0,0,0,.28);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}
.visual-wrap img,
.hero-visual img,
.media-panel img,
.service-hero-side img{
  width:100%;
  height:100%;
  object-fit:cover;
  border:none;
  border-radius:24px;
  box-shadow:none;
}
.hero-visual img{min-height:360px}
.visual-note{
  position:absolute;
  inset:auto 18px 18px 18px;
  max-width:min(66%, 420px);
  padding:16px 18px 18px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(5,10,20,.92), rgba(7,14,24,.78));
  box-shadow:0 16px 44px rgba(0,0,0,.32);
  backdrop-filter:blur(14px);
}
.visual-note--compact{
  max-width:min(72%, 430px);
}
.visual-note__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:8px;
  font-size:.76rem;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:#d7e5ff;
}
.visual-note__eyebrow::before{
  content:"";
  width:14px;height:2px;border-radius:999px;
  background:linear-gradient(90deg,var(--brand),var(--brand-2));
}
.visual-note strong{
  display:block;
  font-size:1.04rem;
  line-height:1.24;
  margin-bottom:8px;
}
.visual-note p{
  margin:0;
  color:var(--muted);
  font-size:.95rem;
  line-height:1.55;
}
.float-chip{
  background:linear-gradient(180deg, rgba(5,10,20,.92), rgba(7,14,24,.78));
}
.section-head,
.story-grid,
.split-grid,
.contact-grid,
.service-hero-grid,
.hero-grid{
  gap:28px;
}
.footer{
  width:var(--shell);
  margin:0 auto 18px;
  padding:12px 0 22px;
}
.footer-shell{
  position:relative;
  overflow:hidden;
  border-radius:32px;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 0% 0%, rgba(215,181,109,.12), transparent 20rem),
    radial-gradient(circle at 100% 100%, rgba(108,152,233,.12), transparent 22rem),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow:var(--shadow), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter:blur(18px);
}
.footer-grid{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) repeat(3,minmax(0,.66fr));
  gap:24px;
  padding:30px;
}
.footer-card{min-width:0}
.footer-card strong{display:block;margin-bottom:12px}
.footer-card p{margin:0 0 10px;color:var(--muted)}
.footer-card p:last-child{margin-bottom:0}
.footer-card--brand strong{font-size:1.08rem}
.footer-logo{
  width:min(180px, 100%);
  height:auto;
  margin-bottom:16px;
  filter:drop-shadow(0 14px 34px rgba(0,0,0,.24));
}
.footer-mini-label{
  display:inline-block;
  margin-top:18px;
  margin-bottom:12px;
  color:#d7e3ff;
  font-size:.82rem;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.social-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.social-link{
  width:44px;height:44px;
  display:grid;place-items:center;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  color:#f7fbff;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  transition:transform var(--ease), border-color var(--ease), background var(--ease), color var(--ease);
}
.social-link svg{width:18px;height:18px}
.social-link:hover{
  transform:translateY(-2px);
  border-color:rgba(215,181,109,.42);
  background:linear-gradient(180deg, rgba(215,181,109,.16), rgba(108,152,233,.14));
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:0 30px 24px;
  color:#9eb1cf;
  font-size:.92rem;
}
.selector-shell::before{
  content:"";
  position:absolute;
  inset:20px auto auto 24px;
  width:110px;
  height:60px;
  background:url('../img/logo-symbol.png') center/contain no-repeat;
  opacity:.96;
  pointer-events:none;
}
.selector-shell{position:relative;padding-top:88px}
html[dir="rtl"] .visual-note{
  inset:auto 18px 18px auto;
  text-align:right;
}
html[lang="ru"] .brand-text strong{
  font-size:.95rem;
  letter-spacing:.12em;
}
html[lang="ru"] .brand-text span{
  font-size:.76rem;
}
html[lang="ru"] .display{
  font-size:clamp(2.45rem,4.5vw,4.8rem);
  max-width:12.8ch;
}
html[lang="ru"] .service-hero-copy h1{
  font-size:clamp(1.95rem,3.6vw,3.55rem);
}
html[lang="ru"] .section-title,
html[lang="ru"] .cta-band h2{
  font-size:clamp(1.7rem,2.4vw,2.7rem);
}
html[lang="ru"] .pill,
html[lang="ru"] .lead,
html[lang="ru"] .section-copy,
html[lang="ru"] .card p,
html[lang="ru"] .service-card p{
  font-size:.96rem;
}
@media (max-width:1100px){
  .footer-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width:980px){
  .brand{
    gap:12px;
  }
  .brand-mark{
    width:92px;
    flex-basis:92px;
  }
  .visual-note{
    max-width:calc(100% - 24px);
  }
  .footer-grid{
    grid-template-columns:1fr;
    padding:24px;
    gap:20px;
  }
  .footer-bottom{
    padding:0 24px 24px;
    flex-direction:column;
    align-items:flex-start;
  }
}
@media (max-width:640px){
  .brand-mark{
    width:78px;
    flex-basis:78px;
  }
  .brand-text strong{
    font-size:.9rem;
  }
  .visual-wrap,
  .hero-visual{
    min-height:240px;
  }
  .hero-visual img{min-height:260px}
  .visual-note{
    inset:auto 14px 14px 14px;
    max-width:calc(100% - 20px);
    padding:14px 14px 15px;
    border-radius:18px;
  }
  .visual-note strong{
    font-size:.96rem;
  }
  .visual-note p{
    font-size:.89rem;
    line-height:1.45;
  }
  .float-a,
  .float-b{
    width:calc(100% - 28px);
  }
  .float-chip{
    border-radius:16px;
    padding:12px 14px;
  }
  .selector-shell::before{
    width:88px;
    height:48px;
    left:18px;
    top:18px;
  }
  .selector-shell{
    padding-top:72px;
  }
  html[lang="ru"] .display{
    font-size:clamp(1.88rem,8vw,2.75rem);
  }
  html[lang="ru"] .service-hero-copy h1{
    font-size:clamp(1.72rem,7.6vw,2.5rem);
  }
}

.selector-logo{
  width:min(188px, 42vw);
  height:auto;
  margin:0 0 18px;
  filter:drop-shadow(0 18px 38px rgba(0,0,0,.24));
}


/* --- Elegant header, footer, legal pages, and service enquiry forms --- */
:root{
  --header-h:88px;
}
html{overflow-x:hidden}
body, p, li, input, textarea, select, label, .pill, .section-copy, .lead, .form-note{
  text-wrap:pretty;
}
h1,h2,h3,.display,.section-title,.visual-note strong{
  text-wrap:balance;
}
.site-header{position:sticky;top:0;z-index:120}
.site-header::before{
  content:"";
  position:fixed;
  inset:0;
  background:rgba(2,6,12,.56);
  backdrop-filter:blur(3px);
  opacity:0;
  pointer-events:none;
  transition:opacity var(--ease);
}
body.menu-open .site-header::before{opacity:1}
.header-bar{
  min-height:var(--header-h);
  padding:10px 0;
}
.brand{max-width:520px}
.brand-mark--wide{
  width:clamp(108px, 12vw, 152px);
  flex-basis:clamp(108px, 12vw, 152px);
}
.brand-text strong{font-size:.98rem}
.nav-frame{
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 10px 24px rgba(0,0,0,.16);
}
.main-nav{gap:22px}
.header-chip{
  display:inline-flex;
  align-items:center;
  min-height:44px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.09);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  color:#d8e4fb;
  font-size:.88rem;
  white-space:nowrap;
}
.header-quote{min-height:46px;padding-inline:18px}
.lang-inline{
  gap:10px;
  padding:10px 12px;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
}
.lang-inline a{font-size:.84rem;white-space:nowrap}
.mobile-panel{
  display:block;
  position:fixed;
  top:calc(var(--header-h) + 12px);
  left:12px;
  right:12px;
  z-index:140;
  max-height:calc(100vh - var(--header-h) - 24px);
  overflow:auto;
  border:1px solid rgba(255,255,255,.10);
  border-radius:28px;
  background:linear-gradient(180deg, rgba(4,10,20,.98), rgba(7,14,24,.96));
  box-shadow:0 24px 60px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter:blur(20px);
}
.mobile-panel__inner{padding:18px;display:grid;gap:18px}
.mobile-panel__section{display:grid;gap:12px}
.mobile-panel__label{
  font-size:.8rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#c7d6f0;
}
.mobile-panel__stack{display:grid;gap:10px}
.mobile-panel__stack a{
  display:block;
  padding:15px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  color:#f3f7ff;
}
.mobile-panel__stack a[aria-current="page"]{
  border-color:rgba(215,181,109,.35);
  background:linear-gradient(180deg, rgba(215,181,109,.12), rgba(108,152,233,.08));
}
.mobile-panel__langs{display:flex;flex-wrap:wrap;gap:10px}
.mobile-panel__langs a{
  padding:10px 13px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  color:#deebff;
  white-space:nowrap;
}
.mobile-panel__langs a[aria-current="true"]{
  color:#08111d;
  border-color:transparent;
  background:linear-gradient(135deg, #fff7db 0%, #f3d893 20%, #d7b56d 48%, #749ce9 100%);
}
.mobile-panel__section--cta .button{width:100%}
.footer{margin-top:6px}
.footer-hero{
  display:grid;
  grid-template-columns:minmax(0,1.3fr) auto;
  gap:22px;
  align-items:end;
  padding:30px 30px 0;
}
.footer-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
  font-size:.8rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#dbe7ff;
}
.footer-kicker::before{
  content:"";
  width:16px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--brand),var(--brand-2));
}
.footer-hero h2{
  margin:0 0 10px;
  font-size:clamp(1.8rem,3vw,3rem);
  line-height:1.04;
  letter-spacing:-.04em;
}
.footer-hero p{margin:0;color:var(--muted);max-width:60ch}
.footer-hero__actions{display:flex;flex-wrap:wrap;gap:12px;justify-content:flex-end}
.footer-grid{grid-template-columns:minmax(0,1.15fr) repeat(4,minmax(0,.58fr));padding-top:26px}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);margin-top:4px;padding-top:18px}
.footer-bottom-links{display:flex;flex-wrap:wrap;gap:16px}
.footer-bottom-links a{color:#d9e6ff}
.footer-card a:hover,.footer-bottom-links a:hover{color:#fff}
.service-request-grid{
  display:grid;
  grid-template-columns:minmax(280px,.78fr) minmax(0,1.22fr);
  gap:20px;
  align-items:start;
}
.form-side-note{height:100%}
.bullets--compact li{padding:14px 16px;line-height:1.56}
.mail-form{
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}
.mail-form .form-grid{gap:16px}
label span{
  font-size:.92rem;
  color:#dbe8ff;
}
input,textarea,select{
  border-radius:18px;
  padding:15px 16px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.12);
  transition:border-color var(--ease), box-shadow var(--ease), background var(--ease);
}
input:focus,textarea:focus,select:focus{
  outline:none;
  border-color:rgba(215,181,109,.58);
  box-shadow:0 0 0 4px rgba(215,181,109,.12);
  background:rgba(255,255,255,.06);
}
input[readonly]{color:#d8e3f9;background:rgba(255,255,255,.06)}
.form-actions{margin-top:18px;display:flex;gap:12px;align-items:center}
.form-actions .button{min-width:180px}
.form-note{margin-top:14px;color:#a9bad7}
.legal-stack{display:grid;gap:18px}
.legal-card{padding:24px}
.legal-card h3{margin:0 0 10px;font-size:1.12rem}
.legal-card p{margin:0;color:var(--muted)}
.selector-logo{width:min(220px, 52vw)}
@media (max-width:1240px){
  .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:980px){
  .nav-frame,.lang-inline,.header-chip,.header-quote{display:none}
  .mobile-toggle{display:block}
  .footer-hero{grid-template-columns:1fr;padding:24px 24px 0}
  .footer-hero__actions{justify-content:flex-start}
  .service-request-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:640px){
  :root{--header-h:74px}
  .brand{max-width:78vw}
  .brand-mark--wide{width:92px;flex-basis:92px}
  .brand-text strong{font-size:.88rem;letter-spacing:.12em}
  .brand-text span{display:none}
  .mobile-panel{left:8px;right:8px;top:calc(var(--header-h) + 8px);border-radius:24px}
  .mobile-panel__inner{padding:14px}
  .mobile-panel__stack a{padding:14px 15px;font-size:1rem;line-height:1.45}
  .mobile-panel__langs{gap:8px}
  .mobile-panel__langs a{padding:9px 12px;font-size:.92rem}
  .visual-wrap,.hero-visual{display:grid;gap:12px;min-height:0;padding-bottom:14px}
  .visual-wrap img,.hero-visual img{height:auto;min-height:220px}
  .visual-note{position:static;inset:auto;max-width:none;margin:0 14px 0;width:auto}
  .visual-note strong,.visual-note p{max-width:none}
  .float-chip{position:static;width:auto;margin:0 14px}
  .hero-pills,.side-points,.contact-list{gap:10px}
  .pill,.side-points li,.card,.service-card,.contact-box{line-height:1.6}
  .footer-hero{padding:20px 20px 0}
  .footer-grid{grid-template-columns:1fr;padding:20px;gap:18px}
  .footer-bottom{padding:0 20px 20px;gap:10px}
  .footer-bottom-links{gap:14px}
  .form-actions{display:grid}
  .form-actions .button{width:100%}
}
.selector-legal{margin-top:22px;text-align:center;color:#b8c8df;font-size:.94rem}
.selector-legal a{color:#e3edff}
.selector-legal a:hover{color:#fff}

/* --- Final executive polish: full-screen mobile nav, readable stacks, and enhanced forms --- */
.mobile-panel__head{
  display:grid;
  gap:6px;
  padding:0 2px 6px;
}
.mobile-panel__title{
  display:block;
  font-size:1.22rem;
  letter-spacing:-.02em;
}
.mobile-panel__caption{
  margin:0;
  color:var(--muted);
  font-size:.95rem;
  line-height:1.5;
}
.card,
.service-card,
.contact-box,
.visual-note,
.pill,
.side-points li,
.cta-band,
.footer-card,
.footer-hero p{
  word-break:normal;
  overflow-wrap:break-word;
  hyphens:auto;
}
.cards-3 > *,
.cards-4 > *,
.services-grid > *,
.group-grid > *,
.related-grid > *,
.timeline-grid > *,
.trust-grid > *,
.ability-grid > *,
.metrics > *{
  min-width:0;
}
.upload-field{
  display:grid;
  gap:10px;
}
.field-label{
  display:block;
  color:#dbe8ff;
  font-size:.92rem;
}
.file-drop{
  position:relative;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:14px;
  align-items:center;
  padding:16px 18px;
  border-radius:22px;
  border:1px dashed rgba(255,255,255,.16);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  transition:border-color var(--ease), background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.file-drop:hover{
  border-color:rgba(215,181,109,.42);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  transform:translateY(-1px);
}
.file-drop input[type=file]{
  position:absolute;
  inset:0;
  opacity:0;
  cursor:pointer;
}
.file-drop__icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  color:#fff4d5;
  font-size:1.6rem;
  line-height:1;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}
.file-drop__content{
  display:grid;
  gap:4px;
  min-width:0;
}
.file-drop__title{
  display:block;
  color:var(--ink);
  font-weight:600;
  line-height:1.45;
}
.file-drop__help{
  display:block;
  color:var(--muted);
  font-size:.88rem;
  line-height:1.5;
}
.upload-field.has-file .file-drop{
  border-style:solid;
  border-color:rgba(215,181,109,.38);
  background:linear-gradient(180deg, rgba(215,181,109,.12), rgba(108,152,233,.08));
}
.captcha-panel{
  display:grid;
  gap:12px;
  padding:16px 18px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}
.captcha-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}
.captcha-refresh{
  min-width:42px;
  height:42px;
  padding:0 12px;
  display:grid;
  place-items:center;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  color:#eff6ff;
  transition:transform var(--ease), border-color var(--ease), background var(--ease);
}
.captcha-refresh:hover{
  transform:translateY(-1px);
  border-color:rgba(215,181,109,.42);
  background:linear-gradient(180deg, rgba(215,181,109,.14), rgba(108,152,233,.10));
}
.captcha-box{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:14px;
  align-items:center;
}
.captcha-code{
  min-width:136px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  font-family:"IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size:1.05rem;
  font-weight:600;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:#fff7e5;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}
.captcha-input{
  display:grid;
  gap:8px;
}
.form-error{
  margin:0;
  color:#ffd7b0;
  font-size:.9rem;
}
.footer-shell{
  border-radius:34px;
}
.footer-hero{
  gap:18px;
}
.footer-hero__actions .button{
  min-width:170px;
}
.footer-logo{
  width:min(196px, 100%);
}
@media (max-width:980px){
  .mobile-panel{
    inset:0;
    top:0;
    left:0;
    right:0;
    bottom:0;
    height:100dvh;
    max-height:none;
    border:none;
    border-radius:0;
    padding-top:calc(var(--header-h) + 6px);
    background:linear-gradient(180deg, rgba(3,8,18,.98), rgba(5,10,20,.96));
  }
  .mobile-panel__inner{
    width:min(680px, calc(100% - 24px));
    min-height:calc(100dvh - var(--header-h) - 8px);
    margin:0 auto;
    padding:14px 0 28px;
    gap:14px;
  }
  .mobile-panel__section{
    gap:10px;
  }
  .mobile-panel__stack{
    gap:10px;
  }
  .mobile-panel__stack a{
    padding:15px 16px;
    line-height:1.45;
    font-size:1rem;
  }
  .mobile-panel__langs{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:10px;
  }
  .mobile-panel__langs a{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:44px;
    text-align:center;
  }
  .footer-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width:760px){
  .cards-3,
  .cards-4,
  .ability-grid,
  .trust-grid,
  .services-grid,
  .group-grid,
  .related-grid,
  .timeline-grid,
  .lang-grid,
  .feature-flow,
  .metrics{
    grid-template-columns:1fr !important;
  }
  .service-top{
    flex-direction:column;
    align-items:flex-start;
  }
  .hero-copy,
  .hero-side,
  .service-hero-copy,
  .service-hero-side,
  .card,
  .service-card,
  .contact-box,
  .cta-band,
  .selector-shell,
  .lang-card,
  .media-panel,
  .band.section-pad{
    padding:16px;
  }
}
@media (max-width:640px){
  .mobile-panel{
    padding-top:calc(var(--header-h) + 4px);
  }
  .mobile-panel__inner{
    width:calc(100% - 16px);
    padding:12px 0 20px;
  }
  .mobile-panel__head{
    padding-bottom:4px;
  }
  .mobile-panel__title{
    font-size:1.12rem;
  }
  .mobile-panel__caption{
    font-size:.9rem;
  }
  .mobile-panel__langs{
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:8px;
  }
  .mobile-panel__stack a,
  .mobile-panel__langs a{
    padding:13px 14px;
    font-size:.97rem;
  }
  .file-drop,
  .captcha-box{
    grid-template-columns:1fr;
  }
  .file-drop{
    padding:15px;
  }
  .file-drop__icon,
  .captcha-code{
    width:100%;
    min-width:0;
  }
  .captcha-code{
    justify-content:center;
  }
  .captcha-head{
    align-items:flex-start;
  }
  .footer-hero{
    padding:20px 20px 0;
  }
  .footer-grid{
    padding:18px;
  }
  .footer-bottom{
    padding:0 18px 18px;
  }
}
.site-header{isolation:isolate;}
.header-bar{position:relative;z-index:160;}
.mobile-panel{z-index:150;}

/* Mobile menu scroll lock fix */
html.menu-open,
body.menu-open{
  overflow:hidden;
  overscroll-behavior:none;
  height:100%;
}
.mobile-panel{
  overscroll-behavior:contain;
  -webkit-overflow-scrolling:touch;
}

/* --- April 2026 readability and artwork separation fixes --- */
.display,
.section-title,
.portal-topbar__copy h1,
.crm-view__head h2,
.portal-hero__copy .display{
  text-wrap:balance;
}
.display{
  line-height:.99;
}
.lead,
.section-copy,
.service-hero-copy p,
.card p,
.service-card p,
.contact-box p,
.footer-card p,
.timeline-step p,
.portal-hero__copy .lead,
.portal-topbar__copy p,
.portal-record__head p,
.portal-inline-note p,
.portal-upload-zone p,
.portal-helper-card p,
.portal-auth__head p{
  line-height:1.7;
}
.visual-wrap{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  min-height:0;
  align-content:start;
}
.visual-wrap > img{
  grid-column:1 / -1;
  height:auto;
  min-height:380px;
  aspect-ratio:16 / 10;
}
.visual-note{
  position:static;
  inset:auto;
  width:auto;
  max-width:none;
  margin:0;
}
.float-chip{
  position:static;
  inset:auto;
  width:auto;
  margin:0;
}
.float-a,
.float-b{
  top:auto;
  right:auto;
  bottom:auto;
  left:auto;
}
.visual-wrap .visual-note,
.visual-wrap .float-chip{
  min-width:0;
}
.visual-wrap .visual-note strong,
.visual-wrap .float-chip strong,
.visual-wrap .visual-note p,
.visual-wrap .float-chip span{
  overflow-wrap:anywhere;
}
@media (max-width:980px){
  .visual-wrap{
    grid-template-columns:1fr;
  }
  .visual-wrap > img{
    min-height:300px;
  }
}
@media (max-width:640px){
  .display{
    line-height:1.02;
  }
  .visual-wrap > img{
    min-height:240px;
  }
}


/* Supply chain navigation fit */
.main-nav{gap:18px}
.main-nav a{font-size:.95rem;white-space:nowrap}
.nav-frame{padding:10px 14px}
@media (min-width:981px) and (max-width:1380px){
  .header-bar{gap:12px}
  .brand{max-width:360px}
  .brand-text span{max-width:220px}
  .main-nav{gap:14px}
  .nav-frame{padding:10px 12px}
}
