:root {
  --ink: #092754;
  --muted: #627188;
  --blue: #0d63d8;
  --blue-dark: #063f91;
  --blue-soft: #eaf4ff;
  --line: #dce8f7;
  --surface: #ffffff;
  --shadow: 0 18px 48px rgba(26, 73, 126, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 6% 14%, rgba(13, 99, 216, 0.07), transparent 26rem),
    linear-gradient(180deg, #f8fcff 0%, #ffffff 54%, #f6fbff 100%);
}

a {
  text-decoration: none;
}

.site-nav {
  min-height: 72px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(216, 229, 247, 0.8);
  backdrop-filter: blur(14px);
}

.navbar-brand {
  color: var(--ink);
  line-height: 1.1;
}

.navbar-brand strong,
.footer-brand strong {
  display: block;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.navbar-brand small,
.footer-brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue);
  font-size: 2.1rem;
}

.navbar-nav {
  gap: 0.6rem;
}

.nav-link {
  position: relative;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
}

.nav-link.active::after {
  position: absolute;
  right: 0.5rem;
  bottom: -1rem;
  left: 0.5rem;
  height: 2px;
  content: "";
  background: var(--blue);
}

.btn {
  border-radius: 6px;
  font-weight: 800;
  box-shadow: none;
}

.btn-primary {
  background: linear-gradient(135deg, #0c70e8, #074fb8);
  border-color: #0b61d0;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #075ac3, #073f92);
  border-color: #074fb8;
}

.btn-outline-primary {
  color: var(--blue);
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.82);
}

.nav-cta {
  padding: 0.76rem 1.3rem;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-copy {
  width: min(100%, 600px);
  margin-left: auto;
  padding: clamp(2.7rem, 4.8vw, 4.7rem) 3rem 3.8rem 1.5rem;
}

.eyebrow {
  margin: 0 0 1.3rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  font-size: clamp(2.35rem, 4.15vw, 3.35rem);
  line-height: 1.12;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.12;
  color:#004DBC;
}

.lead-copy,
.section-copy {
  color: #3f5068;
  line-height: 1.78;
}

.lead-copy {
  max-width: 550px;
  margin: 1.35rem 0 1.75rem;
  font-size: 1rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 530px;
}

.info-card,
.stats-grid article,
.agenda-card,
.benefits-strip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 86px;
  padding: 1.05rem;
  border-radius: 8px;
}

.info-card i,
.stats-grid i,
.benefits-strip i {
  color: var(--blue);
  font-size: 1.85rem;
}

.info-card span,
.agenda-row small,
.stats-grid span,
.benefits-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.info-card strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--ink);
  font-size: 0.94rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.1rem;
}

.hero-actions .btn {
  min-width: 190px;
  padding: 1rem 1.5rem;
}

.hero-visual {
  position: relative;
  min-height: min(800px, calc(100vh - 72px));
  overflow: hidden;
  border-bottom-left-radius: 12rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0)),
    url("assets/tbilisi.png") center / cover no-repeat;
  box-shadow: inset 32px 0 64px rgba(255, 255, 255, 0.38);
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--blue);
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(8, 59, 125, 0.16);
}

.slider-prev {
  left: 4rem;
}

.slider-next {
  right: 1.8rem;
}

.slider-dots {
  position: absolute;
  right: 0;
  bottom: 1.5rem;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
}

.slider-dots span {
  width: 22px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.9);
}

.slider-dots .active {
  background: var(--blue);
}

.section-pad {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.section-title h2::after {
  display: block;
  width: 50px;
  height: 3px;
  margin: 1rem auto 0;
  content: "";
  border-radius: 99px;
  background: var(--blue);
}

.agenda-tabs {
  width: min(100%, 560px);
  margin: 2rem auto 1.5rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(17, 67, 122, 0.1);
}

.agenda-tabs .nav-link {
  min-width: 160px;
  padding: 0.8rem 1.2rem;
  border-radius: 9px;
  color: var(--ink);
}

.agenda-tabs .nav-link::after {
  display: none;
}

.agenda-tabs .nav-link.active {
  color: #ffffff;
  background: linear-gradient(135deg, #0d6fe8, #0752bd);
}

.agenda-card {
  width: min(100%, 800px);
  overflow: hidden;
  border-radius: 10px;
}

.agenda-row {
  display: grid;
  grid-template-columns: 140px 34px minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  min-height: 66px;
  padding: 0.85rem 1.45rem;
  border-bottom: 1px solid var(--line);
}

.agenda-row:last-child {
  border-bottom: 0;
}

.agenda-row time {
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 900;
}

.timeline-dot {
  position: relative;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
}

.timeline-dot::before {
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px #dcebff;
}

.timeline-dot::after {
  position: absolute;
  top: -36px;
  bottom: -36px;
  left: 50%;
  width: 1px;
  content: "";
  background: var(--line);
  transform: translateX(-50%);
}

.agenda-row strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 0.9rem;
}

.badge-soft {
  padding: 0.55rem 0.8rem;
  color: var(--blue);
  border-radius: 6px;
  background: var(--blue-soft);
  font-size: 0.76rem;
  font-weight: 800;
}

.georgia-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 15%, rgba(13, 99, 216, 0.08), transparent 25rem),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.georgia-section h2 {
  max-width: 470px;
}

