:root {
  --bg: #f7faf9;
  --ink: #11211f;
  --muted: #5e6d69;
  --line: #dce7e3;
  --surface: #ffffff;
  --teal: #0b7a75;
  --teal-dark: #07544f;
  --green: #39a46b;
  --blue: #2563a7;
  --shadow: 0 24px 70px rgba(15, 38, 35, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans Georgian", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

.utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 7px clamp(18px, 4vw, 56px);
  background: linear-gradient(90deg, #e8f7f5 0%, #ffffff 52%, #d9f4f2 100%);
  border-bottom: 1px solid rgba(4, 132, 132, 0.18);
  color: var(--teal-dark);
  box-shadow: 0 10px 34px rgba(4, 132, 132, 0.08);
}

.utility-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.utility-brand img {
  width: 120px;
  height: 52px;
  object-fit: contain;
  border-radius: 4px;
  background: transparent;
}

.utility-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: clamp(12px, 1.7vw, 24px);
  min-width: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.utility-nav > a,
.utility-nav .nav-dropdown > a {
  color: #075f60;
  white-space: nowrap;
}

.utility-nav > a:hover,
.utility-nav .nav-dropdown > a:hover,
.utility-nav > a:focus-visible,
.utility-nav .nav-dropdown > a:focus-visible {
  color: #00a7a5;
}

.utility-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 0 0 auto;
}

.utility-social,
.utility-contact {
  display: flex;
  align-items: center;
}

.utility-social {
  gap: 20px;
}

.utility-social a {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  border-color: rgba(7, 95, 96, 0.5);
  color: #075f60;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.utility-social a:hover {
  background: rgba(0, 167, 165, 0.1);
  color: #00a7a5;
}

.utility-lang {
  border: 0;
  background: transparent;
  color: #075f60;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.utility-contact {
  gap: 14px;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid rgba(0, 167, 165, 0.42);
  border-radius: 4px;
  background: #078b8b;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.site-header {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.brand,
.header-actions,
.nav,
.hero-actions,
.metrics,
.contact-details {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 210px;
}

.brand-logo {
  width: 86px;
  height: 46px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.nav {
  gap: clamp(14px, 2vw, 28px);
  color: #293b37;
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--teal);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
}

.dropdown-toggle {
  display: grid;
  width: 24px;
  height: 24px;
  margin-left: 2px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(7, 95, 96, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.36);
  color: #075f60;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus-visible,
.nav-dropdown.open .dropdown-toggle {
  background: rgba(0, 167, 165, 0.1);
  border-color: rgba(0, 167, 165, 0.28);
  color: #00a7a5;
  outline: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  z-index: 30;
  display: grid;
  min-width: 240px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(19, 45, 41, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.dropdown-menu::before {
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
  content: "";
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  color: #263a36;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: #eef6f4;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.utility-nav a.active {
  color: #00a7a5;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.header-actions {
  gap: 10px;
}

.lang-switch,
.header-cta,
.btn {
  min-height: 42px;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
}

.lang-switch {
  width: 48px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  background: #e8f4f1;
  color: var(--teal-dark);
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: clamp(20px, 3.8vw, 48px);
  align-items: center;
  min-height: auto;
  padding: clamp(22px, 4vw, 52px) clamp(18px, 4vw, 56px) 24px;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(30px, 3.5vw, 46px);
}

h2 {
  font-size: clamp(28px, 3.2vw, 46px);
}

h3 {
  font-size: 21px;
}

.hero-copy,
.section-head p,
.split p,
.about-panel p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
}

.hero-copy {
  max-width: 650px;
  margin: 14px 0 0;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0 20px;
  cursor: pointer;
}

.btn.primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 14px 30px rgba(11, 122, 117, 0.22);
}

.btn.primary:hover {
  background: var(--teal-dark);
}

.btn.secondary {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.metrics {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.metrics div {
  min-width: 150px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  color: var(--blue);
  font-size: 20px;
  line-height: 1;
}

.metrics span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(6, 36, 33, 0.12), rgba(6, 36, 33, 0));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: clamp(260px, 34vw, 420px);
  object-fit: cover;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px clamp(18px, 4vw, 56px);
  background: var(--line);
}

.trust-band span {
  min-height: 56px;
  display: grid;
  place-items: center;
  padding: 10px 14px;
  background: #eef6f4;
  color: #243936;
  font-weight: 700;
  text-align: center;
}

.ad-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px clamp(18px, 4vw, 56px);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.ad-banner span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.ad-banner h2 {
  margin-top: 6px;
  font-size: clamp(24px, 2.6vw, 36px);
}

.ad-banner p {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--muted);
}

.timeline-section {
  padding: clamp(34px, 5vw, 64px) clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, #ffffff, #f3faf8);
  border-bottom: 1px solid var(--line);
}

.timeline-list {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 1120px;
}

.timeline-list::before {
  position: absolute;
  top: 36px;
  bottom: 36px;
  left: 23px;
  width: 2px;
  content: "";
  background: #c8e5df;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 48px 164px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(30, 56, 52, 0.06);
}

.timeline-marker {
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
}

.timeline-item img {
  width: 164px;
  height: 104px;
  object-fit: cover;
  border-radius: 8px;
  background: #eef6f4;
}

.timeline-item p {
  color: var(--muted);
}

.section,
.contact-section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.page-hero {
  padding: clamp(64px, 9vw, 128px) clamp(18px, 4vw, 56px) clamp(40px, 6vw, 76px);
  background: linear-gradient(135deg, #e9f6f3, #ffffff);
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.clients-intro {
  padding: clamp(42px, 7vw, 78px) clamp(18px, 4vw, 56px) 0;
}

.clients-intro p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
}

.page-list {
  display: grid;
  gap: 16px;
}

.page-hero + .page-list {
  padding-top: clamp(6px, 1.2vw, 16px);
}

.page-hero + .vacancies-list {
  padding-top: clamp(6px, 1.2vw, 16px);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(190px, 320px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(30, 56, 52, 0.06);
  scroll-margin-top: 112px;
}

.feature-row p {
  color: var(--muted);
}

.product-feature-link {
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.product-feature-link:hover,
.product-feature-link:focus-visible {
  border-color: rgba(0, 167, 165, 0.38);
  box-shadow: 0 20px 46px rgba(30, 56, 52, 0.11);
  transform: translateY(-2px);
  outline: none;
}

.feature-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.partners-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.client-card {
  min-height: 210px;
  display: grid;
  gap: 18px;
  align-content: center;
  justify-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(30, 56, 52, 0.06);
  text-align: center;
}

.client-card img {
  max-width: 240px;
  max-height: 96px;
  object-fit: contain;
}

.client-card strong {
  color: var(--ink);
}

.vacancies-list {
  display: grid;
  gap: 18px;
}

.vacancy-card,
.vacancy-empty {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(30, 56, 52, 0.06);
}

.vacancies-list {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.vacancy-card h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.vacancy-card p,
.vacancy-empty {
  color: var(--muted);
}

.vacancy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vacancy-meta span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #eef8f6;
  color: var(--teal-dark);
  font-weight: 800;
}

.about-points.wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-section.full-page {
  min-height: calc(100vh - 146px);
  align-items: center;
}

.admin-shell {
  padding: clamp(34px, 5vw, 72px) clamp(18px, 4vw, 56px);
}

.admin-hero {
  max-width: 920px;
  margin-bottom: 26px;
}

.admin-hero p {
  color: var(--muted);
}

.admin-form {
  display: grid;
  gap: 18px;
}

.timeline-admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.vacancy-admin-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 380px);
  overflow-x: auto;
  padding-bottom: 8px;
  gap: 16px;
}

.timeline-admin-grid article,
.vacancy-admin-grid article {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfa;
}

.timeline-admin-grid h3,
.vacancy-admin-grid h3 {
  font-size: 18px;
}

.vacancy-admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.upload-row {
  display: grid;
  gap: 10px;
}

.upload-row input[type="file"] {
  padding: 10px;
  background: #fff;
}

.password-form {
  margin-top: 22px;
}

.admin-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(30, 56, 52, 0.06);
}

.admin-panel h2 {
  font-size: 24px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.admin-status {
  color: var(--teal-dark);
  font-weight: 800;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-row input {
  width: 18px;
  height: 18px;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #e8f7f5, #ffffff);
}

.login-form {
  width: min(420px, 100%);
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.login-form img {
  width: 150px;
}

.login-form h1 {
  font-size: 28px;
}

.section-head {
  max-width: 820px;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  gap: 18px;
}

.products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(30, 56, 52, 0.06);
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 8px;
  background: #e5f2ef;
  color: var(--teal-dark);
  font-weight: 800;
}

.card p {
  color: var(--muted);
}

.product-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 22px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}

.product-link-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.product-link-card:hover,
.product-link-card:focus-visible {
  border-color: rgba(0, 167, 165, 0.38);
  box-shadow: 0 20px 46px rgba(30, 56, 52, 0.11);
  transform: translateY(-2px);
  outline: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
  background: #102522;
  color: #fff;
}

.split .eyebrow,
.split .text-link {
  color: #7ee0c8;
}

.split p {
  color: #c7d8d4;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--teal);
  font-weight: 800;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list div {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.service-list span {
  color: #c7d8d4;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: stretch;
}

.about-panel {
  padding: clamp(28px, 5vw, 58px);
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.about-points {
  display: grid;
  gap: 12px;
}

.about-points span {
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 20px;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: #edf7f2;
  color: #213c35;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 64px);
  background: #e8f1ee;
}

.contact-details {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-details a {
  padding: 12px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--teal-dark);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 20px 54px rgba(26, 55, 50, 0.12);
}

label {
  display: grid;
  gap: 7px;
  color: #334742;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(11, 122, 117, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px);
  background: #071715;
  color: #d8e6e2;
  font-size: 14px;
}

@media (max-width: 980px) {
  .utility-bar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .utility-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 2px 0 4px;
  }

  .dropdown-menu {
    position: fixed;
    top: 118px;
    left: 18px;
    right: 18px;
    min-width: 0;
  }

  .hero,
  .split,
  .about,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    height: 340px;
  }

  .trust-band,
  .products-grid,
  .about-points.wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ad-banner,
  .admin-grid,
  .timeline-admin-grid,
  .vacancy-admin-grid,
  .clients-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .utility-right {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  h1 {
    font-size: 34px;
  }

  .hero-media img {
    height: 240px;
  }

  .trust-band,
  .products-grid,
  .about-points.wide {
    grid-template-columns: 1fr;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .timeline-list::before {
    display: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-marker {
    width: 42px;
    height: 42px;
  }

  .timeline-item img {
    width: 100%;
    height: 180px;
  }

  .footer {
    flex-direction: column;
  }
}
