/* ============================================================
   GLOBAL LANGUAGES — pr_6  |  Elegant navy + glowing world map
   Navy #010c1a, teal #137374, gold arcs. Playfair + Inter.
   ============================================================ */
:root {
  --navy: #010c1a;
  --navy-2: #0a1c2e;
  --navy-card: #13232f;
  --navy-border: #26333f;
  --teal: #137374;
  --teal-d: #0d5d5e;
  --gold: #e2b68a;
  --ink: #1a2230;
  --body: #5a6068;
  --kicker: #8a8f96;
  --bg: #fcfbfa;
  --bg-warm: #f8f7f6;
  --card: #ffffff;
  --line: #e6e3df;
  --on-dark: #c9d2da;
  --maxw: 1180px;
  --e: cubic-bezier(.22, 1, .36, 1);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); background: var(--bg); color: var(--body); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 36px; }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); font-weight: 600; line-height: 1.15; }
::selection { background: var(--teal); color: #fff; }

.kicker { font-family: var(--sans); font-size: .76rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--kicker); }
.kicker--light { color: #8fa1ad; }
.section { padding: clamp(60px, 6.5vw, 92px) 0; }
/* short single-row sections need less height so they don't look empty */
.why, .process { padding-block: clamp(52px, 5vw, 74px); }
/* leave room for the fixed header when jumping to a section via nav links */
.section, .langs, #top { scroll-margin-top: 86px; }
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head .kicker { margin-bottom: 12px; }
.sec-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 600; }

