@font-face {
  font-family: "Charis CBL";
  src: url("/assets/fonts/charis-sil-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Charis CBL";
  src: url("/assets/fonts/charis-sil-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans CBL";
  src: url("/assets/fonts/open-sans-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans CBL";
  src: url("/assets/fonts/open-sans-semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans CBL";
  src: url("/assets/fonts/open-sans-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy: #1e2634;
  --navy-deep: #151b25;
  --navy-soft: #313e53;
  --red: #ff5757;
  --red-dark: #d33d47;
  --ink: #1e2634;
  --muted: #404e68;
  --blue: #d3e9fd;
  --light-blue: #afd7fc;
  --mist: #f5f9ff;
  --stone: #f5f9ff;
  --white: #ffffff;
  --line: rgba(30, 38, 52, 0.15);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 18px 48px rgba(18, 27, 40, 0.12);
  --serif: "Charis CBL", Georgia, "Times New Roman", serif;
  --sans: "Open Sans CBL", Arial, sans-serif;
  --ka-serif: "Noto Serif Georgian", Sylfaen, "Charis CBL", serif;
  --ka-sans: "Noto Sans Georgian", Sylfaen, "Open Sans CBL", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: clip;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

html[data-lang="ka"] body {
  font-family: var(--ka-sans);
}

body,
button,
input,
select,
textarea {
  letter-spacing: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(17, 25, 37, 0.97);
  border-bottom-color: var(--line-dark);
  box-shadow: 0 10px 30px rgba(9, 14, 22, 0.18);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 82px;
  gap: 30px;
}

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

.brand::before {
  content: "";
  display: none;
  width: 62px;
  height: 68px;
  flex: 0 0 auto;
  background: url("../img/cbl-sign-dark.svg") center / contain no-repeat;
}

.brand img {
  display: block;
  width: 204px;
  height: auto;
}

.brand > span {
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.82);
  border-left: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: 0;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

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

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

.site-nav .network-link,
.mobile-language-switch {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.language-switch,
.mobile-language-switch {
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
}

.language-switch {
  display: inline-grid;
}

.language-switch button,
.mobile-language-switch button {
  width: 38px;
  height: 34px;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.language-switch button[aria-pressed="true"],
.mobile-language-switch button[aria-pressed="true"] {
  color: var(--navy);
  background: var(--white);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.header-cta,
.button-primary {
  color: var(--white);
  background: var(--red-dark);
}

.header-cta:hover,
.header-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.button-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.48);
}

.button-light:hover,
.button-light:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: clamp(650px, 78svh, 760px);
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.hero-image,
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.06);
}

.hero-shade {
  z-index: -1;
  background: rgba(11, 18, 28, 0.28);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  align-items: end;
  gap: 76px;
  padding-top: 142px;
  padding-bottom: 62px;
}

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

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.route-strip h2,
.confirmation-inner h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.04;
}

html[data-lang="ka"] .hero h1,
html[data-lang="ka"] .section h2,
html[data-lang="ka"] .route-strip h2 {
  font-family: var(--ka-serif);
  line-height: 1.16;
}

.hero h1 {
  max-width: 920px;
  font-size: 58px;
}

html[data-lang="ka"] .hero h1 {
  max-width: 980px;
  font-size: 48px;
}

.hero-lead {
  max-width: 710px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.58;
}

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

.hero-proof {
  display: grid;
  align-self: end;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-proof > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-proof span {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
}

.hero-proof strong {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.route-strip {
  position: relative;
  isolation: isolate;
  padding: 64px 0 72px;
  overflow: hidden;
  background: var(--white);
}

.route-strip::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 24px;
  right: -120px;
  width: min(46vw, 590px);
  aspect-ratio: 1050.3 / 595.3;
  background: url("../img/cbl-brand-elements.svg") center / contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.route-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: end;
  gap: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.route-heading .section-label {
  margin: 0;
}

.route-strip h2 {
  font-size: 37px;
}

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

.route-grid > a {
  display: grid;
  min-height: 174px;
  padding: 28px 30px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 160ms ease, background-color 160ms ease;
}

.route-grid > a:first-child {
  border-left: 1px solid var(--line);
}

.route-grid > a:hover,
.route-grid > a:focus-visible {
  color: var(--white);
  background: var(--navy);
}

.route-number {
  align-self: start;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
}

.route-grid strong {
  align-self: end;
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.35;
}

.route-grid em {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.route-grid > a:hover em,
.route-grid > a:focus-visible em {
  color: rgba(255, 255, 255, 0.7);
}

.section {
  padding: 112px 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 48px;
}

.section h2 {
  max-width: 780px;
  font-size: 47px;
}

.section-intro > p,
.international-copy > p,
.experience-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.services-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--mist);
}

.services-section::after,
.team-section::after,
.contact-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: min(27vw, 340px);
  height: 100%;
  background: url("../img/cbl-pattern-light.svg") center / cover no-repeat;
  opacity: 0.6;
  pointer-events: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 290px;
  padding: 32px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card-featured {
  grid-column: span 2;
  min-height: 370px;
  color: var(--white);
  background: var(--navy);
}

.service-card-featured:nth-child(2) {
  color: var(--ink);
  background: var(--blue);
}

.service-card-critical {
  color: var(--white);
  background: var(--red-dark);
}

.service-index {
  display: block;
  margin-bottom: 48px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
}

.service-card-featured:nth-child(2) .service-index,
.service-card-critical .service-index {
  color: currentColor;
  opacity: 0.72;
}

.service-type {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-card-featured:nth-child(2) .service-type {
  color: rgba(24, 32, 44, 0.64);
}

.service-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.18;
}

html[data-lang="ka"] .service-card h3,
html[data-lang="ka"] .team-member h3,
html[data-lang="ka"] .scenario-list h3 {
  font-family: var(--ka-serif);
}

.service-card-featured h3 {
  max-width: 520px;
  font-size: 35px;
}

.service-card > p:not(.service-type) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.service-card-critical > p:not(.service-type) {
  color: rgba(255, 255, 255, 0.82);
}

.service-card ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 34px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.service-card-featured:nth-child(2) ul {
  border-top-color: rgba(24, 32, 44, 0.18);
}

.service-card li {
  font-size: 13px;
  line-height: 1.5;
}

.international-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.international-section::after,
.process-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: min(28vw, 360px);
  height: 100%;
  background: url("../img/cbl-pattern-dark.svg") center / cover no-repeat;
  opacity: 0.3;
  pointer-events: none;
}

.international-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  align-items: center;
  gap: 100px;
}

.international-copy h2 {
  font-size: 48px;
}

.international-copy > p {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.7);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding-bottom: 8px;
  color: currentColor;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
}

.text-link > span:last-child {
  color: var(--red);
  font-size: 20px;
}

.international-routes {
  border-top: 1px solid var(--line-dark);
}

.international-routes > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 24px;
  min-height: 104px;
  border-bottom: 1px solid var(--line-dark);
}

.international-routes span {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.international-routes strong {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}

.scenarios-section {
  background: var(--white);
}

.scenarios-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 100px;
}

.section-sticky-title {
  align-self: start;
  position: sticky;
  top: 120px;
}

.scenario-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.scenario-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.scenario-list > li > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
}

