/* =========================================================
   Multi Tech Engineering & Company
   Premium static site — design system + components
   ========================================================= */

:root {
  /* Brand palette derived from the logo */
  --navy-900: #061522;
  --navy-800: #0a1f33;
  --navy-700: #0d2842;
  --navy-600: #123354;
  --steel:    #1b4a73;
  --cyan:     #1fa2d6;
  --cyan-2:   #29c0ff;
  --green:    #4cc66a;
  --green-2:  #39b54a;

  --ink:      #0a1622;
  --paper:    #f6f9fc;
  --paper-2:  #eef3f8;
  --line:     rgba(13, 40, 66, 0.10);

  --text:     #1a2733;
  --text-soft:#5a6b7b;
  --white:    #ffffff;

  --grad-brand: linear-gradient(120deg, var(--cyan) 0%, var(--green) 100%);
  --grad-dark:  linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);

  --maxw: 1440px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 30px 70px -30px rgba(6, 21, 34, 0.35);
  --shadow-soft: 0 14px 40px -20px rgba(6, 21, 34, 0.25);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; width: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); color: var(--ink); }
h3 { font-size: 1.25rem; }

::selection { background: var(--cyan); color: #fff; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-content: center; gap: 22px; justify-items: center;
  background: var(--grad-dark);
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__mark svg { width: 84px; height: 84px; }
.pl-roof, .pl-body { stroke-dasharray: 240; stroke-dashoffset: 240; animation: draw 1.4s var(--ease) forwards infinite alternate; }
.pl-body { animation-delay: .25s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.preloader__text {
  font-family: var(--font-display); font-weight: 700; letter-spacing: .35em;
  color: rgba(255,255,255,.85); font-size: .9rem; padding-left: .35em;
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--grad-brand); z-index: 1000; transition: width .1s linear;
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 950;
  width: 50px; height: 50px; border: 0; border-radius: 50%; cursor: pointer;
  display: grid; place-content: center; color: #fff; background: var(--grad-brand);
  box-shadow: 0 12px 28px -10px rgba(31,162,214,.7);
  opacity: 0; transform: translateY(16px) scale(.9); pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), box-shadow .3s var(--ease);
}
.to-top.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.to-top:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 32px -10px rgba(31,162,214,.85); }
.to-top svg { width: 22px; height: 22px; }
@media (max-width: 540px) { .to-top { right: 16px; bottom: 16px; width: 46px; height: 46px; } }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 18px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.is-scrolled {
  padding: 10px 0;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 10px 30px -20px rgba(6,21,34,.3);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 42px; height: 42px; display: grid; place-content: center;
  background: var(--navy-800); border-radius: 11px; padding: 6px;
  box-shadow: var(--shadow-soft); transition: transform .4s var(--ease); }
.brand:hover .brand__mark { transform: rotate(-6deg) scale(1.05); }
.brand__mark svg { width: 100%; height: 100%; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong { font-family: var(--font-display); font-size: 1.02rem; letter-spacing: .02em; color: var(--ink); }
.nav.is-scrolled .brand__text strong { color: var(--ink); }
.brand__text small { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-soft); }

/* Nav appears over dark hero initially */
.nav:not(.is-scrolled) .brand__text strong { color: #fff; }
.nav:not(.is-scrolled) .brand__text small { color: rgba(255,255,255,.7); }
.nav:not(.is-scrolled) .nav__links a { color: rgba(255,255,255,.85); }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a { position: relative; font-weight: 500; font-size: .95rem; transition: color .3s; }
.nav__links a:not(.nav__cta)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad-brand); transition: width .3s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  padding: 10px 22px; border-radius: 999px; background: var(--grad-brand); color: #fff !important;
  font-weight: 600; box-shadow: 0 10px 24px -10px rgba(31,162,214,.7);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(31,162,214,.8); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }
.nav.is-scrolled .nav__toggle span { background: var(--ink); }

