:root {
  --bg:        #070808;
  --surface:   #101213;
  --surface-2: #171a1c;
  --surface-3: #202326;
  --border:    rgba(255,255,255,0.09);
  --border-2:  rgba(255,255,255,0.18);
  --accent:    #f4b62a;
  --accent-2:  #c98a10;
  --blue:      #6bbce5;
  --text:      #f6f3eb;
  --muted:     rgba(246,243,235,0.62);
  --muted-2:   rgba(246,243,235,0.38);
  --ease:      cubic-bezier(.22,1,.36,1);
  --shadow:    0 8px 32px rgba(0,0,0,0.38);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.52);
  --radius:    6px;
  --radius-lg: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.hidden { display: none !important; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes tab-slide {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ─── PREHEADER ─── */
.preheader {
  padding: 8px clamp(18px,4vw,58px);
  background: #070709;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.preheader-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1200px,100%);
  margin: 0 auto;
}
.preheader span,
.preheader a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 160ms ease;
}
.preheader a:hover { color: var(--text); }
.preheader-left,
.preheader-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.pre-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ─── TOPBAR ─── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 12px clamp(18px,4vw,58px);
  background: rgba(12,12,14,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 220px;
}
.brand img {
  width: clamp(180px,18vw,260px);
  transform: scaleX(1.18);
  transform-origin: left center;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(10px,1.6vw,28px);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.nav a {
  color: var(--muted);
  padding: 6px 0;
  position: relative;
  transition: color 160ms ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms var(--ease);
}
.nav a:hover,
.nav a.active { color: var(--text); }
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-toggle,
.menu-button {
  display: inline-grid;
  width: 40px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 160ms ease, border-color 160ms ease;
}
.lang-toggle:hover,
.menu-button:hover {
  background: var(--surface-2);
  border-color: var(--border-2);
}
.menu-button { display: none; }
.menu-button span {
  display: block;
  width: 16px; height: 1.5px;
  margin: 3px 0;
  background: currentColor;
  border-radius: 1px;
}
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 18px;
  border: none;
  border-radius: var(--radius);
  background: var(--accent);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 160ms ease, transform 160ms var(--ease);
}
.nav-cta:hover,
.button:hover {
  background: #f9d07a;
  transform: translateY(-1px);
}
.button.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
  font-weight: 600;
}
.button.secondary:hover {
  background: var(--surface-2);
  border-color: rgba(255,255,255,0.22);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #fff;
  padding: clamp(80px,10vw,130px) clamp(18px,5vw,72px);
  background:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.50) 50%, rgba(0,0,0,0.20) 100%),
    url("alaska-aerial-harbor.png") center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, var(--bg), transparent);
  pointer-events: none;
}
.hero-inner,
.inner,
.footer-inner {
  width: min(1200px,100%);
  margin: 0 auto;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(320px,420px);
  gap: clamp(30px,6vw,80px);
  align-items: center;
}
.hero-grid > div:first-child { animation: fade-up 700ms var(--ease) both; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(40px,5.2vw,68px);
  line-height: 1.0;
  font-weight: 800;
  letter-spacing: 0;
}
h1 em { color: var(--accent); font-style: normal; }
h2 {
  margin-bottom: 14px;
  font-size: clamp(28px,3.8vw,46px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: 0;
}
h3 { line-height: 1.2; font-weight: 700; }

.hero-copy {
  max-width: 660px;
  color: rgba(255,255,255,0.72);
  font-size: clamp(15px,1.6vw,18px);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero-actions .button { min-height: 44px; padding: 11px 22px; font-size: 14px; }

.hero-panel {
  overflow: hidden;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  animation: fade-up 800ms var(--ease) 100ms both;
}
.hero-panel img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.mini-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mini-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}
.mini-list b {
  display: grid;
  width: 32px; height: 32px;
  place-items: center;
  border-radius: 5px;
  background: var(--surface-3);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
}

/* ─── SERVICE RIBBON ─── */
.service-ribbon {
  position: relative;
  z-index: 3;
  padding: 0 clamp(18px,5vw,72px);
  margin-top: -1px;
}
.service-ribbon .inner {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.ribbon-item {
  position: relative;
  min-height: 110px;
  padding: 22px 20px;
  border-right: 1px solid var(--border);
  transition: background 200ms ease;
}
.ribbon-item:last-child { border-right: 0; }
.ribbon-item:hover { background: var(--surface-2); }
.ribbon-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 200ms ease;
}
.ribbon-item:hover::before { opacity: 1; }
.ribbon-item b {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ribbon-item strong { display: block; font-size: 14px; margin-bottom: 4px; }
.ribbon-item span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
}

/* ─── SECTIONS ─── */
section { padding: clamp(56px,7vw,88px) clamp(18px,5vw,72px); }
.band { background: var(--surface); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(260px,0.65fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 36px;
}
.section-head p { color: var(--muted); margin-bottom: 0; }

/* ─── CARDS ─── */
.grid-3,
.job-grid,
.team-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 16px;
}
.card,
.job-card,
.team-card,
.review-card,
.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: border-color 200ms ease, background 200ms ease, transform 200ms var(--ease);
}
.card:hover,
.job-card:hover,
.team-card:hover,
.review-card:hover,
.contact-card:hover {
  border-color: var(--border-2);
  background: var(--surface-2);
  transform: translateY(-4px);
}
.card { padding: 24px; position: relative; overflow: hidden; }
.card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), transparent);
}
.card b,
.trust-item b {
  display: inline-grid;
  min-width: 36px;
  height: 32px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 5px;
  background: var(--surface-3);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
}
.card p,
.job-card p,
.team-card p,
.review-card p,
.contact-card p { color: var(--muted); font-size: 14px; }

