/* =====================================================================
   30 DAYS BALL MASTERY TRANSFORMATION — Landing page
   Faithful reproduction of the Figma design (Let's Play Football).
   Fonts: Oswald (headings/UI/numbers) + Manrope (body).
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --bg: #070b17;
  /* base navy-black            */
  --bg-2: #0b1122;
  /* raised panel               */
  --bg-3: #090b14;
  /* card                       */
  --bg-4: #0c1530;
  /* phone frame                */

  --blue: #2b6bff;
  /* electric blue              */
  --pink: #ff4ae8;
  /* neon pink                  */
  --pink-deep: #d82aa7;
  /* button gradient end        */
  --purple: #a855f7;

  --text: #f4f7ff;
  /* primary text               */
  --muted: #8893ad;
  /* body muted                 */
  --muted-2: #a1a8de;
  /* nav / eyebrow muted        */
  --muted-3: #c7cdda;
  --green: #49d95a;
  /* stat improvement           */
  --red: #ff6b6b;

  --line: rgba(255, 255, 255, .08);
  --line-soft: rgba(192, 210, 253, .08);
  --line-faint: rgba(255, 255, 255, .04);

  --grad-brand: linear-gradient(90deg, #2b6bff 0%, #d82aa7 100%);
  --grad-brand2: linear-gradient(90deg, #2b6bff 0%, #ff4ae8 100%);

  --radius: 4px;
  --gutter: 100px;
  /* desktop side padding       */
  --content: 1240px;
  /* inner content width        */

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scroll-padding-top: 130px
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none
}

/* The whole design (nav + hero + every section) is laid out at the fixed 1440
   artboard width and then scaled with `zoom` (set in main.js) to exactly fill
   the viewport at ANY resolution / zoom level — so it always stretches edge to
   edge, scales proportionally as one unit, and never leaves side margins.
   Below 760px the dedicated fluid mobile layout takes over (zoom reset). */
.page {
  position: relative;
  width: 100%;
  padding-top: 96px;
  overflow-x: clip;
  background: var(--bg)
}

@media (min-width:761px) {
  .page {
    width: 1440px;
    padding-top: 128px
  }
}

/* shared page width */
.container {
  width: min(100% - 48px, var(--content));
  margin-inline: auto;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
}

.eyebrow--muted {
  color: var(--muted-2)
}

.eyebrow .dot {
  /* pink leading dot variant handled inline */
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  letter-spacing: .5px;
  color: var(--text);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px
}

/* ---------- Section wrapper ---------- */
.section {
  position: relative;
  padding-block: 80px
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius);
  background: var(--grad-brand);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(43, 107, 255, .55), 0 6px 18px -8px rgba(216, 42, 167, .5)
}

.btn:active {
  transform: translateY(0)
}

.btn--hero {
  width: 240px
}

.btn--cta {
  width: 267px
}

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 128px;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #02091a 0%, #00020f 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}

/* auto-hide header: slides up on scroll-down, back down on scroll-up */
.nav--hidden {
  transform: translateY(-101%)
}

.nav--stuck {
  box-shadow: 0 12px 30px -16px rgba(0, 0, 0, .7)
}

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

.nav__logo img {
  height: 80px;
  width: auto
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 30px
}

.nav__menu a {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted-2);
  transition: color .2s
}

.nav__menu a:hover {
  color: var(--text)
}

.nav__cta {
  padding: 16px 32px
}

.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--muted-2);
  border-radius: 2px;
  position: relative
}

.nav__burger span::before,
.nav__burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2.5px;
  background: var(--muted-2);
  border-radius: 2px;
  transition: .25s
}

.nav__burger span::before {
  top: -7px
}

.nav__burger span::after {
  top: 7px
}

/* mobile dropdown menu panel — content-height (matches the "Nav — Open" frame) */
.mobile-menu {
  position: fixed;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 80;
  background: #0d0f17;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 24px;
  padding: 24px;
  display: none;
  flex-direction: column;
  box-shadow: 0 40px 90px -20px rgba(0, 0, 0, .85);
}

