:root {
  --bc-deep: #040429;
  --bc-dark: #07080D;
  --bc-blue: #1864D6;
  --bc-blue-bright: #2497E3;
  --bc-light: #F1F1F0;
  --bc-white: #FFFFFF;
  --bc-text: #040429;
  --bc-muted-dark: rgba(4, 4, 41, 0.64);
  --bc-muted-light: rgba(241, 241, 240, 0.68);
  --bc-line-dark: rgba(4, 4, 41, 0.12);
  --bc-line-light: rgba(241, 241, 240, 0.12);

  --bc-container: calc(100% - 300px);

  --bc-radius-xl: 42px;
  --bc-radius-lg: 34px;
  --bc-radius-md: 24px;

  --bc-header-height: 98px;
  --bc-header-bg: #07080D;
  --bc-cta-gradient-start: #014775;
  --bc-cta-gradient-end: #0185DB;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  background: var(--bc-dark);
  color: var(--bc-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body,
button,
input,
textarea,
select {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.site-main {
  overflow: hidden;
}

.bc-container {
  width: var(--bc-container);
  margin: 0 auto;
}

.bc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--bc-blue-bright);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.bc-eyebrow::before {
  content: "";
  width: 48px;
  height: 1px;
  background: currentColor;
}

.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.bc-btn--blue {
  color: var(--bc-light);
  background: var(--bc-blue);
  border: 1px solid var(--bc-blue-bright);
  box-shadow: 0 18px 42px rgba(24, 100, 214, 0.24);
}

.bc-btn--light {
  color: var(--bc-text);
  background: var(--bc-white);
  border: 1px solid rgba(4, 4, 41, 0.10);
}

.bc-btn--ghost-light {
  color: var(--bc-light);
  background: rgba(241, 241, 240, 0.05);
  border: 1px solid rgba(241, 241, 240, 0.22);
}

/* =========================
   HEADER
========================= */

.site-header {
  position: relative;
  z-index: 20;
  width: 100%;
  height: var(--bc-header-height);
  background: var(--bc-header-bg);
  color: var(--bc-light);
}

.site-header__inner {
  width: var(--bc-container);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 56px;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  width: 178px;
  height: auto;
  text-decoration: none;
}

.site-header__logo-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 122px;
}

.site-header__nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--bc-light);
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color .2s ease;
}

.site-header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--bc-cta-gradient-start) 0%,
    var(--bc-cta-gradient-end) 100%
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.site-header__nav-link:hover {
  color: var(--bc-white);
}

.site-header__nav-link:hover::after {
  transform: scaleX(1);
}

.site-header__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 148px;
  height: 50px;
  padding: 0 28px;
  border-radius: 30px;
  color: var(--bc-light);
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  background:
    linear-gradient(var(--bc-header-bg), var(--bc-header-bg)) padding-box,
    linear-gradient(
      90deg,
      var(--bc-cta-gradient-start) 0%,
      var(--bc-cta-gradient-end) 100%
    ) border-box;
  border: 3px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.site-header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(1, 133, 219, 0.24);
  background:
    linear-gradient(rgba(1, 133, 219, 0.08), rgba(1, 71, 117, 0.08)) padding-box,
    linear-gradient(
      90deg,
      var(--bc-cta-gradient-start) 0%,
      var(--bc-cta-gradient-end) 100%
    ) border-box;
}

/* =========================
   RESPONSIVE HEADER
========================= */

@media (max-width: 1280px) {
  :root {
    --bc-container: calc(100% - 96px);
    --bc-header-height: 94px;
  }

  .site-header__nav {
    gap: 72px;
  }

  .site-header__logo {
    width: 164px;
  }

  .site-header__cta {
    min-width: 140px;
    height: 48px;
    padding: 0 26px;
  }
}

@media (max-width: 900px) {
  :root {
    --bc-container: calc(100% - 40px);
    --bc-header-height: 78px;
  }

  .site-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 16px;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__logo {
    width: 146px;
  }

  .site-header__cta {
    justify-self: end;
    flex: 0 0 auto;
    width: auto;
    min-width: 190px;
    max-width: 220px;
    height: 42px;
    padding: 0 28px;
    font-size: 15px;
    line-height: 1;
    border-radius: 999px;
  }
}

@media (max-width: 520px) {
  :root {
    --bc-container: calc(100% - 28px);
    --bc-header-height: 72px;
  }

  .site-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 10px;
  }

  .site-header__logo {
    width: 124px;
  }

  .site-header__cta {
    justify-self: end;
    flex: 0 0 auto;
    width: auto;
    min-width: 176px;
    max-width: 196px;
    height: 38px;
    padding: 0 24px;
    font-size: 13px;
    line-height: 1;
    border-width: 2px;
    border-radius: 999px;
  }
}

@media (max-width: 390px) {
  :root {
    --bc-container: calc(100% - 24px);
    --bc-header-height: 68px;
  }

  .site-header__logo {
    width: 116px;
  }

  .site-header__cta {
    width: auto;
    min-width: 160px;
    max-width: 178px;
    height: 36px;
    padding: 0 20px;
    font-size: 12px;
  }
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  min-height: calc(100vh - var(--bc-header-height));
  color: var(--bc-light);
  background:
    linear-gradient(
      90deg,
      rgba(7, 8, 13, 0.76) 0%,
      rgba(7, 8, 13, 0.52) 42%,
      rgba(7, 8, 13, 0.16) 100%
    ),
    var(--hero-image) center / cover no-repeat;
  overflow: hidden;
  border-top: 0;
}

.hero__inner {
  width: var(--bc-container);
  min-height: calc(100vh - var(--bc-header-height));
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero__content {
  max-width: 760px;
  padding: 72px 0 94px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--bc-blue-bright);
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}

.hero__eyebrow::before {
  content: "";
  width: 94px;
  height: 2px;
  background: var(--bc-blue-bright);
}

.hero__title {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--bc-light);
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -2.2px;
  font-weight: 700;
}

.hero__title strong {
  color: var(--bc-blue-bright);
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.hero__description {
  max-width: 640px;
  margin: 0 0 38px;
  color: rgba(241, 241, 240, 0.90);
  font-size: 19px;
  line-height: 1.36;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.hero__btn--primary {
  color: var(--bc-light);
  background: linear-gradient(90deg, #004572 0%, #0082D8 100%);
  border: 1px solid rgba(0, 130, 216, 0.86);
  box-shadow: 0 16px 36px rgba(0, 130, 216, 0.20);
}

.hero__btn--secondary {
  color: var(--bc-text);
  background: var(--bc-white);
  border: 1px solid rgba(255, 255, 255, 0.70);
}

/* =========================
   RESPONSIVE HERO
========================= */

@media (max-width: 1280px) {
  .hero__title {
    font-size: 54px;
    letter-spacing: -2px;
  }
}

@media (max-width: 900px) {
  .hero,
  .hero__inner {
    min-height: calc(100vh - var(--bc-header-height));
  }

  .hero__inner {
    align-items: center;
  }

  .hero__content {
    padding: 42px 0 64px;
    transform: translateY(-10px);
  }

  .hero__eyebrow {
    gap: 12px;
    margin-bottom: 20px;
    font-size: 17px;
  }

  .hero__eyebrow::before {
    width: 52px;
  }

  .hero__title {
    font-size: 46px;
    letter-spacing: -1.7px;
  }

  .hero__description {
    margin-bottom: 32px;
    font-size: 18px;
  }

  .hero__actions {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 14px;
    margin-top: 14px;
  }

  .hero__btn {
    width: auto;
    min-width: 240px;
    max-width: 100%;
    margin: 0;
  }
}

@media (max-width: 560px) {
  .hero__inner {
    align-items: center;
  }

  .hero__content {
    padding: 28px 0 58px;
    transform: translateY(-18px);
  }

  .hero__eyebrow {
    gap: 10px;
    margin-bottom: 18px;
    font-size: 16px;
  }

  .hero__eyebrow::before {
    width: 44px;
  }

  .hero__title {
    margin-bottom: 24px;
    font-size: 39px;
    letter-spacing: -1.3px;
  }

  .hero__description {
    margin-bottom: 30px;
    font-size: 17px;
  }

  .hero__actions {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
  }

  .hero__btn {
    width: 210px;
    max-width: 100%;
    min-height: 48px;
    padding: 0 18px;
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  .hero__content {
    padding: 24px 0 52px;
    transform: translateY(-20px);
  }

  .hero__eyebrow {
    gap: 9px;
    margin-bottom: 16px;
    font-size: 15px;
  }

  .hero__eyebrow::before {
    width: 38px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__description {
    font-size: 16px;
  }

  .hero__actions {
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 18px;
  }

  .hero__btn {
    width: 198px;
    max-width: 100%;
    min-height: 46px;
    padding: 0 16px;
    font-size: 15px;
  }
}
/* =========================
   TWO WAYS
========================= */

.two-ways {
  position: relative;
  padding: 64px 0 78px;
  background: #07080D;
  color: var(--bc-light);
  overflow: hidden;
}

.two-ways__inner {
  width: var(--bc-container);
  margin: 0 auto;
}

.two-ways__head {
  text-align: center;
  margin-bottom: 52px;
}

.two-ways__eyebrow {
  margin-bottom: 18px;
  color: var(--bc-blue-bright);
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.two-ways__title {
  margin: 0;
  color: var(--bc-light);
  font-size: 30px;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.9px;
}

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

.two-way-card {
  position: relative;
  min-height: 455px;
  border-radius: 44px;
  overflow: hidden;
  border: 1px solid rgba(1, 134, 220, 0.76);
  background: #05060A;
  isolation: isolate;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}

.two-way-card:hover {
  transform: translateY(-8px);
  border-color: rgba(1, 134, 220, 1);
  box-shadow:
    0 34px 92px rgba(0, 0, 0, 0.44),
    0 0 44px rgba(1, 134, 220, 0.18);
}

.two-way-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--two-way-image) center / cover no-repeat;
  opacity: 0.74;
  transform: scale(1.02);
  transition:
    transform .34s ease,
    opacity .34s ease,
    filter .34s ease;
}

.two-way-card:hover::before {
  transform: scale(1.055);
  opacity: 0.82;
  filter: saturate(1.06);
}

.two-way-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 80% 22%, rgba(1, 134, 220, 0.20), transparent 34%),
    linear-gradient(
      180deg,
      rgba(7, 8, 13, 0.40) 0%,
      rgba(7, 8, 13, 0.62) 42%,
      rgba(7, 8, 13, 0.86) 100%
    );
}

.two-way-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 455px;
  display: flex;
  flex-direction: column;
  padding: 60px 58px 44px;
}

.two-way-card__title {
  margin: 0 0 22px;
  color: var(--bc-light);
  font-size: 24px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.two-way-card__description {
  max-width: 520px;
  margin: 0 0 34px;
  color: rgba(241, 241, 240, 0.88);
  font-size: 16px;
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: -0.15px;
}

.two-way-card__list {
  display: grid;
  gap: 14px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.two-way-card__list li {
  position: relative;
  padding-left: 24px;
  color: rgba(241, 241, 240, 0.94);
  font-size: 16px;
  line-height: 1.16;
  font-weight: 500;
  letter-spacing: -0.15px;
}

.two-way-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: #0186DC;
  font-weight: 800;
}

.two-way-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  min-height: 56px;
  margin-top: auto;
  padding: 0 32px;
  border-radius: 999px;
  color: var(--bc-light);
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  background: linear-gradient(90deg, #014876 0%, #0186DC 100%);
  border: 1px solid rgba(1, 134, 220, 0.72);
  box-shadow: 0 18px 44px rgba(1, 134, 220, 0.22);
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    filter .24s ease;
}

.two-way-card__cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow:
    0 22px 54px rgba(1, 134, 220, 0.34),
    0 0 30px rgba(1, 134, 220, 0.20);
}

.two-way-card__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 0.7;
  font-weight: 400;
  transform: translateY(-1px);
  transition: transform .24s ease;
}