/* ─── JOB CARDS ─── */
.job-card { overflow: hidden; }
.job-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 500ms var(--ease), filter 500ms ease;
}
.job-card:hover img { transform: scale(1.04); filter: brightness(1.08); }
.job-body { padding: 22px; position: relative; }
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.tag {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 4px;
  background: var(--surface-3);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tag.hot { background: rgba(243,193,95,0.15); color: var(--accent); }

.meta-list {
  display: grid;
  gap: 0;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
}
.meta-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.meta-list b { color: var(--text); font-weight: 600; text-align: right; }

.details-toggle {
  width: 100%;
  min-height: 40px;
  margin-top: 16px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}
.details-toggle:hover { background: var(--surface-3); }
.job-card.open .details-toggle {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.job-details {
  display: none;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-3);
}
.job-card.open .job-details {
  display: block;
  animation: fade-up 240ms var(--ease) both;
}
.job-details ul {
  display: grid;
  gap: 7px;
  margin: 10px 0 0;
  padding-left: 16px;
  color: var(--muted);
  font-size: 13px;
}

/* ─── TRACKS ─── */
.tracks-section { background: var(--bg); }
.tracks-shell {
  display: grid;
  grid-template-columns: minmax(260px,0.42fr) minmax(0,1fr);
  gap: clamp(20px,3vw,42px);
  align-items: stretch;
}
.track-tabs { display: grid; gap: 8px; align-content: start; }
.track-tab {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 86px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 160ms var(--ease);
}
.track-tab:hover,
.track-tab.active {
  border-color: var(--border-2);
  background: var(--surface-2);
  transform: translateX(4px);
}
.track-tab.active { border-left: 2px solid var(--accent); }
.track-thumb {
  width: 68px; height: 68px;
  border-radius: 7px;
  object-fit: cover;
  opacity: 0.82;
  transition: opacity 180ms ease;
}
.track-tab.active .track-thumb,
.track-tab:hover .track-thumb { opacity: 1; }
.track-tab b {
  display: grid;
  width: 36px; height: 32px;
  place-items: center;
  border-radius: 5px;
  background: var(--surface-3);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.track-tab.active b { background: var(--accent); color: #000; }
.track-tab-text { min-width: 0; }
.track-tab strong { display: block; margin-bottom: 2px; font-size: 14px; font-weight: 700; }
.track-tab span { color: var(--muted); font-size: 12px; }
.tab-chip {
  align-self: start;
  padding: 4px 7px;
  border-radius: 4px;
  background: rgba(243,193,95,0.15);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.track-panel {
  display: none;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.track-panel.hot-vacancy { border-color: rgba(243,193,95,0.28); }
.track-panel.active {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(300px,0.75fr);
  animation: tab-slide 320ms var(--ease) both;
}
.track-copy { padding: clamp(24px,3.5vw,40px); }
.track-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(24px,3vw,36px);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.track-copy p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.track-lead { font-size: 15px; line-height: 1.7; }
.track-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}
.track-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  transition: background 160ms ease, transform 160ms var(--ease);
}
.track-detail-button:hover { background: #f9d07a; transform: translateY(-1px); }

.hot-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 4px;
  background: rgba(243,193,95,0.12);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hot-label::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.track-facts {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 8px;
  margin: 18px 0;
}
.track-fact {
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-3);
}
.track-fact span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.track-fact b { display: block; color: var(--text); font-size: 14px; font-weight: 700; }
.track-image { position: relative; overflow: hidden; }
.track-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}
.hot-badge {
  position: absolute;
  z-index: 2;
  top: 16px; left: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 4px;
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.track-note {
  margin: 0;
  padding-left: 16px;
  color: var(--muted);
  font-size: 13px;
}
.track-note li { margin-bottom: 6px; }

/* ─── TRUST PANEL ─── */
.trust-panel {
  display: grid;
  grid-template-columns: minmax(0,0.88fr) minmax(0,1.12fr);
  gap: clamp(24px,4vw,54px);
  padding: clamp(28px,4vw,44px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.trust-panel p { color: var(--muted); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
}
.trust-item {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface-3);
  transition: border-color 200ms ease, background 200ms ease;
}
.trust-item:hover { border-color: var(--border-2); background: var(--surface-2); }
.trust-item h3 { font-size: 15px; margin-bottom: 6px; }
.trust-item p { font-size: 13px; margin-bottom: 0; }

/* ─── PAGE HERO ─── */
.page-hero {
  position: relative;
  color: #fff;
  padding: clamp(80px,9vw,120px) clamp(18px,5vw,72px);
  background:
    linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.54) 55%, rgba(0,0,0,0.24) 100%),
    var(--page-bg) center/cover no-repeat;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 80px;
  background: linear-gradient(0deg, var(--bg), transparent);
  pointer-events: none;
}
.page-hero p { max-width: 640px; color: rgba(255,255,255,0.68); font-size: 17px; }

/* ─── JOBS HERO ─── */
.jobs-hero {
  min-height: auto;
  padding-top: clamp(36px,5vw,56px);
  padding-bottom: clamp(32px,4vw,50px);
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.62) 50%, rgba(0,0,0,0.30) 100%),
    var(--page-bg) center/cover no-repeat;
}
.jobs-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(300px,.66fr);
  gap: clamp(24px,4vw,52px);
  align-items: center;
}
.jobs-hero-grid > .eyebrow,
.jobs-hero-grid > h1,
.jobs-hero-grid > p { grid-column: 1; }
.jobs-hero h1 { max-width: 640px; margin-bottom: 8px; font-size: clamp(32px,4vw,50px); }
.jobs-hero p { max-width: 580px; margin-bottom: 0; }
.jobs-hero-card {
  grid-column: 2;
  grid-row: 1 / span 3;
  overflow: hidden;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  background: rgba(22,22,26,0.90);
  backdrop-filter: blur(16px);
}
.jobs-hot-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.jobs-hot-line span {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 4px;
  background: var(--accent);
  color: #000;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.jobs-hot-line b { font-size: 14px; font-weight: 700; }
.jobs-hero-stats {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 1px;
  background: var(--border);
}
.jobs-hero-stats div {
  min-height: 64px;
  padding: 12px;
  background: var(--surface);
}
.jobs-hero-stats span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.jobs-hero-stats b { color: var(--text); font-size: 14px; font-weight: 700; }
.jobs-mini-gallery {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 5px;
  padding: 5px;
}
.jobs-mini-gallery img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  border-radius: 5px;
  opacity: 0.85;
}

