/* =========================================================
   VIAAN ENTERPRISES
   Industrial engineering — editorial "drafting ledger" system
   A warm, hand-drafted identity: cream paper, ink rules,
   plum + steel-blue + amber drawn from the VE monogram.
   ========================================================= */

:root {
  /* ---- Brand palette (from the VE logo) ---- */
  --plum-900: #2f0f3c;
  --plum-800: #3f174f;
  --plum-700: #521f65;
  --plum:     #6a2a86;
  --plum-400: #8a4aa5;
  --blue:     #3f6db4;
  --blue-600: #345c9c;
  --blue-100: #e3ecf8;
  --amber:    #f0a636;
  --amber-600:#df8f1c;
  --amber-100:#fae4bd;

  /* ---- Neutrals (warm) ---- */
  --ink:       #2a2130;
  --ink-soft:  #635a6d;
  --paper:     #f5efe4;
  --paper-2:   #ece3d3;
  --card:      #fffdf7;
  --cream:     #fbf6ec;
  --line:      rgba(42, 33, 48, 0.16);
  --line-soft: rgba(42, 33, 48, 0.09);
  --grid:      rgba(42, 33, 48, 0.035);
  --white:     #ffffff;

  /* ---- Effects ---- */
  --shadow-hard:  6px 6px 0 rgba(47, 15, 60, 0.14);
  --shadow-amber: 5px 5px 0 var(--amber);
  --shadow-soft:  0 22px 44px -26px rgba(47, 15, 60, 0.4);
  --radius: 5px;
  --radius-lg: 8px;
  --maxw: 1240px;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-serif: Georgia, 'Times New Roman', 'Noto Serif', serif;
  --font-mono: ui-monospace, 'SF Mono', 'Roboto Mono', Menlo, Consolas, monospace;
}

/* ---------- 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(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 27px 27px;
  line-height: 1.68;
  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 30px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); }
h2 { font-size: clamp(1.9rem, 3.9vw, 3rem); }
h3 { font-size: 1.22rem; }
em { font-style: italic; }

::selection { background: var(--amber); color: var(--plum-900); }

/* Serif italic emphasis — the "written by a person" accent */
.ink-em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--plum); letter-spacing: 0; }
.underline-hand { position: relative; white-space: nowrap; }
.underline-hand::after {
  content: ''; position: absolute; left: -2%; right: -2%; bottom: -0.12em; height: 0.36em;
  background: no-repeat center/100% 100%
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 C 40 3, 70 10, 110 6 S 180 3, 198 7' fill='none' stroke='%23f0a636' stroke-width='3.4' stroke-linecap='round'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-content: center; gap: 20px; justify-items: center;
  background: var(--cream);
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__mark svg { width: 96px; height: auto; }
.pl-v, .pl-e { stroke-dasharray: 260; stroke-dashoffset: 260; animation: draw 1.5s var(--ease) forwards infinite alternate; }
.pl-e { animation-delay: .22s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.preloader__text {
  font-family: var(--font-mono); font-weight: 500; letter-spacing: .42em;
  color: var(--plum); font-size: .78rem; padding-left: .42em; text-transform: uppercase;
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--blue), var(--plum) 50%, var(--amber));
  z-index: 1000; transition: width .1s linear;
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 26px; bottom: 158px; z-index: 950;
  width: 48px; height: 48px; border: 1.5px solid var(--ink); border-radius: var(--radius); cursor: pointer;
  display: grid; place-content: center; color: var(--white); background: var(--plum);
  box-shadow: var(--shadow-hard);
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .3s var(--ease);
}
.to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { background: var(--amber); color: var(--plum-900); transform: translateY(-3px); }
.to-top svg { width: 20px; height: 20px; }
@media (max-width: 540px) { .to-top { right: 16px; bottom: 148px; width: 44px; height: 44px; } }

/* ---------- Floating quick-contact ---------- */
.fab { position: fixed; right: 26px; bottom: 26px; z-index: 940; display: flex; flex-direction: column; gap: 14px; }
.fab__btn { position: relative; width: 54px; height: 54px; border-radius: var(--radius);
  display: grid; place-content: center; color: #fff; border: 1.5px solid var(--ink);
  box-shadow: var(--shadow-hard); transition: transform .25s var(--ease); }
.fab__btn svg { width: 26px; height: 26px; }
.fab__btn--wa { background: #1faa54; }
.fab__btn--call { background: var(--blue); }
.fab__btn:hover { transform: translateY(-3px); }
.fab__btn--wa::after { content: ''; position: absolute; inset: -1.5px; border-radius: var(--radius);
  border: 1.5px solid #1faa54; animation: fabPulse 2.6s ease-out infinite; pointer-events: none; }
@keyframes fabPulse { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.5); opacity: 0; } }
@media (max-width: 540px) { .fab { right: 16px; bottom: 16px; gap: 12px; } .fab__btn { width: 50px; height: 50px; } }
@media (prefers-reduced-motion: reduce) { .fab__btn--wa::after { animation: none; } }

