/* ============================================================
   ACTIVE RECRUITMENT — component styles
   ============================================================ */

/* ---------------- NAV ---------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), padding .5s var(--ease);
  padding-block: 22px;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav.solid {
  background: rgba(246, 242, 234, 0.86);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -22px rgba(7,20,42,.5);
  padding-block: 13px;
}
.nav-logo { display: flex; align-items: center; height: 46px; transition: height .5s var(--ease); }
.nav.solid .nav-logo { height: 40px; }
.nav-logo img { height: 100%; width: auto; }
.nav-logo .logo-light { display: block; }
.nav-logo .logo-dark { display: none; }
.nav.solid .nav-logo .logo-light { display: none; }
.nav.solid .nav-logo .logo-dark { display: block; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--paper);
  position: relative;
  padding: 4px 0;
  transition: color .35s;
}
.nav.solid .nav-links a { color: var(--navy-800); }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav-links a:hover { color: var(--gold-light); }
.nav.solid .nav-links a:hover { color: var(--gold-deep); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-light); }
.nav.solid .nav-links a.active { color: var(--gold-deep); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 700;
  padding: 12px 24px;
  border-radius: 2px;
  background: var(--gold-grad);
  color: var(--navy-950);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(195,154,79,.7); }

.nav-toggle { display: none; width: 30px; height: 22px; position: relative; background: none; border: none; }
.nav-toggle span {
  position: absolute; left: 0; height: 2px; width: 100%;
  background: var(--paper); transition: .4s var(--ease);
}
.nav.solid .nav-toggle span { background: var(--navy-800); }
.nav-toggle span:nth-child(1) { top: 2px; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 18px; }
.nav-toggle.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0;
  background: var(--navy-950);
  z-index: 190;
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: var(--pad);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease);
}
.nav-mobile.open { clip-path: inset(0 0 0 0); }
.nav-mobile a {
  font-family: var(--ff-display);
  font-size: clamp(30px, 8vw, 46px);
  color: var(--paper);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-mobile a:last-of-type { border: none; }
.nav-mobile a span { color: var(--gold); font-family: var(--ff-body); font-size: 14px; margin-right: 14px; }

/* ---------------- HERO (split: text left, video right) ---------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  overflow: hidden;
  background: var(--navy-950);
}
.hero-text {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: clamp(120px, 15vh, 168px) clamp(36px, 4.5vw, 72px) clamp(64px, 9vh, 96px)
           max(var(--pad), calc((100vw - var(--maxw)) / 2));
}
.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
}
.hero-visual video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-visual::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, var(--navy-950) 0%, rgba(7,20,42,.55) 16%, rgba(7,20,42,.08) 42%, rgba(7,20,42,0) 100%),
    linear-gradient(0deg, rgba(7,20,42,.45) 0%, rgba(7,20,42,0) 38%);
  pointer-events: none;
}
.hero-visual::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  box-shadow: inset 0 0 120px rgba(7,20,42,.5);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 2; opacity: .5; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 3px 3px;
}
.hero-inner { max-width: 600px; position: relative; z-index: 3; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-light);
  padding: 9px 18px 9px 14px;
  border: 1px solid rgba(227,200,133,.28);
  border-radius: 100px;
  background: rgba(227,200,133,.06);
  margin-bottom: 30px;
}
.hero-tag .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 rgba(195,154,79,.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(195,154,79,.55); }
  70% { box-shadow: 0 0 0 9px rgba(195,154,79,0); }
  100% { box-shadow: 0 0 0 0 rgba(195,154,79,0); }
}

.hero h1 {
  color: var(--paper);
  font-size: clamp(44px, 6.6vw, 92px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 26px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  color: rgba(246,242,234,.82);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.6;
  max-width: 58ch;
  margin-bottom: 38px;
  font-weight: 400;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 46px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 14px 30px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(246,242,234,.82);
  font-size: 14.5px; font-weight: 500;
}
.hero-badge .ck {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(195,154,79,.16);
  color: var(--gold-light);
  flex-shrink: 0;
}
.hero-badge .ck svg { width: 12px; height: 12px; }

.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(246,242,234,.6);
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
}
.hero-scroll .line { width: 1px; height: 46px; background: linear-gradient(rgba(227,200,133,.7), transparent); position: relative; overflow: hidden; }
.hero-scroll .line::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--gold-light);
  animation: scrolldrop 2.2s var(--ease) infinite;
}
@keyframes scrolldrop { 0% { top: -50%; } 60%,100% { top: 100%; } }

/* ---------------- STATS ---------------- */
.stats {
  background: var(--navy-900);
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: clamp(44px, 6vw, 76px) clamp(22px, 3vw, 44px);
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 600;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.stat-label {
  color: rgba(246,242,234,.7);
  font-size: 15px;
  line-height: 1.45;
  max-width: 20ch;
}

/* ---------------- PROCESS (redesigned timeline) ---------------- */
.timeline { position: relative; max-width: 920px; margin: 0 auto; }
.timeline::before {
  content: ""; position: absolute; left: 47px; top: 12px; bottom: 12px; width: 2px;
  background: linear-gradient(var(--gold) 0%, var(--gold-deep) 50%, var(--line) 100%);
}
.tl-step {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: clamp(24px, 4vw, 52px);
  padding-block: clamp(26px, 3.5vw, 44px);
}
.tl-step:first-child { padding-top: 0; }
.tl-step:last-child { padding-bottom: 0; }
.tl-marker {
  position: relative; z-index: 2;
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--line);
  display: grid; place-items: center;
  transition: border-color .6s var(--ease), transform .6s var(--ease), box-shadow .6s var(--ease);
}
.tl-step.in .tl-marker { border-color: var(--gold); box-shadow: 0 14px 40px -16px rgba(195,154,79,.6); }
.tl-marker .tl-ic { color: var(--gold-deep); }
.tl-marker .tl-ic svg { width: 34px; height: 34px; display: block; }
.tl-num {
  position: absolute; top: -8px; right: -8px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold-grad); color: var(--navy-950);
  font-family: var(--ff-body); font-weight: 700; font-size: 14px;
  display: grid; place-items: center;
  box-shadow: 0 6px 16px -6px rgba(168,124,52,.7);
}
.tl-body { padding-top: 8px; }
.tl-body h3 { font-size: clamp(24px, 3vw, 34px); font-weight: 600; margin-bottom: 12px; line-height: 1.1; }
.tl-body p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.66; max-width: 56ch; }
.tl-body .tl-meta {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 16px;
  font-size: 13px; font-weight: 600; letter-spacing: .03em;
  color: var(--gold-deep); text-transform: uppercase;
}
.tl-body .tl-meta svg { width: 15px; height: 15px; }
@media (max-width: 620px) {
  .timeline::before { left: 33px; }
  .tl-step { grid-template-columns: 68px 1fr; gap: 20px; }
  .tl-marker { width: 68px; height: 68px; }
  .tl-marker .tl-ic svg { width: 26px; height: 26px; }
  .tl-num { width: 28px; height: 28px; font-size: 12px; }
}