/* ─── TIMELINE ─── */
.timeline {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 14px;
}

/* ─── TEAM ─── */
.team-section-replacement + .inner,
.faq-list-legacy {
  display: none;
}
.team-grid-old {
  display: none;
}
.team-grid-corrected {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.team-card {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
    var(--surface);
}
.team-photo {
  position: relative;
  display: block;
  height: clamp(230px, 27vw, 320px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.18)),
    var(--team-bg) center/cover no-repeat;
}
.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0,0,0,0.34));
  pointer-events: none;
}
.team-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.team-img-top {
  object-position: center top;
}
.team-img-yuriy { object-position: center 54%; }
.team-img-anna { object-position: center 58%; }
.team-img-david { object-position: center 56%; }
.team-img-rodion {
  object-fit: cover;
  object-position: center top;
  transform: scale(1.12);
  transform-origin: center top;
}
.team-img-rodion-orlovs {
  object-position: center 22%;
}
.team-photo span {
  display: grid;
  width: 68px; height: 68px;
  place-items: center;
  border: 1.5px solid rgba(255,255,255,0.54);
  border-radius: 50%;
  background: rgba(0,0,0,0.30);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}
.team-body {
  padding: 24px;
  min-height: 208px;
}
.team-body h3 {
  margin-bottom: 8px;
  font-size: 24px;
}
.role {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── REVIEWS ─── */
.review-grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; }
.review-card { padding: 18px; }
.review-date {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.review-card b { display: block; font-size: 14px; margin-bottom: 8px; }

/* ─── CONTACT ─── */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0,0.78fr) minmax(340px,1fr);
  gap: clamp(24px,5vw,64px);
}
.contact-card { padding: 28px; }
.contact-list { display: grid; gap: 14px; margin-top: 22px; }
.contact-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
}
.contact-icon {
  display: grid;
  width: 36px; height: 36px;
  place-items: center;
  border-radius: 7px;
  background: var(--surface-3);
  color: var(--accent);
  border: 1px solid var(--border-2);
}
.contact-icon svg { width: 17px; height: 17px; }
.whatsapp { background: rgba(19,196,107,0.14); color: #13c46b; border-color: rgba(19,196,107,0.22); }
.telegram { background: rgba(42,167,223,0.14); color: #2aa7df; border-color: rgba(42,167,223,0.22); }
.contact-text span { display: block; font-weight: 700; font-size: 13px; }
.contact-text a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.contact-form label { display: grid; gap: 7px; font-size: 13px; font-weight: 600; color: var(--muted); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: var(--surface-3);
  color: var(--text);
  font-size: 14px;
  transition: border-color 160ms ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form select option { background: var(--surface-3); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form label.full,
.contact-form .button,
.form-status { grid-column: 1 / -1; }
.contact-form .button { min-height: 44px; font-size: 14px; }
.form-status { min-height: 20px; color: var(--muted); font-size: 13px; }

/* ─── FOOTER ─── */
footer {
  padding: 36px clamp(18px,5vw,72px);
  background: #070709;
  border-top: 1px solid var(--border);
  color: var(--text);
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 24px;
  align-items: center;
}
footer p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
footer strong { font-size: 15px; font-weight: 700; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.footer-links a:hover { color: var(--text); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1040px) {
  .preheader-inner { flex-direction: column; align-items: flex-start; }
  .nav {
    position: fixed;
    top: 72px;
    left: 12px; right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 18px; border-bottom: 1px solid var(--border); color: var(--text); }
  .nav a::after { display: none; }
  .menu-button { display: inline-grid; }
  .brand { min-width: auto; }
  .hero-grid,
  .section-head,
  .tracks-shell,
  .jobs-hero-grid,
  .trust-panel,
  .contact-layout,
  .footer-inner { grid-template-columns: 1fr; }
  .jobs-hero-grid > .eyebrow,
  .jobs-hero-grid > h1,
  .jobs-hero-grid > p,
  .jobs-hero-card { grid-column: 1; grid-row: auto; }
  .job-grid,
  .grid-3,
  .team-grid,
  .timeline,
  .trust-grid,
  .service-ribbon .inner,
  .review-grid { grid-template-columns: 1fr 1fr; }
  .team-grid-corrected { grid-template-columns: 1fr 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .preheader { display: none; }
  .topbar { min-height: 60px; padding: 10px 16px; }
  .brand img { width: min(190px, calc(100vw - 120px)); }
  .nav { top: 60px; }
  .nav-cta { display: none; }
  .hero { min-height: auto; }
  h1 { font-size: 36px; }
  .job-grid,
  .grid-3,
  .team-grid,
  .timeline,
  .trust-grid,
  .service-ribbon .inner,
  .review-grid { grid-template-columns: 1fr; }
  .track-panel.active { grid-template-columns: 1fr; }
  .track-image { min-height: 220px; order: -1; }
  .track-image img { min-height: 220px; }
  .track-facts { grid-template-columns: 1fr 1fr; }
  .jobs-hero { padding-top: 28px; padding-bottom: 28px; }
  .jobs-hero h1 { font-size: 30px; line-height: 1.06; }
  .jobs-mini-gallery img { height: 62px; }
  .service-ribbon { padding: 0; }
  .service-ribbon .inner { border-radius: 0; border-left: 0; border-right: 0; }
  .contact-form { grid-template-columns: 1fr; padding: 18px; }
  .trust-panel { padding: 20px; }
  .team-grid-corrected .team-photo {
    aspect-ratio: 4 / 5;
    height: auto;
  }
  .team-grid-corrected .team-img-yuriy {
    object-position: center center;
  }
  .team-grid-corrected .team-img-anna {
    object-position: center 24%;
  }
  .team-grid-corrected .team-img-david {
    object-position: center center;
  }
  .team-grid-corrected .team-img-rodion {
    object-position: center top;
  }
  .team-grid-corrected .team-body {
    min-height: auto;
    padding: 22px 24px 28px;
  }
}

/* BouwPro-inspired dark industrial layer */
.hero {
  min-height: min(820px, calc(100vh - 34px));
  background:
    linear-gradient(90deg, rgba(7,8,8,0.94) 0%, rgba(7,8,8,0.76) 48%, rgba(7,8,8,0.34) 100%),
    url("alaska-processing-line.png") center/cover no-repeat;
}
.hero::before,
.page-hero::before,
.services-section::before,
.numbers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.72), transparent 78%);
}
.hero .hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 390px);
  gap: clamp(32px, 7vw, 98px);
  align-items: end;
}
.hero-text { max-width: 780px; }
.hero-lead {
  max-width: 680px;
  color: rgba(246,243,235,0.72);
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.72;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--border-2);
  background: rgba(16,18,19,0.84);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}