/* ---------- Brand mark ---------- */
.brand__mark svg, .footer__logo svg, .spec-card__logo svg { width: 100%; height: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 18px 0;
  transition: padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.nav.is-scrolled {
  padding: 10px 0;
  background: rgba(251, 246, 236, 0.9);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px -24px rgba(47, 15, 60, 0.5);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 52px; height: 36px; display: grid; place-content: center;
  background: var(--cream); border: 1.5px solid var(--ink); border-radius: var(--radius); padding: 5px 7px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.brand:hover .brand__mark { transform: translate(-1px,-1px); box-shadow: 3px 3px 0 var(--amber); }
.brand__text { display: flex; flex-direction: column; line-height: 1.02; }
.brand__text strong { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: .06em; color: var(--plum); }
.brand__text small { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { position: relative; font-family: var(--font-mono); font-weight: 500; font-size: .8rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--ink); transition: color .25s; }
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -7px; height: 2px; width: 0;
  background: var(--amber); transition: width .3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__links a:hover { color: var(--plum); }

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

/* Home page only: nav sits directly over the dark hero-band photo before scrolling,
   so logo/links/controls need to render light instead of the ink-dark default.
   Scoped structurally (nav immediately followed by a main containing .hero) rather
   than a static class, so it stays correct across the site's client-side router,
   which swaps #app's content but never touches this header element. */
.nav:has(+ main .hero):not(.is-scrolled) .brand__text strong { color: #fff; }
.nav:has(+ main .hero):not(.is-scrolled) .brand__text small { color: rgba(255,255,255,.7); }
.nav:has(+ main .hero):not(.is-scrolled) .brand__mark { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.35); }
.nav:has(+ main .hero):not(.is-scrolled) .nav__links a { color: rgba(255,255,255,.9); }
.nav:has(+ main .hero):not(.is-scrolled) .nav__links a:hover { color: var(--amber); }
.nav:has(+ main .hero):not(.is-scrolled) .nav__links a.is-active { color: var(--amber); }
.nav:has(+ main .hero):not(.is-scrolled) .nav__links a.is-active::after { background: var(--amber); }
.nav:has(+ main .hero):not(.is-scrolled) .nav__toggle span { background: #fff; }
.nav:has(+ main .hero):not(.is-scrolled) .lang-switch__toggle { color: #fff; border-color: rgba(255,255,255,.35); }
.nav:has(+ main .hero):not(.is-scrolled) .lang-switch__toggle:hover { border-color: var(--amber); color: var(--amber); }

/* ---------- Language switcher ---------- */
.lang-switch { position: relative; margin-left: 20px; }
.lang-switch__toggle {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 12px; border-radius: var(--radius);
  border: 1.5px solid var(--line); background: transparent; cursor: pointer;
  font-family: var(--font-mono); font-weight: 500; font-size: .74rem; letter-spacing: .08em;
  color: var(--ink); transition: color .25s, border-color .25s, background .25s;
}
.lang-switch__toggle:hover { border-color: var(--plum); color: var(--plum); }
.lang-switch__globe { width: 16px; height: 16px; 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); }

.lang-switch__menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 168px;
  display: none; flex-direction: column; gap: 2px; padding: 7px;
  background: var(--card); border: 1.5px solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow-hard); z-index: 1100;
}
.lang-switch__menu.is-open { display: flex; animation: langMenuIn .2s 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: 10px 14px; border: 0; border-radius: 3px; background: transparent;
  cursor: pointer; font-family: var(--font-body); font-size: .9rem; font-weight: 500; color: var(--ink);
  transition: background .18s, color .18s;
}
.lang-switch__menu button:hover { background: var(--blue-100); color: var(--blue-600); }
.lang-switch__menu button.is-active { background: var(--plum); color: #fff; font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: var(--radius); font-weight: 600; font-size: .82rem;
  font-family: var(--font-mono); letter-spacing: .04em; text-transform: uppercase;
  border: 1.5px solid var(--ink); position: relative;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease), color .28s var(--ease);
}
.btn--full { width: 100%; justify-content: center; }
.btn .arrow { width: 17px; height: 17px; position: relative; transition: transform .3s var(--ease); }
.btn .arrow::before { content: ''; position: absolute; top: 50%; left: 0; width: 13px; 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(4px); }
.btn--primary { background: var(--plum); color: #fff; }
.btn--primary:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-amber); background: var(--plum-700); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--plum); }
/* on dark sections */
.cta-band .btn--ghost, .footer .btn--ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.cta-band .btn--ghost:hover { box-shadow: 5px 5px 0 var(--amber); border-color: #fff; }

/* ---------- Eyebrow tag + kickers (drafting labels) ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-weight: 500; font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--plum);
}
.eyebrow::before { content: ''; width: 30px; height: 2px; background: var(--amber); }

.kicker {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-weight: 500;
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--plum); margin-bottom: 16px;
}
.kicker::before { content: '§'; font-size: 1em; color: var(--amber); font-weight: 700; }

/* ---------- Sections + heads ---------- */
.section { padding: clamp(64px, 8vw, 116px) 0; position: relative; }
.section__head { max-width: 680px; margin: 0 0 56px; }
.section__head p { color: var(--ink-soft); margin-top: 14px; font-size: 1.05rem; max-width: 620px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head--center .kicker { justify-content: center; }
.rule-top { border-top: 1.5px solid var(--ink); padding-top: 14px; }

/* section tints */
.bg-white { background: var(--card); }
.bg-paper { background: var(--paper-2); }
.bg-cream { background: var(--cream); }

/* ---------- HERO (home) — light editorial ---------- */
.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__grid { position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(42,33,48,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,33,48,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 70% 80% at 75% 30%, #000 10%, transparent 72%); }
.hero__watermark { position: absolute; right: -4%; top: 8%; width: 46%; max-width: 620px; opacity: .06; }
.hero__watermark svg { width: 100%; height: auto; }

.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 58px; align-items: center; }
.hero__content { max-width: 640px; min-width: 0; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-weight: 500;
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--plum);
  padding: 8px 14px; border: 1.5px solid var(--line); border-radius: 999px; margin-bottom: 26px; background: rgba(255,255,255,.5); }
.hero__eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
.hero__title { font-size: clamp(2.5rem, 6vw, 4.6rem); font-weight: 600; letter-spacing: -0.035em; color: var(--ink); }
.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: .1s; }
.hero__title .line:nth-child(3) > span { animation-delay: .2s; }
@keyframes rise { to { transform: translateY(0); } }
.hero__title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--plum); }
.hero__lead { font-size: clamp(1.04rem, 1.4vw, 1.2rem); color: var(--ink-soft); max-width: 560px; margin: 26px 0 34px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px;
  padding-top: 30px; border-top: 1.5px solid var(--ink); max-width: 580px; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  line-height: 1; white-space: nowrap; color: var(--plum); }
.stat__suffix { font-size: .5em; font-weight: 600; margin-left: 2px; color: var(--amber-600); }
.stat__label { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .06em; color: var(--ink-soft); text-transform: uppercase; line-height: 1.35; margin-top: 4px; }

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

/* Long-script safety */
.hero__title, .pagehero__title { overflow-wrap: break-word; }
html[lang="ta"] .hero__title { font-size: clamp(1.9rem, 6.6vw, 3.3rem); overflow-wrap: anywhere; }
html[lang="ta"] .pagehero__title { font-size: clamp(1.7rem, 6vw, 2.8rem); overflow-wrap: anywhere; }
html[lang="ta"] .hero__lead, html[lang="ta"] .pagehero__lead { overflow-wrap: anywhere; }
html[lang="hi"] .hero__title, html[lang="hi"] .pagehero__title { overflow-wrap: anywhere; }

