:root {
  --c-bg: #ffffff;
  --c-surface: #ffffff;
  --c-surface-muted: #f3f3f3;
  --c-surface-soft: #f6f6f6;
  --c-surface-dark: #090b10;
  --c-surface-dark-2: #141820;
  --c-text: #10131b;
  --c-muted: #5d6470;
  --c-border: rgba(16, 19, 27, 0.12);
  --c-brand: #60ac78;
  --c-brand-hover: #569a6c;
  --c-brand-contrast: #09110c;
  --c-brand-soft: rgba(96, 172, 120, 0.14);
  --c-highlight: #85c096;
  --grad-brand: linear-gradient(135deg, #7dc08f 0%, #60ac78 52%, #4f9364 100%);
  --grad-brand-hover: linear-gradient(135deg, #8aca9b 0%, #69b280 52%, #57996d 100%);
  --grad-surface: linear-gradient(180deg, #ffffff 0%, #fbfcfb 100%);
  --bg-hero-brand: linear-gradient(180deg, #000000 0%, #03120a 44%, #0e3b24 76%, var(--c-surface-muted) 76%, var(--c-surface-muted) 100%);
  --bg-hero-brand-mobile: linear-gradient(180deg, #000000 0%, #03120a 48%, #0e3b24 88%, var(--c-surface-muted) 88%, var(--c-surface-muted) 100%);
  --accent: var(--c-brand);
  --accent-2: #73b787;
  --text: var(--c-text);
  --muted: var(--c-muted);
  --border: var(--c-border);
  --ny-page-bg: #ffffff;
  --r-xs: 0;
  --r-sm: 0;
  --r-md: 0;
  --r-lg: 0;
  --r-pill: 0;
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 88px;
  --font-sans: 'Manrope', 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --fs-1: 12px;
  --fs-2: 14px;
  --fs-3: 16px;
  --fs-4: 18px;
  --fs-5: 24px;
  --fs-6: 34px;
  --fs-7: 48px;
  --lh-tight: 1;
  --lh-normal: 1.6;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --sh-1: 0 18px 42px rgba(8, 11, 18, 0.07);
  --sh-2: 0 30px 74px rgba(4, 8, 15, 0.18);
  --sh-button: 0 16px 34px rgba(39, 126, 87, 0.24);
}


html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-3);
  line-height: var(--lh-normal);
  color: var(--c-text);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(96, 172, 120, 0.3);
  color: #09110c;
}

h1, h2, h3, h4 {
  margin: 0 0 var(--s-4);
  color: var(--c-text);
  font-family: var(--font-display);
  line-height: var(--lh-tight);
  letter-spacing: -0.045em;
  font-weight: var(--fw-bold);
}

h1 { font-size: clamp(2.7rem, 8vw, 5.4rem); }
h2 { font-size: clamp(2.1rem, 5vw, 3.35rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.45rem); }

p {
  margin: 0 0 var(--s-4);
  color: var(--c-muted);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(100%, 1248px);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section,
.u-section {
  padding-top: clamp(68px, 10vw, 112px);
  padding-bottom: clamp(68px, 10vw, 112px);
}

@media (min-width: 768px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}


.btn,
button.btn,
input[type="submit"].btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 0;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  will-change: transform;
}

.btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 0 16px 28px rgba(9, 11, 16, 0.14);
}

.btn:active {
  transform: translate(-1px, -1px);
  box-shadow: 0 10px 18px rgba(9, 11, 16, 0.12);
}

.btn,
.btn--primary {
  background: var(--grad-brand);
  border-color: rgba(19, 77, 48, 0.16);
  color: var(--c-brand-contrast);
  box-shadow: var(--sh-button), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn:hover,
.btn--primary:hover {
  background: var(--grad-brand-hover);
  border-color: rgba(19, 77, 48, 0.2);
}

.btn--outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
  box-shadow: none;
}

.btn--outline:hover {
  background: rgba(96, 172, 120, 0.12);
  border-color: var(--c-brand);
  box-shadow: 0 14px 24px rgba(9, 11, 16, 0.08);
}

.btn--ghost {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: none;
}

.btn--ghost:hover {
  background: linear-gradient(180deg, rgba(96, 172, 120, 0.18) 0%, rgba(79, 147, 100, 0.12) 100%);
  border-color: rgba(96, 172, 120, 0.36);
  color: #fff;
  box-shadow: 0 16px 28px rgba(4, 8, 15, 0.18);
}

@media (max-width: 540px) {
  .btn {
    width: 100%;
  }
}


.form,
.cf7-wrap form,
.wpcf7 form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field > span,
.field label,
.wpcf7-form label {
  font-size: 0.9rem;
  font-weight: var(--fw-semibold);
  color: var(--c-text);
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="file"],
select,
textarea,
.wpcf7-form-control {
  width: 100%;
  border: 1px solid rgba(18, 23, 34, 0.1);
  border-radius: 0;
  background: var(--grad-surface);
  color: var(--c-text);
  font: inherit;
  padding: 15px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.wpcf7-form-control:focus {
  outline: none;
  border-color: rgba(96, 172, 120, 0.72);
  box-shadow: 0 0 0 4px rgba(96, 172, 120, 0.14), 0 12px 26px rgba(8, 11, 18, 0.06);
}

.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(19, 77, 48, 0.16);
  border-radius: 0;
  background: var(--grad-brand);
  color: var(--c-brand-contrast);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--sh-button), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.wpcf7-submit:hover {
  transform: translate(-3px, -3px);
  background: var(--grad-brand-hover);
  border-color: rgba(19, 77, 48, 0.2);
  box-shadow: 0 18px 36px rgba(39, 126, 87, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.wpcf7-response-output,
.wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 14px 16px;
  border-radius: 0;
}


.card,
.u-card,
.contact-card,
.service-card,
.coverage-card,
.icon-card,
.mini-contact-card {
  background: var(--grad-surface);
  border: 1px solid rgba(18, 23, 34, 0.08);
  border-radius: 0;
  box-shadow: var(--sh-1);
}


.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 0 0 0 14px;
  border-left: 3px solid var(--c-brand);
  background: transparent;
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.section-head--center {
  text-align: center;
}

.video-embed {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 23, 34, 0.08);
  border-radius: 0;
  box-shadow: var(--sh-1);
}

.video-embed iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.page-hero {
  padding-top: 148px;
  padding-bottom: 72px;
}

.page-hero__grid {
  display: grid;
  gap: 36px;
  align-items: start;
}

.page-hero__media img,
.home-intro__media img,
.home-story__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.page-hero__content p:last-child {
  margin-bottom: 0;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.icon-grid,
.service-grid,
.coverage-list,
.faq-list,
.contact-cards {
  display: grid;
  gap: 18px;
}

.faq-list details {
  padding: 20px 22px;
  background: var(--c-surface);
  border: 1px solid rgba(18, 23, 34, 0.08);
  border-left: 3px solid var(--c-brand);
  border-radius: 0;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
}

.faq-list p {
  margin-top: 12px;
}

.icon-card,
.service-card,
.coverage-card,
.mini-contact-card {
  padding: 22px;
}

.icon-card__dot {
  width: 12px;
  height: 12px;
  border-radius: 0;
  display: inline-block;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--c-brand), var(--c-highlight));
}

.contact-card {
  padding: 20px;
}

.contact-card span,
.mini-contact-card span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4d5563;
}