.scenario-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.scenario-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.experience-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--stone);
}

.experience-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -90px;
  bottom: 22px;
  width: min(44vw, 570px);
  aspect-ratio: 1050.3 / 595.3;
  background: url("../img/cbl-brand-elements.svg") center / contain no-repeat;
  opacity: 0.055;
  pointer-events: none;
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.64fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 82px;
}

.experience-mark {
  display: flex;
  min-height: 390px;
  padding: 44px;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--red-dark);
}

.experience-mark span {
  font-family: var(--serif);
  font-size: 116px;
  line-height: 0.8;
}

.experience-mark strong {
  max-width: 160px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.46);
  font-size: 14px;
  text-transform: uppercase;
}

.experience-copy {
  align-self: center;
}

.experience-copy > p {
  max-width: 680px;
  margin-top: 28px;
}

.team-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--mist);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.team-member {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 28px;
  min-height: 250px;
  padding: 34px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.team-member-wide {
  grid-column: 1 / -1;
  min-height: 210px;
}

.team-member-profile {
  grid-template-columns: 126px 1fr;
  min-height: 310px;
}

.member-photo {
  position: relative;
  width: 116px;
  height: 148px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

.member-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}

.member-photo-tight img {
  transform: scale(1.7);
  transform-origin: 68% 62%;
}

.member-initials {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 19px;
}

.team-member:nth-child(2) .member-initials,
.team-member:nth-child(5) .member-initials {
  background: var(--red-dark);
}

.team-member h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.member-role {
  margin: 8px 0 18px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.member-summary {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.member-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.member-tags li {
  padding: 7px 10px;
  color: var(--navy);
  background: var(--mist);
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.team-member div > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.process-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.process-heading {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 46px;
}

.process-heading .section-label {
  margin: 0;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  list-style: none;
}

.process-list li {
  min-height: 270px;
  padding: 30px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.process-list li > span {
  display: block;
  margin-bottom: 62px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
}

.process-list strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
}

.process-list p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(480px, 1fr);
  gap: 100px;
}

.contact-copy > p {
  max-width: 520px;
  margin-top: 26px;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 36px;
  font-size: 16px;
  font-weight: 600;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--red-dark);
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: 38px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 6px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(30, 38, 52, 0.24);
  border-radius: 4px;
  outline: none;
  font-size: 14px;
  font-weight: 400;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 87, 87, 0.12);
}

.contact-form .consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.contact-form .consent input {
  width: 17px;
  min-height: 17px;
  margin: 2px 0 0;
  accent-color: var(--red);
}

.contact-form .consent a {
  color: var(--red-dark);
  border-bottom: 1px solid currentColor;
}

.contact-form .form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.contact-form .button {
  justify-self: start;
}

.form-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid #d84b44;
  outline-offset: 3px;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 68px 0 22px;
  color: var(--white);
  background: var(--navy-deep);
}