/* ---------------- PROCESS (legacy grid, kept) ---------------- */
.sec-head { max-width: 720px; margin-bottom: clamp(48px, 6vw, 80px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head .h-sec { margin-top: 20px; }
.sec-head .lead { margin-top: 22px; }
.sec-head.center .lead { margin-inline: auto; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.step {
  padding: 42px 32px 44px 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.step:last-child { border-right: none; padding-right: 0; }
.step-num {
  font-family: var(--ff-display);
  font-size: 22px; font-weight: 600;
  color: var(--gold-deep);
  letter-spacing: 0.05em;
  margin-bottom: 26px;
  display: flex; align-items: center; gap: 14px;
}
.step-num::after { content: ""; flex: 1; height: 1px; background: var(--line); margin-right: 30px; }
.step h3 {
  font-size: 27px; font-weight: 600;
  margin-bottom: 14px; line-height: 1.12;
}
.step p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.62; padding-right: 24px; }
.step .step-ic {
  width: 46px; height: 46px; margin-bottom: 22px;
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  color: var(--gold-deep);
}
.step .step-ic svg { width: 21px; height: 21px; }

/* ---------------- SPECIALIZATIONS ---------------- */
.specs { background: var(--paper-2); }
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.spec-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 34px 32px 30px;
  position: relative;
  overflow: hidden;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .55s;
}
.spec-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 3px;
  background: var(--gold-grad); transform: scaleY(0); transform-origin: top;
  transition: transform .55s var(--ease);
}
.spec-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-pale); }
.spec-card:hover::before { transform: scaleY(1); }
.spec-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 18px; }
.spec-idx {
  font-family: var(--ff-display); font-size: 19px; font-weight: 600;
  color: var(--gold-deep);
}
.spec-ic { color: var(--navy-700); opacity: .85; transition: color .4s; }
.spec-ic svg { width: 30px; height: 30px; }
.spec-card:hover .spec-ic { color: var(--gold-deep); }
.spec-card h3 { font-size: 25px; font-weight: 600; margin-bottom: 16px; line-height: 1.1; }
.spec-roles { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.spec-roles li {
  font-size: 14.5px; color: var(--ink-soft);
  padding-left: 18px; position: relative; line-height: 1.4;
}
.spec-roles li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}
.spec-card .spec-more {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold-deep); transition: gap .4s var(--ease);
}
.spec-card .spec-more svg { width: 15px; height: 15px; transition: transform .4s var(--ease); }
.spec-card:hover .spec-more svg { transform: translateX(4px); }

/* ---------------- ABOUT ---------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.about-media { position: relative; }
.about-media .img-frame {
  position: relative; overflow: hidden; border-radius: 3px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.about-media .img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-media::before {
  content: ""; position: absolute; inset: 22px -22px -22px 22px;
  border: 1.5px solid var(--gold); border-radius: 3px; z-index: -1;
}
.about-badge {
  position: absolute; right: -18px; bottom: 34px;
  background: var(--navy-900); color: var(--paper);
  padding: 22px 26px; border-radius: 3px;
  box-shadow: var(--shadow-md);
  max-width: 200px;
}
.about-badge .b-num { font-family: var(--ff-display); font-size: 42px; font-weight: 600; line-height: 1; color: var(--gold-light); }
.about-badge .b-txt { font-size: 13.5px; color: rgba(246,242,234,.8); margin-top: 8px; line-height: 1.35; }

.about-body h2 { font-size: clamp(30px, 4vw, 50px); margin: 18px 0 24px; }
.about-body > p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; margin-bottom: 28px; }
.about-quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(21px, 2.3vw, 28px);
  line-height: 1.35;
  color: var(--navy-800);
  padding: 22px 0 22px 28px;
  border-left: 2.5px solid var(--gold);
  margin-bottom: 30px;
}
.values { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.values li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15.5px; color: var(--ink); line-height: 1.5;
}
.values li .vk {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(195,154,79,.14); color: var(--gold-deep);
  display: grid; place-items: center; margin-top: 1px;
}
.values li .vk svg { width: 13px; height: 13px; }

/* ---------------- GALLERY ---------------- */
.gallery { background: var(--navy-950); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 3px;
  background: var(--navy-800);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,20,42,.5), rgba(7,20,42,0) 55%);
  opacity: 0; transition: opacity .5s;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item .gv {
  position: absolute; right: 16px; bottom: 16px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(246,242,234,.14); backdrop-filter: blur(6px);
  display: grid; place-items: center; color: var(--paper);
  opacity: 0; transform: scale(.7); transition: .5s var(--ease);
}
.gallery-item:hover .gv { opacity: 1; transform: none; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ---------------- TESTIMONIAL ---------------- */
.testi { background: var(--paper-2); }
.testi-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.testi-photo { position: relative; aspect-ratio: 3/4; border-radius: 3px; overflow: hidden; box-shadow: var(--shadow-lg); }
.testi-photo img { width: 100%; height: 100%; object-fit: cover; }
.testi-body .quote-mark {
  font-family: var(--ff-display); font-size: 120px; line-height: .6;
  color: var(--gold); opacity: .5; margin-bottom: 10px; height: 60px;
}
.testi-body blockquote {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500; line-height: 1.28;
  color: var(--navy-900);
  margin-bottom: 30px;
}
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-author .ta-line { width: 40px; height: 1.5px; background: var(--gold); }
.testi-author .ta-name { font-weight: 700; font-size: 15.5px; color: var(--navy-900); }
.testi-author .ta-meta { font-size: 14px; color: var(--ink-soft); }

/* ---------------- MANAGER ---------------- */
.manager { background: var(--navy-900); color: var(--paper); }
.manager-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 84px); align-items: center;
}
.manager-body h2 { color: var(--paper); font-size: clamp(30px, 4vw, 52px); margin: 18px 0 24px; }
.manager-body h2 em { font-style: italic; color: var(--gold-light); }
.manager-body p { color: rgba(246,242,234,.78); font-size: 16.5px; line-height: 1.7; margin-bottom: 20px; max-width: 50ch; }
.manager-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.manager-tags span {
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  padding: 8px 15px; border: 1px solid rgba(227,200,133,.3);
  border-radius: 100px; color: var(--gold-light);
}