.hero-stat {
  min-height: 132px;
  padding: 22px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hero-stat:nth-child(2n) { border-right: 0; }
.hero-stat:nth-last-child(-n + 2) { border-bottom: 0; }
.hero-stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
  font-weight: 900;
}
.hero-stat span {
  display: block;
  color: rgba(246,243,235,0.66);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.services-section,
.numbers-section,
.partners-section,
.process-section,
.faq-section,
.cta-section {
  position: relative;
  overflow: hidden;
}
.services-section {
  background: linear-gradient(180deg, #070808 0%, #101213 100%);
}
.section-label,
.numbers-head {
  max-width: 760px;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.section-label.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-sub {
  max-width: 720px;
  margin: 12px auto 0;
  color: var(--muted);
}
.service-block {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  min-height: 430px;
  margin-bottom: clamp(18px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0c0e0f;
  box-shadow: 0 24px 70px rgba(0,0,0,0.32);
}
.service-block.reverse .service-photo { order: 2; }
.service-block.reverse .service-body { order: 1; }
.service-photo {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #050606;
}
.service-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.08) brightness(0.82);
  transition: transform 700ms var(--ease), filter 700ms ease;
}
.service-block:hover .service-photo img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.12) brightness(0.95);
}
.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0,0,0,0.52)),
    linear-gradient(90deg, rgba(244,182,42,0.12), transparent 34%);
}
.service-badge {
  position: absolute;
  z-index: 2;
  left: 22px;
  top: 22px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  background: rgba(16,18,19,0.86);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(12px);
}
.service-badge.hot {
  background: var(--accent);
  border-color: var(--accent);
  color: #070808;
}
.service-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4.5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.035), transparent 46%),
    var(--surface);
}
.service-body h3 {
  margin-bottom: 14px;
  font-size: clamp(27px, 3.3vw, 46px);
  line-height: 1.04;
}
.service-body > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15.5px;
}
.service-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.service-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(246,243,235,0.76);
  font-size: 14px;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 2px;
  background: var(--accent);
}
.service-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.numbers-section {
  background: linear-gradient(180deg, #101213, #070808);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.number-item {
  min-height: 190px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04), transparent 58%),
    rgba(255,255,255,0.018);
}
.number-item strong {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.96;
  font-weight: 900;
}
.number-item span {
  display: block;
  max-width: 180px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

/* Compact numbers block */
.numbers-section {
  padding-top: clamp(32px, 5vw, 54px);
  padding-bottom: clamp(28px, 5vw, 48px);
}
.numbers-section .inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: stretch;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.035), transparent 46%),
    rgba(16,18,19,0.74);
}
.numbers-section .numbers-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 0;
}
.numbers-section .numbers-head h2 {
  margin-bottom: 0;
}
.numbers-section .numbers-grid {
  overflow: hidden;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(7,8,8,0.45);
}
.numbers-section .number-item {
  min-height: 116px;
  padding: clamp(16px, 2.2vw, 24px);
  background: transparent;
}
.numbers-section .number-item strong {
  margin-bottom: 10px;
  font-size: clamp(34px, 4.2vw, 54px);
}
.numbers-section .number-item span {
  max-width: none;
  font-size: 11px;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .numbers-section {
    padding-top: 22px;
    padding-bottom: 18px;
  }
  .numbers-section .inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }
  .numbers-section .numbers-head h2 {
    font-size: 28px;
    line-height: 1.05;
  }
  .numbers-section .numbers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .numbers-section .number-item {
    min-height: 92px;
    padding: 14px 12px;
  }
  .numbers-section .number-item strong {
    margin-bottom: 7px;
    font-size: clamp(30px, 10vw, 40px);
  }
  .numbers-section .number-item span {
    font-size: 10px;
    letter-spacing: 0.06em;
  }
}
.partners-section {
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: clamp(34px, 5vw, 58px);
  background: #0c0e0f;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-note {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.partners-grid span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: rgba(246,243,235,0.74);
  font-size: 13px;
  font-weight: 700;
}
.partners-grid span:hover {
  border-color: rgba(244,182,42,0.36);
  color: var(--text);
  background: var(--surface-2);
}

/* Compact partner block */
.partners-section {
  padding-top: clamp(24px, 4vw, 42px);
  padding-bottom: clamp(24px, 4vw, 42px);
}
.partners-section .inner {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(197,22,46,0.08), transparent 42%),
    rgba(16,18,19,0.72);
}
.partners-section .section-note {
  margin-bottom: 12px;
  font-size: 11.5px;
}
.partners-section .partners-grid {
  overflow: hidden;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(7,8,8,0.45);
}
.partners-section .partners-grid span {
  min-height: 38px;
  padding: 8px 14px;
  border: 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: transparent;
  font-size: 12.5px;
}
.partners-section .partners-grid span:nth-child(4n) {
  border-right: 0;
}
.partners-section .partners-grid span:nth-last-child(-n + 4) {
  border-bottom: 0;
}
.partners-section .partners-grid span:hover {
  background: rgba(197,22,46,0.12);
  border-color: var(--border);
}