/* ---------- Language switcher ---------- */
.lang-switch { position: relative; margin-left: 22px; }
.lang-switch__toggle {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 12px; border-radius: 999px;
  border: 1px solid var(--line); background: transparent; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: .82rem; letter-spacing: .03em;
  color: var(--ink); transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.lang-switch__toggle:hover { border-color: var(--cyan); color: var(--cyan); }
.lang-switch__globe { width: 17px; height: 17px; flex: none; }
.lang-switch__current { line-height: 1; }
.lang-switch__chev { width: 12px; height: 12px; flex: none; transition: transform .3s var(--ease); }
.lang-switch__toggle[aria-expanded="true"] .lang-switch__chev { transform: rotate(180deg); }
/* Over the dark hero (before scroll) */
.nav:not(.is-scrolled) .lang-switch__toggle { color: #fff; border-color: rgba(255,255,255,.28); }
.nav:not(.is-scrolled) .lang-switch__toggle:hover { color: #fff; border-color: var(--cyan-2); background: rgba(255,255,255,.08); }

.lang-switch__menu {
  position: absolute; top: calc(100% + 12px); right: 0; min-width: 168px;
  display: none; flex-direction: column; gap: 2px; padding: 7px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 22px 48px -18px rgba(6,21,34,.32); z-index: 1100;
}
.lang-switch__menu.is-open { display: flex; animation: langMenuIn .22s var(--ease) both; }
@keyframes langMenuIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.lang-switch__menu button {
  text-align: left; padding: 11px 15px; border: 0; border-radius: 10px; background: transparent;
  cursor: pointer; font-family: var(--font-body); font-size: .92rem; font-weight: 500; color: var(--ink);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.lang-switch__menu button:hover { background: rgba(31,162,214,.08); color: var(--cyan); }
.lang-switch__menu button.is-active { background: var(--grad-brand); color: #fff; font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px; font-weight: 600; font-size: .98rem;
  font-family: var(--font-display); position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.btn--full { width: 100%; justify-content: center; }
.btn .arrow { width: 18px; height: 18px; position: relative; transition: transform .3s var(--ease); }
.btn .arrow::before { content: ''; position: absolute; top: 50%; left: 0; width: 14px; height: 2px; background: currentColor; transform: translateY(-50%); }
.btn .arrow::after { content: ''; position: absolute; top: 50%; right: 1px; width: 7px; height: 7px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: translateY(-50%) rotate(45deg); }
.btn:hover .arrow { transform: translateX(5px); }
.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: 0 16px 34px -14px rgba(31,162,214,.7); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -14px rgba(31,162,214,.85); }
.btn--ghost { color: #fff; border: 1px solid rgba(255,255,255,.3); }
.btn--ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; background: var(--grad-dark); overflow: hidden; padding: 120px 0 80px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .42; }
.hero__glow--a { width: 520px; height: 520px; background: radial-gradient(circle, var(--cyan), transparent 70%); top: -120px; right: -80px; animation: float 14s ease-in-out infinite; }
.hero__glow--b { width: 460px; height: 460px; background: radial-gradient(circle, var(--green), transparent 70%); bottom: -140px; left: -100px; animation: float 18s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px, -30px); } }
.hero__lines { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .8; }

.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center; }
.hero__content { max-width: 620px; }
.hero__eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  letter-spacing: .28em; font-size: .74rem; color: var(--cyan-2);
  padding: 8px 16px; border: 1px solid rgba(31,162,214,.4); border-radius: 999px;
  margin-bottom: 28px; background: rgba(31,162,214,.08);
}
.hero__title { font-size: clamp(2.5rem, 6.4vw, 4.8rem); font-weight: 600; letter-spacing: -0.035em; }
.hero__title em { font-style: normal; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; transform: translateY(110%); animation: rise 1s var(--ease) forwards; }
.hero__title .line:nth-child(2) > span { animation-delay: .12s; }
.hero__title .line:nth-child(3) > span { animation-delay: .24s; }
@keyframes rise { to { transform: translateY(0); } }
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: rgba(255,255,255,.78); max-width: 620px; margin: 26px 0 36px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px;
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,.1); max-width: 600px; }
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1; white-space: nowrap;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__suffix { font-size: .5em; font-weight: 600; margin-left: 2px; letter-spacing: .01em; }
.stat__label { font-size: .78rem; letter-spacing: .05em; color: rgba(255,255,255,.6); text-transform: uppercase; line-height: 1.35; }

.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.4); border-radius: 14px; display: grid; place-items: start center; padding-top: 7px; }
.hero__scroll-dot { width: 4px; height: 8px; border-radius: 4px; background: #fff; animation: scrolldot 1.6s var(--ease) infinite; }
@keyframes scrolldot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- Hero visual (capability panel) ---------- */
.hero__visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.hero__visual-glow { position: absolute; inset: 8% 6%; border-radius: 30px; z-index: 0;
  background: conic-gradient(from 180deg at 50% 50%, var(--cyan), var(--green), var(--cyan));
  filter: blur(70px); opacity: .22; animation: float 18s ease-in-out infinite; }
@keyframes heroFloatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(12px); } }

.spec-card { position: relative; z-index: 2; width: min(420px, 100%);
  background: linear-gradient(158deg, rgba(255,255,255,.11), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.16); border-radius: 22px; padding: 26px;
  backdrop-filter: blur(18px); box-shadow: 0 44px 100px -40px rgba(0,0,0,.75);
  overflow: hidden; animation: float 13s ease-in-out infinite; }