.two-way-card__cta:hover .two-way-card__cta-arrow {
  transform: translate(5px, -1px);
}

@media (max-width: 1280px) {
  .two-ways__grid {
    gap: 48px;
  }

  .two-way-card {
    min-height: 440px;
    border-radius: 40px;
  }

  .two-way-card__content {
    min-height: 440px;
    padding: 54px 46px 40px;
  }
}

@media (max-width: 900px) {
  .two-ways {
    padding: 56px 0 68px;
  }

  .two-ways__head {
    margin-bottom: 38px;
  }

  .two-ways__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .two-way-card {
    min-height: 430px;
  }

  .two-way-card__content {
    min-height: 430px;
  }
}

@media (max-width: 560px) {
  .two-ways__title {
    font-size: 26px;
  }

  .two-way-card {
    min-height: 460px;
    border-radius: 32px;
  }

  .two-way-card__content {
    min-height: 460px;
    padding: 40px 28px 34px;
  }

  .two-way-card__description {
    margin-bottom: 30px;
  }

  .two-way-card__cta {
    width: 100%;
  }
}
/* =========================
   SHOWREEL
========================= */

.showreel {
  position: relative;
  padding: 76px 0 96px;
  background:
    radial-gradient(circle at 86% 18%, rgba(1, 134, 220, 0.10), transparent 34%),
    linear-gradient(180deg, #07080D 0%, #040429 100%);
  color: var(--bc-light);
  overflow: hidden;
}

.showreel__inner {
  width: min(1142px, var(--bc-container));
  margin: 0 auto;
}

.showreel__head {
  margin-bottom: 40px;
}

.showreel__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--bc-blue-bright);
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.showreel__eyebrow::before {
  content: "";
  width: 68px;
  height: 2px;
  background: var(--bc-blue-bright);
}

.showreel__title {
  margin: 0;
  color: var(--bc-light);
  font-size: 30px;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.8px;
}

.showreel__main {
  position: relative;
  width: 100%;
  min-height: 470px;
  display: block;
  padding: 0;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(#07080D, #07080D) padding-box,
    linear-gradient(90deg, #01426B 0%, #0180D1 100%) border-box;
  cursor: pointer;
  text-align: left;
  color: var(--bc-light);
  isolation: isolate;
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.34);
}

.showreel__main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--showreel-image) center / cover no-repeat;
  opacity: 0.92;
  transform: scale(1.02);
  filter: brightness(1.12) saturate(1.12) contrast(1.04);
  transition:
    transform .34s ease,
    opacity .34s ease,
    filter .34s ease;
}

.showreel__main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 70% 34%, rgba(1, 128, 209, 0.10), transparent 30%),
    linear-gradient(
      90deg,
      rgba(7, 8, 13, 0.42) 0%,
      rgba(7, 8, 13, 0.22) 48%,
      rgba(7, 8, 13, 0.46) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 8, 13, 0.18) 0%,
      rgba(7, 8, 13, 0.08) 48%,
      rgba(7, 8, 13, 0.30) 100%
    );
}

.showreel__main:hover::before {
  transform: scale(1.055);
  opacity: 1;
  filter: brightness(1.18) saturate(1.16) contrast(1.05);
}

.showreel__main-content {
  position: relative;
  z-index: 2;
  width: 52%;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 58px 0 78px 82px;
}

.showreel__main-title {
  max-width: 520px;
  margin: 0 0 26px;
  color: var(--bc-light);
  font-size: 24px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.showreel__main-description {
  max-width: 460px;
  margin: 0 0 140px;
  color: rgba(241, 241, 240, 0.74);
  font-size: 16px;
  line-height: 1.24;
  font-weight: 500;
  letter-spacing: -0.15px;
}

.showreel__main-title + .showreel__main-pill {
  margin-top: 36px;
}

.showreel__main-description + .showreel__main-pill {
  margin-top: 36px;
}

.showreel__main-pill {
  width: fit-content;
  max-width: 560px;
  min-height: 52px;
  display: grid;
  grid-template-columns: 190px auto;
  align-items: center;
  gap: 28px;
  padding: 0 30px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(10px);
}

.showreel__main-pill span {
  color: var(--bc-light);
  font-size: 16px;
  line-height: 1.05;
  font-weight: 500;
}

.showreel__main-pill strong {
  color: var(--bc-blue-bright);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.showreel__play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(241, 241, 240, 0.12);
  border: 1px solid rgba(241, 241, 240, 0.44);
  backdrop-filter: blur(12px);
  transition:
    transform .24s ease,
    background .24s ease,
    border-color .24s ease,
    box-shadow .24s ease;
}

.showreel__play-icon {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid var(--bc-light);
}

.showreel__main:hover .showreel__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(1, 134, 220, 0.24);
  border-color: rgba(1, 134, 220, 0.72);
  box-shadow: 0 0 36px rgba(1, 134, 220, 0.22);
}

/* =========================
   VIDEO MODAL
========================= */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.video-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(1, 134, 220, 0.70);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.60),
    0 0 50px rgba(1, 134, 220, 0.20);
}

.video-modal__video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  object-fit: contain;
}

.video-modal__close {
  position: absolute;
  z-index: 3;
  right: 16px;
  top: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.56);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform .2s ease, background .2s ease;
}

.video-modal__close:hover {
  transform: scale(1.05);
  background: rgba(1, 134, 220, 0.40);
}

body.video-modal-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .showreel {
    padding: 64px 0 76px;
  }

  .showreel__inner {
    width: var(--bc-container);
  }

  .showreel__main,
  .showreel__main-content {
    min-height: 430px;
  }

  .showreel__main-content {
    width: 72%;
    padding: 48px 40px 66px;
  }

  .showreel__main-description {
    margin-bottom: 72px;
  }

  .showreel__main-pill {
    width: fit-content;
    max-width: 500px;
    grid-template-columns: 170px auto;
    gap: 20px;
    padding: 0 24px;
  }

  .showreel__play {
    left: auto;
    right: 38px;
  }
}

@media (max-width: 680px) {
  .showreel__title {
    font-size: 26px;
  }

  .showreel__main {
    min-height: 460px;
    border-radius: 34px;
  }

  .showreel__main::before {
    opacity: 0.94;
    filter: brightness(1.14) saturate(1.12) contrast(1.04);
  }

  .showreel__main::after {
    background:
      radial-gradient(circle at 70% 34%, rgba(1, 128, 209, 0.08), transparent 30%),
      linear-gradient(
        90deg,
        rgba(7, 8, 13, 0.34) 0%,
        rgba(7, 8, 13, 0.18) 48%,
        rgba(7, 8, 13, 0.40) 100%
      ),
      linear-gradient(
        180deg,
        rgba(7, 8, 13, 0.16) 0%,
        rgba(7, 8, 13, 0.08) 48%,
        rgba(7, 8, 13, 0.28) 100%
      );
  }

  .showreel__main-content {
    width: 100%;
    min-height: 460px;
    padding: 42px 28px 92px;
  }

  .showreel__main-description {
    margin-bottom: 62px;
  }

  .showreel__main-pill {
    width: fit-content;
    max-width: 100%;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 18px;
  }

  .showreel__main-pill strong {
    white-space: normal;
  }

  .showreel__play {
    top: auto;
    right: 46px;
    bottom: 340px;
    transform: none;
  }

  .showreel__main:hover .showreel__play {
    transform: scale(1.06);
  }

  .video-modal {
    padding: 18px;
  }

  .video-modal__dialog {
    border-radius: 18px;
  }

  .video-modal__close {
    right: 10px;
    top: 10px;
  }
}