.mobile-menu.open {
  display: flex
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.mobile-menu__logo img {
  height: 48px;
  width: auto;
  display: block
}

.mobile-menu__close {
  position: relative;
  width: 32px;
  height: 32px;
  flex: none
}

.mobile-menu__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: var(--muted-2);
  border-radius: 2px
}

.mobile-menu__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg)
}

.mobile-menu__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg)
}

.mobile-menu__links {
  display: flex;
  flex-direction: column
}

.mobile-menu__links a {
  display: block;
  padding: 24px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted-2);
  transition: color .2s
}

.mobile-menu__links a:hover {
  color: var(--text)
}

.mobile-menu__cta {
  margin-top: 24px;
  width: 100%
}

/* =====================================================================
   HERO
   ===================================================================== */
/* The hero image is shown in full at its natural aspect ratio, so it scales
   proportionally with the page on every screen / zoom level — never cropped
   or distorted. The image itself defines the hero's height; the text sits in
   an absolutely-positioned overlay constrained to the same content width as
   the rest of the page. */
.hero {
  position: relative;
  width: 100%;
  display: grid;
  overflow: hidden;
  background: #070b17
}

.hero>.hero__bg,
.hero>.hero__inner {
  grid-area: 1/1
}

.hero__bg {
  position: relative;
  align-self: start;
  z-index: 0;
  font-size: 0
}

.hero__bg img {
  display: block;
  width: 100%;
  height: auto
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 23, 0) 60%, rgba(7, 11, 23, .9) 100%),
    linear-gradient(90deg, rgba(7, 11, 23, .72) 0%, rgba(7, 11, 23, .15) 42%, rgba(7, 11, 23, 0) 60%)
}

.hero__inner {
  position: relative;
  z-index: 2;
  align-self: stretch;
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
  padding-top: 64px;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 16px
}

/* eyebrow → title */
.hero__inner .hero__desc {
  margin-top: 24px
}

/* title → description */
.hero__inner .btn--hero {
  margin-top: 48px
}

/* description → button */
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px
}

.hero__eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  flex: none
}

.hero__eyebrow span {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-2)
}

.hero__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--text);
  line-height: 1.12;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 98px;
  max-width: 660px;
  filter: drop-shadow(0 0 40px rgba(43, 107, 255, .55));
}

.hero__title .l1 {
  display: block;
  font-size: 98px;
  background: linear-gradient(90deg, #2b6bff 0%, #6e54e0 52%, #d82aa7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: fit-content;
}

.hero__title .small {
  font-size: 84px;
  display: block;
  color: var(--text)
}

.hero__desc {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: var(--muted-2);
  max-width: 460px;
}

/* =====================================================================
   AUDIENCE — "Для кого це?"
   ===================================================================== */
.section--audience {
  background: linear-gradient(180deg, #010205 0%, #010106 100%)
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.acard {
  background: var(--bg-3);
  border: 1px solid var(--line-faint);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform .3s var(--ease), border-color .3s
}

.acard:hover {
  transform: translateY(-4px);
  border-color: rgba(43, 107, 255, .4)
}

.acard__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center
}

.acard__icon svg {
  width: 100%;
  height: 100%
}

.acard h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: 1px;
  color: var(--text)
}

.acard p {
  font-size: 16px;
  line-height: 1.4;
  color: var(--muted)
}

.acard__body {
  display: flex;
  flex-direction: column;
  gap: 8px
}

/* gradient fill for inline svg icons */
.grad-icon {
  fill: url(#brandGrad)
}

/* =====================================================================
   TRANSFORMATION — "Результат за 30 днів" (before / after)
   ===================================================================== */
.section--transform {
  background: linear-gradient(180deg, #010006 0%, rgba(7, 11, 23, .85) 85%)
}

.transform__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 29px
}

.col-list {
  width: 260px;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.col-list h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1
}

.col-list--problems h3 {
  color: var(--muted)
}

.col-list--results h3 {
  color: var(--text);
  text-transform: uppercase
}

.col-list ul {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.col-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--muted)
}

.col-list--problems li {
  color: var(--muted)
}

.col-list--results li {
  color: var(--text)
}

.col-list--results li .ic {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 3px
}

.col-list--results li .ic svg {
  width: 14px;
  height: 14px
}

.col-list--problems li::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  margin-top: 8px;
  opacity: .6
}

