:root {
  color-scheme: light;
  --blue: #27aae1;
  --light-blue: #6dcff6;
  --navy: #160f3e;
  --violet: #363373;
  --gray: #cbcccc;
  --orange: #f04e23;
  --ink: #151323;
  --muted: #5f6371;
  --line: #e5e8ee;
  --paper: #ffffff;
  --wash: #f4f8fb;
  --shadow: 0 22px 70px rgba(22, 15, 62, 0.16);
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "FiraGO", "Noto Sans Georgian", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(39, 170, 225, 0.75);
  outline-offset: 4px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex: 0 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: 16px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--paper);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 7vw, 104px);
  background: rgba(22, 15, 62, 0.96);
  color: var(--paper);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 170px;
}

.brand img {
  width: 178px;
  height: auto;
}

.header-actions {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 30px);
  font-size: 0.96rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  background: var(--blue);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-switcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  flex: 0 0 auto;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.language-switcher button {
  width: 40px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--blue);
  color: var(--paper);
}

.language-switcher button:hover {
  color: var(--paper);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: transparent;
  color: var(--paper);
  padding: 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: clamp(540px, 72svh, 700px);
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(22, 15, 62, 0.42), rgba(22, 15, 62, 0.8)),
    linear-gradient(90deg, rgba(22, 15, 62, 0.95), rgba(22, 15, 62, 0.34) 58%, rgba(22, 15, 62, 0.86)),
    url("https://imagedelivery.net/d_EE26O5eWcJDRYn-qMBOg/421fd045-4164-42ab-7abf-d83a65ee0600/public");
  background-position: center;
  background-size: cover;
  color: var(--paper);
  text-align: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.55;
  background:
    radial-gradient(circle at 50% 62%, rgba(109, 207, 246, 0.8) 0 1.5px, transparent 1.7px),
    radial-gradient(circle at 48% 60%, rgba(255, 255, 255, 0.55) 0 1px, transparent 1.3px);
  background-size: 34px 34px, 55px 55px;
  mask-image: radial-gradient(ellipse at 50% 62%, black 0 30%, transparent 66%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--wash));
}

.hero__content {
  width: min(920px, calc(100% - 40px));
  padding: 82px 0 118px;
}

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

.hero h1 {
  margin: 0;
  color: var(--paper);
  font-size: 5.85rem;
  line-height: 0.96;
  font-weight: 800;
}

.hero__lead {
  width: min(740px, 100%);
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.45rem;
  line-height: 1.6;
  font-weight: 600;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 14px 20px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

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

.button--primary {
  background: var(--blue);
  color: var(--paper);
  box-shadow: 0 14px 34px rgba(39, 170, 225, 0.28);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.support-search {
  position: relative;
  z-index: 2;
  margin-top: -46px;
  padding-bottom: 44px;
}

.search-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(22, 15, 62, 0.08);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  color: var(--violet);
  background: #fbfcfd;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 650;
}

.search-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.quick-actions {
  padding: 42px 0 88px;
  background: var(--wash);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading--left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.remote-tools h2,
.contact-band h2 {
  margin: 0;
  color: var(--navy);
  font-size: 3.2rem;
  line-height: 1.08;
  font-weight: 800;
}

.section-heading p:not(.eyebrow),
.remote-tools p,
.contact-band p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

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

.support-card {
  min-height: 154px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(22, 15, 62, 0.08);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 28px);
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(22, 15, 62, 0.07);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.support-card:hover {
  transform: translateY(-3px);
  border-color: rgba(39, 170, 225, 0.35);
  box-shadow: 0 20px 54px rgba(22, 15, 62, 0.12);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(39, 170, 225, 0.12);
  color: var(--blue);
}

.card-icon--violet {
  background: rgba(54, 51, 115, 0.12);
  color: var(--violet);
}

.card-icon--orange {
  background: rgba(240, 78, 35, 0.12);
  color: var(--orange);
}

.card-icon--gray {
  background: rgba(203, 204, 204, 0.35);
  color: var(--navy);
}

.card-copy {
  min-width: 0;
}

.card-copy strong {
  display: block;
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.2;
}

.card-copy span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.card-arrow {
  color: var(--blue);
}

.support-card.is-hidden,
.step-card.is-hidden,
.tool-card.is-hidden {
  display: none;
}

.guidance {
  padding: 96px 0;
  background: var(--paper);
}

.guidance-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: clamp(36px, 7vw, 82px);
}

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

.step-card {
  min-height: 240px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(109, 207, 246, 0.13), rgba(255, 255, 255, 0) 44%),
    var(--paper);
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--paper);
  font-weight: 800;
}

.step-card h3 {
  margin: 26px 0 10px;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.25;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.remote-tools {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 24%, rgba(109, 207, 246, 0.2) 0 1.5px, transparent 1.7px),
    linear-gradient(130deg, var(--navy) 0%, #20185a 48%, #11101f 100%);
  background-size: 36px 36px, auto;
}

.remote-tools h2,
.remote-tools p {
  color: var(--paper);
}

.remote-tools .eyebrow {
  color: var(--light-blue);
}

.remote-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(32px, 7vw, 86px);
}

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

.tool-card {
  min-height: 190px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.tool-card:hover {
  transform: translateY(-3px);
  border-color: rgba(109, 207, 246, 0.62);
  background: rgba(255, 255, 255, 0.12);
}

.tool-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--orange);
  color: var(--paper);
  font-size: 1.65rem;
  font-weight: 900;
}

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

.tool-card strong {
  font-size: 1.35rem;
}

.tool-card span:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.contact-band {
  padding: 78px 0;
  background: var(--wash);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-actions a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  padding: 14px 18px;
  background: var(--paper);
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(22, 15, 62, 0.08);
}

.site-footer {
  padding: 42px 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.76);
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-footer img {
  width: 146px;
}

.site-footer p {
  margin: 14px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--paper);
  font-weight: 750;
}

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }

  .site-header {
    padding: 16px 20px;
  }

  .header-actions {
    gap: 10px;
  }

  .brand img {
    width: 154px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(22, 15, 62, 0.98);
    transform: translateY(-120%);
    transition: transform 190ms ease;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
  }

  .site-header.is-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: clamp(560px, 76svh, 680px);
  }

  .hero__content {
    padding: 68px 0 116px;
  }

  .hero h1 {
    font-size: 4.15rem;
  }

  .hero__lead {
    font-size: 1.18rem;
  }

  .section-heading h2,
  .remote-tools h2,
  .contact-band h2 {
    font-size: 2.5rem;
  }

  .search-shell,
  .guidance-layout,
  .remote-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .search-count {
    white-space: normal;
  }

  .card-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: auto;
  }

  .contact-actions {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand {
    min-width: 124px;
  }

  .brand img {
    width: 124px;
  }

  .language-switcher button {
    width: 34px;
    height: 30px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    padding: 9px;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .hero__lead {
    font-size: 1.05rem;
  }

  .button,
  .hero__actions,
  .contact-actions a {
    width: 100%;
  }

  .support-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .card-arrow {
    display: none;
  }

  .tool-links {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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