:root {
  --bg: #f4f5f2;
  --surface: #ffffff;
  --surface-2: #f7f7f5;
  --ink: #262b29;
  --muted: #58615d;
  --accent: #4f7f63;
  --accent-2: #8db7a3;
  --accent-blue: #5c8ed7;
  --accent-orange: #f2a356;
  --accent-hot: #f3601c;
  --line: #e2e2df;
  --shadow: 0 16px 32px rgba(18, 26, 22, 0.1);
  --radius: 22px;
  --radius-sm: 18px;
  --max: 1120px;
  --gradient: linear-gradient(120deg, #3f6f56 0%, #4f7f63 45%, #6aa487 100%);
  --glow: 0 14px 22px rgba(79, 127, 99, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans Georgian", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 18%, rgba(243, 96, 28, 0.06), transparent 50%),
    radial-gradient(circle at 10% 6%, rgba(127, 178, 151, 0.14), transparent 55%),
    radial-gradient(circle at 90% 12%, rgba(140, 160, 190, 0.12), transparent 52%),
    radial-gradient(circle at 70% 90%, rgba(242, 163, 86, 0.08), transparent 50%),
    linear-gradient(180deg, #fbfbf9 0%, var(--bg) 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--accent);
}

h1 {
  line-height: 1.3;
}

h1,
h2,
h3,
h4 {
  font-family: "Noto Serif Georgian", serif;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  padding-left: 1.2rem;
  margin: 0 0 1rem;
}

section {
  position: relative;
  padding: 76px 0;
}

section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(920px, 90%);
  height: 1px;
  background-image: linear-gradient(90deg, transparent, rgba(79, 127, 99, 0.28), rgba(243, 96, 28, 0.22), transparent);
  opacity: 0.6;
}

section.pt-0::before {
  display: none;
}

main {
  position: relative;
  overflow: hidden;
}

main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(90, 100, 95, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

main > * {
  position: relative;
  z-index: 1;
}

.container {
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid rgba(80, 90, 85, 0.14);
  box-shadow: 0 8px 18px rgba(20, 24, 22, 0.06);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
  flex-wrap: nowrap;
}

.logo img {
  max-width: 140px;
  height: auto;
}

.logo {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.main-nav {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-weight: 500;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  padding: 7px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
}

.main-nav a.active {
  color: #2b5f46;
  background: rgba(79, 127, 99, 0.12);
}

.main-nav a:hover {
  color: #2b5f46;
  background: rgba(79, 127, 99, 0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(79, 127, 99, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 6px 12px;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
}

.lang-btn.active {
  color: #264b39;
  background: rgba(79, 127, 99, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 18px 38px rgba(79, 127, 99, 0.26);
}

.btn-outline {
  border-color: rgba(79, 127, 99, 0.4);
  color: #2b5f46;
  background: #fff;
}

.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(29, 42, 36, 0.12);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-light:hover {
  transform: translateY(-2px);
}

.hero {
  padding: 110px 0 90px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -140px;
  width: 360px;
  height: 240px;
  background: radial-gradient(circle, rgba(79, 127, 99, 0.2), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: center;
}

.hero-content {
  display: grid;
  gap: 18px;
  max-width: 600px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(90, 100, 95, 0.14);
  box-shadow: 0 10px 16px rgba(18, 26, 22, 0.08);
  font-weight: 600;
  font-size: 0.9rem;
  color: #2a3a33;
}

.pill-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6fb392, #5c8ed7);
  display: inline-block;
}

.pill.orange .pill-dot {
  background: linear-gradient(135deg, #f2a356, #f27d61);
}

.pill.blue .pill-dot {
  background: linear-gradient(135deg, #5c8ed7, #9aa5ff);
}

.pill.green .pill-dot {
  background: linear-gradient(135deg, #6fb392, #7fd1c4);
}

.tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list li {
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef0ee;
  border: 1px solid rgba(80, 90, 85, 0.16);
  font-weight: 600;
  font-size: 0.85rem;
  color: #2d4e3f;
}

.tag-list li:nth-child(1) {
  background: #e8f1eb;
  color: #3b6a52;
}

.tag-list li:nth-child(2) {
  background: #eef3fb;
  color: #4f6fa7;
}

.tag-list li:nth-child(3) {
  background: #fdf2e6;
  color: #b8701b;
}

.tag-list li:nth-child(4) {
  background: #edf1f7;
  color: #4a5a74;
}

.tag-list {
  margin-top: 8px;
  row-gap: 10px;
}

.hero-media {
  display: grid;
  gap: 18px;
  align-items: center;
}

.contact-hero {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.contact-hero .hero-content {
  max-width: 560px;
}

.contact-hero .hero-media {
  align-items: start;
}

.hero-illustration {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(80, 90, 85, 0.16);
  box-shadow: 0 18px 34px rgba(18, 26, 22, 0.12);
  background: #f8faf7;
}

.hero-card {
  padding: 32px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f5 100%);
  border: 1px solid rgba(80, 90, 85, 0.22);
  box-shadow: 0 14px 22px rgba(18, 26, 22, 0.12);
}

.hero h1 {
  font-size: clamp(2.2rem, 3.2vw, 3.6rem);
}

.hero-title {
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  max-width: 980px;
}

.hero-intro {
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.position-strip {
  background: linear-gradient(90deg, #3f6f56, #4f7f63, #6aa487);
  color: #f6fbf8;
  text-align: center;
  padding: 18px 0;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 16px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 10px;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(79, 127, 99, 0.14);
}

.section-header p {
  max-width: 640px;
}

.card-grid {
--grid-max-col-count: 3;
  --grid-min-col-size: 200px;
  --grid-gap: 1rem;

  /* calculations, do not touch */
  --grid-col-size-calc: calc((100% - var(--grid-gap) * var(--grid-max-col-count)) / var(--grid-max-col-count));
  --grid-col-min-size-calc: min(100%,
      max(var(--grid-min-col-size), var(--grid-col-size-calc)));

  display: grid;
  gap: var(--grid-gap);

  grid-template-columns: repeat(auto-fit,
      minmax(var(--grid-col-min-size-calc), 1fr));
}

.col-grid-2 {
  --grid-max-col-count: 2;
}
.col-grid-4 {
  --grid-max-col-count: 4;
}

.card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(80, 90, 85, 0.18);
  padding: 26px;
  box-shadow: 0 12px 20px rgba(18, 26, 22, 0.1);
  overflow: hidden;
  --card-accent: var(--accent);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(243, 96, 28, 0.85), rgba(80, 90, 85, 0.18) 28%, rgba(80, 90, 85, 0.18));
}

.card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-sm) - 1px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

.card-grid .card:nth-child(3n + 1) {
  --card-accent: var(--accent);
}

.card-grid .card:nth-child(3n + 2) {
  --card-accent: var(--accent-blue);
}

.card-grid .card:nth-child(3n) {
  --card-accent: var(--accent-orange);
}

.card h3 {
  margin-top: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  background: #eef0ee;
  color: #2d4e3f;
  font-weight: 600;
}

.badge.green {
  background: #e8f1eb;
  color: #3b6a52;
}

.badge.blue {
  background: #eef3fb;
  color: #4f6fa7;
}

.badge.orange {
  background: #fdf2e6;
  color: #b8701b;
}

.testimonial {
  background: #ffffff;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(80, 90, 85, 0.18);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 12px 20px rgba(18, 26, 22, 0.08);
}

.testimonial cite {
  font-style: normal;
  color: var(--muted);
  font-weight: 600;
}

.partners-carousel {
  position: relative;
  margin-top: 24px;
  padding: 18px 24px;
  overflow-x: auto;
  overflow-y: hidden;
  background: #ffffff;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(80, 90, 85, 0.18);
  box-shadow: 0 12px 20px rgba(18, 26, 22, 0.08);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.partners-carousel::-webkit-scrollbar {
  display: none;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  will-change: transform;
}

.partners-set {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px 0 0;
}

.partners-item {
  width: 180px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 12px;
  flex: 0 0 auto;
}

.partners-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.partners-carousel:hover .partners-track {
  animation-play-state: paused;
}

.partners-carousel:focus-within .partners-track {
  animation-play-state: paused;
}

@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
}

.value-grid {
    --grid-max-col-count: 3;
}

.value-item {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid rgba(80, 90, 85, 0.16);
  box-shadow: 0 12px 18px rgba(18, 26, 22, 0.08);
}

.callout {
  background: linear-gradient(120deg, rgba(79, 127, 99, 0.12), rgba(142, 184, 163, 0.14));
  padding: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(80, 90, 85, 0.16);
  box-shadow: 0 12px 20px rgba(18, 26, 22, 0.1);
}

.card h3 {
  font-size: 1.15rem;
}

.card h2 {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
}

.media-card {
  padding: 18px;
  display: grid;
  gap: 14px;
  align-items: center;
}

.media-card img {
  border-radius: 16px;
  border: 1px solid rgba(79, 127, 99, 0.18);
  box-shadow: 0 12px 22px rgba(29, 42, 36, 0.08);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(80, 90, 85, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 10px 16px rgba(18, 26, 22, 0.08);
}

.card-icon img {
  width: 28px;
  height: 28px;
}

.value-item .card-icon {
  margin-bottom: 10px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.data-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.data-list li {
  padding-left: 18px;
  position: relative;
}

.data-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-hot);
}

.card .data-list li::before {
  color: var(--card-accent);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}

input,
textarea {
  font-family: inherit;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(79, 127, 99, 0.2);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(79, 127, 99, 0.6);
  box-shadow: 0 0 0 4px rgba(79, 127, 99, 0.15);
}

.site-footer {
  background: linear-gradient(180deg, #22362f 0%, #131f1a 100%);
  color: #eaf2f2;
  padding: 64px 0 28px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
  gap: 16px;
  align-items: start;
}

.footer-nav {
  flex:1;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.footer-nav h4 {
  margin-bottom: 12px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 14px
}

.footer-nav ul li {
  padding-bottom: 4px;
}

.footer-nav ul li a:hover{
  text-decoration: underline;
}

.footer-bottom {
  margin: 36px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 960px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-row {
    flex-wrap: wrap;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .main-nav {
    width: 100%;
  }

  .hero {
    padding: 86px 0 72px;
  }

  section {
    padding: 62px 0;
  }

  .partners-item {
    width: 140px;
    height: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-carousel {
    overflow-x: auto;
  }

  .partners-track {
    animation: none;
    width: auto;
  }
}

.pl-20 {
  padding-left: 20px;
}

.pt-0 {
  padding-top: 0;
}

.ml-20 {
  margin-left: 20px;
}
.mt-10 {
  margin-top: 10px;
}

.mb-0 {
  margin-bottom: 0;
}
.mb-10 {
  margin-bottom: 10px;
}

.d-block {
  display: block;
}