.spec-card__bp { position: absolute; inset: 0; z-index: 0; opacity: .6;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 90% 85% at 50% 20%, #000 40%, transparent 88%); }
.spec-card > *:not(.spec-card__bp) { position: relative; z-index: 1; }

.spec-card__head { display: flex; align-items: flex-start; gap: 12px; padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 18px; }
.spec-card__logo { width: 44px; height: 44px; flex-shrink: 0; border-radius: 11px; padding: 7px;
  background: var(--navy-900); border: 1px solid rgba(255,255,255,.12); display: grid; place-content: center; }
.spec-card__logo svg { width: 100%; height: 100%; }
.spec-card__title { margin-right: auto; min-width: 0; padding-top: 2px; }
.spec-card__title strong { display: block; font-family: var(--font-display); color: #fff; font-size: .98rem; line-height: 1.22; }
.spec-card__title small { display: block; margin-top: 3px; font-size: .72rem; color: rgba(255,255,255,.58); letter-spacing: .01em; }
.spec-card__live { display: inline-flex; align-items: center; gap: 6px; font-size: .58rem; letter-spacing: .07em;
  text-transform: uppercase; color: var(--green); font-weight: 600; white-space: nowrap; flex-shrink: 0;
  padding: 5px 10px; border-radius: 999px; background: rgba(76,198,106,.12); border: 1px solid rgba(76,198,106,.32); }
.spec-card__live i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(76,198,106,.55); } 70% { box-shadow: 0 0 0 7px rgba(76,198,106,0); } 100% { box-shadow: 0 0 0 0 rgba(76,198,106,0); } }
.spec-card__live i { animation: pulseDot 2s infinite; }

.spec-card__list { display: grid; gap: 10px; }
.spec-card__list li { position: relative; overflow: hidden; display: flex; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 13px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  transition: transform .45s var(--ease), background .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease); }
.spec-card:hover .spec-card__list li:hover { transform: translateX(5px); background: rgba(255,255,255,.09); }

/* Auto-cycled active capability */
.spec-card__list li.is-active {
  transform: translateX(6px);
  background: linear-gradient(100deg, rgba(31,162,214,.20), rgba(76,198,106,.12));
  border-color: rgba(41,192,255,.5);
  box-shadow: 0 12px 30px -14px rgba(31,162,214,.65); }
.spec-card__list li::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 3px;
  background: var(--grad-brand); border-radius: 3px; transform: scaleY(0); transform-origin: center;
  transition: transform .45s var(--ease); }
.spec-card__list li.is-active::before { transform: scaleY(1); }
/* shine sweep on the active row */
.spec-card__list li.is-active::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 45%; left: -50%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.14), transparent);
  animation: specShine 1.4s var(--ease) forwards; }
@keyframes specShine { to { left: 130%; } }

/* Staggered entrance once the visual scrolls in */
.hero__visual .spec-card__list li { opacity: 0; transform: translateY(16px); }
.hero__visual.is-visible .spec-card__list li { animation: specRise .6s var(--ease) forwards; }
.hero__visual.is-visible .spec-card__list li:nth-child(1) { animation-delay: .15s; }
.hero__visual.is-visible .spec-card__list li:nth-child(2) { animation-delay: .28s; }
.hero__visual.is-visible .spec-card__list li:nth-child(3) { animation-delay: .41s; }
.hero__visual.is-visible .spec-card__list li:nth-child(4) { animation-delay: .54s; }
@keyframes specRise { to { opacity: 1; transform: translateY(0); } }

