:root {
  --ink: #172026;
  --muted: #5e6a72;
  --paper: #f6f4ee;
  --surface: #ffffff;
  --line: #dde3df;
  --brand: #0e7c73;
  --brand-dark: #09584f;
  --accent: #f3b33d;
  --deep: #13252a;
  --shadow: 0 22px 60px rgba(14, 37, 41, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(243, 179, 61, 0.78);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--surface);
  border-radius: 6px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
  animation: slideDown 520ms ease both;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(15, 32, 35, 0.09);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #102326;
  background: var(--accent);
  font-weight: 900;
}

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

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.76;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
}

.nav-whatsapp {
  display: none;
}

.nav a,
.header-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.header-call {
  justify-content: center;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 6px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.nav-toggle:active {
  transform: scale(0.96);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.04);
  animation: heroZoom 9000ms ease-out both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 20, 23, 0.86) 0%, rgba(9, 20, 23, 0.62) 42%, rgba(9, 20, 23, 0.08) 76%),
    linear-gradient(0deg, rgba(9, 20, 23, 0.48) 0%, rgba(9, 20, 23, 0) 34%);
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 124px 0 46px;
  animation: fadeUp 720ms ease 120ms both;
}

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

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

h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(34px, 5.2vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 560px;
  margin: 18px 0 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.6vw, 18px);
}

.primary-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 0 18px;
  color: #102326;
  background: var(--accent);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(243, 179, 61, 0.22);
}

.pulse-link {
  position: relative;
}

.pulse-link::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(243, 179, 61, 0.5);
  border-radius: 10px;
  animation: pulseRing 1600ms ease-out infinite;
}

.secondary-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 900;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.trust-row span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
  font-size: 14px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.stats div {
  padding: 34px clamp(18px, 4vw, 52px);
  background: var(--surface);
  animation: fadeUp 620ms ease both;
}

.stats div:nth-child(2) {
  animation-delay: 80ms;
}

.stats div:nth-child(3) {
  animation-delay: 160ms;
}

.stats div:nth-child(4) {
  animation-delay: 240ms;
}

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

.stats strong {
  color: var(--brand);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.stats span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(66px, 10vw, 112px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: 34px;
}

.section-head p:last-child,
.business-copy p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

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

.service-card {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 26px rgba(20, 39, 43, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  animation: fadeUp 620ms ease both;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 124, 115, 0.34);
  box-shadow: 0 20px 42px rgba(20, 39, 43, 0.12);
}

.service-card .icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: #e7f2ef;
  transition: transform 180ms ease, background 180ms ease;
}

.service-card:hover .icon {
  transform: rotate(-4deg) scale(1.06);
  background: #d8efe9;
}

.service-card svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--brand-dark);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.service-card strong {
  margin-top: auto;
  color: var(--brand-dark);
  font-size: 18px;
}

.featured-service {
  border-color: rgba(14, 124, 115, 0.34);
  background: linear-gradient(180deg, #ffffff 0%, #eef8f5 100%);
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(30px, 7vw, 90px);
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px 18px;
  padding: 22px;
  border-left: 4px solid var(--brand);
  background: var(--surface);
}

.steps span {
  grid-row: span 2;
  color: var(--accent);
  font-size: 24px;
  font-weight: 900;
}

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

.why {
  background: var(--deep);
  color: #fff;
}

.why-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 7vw, 90px);
  padding: clamp(64px, 9vw, 104px) 0;
}

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

.why-list p {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
}

.why-list strong {
  color: #fff;
}

.business {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.business-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.business-panel span {
  min-height: 120px;
  display: flex;
  align-items: end;
  padding: 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #1a4c5d);
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.contact .secondary-link {
  color: var(--brand-dark);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #10191c;
}

.footer strong {
  color: #fff;
}

.footer p {
  margin: 6px 0 0;
}

.footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

.mobile-call {
  display: none;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  max-width: 360px;
  padding: 16px 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--brand-dark);
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 12px;
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    border: 1px solid rgba(255, 255, 255, 0.22);
  }

  .site-header.is-solid .nav-toggle {
    border-color: var(--line);
    background: #f3f6f3;
  }

  .nav,
  .header-call {
    display: none;
  }

  .nav.is-open {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 6px;
    padding: 12px;
    color: var(--ink);
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-height: calc(100svh - 82px);
    overflow-y: auto;
    animation: menuDrop 180ms ease both;
  }

  .nav.is-open a {
    min-height: 48px;
    align-items: center;
    display: flex;
    padding: 0 12px;
    border-radius: 6px;
  }

  .nav.is-open a:active {
    background: #f1f5f2;
  }

  .nav.is-open .nav-whatsapp {
    display: flex;
    justify-content: center;
    margin-top: 6px;
    color: #102326;
    background: var(--accent);
    font-weight: 900;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 20, 23, 0.95), rgba(9, 20, 23, 0.58)),
      linear-gradient(0deg, rgba(9, 20, 23, 0.72), rgba(9, 20, 23, 0.12));
  }

  .stats,
  .service-grid,
  .section-head,
  .split,
  .why-inner,
  .business,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .contact-actions {
    justify-content: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand small {
    display: none;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-bottom: 84px;
  }

  h1 {
    font-size: 34px;
  }

  .hero-actions {
    display: flex;
  }

  .trust-row span {
    font-size: 13px;
  }

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

  .stats div {
    padding: 24px 18px;
  }

  .service-card {
    min-height: 220px;
  }

  .business-panel {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-bottom: 86px;
    flex-direction: column;
  }

  .mobile-call {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 25;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #102326;
    background: var(--accent);
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(15, 28, 31, 0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.02);
  }
}

@keyframes pulseRing {
  0% {
    opacity: 0.8;
    transform: scale(0.96);
  }
  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

@keyframes menuDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