/* ---------- Hero spec sheet (capability card) ---------- */
.hero__visual { position: relative; min-width: 0; }
.spec-card { position: relative; background: var(--card); border: 1.5px solid var(--ink); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow-hard); }
.spec-card__bp { display: none; }
.spec-card__head { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1.5px dashed var(--line); margin-bottom: 16px; }
.spec-card__logo { width: 52px; height: 38px; flex-shrink: 0; border-radius: var(--radius); padding: 5px 7px;
  background: var(--cream); border: 1.5px solid var(--ink); display: grid; place-content: center; }
.spec-card__title { margin-right: auto; min-width: 0; }
.spec-card__title strong { display: block; font-family: var(--font-display); color: var(--plum); font-size: .98rem; letter-spacing: .04em; }
.spec-card__title small { display: block; margin-top: 2px; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.spec-card__live { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: .58rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue-600); font-weight: 600; white-space: nowrap; flex-shrink: 0;
  padding: 5px 9px; border-radius: 999px; background: var(--blue-100); border: 1px solid rgba(63,109,180,.3); }
.spec-card__live i { width: 6px; height: 6px; border-radius: 50%; background: #1faa54; animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(31,170,84,.5); } 70% { box-shadow: 0 0 0 6px rgba(31,170,84,0); } 100% { box-shadow: 0 0 0 0 rgba(31,170,84,0); } }

.spec-card__list { display: grid; gap: 8px; }
.spec-card__list li { position: relative; display: flex; align-items: center; gap: 13px; padding: 11px 13px; border-radius: var(--radius);
  background: var(--cream); border: 1px solid var(--line-soft);
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease); }
.spec-card__list li.is-active { transform: translateX(5px); background: var(--amber-100); border-color: var(--amber); }
.spec-card__list li::before { content: ''; position: absolute; top: 8px; bottom: 8px; left: 0; width: 3px; background: var(--amber); border-radius: 3px; transform: scaleY(0); transform-origin: center; transition: transform .35s var(--ease); }
.spec-card__list li.is-active::before { transform: scaleY(1); }
.spec-row__ico { width: 36px; height: 36px; flex-shrink: 0; border-radius: var(--radius); display: grid; place-content: center;
  color: var(--blue); background: var(--blue-100); border: 1px solid rgba(63,109,180,.25); transition: background .35s, color .35s; }
.spec-card__list li.is-active .spec-row__ico { background: var(--plum); color: #fff; border-color: var(--plum); }
.spec-row__ico svg { width: 19px; height: 19px; }
.spec-row__txt { margin-right: auto; }
.spec-row__txt strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: .88rem; line-height: 1.25; }
.spec-row__txt small { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .04em; color: var(--ink-soft); }
.spec-row__no { font-family: var(--font-mono); font-size: .74rem; color: var(--plum-400); font-weight: 600; }

.spec-card__flow { display: flex; align-items: center; gap: 9px; margin-top: 16px; padding-top: 16px; border-top: 1.5px dashed var(--line); }
.flow-step { font-family: var(--font-mono); font-size: .68rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--plum); }
.flow-line { position: relative; flex: 1; height: 2px; border-radius: 2px; background: var(--line); overflow: hidden; }
.flow-line::after { content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 40%; border-radius: 2px; background: var(--amber); 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%); } }

/* Turnkey stamp chip */
.hero__chip { position: absolute; bottom: -22px; left: -18px; z-index: 3; display: flex; align-items: center; gap: 11px;
  padding: 12px 15px; border-radius: var(--radius); background: var(--plum); color: #fff; border: 1.5px solid var(--ink);
  box-shadow: var(--shadow-hard); transform: rotate(-3deg); }
.hero__chip-ico { width: 34px; height: 34px; flex-shrink: 0; border-radius: var(--radius); display: grid; place-content: center; background: var(--amber); color: var(--plum-900); }
.hero__chip-ico svg { width: 19px; height: 19px; }
.hero__chip strong { display: block; font-family: var(--font-display); font-size: .86rem; letter-spacing: .03em; }
.hero__chip small { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .04em; color: rgba(255,255,255,.75); }

/* ---------- Marquee (measurement strip) ---------- */
.marquee { background: var(--plum-900); color: #fff; padding: 14px 0; overflow: hidden;
  border-top: 2px solid var(--amber); border-bottom: 2px solid var(--amber); }
.marquee__track { display: flex; gap: 26px; white-space: nowrap; width: max-content; animation: marquee 30s linear infinite; }
.marquee__track span { font-family: var(--font-mono); font-weight: 500; font-size: .92rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.62); }
.marquee__track span:nth-child(even) { color: var(--amber); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- About preview ---------- */
.about { background: var(--card); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about__left h2 { margin: 4px 0 20px; }
.about__left p { color: var(--ink-soft); margin-bottom: 16px; max-width: 520px; }
.about__cred { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 24px; }
.cred__badge { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: var(--radius);
  background: var(--plum); color: #fff; font-family: var(--font-mono); font-weight: 500; font-size: .72rem; letter-spacing: .04em;
  text-transform: uppercase; border: 1.5px solid var(--ink); }
.cred__badge svg { width: 15px; height: 15px; flex: none; color: var(--amber); }
.cred__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cred__tags span { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .04em; padding: 6px 12px; border-radius: 999px;
  background: var(--cream); color: var(--plum); border: 1px solid var(--line); white-space: nowrap; }
.about__cta { margin-top: 24px; }
.about__right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Feature / why / mv / process share the "index tile" family */
.feature-card, .why-card, .mv-card, .process-step {
  position: relative; background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature-card:hover, .why-card:hover, .mv-card:hover, .process-step:hover {
  transform: translate(-3px,-3px); box-shadow: var(--shadow-hard); border-color: var(--ink);
}
.feature-card__icon, .why-card__ico, .mv-card__ico {
  width: 46px; height: 46px; border-radius: var(--radius); display: grid; place-content: center; margin-bottom: 16px;
  color: var(--blue); background: var(--blue-100); border: 1px solid rgba(63,109,180,.25);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s;
}
.feature-card__icon svg, .why-card__ico svg, .mv-card__ico svg { width: 23px; height: 23px; }
.feature-card:hover .feature-card__icon, .why-card:hover .why-card__ico, .mv-card:hover .mv-card__ico {
  background: var(--plum); color: #fff; border-color: var(--plum);
}
.feature-card h3, .why-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p, .why-card p { font-size: .93rem; color: var(--ink-soft); }
.about__right .feature-card:nth-child(even) { transform: translateY(22px); }
.about__right .feature-card:nth-child(even):hover { transform: translateY(22px) translate(-3px,-3px); }

/* ---------- Services grid ---------- */
.services { background: var(--paper); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service { position: relative; background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.service:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-hard); border-color: var(--ink); }
.service:focus-visible { outline: 2px solid var(--plum); outline-offset: 3px; }
.service__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; border-bottom: 1.5px solid var(--line); }
.service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); filter: saturate(1.02); }
.service:hover .service__media img { transform: scale(1.07); }
.service__no { position: absolute; left: 0; top: 0; z-index: 1; font-family: var(--font-mono); font-weight: 700; font-size: .9rem;
  color: var(--plum-900); background: var(--amber); padding: 6px 12px; border-right: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); border-bottom-right-radius: var(--radius); }