/* FIFA-style player cards (EA-FC shield silhouette extracted from the .fig) */
.fifa-wrap {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  min-height: 480px
}

.fifa {
  position: relative;
  flex: none;
  clip-path: url(#fcard)
}

.fifa--before {
  width: 264px;
  height: 404px;
  background: #3a3f49;
  padding: 2px;
  filter: drop-shadow(2px 8px 18px rgba(6, 3, 28, .55))
}

.fifa--after {
  width: 312px;
  height: 478px;
  padding: 3px;
  background: linear-gradient(90deg, #2b6bff 0%, #d82aa7 100%);
  filter: drop-shadow(2px 10px 20px rgba(6, 3, 28, .6)) drop-shadow(0 12px 30px rgba(43, 107, 255, .3))
}

.fifa__body {
  position: relative;
  width: 100%;
  height: 100%;
  clip-path: url(#fcard);
  background: #0c0c10;
  overflow: hidden
}

.fifa--after .fifa__body {
  background: #06031d
}

/* photo placed with the exact Figma "scale-crop" transform, then mirrored */
.fifa__media {
  position: absolute;
  inset: 0;
  transform: scaleX(-1);
  overflow: hidden
}

.fifa__media img {
  position: absolute;
  top: 0;
  left: -20.8%;
  width: 124.4%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top
}

.fifa--before .fifa__media img {
  filter: grayscale(1) brightness(.72)
}

.fifa__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 0, 6, 0) 0%, rgba(1, 0, 6, .45) 64%, #010006 96%)
}

/* inner frame (the second, inset border from the design) */
.fifa__frame {
  position: absolute;
  top: 9px;
  left: 9px;
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  z-index: 2;
  pointer-events: none;
  overflow: visible;
  display: block
}

.fifa__frame path {
  stroke-linejoin: round
}

.fifa--before .fifa__frame path {
  stroke: rgba(150, 156, 170, .35)
}

.fifa--after .fifa__frame path {
  stroke: url(#brandGradH);
  opacity: .9
}

.fifa__rating {
  position: absolute;
  top: 14.5%;
  left: 9%;
  z-index: 3;
  text-align: center;
  color: var(--muted-3)
}

.fifa--after .fifa__rating {
  color: var(--text)
}

.fifa__rating .num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1
}

.fifa--after .fifa__rating .num {
  font-size: 46px
}

.fifa__rating .pos {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 13px
}

.fifa__label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 26.5%;
  z-index: 3;
  padding: 4px 13px;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap
}

.fifa--before .fifa__label {
  background: rgba(62, 61, 62, .4);
  border: 1px solid rgba(140, 140, 140, .18)
}

.fifa--after .fifa__label {
  background: rgba(63, 8, 56, .45);
  border: 1px solid rgba(255, 110, 163, .22)
}

.fifa__stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14%;
  z-index: 3;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
  padding-inline: 11%
}

.fifa__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #fff
}

.fifa__stat .name {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1
}

.fifa__stat .val {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 2px
}

.fifa__stat .imp {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 9px;
  color: var(--green)
}

.fifa--before .fifa__stat {
  font-size: .88em
}

/* =====================================================================
   SKILLS — "Що розвиває програма" + Player Attributes
   ===================================================================== */
.skills {
  display: flex;
  gap: 48px;
  align-items: flex-start
}

.skills__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px
}

.skills__list {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.skills__item h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: var(--muted);
  margin-bottom: 8px
}

.skills__item p {
  font-size: 16px;
  line-height: 1.4;
  color: var(--muted)
}