@media (max-width: 760px) {
  .partners-section {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .partners-section .inner {
    padding: 14px;
  }
  .partners-section .section-note {
    margin-bottom: 9px;
    font-size: 10.5px;
    line-height: 1.35;
  }
  .partners-section .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .partners-section .partners-grid span {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 11.5px;
    line-height: 1.25;
  }
  .partners-section .partners-grid span:nth-child(4n) {
    border-right: 1px solid var(--border);
  }
  .partners-section .partners-grid span:nth-child(2n) {
    border-right: 0;
  }
  .partners-section .partners-grid span:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--border);
  }
  .partners-section .partners-grid span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}
.process-section.band {
  background: linear-gradient(180deg, #070808, #101213);
}
.process-steps {
  display: grid;
  grid-template-columns: minmax(0,1fr) 42px minmax(0,1fr) 42px minmax(0,1fr) 42px minmax(0,1fr);
  align-items: stretch;
}
.process-step {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.process-step h3 { margin-bottom: 8px; }
.process-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}
.step-num {
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.process-connector {
  align-self: center;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(244,182,42,0.12));
}
.faq-section { background: #070808; }
.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}
.faq-head {
  position: sticky;
  top: 112px;
}
.faq-head p:not(.eyebrow) { color: var(--muted); }
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--border);
  background: var(--surface);
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--text);
  font-weight: 800;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}
.faq-item[open] summary::after { content: "-"; }
.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}
.faq-list.faq-list-legacy {
  display: none;
}
.review-grid-old {
  display: none;
}
.cta-section {
  padding-top: clamp(44px, 7vw, 76px);
  padding-bottom: clamp(44px, 7vw, 76px);
  background:
    linear-gradient(90deg, rgba(244,182,42,0.16), transparent 42%),
    #0c0e0f;
}
.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(244,182,42,0.28);
  background:
    linear-gradient(135deg, rgba(244,182,42,0.12), transparent 42%),
    var(--surface);
}
.cta-inner h2 { margin-bottom: 8px; }
.cta-inner p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
}
.cta-btn { min-width: 170px; }

@media (max-width: 1040px) {
  .hero .hero-inner,
  .service-block,
  .faq-layout,
  .cta-inner {
    grid-template-columns: 1fr;
  }
  .service-block.reverse .service-photo,
  .service-block.reverse .service-body {
    order: initial;
  }
  .numbers-grid,
  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .process-connector { display: none; }
  .faq-head { position: static; }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-top: 74px;
    padding-bottom: 54px;
  }
  .hero .hero-inner { gap: 24px; }
  .hero-stats,
  .numbers-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }
  .hero-stat,
  .number-item {
    min-height: auto;
  }
  .service-photo,
  .service-photo img {
    min-height: 260px;
  }
  .service-body { padding: 24px; }
}

/* Header cleanup, logo update, numbered markers and compact jobs on home */
.preheader {
  display: none;
}
.topbar {
  top: 0;
}
.brand {
  min-width: 220px;
  justify-content: flex-start;
}
.brand img {
  width: clamp(180px,18vw,260px);
  height: auto;
  object-fit: contain;
  transform: none;
  mix-blend-mode: normal;
}
.card b,
.trust-item b,
.step-num {
  color: var(--accent);
}
.trust-item b,
.card b {
  background: transparent;
  min-width: auto;
  height: auto;
  place-items: start;
  margin-bottom: 20px;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.menu-button {
  width: auto;
  min-width: 78px;
  padding: 0 12px;
  grid-auto-flow: column;
  grid-template-columns: 18px auto;
  gap: 8px;
}
.menu-button strong {
  display: inline-block;
  color: currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}
.menu-button span {
  grid-column: 1;
}
.services-section .inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.services-section .section-label {
  grid-column: 1 / -1;
}
.services-section .service-block,
.services-section .service-block.reverse {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
  margin-bottom: 0;
}
.services-section .service-block.reverse .service-photo,
.services-section .service-block.reverse .service-body {
  order: initial;
}
.services-section .service-photo,
.services-section .service-photo img {
  min-height: 235px;
}
.services-section .service-body {
  justify-content: flex-start;
  padding: clamp(22px, 2.5vw, 30px);
}
.services-section .service-body h3 {
  font-size: clamp(23px, 2.1vw, 31px);
}
.services-section .service-body > p:not(.eyebrow) {
  font-size: 14px;
}
.services-section .service-list li {
  font-size: 13px;
}

@media (max-width: 1040px) {
  .services-section .inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    min-height: 58px;
    padding: 8px 12px;
    gap: 8px;
  }
  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }
  .brand img {
    width: min(148px, 38vw);
  }
  .header-actions {
    gap: 6px;
    flex: 0 0 auto;
  }
  .lang-toggle {
    width: 36px;
    height: 34px;
  }
  .menu-button {
    display: inline-grid;
    min-width: 72px;
    height: 34px;
    padding: 0 10px;
  }
  .nav {
    top: 58px;
  }
}

/* Mobile fullscreen menu */
.mobile-menu-extra {
  display: none;
}