/* deliberate dark/light section rhythm */
.section--dark { background: var(--navy); }
.section--dark .sec-head h2 { color: #fff; }
.section--dark .sec-head .kicker { color: #8fa1ad; }
.section--dark .sec-sub { color: var(--on-dark); }

/* accessible focus ring (also reads as craft) */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 3px; }
.section--dark a:focus-visible, .section--dark button:focus-visible { outline-color: var(--gold); }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; font-family: var(--sans); font-weight: 500; font-size: .94rem; border-radius: 4px; transition: background .25s var(--e), color .25s, transform .25s var(--e), border-color .25s; }
.btn--block { width: 100%; }
.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { background: var(--teal-d); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--outline { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn--outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

/* ============================================================ HEADER */
.hdr { position: absolute; top: 0; left: 0; right: 0; z-index: 60; }
.hdr.fixed { position: fixed; background: rgba(1,12,26,.9); backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(255,255,255,.06); }
.hdr__in { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo svg { width: 36px; height: 36px; fill: none; stroke: #fff; stroke-width: 1.4; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand__txt strong { font-family: var(--serif); font-weight: 600; font-size: 1.16rem; letter-spacing: .14em; color: #fff; }
.brand__txt span { font-family: var(--serif); font-size: .68rem; letter-spacing: .28em; color: #fff; opacity: .85; margin-top: 1px; }
.nav { display: flex; gap: 34px; margin-left: auto; }
.nav a { font-size: .92rem; color: #e8ecf1; position: relative; transition: color .2s; }
.nav a::after { content: ''; position: absolute; left: 0; bottom: -5px; width: 0; height: 1.5px; background: var(--teal); transition: width .25s var(--e); }
.nav a:hover::after { width: 100%; }
.hdr__right { display: flex; align-items: center; gap: 16px; }
.hdr__cta { display: none; padding: 9px 18px; font-size: .85rem; }
.hdr.fixed .hdr__cta { display: inline-flex; }
.lang { display: flex; align-items: center; gap: 9px; font-size: .85rem; }
.lang-btn { font-weight: 500; color: rgba(255,255,255,.55); position: relative; padding-bottom: 4px; transition: color .2s; }
.lang-btn + .lang-btn::before { content: '|'; color: rgba(255,255,255,.25); position: absolute; left: -7px; }
.lang-btn.is-active { color: #fff; }
.lang-btn.is-active::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: var(--teal); }
.lang-btn:hover { color: #fff; }
.burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s var(--e); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================ HERO */
.hero { position: relative; background: var(--navy); min-height: 100vh; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg picture { display: block; position: absolute; inset: 0; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center right; transform: scale(1.06); animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
/* Left-to-right + top/bottom veil so text stays readable over the photo */
.hero__veil { position: absolute; inset: 0; background:
  linear-gradient(90deg, var(--navy) 18%, rgba(1,12,26,.82) 38%, rgba(1,12,26,.40) 62%, rgba(1,12,26,.14) 100%),
  linear-gradient(180deg, rgba(1,12,26,.35) 0%, transparent 22%, transparent 64%, rgba(1,12,26,.92) 100%); }
.hero__in { position: relative; z-index: 2; padding: 150px 0 120px; width: 100%; }
.hero__copy { max-width: 560px; }

/* badge */
.hero__badge { display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.04); backdrop-filter: blur(6px); border-radius: 100px; font-size: .8rem; font-weight: 500; color: var(--on-dark); letter-spacing: .02em; margin-bottom: 26px; }
.hero__badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 0 rgba(19,115,116,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(19,115,116,.55); } 70% { box-shadow: 0 0 0 9px rgba(19,115,116,0); } 100% { box-shadow: 0 0 0 0 rgba(19,115,116,0); } }

/* title with line-by-line reveal */
.hero__title { font-family: var(--serif); font-size: clamp(2.8rem, 6.4vw, 5rem); font-weight: 600; color: #fff; line-height: 1.02; letter-spacing: -.015em; }
.hero__title .hl { display: block; overflow: hidden; }
.hero__title .hl > * { display: inline-block; }
.hero__title .hl { opacity: 0; transform: translateY(105%); transition: opacity .9s var(--e), transform .9s var(--e); }
.hero__title .hl.in { opacity: 1; transform: none; }
.hero__title .hl--accent { color: transparent; background: linear-gradient(100deg, #fff 20%, var(--gold) 100%); -webkit-background-clip: text; background-clip: text; }
.hero__lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--on-dark); margin: 26px 0 34px; max-width: 36ch; }
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn__arr { transition: transform .3s var(--e); }
.btn--teal:hover .btn__arr { transform: translateX(4px); }
.hero__trust { display: flex; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.hero__trust li { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: #fff; }
.chk svg { width: 20px; height: 20px; fill: none; stroke: var(--teal); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.chk svg circle { stroke: var(--teal); }

/* hero stats bar (bottom) */
.hero__stats { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; border-top: 1px solid rgba(255,255,255,.1); background: linear-gradient(180deg, transparent, rgba(1,12,26,.5)); }
.hero__stats-in { display: grid; grid-template-columns: repeat(4, 1fr); }
.hstat { padding: 22px 4px; text-align: center; border-left: 1px solid rgba(255,255,255,.08); }
.hstat:first-child { border-left: none; }
.hstat strong { display: block; font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 600; color: #fff; line-height: 1; }
.hstat span { display: block; font-size: .8rem; color: var(--on-dark); margin-top: 5px; letter-spacing: .01em; }

/* scroll indicator — vertical, pinned to far right above the stats bar */
.hero__scroll { position: absolute; right: 40px; bottom: 132px; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 12px; transition: opacity .3s; }
.hero__scroll-txt { font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; color: var(--on-dark); writing-mode: vertical-rl; }
.hero__scroll-line { width: 1px; height: 46px; background: rgba(255,255,255,.25); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ''; position: absolute; top: -46px; left: 0; width: 100%; height: 46px; background: linear-gradient(var(--gold), transparent); animation: scrolldn 2s var(--e) infinite; }
@keyframes scrolldn { to { transform: translateY(92px); } }

/* ============================================================ SERVICES */
.services { background: var(--bg); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; transition: transform .3s var(--e), box-shadow .3s var(--e), border-color .3s; }
.svc:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -28px rgba(1,12,26,.45); border-color: rgba(19,115,116,.4); }
.svc__media { position: relative; height: 172px; overflow: hidden; }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--e); }
.svc:hover .svc__media img { transform: scale(1.06); }
.svc__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(1,12,26,.12), rgba(1,12,26,.32)); }
.svc__num { position: absolute; top: 14px; left: 14px; z-index: 2; width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center; background: rgba(1,12,26,.55); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.18); color: #fff; font-family: var(--serif); font-weight: 600; font-size: 1rem; }
.svc__body { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 24px; }
.svc__body h3 { font-size: 1.16rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; line-height: 1.25; }
.svc__body p { font-size: .9rem; color: var(--body); }
.svc__bul { margin-top: 12px; display: flex; flex-direction: column; gap: 5px; }
.svc__bul li { position: relative; padding-left: 18px; font-size: .88rem; color: var(--ink); font-weight: 500; }
.svc__bul li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.svc__more { margin-top: auto; padding-top: 16px; font-size: .86rem; font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; gap: 6px; }
.svc__more span { transition: transform .3s var(--e); display: inline-block; }
.svc:hover .svc__more span { transform: translateX(4px); }
.svc-more { text-align: center; margin-top: 48px; }

/* ============================================================ LANGUAGES BAND */
.langs { position: relative; background: var(--navy-2); padding: 70px 0; overflow: hidden; }
.langs__map { position: absolute; left: -8%; top: 50%; transform: translateY(-50%); width: 50%; opacity: .25; z-index: 0; }
.langs__in { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: center; }
.langs__head .kicker { margin-bottom: 10px; }
.langs__head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); color: #fff; }
.langs__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.lcard { background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: 6px; padding: 22px 12px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 4px; transition: transform .25s var(--e), border-color .25s; }
.lcard:hover { transform: translateY(-4px); border-color: var(--teal); }
.lcard__name { font-family: var(--serif); font-size: 1.2rem; color: #fff; }
.lcard__code { font-size: .76rem; letter-spacing: .1em; color: #8fa1ad; }
.lcard--more { border-style: dashed; color: var(--on-dark); justify-content: center; }
.lcard__plus { font-size: 1.4rem; color: var(--teal); line-height: 1; }
.lcard--more span { font-size: .82rem; }

/* ============================================================ WHY */
.why { background: var(--bg-warm); }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.why__item { text-align: center; padding: 12px; border-radius: 12px; transition: background .3s var(--e), transform .3s var(--e); }
.why__item:hover { background: #fff; transform: translateY(-4px); box-shadow: 0 20px 40px -28px rgba(1,12,26,.4); }
.why__ic { width: 66px; height: 66px; border-radius: 50%; display: inline-grid; place-items: center; background: #fff; border: 1px solid var(--line); margin-bottom: 18px; transition: background .3s var(--e), border-color .3s; }
.why__item:hover .why__ic { background: var(--teal); border-color: var(--teal); }
.why__ic svg { width: 30px; height: 30px; fill: none; stroke: var(--teal); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke .3s; }
.why__item:hover .why__ic svg { stroke: #fff; }
.why__item h3 { font-size: 1.06rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.why__item p { font-size: .85rem; color: var(--body); }

/* ============================================================ INDUSTRIES */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ind { padding: 30px 26px; background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: 12px; transition: transform .3s var(--e), border-color .3s, background .3s; }
.ind:hover { transform: translateY(-5px); border-color: var(--teal); background: #162a38; }
.ind__ic { width: 54px; height: 54px; border-radius: 12px; display: inline-grid; place-items: center; background: rgba(19,115,116,.14); border: 1px solid rgba(19,115,116,.32); margin-bottom: 20px; transition: background .3s var(--e), border-color .3s; }
.ind:hover .ind__ic { background: var(--teal); border-color: var(--teal); }
.ind__ic svg { width: 26px; height: 26px; fill: none; stroke: var(--gold); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke .3s; }
.ind:hover .ind__ic svg { stroke: #fff; }
.ind h3 { font-size: 1.12rem; color: #fff; margin-bottom: 9px; }
.ind p { font-size: .88rem; color: var(--on-dark); line-height: 1.55; }

/* ============================================================ PROCESS */
.process { background: var(--bg); }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; }
.steps::before { content: ''; position: absolute; top: 18px; left: 10%; right: 10%; height: 1px; background: var(--line); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step__c { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--sans); font-weight: 600; font-size: .82rem; margin-bottom: 16px; }
.step h4 { font-family: var(--sans); font-size: .98rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.step p { font-size: .82rem; color: var(--body); max-width: 20ch; margin: 0 auto; }

/* ============================================================ GALLERY */
.sec-sub { max-width: 56ch; margin: 14px auto 0; color: var(--body); font-size: 1rem; line-height: 1.6; }
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gal-credit { text-align: center; margin-top: 22px; font-size: .76rem; }
.gal-credit a { color: rgba(255,255,255,.4); transition: color .2s; }
.gal-credit a:hover { color: rgba(255,255,255,.7); }
.gal__item { position: relative; display: block; padding: 0; border: 1px solid rgba(255,255,255,.06); background: var(--navy-2); border-radius: 10px; overflow: hidden; aspect-ratio: 4 / 3; cursor: pointer; box-shadow: 0 14px 34px -18px rgba(0,0,0,.7); }
.gal__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--e); }
.gal__item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(1,12,26,0) 42%, rgba(1,12,26,.8) 100%); }
.gal__item:hover img, .gal__item:focus-visible img { transform: scale(1.06); }
.gal__item:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
.gal__cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 16px 18px; color: #fff; font-family: var(--sans); font-weight: 600; font-size: .98rem; text-align: left; transform: translateY(4px); transition: transform .35s var(--e); }
.gal__item:hover .gal__cap { transform: translateY(0); }
.gal__item::before { content: '\2922'; position: absolute; top: 12px; right: 14px; z-index: 3; color: #fff; font-size: 1.05rem; opacity: 0; transform: scale(.8); transition: opacity .3s, transform .3s; }
.gal__item:hover::before, .gal__item:focus-visible::before { opacity: .9; transform: scale(1); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; background: rgba(1,8,18,.93); backdrop-filter: blur(4px); padding: 4vw; }
.lightbox.open { display: flex; }
.lightbox__fig { margin: 0; max-width: 92vw; max-height: 88vh; display: flex; flex-direction: column; align-items: center; }
.lightbox__img { max-width: 92vw; max-height: 80vh; width: auto; height: auto; border-radius: 8px; box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.lightbox__cap { color: #fff; font-family: var(--sans); font-size: 1rem; margin-top: 16px; text-align: center; opacity: .9; }
.lightbox__close { position: absolute; top: 18px; right: 22px; }
.lightbox__close, .lightbox__nav { display: grid; place-items: center; border: 0; background: rgba(255,255,255,.1); color: #fff; line-height: 1; border-radius: 50%; cursor: pointer; transition: background .25s; }
.lightbox__close { width: 46px; height: 46px; font-size: 1.7rem; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.9rem; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.22); }
.lightbox__prev { left: 18px; }
.lightbox__next { right: 18px; }

/* ============================================================ BOTTOM 3-COL */
.bottom { background: var(--bg-warm); }
.bottom-grid { display: grid; grid-template-columns: 1fr 1fr 1.1fr; gap: 44px; }
.bcol .kicker { display: block; margin-bottom: 22px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.tcard { margin-bottom: 26px; }
.tcard .q { font-family: var(--serif); color: var(--teal); font-size: 2.4rem; line-height: .5; display: block; height: 18px; }
.tcard p { font-size: .92rem; color: var(--ink); margin: 6px 0 12px; }
.tcard cite { font-style: normal; display: flex; flex-direction: column; }
.tcard cite strong { color: var(--ink); font-weight: 600; font-size: .9rem; }
.tcard cite span { font-size: .82rem; color: var(--body); }

.faq__i { border-bottom: 1px solid var(--line); }
.faq__i summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 15px 0; font-size: .92rem; color: var(--ink); cursor: pointer; }
.faq__i summary::-webkit-details-marker { display: none; }
.pm { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.pm::before, .pm::after { content: ''; position: absolute; background: var(--teal); transition: transform .3s var(--e); }
.pm::before { top: 6px; left: 0; width: 14px; height: 2px; }
.pm::after { left: 6px; top: 0; width: 2px; height: 14px; }
.faq__i[open] .pm::after { transform: rotate(90deg); opacity: 0; }
.faq__i p { padding: 0 0 15px; font-size: .88rem; color: var(--body); }

.ct-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 22px; }
.ct-list li { display: flex; align-items: flex-start; gap: 12px; }
.ct-ic { flex-shrink: 0; color: var(--teal); }
.ct-ic svg { width: 20px; height: 20px; fill: none; stroke: var(--teal); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.ct-list strong { display: block; color: var(--ink); font-size: .82rem; font-weight: 600; margin-bottom: 1px; }
.ct-list a, .ct-list span { font-size: .9rem; color: var(--body); }
.ct-list a:hover { color: var(--teal); }
.ct-form { display: flex; flex-direction: column; gap: 12px; }
.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ct-form input, .ct-form select, .ct-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 4px; background: #fff; font-family: inherit; font-size: .9rem; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.ct-form textarea { resize: vertical; }
.ct-form input::placeholder, .ct-form textarea::placeholder { color: #a4a9af; }
.ct-form select { color: #a4a9af; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a4a9af' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.ct-form select:valid { color: var(--ink); }
.ct-form input:focus, .ct-form select:focus, .ct-form textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(19,115,116,.12); }
.ct-ok { color: var(--teal); font-weight: 500; font-size: .9rem; }

/* ============================================================ FOOTER */
.ft { background: var(--navy); color: var(--on-dark); padding: 30px 0; }
.ft__in { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.ft__nav { display: flex; gap: 28px; }
.ft__nav a { font-size: .9rem; color: #c9d2da; transition: color .2s; }
.ft__nav a:hover { color: #fff; }
.ft__right { display: flex; align-items: center; gap: 20px; }
.ft__social { display: flex; gap: 10px; }
.ft__social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: grid; place-items: center; transition: border-color .2s, background .2s; }
.ft__social svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.ft__social a:hover { border-color: var(--teal); background: var(--teal); }
.ft__bot { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); text-align: center; }
.ft__bot p { font-size: .82rem; color: #6c7681; }

/* ============================================================ REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--e), transform .7s var(--e); }
.reveal.in { opacity: 1; transform: none; }
.svc-grid .reveal.in, .why-grid .reveal.in, .ind-grid .reveal.in, .steps .reveal.in, .langs__cards .reveal.in { transition-delay: var(--d, 0s); }

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .langs__in { grid-template-columns: 1fr; gap: 28px; }
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 16px; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .hdr.fixed .hdr__cta { display: none; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px 18px; }
  .steps::before { display: none; }
  .bottom-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__scroll { display: none; }
  .hero__stats-in { grid-template-columns: repeat(2, 1fr); }
  .hstat:nth-child(3) { border-left: none; }
  .hstat { border-top: 1px solid rgba(255,255,255,.08); }
  .hstat:nth-child(-n+2) { border-top: none; }
}
@media (max-width: 680px) {
  .container { padding: 0 22px; }
  .nav { position: fixed; inset: 78px 14px auto 14px; flex-direction: column; gap: 0; margin: 0; padding: 8px 18px; background: var(--navy-2); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,.5); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform .35s var(--e), opacity .35s; }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav a:last-child { border-bottom: none; }
  .burger { display: flex; }
  .hero { min-height: auto; display: block; }
  .hero__img { object-position: 70% center; }
  .hero__veil { background:
    linear-gradient(180deg, rgba(1,12,26,.55) 0%, rgba(1,12,26,.7) 55%, var(--navy) 100%); }
  .hero__in { padding: 116px 0 36px; }
  .hero__stats { position: static; background: var(--navy); border-top: 1px solid rgba(255,255,255,.1); }
  .hero__stats-in { padding: 6px 0; }
  .hstat { padding: 18px 4px; }
  .svc-grid { grid-template-columns: 1fr; }
  .langs__cards { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; }
  .lightbox__nav { width: 42px; height: 42px; font-size: 1.5rem; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .steps { grid-template-columns: 1fr; }
  .ft__in { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