.manager-card {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-850));
  border: 1px solid rgba(227,200,133,.18);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.mc-photo { position: relative; aspect-ratio: 16/12; overflow: hidden; }
.mc-photo img { width: 100%; height: 100%; object-fit: cover; }
.mc-badge {
  position: absolute; top: 18px; left: 18px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 100px;
  background: var(--gold-grad); color: var(--navy-950);
}
.mc-body { padding: 30px 30px 32px; }
.mc-name { font-family: var(--ff-display); font-size: 32px; font-weight: 600; color: var(--paper); line-height: 1; }
.mc-role { color: var(--gold-light); font-size: 14px; font-weight: 600; letter-spacing: .04em; margin-top: 8px; }
.mc-hours { display: flex; align-items: center; gap: 10px; color: rgba(246,242,234,.72); font-size: 14px; margin: 18px 0 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); }
.mc-hours svg { width: 17px; height: 17px; color: var(--gold-light); flex-shrink: 0; }
.mc-actions { display: flex; flex-direction: column; gap: 11px; }
.mc-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: 3px;
  font-weight: 600; font-size: 14.5px;
  transition: transform .4s var(--ease), background .4s;
}
.mc-btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.mc-btn.tg { background: #2aabee; color: #fff; }
.mc-btn.wa { background: #25d366; color: #073; }
.mc-btn.form { background: var(--gold-grad); color: var(--navy-950); }
.mc-btn:hover { transform: translateX(5px); }
.mc-btn .arr { margin-left: auto; }

/* ---------------- CONTACT ---------------- */
.contact-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 84px);
}
.contact-body h2 { font-size: clamp(30px, 4vw, 52px); margin: 18px 0 22px; }
.contact-body > p { color: var(--ink-soft); font-size: 17px; line-height: 1.65; margin-bottom: 36px; max-width: 44ch; }
.contact-info { display: flex; flex-direction: column; gap: 4px; }
.ci-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-top: 1px solid var(--line);
}
.ci-row:last-child { border-bottom: 1px solid var(--line); }
.ci-ic {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; color: var(--gold-deep);
}
.ci-ic svg { width: 18px; height: 18px; }
.ci-row .ci-t { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 5px; }
.ci-row .ci-d { font-size: 15.5px; color: var(--ink); line-height: 1.5; }
.ci-row a.ci-d:hover { color: var(--gold-deep); }
.contact-msgs { display: flex; gap: 12px; margin-top: 28px; }
.contact-msgs a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px; border-radius: 3px; font-weight: 600; font-size: 14.5px;
  transition: transform .4s var(--ease);
}
.contact-msgs a svg { width: 19px; height: 19px; }
.contact-msgs .tg { background: #2aabee; color: #fff; }
.contact-msgs .wa { background: #25d366; color: #054d24; }
.contact-msgs a:hover { transform: translateY(-3px); }

/* ---------------- FORMS ---------------- */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label.lbl {
  display: block; font-size: 13.5px; font-weight: 600;
  color: var(--navy-800); margin-bottom: 9px; letter-spacing: .01em;
}
label.lbl .req { color: var(--gold-deep); }
.inp, .sel, .ta {
  width: 100%;
  font-family: var(--ff-body); font-size: 15.5px; color: var(--ink);
  background: var(--paper-2);
  border: 1.5px solid transparent;
  border-radius: 2px;
  padding: 14px 16px;
  transition: border-color .35s, background .35s, box-shadow .35s;
}
.ta { resize: vertical; min-height: 110px; }
.inp::placeholder, .ta::placeholder { color: #9a9482; }
.inp:focus, .sel:focus, .ta:focus {
  outline: none; border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(195,154,79,.12);
}
.sel { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a87c34' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-note { font-size: 13px; color: var(--ink-soft); margin-top: 16px; line-height: 1.5; }
.form-card .btn { width: 100%; margin-top: 6px; }

/* form success */
.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.form-success.show { display: block; animation: popin .6s var(--ease); }
@keyframes popin { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.form-success .fs-ic {
  width: 76px; height: 76px; margin: 0 auto 24px;
  border-radius: 50%; background: var(--gold-grad);
  display: grid; place-items: center; color: var(--navy-950);
  box-shadow: 0 14px 40px -14px rgba(195,154,79,.7);
}
.form-success .fs-ic svg { width: 34px; height: 34px; }
.form-success h3 { font-size: 32px; margin-bottom: 14px; }
.form-success p { color: var(--ink-soft); max-width: 38ch; margin: 0 auto 24px; line-height: 1.6; }

/* ---------------- FOOTER ---------------- */
.footer { background: var(--navy-950); color: rgba(246,242,234,.7); padding-block: clamp(60px, 7vw, 96px) 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand img { height: 54px; margin-bottom: 22px; }
.footer-brand p { font-size: 14.5px; line-height: 1.65; max-width: 38ch; margin-bottom: 22px; }
.footer-legal { font-size: 13px; line-height: 1.7; color: rgba(246,242,234,.5); }
.footer-col h4 { font-family: var(--ff-body); font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: rgba(246,242,234,.72); transition: color .3s, padding-left .3s; }
.footer-col a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-bottom { padding-top: 30px; font-size: 13px; color: rgba(246,242,234,.45); text-align: center; line-height: 1.6; }

/* ---------------- PAGE HERO (inner pages) ---------------- */
.page-hero {
  background: var(--navy-950);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  padding-block: clamp(140px, 17vw, 210px) clamp(56px, 8vw, 96px);
}
.page-hero .grain {
  position: absolute; inset: 0; opacity: .4; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 3px 3px;
}
.page-hero::after {
  content: ""; position: absolute; right: -8%; top: -30%;
  width: 540px; height: 540px; border-radius: 50%;
  background: radial-gradient(circle, rgba(195,154,79,.16), transparent 65%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .ph-crumb { font-size: 13px; letter-spacing: .04em; color: rgba(246,242,234,.55); margin-bottom: 26px; }
.page-hero .ph-crumb a { color: var(--gold-light); }
.page-hero .ph-crumb a:hover { text-decoration: underline; }
.page-hero h1 {
  color: var(--paper);
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 500; line-height: 1.04; letter-spacing: -0.015em;
  margin: 18px 0 0; max-width: 18ch;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero .ph-sub { color: rgba(246,242,234,.78); font-size: clamp(17px,1.6vw,21px); line-height: 1.6; max-width: 56ch; margin-top: 24px; }

/* ---------------- VIDEO SECTION ---------------- */
.video-section { background: var(--navy-950); }
.video-block {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(227,200,133,.18);
}
.video-block video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-block .video-poster {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(5,15,32,.55), rgba(5,15,32,.25));
  display: grid; place-items: center;
  transition: opacity .5s var(--ease);
}
.video-block.playing .video-poster { opacity: 0; pointer-events: none; }
.video-play {
  width: clamp(76px, 9vw, 104px); height: clamp(76px, 9vw, 104px);
  border-radius: 50%; border: none;
  background: var(--gold-grad);
  display: grid; place-items: center;
  color: var(--navy-950);
  box-shadow: 0 18px 50px -14px rgba(195,154,79,.7);
  transition: transform .5s var(--ease);
  position: relative;
}
.video-play::after {
  content: ""; position: absolute; inset: -14px; border-radius: 50%;
  border: 1.5px solid rgba(227,200,133,.4);
  animation: ring 2.6s var(--ease) infinite;
}
@keyframes ring { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.45); opacity: 0; } }
.video-play:hover { transform: scale(1.07); }
.video-play svg { width: 34%; height: 34%; margin-left: 8%; }
.video-caption {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  pointer-events: none;
  padding: clamp(24px,3vw,40px);
  font-family: var(--ff-display); font-size: clamp(20px,2.4vw,30px);
  color: var(--paper); text-shadow: 0 2px 20px rgba(0,0,0,.5);
  transition: opacity .4s;
}
.video-block.playing .video-caption { opacity: 0; }

/* ---------------- CTA BAND ---------------- */
.cta-band {
  background: var(--navy-900);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; left: -6%; bottom: -50%;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(195,154,79,.14), transparent 65%);
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.cta-inner h2 { color: var(--paper); font-size: clamp(30px,4vw,52px); font-weight: 500; max-width: 16ch; }
.cta-inner h2 em { font-style: italic; color: var(--gold-light); }
.cta-inner .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------------- ANKETA HELP (floating) ---------------- */
.help-fab {
  position: fixed; right: clamp(16px, 3vw, 32px); bottom: clamp(16px, 3vw, 32px);
  z-index: 120;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.help-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  padding: 20px;
  width: 300px; max-width: calc(100vw - 40px);
  transform: translateY(12px) scale(.96);
  transform-origin: bottom right;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.help-fab.open .help-panel { opacity: 1; transform: none; pointer-events: auto; }
.help-panel .hp-title { font-family: var(--ff-display); font-size: 22px; color: var(--navy-900); line-height: 1.15; margin-bottom: 6px; }
.help-panel .hp-sub { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; margin-bottom: 16px; }
.help-panel .hp-btn {
  display: flex; align-items: center; gap: 11px;
  padding: 13px 16px; border-radius: 3px; font-weight: 600; font-size: 14.5px;
  color: #fff; transition: transform .35s var(--ease);
}
.help-panel .hp-btn + .hp-btn { margin-top: 9px; }
.help-panel .hp-btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.help-panel .hp-btn.tg { background: #2aabee; }
.help-panel .hp-btn.wa { background: #25d366; }
.help-panel .hp-btn:hover { transform: translateX(4px); }
.help-trigger {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 15px 22px; border: none; border-radius: 100px;
  background: var(--gold-grad); color: var(--navy-950);
  font-family: var(--ff-body); font-weight: 700; font-size: 14.5px; letter-spacing: .01em;
  box-shadow: 0 16px 40px -12px rgba(168,124,52,.7);
  transition: transform .4s var(--ease);
}
.help-trigger:hover { transform: translateY(-2px); }
.help-trigger .ht-ic { width: 22px; height: 22px; display: grid; place-items: center; }
.help-trigger .ht-ic svg { width: 22px; height: 22px; }
.help-trigger .ht-close { display: none; }
.help-fab.open .help-trigger .ht-label, .help-fab.open .help-trigger .ht-ic { display: none; }
.help-fab.open .help-trigger .ht-close { display: grid; }
@media (max-width: 600px) {
  .help-trigger .ht-label { display: none; }
  .help-trigger { padding: 16px; }
}

/* ---------------- SINCE 2009 (heritage block) ---------------- */
.since { background: var(--paper); }
.since-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
.since-body .eyebrow { margin-bottom: 22px; }
.since-stats { display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 56px); margin-bottom: 34px; }
.since-stat .ss-num {
  font-family: var(--ff-display);
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 600; line-height: 0.95;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.since-stat .ss-label { font-size: 15.5px; color: var(--ink-soft); margin-top: 10px; line-height: 1.4; max-width: 18ch; }
.since-body h2 { font-size: clamp(28px, 3.6vw, 46px); margin-bottom: 20px; line-height: 1.08; }
.since-body p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; margin-bottom: 18px; max-width: 50ch; }
.since-media { position: relative; }
.since-media image-slot, .since-media .since-img {
  width: 100%; height: clamp(340px, 40vw, 480px);
  display: block; border-radius: 4px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.since-media .since-img { object-fit: cover; }
.since-media::before {
  content: ""; position: absolute; inset: -20px -20px 20px 20px;
  border: 1.5px solid var(--gold); border-radius: 4px; z-index: -1;
}
.since-media .since-cap {
  position: absolute; left: 20px; bottom: 20px; z-index: 3;
  background: rgba(7,20,42,.78); color: var(--paper); backdrop-filter: blur(6px);
  padding: 12px 18px; border-radius: 3px; font-size: 13.5px; max-width: 70%;
  pointer-events: none;
}
.since-media .since-cap strong { color: var(--gold-light); font-weight: 600; }

/* ---------------- VACANCIES (browser) ---------------- */
.vacancies { background: var(--paper-2); }
.vac-filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 36px; justify-content: center; }
.vac-chip {
  font-family: var(--ff-body); font-size: 13.5px; font-weight: 600;
  padding: 10px 18px; border-radius: 100px;
  border: 1.5px solid var(--line); background: var(--paper);
  color: var(--ink-soft); cursor: pointer;
  transition: .3s var(--ease);
}
.vac-chip:hover { border-color: var(--gold); color: var(--navy-900); }
.vac-chip.active { background: var(--navy-900); border-color: var(--navy-900); color: var(--paper); }
.vac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.vac-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 26px 26px 24px;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.vac-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold-pale); }
.vac-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.vac-sector {
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-deep);
}
.vac-flag {
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  color: var(--navy-600); background: rgba(39,81,138,.08);
  padding: 5px 10px; border-radius: 100px;
}
.vac-role { font-family: var(--ff-display); font-size: 25px; font-weight: 600; line-height: 1.1; margin-bottom: 8px; color: var(--navy-900); }
.vac-company { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ink); font-weight: 600; margin-bottom: 4px; }
.vac-company .vc-logo {
  width: 44px; height: 44px; border-radius: 8px; flex-shrink: 0;
  display: grid; place-items: center; overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  font-family: var(--ff-display); font-size: 13px; font-weight: 700;
  color: var(--navy-900);
}
.vac-company .vc-logo img {
  width: 100%; height: 100%; object-fit: contain; padding: 5px;
}
.vac-region { display: flex; align-items: center; gap: 7px; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 18px; }
.vac-region svg { width: 14px; height: 14px; color: var(--gold-deep); }
.vac-salary {
  margin-top: auto;
  padding: 14px 0 16px; border-top: 1px solid var(--line);
}
.vac-salary .vs-amt { font-family: var(--ff-display); font-size: 27px; font-weight: 600; color: var(--navy-900); line-height: 1; }
.vac-salary .vs-amt span { font-family: var(--ff-body); font-size: 14px; color: var(--ink-soft); font-weight: 500; }
.vac-salary .vs-per { font-size: 12.5px; color: var(--ink-soft); margin-top: 6px; }
.vac-apply {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px; border-radius: 3px;
  background: var(--navy-900); color: var(--paper);
  font-weight: 600; font-size: 14px;
  transition: background .4s, transform .4s var(--ease);
}
.vac-apply svg { width: 15px; height: 15px; transition: transform .4s var(--ease); }
.vac-apply:hover { background: var(--gold-deep); }
.vac-apply:hover svg { transform: translateX(4px); }
.vac-note {
  margin-top: 28px; text-align: center;
  font-size: 13px; color: var(--ink-soft); line-height: 1.55;
  max-width: 62ch; margin-inline: auto;
}
.vac-empty { grid-column: 1 / -1; text-align: center; padding: 50px; color: var(--ink-soft); font-size: 16px; }

/* ---------------- SALARY (spec pages) ---------------- */
.spec-intro-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px,5vw,72px); align-items: center; }
.spec-intro-grid .si-media { aspect-ratio: 4/3; border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-lg); }
.spec-intro-grid .si-media img { width: 100%; height: 100%; object-fit: cover; }
.spec-intro-grid p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; margin-bottom: 18px; }