.spec-row__ico { width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px; display: grid; place-content: center;
  color: #fff; background: var(--grad-brand); transition: box-shadow .45s var(--ease); }
.spec-card__list li.is-active .spec-row__ico { box-shadow: 0 0 0 4px rgba(41,192,255,.16); }
.spec-card__list li.is-active .spec-row__no { color: #fff; }
.spec-row__ico svg { width: 20px; height: 20px; }
.spec-row__txt { margin-right: auto; }
.spec-row__txt strong { display: block; font-family: var(--font-display); color: #fff; font-size: .9rem; line-height: 1.25; }
.spec-row__txt small { font-size: .69rem; color: rgba(255,255,255,.55); letter-spacing: .01em; }
.spec-row__no { font-family: var(--font-display); font-size: .76rem; color: var(--cyan-2); font-weight: 600; }

.spec-card__flow { display: flex; align-items: center; gap: 10px; margin-top: 18px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1); }
.flow-step { font-family: var(--font-display); font-size: .73rem; font-weight: 600; letter-spacing: .03em; color: rgba(255,255,255,.85); }
.flow-line { position: relative; flex: 1; height: 2px; border-radius: 2px; background: rgba(255,255,255,.14); overflow: hidden; }
.flow-line::after { content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 45%; border-radius: 2px;
  background: var(--grad-brand); animation: flowMove 2.6s var(--ease) infinite; }
.flow-line:nth-of-type(4)::after { animation-delay: 1.3s; }
@keyframes flowMove { 0% { transform: translateX(-130%); } 60%,100% { transform: translateX(270%); } }

.hero__chip { position: absolute; bottom: -5%; left: -10px; z-index: 3; display: flex; align-items: center; gap: 12px;
  padding: 13px 17px; border-radius: 14px; background: rgba(10,31,51,.55); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.18); box-shadow: 0 24px 56px -22px rgba(0,0,0,.7);
  animation: heroFloatB 11s ease-in-out infinite; }
.hero__chip-ico { width: 36px; height: 36px; flex-shrink: 0; border-radius: 10px; display: grid; place-content: center;
  background: var(--grad-brand); color: #fff; }
.hero__chip-ico svg { width: 20px; height: 20px; }
.hero__chip strong { display: block; font-family: var(--font-display); font-size: .9rem; color: #fff; line-height: 1.2; }
.hero__chip small { font-size: .71rem; color: rgba(255,255,255,.7); }

/* ---------- Marquee ---------- */
.marquee { background: var(--navy-900); color: #fff; padding: 20px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.06); }
.marquee__track { display: flex; gap: 28px; white-space: nowrap; width: max-content; animation: marquee 28s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; letter-spacing: .04em; color: rgba(255,255,255,.55); }
.marquee__track span:nth-child(even) { color: var(--cyan); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(70px, 9vw, 130px) 0; position: relative; }
.kicker { display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.section__head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.section__head p { color: var(--text-soft); margin-top: 16px; font-size: 1.06rem; }

/* ---------- About ---------- */
.about { background: var(--white); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about__left h2 { margin: 4px 0 22px; }
.about__left p { color: var(--text-soft); margin-bottom: 18px; max-width: 520px; }
.about__chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.about__chips span { font-size: .82rem; font-weight: 500; padding: 8px 16px; border-radius: 999px;
  background: var(--paper-2); color: var(--steel); border: 1px solid var(--line); }
.about__right { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feature-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.feature-card__icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-content: center;
  margin-bottom: 16px; color: var(--cyan); background: rgba(31,162,214,.1);
  border: 1px solid rgba(31,162,214,.18); transition: background .4s var(--ease), color .4s var(--ease); }
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card:hover .feature-card__icon { background: var(--grad-brand); color: #fff; border-color: transparent; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--ink); }
.feature-card p { font-size: .92rem; color: var(--text-soft); }
.about__right .feature-card:nth-child(odd) { transform: translateY(20px); }
.about__right .feature-card:nth-child(odd):hover { transform: translateY(12px); }

/* ---------- Services ---------- */
.services { background: var(--paper); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.service:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.service:hover .service__media img { transform: scale(1.08); }
.service__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,21,34,.55), transparent 55%); }
.service__no { position: absolute; left: 18px; bottom: 14px; z-index: 1; font-family: var(--font-display);
  font-weight: 700; font-size: 1.5rem; color: #fff; letter-spacing: .04em;
  padding: 4px 12px; border-radius: 8px; background: rgba(255,255,255,.12); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.2); }
.service__body { padding: 26px 28px 30px; }
.service__body h3 { color: var(--ink); margin-bottom: 10px; }
.service__body p { color: var(--text-soft); font-size: .96rem; }

/* ---------- Scope (tabs) ---------- */
.scope { background: var(--white); }
.tabs { max-width: 1140px; margin: 0 auto; }
.tabs__nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 48px; }
.tab { padding: 12px 24px; border-radius: 999px; font-family: var(--font-display); font-weight: 600;
  font-size: .92rem; color: var(--text-soft); background: var(--paper-2); border: 1px solid var(--line);
  transition: all .3s var(--ease); }
.tab:hover { color: var(--ink); transform: translateY(-2px); }
.tab.is-active { background: var(--navy-800); color: #fff; border-color: var(--navy-800);
  box-shadow: 0 12px 24px -12px rgba(10,31,51,.6); }
.tabs__panels { position: relative; }
.panel { display: none; }
.panel.is-active { display: block; }

.scope-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: stretch; }
.panel.is-active .scope-visual { animation: scopeImg .7s var(--ease) both; }
@keyframes scopeImg { from { opacity: 0; clip-path: inset(0 0 14% 0); transform: scale(.98); } to { opacity: 1; clip-path: inset(0 0 0 0); transform: scale(1); } }
.scope-visual { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  min-height: 360px; }
.scope-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.scope-visual:hover img { transform: scale(1.06); }
.scope-visual::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,21,34,.78), rgba(6,21,34,.05) 55%); }
.scope-visual__tag { position: absolute; left: 20px; bottom: 18px; z-index: 1; color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; letter-spacing: .01em;
  padding-left: 14px; border-left: 3px solid var(--cyan); }