/* =========================
   VIDEO MODAL — ROTATION FIX ONLY
========================= */

@media (max-width: 680px) {
  .video-modal {
    padding: 18px;
  }

  .video-modal__dialog {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    aspect-ratio: 16 / 9;
    border-radius: 18px;
  }

  .video-modal__video {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .video-modal__close {
    right: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    font-size: 26px;
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .video-modal {
    padding: 12px;
  }

  .video-modal__dialog {
    width: auto;
    height: calc(100vh - 24px);
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    aspect-ratio: 16 / 9;
    border-radius: 18px;
  }

  .video-modal__video {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .video-modal__close {
    right: 10px;
    top: 10px;
    width: 38px;
    height: 38px;
    font-size: 25px;
  }
}
/* =========================
   SETS
========================= */

.sets {
  position: relative;
  padding: 0 0 104px;
  margin-top: -34px;
  background:
    radial-gradient(circle at 82% 12%, rgba(1, 134, 220, 0.08), transparent 34%),
    linear-gradient(180deg, #040429 0%, #040429 58%, #03031F 100%);
  color: var(--bc-light);
  overflow: hidden;
}

.sets::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 4, 41, 0) 0%, rgba(4, 4, 41, 0.34) 100%);
}

.sets__inner {
  position: relative;
  z-index: 2;
  width: min(1142px, var(--bc-container));
  margin: 0 auto;
}

.sets__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 36px;
}

.sets__eyebrow {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: -42px;
  color: var(--bc-blue-bright);
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.sets__eyebrow::before {
  content: "";
  width: 68px;
  height: 2px;
  background: var(--bc-blue-bright);
}

.sets__title {
  max-width: 560px;
  margin: 0;
  color: var(--bc-light);
  font-size: 30px;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.8px;
}

.sets__description {
  max-width: 520px;
  margin: 0 0 2px auto;
  color: rgba(241, 241, 240, 0.68);
  font-size: 16px;
  line-height: 1.36;
  font-weight: 500;
  text-align: right;
}

.sets__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}

.set-card {
  grid-column: span 2;
  position: relative;
  min-height: 320px;
  display: block;
  padding: 0;
  border-radius: 38px;
  overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(#07080D, #07080D) padding-box,
    linear-gradient(90deg, #01426B 0%, #0180D1 100%) border-box;
  color: var(--bc-light);
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.28);
}

.set-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.set-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.set-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--set-image) center / cover no-repeat;
  opacity: 0.98;
  transform: scale(1.02);
  filter: brightness(1.08) saturate(1.18) contrast(1.06);
  transition:
    transform .34s ease,
    opacity .34s ease,
    filter .34s ease;
}

.set-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 70% 26%, rgba(1, 128, 209, 0.08), transparent 34%),
    linear-gradient(
      180deg,
      rgba(7, 8, 13, 0.05) 0%,
      rgba(7, 8, 13, 0.18) 42%,
      rgba(4, 4, 41, 0.74) 100%
    );
}

.set-card:hover::before {
  transform: scale(1.07);
  opacity: 1;
  filter: brightness(1.16) saturate(1.25) contrast(1.08);
}

.set-card__content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: grid;
}

.set-card__tag {
  width: fit-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--bc-blue-bright);
  background: rgba(0, 0, 0, 0.52);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.set-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--bc-light);
  font-size: 24px;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.44);
}

.set-card__content > span:last-child {
  max-width: 320px;
  color: rgba(241, 241, 240, 0.82);
  font-size: 15px;
  line-height: 1.26;
  font-weight: 500;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.46);
}

.set-card__arrow {
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 3;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--bc-light);
  background: rgba(241, 241, 240, 0.12);
  border: 1px solid rgba(241, 241, 240, 0.30);
  font-size: 36px;
  line-height: 1;
  font-weight: 300;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform .24s ease,
    background .24s ease,
    border-color .24s ease,
    box-shadow .24s ease;
}

.set-card:hover .set-card__arrow {
  transform: translateX(4px) scale(1.04);
  background: rgba(1, 134, 220, 0.26);
  border-color: rgba(1, 134, 220, 0.68);
  box-shadow: 0 0 34px rgba(1, 134, 220, 0.22);
}

/* =========================
   SET MODAL / SINGLE PHOTO GALLERY
========================= */

.set-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 42px;
}

.set-modal.is-open {
  display: flex;
}

.set-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 30% 10%, rgba(1, 134, 220, 0.16), transparent 32%),
    rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}

.set-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(1240px, 100%);
  height: min(760px, calc(100vh - 84px));
  overflow: hidden;
  border-radius: 34px;
  padding: 0;
  background: #040429;
  border: 1px solid rgba(1, 134, 220, 0.62);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.62),
    0 0 50px rgba(1, 134, 220, 0.18);
}

.set-modal__frame {
  width: 100%;
  height: 100%;
  margin: 0;
  background: #040429;
  overflow: hidden;
}

.set-modal__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.08) saturate(1.14) contrast(1.04);
  transform: scale(1);
  will-change: transform, opacity, filter;
  transition:
    opacity .18s ease,
    transform .28s ease,
    filter .28s ease;
}

.set-modal.is-open .set-modal__image {
  animation: setModalImageOpenZoom .72s cubic-bezier(.22, .78, .25, 1) both;
}

@keyframes setModalImageOpenZoom {
  0% {
    opacity: 0;
    transform: scale(1.08);
    filter: brightness(0.96) saturate(1.08) contrast(1.02);
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1.08) saturate(1.14) contrast(1.04);
  }
}

.set-modal__close {
  position: absolute;
  z-index: 8;
  right: 22px;
  top: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.46);
  color: #FFFFFF;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease;
}

.set-modal__close:hover {
  transform: rotate(90deg);
  background: rgba(1, 134, 220, 0.34);
  border-color: rgba(1, 134, 220, 0.58);
}

.set-modal__nav {
  position: absolute;
  top: 50%;
  z-index: 7;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.34);
  font-size: 46px;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform .22s ease,
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.set-modal__nav:hover {
  background: rgba(1, 134, 220, 0.30);
  border-color: rgba(1, 134, 220, 0.68);
  box-shadow: 0 0 34px rgba(1, 134, 220, 0.22);
}

.set-modal__nav--prev {
  left: 26px;
}

.set-modal__nav--next {
  right: 26px;
}

.set-modal__nav--prev:hover {
  transform: translateY(-50%) translateX(-4px);
}

.set-modal__nav--next:hover {
  transform: translateY(-50%) translateX(4px);
}

.set-modal__cta {
  position: absolute;
  left: 50%;
  bottom: 74px;
  z-index: 8;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  transform: translateX(-50%);
  border-radius: 999px;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
  transition:
    transform .22s ease,
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.set-modal__cta strong {
  color: #0098E7;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
}

.set-modal__cta:hover {
  transform: translateX(-50%) translateY(-2px);
  background: rgba(1, 134, 220, 0.30);
  border-color: rgba(1, 134, 220, 0.68);
  box-shadow: 0 24px 60px rgba(1, 134, 220, 0.24);
}

.set-modal__dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.set-modal__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition:
    width .22s ease,
    background .22s ease,
    box-shadow .22s ease;
}

.set-modal__dot.is-active {
  width: 26px;
  border-radius: 999px;
  background: #0098E7;
  box-shadow: 0 0 18px rgba(0, 152, 231, 0.46);
}