.service__body { padding: 24px 24px 26px; }
.service__body h3 { margin-bottom: 9px; }
.service__body p { color: var(--ink-soft); font-size: .94rem; }
.service__detail { display: none; }
.service__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-family: var(--font-mono); font-weight: 600; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--plum); transition: gap .25s var(--ease); }
.service:hover .service__more { gap: 12px; }
.service__more .arrow { position: relative; width: 15px; height: 15px; }
.service__more .arrow::before { content: ''; position: absolute; top: 50%; left: 0; width: 11px; height: 2px; background: currentColor; transform: translateY(-50%); }
.service__more .arrow::after { content: ''; position: absolute; top: 50%; right: 1px; width: 6px; height: 6px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: translateY(-50%) rotate(45deg); }

/* ---------- Service detail modal ---------- */
.smodal { position: fixed; inset: 0; z-index: 2100; display: none; }
.smodal.is-open { display: block; }
.smodal__backdrop { position: absolute; inset: 0; background: rgba(47,15,60,.62); backdrop-filter: blur(4px); animation: lbFade .3s var(--ease); }
.smodal__panel { position: absolute; left: 0; right: 0; top: 50%; margin: 0 auto; transform: translateY(-50%);
  width: min(860px, calc(100% - 40px)); max-height: calc(100% - 60px); overflow: auto;
  background: var(--card); border: 1.5px solid var(--ink); border-radius: var(--radius-lg); box-shadow: 0 40px 80px -30px rgba(47,15,60,.6);
  display: grid; grid-template-columns: 1.02fr 1fr; animation: smodalIn .32s var(--ease) both; }
@keyframes smodalIn { from { opacity: 0; transform: translateY(-46%); } to { opacity: 1; transform: translateY(-50%); } }
.smodal__media { position: relative; min-height: 280px; border-right: 1.5px solid var(--ink); }
.smodal__media img { width: 100%; height: 100%; object-fit: cover; }
.smodal__no { position: absolute; left: 0; top: 0; font-family: var(--font-mono); font-weight: 700; font-size: .95rem;
  color: var(--plum-900); background: var(--amber); padding: 7px 13px; border-right: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); border-bottom-right-radius: var(--radius); }
.smodal__content { padding: 36px 36px 34px; }
.smodal__eyebrow { font-family: var(--font-mono); font-weight: 600; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--plum); }
.smodal__content h3 { font-size: 1.5rem; margin: 10px 0 16px; }
.smodal__body { color: var(--ink-soft); font-size: .97rem; line-height: 1.7; }
.smodal__body p { margin-bottom: 14px; }
.smodal__body ul { display: grid; gap: 9px; }
.smodal__body li { position: relative; padding-left: 24px; }
.smodal__body li::before { content: ''; position: absolute; left: 2px; top: 9px; width: 9px; height: 9px; background: var(--amber); border: 1px solid var(--ink); }
.smodal__cta { margin-top: 26px; }
.smodal__close { position: absolute; top: 14px; right: 14px; z-index: 2; width: 38px; height: 38px; border-radius: var(--radius);
  display: grid; place-content: center; background: var(--card); border: 1.5px solid var(--ink); color: var(--ink);
  cursor: pointer; transition: background .25s, transform .25s; }
.smodal__close svg { width: 19px; height: 19px; }
.smodal__close:hover { background: var(--amber); transform: rotate(90deg); }
@media (max-width: 760px) {
  .smodal__panel { grid-template-columns: 1fr; max-height: calc(100% - 32px); }
  .smodal__media { min-height: 180px; max-height: 220px; border-right: 0; border-bottom: 1.5px solid var(--ink); }
  .smodal__content { padding: 26px 24px 28px; }
  .smodal__content h3 { font-size: 1.32rem; }
}

/* ---------- Scope tabs ---------- */
.scope { background: var(--card); }
.tabs { max-width: 1120px; margin: 0 auto; }
.tabs__nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.tab { padding: 11px 20px; border-radius: var(--radius); font-family: var(--font-mono); font-weight: 600; font-size: .74rem;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); background: var(--cream); border: 1.5px solid var(--line); transition: all .25s var(--ease); }
.tab:hover { color: var(--plum); border-color: var(--plum); }
.tab.is-active { background: var(--plum); color: #fff; border-color: var(--ink); }
.panel { display: none; }
.panel.is-active { display: block; }
.scope-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 36px; align-items: stretch; }
.panel.is-active .scope-visual { animation: scopeImg .6s var(--ease) both; }
@keyframes scopeImg { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.scope-visual { position: relative; border: 1.5px solid var(--ink); border-radius: var(--radius); overflow: hidden; min-height: 340px; box-shadow: var(--shadow-hard); }
.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.05); }
.scope-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(47,15,60,.72), transparent 55%); }
.scope-visual__tag { position: absolute; left: 16px; bottom: 16px; z-index: 1; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  padding: 6px 12px; background: var(--plum); border: 1.5px solid var(--ink); border-radius: var(--radius); }
.scope-list { display: grid; gap: 12px; align-content: center; }
.panel.is-active .scope-list li { animation: scopeRow .5s var(--ease) both; }
.panel.is-active .scope-list li:nth-child(2) { animation-delay: .06s; }
.panel.is-active .scope-list li:nth-child(3) { animation-delay: .12s; }
.panel.is-active .scope-list li:nth-child(4) { animation-delay: .18s; }
.panel.is-active .scope-list li:nth-child(5) { animation-delay: .24s; }
@keyframes scopeRow { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }
.scope-list li { display: flex; gap: 15px; align-items: center; padding: 16px 20px; border-radius: var(--radius);
  background: var(--cream); border: 1.5px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.scope-list li:hover { transform: translateX(5px); box-shadow: var(--shadow-hard); border-color: var(--ink); }
.scope-ico { width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--radius); display: grid; place-content: center;
  color: var(--blue); background: var(--blue-100); border: 1px solid rgba(63,109,180,.25); transition: background .3s, color .3s; }