.attr-card {
  position: relative;
  width: 472px;
  flex: none;
  border-radius: var(--radius);
  padding: 24px;
  overflow: hidden;
  border: 2px solid transparent;
  background: linear-gradient(#12141c, #12141c) padding-box,
    linear-gradient(90deg, #eca6e3, #d82aa7) border-box;
}

.attr-card__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(168, 85, 247, .18), rgba(168, 85, 247, 0) 70%)
}

.attr-card__glow--1 {
  width: 300px;
  height: 300px;
  top: -108px;
  right: -50px
}

.attr-card__glow--2 {
  width: 580px;
  height: 212px;
  left: -64px;
  bottom: -40px;
  border-radius: 0
}

.attr-card__title {
  position: relative;
  z-index: 2;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--pink);
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  margin-bottom: 8px
}

.attr-row {
  position: relative;
  z-index: 2;
  padding-block: 7px
}

.attr-row__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 7px
}

.attr-row__name {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff
}

.attr-row__val {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  line-height: 1
}

.attr-bar {
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .06);
  overflow: hidden
}

.attr-bar__fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #3d0636 0%, #ff4ae8 68%, #e193e3 100%)
}

/* =====================================================================
   HOW IT WORKS — steps
   ===================================================================== */
.section--how {
  background: linear-gradient(180deg, #070b17 0%, #0d1632 100%);
  overflow: hidden
}

.how__ghost {
  position: absolute;
  top: 104px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 260px;
  line-height: 1;
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  color: transparent;
  -webkit-text-stroke: 2px rgba(43, 107, 255, .45);
  letter-spacing: 0;
  opacity: .18;
}

.steps {
  position: relative;
  display: flex;
  justify-content: space-between
}

.steps__line {
  position: absolute;
  top: 27px;
  left: 130px;
  right: 130px;
  height: 2px;
  background: rgba(43, 107, 255, .25)
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-inline: 10px;
  text-align: center
}

.step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--blue);
  box-shadow: 0 0 22px rgba(43, 107, 255, .55), 0 0 7px rgba(43, 107, 255, .45)
}

.step__label {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted)
}

.step__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px
}

.step__desc {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: 1px;
  color: var(--text)
}

/* =====================================================================
   INSIDE PROGRAM — stats grid + phone
   ===================================================================== */
.section--inside {
  background: linear-gradient(180deg, #0d1632 0%, #070b17 100%)
}

.inside {
  display: flex;
  gap: 60px;
  align-items: stretch
}

.stats-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-content: center
}

.stat {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 168px;
  text-align: center;
  transition: transform .3s var(--ease), border-color .3s
}

.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(43, 107, 255, .4)
}

.stat--wide {
  grid-column: 1 / -1
}

.stat__num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 1.42;
  background: var(--grad-brand2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.stat--wide .stat__num {
  font-size: 64px
}

.stat__label {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted)
}

.phone {
  width: 360px;
  flex: none;
  display: flex;
  justify-content: center
}

.phone__wrap {
  width: 320px;
  background: var(--bg-2);
  border: 2px solid rgba(43, 107, 255, .4);
  border-radius: 40px;
  padding: 14px;
  position: relative
}

.phone__frame {
  border-radius: 28px;
  overflow: hidden;
  background: var(--bg-4);
  position: relative;
  aspect-ratio: 292/573
}

.phone__frame video,
.phone__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

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

.phone__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 4;
  background: rgba(7, 11, 23, .55);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s
}

.phone__play:hover {
  transform: scale(1.08)
}

.phone__play svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
  fill: #fff
}

.phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 22px;
  background: #000;
  border-radius: 14px;
  z-index: 3
}

/* =====================================================================
   PERSONAL FEEDBACK
   ===================================================================== */