body.set-modal-open {
  overflow: hidden;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {
  .sets {
    padding-top: 42px;
    padding-bottom: 86px;
    margin-top: 0;
    background:
      radial-gradient(circle at 82% 10%, rgba(1, 134, 220, 0.08), transparent 34%),
      linear-gradient(180deg, #040429 0%, #040429 100%);
  }

  .sets__head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 38px;
  }

  .sets__eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .sets__description {
    max-width: 560px;
    margin: 0;
    text-align: left;
  }

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

  .set-card,
  .set-card:nth-child(4),
  .set-card:nth-child(5) {
    grid-column: auto;
    min-height: 300px;
  }

  .set-modal {
    padding: 26px;
  }

  .set-modal__dialog {
    width: min(100%, calc(100vw - 52px));
    height: min(760px, calc(100vh - 52px));
  }

  .set-modal__nav {
    width: 54px;
    height: 54px;
    font-size: 40px;
  }

  .set-modal__nav--prev {
    left: 18px;
  }

  .set-modal__nav--next {
    right: 18px;
  }
}

@media (max-width: 680px) {
  .sets {
    margin-top: 0;
    padding-top: 58px;
    padding-bottom: 76px;
    background:
      radial-gradient(circle at 88% 6%, rgba(1, 134, 220, 0.08), transparent 32%),
      linear-gradient(180deg, #040429 0%, #040429 100%);
  }

  .sets__head {
    gap: 22px;
    margin-bottom: 44px;
  }

  .sets__eyebrow {
    gap: 12px;
    font-size: 16px;
  }

  .sets__eyebrow::before {
    width: 52px;
  }

  .sets__title {
    font-size: 26px;
  }

  .sets__description {
    font-size: 17px;
    line-height: 1.36;
  }

  .sets__grid {
    gap: 24px;
  }

  .set-card {
    min-height: 280px;
    border-radius: 32px;
  }

  .set-card__content {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .set-card strong {
    font-size: 22px;
  }

  .set-card__arrow {
    width: 48px;
    height: 48px;
    right: 22px;
    top: 22px;
    font-size: 32px;
  }

  .set-modal {
    padding: 16px;
  }

  .set-modal__dialog {
    width: calc(100vw - 32px);
    height: auto;
    max-height: calc(100vh - 32px);
    aspect-ratio: 16 / 9;
    border-radius: 26px;
  }

  .set-modal__frame {
    width: 100%;
    height: 100%;
  }

  .set-modal__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .set-modal__close {
    right: 12px;
    top: 12px;
    width: 42px;
    height: 42px;
    font-size: 26px;
  }

  .set-modal__nav {
    width: 46px;
    height: 46px;
    font-size: 34px;
  }

  .set-modal__nav--prev {
    left: 14px;
  }

  .set-modal__nav--next {
    right: 14px;
  }

  .set-modal__cta {
    bottom: 58px;
    min-height: 44px;
    padding: 0 22px;
    font-size: 13px;
  }

  .set-modal__dots {
    bottom: 14px;
  }
}

/* Mobile landscape / rotated phone for set photo modal */
@media (max-width: 900px) and (orientation: landscape) {
  .set-modal {
    padding: 12px;
  }

  .set-modal__dialog {
    width: auto;
    height: calc(100vh - 24px);
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    aspect-ratio: 16 / 9;
    border-radius: 18px;
  }

  .set-modal__frame,
  .set-modal__image {
    width: 100%;
    height: 100%;
  }

  .set-modal__image {
    object-fit: cover;
  }

  .set-modal__close {
    right: 10px;
    top: 10px;
    width: 38px;
    height: 38px;
    font-size: 25px;
  }

  .set-modal__nav {
    width: 44px;
    height: 44px;
    font-size: 32px;
  }

  .set-modal__nav--prev {
    left: 12px;
  }

  .set-modal__nav--next {
    right: 12px;
  }

  .set-modal__cta {
    bottom: 50px;
    min-height: 40px;
    padding: 0 20px;
    font-size: 12px;
  }

  .set-modal__dots {
    bottom: 10px;
  }
}
/* =========================
   SERVICES
========================= */

.services {
  position: relative;
  padding: 92px 0 104px;
  background: #F1F1F0;
  color: var(--bc-text);
  overflow: hidden;
}

.services__inner {
  width: var(--bc-container);
  margin: 0 auto;
}

.services__head {
  max-width: 720px;
  margin-bottom: 58px;
}

.services__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: #0078D7;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.services__eyebrow::before {
  content: "";
  width: 68px;
  height: 2px;
  border-radius: 999px;
  background: #0078D7;
}

.services__title {
  max-width: 760px;
  margin: 0 0 24px;
  color: #040429;
  font-size: 30px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.9px;
}

.services__description {
  max-width: 650px;
  margin: 0;
  color: rgba(4, 4, 41, 0.86);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.15px;
}

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

.service-card {
  position: relative;
  min-height: 186px;
  display: flex;
  flex-direction: column;
  padding: 30px 34px 28px;
  border-radius: 30px;
  background: transparent;
  border: 1px solid #0186DC;
  color: #040429;
  overflow: hidden;
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease,
    background .24s ease;
}

.service-card:hover,
.service-card--active {
  transform: translateY(-4px);
  border-width: 2px;
  border-color: #0186DC;
  background: rgba(255, 255, 255, 0.36);
  box-shadow:
    0 24px 58px rgba(4, 4, 41, 0.08),
    0 0 0 1px rgba(1, 134, 220, 0.12);
}

.service-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.service-card__icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: #B9E8FF;
  opacity: 1;
  transition: background .24s ease, transform .24s ease, opacity .24s ease, box-shadow .24s ease;
}

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, #014876 0%, #0186DC 100%);
  opacity: 1;
  transform: rotate(-4deg) scale(1.04);
  box-shadow: 0 10px 24px rgba(1, 134, 220, 0.28);
}

.service-card h3 {
  margin: 0;
  color: #040429;
  font-size: 16px;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.service-card p {
  max-width: 300px;
  margin: 0 0 22px;
  color: rgba(4, 4, 41, 0.76);
  font-size: 13px;
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: -0.1px;
}

.service-card a {
  margin-top: auto;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0186DC;
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  transition: gap .2s ease, color .2s ease;
}

.service-card a span {
  font-size: 28px;
  line-height: 0.7;
  font-weight: 400;
  transform: translateY(-1px);
}

.service-card a:hover {
  gap: 12px;
  color: #014876;
}

@media (max-width: 1280px) {
  .services__grid {
    gap: 18px;
  }

  .service-card {
    padding: 28px 28px 26px;
  }
}

@media (max-width: 900px) {
  .services {
    padding: 72px 0 82px;
  }

  .services__head {
    margin-bottom: 42px;
  }

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

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

@media (max-width: 560px) {
  .services__title {
    font-size: 26px;
  }

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

  .service-card {
    min-height: 168px;
    border-radius: 24px;
    padding: 26px 24px;
  }
}
/* =========================
   FOUNDER
========================= */

.founder {
  position: relative;
  padding: 76px 0 84px;
  background: #F7F7F6;
  color: #040429;
  overflow: hidden;
}

.founder__inner {
  width: var(--bc-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 86px;
  align-items: center;
}

.founder__media {
  position: relative;
  min-height: 500px;
  border-radius: 28px;
  overflow: hidden;
  background: #EDE9E4;
  box-shadow: 0 28px 74px rgba(4, 4, 41, 0.07);
}

.founder__image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
}

.founder__badge {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 36px;
  min-height: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 18px;
  background: rgba(7, 8, 13, 0.70);
  color: var(--bc-light);
  backdrop-filter: blur(12px);
}

.founder__badge strong {
  display: block;
  margin: 0 0 4px;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.22px;
}

.founder__badge span {
  display: block;
  color: rgba(241, 241, 240, 0.78);
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
}

.founder__content {
  max-width: 720px;
}

.founder__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #0078D7;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.founder__eyebrow::before {
  content: "";
  width: 68px;
  height: 2px;
  border-radius: 999px;
  background: #0078D7;
}

.founder__title {
  max-width: 550px;
  margin: 0 0 26px;
  color: #040429;
  font-size: 30px;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -1px;
}

.founder__text {
  max-width: 700px;
  margin-bottom: 26px;
}

.founder__text p {
  margin: 0;
  color: rgba(4, 4, 41, 0.86);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.14px;
}

.founder__text p + p {
  margin-top: 18px;
}

.founder__quote {
  position: relative;
  max-width: 700px;
  margin: 0 0 28px;
  padding: 24px 32px 24px 36px;
  border-radius: 22px;
  background: #FFFFFF;
  color: #040429;
  font-size: 18px;
  line-height: 1.24;
  font-weight: 700;
  letter-spacing: -0.3px;
  box-shadow: 0 18px 48px rgba(4, 4, 41, 0.045);
}

.founder__quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 4px;
  border-radius: 999px;
  background: #0186DC;
}

.founder__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 700px;
  margin-bottom: 34px;
}

.founder-stat {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 22px 22px 18px;
  border-radius: 18px;
  background: #FFFFFF;
  box-shadow: 0 16px 40px rgba(4, 4, 41, 0.035);
}

.founder-stat strong {
  display: block;
  margin-bottom: 8px;
  color: #0186DC;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.7px;
}

.founder-stat span {
  display: block;
  color: rgba(4, 4, 41, 0.78);
  font-size: 11px;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.08px;
}

.founder__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  color: var(--bc-light);
  text-decoration: none;
  font-size: 17px;
  line-height: 1;
  font-weight: 600;
  background: linear-gradient(90deg, #014876 0%, #0186DC 100%);
  border: 1px solid rgba(1, 134, 220, 0.72);
  box-shadow: 0 16px 38px rgba(1, 134, 220, 0.20);
  cursor: pointer;
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    filter .24s ease;
}

.founder__cta.is-hidden {
  display: none !important;
}

.founder__cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow:
    0 20px 48px rgba(1, 134, 220, 0.30),
    0 0 26px rgba(1, 134, 220, 0.18);
}

.founder__cta-arrow {
  font-size: 28px;
  line-height: 0.7;
  font-weight: 400;
  transform: translateY(-1px);
  transition: transform .24s ease;
}

.founder__cta:hover .founder__cta-arrow {
  transform: translate(5px, -1px);
}

/* Founder consultation form */

.founder-form {
  margin-top: 28px;
  padding: 28px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 12%, rgba(1, 134, 220, 0.12), transparent 30%),
    #FFFFFF;
  box-shadow: 0 22px 58px rgba(4, 4, 41, 0.07);
  border: 1px solid rgba(1, 134, 220, 0.16);
}

.founder-form[hidden] {
  display: none;
}

.founder-form__top {
  margin-bottom: 22px;
}

.founder-form__top > div {
  max-width: 540px;
}