.scope-ico svg { width: 22px; height: 22px; }
.scope-list li:hover .scope-ico { background: var(--plum); color: #fff; }
.scope-list h4 { font-size: 1.04rem; margin-bottom: 3px; }
.scope-list p { color: var(--ink-soft); font-size: .9rem; line-height: 1.5; }

/* ---------- Projects gallery ---------- */
.projects { background: var(--paper); }
.gallery-filter { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; }
.gallery-filter__btn { font-family: var(--font-mono); font-weight: 600; font-size: .72rem; letter-spacing: .04em; text-transform: uppercase;
  padding: 9px 15px; border-radius: var(--radius); border: 1.5px solid var(--line); background: var(--card); color: var(--ink-soft);
  cursor: pointer; transition: color .22s, border-color .22s, background .22s, transform .22s; }
.gallery-filter__btn:hover { border-color: var(--plum); color: var(--plum); transform: translateY(-1px); }
.gallery-filter__btn.is-active { background: var(--plum); border-color: var(--ink); color: #fff; }
.gallery-filter__btn .count { font-size: .82em; opacity: .7; margin-left: 5px; }
.gallery-empty { color: var(--ink-soft); font-size: 1.02rem; padding: 40px 0; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery__item { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  border: 1.5px solid var(--ink); box-shadow: var(--shadow-hard); transition: transform .3s var(--ease); }
.gallery__item.is-hidden { display: none; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery__item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(47,15,60,.85) 0%, rgba(47,15,60,.1) 46%, transparent 70%); opacity: .5; transition: opacity .4s var(--ease); }
.gallery__item:hover { transform: translateY(-3px); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: .96; }
.gallery__item figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 20px 18px 18px; color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; line-height: 1.25;
  transform: translateY(8px); opacity: 0; transition: transform .4s var(--ease), opacity .4s var(--ease); }
.gallery__item:hover figcaption { transform: none; opacity: 1; }
.gallery__item figcaption span { display: block; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); margin-bottom: 6px; font-weight: 600; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 2000; display: none; place-content: center; background: rgba(30,10,40,.94); backdrop-filter: blur(6px); 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: 2px solid var(--amber); border-radius: var(--radius); }
.lightbox__stage figcaption { color: #fff; font-family: var(--font-mono); font-size: .82rem; letter-spacing: .04em; }
.lightbox__close { position: absolute; top: 22px; right: 28px; font-size: 2.2rem; line-height: 1; color: #fff; opacity: .85; transition: opacity .3s, transform .3s; }
.lightbox__close:hover { opacity: 1; transform: rotate(90deg); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: var(--radius);
  font-size: 1.9rem; color: #fff; background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.28); display: grid; place-content: center; transition: background .3s; }
.lightbox__nav:hover { background: rgba(240,166,54,.28); }
.lightbox__prev { left: 28px; }
.lightbox__next { right: 28px; }

/* ---------- Quality (dark plum) ---------- */
.quality { background: var(--plum-900); color: #fff; position: relative; overflow: hidden; }
.quality::before { content: ''; position: absolute; inset: 0; opacity: .5;
  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: 44px 44px; mask-image: radial-gradient(ellipse 60% 70% at 80% 20%, #000, transparent 75%); }
.quality__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.quality__left h2 { color: #fff; margin: 4px 0 18px; }
.quality__left p { color: rgba(255,255,255,.74); max-width: 440px; }
.quality__left .kicker { color: var(--amber); }
.quality__left .kicker::before { color: var(--amber); }
.quality__list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quality__list li { display: flex; align-items: center; gap: 15px; padding: 20px 18px; border-radius: var(--radius);
  background: rgba(255,255,255,.04); border: 1.5px solid rgba(255,255,255,.14); transition: transform .3s var(--ease), background .3s, border-color .3s; }
.quality__list li:hover { transform: translateY(-4px); background: rgba(255,255,255,.08); border-color: var(--amber); }
.quality__list span { font-family: var(--font-mono); font-weight: 700; font-size: .95rem; color: var(--plum-900);
  width: 40px; height: 40px; display: grid; place-content: center; border-radius: var(--radius); background: var(--amber); flex-shrink: 0; }
.quality__list p { font-size: .94rem; font-weight: 500; }

/* ---------- Industries ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ind-card { display: flex; align-items: center; gap: 15px; padding: 20px 22px; border-radius: var(--radius);
  background: var(--card); border: 1.5px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.ind-card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-hard); border-color: var(--ink); }
.ind-card__ico { width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--radius); display: grid; place-content: center; color: var(--blue); background: var(--blue-100); border: 1px solid rgba(63,109,180,.25); }
.ind-card__ico svg { width: 22px; height: 22px; }
.ind-card h4 { font-size: 1rem; }

/* ---------- Process steps ---------- */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.process-step { overflow: hidden; }
.process-step::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--amber); transform: scaleY(0); transform-origin: top; transition: transform .4s var(--ease); }
.process-step:hover::before { transform: scaleY(1); }
.process-step__no { font-family: var(--font-display); font-weight: 700; font-size: 2.3rem; line-height: 1; color: var(--plum-400); margin-bottom: 12px; display: block; }
.process-step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.process-step p { color: var(--ink-soft); font-size: .93rem; }

/* ---------- Grid families ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { padding: 30px 26px; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mv-card { padding: 38px; }
.mv-card__ico { width: 52px; height: 52px; margin-bottom: 18px; color: #fff; background: var(--plum); border-color: var(--plum); }
.mv-card__ico svg { width: 25px; height: 25px; }
.mv-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.mv-card p { color: var(--ink-soft); }

/* ---------- Intro split (about story) ---------- */
.intro-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.intro-split h2 { margin: 4px 0 20px; }
.intro-split p { color: var(--ink-soft); margin-bottom: 16px; max-width: 540px; }
.about__chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.about__chips > span { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .04em; padding: 7px 13px; border-radius: 999px;
  background: var(--cream); color: var(--plum); border: 1px solid var(--line); }
.about__chips .chip--nsc { display: inline-flex; align-items: center; gap: 7px; background: var(--plum); color: #fff; border-color: var(--ink); text-transform: uppercase; }
.about__chips .chip--nsc svg { width: 14px; height: 14px; color: var(--amber); }

/* ---------- Company detail strip ---------- */
.detail-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.detail-card { padding: 30px 22px; border-radius: var(--radius); background: var(--card); border: 1.5px solid var(--line); text-align: left; }
.detail-card::before { content: ''; display: block; width: 26px; height: 3px; background: var(--amber); margin-bottom: 14px; }
.detail-card strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--plum); margin-bottom: 4px; }
.detail-card span { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--plum); color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; opacity: .55;
  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: 40px 40px; mask-image: radial-gradient(ellipse 70% 80% at 50% 0%, #000, transparent 75%); }
.cta-band__inner { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band h2 em { font-family: var(--font-serif); color: var(--amber); }
.cta-band p { color: rgba(255,255,255,.82); margin-bottom: 30px; font-size: 1.05rem; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn--primary { background: var(--amber); color: var(--plum-900); border-color: var(--ink); }
.cta-band .btn--primary:hover { background: var(--amber-600); box-shadow: 5px 5px 0 rgba(0,0,0,.25); }

/* ---------- FAQ ---------- */
.faq__list { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .3s var(--ease); }
.faq__item[open] { border-color: var(--ink); box-shadow: var(--shadow-hard); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px; font-family: var(--font-display); font-weight: 600; font-size: 1.04rem; transition: color .25s var(--ease); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--plum); }
.faq__icon { position: relative; flex: none; width: 18px; height: 18px; }
.faq__icon::before, .faq__icon::after { content: ''; position: absolute; background: var(--amber-600); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq__item[open] .faq__icon::after { transform: scaleY(0); opacity: 0; }
.faq__answer p { margin: 0; padding: 0 24px 22px; color: var(--ink-soft); font-size: .99rem; line-height: 1.7; }
.faq__item[open] .faq__answer { animation: faqOpen .32s var(--ease) both; }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------- Contact ---------- */
.contact { background: var(--paper); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.contact__info { min-width: 0; }
.contact__info h2 { margin: 4px 0 16px; }
.contact__info > p { color: var(--ink-soft); max-width: 440px; margin-bottom: 34px; }
.contact__details { display: grid; gap: 20px; }
.contact__details li { display: flex; gap: 15px; align-items: flex-start; min-width: 0; }
.contact__ico { width: 46px; height: 46px; flex-shrink: 0; display: grid; place-content: center; color: var(--blue);
  background: var(--card); border: 1.5px solid var(--ink); border-radius: var(--radius); }
.contact__ico svg { width: 21px; height: 21px; }
.contact__details strong { display: block; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--plum); margin-bottom: 4px; }
.contact__details div { min-width: 0; color: var(--ink); font-size: .96rem; line-height: 1.55; overflow-wrap: anywhere; }
.contact__details a { color: var(--blue-600); font-weight: 500; transition: color .3s; overflow-wrap: anywhere; }
.contact__details a:hover { color: var(--plum); }

.contact__card { min-width: 0; background: var(--card); padding: 38px; border-radius: var(--radius-lg); border: 1.5px solid var(--ink); box-shadow: var(--shadow-hard); align-self: start; }
.contact__card h3 { font-size: 1.35rem; margin-bottom: 8px; }
.contact__card > p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 24px; }
.contact__actions { display: grid; gap: 12px; }
.contact-action { display: flex; align-items: center; gap: 15px; padding: 15px 17px; border-radius: var(--radius);
  background: var(--cream); border: 1.5px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.contact-action:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-hard); border-color: var(--ink); }
.contact-action__ico { width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--radius); display: grid; place-content: center; color: #fff; background: var(--blue); }
.contact-action__ico svg { width: 22px; height: 22px; }
.contact-action__text { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; overflow-wrap: anywhere; }
.contact-action__text small { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.contact-action__text strong { font-family: var(--font-display); font-size: 1rem; color: var(--ink); }
.contact-action .arrow { margin-left: auto; color: var(--plum); width: 17px; height: 17px; position: relative; transition: transform .3s var(--ease); }
.contact-action .arrow::before { content: ''; position: absolute; top: 50%; left: 0; width: 13px; 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); }

.contact__map { grid-column: 1 / -1; margin-top: 6px; border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--ink); box-shadow: var(--shadow-hard); line-height: 0; }
.contact__map iframe { display: block; width: 100%; height: 400px; border: 0; }
.map-facade { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 13px; width: 100%; height: 400px; padding: 24px; border: 0; cursor: pointer; color: #fff; text-align: center; background: var(--plum-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(240,166,54,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(240,166,54,.14) 1px, transparent 1px); background-size: 38px 38px; mask-image: radial-gradient(circle at 50% 45%, #000, transparent 72%); }
.map-facade__pin { position: relative; display: grid; place-content: center; width: 54px; height: 54px; border-radius: var(--radius); color: var(--plum-900); background: var(--amber); border: 1.5px solid var(--ink); }
.map-facade__pin svg { width: 25px; height: 25px; }
.map-facade__text { position: relative; line-height: 1.4; }
.map-facade__text strong { display: block; font-family: var(--font-display); font-size: 1.08rem; }
.map-facade__text small { color: rgba(255,255,255,.72); font-family: var(--font-mono); font-size: .78rem; }
.map-facade__cta { position: relative; display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: var(--radius); font-family: var(--font-mono); font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; color: #fff; background: rgba(240,166,54,.16); border: 1.5px solid rgba(240,166,54,.5); }
.map-facade__cta svg { width: 16px; height: 16px; }

:where(article, aside, nav, section) h1 { font-size: 2rem; }

/* ---------- Page hero (subpages) ---------- */
.pagehero { position: relative; overflow: hidden; padding: 150px 0 62px; background: var(--cream); border-bottom: 1.5px solid var(--line); }
.pagehero__bg { position: absolute; inset: 0; z-index: 0; }
.pagehero__bg .hero__grid { mask-image: radial-gradient(ellipse 80% 90% at 50% 20%, #000 20%, transparent 78%); }
.pagehero__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.pagehero .hero__eyebrow { margin-bottom: 20px; }
.pagehero__title { font-family: var(--font-display); font-weight: 600; line-height: 1.05; font-size: clamp(2.1rem, 4.2vw, 3.2rem); letter-spacing: -0.03em; margin: 6px 0 16px; }
.pagehero__title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--plum); }
.pagehero__lead { font-size: clamp(1.02rem, 1.4vw, 1.16rem); color: var(--ink-soft); max-width: 640px; }
.crumb { margin-top: 22px; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); display: flex; gap: 9px; align-items: center; }
.crumb a { color: var(--plum); transition: color .3s; }
.crumb a:hover { color: var(--amber-600); }
.crumb span { color: var(--ink-soft); }

/* ---------- Footer ---------- */
.footer { background: var(--plum-900); color: rgba(255,255,255,.68); padding: 70px 0 0; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--plum-400) 50%, var(--amber)); }
.footer__top { display: grid; grid-template-columns: 1.7fr 1fr 1.4fr; gap: 46px; padding-bottom: 44px; }
.footer__logo { display: inline-flex; align-items: center; gap: 12px; }
.footer__logo .brand__mark { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.25); }
.footer__logo-text strong { font-family: var(--font-display); color: #fff; font-size: 1.05rem; letter-spacing: .06em; display: block; }
.footer__logo-text small { font-family: var(--font-mono); color: rgba(255,255,255,.5); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; }
.footer__col--brand p { margin-top: 18px; font-size: .92rem; line-height: 1.7; max-width: 340px; }
.footer__col h4 { color: #fff; font-family: var(--font-mono); font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; }
.footer__links { display: flex; flex-direction: column; gap: 11px; align-items: flex-start; }
.footer__links a { font-size: .93rem; transition: color .3s, padding .3s; }
.footer__links a:hover { color: var(--amber); padding-left: 4px; }
.footer__contact { display: flex; flex-direction: column; gap: 14px; 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(--amber); margin-top: 2px; }
.footer__contact a { transition: color .3s; overflow-wrap: anywhere; }
.footer__contact a:hover { color: var(--amber); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px 26px; flex-wrap: wrap;
  padding: 20px 0 24px; border-top: 1px solid rgba(255,255,255,.1); font-family: var(--font-mono); font-size: .72rem; letter-spacing: .02em; color: rgba(255,255,255,.5); }
.footer__legal { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 12px; }
.footer__dot { opacity: .5; }
.footer__credit-link { color: rgba(255,255,255,.82); font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.3); transition: color .25s, border-color .25s; }
.footer__credit-link:hover { color: var(--amber); border-color: var(--amber); }

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

/* ---------- Active nav (desktop) ---------- */
@media (min-width: 901px) {
  .nav__links a.is-active { color: var(--plum); }
  .nav__links a.is-active::after { width: 100%; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .about__grid, .quality__grid, .contact__grid, .intro-split { grid-template-columns: 1fr; gap: 44px; }
  .services__grid, .why-grid, .process-grid, .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .about__right .feature-card:nth-child(even) { transform: none; }
  .about__right .feature-card:nth-child(even):hover { transform: translate(-3px,-3px); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .scope-layout { grid-template-columns: 1fr; gap: 24px; }
  .scope-visual { min-height: 250px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__content { max-width: 720px; }
  .hero__visual { max-width: 460px; }
  .mv-grid, .detail-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 38px 30px; }
  .footer__col--brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .nav.is-open { 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,.6); }
  .nav.is-open .brand__mark { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); }

  .nav__links { position: fixed; inset: 0; z-index: 1201; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    background: var(--plum-900); padding: 104px 30px 40px; transform: translateX(100%); transition: transform .4s var(--ease); overflow-y: auto; }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; text-transform: none; letter-spacing: 0;
    padding: 22px 4px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.12); }
  .nav__links a::after { content: ''; display: block; position: static; width: 9px; height: 9px; 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; }
  .nav__links a:hover::after { border-color: var(--amber); width: 9px; }
  .nav__links a.is-active { color: var(--amber); }
  .nav__links a.is-active::after { border-color: var(--amber); }

  .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); }
  .nav__toggle { display: flex; position: relative; z-index: 1203; }
  .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: 720px) {
  .services__grid, .why-grid, .process-grid, .ind-grid, .mv-grid, .detail-grid, .quality__list, .about__right { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery__item figcaption { transform: none; opacity: 1; font-size: .86rem; padding: 26px 12px 11px;
    background: linear-gradient(to top, rgba(47,15,60,.92) 0%, rgba(47,15,60,.5) 55%, transparent 100%); }
  .gallery__item::after { opacity: 0; }
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__prev { left: 12px; } .lightbox__next { right: 12px; }
  .hero__chip { left: 0; }
}
@media (max-width: 540px) {
  .container { padding: 0 20px; }
  .lang-switch__current, .lang-switch__chev { display: none; }
  .lang-switch__toggle { padding: 9px; gap: 0; }
  .hero__eyebrow { font-size: .64rem; letter-spacing: .08em; padding: 7px 12px; border-radius: 12px; gap: 8px; }
  .hero__eyebrow::before { width: 6px; height: 6px; }
  .hero__stats { gap: 14px; margin-top: 40px; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }
  .section__head { margin-bottom: 40px; }
  .footer { padding-top: 54px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .contact__card { padding: 26px 22px; }
  .contact__map iframe, .map-facade { height: 300px; }
  .mv-card { padding: 28px; }
}
@media (max-width: 400px) { .gallery { grid-template-columns: 1fr; } }

@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; }
  .hero__title .line > span { transform: none; }
}