.salary-list { display: flex; flex-direction: column; gap: 14px; }
.salary-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  align-items: center; gap: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 22px 26px;
  transition: border-color .4s, box-shadow .4s, transform .4s var(--ease);
}
.salary-row:hover { border-color: var(--gold-pale); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.salary-role { }
.salary-role .sr-name { font-family: var(--ff-display); font-size: 23px; font-weight: 600; color: var(--navy-900); line-height: 1.1; }
.salary-role .sr-company { font-size: 13px; color: var(--ink-soft); margin-top: 5px; display: flex; align-items: center; gap: 7px; }
.salary-role .sr-company svg { width: 13px; height: 13px; color: var(--gold-deep); }
.salary-amt { text-align: left; }
.salary-amt .sa-month { font-family: var(--ff-display); font-size: 26px; font-weight: 600; color: var(--gold-deep); line-height: 1; }
.salary-amt .sa-hour { font-size: 13px; color: var(--ink-soft); margin-top: 5px; }
.salary-row .sr-apply {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 12px 20px; border-radius: 3px;
  background: var(--navy-900); color: var(--paper);
  font-weight: 600; font-size: 13.5px;
  transition: background .4s, transform .4s var(--ease);
}
.salary-row .sr-apply:hover { background: var(--gold-deep); transform: translateX(3px); }
.salary-row .sr-apply svg { width: 14px; height: 14px; }

.spec-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.spec-cta-card {
  border: 1px solid var(--line); border-radius: 4px; padding: 30px;
  background: var(--paper); display: flex; flex-direction: column; gap: 14px;
}
.spec-cta-card.dark { background: var(--navy-900); border-color: var(--navy-800); }
.spec-cta-card h3 { font-size: 26px; font-weight: 600; }
.spec-cta-card.dark h3 { color: var(--paper); }
.spec-cta-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; flex: 1; }
.spec-cta-card.dark p { color: rgba(246,242,234,.75); }
.spec-cta-card .btn, .spec-cta-card .scc-msgs { margin-top: 6px; }
.scc-msgs { display: flex; gap: 10px; }
.scc-msgs a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px; border-radius: 3px; font-weight: 600; font-size: 14px; color: #fff; transition: transform .4s var(--ease); }
.scc-msgs a svg { width: 18px; height: 18px; }
.scc-msgs .tg { background: #2aabee; } .scc-msgs .wa { background: #25d366; }
.scc-msgs a:hover { transform: translateY(-3px); }

/* ---------------- EMPLOYERS (logo marquee) ---------------- */
.employers { background: var(--paper-2); }
.emp-marquee { position: relative; overflow: hidden; }
.emp-marquee::before,
.emp-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.emp-marquee::before { left: 0; background: linear-gradient(to right, var(--paper-2), transparent); }
.emp-marquee::after  { right: 0; background: linear-gradient(to left,  var(--paper-2), transparent); }
.emp-track {
  display: flex; align-items: center; width: max-content;
  animation: emp-scroll 55s linear infinite;
  padding: 24px 0;
}
.emp-track:hover { animation-play-state: paused; }
.emp-set { display: flex; align-items: center; gap: 52px; padding-right: 52px; }
.emp-logo { height: 54px; display: flex; align-items: center; justify-content: center; }
.emp-logo img {
  max-height: 54px; max-width: 150px; width: auto;
  object-fit: contain;
  filter: grayscale(1); opacity: .5;
  transition: filter .35s var(--ease), opacity .35s var(--ease);
}
.emp-logo img:hover { filter: grayscale(0); opacity: 1; }
@keyframes emp-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .vac-grid { grid-template-columns: repeat(2, 1fr); }
  .since-grid, .spec-intro-grid { grid-template-columns: 1fr; }
  .since-media { max-width: 540px; }
}
@media (max-width: 720px) {
  .vac-grid { grid-template-columns: 1fr; }
  .salary-row { grid-template-columns: 1fr; gap: 14px; text-align: left; }
  .salary-row .sr-apply { justify-self: start; }
  .spec-cta-grid { grid-template-columns: 1fr; }
}