.founder-form__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.founder-form__top h3 {
  margin: 0 0 8px;
  color: #040429;
  font-size: 22px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.founder-form__top p {
  margin: 0;
  color: rgba(4, 4, 41, 0.70);
  font-size: 14px;
  line-height: 1.42;
  font-weight: 500;
}

.founder-form__close {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(4, 4, 41, 0.12);
  border-radius: 50%;
  background: #F7F7F6;
  color: #040429;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease;
}

.founder-form__close:hover {
  transform: scale(1.04);
  background: rgba(1, 134, 220, 0.10);
  border-color: rgba(1, 134, 220, 0.32);
}

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

.founder-form__field {
  display: grid;
  gap: 8px;
}

.founder-form__field span {
  color: rgba(4, 4, 41, 0.72);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-form__field input,
.founder-form__field textarea {
  width: 100%;
  border: 1px solid rgba(4, 4, 41, 0.10);
  border-radius: 18px;
  background: #F1F1F0;
  color: #040429;
  font: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
  outline: none;
  transition:
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.founder-form__field input {
  height: 54px;
  padding: 0 18px;
}

.founder-form__field textarea {
  min-height: 116px;
  resize: vertical;
  padding: 18px;
}

.founder-form__field input::placeholder,
.founder-form__field textarea::placeholder {
  color: rgba(4, 4, 41, 0.42);
}

.founder-form__field input:focus,
.founder-form__field textarea:focus {
  border-color: rgba(1, 134, 220, 0.72);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(1, 134, 220, 0.10);
}

.founder-form__field--message {
  grid-column: 1 / -1;
}

.founder-form__submit {
  margin-top: 18px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(1, 134, 220, 0.72);
  background: linear-gradient(90deg, #014876 0%, #0186DC 100%);
  color: var(--bc-light);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(1, 134, 220, 0.18);
  transition:
    transform .22s ease,
    filter .22s ease,
    box-shadow .22s ease;
}

.founder-form__submit span {
  font-size: 26px;
  line-height: 0.7;
  font-weight: 400;
  transform: translateY(-1px);
}

.founder-form__submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 20px 48px rgba(1, 134, 220, 0.26);
}

@media (max-width: 1280px) {
  .founder__inner {
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 64px;
  }

  .founder__media {
    min-height: 460px;
  }

  .founder__image {
    height: 460px;
  }

  .founder__title {
    font-size: 29px;
  }

  .founder__quote {
    font-size: 17px;
  }

  .founder__stats {
    gap: 16px;
  }

  .founder-stat {
    padding: 16px 18px;
  }
}

@media (max-width: 980px) {
  .founder {
    padding: 68px 0 76px;
  }

  .founder__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .founder__media {
    max-width: 440px;
    min-height: auto;
  }

  .founder__image {
    height: auto;
    max-height: 520px;
  }

  .founder__content {
    max-width: 100%;
  }

  .founder__stats {
    max-width: 100%;
  }

  .founder-form__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .founder__title {
    font-size: 26px;
  }

  .founder__text p {
    font-size: 14px;
  }

  .founder__quote {
    padding: 22px 24px 22px 28px;
    font-size: 16px;
  }

  .founder__stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .founder-stat {
    min-height: 76px;
  }

  .founder__badge {
    left: 22px;
    right: 22px;
    bottom: 26px;
  }

  .founder__cta {
    width: 100%;
  }

  .founder-form {
    padding: 22px;
    border-radius: 24px;
  }

  .founder-form__top {
    gap: 14px;
  }

  .founder-form__top h3 {
    font-size: 20px;
  }

  .founder-form__submit {
    width: 100%;
  }
}
/* =========================
   STUDIOS
========================= */

.studios {
  position: relative;
  padding: 78px 0 90px;
  background:
    radial-gradient(circle at 86% 16%, rgba(1, 134, 220, 0.12), transparent 34%),
    linear-gradient(180deg, #07080D 0%, #040429 100%);
  color: var(--bc-light);
  overflow: hidden;
}

.studios__inner {
  width: min(1280px, var(--bc-container));
  margin: 0 auto;
}

.studios__head {
  max-width: 760px;
  margin-bottom: 52px;
}

.studios__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--bc-blue-bright);
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.studios__eyebrow::before {
  content: "";
  width: 68px;
  height: 2px;
  background: var(--bc-blue-bright);
}

.studios__title {
  max-width: 660px;
  margin: 0 0 24px;
  color: var(--bc-light);
  font-size: 30px;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.8px;
}

.studios__description {
  max-width: 620px;
  margin: 0;
  color: rgba(241, 241, 240, 0.76);
  font-size: 16px;
  line-height: 1.48;
  font-weight: 500;
  letter-spacing: -0.12px;
}

.studios__list {
  display: grid;
  gap: 44px;
}

.studio-card {
  position: relative;
  min-height: 420px;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(#07080D, #07080D) padding-box,
    linear-gradient(90deg, #01426B 0%, #0180D1 100%) border-box;
  color: var(--bc-light);
  isolation: isolate;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.studio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--studio-image) center / cover no-repeat;
  opacity: 0.98;
  transform: scale(1.02);
  filter: brightness(1.12) saturate(1.14) contrast(1.04);
  transition:
    transform .34s ease,
    opacity .34s ease,
    filter .34s ease;
}

.studio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 32%, rgba(1, 128, 209, 0.08), transparent 30%),
    linear-gradient(
      90deg,
      rgba(7, 8, 13, 0.48) 0%,
      rgba(7, 8, 13, 0.20) 46%,
      rgba(7, 8, 13, 0.36) 100%
    );
}

.studio-card:hover::before {
  transform: scale(1.045);
  opacity: 1;
  filter: brightness(1.18) saturate(1.18) contrast(1.06);
}

.studio-card__content {
  position: relative;
  z-index: 2;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 62px 74px;
}

.studio-card__tag {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--bc-blue-bright);
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}

.studio-card__title {
  max-width: 760px;
  margin: 0 0 12px;
  color: var(--bc-light);
  font-size: 25px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.studio-card__address {
  max-width: 780px;
  margin: 0 0 30px;
  color: rgba(241, 241, 240, 0.84);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
}

/* one compact facts pill */
.studio-card__facts {
  margin-bottom: 34px;
}

.studio-card__fact-group {
  width: fit-content;
  max-width: 520px;
  min-height: 54px;
  display: grid;
  grid-template-columns: repeat(2, minmax(145px, 1fr));
  gap: 14px;
  align-items: center;
  padding: 10px 18px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 12px 28px rgba(0, 0, 0, 0.14);
}

.studio-card__fact-item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.studio-card__fact-item + .studio-card__fact-item {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.studio-card__fact-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--bc-blue-bright);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.1px;
}

.studio-card__fact-item span {
  display: block;
  color: rgba(241, 241, 240, 0.78);
  font-size: 10px;
  line-height: 1.12;
  font-weight: 500;
}

.studio-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.studio-card__cta,
.studio-card__details summary {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    filter .24s ease,
    background .24s ease;
}

.studio-card__cta {
  gap: 10px;
  padding: 0 28px;
  color: var(--bc-light);
  background: linear-gradient(90deg, #014876 0%, #0186DC 100%);
  border: 1px solid rgba(1, 134, 220, 0.72);
  box-shadow: 0 18px 44px rgba(1, 134, 220, 0.20);
}

.studio-card__details {
  position: static;
}

.studio-card__details summary {
  list-style: none;
  padding: 0 26px;
  color: var(--bc-light);
  background: rgba(7, 8, 13, 0.62);
  border: 1px solid rgba(1, 134, 220, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.studio-card__details summary::-webkit-details-marker {
  display: none;
}

.studio-card__cta:hover,
.studio-card__details summary:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.studio-card__arrow {
  font-size: 28px;
  line-height: 0.7;
  font-weight: 400;
  transform: translateY(-1px);
}

/* glass details panel */
.studio-card__panel {
  position: absolute;
  inset: 30px;
  z-index: 8;
  border-radius: 38px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.54) 0%,
      rgba(226, 241, 255, 0.34) 48%,
      rgba(167, 214, 255, 0.24) 100%
    );
  color: #040429;
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow:
    0 30px 96px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 0 0 1px rgba(1, 134, 220, 0.12);
  backdrop-filter: blur(26px) saturate(1.35);
  -webkit-backdrop-filter: blur(26px) saturate(1.35);
  overflow: hidden;
}

.studio-card__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(1, 134, 220, 0.16), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(1, 71, 117, 0.10), transparent 34%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.04)
    );
  pointer-events: none;
}

.studio-card__panel-close {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.40);
  color: #040429;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    0 12px 28px rgba(0, 0, 0, 0.12);
  transition: transform .22s ease, background .22s ease, color .22s ease;
}

.studio-card__panel-close:hover {
  transform: scale(1.06);
  background: rgba(1, 134, 220, 0.86);
  color: #fff;
}

.studio-card__panel-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  align-content: center;
  padding: 42px 56px;
}

.studio-card__panel-kicker {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 14px;
  border-radius: 999px;
  color: #0186DC;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(1, 134, 220, 0.10);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.studio-card__panel h4 {
  max-width: 620px;
  margin: 0 0 12px;
  color: #040429;
  font-size: 28px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.studio-card__panel p {
  max-width: 660px;
  margin: 0 0 24px;
  color: rgba(4, 4, 41, 0.72);
  font-size: 15px;
  line-height: 1.42;
  font-weight: 500;
}

.studio-card__panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 34px;
  max-width: 820px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.studio-card__panel li {
  position: relative;
  padding-left: 24px;
  color: rgba(4, 4, 41, 0.84);
  font-size: 13px;
  line-height: 1.24;
  font-weight: 650;
}

.studio-card__panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: #0186DC;
  font-weight: 900;
}