@media (max-width: 1040px) {
  body.menu-open {
    overflow: hidden;
  }
  .menu-button {
    display: inline-grid;
    position: relative;
    z-index: 80;
    width: 58px;
    min-width: 58px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #f8f5ec;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    gap: 0;
    place-items: center;
  }
  .menu-button:hover {
    background: transparent;
    border-color: transparent;
  }
  .menu-button span {
    grid-column: 1;
    display: block;
    width: 42px;
    height: 3px;
    margin: 4px 0;
    border-radius: 0;
    background: currentColor;
    transition: transform 220ms var(--ease), opacity 180ms ease, width 180ms ease;
  }
  .menu-button strong {
    display: none;
  }
  body.menu-open .menu-button {
    position: fixed;
    top: 28px;
    right: 26px;
    width: auto;
    min-width: 158px;
    height: 64px;
    grid-template-columns: 58px auto;
    gap: 15px;
    color: #fff;
  }
  body.menu-open .menu-button span {
    width: 54px;
    height: 2px;
    margin: 0;
    transform-origin: center;
  }
  body.menu-open .menu-button span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  body.menu-open .menu-button span:nth-child(2) {
    opacity: 0;
  }
  body.menu-open .menu-button span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  body.menu-open .menu-button strong {
    display: inline-block;
    font-size: clamp(28px, 7vw, 44px);
    font-weight: 300;
    letter-spacing: 0;
  }
  body.menu-open .lang-toggle {
    position: fixed;
    top: 36px;
    left: 28px;
    z-index: 80;
    width: 54px;
    height: 44px;
    border-color: rgba(255,255,255,0.58);
    background: transparent;
    color: #fff;
  }
  .nav {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 5vh, 34px);
    min-height: 100vh;
    padding: 118px 26px 42px;
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    background: #07477a;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    transition: transform 320ms var(--ease), opacity 220ms ease;
  }
  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav a {
    width: auto;
    padding: 0;
    border: 0;
    color: rgba(255,255,255,0.94);
    font-size: clamp(31px, 8vw, 58px);
    line-height: 1.08;
    font-weight: 300;
    text-align: center;
    letter-spacing: 0;
  }
  .nav a.active,
  .nav a:hover {
    color: #fff;
  }
  .mobile-menu-extra {
    display: grid;
    justify-items: center;
    gap: clamp(26px, 6vh, 46px);
    width: min(760px, 100%);
    margin-top: clamp(10px, 4vh, 38px);
  }
  .mobile-menu-actions {
    display: grid;
    justify-items: center;
    gap: 22px;
    width: min(720px, 100%);
  }
  .mobile-menu-primary,
  .mobile-menu-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(70px, 12vw, 106px);
    border-radius: 999px;
    font-size: clamp(24px, 6vw, 45px);
    font-weight: 300;
    letter-spacing: 0;
    text-align: center;
  }
  .mobile-menu-primary {
    width: min(700px, 100%);
    background: #fff;
    color: #07477a !important;
    border: 2px solid rgba(255,255,255,0.94);
  }
  .mobile-menu-secondary {
    width: min(390px, 82%);
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.88);
  }
  .mobile-menu-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(12px, 4vw, 24px);
  }
  .mobile-menu-social a {
    display: grid;
    width: clamp(54px, 12vw, 86px);
    height: clamp(54px, 12vw, 86px);
    place-items: center;
    border: 2px solid rgba(145,215,239,0.78);
    border-radius: 50%;
    color: #9bdcf2 !important;
    font-size: clamp(15px, 3.5vw, 24px);
    font-weight: 700;
  }
}

@media (min-width: 1041px) {
  .mobile-menu-extra {
    display: none !important;
  }
}

@media (max-width: 640px) {
  body.menu-open .menu-button {
    top: 18px;
    right: 16px;
    min-width: 126px;
    height: 52px;
    grid-template-columns: 44px auto;
    gap: 11px;
  }
  body.menu-open .lang-toggle {
    top: 22px;
    left: 16px;
    width: 48px;
    height: 38px;
  }
  body.menu-open .menu-button span {
    width: 42px;
  }
  .nav {
    padding: 100px 22px 34px;
    gap: 21px;
  }
}

/* Labels, dark mobile menu and social icons */
.card b,
.trust-item b,
.step-num,
.faq-head .eyebrow {
  font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C5162E;
}
.card b,
.trust-item b {
  display: block;
  background: transparent;
  min-width: 0;
  height: auto;
  margin-bottom: 18px;
}
.step-num {
  margin-bottom: 28px;
}

/* Compact process and reviews */
.process-section {
  padding-top: clamp(34px, 5vw, 60px);
  padding-bottom: clamp(32px, 5vw, 56px);
}
.process-section .inner {
  padding: clamp(16px, 3vw, 30px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.035), transparent 42%),
    rgba(14,16,17,0.86);
}
.process-section .section-label.centered {
  max-width: 840px;
  margin: 0 auto 24px;
}
.process-section .section-label h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
}
.process-section .process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.process-section .process-connector {
  display: none;
}
.process-section .process-step {
  min-height: 164px;
  padding: clamp(15px, 2vw, 22px);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005)),
    rgba(8,9,10,0.72);
}
.process-section .step-num {
  margin-bottom: 18px;
  color: #C5162E;
  font-size: 12px;
}
.process-section .process-step h3 {
  margin-bottom: 8px;
  font-size: 18px;
}
.process-section .process-step p {
  font-size: 13px;
  line-height: 1.55;
}

.review-grid-old {
  display: none;
}
.review-grid-modern {
  padding: clamp(12px, 2vw, 18px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.03), transparent 44%),
    rgba(8,9,10,0.78);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.review-card-modern {
  display: flex;
  min-height: 0;
  padding: 14px;
  flex-direction: column;
  gap: 10px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.025);
}
.review-person {
  display: flex;
  align-items: center;
  gap: 9px;
}
.review-avatar {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1.5px solid rgba(197,22,46,0.65);
  border-radius: 50%;
  object-fit: cover;
  background: #1a1d1f;
}
.avatar-pos-1 { object-position: 18% 36%; }
.avatar-pos-2 { object-position: 31% 40%; }
.avatar-pos-3 { object-position: 44% 38%; }
.avatar-pos-4 { object-position: 58% 40%; }
.avatar-pos-5 { object-position: 72% 38%; }
.avatar-pos-6 { object-position: 86% 42%; }
.avatar-pos-7 { object-position: 20% 62%; }
.avatar-pos-8 { object-position: 35% 64%; }
.avatar-pos-9 { object-position: 48% 62%; }
.avatar-pos-10 { object-position: 62% 64%; }
.avatar-pos-11 { object-position: 76% 62%; }
.avatar-pos-12 { object-position: 90% 60%; }
.review-card-modern .review-date {
  margin-bottom: 1px;
  font-size: 10px;
}
.review-card-modern b {
  margin-bottom: 0;
  font-size: 13px;
}
.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.review-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 7px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,0.03);
  font-size: 10.5px;
  font-weight: 800;
}
.review-card-modern p {
  margin-bottom: 0;
  font-size: 12.5px;
  line-height: 1.5;
}