.section-copy {
  max-width: 520px;
  margin-top: 1.35rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.stats-grid article {
  min-height: 112px;
  padding: 1rem 0.7rem;
  border-radius: 8px;
  text-align: center;
}

.stats-grid i {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.55rem;
}

.stats-grid strong {
  display: block;
  font-size: 1.15rem;
}

.map-visual {
  display: block;
  width: 100%;
  filter: drop-shadow(0 26px 46px rgba(32, 96, 160, 0.14));
  border-top-left-radius: 70px;
  border-bottom-left-radius: 70px;
}

.cta-wrap {
  padding: 0 0 3rem;
}

.cta-panel {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 150px;
  padding: 2rem 3rem;
  color: #ffffff;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(0, 46, 92, 0.98), rgba(0, 95, 197, 0.88));
  box-shadow: 0 20px 48px rgba(7, 68, 140, 0.2);
}

.cta-panel h2,
.cta-panel p {
  color: #ffffff;
}

.cta-panel p {
  margin: 0.6rem 0 0;
  font-size: 1.08rem;
  line-height: 1.6;
}

.cta-icon {
  display: grid;
  flex: 0 0 82px;
  width: 82px;
  height: 82px;
  place-items: center;
  color: var(--blue);
  border-radius: 50%;
  background: #ffffff;
  font-size: 2.4rem;
}

.cta-panel .btn {
  min-width: 160px;
  color: var(--blue);
}

.benefits-section {
  padding-bottom: 2rem;
}

.benefits-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: 8px;
}

.benefits-strip article {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 92px;
  padding: 1.15rem 1.4rem;
  border-right: 1px solid var(--line);
}

.benefits-strip article:last-child {
  border-right: 0;
}

.benefits-strip i {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(24, 80, 145, 0.12);
  font-size: 1.35rem;
}

.benefits-strip strong {
  display: block;
  font-size: 0.92rem;
}

.site-footer {
  padding: 2rem 0 1.2rem;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(135deg, #002d5b, #004a92);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr auto;
  gap: 1.5rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #ffffff;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a,
.site-footer span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.site-footer i {
  margin-right: 0.45rem;
}

.socials {
  display: flex;
  gap: 0.7rem;
}

.socials a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
}

.socials i {
  margin: 0;
}

.copyright {
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-size: 0.85rem;
}

@media (max-width: 1199.98px) {
  .hero-copy {
    padding-right: 2rem;
  }

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

  .benefits-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits-strip article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 991.98px) {
  .site-nav {
    min-height: auto;
  }

  .nav-link.active::after {
    display: none;
  }

  .hero-copy {
    width: 100%;
    margin: 0;
    padding: 4rem 1.5rem 3rem;
  }

  .hero-visual {
    min-height: 520px;
    border-bottom-left-radius: 0;
  }

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

@media (max-width: 767.98px) {
  .info-grid,
  .stats-grid,
  .benefits-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .agenda-tabs {
    display: grid;
    gap: 0.35rem;
  }

  .agenda-tabs .nav-link {
    width: 100%;
  }

  .agenda-row {
    grid-template-columns: 1fr auto;
    gap: 0.55rem 1rem;
    padding: 1rem;
  }

  .agenda-row time {
    grid-column: 1;
  }

  .timeline-dot {
    display: none;
  }

  .agenda-row div {
    grid-column: 1 / -1;
  }

  .badge-soft {
    grid-column: 2;
    grid-row: 1;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.4rem;
  }

  .benefits-strip article,
  .benefits-strip article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefits-strip article:last-child {
    border-bottom: 0;
  }

  .slider-prev {
    left: 1rem;
  }

  .slider-next {
    right: 1rem;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 2.2rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 430px;
  }

  .slider-btn {
    width: 46px;
    height: 46px;
  }

  .section-pad {
    padding: 3.5rem 0;
  }
}