.studio-card__panel-cta {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  border-radius: 999px;
  color: var(--bc-light);
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  background: linear-gradient(90deg, #014876 0%, #0186DC 100%);
  box-shadow: 0 16px 38px rgba(1, 134, 220, 0.22);
}

.studio-card__panel-cta span {
  font-size: 26px;
  line-height: 0.7;
  font-weight: 400;
}

@media (max-width: 900px) {
  .studios {
    padding: 64px 0 74px;
  }

  .studios__inner {
    width: var(--bc-container);
  }

  .studio-card,
  .studio-card__content {
    min-height: 460px;
  }

  .studio-card__content {
    padding: 42px 34px;
  }

  .studio-card__fact-group {
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }

  .studio-card__panel {
    inset: 18px;
    border-radius: 28px;
  }

  .studio-card__panel-inner {
    padding: 34px 30px;
  }

  .studio-card__panel ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .studios__title {
    font-size: 26px;
  }

  .studio-card {
    border-radius: 34px;
  }

  .studio-card__title {
    font-size: 21px;
  }

  .studio-card__fact-group {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 18px;
  }

  .studio-card__fact-item + .studio-card__fact-item {
    padding-left: 0;
    padding-top: 10px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .studio-card__actions {
    gap: 14px;
  }

  .studio-card__cta,
  .studio-card__details,
  .studio-card__details summary {
    width: 100%;
  }

  .studio-card__panel {
    inset: 12px;
  }

  .studio-card__panel h4 {
    font-size: 22px;
  }

  .studio-card__panel-close {
    right: 14px;
    top: 14px;
    width: 38px;
    height: 38px;
  }
}

/* =========================
   BIRDCASTERS / VIDEO PRODUCTION WORK
========================= */

.birdcasters {
  position: relative;
  padding: 92px 0 104px;
  background:
    radial-gradient(circle at 82% 18%, rgba(1, 134, 220, 0.10), transparent 32%),
    radial-gradient(circle at 16% 84%, rgba(1, 134, 220, 0.08), transparent 34%),
    linear-gradient(180deg, #07080D 0%, #040429 100%);
  color: var(--bc-light);
  overflow: hidden;
}

.birdcasters__inner {
  width: min(1280px, var(--bc-container));
  margin: 0 auto;
}

.birdcasters__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.birdcasters__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--bc-blue-bright);
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.birdcasters__eyebrow::before {
  content: "";
  width: 68px;
  height: 2px;
  background: var(--bc-blue-bright);
}

.birdcasters__title {
  max-width: 560px;
  margin: 0;
  color: var(--bc-light);
  font-size: 30px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.8px;
}

.birdcasters__description {
  max-width: 430px;
  margin: 0 0 8px auto;
  color: rgba(241, 241, 240, 0.78);
  font-size: 16px;
  line-height: 1.42;
  font-weight: 500;
  letter-spacing: -0.12px;
  text-align: right;
  justify-self: end;
}

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

.birdcasters-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 42px;
  padding: 0;
  background:
    linear-gradient(#07080D, #07080D) padding-box,
    linear-gradient(90deg, #01426B 0%, #0180D1 100%) border-box;
  color: var(--bc-light);
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  isolation: isolate;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
}

.birdcasters-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--birdcasters-image) center / cover no-repeat;
  opacity: 1;
  transform: scale(1.015);
  filter: brightness(1.08) saturate(1.12) contrast(1.03);
  transition:
    transform .34s ease,
    opacity .34s ease,
    filter .34s ease;
}

/* аккуратное затемнение только для читаемости текста */
.birdcasters-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(0, 0, 0, 0.34) 0%,
      rgba(0, 0, 0, 0.18) 18%,
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(2, 4, 14, 0.04) 0%,
      rgba(2, 4, 14, 0.08) 38%,
      rgba(2, 4, 14, 0.48) 74%,
      rgba(2, 4, 14, 0.76) 100%
    ),
    linear-gradient(
      90deg,
      rgba(2, 4, 14, 0.26) 0%,
      rgba(2, 4, 14, 0.08) 45%,
      rgba(2, 4, 14, 0.10) 100%
    );
}

.birdcasters-card:hover::before {
  transform: scale(1.055);
  opacity: 1;
  filter: brightness(1.16) saturate(1.18) contrast(1.05);
}

.birdcasters-card__content {
  position: relative;
  z-index: 3;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px 40px 36px;
  pointer-events: none;
}

.birdcasters-card__title {
  display: block;
  max-width: 360px;
  margin: 0 0 10px;
  color: var(--bc-light);
  font-size: 26px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.35px;
  text-shadow:
    0 4px 16px rgba(0, 0, 0, 0.46),
    0 14px 34px rgba(0, 0, 0, 0.34);
}

.birdcasters-card__text {
  display: block;
  max-width: 360px;
  margin: 0;
  color: rgba(241, 241, 240, 0.84);
  font-size: 17px;
  line-height: 1.28;
  font-weight: 500;
  text-shadow:
    0 4px 14px rgba(0, 0, 0, 0.42),
    0 12px 28px rgba(0, 0, 0, 0.30);
}

.birdcasters-card__play {
  position: absolute;
  right: 28px;
  top: 28px;
  z-index: 4;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(241, 241, 240, 0.24);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.30);
  color: #FFFFFF;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition:
    transform .24s ease,
    background .24s ease,
    border-color .24s ease;
}

.birdcasters-card__play span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #FFFFFF;
}

.birdcasters-card:hover .birdcasters-card__play {
  transform: scale(1.06);
  background: rgba(1, 134, 220, 0.78);
  border-color: rgba(1, 134, 220, 0.94);
}

/* CTA */

.birdcasters__cta {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.birdcasters__cta-btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 42px;
  border: 1px solid rgba(1, 134, 220, 0.72);
  border-radius: 999px;
  color: var(--bc-light);
  background: linear-gradient(90deg, #014876 0%, #0186DC 100%);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(1, 134, 220, 0.22);
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    filter .24s ease;
}

.birdcasters__cta-btn span {
  font-size: 30px;
  line-height: 0.7;
  font-weight: 400;
  transform: translateY(-1px);
}

.birdcasters__cta-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow:
    0 22px 54px rgba(1, 134, 220, 0.34),
    0 0 30px rgba(1, 134, 220, 0.20);
}

/* enquiry form */

.birdcasters-form {
  position: relative;
  margin-top: 34px;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(rgba(241, 241, 240, 0.055), rgba(241, 241, 240, 0.035)) padding-box,
    linear-gradient(90deg, rgba(1, 66, 107, 0.76) 0%, rgba(1, 128, 209, 0.76) 100%) border-box;
  border: 1px solid transparent;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.22);
}

.birdcasters-form[hidden] {
  display: none;
}

.birdcasters-form__top {
  max-width: 100%;
  margin-bottom: 26px;
}

.birdcasters-form__top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.birdcasters-form__top-copy {
  max-width: 720px;
}

.birdcasters-form__top h3 {
  margin: 0 0 10px;
  color: var(--bc-light);
  font-size: 28px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.birdcasters-form__top p {
  margin: 0;
  color: rgba(241, 241, 240, 0.72);
  font-size: 16px;
  line-height: 1.42;
  font-weight: 500;
}

.birdcasters-form__close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(241, 241, 240, 0.20);
  border-radius: 50%;
  background: rgba(2, 4, 14, 0.24);
  color: #FFFFFF;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform .22s ease,
    background .22s ease,
    border-color .22s ease;
}

.birdcasters-form__close:hover {
  transform: scale(1.06);
  background: rgba(1, 134, 220, 0.62);
  border-color: rgba(1, 134, 220, 0.90);
}

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

.birdcasters-form__field {
  display: grid;
  gap: 9px;
}

.birdcasters-form__field span {
  color: rgba(241, 241, 240, 0.72);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.birdcasters-form__field input,
.birdcasters-form__field textarea {
  width: 100%;
  border: 1px solid rgba(241, 241, 240, 0.16);
  border-radius: 20px;
  background: rgba(241, 241, 240, 0.95);
  color: var(--bc-text);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
  outline: none;
  box-shadow: none;
}

.birdcasters-form__field input {
  height: 56px;
  padding: 0 20px;
}

.birdcasters-form__field textarea {
  min-height: 126px;
  padding: 18px 20px;
  resize: vertical;
}

.birdcasters-form__field input::placeholder,
.birdcasters-form__field textarea::placeholder {
  color: rgba(4, 4, 41, 0.42);
}

.birdcasters-form__field--message {
  grid-column: 1 / -1;
}

.birdcasters-form__submit {
  width: fit-content;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  padding: 0 32px;
  border: 1px solid rgba(1, 134, 220, 0.72);
  border-radius: 999px;
  color: var(--bc-light);
  background: linear-gradient(90deg, #014876 0%, #0186DC 100%);
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
}

/* modal video */

.birdcasters-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 42px;
}

.birdcasters-modal.is-open {
  display: flex;
}

.birdcasters-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(1, 134, 220, 0.16), transparent 34%),
    rgba(2, 4, 14, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.birdcasters-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(1180px, 92vw);
  aspect-ratio: 16 / 9;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(1, 134, 220, 0.78);
  background: #02040E;
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.birdcasters-modal__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #02040E;
}

.birdcasters-modal__close {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(241, 241, 240, 0.22);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.52);
  color: #FFFFFF;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

