:root {
  color-scheme: light;
  --ink: #263847;
  --muted: #667784;
  --line: #dbe7f1;
  --surface: #f7fbff;
  --panel: #ffffff;
  --cyan: #5fc1c9;
  --blue: #6d9bd0;
  --deep-blue: #416f9f;
  --accent: #5fc1c9;
  --charcoal: #273848;
  --shadow: 0 18px 50px rgba(65, 111, 159, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Arial, "Noto Sans Georgian", "DejaVu Sans", sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(247, 251, 255, 0.94);
  border-bottom: 1px solid rgba(219, 231, 241, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-name {
  color: var(--deep-blue);
  font-size: 32px;
  line-height: 1;
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--deep-blue);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav {
  display: flex;
  gap: clamp(12px, 3vw, 34px);
  align-items: center;
  color: var(--deep-blue);
  font-size: 18px;
  font-weight: 800;
}

.nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(109, 155, 208, 0.25);
}

.lang-link {
  color: #fff;
  background: var(--deep-blue) !important;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 73px);
  padding: clamp(38px, 7vw, 96px) clamp(18px, 4vw, 64px) clamp(34px, 5vw, 70px);
  background:
    linear-gradient(120deg, rgba(247, 251, 255, 0.98) 0%, rgba(247, 251, 255, 0.86) 48%, rgba(247, 251, 255, 0.66) 100%),
    radial-gradient(circle at 86% 14%, rgba(95, 193, 201, 0.22), transparent 30%),
    radial-gradient(circle at 18% 86%, rgba(109, 155, 208, 0.18), transparent 28%);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--deep-blue);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(38px, 7vw, 74px);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 10px;
  font-size: 21px;
  line-height: 1.25;
}

.hero-text {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: var(--blue);
}

.button.secondary {
  color: var(--deep-blue);
  background: rgba(255, 255, 255, 0.72);
}

.hero-image-wrap {
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image-wrap img {
  display: block;
  width: 100%;
  height: min(68vh, 640px);
  min-height: 360px;
  object-fit: cover;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats div {
  padding: clamp(22px, 4vw, 38px) clamp(18px, 4vw, 64px);
  background: #fff;
}

.stats strong {
  display: block;
  color: var(--blue);
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.section,
.process,
.contact {
  padding: clamp(54px, 8vw, 108px) clamp(18px, 4vw, 64px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(200px, 0.45fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: start;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 300px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
}

.service-card p,
.process p,
.contact p {
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 88px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(39, 56, 72, 0.96), rgba(65, 111, 159, 0.94)),
    var(--charcoal);
}

.process .eyebrow {
  color: #9de2e7;
}

.process p {
  color: rgba(255, 255, 255, 0.72);
}

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

.steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.steps span {
  color: #9de2e7;
  font-weight: 800;
}

.steps p {
  margin: 0;
  font-size: 18px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(26px, 6vw, 90px);
  align-items: start;
  background: #fff;
}

.contact-copy p {
  max-width: 620px;
  font-size: 18px;
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-style: normal;
}

.contact-panel a,
.contact-panel p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-panel span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  padding: 24px clamp(18px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.72);
  background: #111917;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero,
  .process,
  .contact,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: sticky;
    display: grid;
    grid-template-columns: 1fr 46px;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 32px;
  }

  .menu-button {
    display: inline-flex;
    justify-self: end;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: #eef7fb;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(65, 111, 159, 0.15);
    font-size: 18px;
  }

  .nav a {
    width: 100%;
    display: block;
    padding: 13px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .nav-toggle:checked ~ .menu-button span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle:checked ~ .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .menu-button span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-toggle:checked ~ .nav {
    display: flex;
  }

  h1 {
    font-size: 36px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap,
  .hero-image-wrap img {
    min-height: 260px;
  }

  .hero-image-wrap img {
    height: 300px;
  }

  .steps li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
