:root {
  --text: #2d3142;
  --blue: #4f5d75;
  --grey: #bfc0c0;
  --light: #ffffff;
  --accent: #ef8354;

  --bg: #f8f7f5;
  --bg-soft: #ffffff;
  --line: rgba(45, 49, 66, 0.08);

  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  --radius: 999px;

  --font-title: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: clip;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
  user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

input,
button,
textarea,
select {
  font: inherit;
  border: none;
  background: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

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

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:focus {
  outline: none;
}

body {
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1;
  color: #fff;
  overflow-x: hidden;
  background-color: var(--blue);
}

.container {
  width: 1240px;
  margin-inline: auto;
}

h1,
h1,
h3,
h4,
h5,
h6,
p,
ul {
  font-family: var(--font-title);
  margin: 0;
}

.header {
  position: absolute;
  width: 100%;
  top: 0;
  padding: 20px 0;
  z-index: 10000;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  max-width: 260px;
  margin-top: -20px;
}

.nav-list {
  display: flex;
  gap: 20px;
  font-size: 16px;
  list-style: none;
}

.nav-list a {
  text-decoration: none;
  font-weight: 300;
  padding: 0;
}

/* Burger */

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 11000;
}

.burger span {
  width: 28px;
  height: 2px;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  transform-origin: center;
}

.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.social-block {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  background: var(--accent);
  color: #fff;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  font-size: 20px;
}

.social-link:hover {
  opacity: 0.7;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100vw;
  margin: auto;
  min-height: 90vh;
  padding-top: 100px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/hero.jpg") center/cover no-repeat;
  opacity: 0.7;
  transform: scale(1.1);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    180deg,
    rgba(11, 16, 32, 0.18) 0%,
    rgba(11, 16, 32, 0.28) 45%,
    rgba(11, 16, 32, 0.42) 58%,
    rgba(99, 103, 115, 0.96) 78%,
    rgba(61, 71, 104, 0.98) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-content > span {
  color: var(--accent);
  text-transform: uppercase;
  font-family: var(--font-title);
  font-weight: 300;
  letter-spacing: 2px;
  opacity: 0.8;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-content > span::before,
.hero-content > span::after {
  content: "";
  display: block;
  width: 160px;
  height: 1px;
  background: #fff;
  opacity: 0.6;
}

.hero-content h1 {
  font-size: 11vw;
  letter-spacing: 0;
  line-height: 0.8;
  font-weight: 400;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 18px;
}

.hero-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.hero-name span {
  font-size: 50px;
  font-weight: 400;
}

.hero-name b {
  color: var(--accent);
  text-transform: uppercase;
  font-family: var(--font-title);
  font-weight: 300;
  letter-spacing: 4px;
  font-size: 3vw;
  line-height: 1.2;
  text-align: center;
}

.hero-text {
  font-size: 22px;
  margin: 30px 0;
}
.row {
  display: flex;
  gap: 20px;
}
.btn,
.btn-hero {
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 300;
  transition: 0.3s;
  display: flex;
  font-size: 18px;
  align-items: center;
  gap: 5px;
  justify-content: center;
  margin-top: 40px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  min-height: 50px;
}

.btn-hero {
  border-radius: 0;
  background-color: var(--accent);
  border-color: var(--accent);
}

.btn-accent {
  border-color: var(--accent);
  color: var(--accent);
  max-width: 300px;
  margin: 30px auto 0;
}

.btn-hero svg {
  width: 22px;
  color: var(--dark);
  margin-right: 10px;
}

.btn-hero:hover,
.btn:hover {
  opacity: 0.9;
}

.about {
  position: relative;

  margin-top: -1px;
  padding: 80px 0 180px;

  background: linear-gradient(
    180deg,
    rgba(61, 71, 104, 0.98) 0%,
    rgba(61, 71, 104, 0.98) 30%,
    rgba(77, 81, 94, 0.96) 40%,
    rgba(90, 95, 110, 0.96) 100%
  );

  color: var(--light);
}
.about .container {
  position: relative;
  z-index: 2;
}

.about-top {
  max-width: 980px;
  margin-bottom: 80px;
}

.about-top p {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  font-family: var(--font-title);
  font-size: 24px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-top p::after {
  content: "";
  width: 120px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.about-top h2 {
  font-family: var(--font-title);
  font-size: clamp(54px, 6vw, 108px);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  max-width: 1100px;
}

.about-top h2 span {
  display: block;
  margin-top: 12px;
  font-size: 30px;
  letter-spacing: normal;
}

.about-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.about-list article {
  position: relative;
  min-height: 720px;
  padding: 34px 34px 40px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

/* .about-list article > div {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 42px;
  background-color: var(--accent);
  padding: 10px 15px;
} */
.about-list .image {
  position: relative;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 720px;
}

.about-list .image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-list .image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(11, 16, 32, 0.08) 0%,
    rgba(11, 16, 32, 0.22) 34%,
    rgba(11, 16, 32, 0.45) 62%,
    rgba(61, 71, 104, 0.82) 100%
  );
}

.about-list .image .side-word {
  position: absolute;
  top: 170px;
  right: 24px;
  z-index: 2;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-title);
  font-size: 70px;
  line-height: 0.85;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.16);
  pointer-events: none;
  user-select: none;
}

.about-list .image .image-box {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 42px 34px 34px;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 28px;
  background-color: transparent;
  margin-bottom: 0;
}

.about-list .image .image-box p {
  max-width: 16ch;
  margin: 0;
  font-family: var(--font-title);
  font-size: 47px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
}

.about-list .image .row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.about-list .image .btn,
.about-list .image .btn-hero {
  margin-top: 0;
  backdrop-filter: blur(8px);
}

.about-list .pilot-text ul {
  margin-top: 0;
}

.about-list .image .btn {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.about-list .image .btn-hero {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.about-list article > div i {
  font-size: 22px;
  opacity: 0.95;
}

.about-list article > div span {
  font-family: var(--font-title);
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 19px;
}

.about-list h3 {
  margin-bottom: 32px;
  font-family: var(--font-title);
  font-size: 38px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.about-list p {
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
}

.about-list p:last-child {
  margin-bottom: 0;
}

.about-list .pilot-text {
  grid-template-columns: 1fr;
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
}

.about-list .pilot-text li {
  font-size: 18px;
  line-height: 1.75;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
}

.about-list article > div {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 42px;
  background-color: var(--accent);
  padding: 10px 15px;
}

.about-list strong {
  font-weight: 600;
  color: var(--light);
}

.pilot {
  position: relative;
  padding: 0 0 100px;
  overflow: hidden;
  color: var(--light);
  background: rgba(61, 71, 104, 0.98);
}

.pilot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(11, 16, 32, 0.55) 0%,
      rgba(11, 16, 32, 0.42) 28%,
      rgba(61, 71, 104, 0.86) 100%
    ),
    url("img/pilot.jpg") center center / cover no-repeat;
  opacity: 1;
  z-index: 0;
}

.pilot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 28%,
      rgba(255, 255, 255, 0.05),
      transparent 26%
    ),
    radial-gradient(
      circle at 82% 70%,
      rgba(239, 131, 84, 0.08),
      transparent 30%
    );
  z-index: 0;
}

.pilot .container {
  position: relative;
  z-index: 2;
}

.pilot-run {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 90px;
  padding: 18px 0;
  background: var(--accent);
}

.pilot-run div {
  width: max-content;
  white-space: nowrap;
  font-family: var(--font-title);
  font-size: 22px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.pilot-top {
  max-width: 980px;
  margin-bottom: 80px;
}

.pilot-top p {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  font-family: var(--font-title);
  font-size: 24px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
}

.pilot-top p::after {
  content: "";
  width: 120px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.pilot-top h2 {
  font-family: var(--font-title);
  font-size: clamp(54px, 6vw, 108px);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  max-width: 1100px;
}

.pilot-top h2 span {
  display: block;
  margin-top: 12px;
  font-size: 30px;
  letter-spacing: normal;
}

.pilot-text {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.pilot-text > span {
  position: absolute;
  top: -70px;
  right: -10px;
  font-family: var(--font-title);
  font-size: 170px;
  line-height: 0.82;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
}

.pilot-text > div {
  position: relative;
  padding: 34px 34px 40px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
  height: 100%;
}

.pilot-text p {
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 400;
}

.pilot-text ul {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

.pilot-text li {
  position: relative;
  padding-left: 28px;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
}

.pilot-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(239, 131, 84, 0.12);
}

.pilot-text .note {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-title);
  font-size: 28px;
  line-height: 1.35;
  color: #fff;
}

.pilot .row {
  margin-top: 36px;
}

.alert {
  position: relative;
  padding: 60px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
  color: #fff;
  max-width: 800px;
  margin: 100px auto 0;
  z-index: 1000;
}

/* великий знак оклику на фоні */

.alert span {
  font-family: var(--font-title);
  font-size: 320px;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  user-select: none;
}

/* контент */

.alert > div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

/* текст */

.alert p {
  max-width: 720px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  font-size: 25px;
}

.alert p em {
  text-transform: uppercase;
  font-family: var(--font-title);
  font-style: normal;
  display: flex;
}

p.accent {
  text-transform: uppercase;
  color: var(--accent);
  font-size: 28px;
  line-height: 1.2;
}

li .accent {
  color: var(--accent);
  font-size: 18px;
  line-height: 1.75;
}

.alert .row {
  margin-top: 0;
}

.alert .btn {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.team {
  position: relative;
  padding: 120px 0 180px;
  color: var(--light);
  background: linear-gradient(
    180deg,
    rgba(90, 95, 110, 0.96) 0%,
    rgba(61, 71, 104, 0.98) 28%,
    rgba(34, 39, 58, 1) 100%
  );
  overflow: hidden;
}

.team::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(255, 255, 255, 0.04),
      transparent 24%
    ),
    radial-gradient(
      circle at 80% 75%,
      rgba(239, 131, 84, 0.07),
      transparent 28%
    );
  z-index: 0;
}

.team .container {
  position: relative;
  z-index: 2;
}

.team-top {
  max-width: 980px;
  margin-bottom: 90px;
}

.team-top p {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  font-family: var(--font-title);
  font-size: 24px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
}

.team-top p::after {
  content: "";
  width: 120px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.team-top h2 {
  font-family: var(--font-title);
  font-size: clamp(54px, 6vw, 108px);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  max-width: 1000px;
}

.team-top h2 span {
  display: block;
  margin-top: 12px;
  font-size: 30px;
  letter-spacing: normal;
}

.team-list {
  display: grid;
  gap: 34px;
}

.team-list article {
  position: relative;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 42px;
  align-items: start;
  padding: 34px 34px 40px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.team-list article > span {
  position: absolute;
  top: 24px;
  right: 18px;
  font-family: var(--font-title);
  font-size: 110px;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
}

.team-list article > div:first-of-type {
  grid-column: 1 / -1;
  max-width: 720px;
  margin-bottom: 8px;
}

.team-list article > div:first-of-type p {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-family: var(--font-title);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.team-list article > div:first-of-type p::after {
  content: "";
  width: 90px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.team-list article > div:first-of-type h3 {
  font-family: var(--font-title);
  font-size: 44px;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.team-list article img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  object-position: top;
}

.team-list article > div:last-of-type {
  position: relative;
  z-index: 2;
  padding-top: 10px;
}

.team-list h4 {
  margin-bottom: 14px;
  font-family: var(--font-title);
  font-size: 42px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.team-list em {
  display: block;
  margin-bottom: 32px;
  font-style: normal;
  font-family: var(--font-title);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.team-list article > div:last-of-type p {
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
}

.team-list article > div:last-of-type p:last-child {
  margin-bottom: 0;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.partners {
  position: relative;
  padding: 120px 0 180px;
  color: var(--light);
  background: linear-gradient(
    180deg,
    rgba(34, 39, 58, 1) 0%,
    rgba(26, 30, 46, 1) 100%
  );
  overflow: hidden;
}

.partners::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(255, 255, 255, 0.04),
      transparent 24%
    ),
    radial-gradient(
      circle at 82% 74%,
      rgba(239, 131, 84, 0.06),
      transparent 28%
    );
  z-index: 0;
}

.partners .container {
  position: relative;
  z-index: 2;
}

.partners-top {
  max-width: 980px;
  margin-bottom: 80px;
}

.partners-top p {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  font-family: var(--font-title);
  font-size: 24px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
}

.partners-top p::after {
  content: "";
  width: 120px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.partners-top h2 {
  font-family: var(--font-title);
  font-size: clamp(47px, 3vw, 92px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  max-width: 1000px;
}

.partners-top h2 span {
  display: block;
  margin-top: 12px;
  font-size: 30px;
  letter-spacing: normal;
}

.partners-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding: 40px 40px 40px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.partners-list > div {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.partners-list img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partners-cta {
  position: relative;
  margin-top: 60px;
  padding: 60px 60px 70px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.015) 100%
  );
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.partners-cta > div {
  max-width: 820px;
}

/* заголовок */

.partners-cta h3 {
  margin-bottom: 28px;
  font-family: var(--font-title);
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.partners-cta p {
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
}

.partners-cta ul {
  margin: 28px 0;
  display: grid;
  gap: 14px;
}

.partners-cta li {
  position: relative;
  padding-left: 24px;
  font-size: 18px;
  line-height: 1.6;
}

.partners-cta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(239, 131, 84, 0.15);
}

.partners-cta .accent {
  margin-top: 28px;
  font-family: var(--font-title);
  font-size: 24px;
  line-height: 1.4;
  color: #fff;
}

.cta {
  position: relative;
  padding: 140px 0 180px;
  color: var(--light);
  background: linear-gradient(
    180deg,
    rgba(90, 95, 110, 0.96) 0%,
    rgba(61, 71, 104, 0.98) 28%,
    rgba(34, 39, 58, 1) 100%
  );
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 25%,
      rgba(255, 255, 255, 0.04),
      transparent 28%
    ),
    radial-gradient(
      circle at 80% 75%,
      rgba(239, 131, 84, 0.06),
      transparent 30%
    );
  z-index: 0;
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta-top {
  max-width: 900px;
  margin-bottom: 100px;
}

.cta-top p {
  font-family: var(--font-title);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.cta-top h2 {
  font-family: var(--font-title);
  font-size: clamp(57px, 4vw, 92px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  max-width: 900px;
}

.cta-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.cta-list article {
  position: relative;
  padding: 40px 40px 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  min-height: 600px;
  overflow: hidden;
}

.cta-list h3 {
  margin-bottom: 26px;
  font-family: var(--font-title);
  font-size: 34px;
  text-transform: uppercase;
  line-height: 1.2;
}

.cta-list p {
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.cta-list .accent {
  font-size: 20px;
  color: #fff;
}

.mt-0 {
  margin-top: 0 !important;
}
.faq {
  position: relative;
  padding: 120px 0 180px;
  color: var(--light);
  background: linear-gradient(
    180deg,
    rgba(11, 16, 32, 1) 0%,
    rgba(22, 28, 46, 1) 100%
  );
  overflow: hidden;
}

.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(255, 255, 255, 0.04),
      transparent 26%
    ),
    radial-gradient(
      circle at 84% 76%,
      rgba(239, 131, 84, 0.06),
      transparent 28%
    );
  z-index: 0;
}

.faq .container {
  position: relative;
  z-index: 2;
}

.faq-top {
  max-width: 980px;
  margin-bottom: 80px;
}

.faq-top p {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  font-family: var(--font-title);
  font-size: 24px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
}

.faq-top p::after {
  content: "";
  width: 120px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.faq-top h2 {
  font-family: var(--font-title);
  font-size: clamp(54px, 6vw, 108px);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  max-width: 1000px;
}

.faq-top h2 span {
  display: block;
  margin-top: 12px;
  font-size: 30px;
  letter-spacing: normal;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.faq-list article {
  position: relative;
  min-height: 100%;

  overflow: hidden;
}

.faq-list article > span {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--font-title);
  font-size: 110px;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  user-select: none;
}

.faq-list h3 {
  margin-bottom: 36px;
  margin-top: 30px;
  font-family: var(--font-title);
  font-size: 38px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background-color: var(--accent);
  margin-bottom: 10px;
  border-radius: 60px;
  padding: 0 15px;
}

.faq-item:first-of-type {
  border-top: none;
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  color: #fff;
  cursor: pointer;
}

.faq-question span {
  font-family: var(--font-title);
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
  color: #fff;
}

.faq-question i {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  color: #fff;
}

.faq-question i::before,
.faq-question i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.faq-question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-question i::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item.active .faq-question i::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  padding: 0 0 24px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.contacts {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
  color: #fff;
}

/* фон як hero */

.contacts::before {
  content: "";
  position: absolute;
  inset: 0;

  background: url("img/hero.jpg") center/cover no-repeat;

  filter: blur(12px) brightness(0.6);
  transform: scale(1.1);

  z-index: 0;
}

/* затемнення */

.contacts::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(11, 16, 32, 0.3) 0%,
    rgba(11, 16, 32, 0.6) 50%,
    rgba(11, 16, 32, 0.85) 100%
  );

  z-index: 1;
}

.contacts .container {
  position: relative;
  z-index: 2;
}

/* заголовок */

.contacts-top {
  max-width: 800px;
  margin-bottom: 80px;
}

.contacts-top p {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;

  font-family: var(--font-title);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;

  color: var(--accent);
}

.contacts-top p::after {
  content: "";
  width: 80px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.contacts-top h2 {
  font-family: var(--font-title);
  font-size: clamp(42px, 5vw, 80px);
  line-height: 0.95;
  text-transform: uppercase;
}

.contacts-top span {
  display: block;
  color: rgba(255, 255, 255, 0.4);
}

.contacts-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contacts-list article {
  position: relative;
  padding: 30px 30px 10px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );

  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);

  overflow: hidden;
}

.contacts-list article > span {
  position: absolute;
  top: 10px;
  right: 12px;

  font-family: var(--font-title);
  font-size: 60px;

  color: rgba(255, 255, 255, 0.06);
}

.contacts-list h3 {
  margin-bottom: 20px;

  font-family: var(--font-title);
  font-size: 22px;
  text-transform: uppercase;
}

.contacts-list a,
.contacts-list p {
  display: block;
  margin-bottom: 12px;

  font-size: 15px;
  line-height: 1.6;

  color: rgba(255, 255, 255, 0.85);
}

.contacts .social-block {
  display: flex;
  gap: 10px;
}

.contacts .social-link {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.2);

  background: rgba(255, 255, 255, 0.05);

  transition: 0.3s;
}

.contacts .social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.cta-top h2 .accent {
  color: var(--accent);
  font-family: var(--font-title);
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 2px;
}

footer .logo {
  margin: 50px auto 0;
  max-width: 300px;
}

.team-bio {
  margin-top: 0;
  display: flex;
  flex-direction: column;
}

.team-bio-more[hidden] {
  display: none;
}

.team-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 14px 22px;
  min-height: 48px;
  border: 1px solid rgba(239, 131, 84, 0.55);
  border-radius: 999px;
  background: rgba(239, 131, 84, 0.08);
  color: var(--accent);
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.team-toggle:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-1px);
}

.team-toggle:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  margin: auto;
  background-color: transparent;
}

.team-bio .social-link {
  margin-bottom: 10px;
}