html.birdcasters-modal-open,
html.birdcasters-modal-open body {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .birdcasters__head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

  .birdcasters__description {
    margin: 0;
    text-align: left;
    justify-self: start;
  }

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

  .birdcasters-card,
  .birdcasters-card__content {
    min-height: 280px;
  }

  .birdcasters-form__grid {
    grid-template-columns: 1fr;
  }

  .birdcasters-form__field--message {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .birdcasters {
    padding: 72px 0 84px;
  }

  .birdcasters-card {
    min-height: 230px;
    border-radius: 34px;
  }

  .birdcasters-card__content {
    min-height: 230px;
    padding: 32px 28px 28px;
  }

  .birdcasters-card__title {
    font-size: 22px;
  }

  .birdcasters-card__text {
    font-size: 15px;
  }

  .birdcasters-form {
    margin-top: 28px;
    padding: 24px;
    border-radius: 28px;
  }

  .birdcasters-form__top-row {
    gap: 16px;
  }

  .birdcasters-form__close {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .birdcasters-form__submit,
  .birdcasters__cta-btn {
    width: 100%;
  }

  .birdcasters-modal {
    padding: 18px;
  }

  .birdcasters-modal__dialog {
    width: 100%;
    border-radius: 24px;
  }
}

/* =========================
   GOOGLE REVIEWS
========================= */

.google-reviews {
  margin-top: 44px;
}

.google-reviews__panel {
  display: grid;
  grid-template-columns: minmax(280px, 370px) minmax(0, 1fr);
  gap: 32px;
  padding: 34px;
  border: 1px solid rgba(1, 134, 220, 0.42);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 18%, rgba(1, 134, 220, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(241, 241, 240, 0.07), rgba(241, 241, 240, 0.035));
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.20);
}

.google-reviews__summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6px 4px;
}

.google-reviews__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--bc-blue-bright);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.google-reviews__eyebrow::before {
  content: "";
  width: 44px;
  height: 2px;
  border-radius: 999px;
  background: var(--bc-blue-bright);
}

.google-reviews__title {
  max-width: 340px;
  margin: 0 0 22px;
  color: var(--bc-light);
  font-size: 24px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.google-reviews__rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 16px;
}

.google-reviews__score {
  color: var(--bc-light);
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
}

.google-reviews__stars {
  color: #FFD66B;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 1px;
  text-shadow: 0 8px 22px rgba(255, 214, 107, 0.22);
}

.google-reviews__label {
  width: 100%;
  color: rgba(241, 241, 240, 0.72);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.google-reviews__note {
  max-width: 330px;
  margin: 0 0 22px;
  color: rgba(241, 241, 240, 0.68);
  font-size: 15px;
  line-height: 1.42;
  font-weight: 500;
}

.google-reviews__link {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(1, 134, 220, 0.76);
  background: rgba(1, 134, 220, 0.12);
  color: var(--bc-light);
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  transition:
    transform .22s ease,
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.google-reviews__link span {
  color: var(--bc-blue-bright);
  font-size: 24px;
  line-height: 0.7;
  font-weight: 400;
  transform: translateY(-1px);
}

.google-reviews__link:hover {
  transform: translateY(-2px);
  background: rgba(1, 134, 220, 0.24);
  border-color: rgba(1, 134, 220, 0.98);
  box-shadow: 0 14px 34px rgba(1, 134, 220, 0.16);
}

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

.google-review-card {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(241, 241, 240, 0.11);
  border-radius: 24px;
  background: rgba(2, 4, 14, 0.34);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform .22s ease,
    border-color .22s ease,
    background .22s ease,
    box-shadow .22s ease;
}

.google-review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(1, 134, 220, 0.58);
  background: rgba(2, 4, 14, 0.48);
  box-shadow: 0 18px 44px rgba(1, 134, 220, 0.12);
}

.google-review-card__stars {
  margin-bottom: 14px;
  color: #FFD66B;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1px;
}

.google-review-card p {
  margin: 0 0 18px;
  color: rgba(241, 241, 240, 0.84);
  font-size: 15px;
  line-height: 1.42;
  font-weight: 500;
}

.google-review-card__author {
  margin-top: auto;
  display: grid;
  gap: 4px;
}

.google-review-card__author strong {
  color: var(--bc-light);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 800;
}

.google-review-card__author span {
  color: rgba(241, 241, 240, 0.58);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
}

@media (max-width: 980px) {
  .google-reviews__panel {
    grid-template-columns: 1fr;
  }

  .google-reviews__title,
  .google-reviews__note {
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  .google-reviews {
    margin-top: 34px;
  }

  .google-reviews__panel {
    padding: 22px;
    border-radius: 28px;
  }

  .google-reviews__grid {
    grid-template-columns: 1fr;
  }

  .google-reviews__score {
    font-size: 36px;
  }

  .google-reviews__stars {
    font-size: 19px;
  }

  .google-reviews__link {
    width: 100%;
  }

  .google-review-card {
    min-height: auto;
    border-radius: 22px;
  }
}
/* =========================
   TRUSTED
========================= */

.trusted {
  position: relative;
  padding: 58px 0 64px;
  color: var(--bc-light);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 30%, rgba(255, 255, 255, 0.14), transparent 26%),
    radial-gradient(circle at 32% 72%, rgba(255, 255, 255, 0.10), transparent 28%),
    radial-gradient(circle at 64% 34%, rgba(255, 255, 255, 0.12), transparent 30%),
    radial-gradient(circle at 92% 72%, rgba(255, 255, 255, 0.10), transparent 26%),
    linear-gradient(
      100deg,
      #0098E7 0%,
      #018EE3 22%,
      #0099E7 47%,
      #0092E9 73%,
      #0098E7 100%
    );
}

.trusted::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      rgba(255, 255, 255, 0.10) 18%,
      transparent 36%,
      rgba(255, 255, 255, 0.08) 58%,
      transparent 78%
    );
  opacity: 0.72;
  pointer-events: none;
}

.trusted::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  top: 0;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, 0.18), transparent 34%),
    radial-gradient(ellipse at 70% 100%, rgba(255, 255, 255, 0.14), transparent 36%);
  opacity: 0.55;
  pointer-events: none;
}

.trusted__inner {
  position: relative;
  z-index: 2;
  width: var(--bc-container);
  margin: 0 auto;
  text-align: center;
}

.trusted__title {
  width: fit-content;
  margin: 0 auto 38px;
  font-size: 24px;
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    #BFDBEF 0%,
    #FFFFFF 52%,
    #BFDBEF 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trusted__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 4.4vw, 78px);
  flex-wrap: nowrap;
}

.trusted__logo {
  color: #FFFFFF;
  opacity: 0.94;
  white-space: nowrap;
  line-height: 1;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.12);
  transition:
    transform .24s ease,
    opacity .24s ease,
    filter .24s ease;
}

.trusted__logo:hover {
  transform: translateY(-3px);
  opacity: 1;
  filter: drop-shadow(0 10px 18px rgba(255, 255, 255, 0.16));
}

.trusted__logo--neutrogena {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.1vw, 52px);
  font-weight: 400;
  letter-spacing: -0.06em;
}

.trusted__logo--acer {
  font-size: clamp(42px, 4vw, 70px);
  font-weight: 900;
  letter-spacing: -0.09em;
  font-style: italic;
}

.trusted__logo--gambit {
  font-size: clamp(32px, 3.1vw, 54px);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.trusted__logo--picpax {
  font-size: clamp(36px, 3.5vw, 62px);
  font-weight: 850;
  letter-spacing: -0.08em;
}

.trusted__logo--dell {
  font-size: clamp(36px, 3.7vw, 64px);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.trusted__logo--johnson {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(26px, 2.6vw, 46px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

@media (max-width: 1100px) {
  .trusted {
    padding: 52px 0 58px;
  }

  .trusted__logos {
    gap: 34px;
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  .trusted {
    padding: 46px 0 52px;
  }

  .trusted__title {
    margin-bottom: 30px;
    font-size: 20px;
  }

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

  .trusted__logo {
    text-align: center;
  }
}

/* =========================
   PROCESS
========================= */

.process {
  position: relative;
  padding: 82px 0 84px;
  background: #FFFFFF;
  color: #050505;
  overflow: hidden;
  border-top: 6px solid #0098E7;
}

.process__inner {
  width: var(--bc-container);
  margin: 0 auto;
}

.process__head {
  max-width: 650px;
  margin-bottom: 58px;
}

.process__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #0078D7;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.process__eyebrow::before {
  content: "";
  width: 86px;
  height: 2px;
  border-radius: 999px;
  background: #0078D7;
}

.process__title {
  max-width: 560px;
  margin: 0 0 28px;
  color: #050505;
  font-size: 36px;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -1.4px;
}

.process__description {
  max-width: 650px;
  margin: 0;
  color: rgba(5, 5, 5, 0.72);
  font-size: 16px;
  line-height: 1.48;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 46px;
  align-items: start;
}

.process-step {
  position: relative;
  text-align: center;
  padding-top: 18px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .58s ease,
    transform .58s cubic-bezier(.2, .8, .2, 1);
  transition-delay: calc(var(--i) * 100ms);
}

.process.is-visible .process-step {
  opacity: 1;
  transform: translateY(0);
}

/* animated underline like header */
.process-step::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 84px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #014876 0%, #0186DC 100%);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  opacity: 0;
  box-shadow: 0 12px 28px rgba(1, 134, 220, 0);
  transition:
    transform .42s cubic-bezier(.2, .8, .2, 1),
    opacity .42s ease,
    box-shadow .42s ease;
}

.process-step.is-active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
  box-shadow: 0 12px 28px rgba(1, 134, 220, 0.28);
}

.process-step__number {
  margin-bottom: 18px;
  color: #008FE4;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.8px;
  transition:
    color .3s ease,
    transform .3s ease,
    text-shadow .3s ease;
}

.process-step h3 {
  margin: 0 0 18px;
  color: #050505;
  font-size: 22px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.6px;
  transition: transform .3s ease;
}

.process-step p {
  max-width: 210px;
  margin: 0 auto;
  color: #050505;
  font-size: 18px;
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.7px;
  transition: color .3s ease;
}

.process-step.is-active .process-step__number {
  color: #0186DC;
  transform: translateY(-2px);
  text-shadow: 0 14px 32px rgba(1, 134, 220, 0.24);
}

.process-step.is-active h3 {
  transform: translateY(-1px);
}

.process-step.is-active p {
  color: rgba(5, 5, 5, 0.82);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .process {
    padding: 78px 0 76px;
  }

  .process__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 46px 34px;
  }

  .process-step p {
    font-size: 20px;
  }
}

@media (max-width: 760px) {
  .process {
    padding: 68px 0 68px;
  }

  .process__head {
    margin-bottom: 44px;
  }

  .process__title {
    font-size: 32px;
  }

  .process__description {
    font-size: 16px;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .process-step {
    text-align: left;
    padding-top: 16px;
  }

  .process-step::after {
    left: 0;
    width: 72px;
    transform: scaleX(0);
    transform-origin: left;
  }

  .process-step.is-active::after {
    transform: scaleX(1);
  }

  .process-step p {
    max-width: 100%;
    margin: 0;
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-step,
  .process-step::after,
  .process-step__number,
  .process-step h3,
  .process-step p {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================
   BOOKING
========================= */

.booking {
  position: relative;
  padding: 92px 0 180px;
  background:
    radial-gradient(circle at 18% 12%, rgba(1, 134, 220, 0.12), transparent 28%),
    radial-gradient(circle at 84% 86%, rgba(1, 134, 220, 0.10), transparent 32%),
    linear-gradient(180deg, #050712 0%, #030314 100%);
  color: var(--bc-light);
  overflow: hidden;
}

.booking::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  background: #FFFFFF;
  pointer-events: none;
}

.booking__inner {
  position: relative;
  z-index: 2;
  width: var(--bc-container);
  margin: 0 auto;
}

.booking__banner {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 54px;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 3, 20, 0.22), rgba(3, 3, 20, 0.74)),
    var(--booking-image) center / cover no-repeat;
  border: 1px solid rgba(1, 134, 220, 0.46);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.booking__banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(1, 134, 220, 0.12), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.16) 50%, rgba(0, 0, 0, 0.54) 100%);
  pointer-events: none;
}

.booking__banner::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  pointer-events: none;
}