/* ---------------- TEAM ---------------- */
.team { background: var(--paper); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-pale); }
.team-photo { position: relative; aspect-ratio: 1 / 1; background: var(--paper-3); }
.team-photo image-slot, .team-photo img { width: 100%; height: 100%; display: block; }
.team-photo img { object-fit: cover; }
.team-photo .tp-badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
  background: var(--gold-grad); color: var(--navy-950);
}
.team-body { padding: 24px 24px 26px; }
.team-name { font-family: var(--ff-display); font-size: 26px; font-weight: 600; color: var(--navy-900); line-height: 1.05; }
.team-role { color: var(--gold-deep); font-size: 13.5px; font-weight: 600; letter-spacing: .02em; margin-top: 7px; }
.team-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin-top: 14px; }
.team-langs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.team-langs span {
  font-size: 11.5px; font-weight: 600; color: var(--navy-700);
  background: rgba(39,81,138,.08); padding: 5px 11px; border-radius: 100px;
}
.team-contact { display: flex; gap: 9px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.team-contact a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px; border-radius: 3px; font-weight: 600; font-size: 13px; color: #fff;
  transition: transform .35s var(--ease);
}
.team-contact a svg { width: 16px; height: 16px; }
.team-contact .tg { background: #2aabee; } .team-contact .wa { background: #25d366; }
.team-contact a:hover { transform: translateY(-2px); }
@media (max-width: 920px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

/* ---------------- LIGHTBOX ---------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(7,20,42,.94);
  backdrop-filter: blur(8px);
  display: grid; place-items: center; padding: 5vw;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 3px; box-shadow: var(--shadow-lg); transform: scale(.96); transition: transform .5s var(--ease); }
.lightbox.open img { transform: none; }
.lightbox-close { position: absolute; top: 28px; right: 34px; background: none; border: none; color: var(--paper); font-size: 42px; line-height: 1; opacity: .8; }
.lightbox-close:hover { opacity: 1; color: var(--gold-light); }

/* ============================================================
   ANKETA (multi-step form) page
   ============================================================ */
.anketa-page { background: var(--paper); min-height: 100vh; }
.anketa-head { background: var(--navy-950); color: var(--paper); padding-block: clamp(110px, 13vw, 150px) clamp(40px, 6vw, 70px); position: relative; overflow: hidden; }
.anketa-head .grain { position: absolute; inset: 0; opacity: .4; background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px); background-size: 3px 3px; }
.anketa-head .wrap { position: relative; }
.anketa-head .logo-mini { height: 40px; margin-bottom: 26px; }
.anketa-head h1 { color: var(--paper); font-size: clamp(34px, 5vw, 60px); font-weight: 500; }
.anketa-head h1 em { font-style: italic; color: var(--gold-light); }
.anketa-head p { color: rgba(246,242,234,.75); margin-top: 16px; font-size: 17px; max-width: 52ch; }

.progress { background: var(--navy-900); border-bottom: 1px solid rgba(255,255,255,.08); position: sticky; top: 0; z-index: 50; }
.progress-inner { max-width: 980px; margin: 0 auto; padding: 22px var(--pad); }
.progress-meta { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.progress-meta .pm-step { font-family: var(--ff-display); font-size: 22px; color: var(--gold-light); }
.progress-meta .pm-pct { font-size: 13px; letter-spacing: .1em; color: rgba(246,242,234,.6); text-transform: uppercase; }
.progress-bar { height: 4px; background: rgba(255,255,255,.1); border-radius: 100px; overflow: hidden; }
.progress-fill { height: 100%; width: 20%; background: var(--gold-grad); border-radius: 100px; transition: width .6s var(--ease); }
.progress-steps { display: flex; gap: 8px; margin-top: 16px; }
.progress-steps .ps { flex: 1; text-align: center; font-size: 12px; font-weight: 600; letter-spacing: .04em; color: rgba(246,242,234,.4); transition: color .4s; padding-bottom: 4px; }
.progress-steps .ps.active { color: var(--gold-light); }
.progress-steps .ps.done { color: rgba(246,242,234,.7); }

.anketa-form { max-width: 980px; margin: 0 auto; padding: clamp(40px, 6vw, 72px) var(--pad) clamp(70px, 9vw, 120px); }
.fstep { display: none; }
.fstep.active { display: block; animation: stepin .55s var(--ease); }
@keyframes stepin { from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: none; } }
.fstep-head { margin-bottom: 34px; }
.fstep-head .eyebrow { margin-bottom: 14px; }
.fstep-head h2 { font-size: clamp(28px, 3.6vw, 42px); }
.fgroup { margin-bottom: 22px; }
.fgroup-title { font-family: var(--ff-display); font-size: 24px; color: var(--navy-800); margin: 8px 0 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }

/* radio / pill choices */
.radios { display: flex; flex-wrap: wrap; gap: 10px; }
.radios.col { flex-direction: column; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; pointer-events: none; }
.radio-pill label {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 20px; border-radius: 2px;
  border: 1.5px solid var(--line); background: var(--paper-2);
  font-size: 15px; font-weight: 500; color: var(--ink);
  transition: .3s var(--ease);
}
.radio-pill label::before {
  content: ""; width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid var(--line); flex-shrink: 0; transition: .3s;
}
.radio-pill input:checked + label { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(195,154,79,.12); color: var(--navy-900); }
.radio-pill input:checked + label::before { border-color: var(--gold); background: var(--gold); box-shadow: inset 0 0 0 3px #fff; }

/* slider */
.range-wrap { padding: 8px 0; }
.range-val { font-family: var(--ff-display); font-size: 44px; color: var(--gold-deep); line-height: 1; margin-bottom: 12px; }
.range-val span { font-size: 18px; color: var(--ink-soft); font-family: var(--ff-body); }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 100px; background: var(--paper-3); outline: none; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--gold-grad); cursor: pointer; box-shadow: 0 4px 12px -3px rgba(168,124,52,.6); border: 3px solid var(--paper); }
input[type="range"]::-moz-range-thumb { width: 26px; height: 26px; border-radius: 50%; background: var(--gold-deep); cursor: pointer; border: 3px solid var(--paper); }
.range-scale { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-soft); margin-top: 8px; }