/* =========================================================
   Full-bleed image band — photo-backed section with overlay copy
   ========================================================= */
.imgband { position: relative; overflow: hidden; background: var(--plum-900); }
.imgband__media { position: relative; aspect-ratio: 21 / 9; min-height: 320px; }
.imgband__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05); }
.imgband__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(47,15,60,.92) 0%, rgba(47,15,60,.72) 34%, rgba(47,15,60,.32) 62%, rgba(47,15,60,.1) 100%);
}
.imgband__content { position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; }
.imgband__inner { max-width: 560px; }
.imgband .eyebrow { color: var(--amber); }
.imgband .eyebrow::before { background: var(--amber); }
.imgband h2 { color: #fff; margin: 12px 0 14px; font-size: clamp(1.6rem, 3.2vw, 2.5rem); }
.imgband h2 em { font-family: var(--font-serif); font-style: italic; color: var(--amber); }
.imgband p { color: rgba(255,255,255,.82); font-size: 1.02rem; max-width: 460px; }
.imgband__tag {
  position: absolute; right: 0; top: 0; z-index: 2; font-family: var(--font-mono); font-weight: 700; font-size: .78rem;
  color: var(--plum-900); background: var(--amber); padding: 8px 16px;
  border-left: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); border-bottom-left-radius: var(--radius);
  letter-spacing: .06em; text-transform: uppercase;
}
@media (max-width: 720px) { .imgband__media { aspect-ratio: 4 / 5; min-height: 380px; } .imgband__inner { max-width: 92%; } }