.site-footer::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: min(30vw, 390px);
  height: 100%;
  background: url("../img/cbl-pattern-dark.svg") center / cover no-repeat;
  opacity: 0.34;
  pointer-events: none;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.7fr;
  gap: 70px;
  padding-bottom: 48px;
}

.footer-brand {
  max-width: 440px;
}

.footer-brand img {
  display: inline-block;
  width: 210px;
  vertical-align: middle;
}

.footer-brand > span {
  display: inline-block;
  margin-left: 14px;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.7);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  vertical-align: middle;
}

.footer-brand p {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 12px;
  font-size: 14px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--red);
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.52);
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.48);
  border-top: 1px solid var(--line-dark);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:nth-child(2) {
  max-width: 720px;
  justify-self: center;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.74);
}

.confirmation-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 50px 0;
  background: var(--mist);
}

.confirmation-inner {
  max-width: 760px;
  padding: 58px;
  background: var(--white);
  border-left: 6px solid var(--red);
  box-shadow: var(--shadow);
}

.confirmation-brand {
  margin-bottom: 70px;
}

.confirmation-brand::before {
  background-image: url("../img/cbl-sign-light.svg");
}

.confirmation-brand img {
  width: 220px;
}

.confirmation-brand > span {
  color: var(--navy);
  border-left-color: var(--line);
}

.confirmation-inner h1 {
  font-family: var(--ka-serif);
  font-size: 54px;
  line-height: 1.14;
}

.confirmation-inner > p:not(.section-label) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.confirmation-inner .confirmation-en {
  margin-top: 8px;
}

.confirmation-inner .button {
  margin-top: 32px;
}

.legal-page {
  min-height: 100svh;
  background: var(--mist);
}

.legal-page .site-header {
  position: sticky;
  color: var(--white);
  background: var(--navy-deep);
  border-bottom-color: var(--line-dark);
}

.legal-page .site-nav {
  justify-content: flex-end;
}

.legal-page .site-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.legal-main {
  padding: 76px 0 110px;
}

.legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 70px;
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 780px;
  margin: 8px 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 700;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

html[data-lang="ka"] .legal-hero h1 {
  font-family: var(--ka-serif);
  font-size: 62px;
}

.legal-hero > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-status {
  margin: 34px 0 0;
  padding: 18px 20px;
  color: var(--navy);
  background: var(--blue);
  border-left: 4px solid var(--red);
  font-size: 13px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 90px;
  align-items: start;
  margin-top: 56px;
}

.legal-toc {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}

.legal-toc strong {
  margin-bottom: 8px;
  color: var(--navy);
  text-transform: uppercase;
}

.legal-toc a {
  border-bottom: 1px solid transparent;
  overflow-wrap: anywhere;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--red-dark);
  border-bottom-color: currentColor;
}

.legal-content {
  display: grid;
  gap: 42px;
}

.legal-block {
  scroll-margin-top: 120px;
}

.legal-block h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

html[data-lang="ka"] .legal-block h2 {
  font-family: var(--ka-serif);
}

.legal-block p,
.legal-block li {
  color: var(--muted);
  font-size: 15px;
}

.legal-block p {
  margin: 0 0 12px;
}

.legal-block ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-block a {
  color: var(--red-dark);
  border-bottom: 1px solid currentColor;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
}

.cbl-scroll-progress {
  position: fixed;
  z-index: 180;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.cbl-scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 90ms linear;
}