@media (max-width: 1040px) {
  .process-section .process-steps,
  .review-grid-modern {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .process-section {
    padding-top: 22px;
    padding-bottom: 20px;
  }
  .process-section .inner {
    padding: 14px;
  }
  .process-section .section-label.centered {
    margin-bottom: 14px;
    text-align: left;
  }
  .process-section .section-label h2 {
    font-size: 30px;
  }
  .process-section .section-sub {
    font-size: 13px;
  }
  .process-section .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .process-section .process-step {
    min-height: 132px;
    padding: 12px;
  }
  .process-section .step-num {
    margin-bottom: 10px;
    font-size: 10px;
  }
  .process-section .process-step h3 {
    font-size: 15px;
  }
  .process-section .process-step p {
    font-size: 11.5px;
    line-height: 1.42;
  }
  .review-grid-modern {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
  }
  .review-card-modern {
    padding: 12px;
    gap: 8px;
  }
  .review-avatar {
    width: 28px;
    height: 28px;
  }
  .review-card-modern p {
    font-size: 12px;
  }
}
.site-social-links {
  width: min(1200px, calc(100% - 36px));
  margin: 22px auto 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.social-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255,255,255,0.04);
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease;
}
.social-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(197,22,46,0.7);
  background: rgba(197,22,46,0.14);
}
.social-icon svg {
  width: 19px;
  height: 19px;
}
.contact-icon.instagram {
  background: rgba(197,22,46,0.14);
  color: #C5162E;
  border-color: rgba(197,22,46,0.28);
}

@media (max-width: 1040px) {
  .nav {
    background:
      radial-gradient(circle at 16% 10%, rgba(197,22,46,0.18), transparent 30%),
      linear-gradient(180deg, #070808 0%, #101213 100%);
  }
  .mobile-menu-primary {
    color: #101213 !important;
  }
  .mobile-menu-secondary {
    border-color: rgba(255,255,255,0.76);
  }
  .mobile-menu-social .social-icon {
    width: clamp(54px, 12vw, 84px);
    height: clamp(54px, 12vw, 84px);
    border-color: rgba(255,255,255,0.38);
    color: #fff !important;
    background: rgba(255,255,255,0.05);
  }
  .mobile-menu-social .social-icon svg {
    width: clamp(22px, 5vw, 34px);
    height: clamp(22px, 5vw, 34px);
  }
}

/* Footer link clarity */
.footer-inner-full {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.footer-brand p,
.footer-bottom span {
  color: var(--muted);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 38px);
}
.footer-col {
  display: grid;
  align-content: start;
  gap: 9px;
}
.footer-col strong {
  margin-bottom: 6px;
  color: var(--text);
  text-decoration: none;
  cursor: default;
}
.footer-col a,
.footer-bottom a,
.footer-links a {
  color: #C5162E;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.footer-col a:hover,
.footer-bottom a:hover,
.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
footer .site-social-links a.social-icon {
  color: var(--text);
  text-decoration: none;
}
footer .site-social-links a.social-icon:hover {
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 760px) {
  .footer-inner-full,
  .footer-cols {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Vacancy cards and detail pages */
.vacancy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.services-section .vacancy-grid {
  grid-column: 1 / -1;
}
.vacancy-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: border-color 200ms ease, background 200ms ease, transform 200ms var(--ease);
}
.vacancy-card:hover {
  border-color: rgba(197,22,46,0.45);
  background: var(--surface-2);
  transform: translateY(-4px);
}
.vacancy-image {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
}
.vacancy-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05);
  transition: transform 500ms var(--ease), filter 500ms ease;
}
.vacancy-card:hover .vacancy-image img {
  transform: scale(1.04);
  filter: brightness(1) contrast(1.08);
}
.vacancy-body {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 22px;
}
.vacancy-title {
  display: inline-block;
  margin: 2px 0 8px;
  color: var(--text);
  font-size: clamp(21px, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1.08;
  transition: color 0.2s ease;
}
.vacancy-title:hover {
  color: #C5162E;
}
.vacancy-location {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.vacancy-pay {
  display: block;
  margin: 12px 0 10px;
  color: #C5162E;
  font-size: 15px;
}
.vacancy-body p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}
.vacancy-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}
.vacancy-detail-hero {
  padding: clamp(34px, 5vw, 64px) clamp(18px, 5vw, 72px) clamp(30px, 5vw, 56px);
  background:
    radial-gradient(circle at 18% 12%, rgba(197,22,46,0.18), transparent 30%),
    linear-gradient(180deg, #070808 0%, #101213 100%);
}
.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: #C5162E;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.back-link:hover {
  color: #fff;
}
.vacancy-detail-image {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}
.vacancy-detail-image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  aspect-ratio: 16 / 7;
  filter: brightness(0.88) contrast(1.06);
}
.vacancy-detail-head {
  max-width: 860px;
  margin-top: clamp(24px, 4vw, 42px);
}
.vacancy-detail-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
}
.vacancy-detail-section {
  background: var(--bg);
}
.vacancy-detail-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: start;
}
.key-info {
  position: sticky;
  top: 96px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.key-info h2 {
  margin-bottom: 18px;
  font-size: 24px;
}
.key-info dl {
  display: grid;
  gap: 0;
  margin: 0 0 20px;
}
.key-info div {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.key-info dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.key-info dd {
  margin: 4px 0 0;
  color: var(--text);
  font-weight: 700;
}
.vacancy-detail-content {
  display: grid;
  gap: 16px;
}
.video-section,
.job-video,
.detail-copy {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.video-section,
.job-video {
  display: grid;
  gap: 18px;
}
.video-section p:not(.eyebrow),
.job-video p:not(.eyebrow),
.detail-copy p,
.detail-copy li {
  color: var(--muted);
}
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-3);
  box-shadow: var(--shadow);
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-placeholder {
  display: grid;
  aspect-ratio: 16 / 9;
  place-items: center;
  border: 1px dashed rgba(197,22,46,0.5);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(197,22,46,0.16), transparent 44%),
    var(--surface-3);
  color: var(--text);
  font-weight: 800;
  text-align: center;
}
.detail-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.5vw, 34px);
}
.detail-copy ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 1040px) {
  .vacancy-grid,
  .vacancy-detail-layout {
    grid-template-columns: 1fr;
  }
  .key-info {
    position: static;
  }
}