/* ---------- Quote / policy stamp band (dark plum) ---------- */
.quote-band { background: var(--plum-900); color: #fff; position: relative; overflow: hidden; padding: clamp(52px, 7vw, 84px) 0; }
.quote-band::before { content: ''; position: absolute; inset: 0; opacity: .5;
  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: 44px 44px; mask-image: radial-gradient(ellipse 65% 80% at 50% 50%, #000, transparent 78%); }
.quote-block { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; text-align: center; }
.quote-block__mark { font-family: var(--font-serif); font-size: 3.4rem; line-height: 1; color: var(--amber); display: block; margin-bottom: 6px; }
.quote-block blockquote { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.3rem, 3vw, 2rem); line-height: 1.35; letter-spacing: -.01em; }
.quote-block blockquote em { font-family: var(--font-serif); font-style: italic; color: var(--amber); font-weight: 400; }
.quote-block cite { display: block; margin-top: 22px; font-family: var(--font-mono); font-style: normal; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.58); }

/* ---------- Photo strip (framed image trio) ---------- */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.photo-strip__item { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--ink); box-shadow: var(--shadow-hard); }
.photo-strip__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.photo-strip__item:hover img { transform: scale(1.06); }
@media (max-width: 720px) { .photo-strip { grid-template-columns: 1fr 1fr; } .photo-strip__item:nth-child(3) { display: none; } }