.hint-box {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(195,154,79,.08); border: 1px solid var(--gold-pale);
  border-radius: 3px; padding: 18px 20px; margin-top: 6px;
  font-size: 14px; color: var(--ink-soft); line-height: 1.55;
}
.hint-box svg { width: 20px; height: 20px; color: var(--gold-deep); flex-shrink: 0; margin-top: 1px; }
.hint-box strong { color: var(--navy-800); }

.fnav { display: flex; justify-content: space-between; gap: 16px; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--line); }
.fnav .btn-back {
  background: transparent; border: 1.5px solid var(--line); color: var(--navy-800);
  padding: 16px 28px; border-radius: 2px; font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: .4s var(--ease);
}
.fnav .btn-back:hover { border-color: var(--navy-800); transform: translateX(-4px); }
.fnav .btn-back[hidden] { visibility: hidden; }

.anketa-success { display: none; text-align: center; max-width: 620px; margin: 0 auto; padding: clamp(60px,9vw,120px) var(--pad); }
.anketa-success.show { display: block; animation: popin .7s var(--ease); }
.anketa-success .as-ic { width: 96px; height: 96px; margin: 0 auto 30px; border-radius: 50%; background: var(--gold-grad); display: grid; place-items: center; color: var(--navy-950); box-shadow: 0 20px 50px -16px rgba(195,154,79,.7); }
.anketa-success .as-ic svg { width: 44px; height: 44px; }
.anketa-success h2 { font-size: clamp(34px, 5vw, 54px); margin-bottom: 18px; }
.anketa-success p { color: var(--ink-soft); font-size: 17px; line-height: 1.65; margin-bottom: 14px; }
.anketa-success .as-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .step { border-bottom: 1px solid var(--line); padding: 36px 28px 36px 0; }
  .step:nth-child(2n) { border-right: none; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: clamp(120px,18vw,150px) var(--pad) 56px; order: 2; }
  .hero-visual { order: 1; min-height: 56vh; }
  .hero-visual::before { background: linear-gradient(0deg, var(--navy-950) 0%, rgba(7,20,42,.2) 40%, rgba(7,20,42,0) 100%); }
  .hero-scroll { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .testi-grid, .manager-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; margin: 0 auto 30px; }
  .testi-photo { max-width: 380px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-links, .nav > .nav-inner > .nav-cta { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .specs-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .about-badge { right: 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .contact-msgs { flex-direction: column; }
}
@media (max-width: 460px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-wide, .g-tall { grid-column: auto; grid-row: auto; }
}

/* ══════════════════════════════════════════════════════
   LANGUAGE SWITCHER
══════════════════════════════════════════════════════ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 3px;
  margin-right: 6px;
}
.lang-btn {
  font-family: var(--ff-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 5px 10px;
  border: none;
  border-radius: 100px;
  background: transparent;
  color: rgba(246,242,234,.65);
  cursor: pointer;
  transition: background .2s, color .2s;
  line-height: 1;
}
.lang-btn:hover { color: var(--paper); }
.lang-btn.active { background: var(--gold-grad); color: var(--navy-950); }

/* scrolled/light nav */
.nav.scrolled .lang-switcher,
.nav[data-scrolled] .lang-switcher,
.nav.solid .lang-switcher { background: rgba(7,20,42,.08); }
.nav.scrolled .lang-btn,
.nav[data-scrolled] .lang-btn,
.nav.solid .lang-btn { color: var(--ink-soft); }
.nav.scrolled .lang-btn.active,
.nav[data-scrolled] .lang-btn.active,
.nav.solid .lang-btn.active { color: var(--navy-950); }

@media (max-width: 900px) {
  .lang-switcher { margin-right: 4px; }
  .lang-btn { padding: 5px 8px; font-size: 11px; }
}

/* ══════════════════════════════════════════════════════
   REVIEWS SECTION
══════════════════════════════════════════════════════ */
.reviews-section { background: #f5f6f9; }

.reviews-head { text-align: center; margin-bottom: 48px; }
.reviews-head h2 { margin-top: 10px; }
.reviews-head > p { color: var(--ink-soft); font-size: 15px; margin-top: 10px; }

.reviews-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 52px;
}
.rev-photo { position: relative; overflow: hidden; border-radius: 14px; }
.rev-photo img {
  width: 100%; height: 240px;
  object-fit: cover; display: block;
  transition: transform .6s var(--ease);
}
.rev-photo:hover img { transform: scale(1.04); }
.rev-photo-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 18px 16px;
  background: linear-gradient(transparent, rgba(7,20,42,.82));
  color: #fff;
}
.rev-photo-cap strong { display: block; font-size: 14px; font-weight: 700; }
.rev-photo-cap span { font-size: 11.5px; opacity: .72; }

.reviews-track-outer {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.reviews-track-outer::-webkit-scrollbar { display: none; }
.reviews-track-outer.is-dragging { cursor: grabbing; scroll-snap-type: none; }

.reviews-track {
  display: flex;
  gap: 20px;
  padding: 8px 2px 20px;
}

.rv-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 2px 18px rgba(7,20,42,.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .25s;
}
.rv-card:hover { box-shadow: 0 6px 28px rgba(7,20,42,.13); }

.rv-top { display: flex; align-items: center; gap: 12px; }
.rv-avatar {
  width: 46px; height: 46px;
  border-radius: 50%; object-fit: cover;
  flex-shrink: 0; background: var(--navy-800);
}
.rv-info { flex: 1; min-width: 0; }
.rv-name {
  font-weight: 700; font-size: 13.5px; color: var(--navy-900);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rv-meta { font-size: 11px; color: var(--ink-soft); margin-top: 2px; }

.rv-stars { display: flex; gap: 1px; line-height: 1; }
.rv-s { font-size: 15px; color: #f5a623; }
.rv-s.empty { color: #d8dce3; }
.rv-s.half {
  background: linear-gradient(to right, #f5a623 50%, #d8dce3 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rv-text {
  font-size: 13.5px; line-height: 1.62; color: var(--ink);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rv-card-photo {
  width: 100%; height: 140px;
  object-fit: cover; border-radius: 10px;
  display: block; margin-top: -4px;
}

.rv-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
}
.rv-place { font-size: 11px; color: var(--ink-soft); }
.rv-date { font-size: 11px; color: #b0b8c4; }

.reviews-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-top: 28px;
}
.rv-nav-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid #d0d5dd; background: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-800);
  transition: background .18s, border-color .18s, color .18s;
  box-shadow: 0 1px 4px rgba(7,20,42,.08);
}
.rv-nav-btn:hover { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.rv-nav-btn svg { width: 16px; height: 16px; }

.rv-dots { display: flex; gap: 6px; align-items: center; }
.rv-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #d0d5dd; border: none; cursor: pointer;
  padding: 0; transition: background .2s, transform .2s;
}
.rv-dot.active { background: var(--navy-800); transform: scale(1.35); }

.reviews-cta-row {
  display: flex; justify-content: center; margin-top: 44px;
}
.rv-leave-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1.5px solid var(--navy-700); color: var(--navy-700);
  border-radius: 40px; padding: 12px 30px;
  font-size: 14px; font-weight: 600; font-family: var(--ff-body);
  cursor: pointer; transition: background .18s, color .18s, border-color .18s;
}
.rv-leave-btn:hover { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

/* Modal */
.rv-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(7,20,42,.58);
  z-index: 11000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.rv-modal-overlay.open { opacity: 1; pointer-events: auto; }

.rv-modal {
  background: #fff; border-radius: 20px;
  padding: 36px 32px; max-width: 480px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(14px) scale(.97);
  transition: transform .25s;
}
.rv-modal-overlay.open .rv-modal { transform: translateY(0) scale(1); }

.rv-modal h3 {
  font-family: var(--ff-display);
  font-size: 1.65rem; color: var(--navy-900); margin-bottom: 22px;
}
.rv-modal-group { margin-bottom: 16px; }
.rv-modal-group label {
  display: block; font-size: 11.5px; font-weight: 700;
  color: var(--ink-soft); text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: 6px;
}
.rv-modal-group input,
.rv-modal-group textarea {
  width: 100%; border: 1.5px solid #e0e4ea;
  border-radius: 10px; padding: 10px 14px;
  font-size: 14px; font-family: var(--ff-body);
  color: var(--ink); outline: none; resize: none;
  transition: border-color .15s; box-sizing: border-box;
}
.rv-modal-group input:focus,
.rv-modal-group textarea:focus { border-color: var(--navy-700); }

.rv-modal-stars-label {
  font-size: 11.5px; font-weight: 700; color: var(--ink-soft);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px;
}
.rv-modal-stars { display: flex; gap: 6px; margin-bottom: 22px; }
.rv-modal-star {
  font-size: 30px; cursor: pointer; color: #d8dce3;
  transition: color .1s; line-height: 1; user-select: none;
}
.rv-modal-star.lit { color: #f5a623; }

.rv-modal-actions { display: flex; gap: 10px; justify-content: flex-end; }
.rv-modal-cancel {
  background: transparent; border: 1.5px solid #e0e4ea;
  border-radius: 10px; padding: 10px 20px;
  font-size: 14px; font-family: var(--ff-body);
  cursor: pointer; color: var(--ink-soft); transition: border-color .15s;
}
.rv-modal-cancel:hover { border-color: var(--ink-soft); }
.rv-modal-submit {
  background: var(--navy-900); color: #fff;
  border: none; border-radius: 10px;
  padding: 10px 26px; font-size: 14px; font-weight: 600;
  font-family: var(--ff-body); cursor: pointer; transition: background .15s;
}
.rv-modal-submit:hover { background: var(--navy-700); }

.rv-modal-thanks {
  text-align: center; padding: 20px 0; display: none;
}
.rv-modal-thanks .thanks-icon { font-size: 48px; line-height: 1; margin-bottom: 16px; }
.rv-modal-thanks h4 {
  font-family: var(--ff-display);
  font-size: 1.5rem; color: var(--navy-900); margin-bottom: 12px;
}
.rv-modal-thanks p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

@media (max-width: 768px) {
  .reviews-photos { grid-template-columns: 1fr; }
  .rv-card { flex: 0 0 260px; }
}
@media (max-width: 480px) {
  .rv-card { flex: 0 0 calc(100vw - 56px); }
}