@media (max-width: 640px) {
  .vacancy-body {
    min-height: 0;
  }
  .vacancy-detail-image img {
    aspect-ratio: 16 / 10;
  }
}

/* Standards strip */
.standards-section {
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(34px, 5vw, 64px);
  background: #070808;
}
.standards-inner {
  display: grid;
  gap: 24px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 0%, rgba(197,22,46,0.16), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.035), transparent 48%),
    rgba(13,15,16,0.88);
}
.standards-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 34px);
  align-items: end;
}
.standards-head h2 {
  max-width: 760px;
  margin-bottom: 8px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}
.standards-head p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}
.standards-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.standard-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 132px;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
    rgba(5,6,7,0.62);
}
.standard-icon {
  width: clamp(58px, 6vw, 82px);
  height: clamp(58px, 6vw, 82px);
  color: #fff;
  overflow: visible;
}
.standard-icon circle,
.standard-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.standard-icon text {
  fill: currentColor;
  font-family: Inter, Manrope, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
}
.iso-icon text:first-of-type {
  font-size: 21px;
}
.iso-icon text:last-of-type,
.helmepa-icon text {
  font-size: 12px;
}
.ghg-icon {
  color: rgba(255,255,255,0.82);
}
.ghg-icon path {
  stroke: rgba(255,255,255,0.55);
  stroke-width: 2;
}
.standard-item h3 {
  margin-bottom: 6px;
  color: var(--text);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.05;
}
.standard-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

@media (max-width: 1040px) {
  .standards-head {
    grid-template-columns: 1fr;
  }
  .standards-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }
  .standard-item {
    min-width: 270px;
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  .standards-section {
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .standards-inner {
    padding: 14px;
    gap: 16px;
  }
  .standards-head h2 {
    font-size: 28px;
  }
  .standards-head p:not(.eyebrow) {
    font-size: 13px;
  }
  .standard-item {
    min-width: 236px;
    min-height: 110px;
    padding: 14px;
  }
  .standard-icon {
    width: 54px;
    height: 54px;
  }
  .standard-item h3 {
    font-size: 17px;
  }
  .standard-item p {
    font-size: 12px;
  }
}

.contact-list-old {
  display: none;
}

/* Polished contact icon badges */
.contact-list-current .contact-item {
  grid-template-columns: 54px 1fr;
  gap: 15px;
}
.contact-list-current .contact-icon {
  position: relative;
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 14px 28px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.24);
  overflow: hidden;
}
.contact-list-current .contact-icon svg {
  position: relative;
  z-index: 1;
  width: 23px;
  height: 23px;
}
.contact-list-current .contact-icon::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(circle at 34% 26%, rgba(255,255,255,0.35), rgba(255,255,255,0) 44%);
}
.contact-list-current .contact-icon-mail {
  background: linear-gradient(135deg, #fbbc05 0%, #ea4335 55%, #c5162e 100%);
}
.contact-list-current .contact-icon-phone {
  background: linear-gradient(135deg, #38bdf8 0%, #0f4c81 100%);
}
.contact-list-current .contact-icon-whatsapp {
  background: #25d366;
}
.contact-list-current .contact-icon-web {
  background: linear-gradient(135deg, #f4b62a 0%, #c5162e 100%);
}
.contact-list-current .contact-text span {
  color: var(--text);
}
.contact-list-current .contact-text a {
  color: #fff;
}
.social-icon.whatsapp,
.social-icon.email,
.social-icon.location {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 12px 22px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.22);
}
.social-icon.whatsapp {
  background: #25d366;
}
.social-icon.email {
  background: linear-gradient(135deg, #ff7a45 0%, #e1306c 52%, #833ab4 100%);
}
.social-icon.location {
  background: #ef4444;
}
.social-icon.whatsapp:hover,
.social-icon.email:hover,
.social-icon.location:hover {
  color: #fff;
  border-color: transparent;
  filter: brightness(1.06);
}
.contact-map-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
}
.contact-map-copy {
  display: grid;
  align-content: center;
  gap: 10px;
}
.contact-map-copy h2 {
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 34px);
}
.contact-map-copy p {
  color: var(--muted);
  font-size: 14px;
}
.contact-map-copy .contact-map-address {
  width: fit-content;
  margin: -2px 0 4px;
  padding: 8px 11px;
  border: 1px solid rgba(239,68,68,0.26);
  border-radius: 999px;
  background: rgba(239,68,68,0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.contact-map-copy .button {
  width: fit-content;
}
.contact-map-frame {
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: var(--surface-3);
}
.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  filter: grayscale(0.15) contrast(1.02);
}
.footer-location-card {
  display: inline-grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  width: fit-content;
  max-width: 100%;
  gap: 10px;
  margin: 14px 0 6px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.035);
  color: #fff;
  text-decoration: none;
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease;
}
.footer-location-card:hover {
  transform: translateY(-1px);
  border-color: rgba(239,68,68,0.55);
  background: rgba(239,68,68,0.1);
}
.footer-location-pin {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  box-shadow: 0 10px 20px rgba(239,68,68,0.26);
}
.footer-location-pin svg {
  width: 18px;
  height: 18px;
}
.footer-location-card b,
.footer-location-card em {
  display: block;
}
.footer-location-card b {
  font-size: 12px;
  line-height: 1.1;
}
.footer-location-card em {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.25;
}

@media (max-width: 640px) {
  .contact-list-current .contact-item {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }
  .contact-list-current .contact-icon {
    width: 40px;
    height: 40px;
  }
  .contact-list-current .contact-icon svg {
    width: 20px;
    height: 20px;
  }
  .contact-map-panel {
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 210px;
  }
  .footer-location-card {
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 8px 10px;
  }
  .footer-location-pin {
    width: 30px;
    height: 30px;
  }
}