/* =========================================================
   HOME — photo-driven hero (process strip / photo band / trio / feature row)
   ========================================================= */

/* ---------- Numbered process photo strip ---------- */
#home { padding-bottom: 0; }
.process-strip { position: relative; background: var(--paper-2); border-bottom: 1.5px solid var(--ink); }
.process-strip__tag {
  position: absolute; right: 0; top: 0; z-index: 3; font-family: var(--font-mono); font-weight: 700; font-size: .74rem;
  color: var(--plum-900); background: var(--amber); padding: 8px 16px;
  border-left: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); border-bottom-left-radius: var(--radius);
  letter-spacing: .06em; text-transform: uppercase;
}
.process-strip__head { padding: 24px 30px 18px; }
.process-strip__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.5px; background: var(--ink); }
.process-strip__item { position: relative; background: var(--paper); display: flex; flex-direction: column; }
.process-strip__photo { position: relative; aspect-ratio: 3 / 4; overflow: hidden; }
.process-strip__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.process-strip__item:hover .process-strip__photo img { transform: scale(1.07); }
.process-strip__badge {
  position: absolute; left: 9px; top: 9px; z-index: 2; width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-content: center; font-family: var(--font-mono); font-weight: 700; font-size: .7rem;
  background: var(--plum-900); color: #fff; border: 1.5px solid var(--ink);
}
.process-strip__cap {
  padding: 10px 8px 12px; font-family: var(--font-mono); font-size: .64rem; font-weight: 600; letter-spacing: .03em;
  text-transform: uppercase; color: var(--ink); text-align: center; line-height: 1.32; background: var(--card);
}
@media (max-width: 900px) { .process-strip__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) {
  .process-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .process-strip__cap { font-size: .6rem; }
}

/* ---------- Hero photo band (dark plum, headline + copy + stats + CTAs) ---------- */
.hero-band { position: relative; overflow: hidden; background: var(--plum-900); padding: clamp(140px, 16vw, 168px) 0 clamp(52px, 8vw, 86px); }
.hero-band__media { position: absolute; inset: 0; z-index: 0; }
.hero-band__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05); }
.hero-band__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(47,15,60,.94) 0%, rgba(47,15,60,.82) 45%, rgba(47,15,60,.94) 100%);
}
.hero-band__inner { position: relative; z-index: 1; max-width: 720px; }
.hero-band__badge {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-weight: 500;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: #fff;
  padding: 8px 14px; border: 1.5px solid rgba(255,255,255,.32); border-radius: 999px;
  background: rgba(255,255,255,.08); margin-bottom: 22px;
}
.hero-band__badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }
@media (max-width: 540px) {
  .hero-band__badge { font-size: .64rem; letter-spacing: .08em; padding: 7px 12px; border-radius: 12px; gap: 8px; }
  .hero-band__badge::before { width: 6px; height: 6px; }
}
.hero-band__title { color: #fff; font-size: clamp(2rem, 4.4vw, 3.15rem); letter-spacing: -.03em; margin-bottom: 16px; }
.hero-band__title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--amber); }
.hero-band__lead { color: rgba(255,255,255,.84); font-size: clamp(1rem, 1.3vw, 1.14rem); max-width: 600px; }
.hero-band .hero__stats { border-top-color: rgba(255,255,255,.25); max-width: 600px; }
.hero-band .stat__num { color: #fff; }
.hero-band .stat__label { color: rgba(255,255,255,.66); }
.hero-band .hero__actions { margin-top: 34px; }
.hero-band .btn--ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.hero-band .btn--ghost:hover { box-shadow: 5px 5px 0 var(--amber); border-color: #fff; }
html[lang="ta"] .hero-band__title, html[lang="hi"] .hero-band__title { overflow-wrap: anywhere; }

/* ---------- Photo trio wrapper spacing (reuses .photo-strip) ---------- */
.hero-photos { padding-top: 8px; padding-bottom: 4px; }

/* ---------- Feature row (icon + short label, reuses .why-card__ico) ---------- */
.hero-features { padding-top: 30px; }
.feature-row {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; margin-top: 22px;
  padding: 34px 0 62px; border-top: 1.5px dashed var(--line);
}
.feature-row__item { display: flex; flex-direction: column; align-items: flex-start; min-width: 0; }
.feature-row__item .why-card__ico { margin-bottom: 14px; }
.feature-row__label { font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--ink); line-height: 1.3; }
@media (max-width: 900px) { .feature-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) {
  .feature-row { grid-template-columns: 1fr; gap: 14px; padding: 28px 0 48px; }
  .feature-row__item { flex-direction: row; align-items: center; gap: 14px; }
  .feature-row__item .why-card__ico { width: 40px; height: 40px; margin-bottom: 0; flex-shrink: 0; }
  .feature-row__item .why-card__ico svg { width: 20px; height: 20px; }
}