.section--feedback {
  background: linear-gradient(180deg, #070b18 0%, #020108 100%)
}

.feedback__lead {
  font-size: 18px;
  line-height: 1.4;
  color: var(--muted);
  max-width: 1011px;
  margin-top: 8px
}

.feedback {
  display: flex;
  gap: 30px;
  align-items: stretch;
  margin-top: 24px
}

.fb-video {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden
}

.fb-video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(43, 107, 255, .12), rgba(14, 21, 40, 0) 60%),
    linear-gradient(315deg, rgba(255, 74, 232, .12), rgba(14, 21, 40, 0) 60%)
}

.fb-video>* {
  position: relative;
  z-index: 1
}

.fb-video__thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 557/335
}

.fb-video__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.fb-video__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(7, 11, 23, .55);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center
}

.fb-video__play svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
  fill: #fff
}

.fb-rec {
  position: absolute;
  top: 40px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(191, 205, 247, .2);
  border-radius: 99px;
  padding: 8px 14px;
  backdrop-filter: blur(4px)
}

.fb-rec .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red)
}

.fb-rec span {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--red)
}

.fb-player {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.fb-player__role {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(244, 247, 255, .5)
}

.fb-player__lvl {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--text)
}

.fb-player__q {
  font-size: 16px;
  line-height: 1.4;
  color: var(--text)
}

.fb-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.fb-block {
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--line-faint);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.fb-block h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.05;
  color: var(--text)
}

.fb-block p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted)
}

/* =====================================================================
   COACH
   ===================================================================== */
.section--coach {
  background: linear-gradient(180deg, #020108 0%, #0d1632 100%)
}

.coach {
  display: flex;
  gap: 50px;
  align-items: stretch
}

.coach__info {
  flex: 1.7 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  min-height: 520px
}

.coach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.coach__cell {
  background: var(--bg-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.coach__cell .t {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--blue);
  line-height: 1
}

.coach__cell .s {
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted)
}

.coach__desc {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 16px 24px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
  display: flex;
  align-items: center;
  min-height: 76px
}

.coach__photo {
  flex: 1 1 0;
  max-width: 440px;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line-soft);
  display: flex;
  align-items: flex-end
}

.coach__photo img {
  position: absolute;
  top: -15.8%;
  left: -5.2%;
  width: 136.8%;
  height: 143.7%;
  max-width: none;
  object-fit: cover
}

/* exact Figma scale-crop transform */
.coach__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 23, 0) 50%, #070b17 100%)
}

.coach__caption {
  position: relative;
  z-index: 2;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.coach__caption .lab {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue)
}

.coach__caption .name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: var(--text)
}

/* =====================================================================
   REVIEWS
   ===================================================================== */
.section--reviews {
  background: linear-gradient(180deg, #0d1631 0%, #070b17 100%)
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.review {
  background: var(--bg-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 200px
}

.review__text {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(244, 247, 255, .9)
}

.review__who {
  display: flex;
  align-items: center;
  gap: 14px
}

.review__ava {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex: none;
  background: var(--grad-brand2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #fff
}

.review__name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text)
}

.review__pos {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.2;
  margin-top: 2px
}

.reviews-dots {
  display: none
}

/* carousel position dots — mobile only */

/* =====================================================================
   FAQ
   ===================================================================== */
.section--faq {
  background: linear-gradient(180deg, #070b17 0%, #010006 100%)
}

.section--faq .section-head {
  align-items: center;
  text-align: center
}

.faq {
  max-width: 880px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.faq__item {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 0 26px;
  overflow: hidden;
  transition: border-color .3s
}

.faq__item.open {
  border-color: var(--blue)
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  font-size: 16px;
  color: var(--text);
  font-family: 'Manrope', sans-serif
}

.faq__q .chev {
  flex: none;
  width: 16px;
  height: 16px;
  position: relative;
  transition: transform .3s
}

.faq__q .chev::before,
.faq__q .chev::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 7px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: .3s
}

.faq__q .chev::before {
  left: 1px;
  transform: rotate(45deg)
}

.faq__q .chev::after {
  right: 1px;
  transform: rotate(-45deg)
}

.faq__item.open .chev::before {
  transform: rotate(-45deg)
}

.faq__item.open .chev::after {
  transform: rotate(45deg)
}

.faq__a {
  max-height: 0;
  opacity: 0;
  transition: max-height .35s var(--ease), opacity .3s, padding .3s
}

.faq__a p {
  padding-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted)
}

.faq__item.open .faq__a {
  max-height: 400px;
  opacity: 1;
  padding-bottom: 22px
}

/* =====================================================================
   FINAL CTA
   ===================================================================== */
.section--final {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #070b17;
  text-align: center;
  overflow: hidden
}

.section--final::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(43, 107, 255, .18) 0%, rgba(43, 107, 255, 0) 100%),
    linear-gradient(90deg, rgba(255, 74, 232, .12) 0%, rgba(255, 74, 232, 0) 100%)
}