.booking__content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.booking__title {
  margin: 0;
  color: var(--bc-light);
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -1.2px;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.44);
}

.booking__cta {
  min-width: 240px;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  padding: 0 32px;
  border-radius: 999px;
  color: #FFFFFF;
  text-decoration: none;
  background: linear-gradient(90deg, #014876 0%, #0186DC 100%);
  border: 1px solid rgba(1, 134, 220, 0.88);
  box-shadow:
    0 22px 54px rgba(1, 134, 220, 0.30),
    0 0 38px rgba(1, 134, 220, 0.16);
  font-size: 17px;
  line-height: 1;
  font-weight: 800;
  transition:
    transform .24s ease,
    filter .24s ease,
    box-shadow .24s ease;
}

.booking__cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow:
    0 28px 68px rgba(1, 134, 220, 0.40),
    0 0 48px rgba(1, 134, 220, 0.22);
}

.booking__cta-arrow {
  font-size: 30px;
  line-height: 0.7;
  font-weight: 400;
  transform: translateY(-1px);
  transition: transform .24s ease;
}

.booking__cta:hover .booking__cta-arrow {
  transform: translate(5px, -1px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .booking {
    padding: 76px 0 184px;
  }

  .booking::after {
    height: 100px;
  }

  .booking__banner {
    min-height: 310px;
    padding: 44px 30px;
    border-radius: 30px;
  }

  .booking__banner::after {
    inset: 14px;
    border-radius: 24px;
  }

  .booking__title {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.9px;
  }
}

@media (max-width: 680px) {
  .booking {
    padding: 68px 0 176px;
  }

  .booking::after {
    height: 100px;
  }

  .booking__banner {
    min-height: 340px;
    padding: 40px 24px;
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(3, 3, 20, 0.36), rgba(3, 3, 20, 0.80)),
      var(--booking-image) center / cover no-repeat;
  }

  .booking__title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.7px;
  }

  .booking__cta {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    margin-top: 26px;
    font-size: 16px;
  }
}
/* =========================
   FOOTER
========================= */

.site-footer {
  position: relative;
  padding: 92px 0 50px;
  color: var(--bc-light);
  background:
    radial-gradient(circle at 16% 30%, rgba(1, 134, 220, 0.16), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(1, 134, 220, 0.08), transparent 28%),
    linear-gradient(180deg, #07080D 0%, #040429 100%);
  overflow: hidden;
  border-top: 0;
  border-radius: 0 0 28px 28px;
}

.site-footer__inner {
  width: var(--bc-container);
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px 380px;
  gap: 84px;
  align-items: start;
  padding-bottom: 72px;
}

.site-footer__brand-col {
  min-width: 0;
}

.site-footer__brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin-bottom: 46px;
  text-decoration: none;
  transform: translateX(-18px);
}

.site-footer__logo {
  display: block;
  width: 230px;
  height: auto;
  object-fit: contain;
}

/* ВАЖНО: опускаем правую часть ниже */
.site-footer__services,
.site-footer__contact {
  padding-top: 92px;
}

.site-footer__title {
  max-width: 470px;
  margin: 0 0 26px;
  color: var(--bc-light);
  font-size: 44px;
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -1.6px;
}

.site-footer__description {
  max-width: 470px;
  margin: 0 0 38px;
  color: rgba(241, 241, 240, 0.62);
  font-size: 19px;
  line-height: 1.48;
  font-weight: 500;
  letter-spacing: -0.24px;
}

.site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.site-footer__btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  transition:
    transform .22s ease,
    filter .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background .22s ease;
}

.site-footer__btn--primary {
  color: #FFFFFF;
  background: linear-gradient(90deg, #014876 0%, #0186DC 100%);
  border: 1px solid rgba(1, 134, 220, 0.78);
  box-shadow: 0 18px 44px rgba(1, 134, 220, 0.20);
}

.site-footer__btn--secondary {
  color: var(--bc-light);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(241, 241, 240, 0.16);
}

.site-footer__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.site-footer__services h3,
.site-footer__contact h3 {
  margin: 0 0 26px;
  color: var(--bc-light);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.site-footer__services {
  display: grid;
  gap: 18px;
}

.site-footer__services a {
  width: fit-content;
  color: rgba(241, 241, 240, 0.58);
  text-decoration: none;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.18px;
  transition:
    color .2s ease,
    transform .2s ease;
}

.site-footer__services a:hover {
  color: #0098E7;
  transform: translateX(4px);
}

.site-footer__contact {
  display: grid;
  gap: 14px;
}

.site-footer__contact-link,
.site-footer__contact p {
  margin: 0;
  color: rgba(241, 241, 240, 0.58);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.16px;
}

.site-footer__contact-link:hover {
  color: #0098E7;
}

.site-footer__hours {
  margin-bottom: 4px;
}

.site-footer__addresses {
  display: grid;
  gap: 12px;
  margin-top: 4px;
  max-width: 360px;
}

.site-footer__addresses p {
  margin: 0;
}

.site-footer__addresses strong {
  display: block;
  margin-bottom: 3px;
  color: rgba(241, 241, 240, 0.78);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
}

.site-footer__addresses span {
  display: block;
  color: rgba(241, 241, 240, 0.48);
  font-size: 13px;
  line-height: 1.38;
  font-weight: 500;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: nowrap;
}

.site-footer__socials a {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--bc-light);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(241, 241, 240, 0.15);
  text-decoration: none;
  transition:
    transform .22s ease,
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.site-footer__socials a:hover {
  transform: translateY(-3px);
  background: rgba(1, 134, 220, 0.14);
  border-color: rgba(1, 134, 220, 0.62);
  box-shadow: 0 16px 38px rgba(1, 134, 220, 0.16);
}

.site-footer__socials img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.site-footer__bottom {
  min-height: 64px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-top: 30px;
  border-top: 1px solid rgba(241, 241, 240, 0.10);
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(241, 241, 240, 0.40);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-footer__legal a {
  color: rgba(241, 241, 240, 0.44);
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  transition: color .2s ease;
}

.site-footer__legal a:hover {
  color: #0098E7;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .site-footer__top {
    grid-template-columns: minmax(0, 1fr) 200px 330px;
    gap: 54px;
  }

  .site-footer__logo {
    width: 200px;
  }

  .site-footer__services,
  .site-footer__contact {
    padding-top: 86px;
  }
}

@media (max-width: 980px) {
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .site-footer__brand-col {
    grid-column: 1 / -1;
  }

  .site-footer__services,
  .site-footer__contact {
    padding-top: 0;
  }

  .site-footer__contact {
    max-width: 380px;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 72px 0 42px;
    border-radius: 0 0 22px 22px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 54px;
  }

  .site-footer__logo {
    width: 176px;
  }

  .site-footer__brand {
    margin-bottom: 34px;
  }

  .site-footer__title {
    font-size: 36px;
  }

  .site-footer__description {
    font-size: 17px;
  }

  .site-footer__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer__btn {
    width: 100%;
  }

  .site-footer__socials {
    flex-wrap: wrap;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__legal {
    flex-wrap: wrap;
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .site-footer__brand {
    transform: translateX(-10px);
  }
}