.cbl-back-to-top {
  position: fixed;
  z-index: 120;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: var(--navy-deep);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
  font-size: 23px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.cbl-back-to-top:hover,
.cbl-back-to-top:focus-visible {
  background: var(--red-dark);
}

.cbl-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .header-inner {
    gap: 18px;
  }

  .brand {
    min-width: 238px;
  }

  .brand img {
    width: 204px;
  }

  .site-nav {
    gap: 15px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .header-cta {
    display: none;
  }

  .hero h1 {
    font-size: 51px;
  }

  html[data-lang="ka"] .hero h1 {
    font-size: 43px;
  }
}

@media (max-width: 960px) {
  .container {
    width: min(100% - 36px, 760px);
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .nav-toggle {
    display: block;
    grid-column: 3;
    grid-row: 1;
  }

  .legal-page .nav-toggle {
    display: none;
  }

  .legal-page .site-nav {
    position: static;
    display: flex;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .legal-page .site-nav > a {
    display: none;
  }

  .legal-page .mobile-language-switch {
    display: flex;
  }

  .legal-page .header-actions {
    display: none;
  }

  .legal-page .header-inner {
    grid-template-columns: 1fr auto;
  }

  .legal-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal-hero h1 {
    font-size: 56px;
  }

  html[data-lang="ka"] .legal-hero h1 {
    font-size: 50px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
  }

  .legal-toc strong {
    grid-column: 1 / -1;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    right: 0;
    left: 0;
    display: none;
    padding: 18px;
    background: var(--navy-deep);
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 14px;
  }

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

  .site-nav .network-link {
    display: block;
    border-bottom: 0;
  }

  .mobile-language-switch {
    display: inline-grid;
    align-self: flex-start;
    margin-top: 18px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 36px;
    padding-top: 136px;
    padding-bottom: 44px;
  }

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

  .hero-proof > div {
    grid-template-columns: 1fr;
    padding-right: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
  }

  .hero-proof > div:last-child {
    border-right: 0;
  }

  .section {
    padding: 88px 0;
  }

  .section-intro,
  .international-layout,
  .scenarios-layout,
  .experience-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-sticky-title {
    position: static;
  }

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

  .international-layout {
    align-items: start;
  }

  .experience-mark {
    min-height: 260px;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 72px;
  }

  .container {
    width: min(100% - 28px, 520px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand::before {
    display: block;
  }

  .brand img {
    display: none;
  }

  .brand > span {
    padding-left: 8px;
    font-size: 10px;
  }

  .header-actions {
    display: none;
  }

  .nav-toggle {
    grid-column: 2;
  }

  .site-nav {
    top: 72px;
  }

  .hero {
    min-height: 700px;
  }

  .services-section::after,
  .team-section::after,
  .contact-section::after,
  .international-section::after,
  .process-section::after,
  .site-footer::before {
    width: 46vw;
    opacity: 0.2;
  }

  .route-strip::after,
  .experience-section::after {
    width: 90vw;
    opacity: 0.035;
  }

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

  .hero-shade {
    background: rgba(11, 18, 28, 0.46);
  }

  .hero-inner {
    padding-top: 118px;
    padding-bottom: 30px;
  }

  .hero h1,
  html[data-lang="ka"] .hero h1 {
    font-size: 34px;
  }

  .legal-hero h1 {
    font-size: 38px;
  }

  html[data-lang="ka"] .legal-hero h1 {
    font-size: 34px;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

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

  .hero-proof {
    display: none;
  }

  .route-strip {
    padding: 50px 0 58px;
  }

  .route-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .route-strip h2 {
    font-size: 31px;
  }

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

  .route-grid > a {
    min-height: 140px;
    border-left: 1px solid var(--line);
  }

  .section {
    padding: 72px 0;
  }

  .section h2,
  .international-copy h2 {
    font-size: 36px;
  }

  .section-intro {
    gap: 28px;
    margin-bottom: 34px;
  }

  .section-intro > p,
  .international-copy > p,
  .experience-copy > p,
  .contact-copy > p {
    font-size: 16px;
  }

  .service-grid,
  .team-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .service-card-featured,
  .team-member-wide {
    grid-column: auto;
  }

  .service-card,
  .service-card-featured {
    min-height: 0;
    padding: 28px;
  }

  .service-index {
    margin-bottom: 34px;
  }

  .service-card-featured h3 {
    font-size: 30px;
  }

  .service-card ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .international-routes > div {
    grid-template-columns: 88px 1fr;
    gap: 16px;
  }

  .scenario-list li {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .experience-mark {
    min-height: 220px;
    padding: 30px;
  }

  .experience-mark span {
    font-size: 90px;
  }

  .team-member {
    grid-template-columns: 56px 1fr;
    gap: 18px;
    min-height: 0;
    padding: 28px 22px;
  }

  .team-member-profile {
    grid-template-columns: 1fr;
  }

  .member-photo {
    width: 104px;
    height: 132px;
  }

  .member-initials {
    width: 50px;
    height: 50px;
    font-size: 15px;
  }

  .team-member h3 {
    font-size: 23px;
  }

  .process-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-list li {
    min-height: 0;
  }

  .process-list li > span {
    margin-bottom: 36px;
  }

  .contact-layout {
    gap: 36px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form .button {
    width: 100%;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom p:nth-child(2) {
    justify-self: start;
  }

  .confirmation-inner {
    padding: 38px 26px;
  }

  .confirmation-inner h1 {
    font-size: 38px;
  }

  .cbl-back-to-top {
    right: 12px;
    bottom: 12px;
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}