.section--final .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px
}

.final__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  max-width: 885px
}

.final__head .sub {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.final__desc {
  font-size: 18px;
  line-height: 1.4;
  color: var(--muted);
  max-width: 620px
}

.final__content {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  text-align: left;
  width: 100%;
  max-width: 1040px
}

.final__img {
  width: 592px;
  flex: none;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 592/411
}

.final__img img {
  position: absolute;
  top: -16.8%;
  left: -6.35%;
  width: 111.5%;
  height: 154.3%;
  max-width: none;
  object-fit: cover
}

/* exact Figma scale-crop transform */
.final__details {
  width: 400px;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.final__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-block: 8px
}

.feat {
  display: flex;
  align-items: center;
  gap: 13px
}

.feat__check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--grad-brand2);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center
}

.feat__check svg {
  width: 10px;
  height: 10px;
  fill: #fff
}

.feat span {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--text)
}

.final__price {
  display: flex;
  align-items: center;
  gap: 10px;
  filter: drop-shadow(0 0 40px rgba(255, 74, 232, .45))
}

.final__price .num {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 72px;
  line-height: 1;
  background: var(--grad-brand2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.final__price .cur {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--pink);
  align-self: center;
  margin-top: 18px
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 60px 100px 40px
}

.footer__top {
  max-width: 1240px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: 60px
}

.footer__brand {
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.footer__brand img {
  height: 64px;
  width: auto;
  align-self: flex-start;
  object-fit: contain
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted)
}

.footer__col h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer__col a {
  font-size: 16px;
  color: rgba(244, 247, 255, .7);
  transition: color .2s
}

.footer__col a:hover {
  color: var(--text)
}

.footer__socials {
  display: flex;
  gap: 16px;
  margin-bottom: 18px
}

.footer__socials a {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center
}

.footer__socials svg {
  width: 24px;
  height: 24px
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.footer__contacts a {
  font-size: 14px;
  color: rgba(244, 247, 255, .7)
}

.footer__bottom {
  max-width: 1240px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px
}

.footer__bottom span {
  font-size: 12px;
  color: rgba(136, 147, 173, .8)
}

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.reveal.in {
  opacity: 1;
  transform: none
}

@media (prefers-reduced-motion:reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none
  }
}

/* default: hide mobile-only hero photo */
.hero__photo {
  display: none
}

/* The desktop (>=761px) layout is the fixed 1440px artboard exactly as in
   Figma; main.js scales the whole .page with `zoom` to fill the viewport, so
   no fluid/clamp/tablet rules are needed here (they would fight the zoom and
   make type/spacing deviate from the design). Mobile (<=760) layout below.  */

/* =====================================================================
   RESPONSIVE — mobile (<=760px): match the 390px mobile artboard
   ===================================================================== */
@media (max-width:760px) {
  :root {
    --gutter: 16px
  }

  .container {
    width: min(100% - 32px, 100%)
  }

  .section {
    padding-block: 40px
  }

  /* nav */
  .nav {
    height: 96px;
    background: #010102;
    border-bottom: 1px solid var(--line-faint)
  }

  .nav__menu,
  .nav__cta {
    display: none
  }

  .nav__burger {
    display: flex
  }

  .nav__logo img {
    height: 48px
  }

  /* hero: stacked, full-bleed image (390px mobile artboard).
     vertical gaps — eyebrow→title 8, title→desc 16, desc→image 8, image→button 8 */
  .hero {
    position: static;
    display: block;
    min-height: auto;
    padding: 16px 0;
    background: #010204
  }

  .hero__bg {
    display: none
  }

  .hero__inner {
    position: static;
    width: auto;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0
  }

  .hero__content {
    gap: 8px;
    padding: 0 16px
  }

  .hero__inner .hero__desc {
    margin-top: 16px;
    padding: 0 16px
  }

  .hero__title {
    letter-spacing: 0
  }

  .hero__title,
  .hero__title .l1 {
    font-size: 60px;
    max-width: none
  }

  .hero__title .small {
    font-size: 48px
  }

  .hero__desc {
    font-size: 16px;
    line-height: 1.5;
    max-width: none
  }

  .hero__photo {
    display: block;
    margin-top: 8px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    aspect-ratio: 390/360
  }

  .hero__photo img {
    position: absolute;
    top: 0;
    left: -65.4%;
    width: 165.56%;
    height: 100%;
    max-width: none;
    object-fit: cover
  }

  .hero__inner .btn--hero {
    align-self: stretch;
    width: auto;
    margin: 8px 16px 0
  }

  /* section heads */
  .section-head {
    margin-bottom: 24px;
    gap: 8px
  }

  .section-title {
    font-size: 32px;
    line-height: 1.18
  }

  /* audience cards stack */
  .cards-3 {
    grid-template-columns: 1fr;
    gap: 8px
  }

  .acard {
    gap: 16px
  }

  /* transformation */
  .transform__grid {
    flex-direction: column;
    gap: 24px
  }

  .col-list {
    width: 100%
  }

  /* before/after cards stay side-by-side but shrink to fit (zoom scales the
     px type inside too); reordered to the top, ahead of the two lists */
  .fifa-wrap {
    min-height: auto;
    order: -1;
    align-self: center;
    zoom: .616;
    margin-bottom: 8px
  }

  /* JS refines to ~12px side padding */
  .fifa--before {
    transform: none
  }

  .fifa--after {
    transform: none
  }

  /* stack all two-column sections */
  .skills {
    flex-direction: column;
    gap: 32px
  }

  .skills__left {
    flex: none
  }

  .attr-card {
    width: 100%;
    max-width: none;
    flex: none
  }

  .inside {
    flex-direction: column;
    gap: 28px
  }

  .phone {
    width: 100%;
    flex: none;
    align-self: center
  }

  .feedback {
    flex-direction: column;
    gap: 14px
  }

  .coach {
    flex-direction: column;
    gap: 24px
  }

  .coach__info {
    min-height: auto;
    gap: 16px
  }

  .coach__photo {
    order: -1;
    width: 100%;
    max-width: none;
    flex: none;
    aspect-ratio: 358/380;
    min-height: 0
  }

  .coach__photo img {
    top: -15.8%;
    left: -2.95%;
    width: 122.85%;
    height: 143.68%
  }

  /* Figma mobile crop */
  .final__content {
    flex-direction: column;
    gap: 24px
  }

  .final__img {
    width: 100%;
    max-width: none;
    flex: none;
    aspect-ratio: 358/230
  }

  .final__img img {
    top: -14.5%;
    left: 0;
    width: 100%;
    height: 151.06%
  }

  /* Figma mobile crop */
  /* features list (left) + price (right) in a row, button full-width below */
  .final__details {
    width: 100%;
    max-width: none;
    flex: none;
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 24px;
    row-gap: 24px;
    align-items: center
  }

  .final__features {
    grid-column: 1;
    grid-row: 1
  }

  .final__price {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: start
  }

  .final__details .btn--cta {
    grid-column: 1/-1;
    grid-row: 2
  }

  /* how it works: vertical timeline (56px circle column + descriptions) */
  .how__ghost {
    font-size: 116px;
    top: 64px
  }

  .steps {
    flex-direction: column;
    gap: 24px;
    padding-left: 0
  }

  .steps__line {
    top: 28px;
    bottom: 28px;
    left: 28px;
    right: auto;
    width: 2px;
    height: auto
  }

  .step {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    text-align: left;
    padding: 0
  }

  .step__top {
    flex-direction: row;
    align-items: center;
    gap: 0;
    width: 56px;
    flex: none
  }

  .step__label {
    display: none
  }

  .step__desc {
    font-size: 20px;
    line-height: 1.3
  }

  /* inside: stats 2-col */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px
  }

  .stat {
    min-height: 112px;
    padding: 16px
  }

  .stat__num {
    font-size: 48px
  }

  .stat--wide .stat__num {
    font-size: 40px
  }

  .phone__wrap {
    width: 100%;
    max-width: 358px
  }

  /* feedback */
  .fb-rec {
    top: 32px;
    left: 32px
  }

  .feedback__lead {
    font-size: 16px
  }

  /* coach credentials: single column of full-width cells (mobile artboard) */
  .coach__grid {
    grid-template-columns: 1fr;
    gap: 8px
  }

  .coach__cell {
    padding: 8px 16px
  }

  .coach__cell .t {
    font-size: 24px
  }

  .coach__caption {
    padding: 16px
  }

  .coach__caption .name {
    font-size: 24px
  }

  /* reviews: horizontal swipe carousel (cards 280px) */
  .reviews {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-inline: -16px;
    padding: 0 16px 4px;
    scrollbar-width: none
  }

  .reviews::-webkit-scrollbar {
    display: none
  }

  .review {
    flex: none;
    width: 280px;
    scroll-snap-align: start
  }

  .reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px
  }

  .reviews-dots button {
    width: 22px;
    height: 4px;
    border-radius: 2px;
    padding: 0;
    background: rgba(136, 147, 173, .3);
    transition: background .3s, width .3s
  }

  .reviews-dots button.active {
    width: 28px;
    background: var(--blue)
  }

  /* faq */
  .faq__item {
    padding: 0 18px
  }

  .faq__q {
    font-size: 15px
  }

  /* final */
  .final__head {
    gap: 16px
  }

  .final__price .num {
    font-size: 48px
  }

  .final__price .cur {
    margin-top: 12px
  }

  .btn--cta {
    width: 100%
  }

  /* footer: brand row on top, then Navigate + Connect side by side */
  .footer {
    padding: 40px 16px 24px
  }

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

  .footer__brand {
    grid-column: 1/-1;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    max-width: none
  }

  .footer__brand img {
    height: 64px;
    align-self: center
  }

  .footer__brand p {
    font-size: 14px
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center
  }
}

@media (max-width:500px) {
  .fb-rec span {
    font-size: 10px;
  }

  .fb-rec {
    top: 10px;
    left: 10px;
  }
}

/* very small phones */
@media (max-width:380px) {

  .hero__title,
  .hero__title .l1 {
    font-size: 52px
  }

  .hero__title .small {
    font-size: 42px
  }

  .fb-rec {
    display: none
  }
}


.section.content {
  background: linear-gradient(180deg, #070B17 0%, #0D1631 100%);
}

.section-title.content {
  text-align: center;
  text-transform: uppercase;
  line-height: 1.1;
}

.content__head{
  margin-bottom: 48px;
}

.content__desc {
  padding-top: 16px;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  letter-spacing: 0%;
  text-align: center;
  color: #8893AD;
}

.paragraph{
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.paragraph__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0%;
  color: #F4F7FF;
}

.paragraph__text {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0%;
  color: #8893AD;
}
.paragraph__list {
  list-style: disc;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0%;
  color: #8893AD;
  padding-left: 30px;
}
.paragraph__list.numbers {
  list-style: decimal;
}