.contact-card strong,
.mini-contact-card strong {
  display: block;
  color: var(--c-text);
}

.contact-card a,
.mini-contact-card a {
  color: #14522a;
  font-weight: 700;
}

.contact-fallback-form {
  padding: 22px;
  border-radius: 0;
  background: rgba(96, 172, 120, 0.08);
  border: 1px dashed rgba(96, 172, 120, 0.3);
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0;
  background: var(--c-surface-dark);
  color: #fff;
  cursor: pointer;
  box-shadow: var(--sh-2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.to-top span {
  display: inline-block;
  font-size: 1.35rem;
  line-height: 1;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.to-top:hover,
.to-top:focus-visible {
  border-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

@media (min-width: 860px) {
  .page-hero__grid,
  .icon-grid,
  .service-grid--large,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* Vacancies listing */

body.mobile-menu-open {
  overflow: hidden;
}

.site-main {
  position: relative;
  z-index: 1;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  background: rgba(8, 9, 13, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 82px;
}

.brand__logo {
  width: clamp(132px, 24vw, 188px);
}

.site-nav {
  display: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__actions .btn {
  display: none;
}

.header__actions .btn--ghost {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.lang-dd {
  position: relative;
}

.lang-dd__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

.lang-dd__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 60px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--sh-1);
  display: none;
}

.lang-dd.is-open .lang-dd__menu {
  display: grid;
  gap: 6px;
}

.lang-dd__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.lang-dd__item.is-current {
  background: rgba(96, 172, 120, 0.12);
}

.burger {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: transparent;
  display: inline-grid;
  place-items: center;
  gap: 4px;
}

.burger span,
.mobile__close span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.mobile {
  position: fixed;
  inset: 0;
  background: rgba(8, 9, 13, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.mobile[hidden] {
  display: none;
}

.mobile.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile__inner {
  min-height: 100%;
  padding: 28px 20px;
  background: #f8f4ec;
  color: var(--c-text);
}

.mobile__top,
.mobile__bottom {
  display: grid;
  gap: 16px;
}

.mobile__top {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 28px;
}

.mobile__brand-logo {
  width: 156px;
}

.mobile__close {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #101114;
  display: inline-grid;
  place-items: center;
}

.mobile__close span:first-child {
  transform: translateY(1px) rotate(45deg);
}

.mobile__close span:last-child {
  transform: translateY(-1px) rotate(-45deg);
  margin-top: -2px;
}

.mobile-nav__list,
.site-nav__list,
.footer__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav__list {
  display: grid;
  gap: 10px;
}

.mobile-nav__list a {
  display: block;
  padding: 14px 18px;
  border-radius: 18px;
  background: #fff;
  font-family: var(--font-display);
  font-weight: 700;
}

.mobile__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mobile__contact-icon {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(96, 172, 120, 0.16);
}

.mobile__lang {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 26px;
}

.mobile__lang-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(18, 23, 34, 0.08);
  background: #ffffff;
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile__lang-item.is-current {
  border-color: rgba(96, 172, 120, 0.26);
  background: rgba(96, 172, 120, 0.12);
}

.mobile__lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
}

.mobile__lang-flag img {
  display: block;
  width: 22px;
  height: auto;
}

.mobile__lang-label {
  line-height: 1;
}

.footer {
  padding-top: 40px;
  padding-bottom: 28px;
  background:
    radial-gradient(circle at left top, rgba(26, 208, 178, 0.18), transparent 28%),
    #0c0f14;
  color: rgba(255, 255, 255, 0.82);
}

.footer__top,
.footer__bottom {
  display: grid;
  gap: 22px;
}

.footer__brand-col {
  display: grid;
  align-content: start;
}

.footer__brand-logo {
  width: min(100%, 240px);
}

.footer__brand-text {
  margin: 24px 0 0;
  font-size: 14px;
  line-height: 1.65;
  max-width: 48ch;
}

.footer__heading {
  margin-bottom: 14px;
  color: #fff;
  font-size: 1rem;
}

.footer__menu,
.footer__socials,
.footer__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__cta-row {
  align-items: center;
  justify-content: space-between;
}

.footer__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__cta-group--social {
  justify-content: flex-end;
}

.footer__menu {
  flex-direction: column;
  gap: 10px;
}

.footer__menu a,
.footer__pill,
.footer__contact-value a,
.footer__contact-value strong {
  font-size: 14px;
}

.footer__contact-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer__contact-badge {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #68bf81;
  flex: 0 0 auto;
}

.footer__contact-badge svg {
  width: 17px;
  height: 17px;
  display: block;
  opacity: 0.82;
}

.footer__contact-badge--text {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer__contact-value {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.footer__meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__contact-value a,
.footer__contact-value strong {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  line-height: 1.55;
  text-decoration: none;
}

.footer__contact-value a:hover {
  color: #68bf81;
}

.footer__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--r-pill);
  background: var(--c-brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
}

.footer__pill--ghost {
  background: rgba(255, 255, 255, 0.08);
}

.footer__social-btn {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #68bf81;
}

.footer__social-btn svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer__social-btn::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0f141b;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.footer__social-btn:hover {
  border-color: rgba(104, 191, 129, 0.42);
  background: rgba(104, 191, 129, 0.08);
  color: #ffffff;
}

.footer__social-btn:hover::after,
.footer__social-btn:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.footer__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 720px) {
  .footer__cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .footer__cta-group--social {
    justify-content: flex-start;
  }
}

@media (min-width: 980px) {
  .site-nav {
    display: block;
  }

  .site-nav__list {
    display: flex;
    align-items: center;
    gap: 22px;
  }

  .site-nav__list a {
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 500;
  }

  .site-nav__list a:hover {
    color: #fff;
  }

  .header__actions .btn {
    display: inline-flex;
  }

  .burger,
  .mobile {
    display: none;
  }

  .footer__top {
    grid-template-columns: 1.3fr 0.9fr 0.9fr;
    align-items: start;
  }
}

@media (max-width: 979px) {
  .header__inner {
    gap: 12px;
    min-height: 74px;
  }

  .brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  .brand__logo {
    width: clamp(112px, 30vw, 152px);
  }

  .header__actions {
    margin-left: auto;
    gap: 6px;
  }

  .header__actions .btn {
    display: inline-flex;
  }

  .header__actions .header__vacancies-cta {
    width: auto;
    min-height: 38px;
    padding: 0 12px;
    border-color: rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: none;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .header__actions .header__vacancies-cta:hover,
  .header__actions .header__vacancies-cta:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(96, 172, 120, 0.36);
    box-shadow: 0 10px 20px rgba(4, 8, 15, 0.14);
  }

  .header__actions .header__vacancies-cta::before {
    opacity: 0;
  }

  .lang-dd {
    display: none;
  }

  .burger,
  .mobile__close {
    width: auto;
    height: auto;
    padding: 12px 8px;
    border: 0;
    background: transparent;
    box-shadow: none;
    gap: 5px;
  }

  .burger span,
  .mobile__close span {
    width: 20px;
    height: 1.5px;
  }

  .burger span {
    background: rgba(255, 255, 255, 0.92);
  }

  .mobile__close span {
    background: var(--c-text);
  }

  .burger:hover,
  .burger:focus-visible,
  .mobile__close:hover,
  .mobile__close:focus-visible {
    transform: none;
    background: transparent;
  }

  .burger[aria-expanded="true"] span {
    background: #68bf81;
  }
}

@media (max-width: 380px) {
  .header__inner {
    gap: 10px;
  }

  .brand__logo {
    width: 108px;
  }

  .header__actions {
    gap: 4px;
  }

  .header__actions .header__vacancies-cta {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.66rem;
  }

  .burger {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* Hard-edge redesign overrides */
.lang-dd__btn,
.lang-dd__menu,
.lang-dd__item,
.burger,
.mobile__close,
.mobile-nav__list a,
.mobile__contact-icon,
.footer__pill,
.header__actions .btn {
  border-radius: 0 !important;
}

.lang-dd__btn,
.burger,
.mobile__close {
  width: 46px;
  height: 46px;
}

.burger span,
.mobile__close span,
.mobile__contact-icon,
.lang-dd__item,
.hero__checks li::before,
.home-process__list li::before,
.icon-card__dot {
  border-radius: 0 !important;
}

.site-header {
  background: rgba(8, 9, 13, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-dd__menu {
  border: 1px solid rgba(18, 23, 34, 0.08);
}

.lang-dd__item.is-current,
.mobile__contact-icon,
.footer__pill {
  background: var(--c-brand);
  color: var(--c-brand-contrast);
}

.footer {
  background:
    radial-gradient(circle at left top, rgba(0, 209, 178, 0.18), transparent 28%),
    #0a0c11;
}

.footer__pill--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

img,
iframe,
input,
textarea,
select,
button,
[class*="card"],
[class*="tile"],
[class*="panel"],
[class*="badge"],
[class*="pill"],
[class*="avatar"],
[class*="dropdown"] {
  border-radius: 0 !important;
}

:root {
  --wp-admin-offset: 0px;
}

.site-header {
  background:
    linear-gradient(180deg, rgba(8, 9, 13, 0.88) 0%, rgba(8, 9, 13, 0.72) 100%);
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(96, 172, 120, 0.55) 50%, transparent 100%);
}

.header {
  top: var(--wp-admin-offset, 0px);
}

.site-nav__list a {
  position: relative;
  padding-bottom: 8px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav__list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-brand) 0%, var(--c-highlight) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-nav__list a:hover::after,
.site-nav__list .current-menu-item > a::after,
.site-nav__list .current_page_item > a::after,
.site-nav__list .current-menu-ancestor > a::after {
  transform: scaleX(1);
}

.btn,
.wpcf7-submit,
.footer__pill {
  position: relative;
  overflow: hidden;
}

.btn:not(.btn--outline):not(.btn--ghost),
.btn--primary,
.wpcf7-submit,
.footer__pill:not(.footer__pill--ghost) {
  background: var(--grad-brand);
  border-color: rgba(19, 77, 48, 0.16);
  box-shadow: var(--sh-button), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  color: var(--c-brand-contrast);
}

.btn:not(.btn--outline):not(.btn--ghost):hover,
.btn--primary:hover,
.wpcf7-submit:hover,
.footer__pill:not(.footer__pill--ghost):hover {
  background: var(--grad-brand-hover);
  border-color: rgba(19, 77, 48, 0.2);
  box-shadow: 0 18px 36px rgba(39, 126, 87, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn::before,
.wpcf7-submit::before,
.footer__pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 46%);
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.btn:hover::before,
.wpcf7-submit:hover::before,
.footer__pill:hover::before {
  opacity: 1;
}

.home-intro,
.home-services,
.home-vacancies,
.home-news,
.page-hero + .section {
  background: #ffffff;
}

.home-intro {
  background: var(--c-surface-muted);
}

.home-intro__media,
.home-story__visual > img,
.page-hero__media img,
.hero__tile,
.video-embed {
  position: relative;
  overflow: hidden;
}

.home-intro__media::after,
.home-story__visual::after,
.page-hero__media::after,
.hero__tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 11, 16, 0) 36%, rgba(9, 11, 16, 0.08) 100%);
  pointer-events: none;
}

.home-story--dark,
.home-final-cta__box {
  position: relative;
  overflow: hidden;
}

.home-story--dark::before,
.home-final-cta__box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(79, 147, 100, 0.18), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(96, 172, 120, 0.12), transparent 24%);
  pointer-events: none;
}

.card,
.u-card,
.service-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(7, 10, 16, 0.12);
  border-color: rgba(16, 19, 27, 0.18);
}

.service-card {
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 92px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-brand) 0%, var(--c-highlight) 100%);
}

.home-services__grid h3 {
  text-wrap: balance;
}

.wpcf7-form label,
.field > span {
  letter-spacing: 0.02em;
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-up.is-inview {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .reveal-up.is-inview,
  .btn,
  .wpcf7-submit,
  .footer__pill,
  .service-card {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

#wpadminbar {
  background: #1d2327;
  color: #f0f0f1;
}

#wpadminbar .ab-item,
#wpadminbar a.ab-item,
#wpadminbar > #wp-toolbar span.ab-label,
#wpadminbar > #wp-toolbar span.noticon,
#wpadminbar .quicklinks .ab-empty-item,
#wpadminbar .quicklinks a,
#wpadminbar .ab-icon::before,
#wpadminbar .ab-item::before {
  color: #f0f0f1;
}

#wpadminbar .quicklinks .menupop ul.ab-sub-wrapper,
#wpadminbar .shortlink-input {
  background: #1d2327;
}

@media screen and (max-width: 782px) {
  #wpadminbar {
    position: fixed;
    inset: 0 0 auto;
    min-width: 0;
    background: #1d2327;
  }

  #wpadminbar .ab-item,
  #wpadminbar a.ab-item,
  #wpadminbar > #wp-toolbar span.ab-label,
  #wpadminbar > #wp-toolbar span.noticon,
  #wpadminbar .ab-icon::before,
  #wpadminbar .ab-item::before {
    color: #f0f0f1;
  }
}

@media screen and (max-width: 782px) {
  #wpadminbar {
    z-index: 99999 !important;
    background: #1d2327 !important;
    color: #f0f0f1 !important;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  #wpadminbar .quicklinks > ul > li,
  #wpadminbar .quicklinks > ul > li > .ab-item,
  #wpadminbar .quicklinks > ul > li > .ab-empty-item,
  #wpadminbar #wp-admin-bar-top-secondary > li > .ab-item {
    display: inline-flex !important;
    align-items: center;
    min-width: 46px;
    max-width: none;
    width: auto !important;
    height: 46px;
    padding: 0 10px !important;
    text-indent: 0 !important;
    overflow: visible !important;
    white-space: nowrap;
    color: #f0f0f1 !important;
  }

  #wpadminbar .ab-label,
  #wpadminbar .quicklinks .ab-empty-item,
  #wpadminbar .quicklinks a,
  #wpadminbar #wp-admin-bar-site-name-default,
  #wpadminbar #wp-admin-bar-edit .ab-item,
  #wpadminbar #wp-admin-bar-new-content .ab-label {
    display: inline !important;
    color: #f0f0f1 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  #wpadminbar .ab-icon,
  #wpadminbar .ab-icon::before,
  #wpadminbar .ab-item::before {
    color: #f0f0f1 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

@media screen and (max-width: 782px) {
  #wpadminbar #wp-toolbar > ul > li > .ab-item,
  #wpadminbar #wp-toolbar > ul > li > .ab-empty-item,
  #wpadminbar #wp-toolbar #wp-admin-bar-root-default > li > .ab-item,
  #wpadminbar #wp-toolbar #wp-admin-bar-top-secondary > li > .ab-item,
  #wpadminbar #wp-admin-bar-site-name > .ab-item,
  #wpadminbar #wp-admin-bar-customize > .ab-item,
  #wpadminbar #wp-admin-bar-edit > .ab-item,
  #wpadminbar #wp-admin-bar-comments > .ab-item,
  #wpadminbar #wp-admin-bar-new-content > .ab-item,
  #wpadminbar #wp-admin-bar-my-account > .ab-item {
    display: inline-flex !important;
    align-items: center !important;
    width: auto !important;
    min-width: 46px !important;
    max-width: none !important;
    padding: 0 10px !important;
    text-indent: 0 !important;
    overflow: visible !important;
    white-space: nowrap !important;
  }

  #wpadminbar #wp-toolbar .ab-label,
  #wpadminbar #wp-toolbar .ab-item .ab-label,
  #wpadminbar #wp-admin-bar-site-name-default,
  #wpadminbar #wp-admin-bar-edit .ab-item,
  #wpadminbar #wp-admin-bar-new-content .ab-label,
  #wpadminbar #wp-admin-bar-my-account .display-name {
    position: static !important;
    display: inline !important;
    clip: auto !important;
    -webkit-clip-path: none !important;
    clip-path: none !important;
    text-indent: 0 !important;
    overflow: visible !important;
    white-space: nowrap !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  #wpadminbar #wp-admin-bar-site-name > .ab-item::before,
  #wpadminbar #wp-admin-bar-customize > .ab-item::before,
  #wpadminbar #wp-admin-bar-edit > .ab-item::before,
  #wpadminbar #wp-admin-bar-comments > .ab-item::before,
  #wpadminbar #wp-admin-bar-new-content > .ab-item::before {
    margin-right: 6px;
    text-indent: 0 !important;
  }
}