.scope-list { display: grid; gap: 14px; align-content: center; }
.panel.is-active .scope-list li { animation: scopeRow .55s var(--ease) both; }
.panel.is-active .scope-list li:nth-child(2) { animation-delay: .07s; }
.panel.is-active .scope-list li:nth-child(3) { animation-delay: .14s; }
.panel.is-active .scope-list li:nth-child(4) { animation-delay: .21s; }
.panel.is-active .scope-list li:nth-child(5) { animation-delay: .28s; }
@keyframes scopeRow { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: translateX(0); } }
.scope-list li { display: flex; gap: 16px; align-items: center; padding: 18px 22px; border-radius: var(--radius);
  background: var(--paper); border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.scope-list li:hover { transform: translateX(6px); box-shadow: var(--shadow-soft); border-color: transparent; }
.scope-ico { width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px; display: grid; place-content: center;
  color: var(--cyan); background: rgba(31,162,214,.1); border: 1px solid rgba(31,162,214,.16);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s; }
.scope-ico svg { width: 23px; height: 23px; }
.scope-list li:hover .scope-ico { background: var(--grad-brand); color: #fff; border-color: transparent; }
.scope-list h4 { color: var(--ink); font-size: 1.06rem; margin-bottom: 4px; }
.scope-list p { color: var(--text-soft); font-size: .92rem; line-height: 1.5; }

/* ---------- Projects gallery ---------- */
.projects { background: var(--paper); }
.gallery { columns: 3; column-gap: 18px; }
.gallery__item { position: relative; break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius);
  overflow: hidden; cursor: pointer; box-shadow: var(--shadow-soft); }
.gallery__item img { width: 100%; display: block; transition: transform .8s var(--ease); }
.gallery__item::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,21,34,.82) 0%, rgba(6,21,34,.1) 45%, transparent 70%);
  opacity: .55; transition: opacity .4s var(--ease); }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover::after { opacity: .95; }
.gallery__item figcaption { position: absolute; left: 0; bottom: 0; z-index: 1; padding: 22px 22px 20px;
  color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; line-height: 1.25;
  transform: translateY(8px); opacity: 0; transition: transform .45s var(--ease), opacity .45s var(--ease); }
.gallery__item:hover figcaption { transform: translateY(0); opacity: 1; }
.gallery__item figcaption span { display: block; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cyan-2); margin-bottom: 6px; font-weight: 600; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 2000; display: none; place-content: center;
  background: rgba(4,12,20,.92); backdrop-filter: blur(8px); padding: 40px; }
.lightbox.is-open { display: grid; animation: lbFade .3s var(--ease); }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__stage { max-width: 90vw; max-height: 86vh; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lightbox__stage img { max-width: 90vw; max-height: 76vh; border-radius: 12px; box-shadow: 0 40px 80px -30px rgba(0,0,0,.8); }
.lightbox__stage figcaption { color: #fff; font-family: var(--font-display); font-weight: 500; letter-spacing: .02em; }
.lightbox__close { position: absolute; top: 22px; right: 28px; font-size: 2.4rem; line-height: 1; color: #fff; opacity: .8; transition: opacity .3s, transform .3s; }
.lightbox__close:hover { opacity: 1; transform: rotate(90deg); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px;
  border-radius: 50%; font-size: 2rem; color: #fff; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2); display: grid; place-content: center; transition: background .3s, transform .3s; }
.lightbox__nav:hover { background: rgba(255,255,255,.2); }
.lightbox__prev { left: 28px; }
.lightbox__next { right: 28px; }

/* ---------- Quality ---------- */
.quality { background: var(--grad-dark); color: #fff; position: relative; overflow: hidden; }
.quality::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(76,198,106,.25), transparent 70%); top: -150px; right: -100px; filter: blur(60px); }
.quality__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; position: relative; z-index: 1; }
.quality__left h2 { color: #fff; margin: 4px 0 20px; }
.quality__left p { color: rgba(255,255,255,.72); max-width: 440px; }
.quality__left .kicker { color: var(--green); }
.quality__list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quality__list li { display: flex; align-items: center; gap: 16px; padding: 22px 20px; border-radius: var(--radius);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); transition: transform .35s var(--ease), background .35s; }
.quality__list li:hover { transform: translateY(-5px); background: rgba(255,255,255,.09); }
.quality__list span { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--cyan-2);
  width: 42px; height: 42px; display: grid; place-content: center; border-radius: 10px; background: rgba(31,162,214,.14); flex-shrink: 0; }
.quality__list p { font-size: .96rem; font-weight: 500; }

/* ---------- Contact ---------- */
.contact { background: var(--paper); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: start; }
.contact__info h2 { margin: 4px 0 18px; }
.contact__info > p { color: var(--text-soft); max-width: 440px; margin-bottom: 36px; }
.contact__info { min-width: 0; }
.contact__details { display: grid; gap: 22px; }
.contact__details li { display: flex; gap: 16px; align-items: flex-start; min-width: 0; }
.contact__ico { width: 46px; height: 46px; flex-shrink: 0; display: grid; place-content: center; color: var(--cyan);
  background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-soft); }
.contact__ico svg { width: 22px; height: 22px; }
.contact__details strong { display: block; font-family: var(--font-display); color: var(--ink); margin-bottom: 2px; font-size: .98rem; }
.contact__details div { min-width: 0; color: var(--text-soft); font-size: .94rem; line-height: 1.5; overflow-wrap: anywhere; }
.contact__details a { color: var(--steel); font-weight: 500; transition: color .3s; overflow-wrap: anywhere; }
.contact__details a:hover { color: var(--cyan); }

.contact__card { min-width: 0; background: var(--white); padding: 40px; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); align-self: start; }

.contact__map { grid-column: 1 / -1; margin-top: 8px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); line-height: 0; }
.contact__map iframe { display: block; width: 100%; height: 400px; border: 0; }

