:root {
  --ink: #111111;
  --muted: #666666;
  --paper: #f9f9f9;
  --white: #ffffff;
  --line: #e7e7e7;
  --soft: #f1f1f1;
  --green: #2e8b57;
  --blue: #2d6cdf;
  --orange: #f08a24;
  --red: #d64d42;
  --shadow: 0 16px 40px rgba(17, 17, 17, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(249, 249, 249, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 15px;
}

.nav a:hover {
  color: var(--ink);
}

.header-action,
.button,
.contact-form button,
.map-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
}

.header-action,
.button.primary,
.contact-form button,
.map-card a {
  color: var(--white);
  background: var(--ink);
}

.header-action {
  padding: 0 20px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  padding: 74px clamp(18px, 5vw, 72px) 58px;
}

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

.hero-image {
  margin: 0;
}

.hero-image img,
.image-band img {
  display: block;
  width: 100%;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(46px, 8vw, 94px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(32px, 4.8vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  padding: 0 24px;
  border: 1px solid var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
}

.section,
.map-section,
.audience,
.pricing,
.contact,
.image-band {
  padding: 82px clamp(18px, 5vw, 72px);
}

.section-heading {
  margin-bottom: 34px;
}

.steps,
.service-grid,
.security-row,
.price-cards {
  display: grid;
  gap: 20px;
}

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

.steps article,
.service-grid article,
.security-row div,
.price-cards article,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--muted);
  font-weight: 700;
}

.steps p,
.service-grid p,
.security-row p,
.pricing p,
.contact p,
.image-band p {
  color: var(--muted);
}

.map-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legend {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.legend i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.green {
  background: var(--green);
}

.blue {
  background: var(--blue);
}

.orange {
  background: var(--orange);
}

.red {
  background: var(--red);
}

.geo-map {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.035) 25%, transparent 25%) 0 0 / 42px 42px,
    #f3f3f3;
  box-shadow: var(--shadow);
}

.geo-map::before {
  content: "";
  position: absolute;
  inset: 70px 40px;
  border-radius: 48% 42% 45% 34%;
  background: #dcdcdc;
  clip-path: polygon(5% 48%, 18% 30%, 32% 24%, 47% 14%, 60% 26%, 78% 24%, 94% 42%, 86% 60%, 67% 64%, 52% 79%, 35% 72%, 20% 78%, 9% 66%);
}

.route {
  position: absolute;
  z-index: 2;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transform-origin: left center;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.route::after {
  content: "";
  position: absolute;
  inset: -12px 0;
}

.route-one {
  width: 310px;
  left: 145px;
  top: 260px;
  background: var(--orange);
  transform: rotate(10deg);
}

.route-two {
  width: 210px;
  left: 248px;
  top: 225px;
  background: var(--red);
  transform: rotate(-28deg);
}

.route:hover,
.route.is-active {
  box-shadow: 0 0 0 5px rgba(17, 17, 17, 0.12);
}

.route-one:hover,
.route-one.is-active {
  transform: rotate(10deg) scaleX(1.04);
}

.route-two:hover,
.route-two.is-active {
  transform: rotate(-28deg) scaleX(1.04);
}

.pin {
  position: absolute;
  z-index: 3;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 4px solid var(--white);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pin:hover,
.pin.is-active {
  transform: scale(1.22);
  box-shadow: 0 0 0 5px rgba(17, 17, 17, 0.12), 0 8px 20px rgba(17, 17, 17, 0.18);
}

.tbilisi {
  left: 410px;
  top: 220px;
  background: var(--green);
}

.kutaisi {
  left: 245px;
  top: 252px;
  background: var(--blue);
}

.batumi {
  left: 128px;
  top: 288px;
  background: var(--green);
}

.poti {
  left: 168px;
  top: 245px;
  background: var(--red);
}

.map-card {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 10px;
  max-width: 300px;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.map-card .map-type {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.map-card strong {
  font-size: 23px;
  line-height: 1.1;
}

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

.map-card a {
  width: fit-content;
  min-height: 38px;
  margin-top: 4px;
  padding: 0 16px;
  font-size: 14px;
}

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

.image-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  background: var(--soft);
}

.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.audience ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 20px;
}

.security-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-cards strong {
  display: block;
  margin: 20px 0 10px;
  font-size: 34px;
  line-height: 1;
}

.price-cards span {
  color: var(--muted);
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}

.contact-form button {
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  font-size: 13px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

footer span:first-child {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .steps,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero,
  .map-section,
  .image-band,
  .audience,
  .pricing,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .geo-map {
    min-height: 440px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .header-action {
    display: none;
  }

  .hero,
  .section,
  .map-section,
  .audience,
  .pricing,
  .contact,
  .image-band {
    padding: 54px 18px;
  }

  .steps,
  .service-grid,
  .security-row,
  .price-cards {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .geo-map::before {
    inset: 76px 18px;
  }

  .route-one {
    width: 190px;
    left: 84px;
    top: 235px;
  }

  .route-two {
    width: 150px;
    left: 142px;
    top: 215px;
  }

  .tbilisi {
    left: 270px;
    top: 208px;
  }

  .kutaisi {
    left: 145px;
    top: 232px;
  }

  .batumi {
    left: 72px;
    top: 262px;
  }

  .poti {
    left: 106px;
    top: 226px;
  }

  .map-card {
    left: 18px;
    right: 18px;
    max-width: none;
  }

  footer {
    display: grid;
  }
}