.alignleft {
  float: left;
  margin-right: 1rem;
}

.alignright {
  float: right;
  margin-left: 1rem;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
}

@media (max-width: 979px) {
  .header__inner {
    gap: 12px;
    min-height: 74px;
  }

  .brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  .brand__logo {
    width: clamp(112px, 30vw, 152px);
  }

  .header__actions {
    margin-left: auto;
    gap: 6px;
  }

  .header__actions .btn {
    display: inline-flex;
  }

  .header__actions .header__vacancies-cta {
    width: auto;
    min-height: 38px;
    padding: 0 12px;
    border-color: rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: none;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .header__actions .header__vacancies-cta:hover,
  .header__actions .header__vacancies-cta:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(96, 172, 120, 0.36);
    box-shadow: 0 10px 20px rgba(4, 8, 15, 0.14);
  }

  .header__actions .header__vacancies-cta::before {
    opacity: 0;
  }

  .lang-dd {
    display: none;
  }

  .burger,
  .mobile__close {
    width: auto;
    height: auto;
    padding: 12px 8px;
    border: 0;
    background: transparent;
    box-shadow: none;
    gap: 5px;
  }

  .burger span,
  .mobile__close span {
    width: 20px;
    height: 1.5px;
  }

  .burger span {
    background: rgba(255, 255, 255, 0.92);
  }

  .mobile__close span {
    background: var(--c-text);
  }

  .burger:hover,
  .burger:focus-visible,
  .mobile__close:hover,
  .mobile__close:focus-visible {
    transform: none;
    background: transparent;
  }

  .burger[aria-expanded="true"] span {
    background: #68bf81;
  }
}

@media (max-width: 380px) {
  .header__inner {
    gap: 10px;
  }

  .brand__logo {
    width: 108px;
  }

  .header__actions {
    gap: 4px;
  }

  .header__actions .header__vacancies-cta {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.66rem;
  }

  .burger {
    padding-left: 6px;
    padding-right: 6px;
  }
}