/* Map facade (click to load the interactive embed) */
.map-facade { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; width: 100%; height: 400px; padding: 24px; border: 0; cursor: pointer; color: #fff; text-align: center; background: radial-gradient(120% 120% at 50% 0%, var(--navy-800), var(--navy-900)); overflow: hidden; transition: filter .3s var(--ease); }
.map-facade:hover { filter: brightness(1.08); }
.map-facade__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(41,192,255,.10) 1px, transparent 1px), linear-gradient(90deg, rgba(41,192,255,.10) 1px, transparent 1px); background-size: 40px 40px; mask-image: radial-gradient(circle at 50% 45%, #000, transparent 75%); -webkit-mask-image: radial-gradient(circle at 50% 45%, #000, transparent 75%); }
.map-facade__pin { position: relative; display: grid; place-content: center; width: 56px; height: 56px; border-radius: 50%; color: #fff; background: var(--grad-brand); box-shadow: 0 12px 28px -10px rgba(31,162,214,.7); }
.map-facade__pin svg { width: 26px; height: 26px; }
.map-facade__text { position: relative; line-height: 1.35; }
.map-facade__text strong { display: block; font-family: var(--font-display); font-size: 1.1rem; }
.map-facade__text small { color: rgba(255,255,255,.7); font-size: .9rem; }
.map-facade__cta { position: relative; display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; font-size: .9rem; font-weight: 600; color: #fff; background: rgba(41,192,255,.14); border: 1px solid rgba(41,192,255,.34); }
.map-facade__cta svg { width: 16px; height: 16px; }

/* Defensive: explicit font-size for any h1 inside sectioning content
   (silences Chrome's H1UserAgentFontSizeInSection deprecation) */
:where(article, aside, nav, section) h1 { font-size: 2rem; }
.contact__card h3 { color: var(--ink); font-size: 1.4rem; margin-bottom: 8px; }
.contact__card > p { color: var(--text-soft); font-size: .96rem; margin-bottom: 26px; }
.contact__actions { display: grid; gap: 14px; }
.contact-action { display: flex; align-items: center; gap: 16px; padding: 16px 18px; border-radius: var(--radius-sm);
  background: var(--paper); border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.contact-action:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: transparent; }
.contact-action__ico { width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px; display: grid; place-content: center;
  color: #fff; background: var(--grad-brand); }
.contact-action__ico svg { width: 23px; height: 23px; }
.contact-action__text { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; overflow-wrap: anywhere; }
.contact-action__text small { font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; color: var(--text-soft); }
.contact-action__text strong { font-family: var(--font-display); font-size: 1.02rem; color: var(--ink); }
.contact-action .arrow { margin-left: auto; color: var(--steel); width: 18px; height: 18px; position: relative; transition: transform .3s var(--ease); }
.contact-action .arrow::before { content: ''; position: absolute; top: 50%; left: 0; width: 14px; height: 2px; background: currentColor; transform: translateY(-50%); }
.contact-action .arrow::after { content: ''; position: absolute; top: 50%; right: 1px; width: 7px; height: 7px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: translateY(-50%) rotate(45deg); }
.contact-action:hover .arrow { transform: translateX(4px); color: var(--cyan); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: rgba(255,255,255,.66); padding: 72px 0 0; }
.footer__top { display: grid; grid-template-columns: 1.7fr 1fr 1.35fr; gap: 48px;
  padding-bottom: 46px; }
.footer__logo { display: inline-flex; align-items: center; gap: 12px; }
.footer__logo .brand__mark { width: 46px; height: 46px; }
.footer__logo-text strong { font-family: var(--font-display); color: #fff; font-size: 1.04rem; letter-spacing: .04em; line-height: 1.15; display: block; }
.footer__logo-text small { color: rgba(255,255,255,.55); font-size: .8rem; letter-spacing: .02em; }
.footer__col--brand p { margin-top: 18px; font-size: .92rem; line-height: 1.7; max-width: 330px; }
.footer__col h4 { color: #fff; font-family: var(--font-display); font-size: .76rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; }
.footer__links { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer__links a { font-size: .94rem; transition: color .3s, padding .3s; }
.footer__links a:hover { color: var(--cyan-2); padding-left: 4px; }
.footer__contact { display: flex; flex-direction: column; gap: 15px; font-size: .92rem; line-height: 1.5; }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; min-width: 0; }
.footer__contact li svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--cyan); margin-top: 2px; }
.footer__contact a { transition: color .3s; overflow-wrap: anywhere; }
.footer__contact a:hover { color: var(--cyan-2); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 22px 0 26px; border-top: 1px solid rgba(255,255,255,.08); font-size: .82rem; color: rgba(255,255,255,.45); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .about__grid, .quality__grid, .contact__grid { grid-template-columns: 1fr; gap: 44px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__right .feature-card:nth-child(odd) { transform: none; }
  .gallery { columns: 2; }
  .scope-layout { grid-template-columns: 1fr; gap: 26px; }
  .scope-visual { min-height: 260px; }
  .hero__inner { grid-template-columns: 1fr; gap: 0; }
  .hero__content { max-width: 720px; }
  .hero__visual { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .footer__col--brand { grid-column: 1 / -1; }
  .footer__col--brand p { max-width: 460px; }
}
/* Mobile navigation — full-screen overlay */
@media (max-width: 900px) {
  /* When open, drop the blur/background so the fixed overlay escapes to the full viewport */
  .nav.is-open { z-index: 1200; background: transparent; backdrop-filter: none; box-shadow: none; border-bottom: none; }
  .nav.is-open .brand { position: relative; z-index: 1202; }
  .nav.is-open .brand__text strong { color: #fff; }
  .nav.is-open .brand__text small { color: rgba(255,255,255,.7); }

  .nav__links { position: fixed; inset: 0; z-index: 1201;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    background: var(--grad-dark); padding: 106px 30px 40px;
    transform: translateX(100%); transition: transform .42s var(--ease);
    overflow-y: auto; }
  .nav__links.is-open { transform: translateX(0); }

  .nav__links a { color: #fff !important; font-family: var(--font-display); font-weight: 600;
    font-size: 1.35rem; padding: 22px 4px; display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav__links a:not(.nav__cta)::after { content: ''; display: block; position: static;
    width: 9px; height: 9px; left: auto; bottom: auto; background: none;
    border-top: 2px solid rgba(255,255,255,.35); border-right: 2px solid rgba(255,255,255,.35);
    transform: rotate(45deg); transition: border-color .3s var(--ease), transform .3s var(--ease); }
  .nav__links a:not(.nav__cta):hover::after { border-color: var(--cyan-2); transform: rotate(45deg) translate(2px,-2px); width: 9px; }
  .nav__links a.is-active:not(.nav__cta) { color: var(--cyan-2) !important; }
  .nav__links a.is-active:not(.nav__cta)::after { border-color: var(--cyan-2); }
  .nav__links a.nav__cta { display: flex; width: 100%; margin-top: 30px; padding: 16px 22px; font-size: 1.05rem; justify-content: center; text-align: center; border-bottom: none; box-shadow: none; }
  .nav__cta::after { display: none !important; }

  /* Keep the language switcher reachable above the full-screen menu overlay */
  .lang-switch { margin-left: auto; margin-right: 14px; position: relative; z-index: 1203; }
  .nav.is-open .lang-switch__toggle { color: #fff; border-color: rgba(255,255,255,.28); }
  .lang-switch__menu { right: 0; }

  .nav__toggle { display: flex; position: relative; z-index: 1203; }
  .nav__toggle span { background: #fff; }
  .nav.is-scrolled .nav__toggle span { background: var(--ink); }
  .nav.is-open .nav__toggle span { background: #fff; }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 760px) {
  .services__grid, .scope-list, .quality__list, .about__right { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__prev { left: 12px; }
  .lightbox__next { right: 12px; }
  .contact__card { padding: 28px; }
}

@media (max-width: 540px) {
  .container { padding: 0 20px; }
  /* Compact, globe-only switcher so the brand name stays on one line */
  .lang-switch__current, .lang-switch__chev { display: none; }
  .lang-switch__toggle { padding: 9px; gap: 0; }
  .lang-switch { margin-right: 12px; }
  .hero { padding: 108px 0 72px; }
  .hero__stats { gap: 16px; margin-top: 44px; padding-top: 30px; }
  .stat__num { font-size: 1.55rem; }
  .stat__label { font-size: .66rem; letter-spacing: .03em; }
  .hero__actions { gap: 12px; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }
  .section__head { margin-bottom: 44px; }
  .footer { padding-top: 56px; }
  .footer__top { grid-template-columns: 1fr; gap: 34px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .contact__map iframe, .map-facade { height: 300px; }

  .contact__card { padding: 24px 20px; }
  .contact-action { padding: 14px; gap: 14px; align-items: center; }
  .contact-action__ico { width: 42px; height: 42px; }
  .contact-action__ico svg { width: 21px; height: 21px; }
  .contact-action__text small { font-size: .68rem; }
  .contact-action__text strong { font-size: .96rem; }
  .contact-action .arrow { width: 16px; height: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Multi-page components
   ========================================================= */

/* ---------- Active nav link (desktop only — mobile overlay styles it separately) ---------- */
@media (min-width: 901px) {
  .nav__links a.is-active:not(.nav__cta) { color: var(--cyan); }
  .nav__links a.is-active:not(.nav__cta)::after { width: 100%; }
  .nav:not(.is-scrolled) .nav__links a.is-active:not(.nav__cta) { color: #fff; }
  .nav:not(.is-scrolled) .nav__links a.is-active:not(.nav__cta)::after { background: #fff; }
}

/* ---------- Page hero (subpage banner) ---------- */
.pagehero { position: relative; background: var(--grad-dark); color: #fff; overflow: hidden;
  padding: 116px 0 60px; }
.pagehero__bg { position: absolute; inset: 0; z-index: 0; }
.pagehero__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; }
.pagehero__title { font-family: var(--font-display); font-weight: 600; line-height: 1.06;
  font-size: clamp(2.1rem, 4.4vw, 3.3rem); letter-spacing: -0.03em; margin: 10px 0 18px; }
.pagehero__title em { display: block; font-style: normal; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pagehero__lead { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: rgba(255,255,255,.78); max-width: 640px; margin-left: auto; margin-right: auto; }
.crumb { margin-top: 26px; font-size: .85rem; letter-spacing: .02em; color: rgba(255,255,255,.5); display: flex; gap: 10px; align-items: center; justify-content: center; }
.crumb a { color: rgba(255,255,255,.8); transition: color .3s; }
.crumb a:hover { color: var(--cyan-2); }
.crumb span { color: var(--cyan-2); }

/* ---------- Section head left variant ---------- */
.section__head--left { margin-left: 0; margin-right: auto; text-align: left; }

/* ---------- Mission & Vision / values intro split ---------- */
.intro-split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.intro-split .kicker { color: var(--cyan); }
.intro-split h2 { margin: 4px 0 22px; }
.intro-split p { color: var(--text-soft); margin-bottom: 18px; max-width: 540px; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.mv-card__ico { width: 54px; height: 54px; border-radius: 14px; display: grid; place-content: center;
  color: #fff; background: var(--grad-brand); margin-bottom: 20px; }
.mv-card__ico svg { width: 26px; height: 26px; }
.mv-card h3 { font-size: 1.4rem; color: var(--ink); margin-bottom: 12px; }
.mv-card p { color: var(--text-soft); }

/* ---------- Why choose us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card { padding: 34px 30px; border-radius: var(--radius); border: 1px solid var(--line);
  background: var(--white); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.why-card__ico { width: 52px; height: 52px; border-radius: 13px; display: grid; place-content: center;
  color: var(--cyan); background: rgba(31,162,214,.1); border: 1px solid rgba(31,162,214,.18);
  margin-bottom: 18px; transition: background .4s var(--ease), color .4s var(--ease), border-color .4s; }
.why-card__ico svg { width: 25px; height: 25px; }
.why-card:hover .why-card__ico { background: var(--grad-brand); color: #fff; border-color: transparent; }
.why-card h3 { font-size: 1.14rem; color: var(--ink); margin-bottom: 8px; }
.why-card p { color: var(--text-soft); font-size: .94rem; }

/* ---------- Process steps ---------- */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.process-step { position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 30px; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.process-step::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--grad-brand);
  transform: scaleY(0); transform-origin: top; transition: transform .45s var(--ease); }
.process-step:hover::before { transform: scaleY(1); }
.process-step__no { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; line-height: 1;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 14px; display: block; }
.process-step h3 { font-size: 1.14rem; color: var(--ink); margin-bottom: 8px; }
.process-step p { color: var(--text-soft); font-size: .94rem; }

/* ---------- Industries ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ind-card { display: flex; align-items: center; gap: 16px; padding: 22px 24px; border-radius: var(--radius);
  background: var(--paper); border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.ind-card:hover { transform: translateX(6px); box-shadow: var(--shadow-soft); border-color: transparent; }
.ind-card__ico { width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px; display: grid; place-content: center;
  color: var(--cyan); background: rgba(31,162,214,.1); border: 1px solid rgba(31,162,214,.16); }
.ind-card__ico svg { width: 23px; height: 23px; }
.ind-card h4 { color: var(--ink); font-size: 1.02rem; }

/* ---------- Company detail strip ---------- */
.detail-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.detail-card { padding: 30px 24px; border-radius: var(--radius); background: var(--white);
  border: 1px solid var(--line); text-align: center; box-shadow: var(--shadow-soft); }
.detail-card strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); margin-bottom: 6px; }
.detail-card span { font-size: .82rem; color: var(--text-soft); letter-spacing: .03em; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-dark); color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,162,214,.3), transparent 70%); top: -160px; left: -80px; filter: blur(70px); }
.cta-band::after { content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(76,198,106,.28), transparent 70%); bottom: -160px; right: -60px; filter: blur(70px); }
.cta-band__inner { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-band h2 { color: #fff; margin-bottom: 18px; }
.cta-band p { color: rgba(255,255,255,.75); margin-bottom: 32px; font-size: 1.06rem; }
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Section tints ---------- */
.bg-white { background: var(--white); }
.bg-paper { background: var(--paper); }

/* ---------- Multi-page responsive ---------- */
@media (max-width: 940px) {
  .intro-split { grid-template-columns: 1fr; gap: 44px; }
  .mv-grid, .why-grid, .process-grid, .ind-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .pagehero { padding: 104px 0 52px; }
  .mv-grid, .why-grid, .process-grid, .ind-grid, .detail-grid { grid-template-columns: 1fr; }
  .mv-card { padding: 30px; }
}
