:root {
  --orange: #f2a000;
  --orange-light: #ffc13a;
  --dark: #050608;
  --white: #f2f2f2;
  --muted: #b9b9b9;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================================
   HERO SECTION
========================================= */

/* MOBILE MENU — FULLSCREEN FIX */

body.menu-open {
  overflow: hidden;
}

body.menu-open .hero-section {
  z-index: 9999;
  overflow: visible;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9998;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  min-height: 100vh;
  min-height: 100dvh;

  padding: 145px 28px 34px;

  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);

  background:
    linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.94) 56%, rgba(0,0,0,.82) 100%),
    url("img/hero-bg.png") 84% center / cover no-repeat;

  transition:
    opacity .25s ease,
    transform .25s ease,
    visibility .25s ease;
}

.mobile-menu.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-nav {
  width: 100%;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu-nav a {
  min-height: 52px;
  display: flex;
  align-items: center;

  color: rgba(255,255,255,.9);

  font-size: 22px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: -.7px;

  border-bottom: 1px solid rgba(255,176,0,.24);
}

.mobile-menu-nav a.active,
.mobile-menu-nav a:hover {
  color: #ffb000;
}

.mobile-menu-btn {
  width: 100%;
  max-width: 430px;
  height: 50px;
  margin-top: 28px;

  border-radius: 15px;

  background: linear-gradient(135deg, #ffc73c 0%, #f0a100 48%, #d88400 100%);
  color: #080808;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  font-size: 13px;
  font-weight: 950;

  box-shadow:
    0 18px 44px rgba(242,160,0,.24),
    inset 0 -2px 0 rgba(0,0,0,.18);
}

/* КРЕСТИК */

.burger-btn {
    position: relative;
    z-index: 1000;

    display: none;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    padding: 0;

    background: transparent;

    border: none;
    outline: none;
    box-shadow: none;

    appearance: none;
    -webkit-appearance: none;

    cursor: pointer;
}

.burger-btn:focus,
.burger-btn:active,
.burger-btn:focus-visible {
    outline: none;
    border: none;
    box-shadow: none;
}
/* MOBILE */

@media (max-width: 480px) {
  .mobile-menu {
    padding: 12px 22px 28px;
  }

  .mobile-menu-nav a {
    min-height: 47px;
    font-size: 19px;
  }

  .mobile-menu-btn {
    height: 48px;
    margin-top: 24px;
    font-size: 12px;
  }

  .burger-btn.active {
    top: 28px;
    right: 22px;
  }
}

@media (max-width: 360px) {
  .mobile-menu {
    padding: 22px 18px 24px;
  }

  .mobile-menu-nav a {
    min-height: 42px;
    font-size: 16px;
  }

  .mobile-menu-btn {
    height: 46px;
    margin-top: 20px;
    font-size: 11px;
  }

  .burger-btn.active {
    top: 24px;
    right: 18px;
  }
}

.hero-section {
  position: relative;
  min-height: 100vh;
  background: #050608;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("img/hero-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 62% center;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.98) 0%,
      rgba(0,0,0,.91) 30%,
      rgba(0,0,0,.48) 58%,
      rgba(0,0,0,.10) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,.42) 0%,
      rgba(0,0,0,.08) 48%,
      rgba(0,0,0,.94) 100%
    );
}

.hero-inner {
  position: relative;
  z-index: 5;
  width: min(100% - 120px, 1510px);
  margin: 0 auto;
}

/* HEADER */

.hero-header {
  position: relative;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  z-index: 20;
}

.logo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  color: #050608;
  display: grid;
  place-items: center;
  font-size: 23px;
  font-weight: 950;
  box-shadow: 0 0 26px rgba(242,160,0,.22);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text span {
  color: #fff;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.logo-text strong {
  margin-top: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
}

.hero-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.hero-nav a {
  position: relative;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  font-weight: 700;
  transition: color .22s ease;
}

.hero-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(242,160,0,.65);
  transition: width .22s ease;
}

.hero-nav a.active,
.hero-nav a:hover {
  color: var(--orange);
}

.hero-nav a.active::after,
.hero-nav a:hover::after {
  width: 100%;
}

.header-btn {
  flex-shrink: 0;
  height: 50px;
  min-width: 218px;
  padding: 0 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  color: #070707;
  font-size: 14px;
  font-weight: 950;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow:
    0 12px 30px rgba(242,160,0,.18),
    inset 0 -2px 0 rgba(0,0,0,.18);
  transition: .25s ease;
}

.header-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(242,160,0,.28),
    inset 0 -2px 0 rgba(0,0,0,.18);
}

/* BURGER */

.burger-btn {
  display: none;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid rgba(255,176,0,.32);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    rgba(0,0,0,.42);
  box-shadow:
    0 14px 34px rgba(0,0,0,.35),
    inset 0 0 0 1px rgba(255,255,255,.04);
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 80;
}

.burger-btn span {
  position: absolute;
  left: 13px;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #ffb000;
  box-shadow: 0 0 10px rgba(255,176,0,.45);
  transition: .25s ease;
}

.burger-btn span:nth-child(1) {
  top: 15px;
}

.burger-btn span:nth-child(2) {
  top: 23px;
}

.burger-btn span:nth-child(3) {
  top: 31px;
}

.burger-btn.active span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(8px);
}

.burger-btn.active span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}






/* CONTENT */

.hero-content {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  padding-bottom: 8px;
}

.hero-copy {
  width: 650px;
  max-width: 100%;
  padding-top: 10px;
  margin-left: 18px;
}

.hero-kicker {
  margin-bottom: 18px;
  color: #b9b9b9;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}

.hero-kicker::before {
  content: "///";
  color: var(--orange);
  margin-right: 8px;
}

.hero-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: .83;
  letter-spacing: -3px;
  text-transform: uppercase;
  font-weight: 950;
}

.hero-title > span,
.hero-title small {
  display: block;
}

.title-line {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.t-white,
.t-orange {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-repeat: repeat, no-repeat;
  background-size: 420px 420px, 100% 100%;
  background-blend-mode: screen;
  filter: contrast(1.12);
}

.t-white {
  font-size: 72px;
  background-image:
    url("img/text-noise.png"),
    linear-gradient(180deg, #ffffff 0%, #d8d8d8 48%, #7a7a7a 100%);
}

.t-orange {
  font-size: 72px;
  background-image:
    url("img/text-noise.png"),
    linear-gradient(180deg, #ffc83d 0%, #f0a000 48%, #9a5700 100%);
}

.hero-title small {
  margin-top: 8px;
  font-size: 42px;
  line-height: .95;
  letter-spacing: -1.5px;
}

.hero-description {
  width: 520px;
  max-width: 100%;
  margin: 20px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.45;
}

.hero-buttons {
  display: flex;
  align-items: center;
  margin-top: 28px;
}

.main-btn {
  width: 275px;
  height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffc73c 0%, #f0a100 45%, #d88400 100%);
  color: #080808;
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow:
    0 15px 34px rgba(242,160,0,.22),
    inset 0 -2px 0 rgba(0,0,0,.18);
  transition: .25s ease;
}

.main-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 46px rgba(242,160,0,.32),
    inset 0 -2px 0 rgba(0,0,0,.18);
}

.secondary-btn,
.play-icon {
  display: none;
}





/* =========================================
   EXTINCTION DIVIDER
========================================= */

.extinction-divider {
    position: relative;
    width: 100%;
    height: 86px;

    margin-top: 0;
    margin-bottom: 0;

    background:
        radial-gradient(circle at center,
            rgba(255, 170, 0, .20) 0%,
            rgba(255, 90, 0, .08) 34%,
            rgba(0, 0, 0, 0) 72%),
        linear-gradient(180deg,
            rgba(0, 0, 0, .95) 0%,
            #050505 50%,
            rgba(0, 0, 0, .95) 100%);

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 50;

    border-top: 1px solid rgba(255, 170, 0, .10);
    border-bottom: 1px solid rgba(255, 170, 0, .10);
}

.extinction-divider::before {
    content: '';

    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(rgba(255, 170, 0, .55) 1px, transparent 1px),
        radial-gradient(rgba(255, 90, 0, .35) 1px, transparent 1px);

    background-size: 120px 42px, 180px 58px;
    background-position: 0 0, 40px 20px;

    opacity: .20;

    animation: dividerEmbers 14s linear infinite;
}

.extinction-divider::after {
    content: '';

    position: absolute;
    left: 50%;
    top: 50%;

    width: 78%;
    height: 1px;

    transform: translate(-50%, -50%);

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 170, 0, .25),
        rgba(255, 170, 0, .85),
        rgba(255, 170, 0, .25),
        transparent
    );

    box-shadow:
        0 0 18px rgba(255, 170, 0, .45),
        0 0 38px rgba(255, 90, 0, .25);

    opacity: .75;
}

.divider-text {
    position: absolute;

    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;

    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;

    padding: 0 22px;

    z-index: 3;

    transition:
        opacity .42s ease,
        transform .42s ease,
        color .42s ease,
        text-shadow .42s ease;

    user-select: none;
    pointer-events: none;
}

.divider-default {
    color: #ffb000;

    opacity: .96;

    text-shadow:
        0 0 12px rgba(255, 176, 0, .35),
        0 2px 0 rgba(0, 0, 0, .9);
}

.divider-hover {
    color: #ff3b2f;

    opacity: 0;
    transform: translateY(8px) scale(.96);

    text-shadow:
        0 0 12px rgba(255, 59, 47, .65),
        0 0 28px rgba(255, 59, 47, .45),
        0 2px 0 rgba(0, 0, 0, .9);
}

.extinction-divider:hover .divider-default {
    opacity: 0;
    transform: translateY(-8px) scale(1.04);
}

.extinction-divider:hover .divider-hover {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes dividerEmbers {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-180px);
    }
}






/* =========================================
   PROMO SECTION
========================================= */

.promo-section {
    position: relative;
    z-index: 4;
    width: 100%;
    height: 760px;
    overflow: hidden;
    background: #040404;
    color: #fff;
}

.promo-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .96;
}

.promo-wrap {
    position: relative;
    width: 1500px;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    z-index: 2;
}

/* CENTER BANNER */

.promo-board {
    position: absolute;
    left: 52%;
    top: 48%;
    width: 870px;
    height: 555px;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.promo-board-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: fill;
    filter:
        brightness(.42)
        contrast(1.38)
        saturate(1.25)
        drop-shadow(0 0 34px rgba(255,120,0,.24));
}

.promo-board::after {
    content: "";
    position: absolute;
    inset: 60px 85px 70px 160px;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 35% 30%, rgba(255,150,0,.18), transparent 38%),
        linear-gradient(90deg, rgba(0,0,0,.52), rgba(0,0,0,.16) 52%, rgba(0,0,0,.42));
}

/* CONTENT */

.promo-board-content {
    position: absolute;
    inset: 58px 95px 70px 245px;
    z-index: 2;
}

.promo-kicker {
    margin-bottom: 16px;
    color: rgba(255,180,45,.9);
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.promo-kicker::before {
    content: "///";
    margin-right: 10px;
    color: #ff9800;
}

/* TITLE */

.promo-title {
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: .82;
    letter-spacing: -3px;
    text-transform: uppercase;
    font-weight: 900;
}

.promo-title-white,
.promo-title-orange {
    display: block;
    font-size: 66px;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-repeat: repeat, no-repeat;
    background-size: 420px 420px, 100% 100%;
    background-blend-mode: screen;
    filter: contrast(1.14);
}

.promo-title-white {
    background-image:
        url("img/text-noise.png"),
        linear-gradient(180deg, #ffffff 0%, #dfdfdf 45%, #777777 100%);
}

.promo-title-orange {
    background-image:
        url("img/text-noise.png"),
        linear-gradient(180deg, #ffc83d 0%, #f0a000 48%, #8b4b00 100%);
}

/* TEXT */

.promo-copy {
    width: 470px;
    margin-bottom: 20px;
}

.promo-copy p {
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    text-shadow: 0 4px 14px rgba(0,0,0,.95);
}

.promo-warning {
    width: 500px;
    margin-bottom: 26px;
    padding-left: 18px;
    border-left: 3px solid #f0a000;
    color: #ffb21c;
    font-size: 22px;
    line-height: 1.22;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 4px 14px rgba(0,0,0,.9);
}

/* BUTTON */

.promo-btn {
    width: 280px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffc73c 0%, #f0a100 45%, #d88400 100%);
    color: #080808;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow:
        0 0 26px rgba(255,140,0,.28),
        inset 0 -2px 0 rgba(0,0,0,.22);
}

/* OLD ITEMS OFF */

.promo-item,
.promo-line,
.promo-cube,
.promo-message,
.promo-slogan,
.promo-note {
    display: none;
}

/* DINOSAURS */

.promo-dino {
    position: absolute;
    z-index: 7;
    pointer-events: none;
    user-select: none;
}

.promo-dino-left {
    left: -290px;
    bottom: -5px;
    width: 900px;
    filter:
        drop-shadow(0 0 38px rgba(255,120,0,.18));
}

.promo-dino-right {
    right: -130px;
    bottom: -115px;
    width: 790px;
    opacity: .94;
    filter:
        grayscale(.2)
        brightness(.78)
        contrast(1.08)
        drop-shadow(0 0 20px rgba(255,255,255,.05));
}

/* SIDE TEXTS */

.promo-left-text,
.promo-right-text {
    position: absolute;
    z-index: 9;
    font-size: 25px;
    line-height: 1.05;
    font-weight: 900;
    text-shadow: 0 4px 10px rgba(0,0,0,.75);
}

.promo-left-text span,
.promo-right-text span {
    display: block;
    color: #fff;
}

.promo-left-text strong,
.promo-right-text strong {
    display: block;
    color: #ff9800;
}

.promo-left-text {
    left: 185px;
    top: 175px;
    transform: rotate(-6deg);
}

.promo-right-text {
    right: 90px;
    top: 285px;
    transform: rotate(-8deg);
}

.promo-arrow {
    margin-top: 12px;
    font-size: 64px;
    line-height: 1;
    color: #fff;
    text-align: center;
}








/* =========================================
   WHY SECTION
========================================= */

.why-section {
    position: relative;
    z-index: 5;
    width: 100%;
    min-height: 1040px;
    height: auto;
    overflow: hidden;
    background: #030303;
    color: #fff;
    padding: 70px 0 90px;
}

.why-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    opacity: .72;
    z-index: 1;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .98) 0%,
            rgba(0, 0, 0, .96) 30%,
            rgba(0, 0, 0, .78) 55%,
            rgba(0, 0, 0, .90) 100%
        ),
        radial-gradient(
            circle at 78% 74%,
            rgba(255, 155, 0, .20),
            rgba(0, 0, 0, 0) 36%
        );
}

.why-wrap {
    position: relative;
    z-index: 5;
    width: 1320px;
    max-width: calc(100% - 80px);
    margin: 0 auto;
}

/* HEAD */

.why-head {
    max-width: 1120px;
    margin: 0 auto 52px;
    text-align: center;
}

.why-title {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 22px;
    margin: 0 0 30px;
    text-transform: uppercase;
}

.why-title-big {
    font-size: 94px;
    line-height: .78;
    font-weight: 950;
    letter-spacing: -4px;
    color: #ffb000;
}

.why-title-lines {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 2px;
    font-size: 44px;
    line-height: .98;
    font-weight: 950;
    letter-spacing: -1.4px;
}

.why-title .white,
.why-title .orange,
.why-title-big {
    background-size: 420px 420px, 100% 100%;
    background-position: center, center;
    background-repeat: repeat, no-repeat;
    background-blend-mode: screen;

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;

    filter: contrast(1.15);
}

.why-title .white {
    background-image:
        linear-gradient(180deg, #ffffff 0%, #f6f6f6 44%, #c9c9c9 100%),
        url("img/text-noise.png");
}

.why-title .orange,
.why-title-big {
    background-image:
        linear-gradient(180deg, #ffc832 0%, #ffae00 55%, #db8200 100%),
        url("img/text-noise.png");
}

.why-head p {
    max-width: 1040px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.55;
    font-weight: 500;
    color: rgba(255, 255, 255, .86);
}

/* FORMULA */

.why-formula {
    position: relative;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto 72px;
    display: grid;
    grid-template-columns: 1fr 70px 1fr 70px 1fr;
    align-items: start;
    gap: 0;
}

.why-formula::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 30px;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(255, 176, 0, .75),
        rgba(255, 255, 255, .22),
        rgba(255, 176, 0, .75)
    );
    opacity: .65;
}

.why-formula .dot {
    position: absolute;
    top: 25px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffb000;
    box-shadow: 0 0 22px rgba(255, 176, 0, .55);
    z-index: 3;
}

.why-formula .dot:first-child {
    left: 0;
}

.why-formula .dot:last-child {
    right: 0;
}

.why-stat {
    position: relative;
    z-index: 4;
    text-align: center;
}

.why-stat strong {
    display: block;
    margin-bottom: 8px;
    font-size: 36px;
    line-height: 1;
    font-weight: 900;
    color: #ffb000;
}

.why-stat span {
    display: block;
    font-size: 16px;
    line-height: 1.35;
    color: rgba(255, 255, 255, .86);
}

.why-plus {
    position: relative;
    z-index: 4;
    width: 46px;
    height: 46px;
    margin: 5px auto 0;
    border-radius: 50%;
    background: #ffb000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 28px;
    font-weight: 900;
    box-shadow:
        0 0 24px rgba(255, 176, 0, .55),
        0 0 44px rgba(255, 176, 0, .22);
}

/* CONTENT */

.why-content {
    display: grid;
    grid-template-columns: 560px 1fr;
    align-items: end;
    gap: 50px;
}

.why-left {
    position: relative;
    z-index: 8;
    padding-top: 8px;
}

.why-left h3 {
    margin: 0 0 36px;
    font-size: 30px;
    line-height: 1.28;
    font-weight: 850;
    color: #fff;
}

.why-left h3 span {
    color: #ffb000;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 34px;
    margin-bottom: 42px;
}

.why-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: start;
    gap: 16px;
}

.why-item img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.why-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.48;
    color: rgba(255, 255, 255, .88);
}

.why-item p b {
    color: #ffb000;
}

.why-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 310px;
    height: 62px;
    padding: 0 34px;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffc42d 0%, #efa000 100%);
    color: #111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .4px;
    text-transform: uppercase;
    box-shadow: 0 16px 34px rgba(255, 176, 0, .20);
    transition: .3s ease;
}

.why-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 46px rgba(255, 176, 0, .32);
}

/* RIGHT VISUAL */

.why-right {
    position: relative;
    height: 460px;
    z-index: 7;
}

.why-heroes {
    position: absolute;
    right: -40px;
    bottom: 0;
    width: 710px;
    max-width: none;
    filter:
        drop-shadow(0 0 45px rgba(0, 0, 0, .9))
        drop-shadow(0 0 22px rgba(255, 140, 0, .12));
    animation: whyFloat 6s ease-in-out infinite;
}

.why-badge {
    position: absolute;
    right: 40px;
    bottom: 24px;
    width: 500px;
    min-height: 88px;
    padding: 20px 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(180deg, rgba(18,18,18,.96), rgba(7,7,7,.97));
    border: 1px solid rgba(255, 176, 0, .16);
    box-shadow: 0 0 36px rgba(0, 0, 0, .65);
    z-index: 8;
}

.why-target {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #ffb000;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255,176,0,.18), rgba(255,176,0,0) 70%);
}

.why-badge p {
    margin: 0;
    font-size: 16px;
    line-height: 1.42;
    color: rgba(255, 255, 255, .88);
}

.why-badge p b {
    display: block;
    margin-bottom: 2px;
    color: #ffb000;
    font-weight: 900;
}

/* ANIMATION */

@keyframes whyFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}




/* =========================================
   SMOKE TRANSITION
========================================= */

.smoke-transition {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 130px;

    margin-top: -65px;
    margin-bottom: -65px;

    overflow: hidden;
    background: transparent;

    z-index: 50;
    pointer-events: none;
}

.smoke-transition::before {
    content: '';
    position: absolute;

    left: 0;
    top: 50%;

    width: 100%;
    height: 170px;

    transform: translateY(-50%) scale(1.04);

    background-image: url("img/section-smoke-divider.png");
    background-repeat: repeat-x;
    background-size: auto 170px;
    background-position: center;

    opacity: .78;
    mix-blend-mode: screen;

    filter:
        blur(.2px)
        contrast(1.08);

    animation: smokeFloat 18s ease-in-out infinite;
}

.smoke-transition::after {
    content: '';
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            #000 0%,
            rgba(0,0,0,0) 10%,
            rgba(0,0,0,0) 90%,
            #000 100%
        ),
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 0%,
            rgba(0,0,0,.18) 50%,
            rgba(0,0,0,0) 100%
        );

    z-index: 2;
}

.smoke-top {
    margin-top: -60px;
    margin-bottom: -70px;
}

.smoke-bottom {
    margin-top: -70px;
    margin-bottom: -60px;
}

@keyframes smokeFloat {
    0% {
        background-position: center;
    }

    50% {
        background-position: calc(50% + 24px) center;
    }

    100% {
        background-position: center;
    }
}

body {
    overflow-x: hidden;
    overflow-y: auto;
}

main {
    overflow: hidden;
}



/* =========================================
   INCLUDED SECTION
========================================= */

.included-section {
    position: relative;
    z-index: 6;
    width: 100%;
    min-height: 900px;
    overflow: hidden;
    background: #030303;
    color: #fff;
    padding: 64px 0 54px;
}

.included-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .98;
}

.included-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at 74% 36%, rgba(255,145,0,.34), transparent 28%),
        radial-gradient(circle at 63% 70%, rgba(255,120,0,.16), transparent 32%),
        linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.86) 34%, rgba(0,0,0,.30) 63%, rgba(0,0,0,.62) 100%),
        linear-gradient(180deg, rgba(0,0,0,.97) 0%, rgba(0,0,0,.10) 44%, rgba(0,0,0,.98) 100%);
}

.included-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background-image:
        radial-gradient(rgba(255,170,0,.42) 1px, transparent 1px),
        radial-gradient(rgba(255,90,0,.18) 1px, transparent 1px);
    background-size: 140px 92px, 210px 150px;
    background-position: 20px 30px, 80px 70px;
    opacity: .12;
    animation: includedAsh 20s linear infinite;
}

.included-glow {
    position: absolute;
    right: 2%;
    top: 10%;
    z-index: 3;
    width: 880px;
    height: 680px;
    background: radial-gradient(circle, rgba(255,145,0,.46) 0%, rgba(255,115,0,.18) 36%, transparent 70%);
    filter: blur(22px);
    opacity: .92;
    pointer-events: none;
}

.included-noise {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    opacity: .18;
    background:
        radial-gradient(circle at 76% 34%, rgba(255,180,0,.12), transparent 28%),
        radial-gradient(circle at 52% 84%, rgba(255,120,0,.10), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.025), transparent 28%, rgba(0,0,0,.18));
}

.included-ground-smoke {
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -86px;
    z-index: 20;
    height: 330px;
    pointer-events: none;
    background:
        radial-gradient(circle at 30% 52%, rgba(255,125,0,.12), transparent 34%),
        radial-gradient(circle at 61% 58%, rgba(255,135,0,.16), transparent 32%),
        radial-gradient(circle at 79% 54%, rgba(255,170,0,.09), transparent 30%),
        linear-gradient(180deg, transparent 0%, rgba(0,0,0,.70) 58%, #000 100%);
    filter: blur(9px);
    opacity: .9;
}

.included-wrap {
    position: relative;
    z-index: 10;
    width: 1500px;
    max-width: calc(100% - 96px);
    margin: 0 auto;
}

.included-head {
    position: relative;
    z-index: 30;
    max-width: 880px;
    margin-bottom: 42px;
}

.included-kicker {
    margin-bottom: 14px;
    color: #ffb000;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(255,176,0,.28);
}

.included-title {
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-transform: uppercase;
    font-weight: 950;
    line-height: .82;
    letter-spacing: -4px;
}

.included-title span,
.included-title strong {
    display: block;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-repeat: repeat, no-repeat;
    background-size: 420px 420px, 100% 100%;
    background-blend-mode: screen;
    filter:
        contrast(1.15)
        drop-shadow(0 5px 0 rgba(0,0,0,.48));
}

.included-title span {
    font-size: 80px;
    background-image:
        url("img/text-noise.png"),
        linear-gradient(180deg, #fff 0%, #e6e6e6 46%, #777 100%);
}

.included-title strong {
    font-size: 98px;
    background-image:
        url("img/text-noise.png"),
        linear-gradient(180deg, #ffc83d 0%, #f0a000 48%, #8b4b00 100%);
}

.included-head p {
    width: 760px;
    max-width: 100%;
    margin: 0;
    color: rgba(255,255,255,.86);
    font-size: 21px;
    line-height: 1.5;
    font-weight: 500;
}

.included-content {
    position: relative;
    z-index: 12;
    min-height: 520px;
}

.included-list {
    position: relative;
    z-index: 32;
    width: 700px;
    padding-top: 8px;
}

.included-item {
    position: relative;
    height: 38px;
    display: flex;
    align-items: center;
    color: rgba(255,255,255,.96);
    font-size: 17px;
    line-height: 1;
    font-weight: 850;
    text-shadow: 0 3px 12px rgba(0,0,0,.95);
}

.included-item::before {
    content: "";
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    margin-right: 14px;
    border: 1px solid rgba(255,176,0,.74);
    border-radius: 8px;
    background: rgba(0,0,0,.45);
    box-shadow:
        0 0 14px rgba(255,176,0,.18),
        inset 0 0 12px rgba(255,176,0,.08);
}

.included-item::after {
    content: "";
    position: absolute;
    left: 42px;
    top: 50%;
    height: 1px;
    z-index: -1;
    background: linear-gradient(
        90deg,
        rgba(255,176,0,.58),
        rgba(255,176,0,.32) 54%,
        rgba(255,176,0,.10) 100%
    );
    opacity: .62;
}

.included-item .line-dot {
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffb000;
    box-shadow:
        0 0 9px rgba(255,176,0,.9),
        0 0 18px rgba(255,176,0,.38);
    transform: translateY(-50%);
    z-index: 40;
}

/* линии к телу динозавра */
.included-list .item-1::after { right: -290px; top: 32px;}
.included-list .item-1 .line-dot { right: -294px;  top: 32px;}

.included-list .item-2::after { right: -320px;  top: 32px;}
.included-list .item-2 .line-dot { right: -324px;  top: 32px;}

.included-list .item-3::after { right: -140px;  top: 32px;}
.included-list .item-3 .line-dot { right: -144px;  top: 32px;}

.included-list .item-4::after { right: -310px;  top: 32px;}
.included-list .item-4 .line-dot { right: -314px;  top: 32px;}

.included-list .item-5::after { right: -175px;  top: 32px;}
.included-list .item-5 .line-dot { right: -179px;  top: 32px;}

.included-list .item-6::after { right: -105px;  top: 32px;}
.included-list .item-6 .line-dot { right: -109px;  top: 32px;}

.included-list .item-7::after { right: -135px;  top: 32px;}
.included-list .item-7 .line-dot { right: -139px;  top: 32px;}

.included-list .item-8::after { right: -195px;  top: 32px;}
.included-list .item-8 .line-dot { right: -199px;  top: 32px;}

.included-list .item-9::after { right: -160px;  top: 32px;}
.included-list .item-9 .line-dot { right: -164px;  top: 32px;}

.included-list .item-10::after { right: 65px;  top: 32px;}
.included-list .item-10 .line-dot { right: 69px;  top: 32px;}

.included-list .item-11::after { right: -150px;  top: 32px;}
.included-list .item-11 .line-dot { right: -154px; top: 32px; }

.included-list .item-12::after { right: 95px; top: 32px; }
.included-list .item-12 .line-dot { right: 99px; top: 32px; }

.included-dino-main {
    position: absolute;
    right: 150px;
    bottom: -60px;
    z-index: 25;
    width: 1120px;
    max-width: none;
    pointer-events: none;
    user-select: none;
    filter:
        brightness(.92)
        contrast(1.18)
        drop-shadow(0 0 52px rgba(0,0,0,.98))
        drop-shadow(0 0 42px rgba(255,120,0,.22));
    animation: includedDinoFloat 6s ease-in-out infinite;
}

.included-dino-mini {
    position: absolute;
    right: 158px;
    bottom: 122px;
    z-index: 34;
    width: 158px;
    max-width: none;
    pointer-events: none;
    user-select: none;
    filter:
        brightness(.90)
        contrast(1.08)
        saturate(.82)
        drop-shadow(0 0 28px rgba(0,0,0,.9))
        drop-shadow(0 0 16px rgba(255,150,0,.14));
}

.included-mini-note {
    position: absolute;
    right: 96px;
    bottom: 220px;
    z-index: 36;
    transform: rotate(-7deg);
    color: #fff;
    font-size: 22px;
    line-height: 1.04;
    font-weight: 900;
    text-shadow:
        0 4px 16px rgba(0,0,0,.95),
        0 0 18px rgba(255,176,0,.18);
}

.included-mini-note span,
.included-mini-note strong {
    display: block;
}

.included-mini-note strong {
    color: #ffb000;
}

.included-mini-note i {
    display: block;
    margin-top: 14px;
    margin-left: 78px;
    color: #ffb000;
    font-size: 54px;
    line-height: 1;
    font-style: normal;
    transform: rotate(18deg);
}

@keyframes includedAsh {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-210px);
    }
}

@keyframes includedDinoFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}






/* =========================================
   PRICE HERO SECTION
========================================= */

.price-hero-section {
    position: relative;
    z-index: 7;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #050505;
    color: #fff;
}

.price-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .92;
}

.price-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.82) 38%, rgba(0,0,0,.42) 70%, rgba(0,0,0,.70) 100%),
        linear-gradient(180deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.20) 45%, rgba(0,0,0,.96) 100%);
}

.price-hero-wrap {
    position: relative;
    z-index: 4;
    width: 1500px;
    max-width: calc(100% - 110px);
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.price-hero-copy {
    width: 720px;
    padding-left: 44px;
    border-left: 2px solid rgba(255,176,0,.85);
}

.price-hero-kicker {
    margin-bottom: 22px;
    color: #ffb000;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.price-hero-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-transform: uppercase;
    font-weight: 950;
    line-height: .88;
    letter-spacing: -3px;
}

.price-hero-title span,
.price-hero-title strong {
    display: block;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-repeat: repeat, no-repeat;
    background-size: 420px 420px, 100% 100%;
    background-blend-mode: screen;
    filter: contrast(1.14) drop-shadow(0 5px 0 rgba(0,0,0,.42));
}

.price-hero-title .white {
    font-size: 64px;
    background-image:
        url("img/text-noise.png"),
        linear-gradient(180deg, #fff 0%, #e8e8e8 46%, #7c7c7c 100%);
}

.price-hero-title .small {
    margin-top: 12px;
    font-size: 48px;
    letter-spacing: -1.8px;
}

.price-hero-title strong {
    font-size: 118px;
    background-image:
        url("img/text-noise.png"),
        linear-gradient(180deg, #ffc83d 0%, #f0a000 48%, #8b4b00 100%);
}

.price-hero-copy p {
    width: 700px;
    max-width: 100%;
    margin: 34px 0 0;
    color: rgba(255,255,255,.90);
    font-size: 22px;
    line-height: 1.55;
    font-weight: 500;
}

.price-hero-copy p b {
    display: block;
    margin-top: 8px;
    color: #ffb000;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 900;
}







/* =========================================
   PRICE PLANS SECTION
========================================= */

.price-plans-section {
    position: relative;
    z-index: 8;
    width: 100%;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 0%, rgba(255,176,0,.22), transparent 30%),
        radial-gradient(circle at 50% 78%, rgba(255,120,0,.13), transparent 34%),
        linear-gradient(180deg, #030303 0%, #101010 46%, #030303 100%);
    color: #fff;
    padding: 92px 0 120px;
}

.price-plans-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,176,0,.28) 1px, transparent 1px),
        radial-gradient(rgba(255,80,0,.16) 1px, transparent 1px);
    background-size: 130px 96px, 210px 150px;
    opacity: .18;
    pointer-events: none;
    animation: plansAsh 24s linear infinite;
}

.price-plans-section::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -120px;
    height: 320px;
    background:
        radial-gradient(circle at 48% 40%, rgba(255,140,0,.18), transparent 32%),
        linear-gradient(180deg, transparent 0%, rgba(0,0,0,.85) 72%, #000 100%);
    filter: blur(12px);
    pointer-events: none;
}

.price-plans-wrap {
    position: relative;
    z-index: 3;
    width: 1500px;
    max-width: calc(100% - 96px);
    margin: 0 auto;
}

.plans-head {
    max-width: 970px;
    margin: 0 auto 64px;
    text-align: center;
}

.plans-kicker {
    margin-bottom: 18px;
    color: #ffb000;
    font-size: 13px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0 0 24px rgba(255,176,0,.30);
}

.plans-head h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 60px;
    line-height: .92;
    font-weight: 950;
    letter-spacing: -2.5px;
    text-transform: uppercase;
    text-shadow: 0 6px 0 rgba(0,0,0,.55);
}

.plans-head p {
    max-width: 820px;
    margin: 0 auto;
    color: rgba(255,255,255,.78);
    font-size: 20px;
    line-height: 1.52;
}

.plans-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    align-items: stretch;
}

.plan-card {
    position: relative;
    min-height: 720px;
    padding: 44px 42px 38px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255,255,255,.98), rgba(238,232,218,.98)),
        radial-gradient(circle at 50% 0%, rgba(255,176,0,.18), transparent 40%);
    color: #090909;
    border: 1px solid rgba(255,176,0,.95);
    box-shadow:
        0 0 0 8px rgba(0,0,0,.46),
        0 0 0 9px rgba(255,176,0,.18),
        0 34px 90px rgba(0,0,0,.68);
}

.plan-card::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(0,0,0,.09);
    pointer-events: none;
}

.plan-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent, rgba(255,255,255,.52), transparent),
        radial-gradient(circle at 50% -10%, rgba(255,176,0,.30), transparent 32%);
    opacity: .55;
    pointer-events: none;
}

.plan-corner {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(#ffb000,#ffb000) left 18px top 18px / 54px 2px no-repeat,
        linear-gradient(#ffb000,#ffb000) left 18px top 18px / 2px 54px no-repeat,
        linear-gradient(#ffb000,#ffb000) right 18px top 18px / 54px 2px no-repeat,
        linear-gradient(#ffb000,#ffb000) right 18px top 18px / 2px 54px no-repeat,
        linear-gradient(#ffb000,#ffb000) left 18px bottom 18px / 54px 2px no-repeat,
        linear-gradient(#ffb000,#ffb000) left 18px bottom 18px / 2px 54px no-repeat,
        linear-gradient(#ffb000,#ffb000) right 18px bottom 18px / 54px 2px no-repeat,
        linear-gradient(#ffb000,#ffb000) right 18px bottom 18px / 2px 54px no-repeat;
    opacity: .78;
    z-index: 2;
}

.plan-card > * {
    position: relative;
    z-index: 4;
}

.plan-card-featured {
    transform: translateY(-28px);
    background:
        radial-gradient(circle at 50% 0%, rgba(255,176,0,.24), transparent 35%),
        linear-gradient(180deg, #171717 0%, #070707 100%);
    color: #fff;
    border-color: #ffb000;
    box-shadow:
        0 0 0 8px rgba(0,0,0,.52),
        0 0 64px rgba(255,176,0,.34),
        0 44px 100px rgba(0,0,0,.75);
}

.plan-card-featured::before {
    border-color: rgba(255,176,0,.20);
}

.plan-card-featured::after {
    background:
        radial-gradient(circle at 50% 0%, rgba(255,176,0,.24), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,.06), transparent 44%);
}

.popular-badge {
    position: absolute;
    left: 50%;
    top: -1px;
    transform: translateX(-50%);
    min-width: 210px;
    height: 46px;
    padding: 0 24px;
    background: linear-gradient(180deg, #ffc42d, #efa000);
    clip-path: polygon(12% 0, 88% 0, 100% 50%, 88% 100%, 12% 100%, 0 50%);
    color: #080808;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    box-shadow: 0 18px 38px rgba(255,176,0,.30);
    z-index: 8;
}

.plan-label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 22px;
    padding: 10px 16px;
    background: #090909;
    color: #ffb000;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 3px;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 1px rgba(255,176,0,.18);
}

.plan-card-featured .plan-label {
    background: rgba(255,176,0,.12);
    box-shadow: inset 0 0 0 1px rgba(255,176,0,.38);
}

.plan-top h3 {
    margin: 0 0 18px;
    font-size: 34px;
    line-height: 1.06;
    font-weight: 950;
    letter-spacing: -1.2px;
}

.plan-top p {
    margin: 0 0 28px;
    color: rgba(0,0,0,.72);
    font-size: 18px;
    line-height: 1.45;
}

.plan-card-featured .plan-top p {
    color: rgba(255,255,255,.75);
}

.plan-time {
    margin-bottom: 28px;
    padding: 17px 20px;
    background: linear-gradient(90deg, rgba(255,176,0,.16), rgba(255,176,0,.04));
    border-left: 4px solid #ffb000;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 800;
}

.plan-card-featured .plan-time {
    background: rgba(255,176,0,.11);
    color: #fff;
}

.plan-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.plan-card li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 16px;
    color: rgba(0,0,0,.82);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}

.plan-card-featured li {
    color: rgba(255,255,255,.84);
}

.plan-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background:
        linear-gradient(135deg, #ffc42d, #efa000);
    box-shadow: 0 0 14px rgba(255,176,0,.28);
}

.plan-card li::after {
    content: "✓";
    position: absolute;
    left: 4px;
    top: 0;
    color: #111;
    font-size: 13px;
    font-weight: 950;
}

.plan-price {
    margin-top: auto;
    padding-top: 34px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    column-gap: 12px;
    row-gap: 5px;
}

.plan-price span {
    margin-bottom: 9px;
    color: rgba(0,0,0,.56);
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.plan-card-featured .plan-price span {
    color: rgba(255,255,255,.56);
}

.plan-price strong {
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(180deg, #ffc83d 0%, #f0a000 52%, #b36500 100%);
    font-size: 58px;
    line-height: .9;
    font-weight: 950;
    letter-spacing: -2px;
}

.plan-price em {
    grid-column: 2;
    color: rgba(0,0,0,.56);
    font-size: 14px;
    line-height: 1;
    font-style: normal;
    font-weight: 800;
}

.plan-card-featured .plan-price em {
    color: rgba(255,255,255,.56);
}

.plan-btn {
    width: 100%;
    height: 60px;
    margin-top: 30px;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffc42d 0%, #efa000 100%);
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 15px;
    font-weight: 950;
    text-transform: uppercase;
    box-shadow:
        0 18px 34px rgba(255,176,0,.22),
        inset 0 -2px 0 rgba(0,0,0,.20);
    transition: .28s ease;
}

.plan-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 22px 44px rgba(255,176,0,.32),
        inset 0 -2px 0 rgba(0,0,0,.20);
}

@keyframes plansAsh {
    from { transform: translateX(0); }
    to { transform: translateX(-210px); }
}


.plans-mobile-hint {
    display: none;
}




/* =========================================
   ZEITPLAN SECTION
========================================= */

.zeit-section {
    position: relative;
    width: 100%;
    padding: 115px 20px 135px;
    background:
        radial-gradient(circle at 72% 24%, rgba(255, 170, 0, .18), transparent 34%),
        radial-gradient(circle at 22% 78%, rgba(255, 130, 0, .14), transparent 30%),
        linear-gradient(180deg, #030303 0%, #090604 50%, #030303 100%);
    overflow: hidden;
}

.zeit-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("img/bg-zeit.png") center / cover no-repeat;
    opacity: .14;
    filter: contrast(1.3) brightness(.65);
}

.zeit-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #000 0%, transparent 16%, transparent 84%, #000 100%),
        linear-gradient(180deg, #000 0%, transparent 22%, transparent 80%, #000 100%);
}

.zeit-container {
    position: relative;
    z-index: 2;
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
}

.zeit-panel {
    position: relative;
    display: grid;
    grid-template-columns: 43% 57%;
    min-height: 720px;
    border: 1px solid rgba(255, 176, 0, .22);
    background:
        linear-gradient(90deg, #f6a900 0 43%, #111016 43% 100%);
    box-shadow:
        0 50px 90px rgba(0,0,0,.82),
        0 0 85px rgba(255, 170, 0, .13);
    overflow: hidden;
}

.zeit-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0 1px, transparent 1px 7px),
        radial-gradient(circle at 35% 44%, rgba(255,255,255,.18), transparent 34%),
        radial-gradient(circle at 75% 38%, rgba(255,176,0,.14), transparent 40%);
    pointer-events: none;
}

.zeit-panel::after {
    content: "";
    position: absolute;
    left: 43%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255,176,0,.28);
    box-shadow: 0 0 35px rgba(255,176,0,.35);
}

.zeit-left,
.zeit-right {
    position: relative;
    z-index: 2;
}

.zeit-left {
    min-height: 720px;
    padding: 76px 62px 52px;
}

.zeit-kicker {
    margin-bottom: 34px;
    color: #111;
    font-size: 14px;
    font-weight: 1000;
    letter-spacing: 5px;
}

.zeit-left h2 {
    margin: 0;
    color: #111;
    font-size: clamp(58px, 5.8vw, 96px);
    line-height: .84;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: -4px;
}

.zeit-left h2 span {
    color: #fff;
    text-shadow:
        0 8px 0 rgba(0,0,0,.14),
        0 22px 26px rgba(0,0,0,.22);
}

.zeit-left p {
    position: relative;
    z-index: 5;
    width: 76%;
    margin: 34px 0 0;
    color: #151515;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 700;
}

.zeit-note {
    position: absolute;
    left: 36px;
    bottom: 310px;
    z-index: 6;
    max-width: 315px;
    color: #1a1000;
    font-family: cursive;
    font-size: 20px;
    line-height: 1.1;
    transform: rotate(-17deg);
}

.zeit-note span {
    position: absolute;
    left: 125px;
    top: 58px;
    width: 20px;
    height: 2px;
    background: #171000;
    transform: rotate(38deg);
    border-radius: 999px;
}

.zeit-note span::before,
.zeit-note span::after {
    content: "";
    position: absolute;
    right: -2px;
    width: 18px;
    height: 3px;
    background: #171000;
    border-radius: 999px;
}

.zeit-note span::before {
    top: -5px;
    transform: rotate(42deg);
}

.zeit-note span::after {
    top: 5px;
    transform: rotate(-42deg);
}

.zeit-skelet {
    position: absolute;
    right: 42px;
    bottom: 36px;
    z-index: 4;
    width: 84%;
    max-width: 720px;
    filter:
        grayscale(1)
        contrast(1.15)
        drop-shadow(0 24px 18px rgba(0,0,0,.38));
}

.zeit-right {
    min-height: 720px;
    padding: 76px 70px 58px;
    background:
        radial-gradient(circle at 65% 20%, rgba(255,176,0,.12), transparent 35%),
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
}

.zeit-table-wrap {
    position: relative;
}

.zeit-table-wrap::before {
    content: "";
    position: absolute;
    inset: -22px;
    background:
        radial-gradient(circle at center, rgba(255,176,0,.18), transparent 62%);
    filter: blur(12px);
    z-index: -1;
}

.zeit-table {
    display: grid;
    grid-template-columns: 1.9fr .42fr .42fr .42fr;
    border: 1px solid rgba(255,255,255,.18);
    background: #efefef;
    box-shadow: 0 26px 38px rgba(0,0,0,.45);
}

.zeit-table > * {
    min-height: 43px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    color: #17151f;
    font-size: 15px;
    font-weight: 500;
    border-right: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
}

.zeit-table .zt-head {
    justify-content: center;
    background: #17141e;
    color: #fff;
    font-size: 16px;
    font-weight: 1000;
}

.zeit-table b,
.zeit-table i {
    display: block;
    padding: 0;
}

.zeit-table b {
    background:
        linear-gradient(180deg, rgba(255,255,255,.18), transparent),
        linear-gradient(180deg, #ffb500, #f39b00);
}

.zeit-table i {
    background: #f1f1f1;
}

.zeit-result {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 19px 22px;
    background: #17141e;
    color: #fff;
    font-size: 21px;
    font-weight: 1000;
    text-align: center;
    box-shadow: 0 20px 28px rgba(0,0,0,.38);
}

.zeit-result strong {
    color: #ffb300;
}

.zeit-cinema-text {
    position: relative;
    margin-top: 58px;
    padding: 0 0 0 34px;
    border-left: 3px solid #ffb000;
}

.zeit-cinema-text::before {
    content: "";
    position: absolute;
    left: -3px;
    top: 0;
    width: 3px;
    height: 72px;
    background: #ffb000;
    box-shadow: 0 0 22px rgba(255,176,0,.75);
}

.zeit-cinema-text small {
    display: block;
    margin-bottom: 16px;
    color: #ffb000;
    font-size: 13px;
    font-weight: 1000;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.zeit-cinema-text p {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-size: 30px;
    line-height: 1.18;
    font-weight: 1000;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.zeit-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: fit-content;
    margin: 58px auto 0;
    padding: 22px 66px;
    border-radius: 999px;
    background:
        linear-gradient(180deg, #ffd45f 0%, #ffb000 48%, #e89200 100%);
    color: #120b00;
    font-size: 15px;
    font-weight: 1000;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: .5px;
    box-shadow:
        0 0 50px rgba(255,176,0,.5),
        0 15px 30px rgba(0,0,0,.55),
        inset 0 2px 0 rgba(255,255,255,.65);
    transition: .25s ease;
    overflow: hidden;
}

.zeit-btn::before {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,.45);
}

.zeit-btn span {
    font-size: 21px;
    transition: .25s ease;
}

.zeit-btn:hover {
    transform: translateY(-4px) scale(1.025);
}

.zeit-btn:hover span {
    transform: translateX(5px);
}

/* RESPONSIVE */







/* =========================================
   STEPS SECTION
========================================= */

.steps-section {
    position: relative;
    z-index: 9;
    width: 100%;
    padding: 115px 0 125px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 0%, rgba(255,176,0,.20), transparent 32%),
        radial-gradient(circle at 16% 74%, rgba(255,120,0,.12), transparent 34%),
        linear-gradient(180deg, #030303 0%, #090909 48%, #030303 100%);
    color: #fff;
}

.steps-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,176,0,.26) 1px, transparent 1px),
        radial-gradient(rgba(255,80,0,.14) 1px, transparent 1px);
    background-size: 130px 96px, 220px 160px;
    opacity: .16;
    animation: stepsAsh 24s linear infinite;
    pointer-events: none;
}

.steps-section::after {
    content: "";
    position: absolute;
    left: -12%;
    right: -12%;
    bottom: -140px;
    height: 330px;
    background:
        radial-gradient(circle at 50% 35%, rgba(255,150,0,.17), transparent 34%),
        linear-gradient(180deg, transparent 0%, rgba(0,0,0,.86) 72%, #000 100%);
    filter: blur(14px);
    pointer-events: none;
}

.steps-wrap {
    position: relative;
    z-index: 3;
    width: 1500px;
    max-width: calc(100% - 96px);
    margin: 0 auto;
}

.steps-head {
    max-width: 1120px;
    margin: 0 auto 58px;
    text-align: center;
}

.steps-kicker {
    margin-bottom: 18px;
    color: #ffb000;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0 0 24px rgba(255,176,0,.30);
}

.steps-head h2 {
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    font-weight: 950;
    line-height: .9;
    letter-spacing: -2.6px;
}

.steps-head h2 span,
.steps-head h2 strong {
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-repeat: repeat, no-repeat;
    background-size: 420px 420px, 100% 100%;
    background-blend-mode: screen;
    filter: contrast(1.15) drop-shadow(0 5px 0 rgba(0,0,0,.45));
}

.steps-head h2 span {
    font-size: 54px;
    background-image:
        url("img/text-noise.png"),
        linear-gradient(180deg, #fff 0%, #e6e6e6 46%, #777 100%);
}

.steps-head h2 strong {
    font-size: 66px;
    background-image:
        url("img/text-noise.png"),
        linear-gradient(180deg, #ffc83d 0%, #f0a000 48%, #8b4b00 100%);
}

.steps-head p {
    max-width: 900px;
    margin: 0 auto;
    color: rgba(255,255,255,.78);
    font-size: 20px;
    line-height: 1.55;
}

.steps-tabs {
    position: relative;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 0;
    max-width: 1320px;
    margin: 0 auto 72px;
}

.steps-tabs::before {
    content: "";
    position: absolute;
    left: 5.5%;
    right: 5.5%;
    top: 84px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,176,0,.85), rgba(255,255,255,.26), rgba(255,176,0,.85), transparent);
    box-shadow: 0 0 24px rgba(255,176,0,.28);
}

.steps-tab {
    position: relative;
    z-index: 2;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,.72);
    cursor: pointer;
    padding: 0 8px 34px;
    text-align: center;
    font-family: inherit;
}

.steps-tab b {
    display: block;
    margin-bottom: 12px;
    font-size: 34px;
    line-height: 1;
    font-weight: 950;
    color: #fff;
    transition: .25s ease;
}

.steps-tab span {
    display: inline-block;
    font-size: 15px;
    font-weight: 850;
    border-bottom: 1px solid rgba(255,255,255,.18);
    padding-bottom: 2px;
    transition: .25s ease;
}

.steps-tab::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 77px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow:
        0 0 13px rgba(255,255,255,.75),
        0 0 26px rgba(255,255,255,.28);
    transition: .25s ease;
}

.steps-tab.active b,
.steps-tab:hover b {
    color: #ffb000;
}

.steps-tab.active span,
.steps-tab:hover span {
    color: #ffb000;
    border-color: rgba(255,176,0,.75);
}

.steps-tab.active::after {
    width: 16px;
    height: 16px;
    top: 77px;
    background: #ffb000;
    box-shadow:
        0 0 18px rgba(255,176,0,.95),
        0 0 40px rgba(255,176,0,.42);
}

.steps-content {
    max-width: 1180px;
    margin: 0 auto;
}

.steps-panel {
    display: none;
    grid-template-columns: 180px 1fr;
    gap: 42px;
    align-items: start;
    padding: 48px 54px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
        radial-gradient(circle at 0% 0%, rgba(255,176,0,.18), transparent 38%);
    border: 1px solid rgba(255,176,0,.22);
    box-shadow:
        0 34px 90px rgba(0,0,0,.62),
        inset 0 0 0 1px rgba(255,255,255,.035);
}

.steps-panel.active {
    display: grid;
    animation: stepsFade .35s ease;
}

.steps-number {
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(180deg, #ffc83d 0%, #f0a000 48%, #8b4b00 100%);
    font-size: 112px;
    line-height: .8;
    font-weight: 950;
    letter-spacing: -5px;
}

.steps-panel h3 {
    margin: 0 0 22px;
    color: #ffb000;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 950;
}

.steps-panel p {
    max-width: 820px;
    margin: 0 0 28px;
    color: rgba(255,255,255,.88);
    font-size: 20px;
    line-height: 1.55;
    font-weight: 500;
}

.steps-panel ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps-panel li {
    position: relative;
    padding-left: 34px;
    color: rgba(255,255,255,.82);
    font-size: 16px;
    line-height: 1.42;
    font-weight: 750;
}

.steps-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 19px;
    height: 19px;
    border-radius: 5px;
    background: linear-gradient(135deg, #ffc42d, #efa000);
    box-shadow: 0 0 14px rgba(255,176,0,.28);
}

.steps-panel li::after {
    content: "✓";
    position: absolute;
    left: 5px;
    top: 0;
    color: #111;
    font-size: 13px;
    font-weight: 950;
}

@keyframes stepsFade {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes stepsAsh {
    from { transform: translateX(0); }
    to { transform: translateX(-220px); }
}







/* =========================================
   AUDIT SECTION
========================================= */
.audit-checkbox a {
    color: #ffb000;
    font-weight: 950;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.audit-checkbox a:hover {
    color: #ffc847;
}

.audit-section {
    position: relative;
    z-index: 10;
    width: 100%;
    overflow: hidden;
    padding: 105px 0 110px;
    background:
        radial-gradient(circle at 28% 48%, rgba(255,176,0,.24), transparent 34%),
        radial-gradient(circle at 78% 42%, rgba(255,255,255,.06), transparent 30%),
        linear-gradient(180deg, #050505 0%, #0b0b0b 48%, #030303 100%);
    color: #fff;
}

.audit-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,176,0,.20) 1px, transparent 1px),
        radial-gradient(rgba(255,90,0,.12) 1px, transparent 1px);
    background-size: 130px 100px, 220px 160px;
    opacity: .16;
    pointer-events: none;
}

.audit-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #000 0%, transparent 14%, transparent 86%, #000 100%),
        linear-gradient(180deg, #000 0%, transparent 18%, transparent 82%, #000 100%);
    pointer-events: none;
}

.audit-wrap {
    position: relative;
    z-index: 2;
    width: 1500px;
    max-width: calc(100% - 96px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}

.audit-left {
    position: relative;
    min-height: 640px;
}

.audit-kicker {
    margin-bottom: 18px;
    color: #ffb000;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.audit-title {
    position: relative;
    z-index: 3;
    margin: 0;
    max-width: 790px;
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    font-weight: 950;
    line-height: .92;
    letter-spacing: -2.5px;
}

.audit-title span,
.audit-title strong {
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-repeat: repeat, no-repeat;
    background-size: 420px 420px, 100% 100%;
    background-blend-mode: screen;
    filter: contrast(1.15) drop-shadow(0 5px 0 rgba(0,0,0,.45));
}

.audit-title span {
    font-size: 58px;
    background-image:
        url("img/text-noise.png"),
        linear-gradient(180deg, #fff 0%, #e7e7e7 45%, #747474 100%);
}

.audit-title strong {
    font-size: 78px;
    background-image:
        url("img/text-noise.png"),
        linear-gradient(180deg, #ffc83d 0%, #f0a000 48%, #8b4b00 100%);
}

.audit-text {
    position: relative;
    z-index: 3;
    max-width: 720px;
    margin: 30px 0 0;
    color: rgba(255,255,255,.82);
    font-size: 21px;
    line-height: 1.55;
    font-weight: 600;
}

.audit-dino {
    position: absolute;
    left: 60px;
    bottom: -20px;
    z-index: 2;
    width: 720px;
    max-width: none;
    filter:
        drop-shadow(0 0 38px rgba(255,176,0,.18))
        drop-shadow(0 28px 34px rgba(0,0,0,.80));
}

.audit-note {
    position: absolute;
    left: 105px;
    bottom: 270px;
    z-index: 4;
    color: #fff;
    font-family: cursive;
    font-size: 23px;
    line-height: 1.1;
    transform: rotate(-8deg);
    text-shadow: 0 4px 14px rgba(0,0,0,.9);
}

.audit-note span {
    position: absolute;
    left: 150px;
    top: 68px;
    width: 70px;
    height: 2px;
    background: #fff;
    transform: rotate(28deg);
    border-radius: 999px;
}

.audit-note span::before,
.audit-note span::after {
    content: "";
    position: absolute;
    right: -2px;
    width: 15px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
}

.audit-note span::before {
    top: -5px;
    transform: rotate(42deg);
}

.audit-note span::after {
    top: 5px;
    transform: rotate(-42deg);
}

/* FORM */

.audit-form-card {
    position: relative;
    padding: 58px 58px 50px;
    border: 1px solid rgba(255,176,0,.22);
    border-radius: 26px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255,176,0,.13), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
    box-shadow:
        0 38px 90px rgba(0,0,0,.72),
        inset 0 0 0 1px rgba(255,255,255,.04);
}

.audit-form h3 {
    margin: 0 0 34px;
    color: #fff;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 950;
}

.audit-form label {
    display: block;
    margin-bottom: 22px;
    color: rgba(255,255,255,.88);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
}

.audit-form label span {
    color: #ffb000;
    font-size: 13px;
}

.audit-form input:not([type="checkbox"]) {
    width: 100%;
    height: 58px;
    margin-top: 10px;
    padding: 0 18px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 11px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 17px;
    outline: none;
    box-shadow: inset 0 4px 12px rgba(0,0,0,.28);
}

.audit-form input:focus {
    border-color: rgba(255,176,0,.75);
    box-shadow:
        0 0 0 3px rgba(255,176,0,.12),
        inset 0 4px 12px rgba(0,0,0,.28);
}

.audit-form button {
    width: 310px;
    height: 64px;
    margin: 10px 0 26px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffc42d 0%, #efa000 100%);
    color: #111;
    font-size: 16px;
    font-weight: 950;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow:
        0 18px 36px rgba(255,176,0,.26),
        inset 0 -2px 0 rgba(0,0,0,.20);
    transition: .25s ease;
}

.audit-form button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 24px 48px rgba(255,176,0,.36),
        inset 0 -2px 0 rgba(0,0,0,.20);
}

.audit-checkbox {
    display: grid !important;
    grid-template-columns: 24px 1fr;
    gap: 14px;
    align-items: start;
    margin: 0 !important;
    color: rgba(255,255,255,.72) !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    font-weight: 600 !important;
}

.audit-checkbox input {
    width: 22px;
    height: 22px;
    margin: 0;
    accent-color: #ffb000;
}





/* =========================================
   WORKER SECTION — PREMIUM
========================================= */

.worker-section {
    position: relative;
    z-index: 11;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #050505;
    color: #fff;
}

.worker-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.08) brightness(.72) saturate(1.08);
}

.worker-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at 76% 43%, rgba(255,176,0,.18), transparent 30%),
        radial-gradient(circle at 58% 72%, rgba(255,90,0,.12), transparent 34%),
        linear-gradient(90deg, rgba(0,0,0,.99) 0%, rgba(0,0,0,.95) 32%, rgba(0,0,0,.68) 58%, rgba(0,0,0,.40) 100%),
        linear-gradient(180deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.18) 48%, rgba(0,0,0,.98) 100%);
}

.worker-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: .13;
    background-image:
        linear-gradient(rgba(255,176,0,.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,176,0,.14) 1px, transparent 1px);
    background-size: 90px 90px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 38%, #000 88%, transparent 100%);
}

.worker-glow {
    position: absolute;
    right: 10%;
    top: 22%;
    z-index: 4;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,176,0,.34) 0%, rgba(255,110,0,.13) 38%, transparent 70%);
    filter: blur(24px);
    pointer-events: none;
}

.worker-big-word {
    position: absolute;
    z-index: 4;
    pointer-events: none;
    color: rgba(255,255,255,.035);
    font-size: 118px;
    line-height: 1;
    font-weight: 1000;
    letter-spacing: -6px;
    text-transform: uppercase;
}

.worker-word-1 {
    right: 120px;
    top: 110px;
}

.worker-word-2 {
    right: 420px;
    bottom: 180px;
}

.worker-word-3 {
    right: 110px;
    bottom: 70px;
    color: rgba(255,176,0,.045);
}

.worker-wrap {
    position: relative;
    z-index: 6;
    width: 1500px;
    max-width: calc(100% - 90px);
    min-height: 100vh;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 720px 1fr;
    align-items: center;
    gap: 70px;
}

.worker-content {
    position: relative;
    padding-left: 38px;
}

.worker-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: -38px;
    bottom: -38px;
    width: 2px;
    background: linear-gradient(180deg, transparent, #ffb000 12%, #ffb000 88%, transparent);
    box-shadow: 0 0 24px rgba(255,176,0,.38);
}

.worker-kicker {
    margin-bottom: 16px;
    color: #ffb000;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.worker-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    line-height: .86;
    text-transform: uppercase;
    letter-spacing: -3px;
}

.worker-title span,
.worker-title strong {
    width: fit-content;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-repeat: repeat, no-repeat;
    background-size: 420px 420px, 100% 100%;
    background-blend-mode: screen;
    filter: contrast(1.15) drop-shadow(0 5px 0 rgba(0,0,0,.52));
}

.worker-title span {
    font-size: 104px;
    font-weight: 1000;
    background-image:
        url("img/text-noise.png"),
        linear-gradient(180deg, #ffc83d 0%, #f0a000 52%, #7e4300 100%);
}

.worker-title strong {
    font-size: 50px;
    font-weight: 1000;
    background-image:
        url("img/text-noise.png"),
        linear-gradient(180deg, #fff 0%, #e8e8e8 46%, #727272 100%);
}

.worker-text {
    max-width: 610px;
    margin: 20px 0 0;
    color: rgba(255,255,255,.82);
    font-size: 18px;
    line-height: 1.55;
    font-weight: 600;
}

.worker-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
    margin-top: 34px;
    max-width: 650px;
}

.worker-list::before {
    content: "";
    position: absolute;
    left: 42px;
    right: 42px;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,176,0,.34), transparent);
    pointer-events: none;
}

.worker-item {
    position: relative;
    min-height: 92px;
    padding: 18px 18px 16px 78px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(255,176,0,.12), rgba(255,255,255,.03)),
        rgba(5,5,5,.46);
    border: 1px solid rgba(255,176,0,.18);
    border-left: 2px solid rgba(255,176,0,.74);
    box-shadow:
        0 20px 45px rgba(0,0,0,.26),
        inset 0 0 0 1px rgba(255,255,255,.035);
    overflow: hidden;
    transition: .28s ease;
}

.worker-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 18%, rgba(255,176,0,.22), transparent 34%),
        linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
    opacity: .55;
    pointer-events: none;
}

.worker-item::after {
    content: "";
    position: absolute;
    right: -28px;
    top: -28px;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 1px solid rgba(255,176,0,.16);
    box-shadow: inset 0 0 28px rgba(255,176,0,.08);
}

.worker-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255,176,0,.42);
    box-shadow:
        0 26px 58px rgba(0,0,0,.38),
        0 0 34px rgba(255,176,0,.12),
        inset 0 0 0 1px rgba(255,255,255,.05);
}

.worker-item b {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(180deg, #ffc83d 0%, #f0a000 52%, #7e4300 100%);
    font-size: 30px;
    line-height: 1;
    font-weight: 1000;
    letter-spacing: -1px;
}

.worker-item span {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,.96);
    font-size: 17px;
    line-height: 1.1;
    font-weight: 950;
}

.worker-item small {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 7px;
    color: rgba(255,255,255,.56);
    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
}

.worker-item-2,
.worker-item-5 {
    transform: translateY(10px);
}

.worker-item-2:hover,
.worker-item-5:hover {
    transform: translateY(6px);
}

.worker-bottom {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.worker-btn {
    position: relative;
    width: fit-content;
    color: #ffb000;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.worker-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background: rgba(255,176,0,.34);
}

.worker-btn::after {
    content: "";
    width: 8px;
    height: 8px;
    order: -1;
    border-radius: 50%;
    background: #ffb000;
    box-shadow: 0 0 16px rgba(255,176,0,.78);
}

.worker-btn:hover {
    color: #fff;
}

.worker-proof {
    max-width: 260px;
    padding-left: 18px;
    border-left: 1px solid rgba(255,176,0,.35);
}

.worker-proof b {
    display: block;
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 950;
    text-transform: uppercase;
}

.worker-proof span {
    display: block;
    margin-top: 5px;
    color: rgba(255,255,255,.55);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
}

.worker-visual {
    position: relative;
    min-height: 660px;
}

.worker-visual::before {
    content: "";
    position: absolute;
    left: 4%;
    right: 4%;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,176,0,.38), transparent);
    transform: rotate(-18deg);
}

.worker-visual::after {
    content: "";
    position: absolute;
    right: 10%;
    top: 19%;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 1px solid rgba(255,176,0,.14);
    box-shadow:
        0 0 60px rgba(255,176,0,.09),
        inset 0 0 70px rgba(255,176,0,.045);
}

.worker-ui-card {
    position: absolute;
    z-index: 8;
    width: 230px;
    min-height: 86px;
    padding: 18px 20px;
    background:
        linear-gradient(135deg, rgba(255,176,0,.13), rgba(255,255,255,.04)),
        rgba(6,6,6,.56);
    border: 1px solid rgba(255,176,0,.24);
    box-shadow:
        0 24px 60px rgba(0,0,0,.42),
        inset 0 0 0 1px rgba(255,255,255,.04);
    backdrop-filter: blur(4px);
}

.worker-ui-card span {
    display: block;
    margin-bottom: 8px;
    color: #ffb000;
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: 3px;
}

.worker-ui-card b {
    display: block;
    color: rgba(255,255,255,.88);
    font-size: 15px;
    line-height: 1.25;
    font-weight: 850;
}

.worker-ui-1 {
    right: 70px;
    top: 120px;
}

.worker-ui-2 {
    left: 20px;
    top: 250px;
}

.worker-ui-3 {
    right: 10px;
    bottom: 190px;
}

.worker-ui-4 {
    left: 125px;
    bottom: 90px;
}




/* =========================================
   FUNCTION SECTION
========================================= */

.function-section {
    position: relative;
    z-index: 12;
    width: 100%;
    overflow: hidden;
    padding: 120px 0 135px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255,176,0,.14), transparent 32%),
        radial-gradient(circle at 14% 82%, rgba(255,120,0,.08), transparent 30%),
        linear-gradient(180deg, #020202 0%, #070707 48%, #020202 100%);
    color: #fff;
}

.function-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,176,0,.16) 1px, transparent 1px),
        radial-gradient(rgba(255,90,0,.08) 1px, transparent 1px);
    background-size: 150px 110px, 250px 180px;
    opacity: .08;
    pointer-events: none;
    animation: functionAsh 30s linear infinite;
}

.function-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #000 0%, transparent 14%, transparent 86%, #000 100%),
        linear-gradient(180deg, #000 0%, transparent 18%, transparent 82%, #000 100%);
    pointer-events: none;
}

.function-wrap {
    position: relative;
    z-index: 3;
    width: 1500px;
    max-width: calc(100% - 96px);
    margin: 0 auto;
}

/* HEAD */

.function-head {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 92px;
}

.function-kicker {
    grid-column: 1 / -1;
    margin-bottom: -42px;
    color: #ffb000;
    font-size: 13px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.function-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    line-height: .86;
    letter-spacing: -3px;
    font-weight: 950;
}

.function-title span,
.function-title strong {
    width: fit-content;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-repeat: repeat, no-repeat;
    background-size: 420px 420px, 100% 100%;
    background-blend-mode: screen;
    filter: contrast(1.14) drop-shadow(0 5px 0 rgba(0,0,0,.42));
}

.function-title span {
    font-size: 68px;
    background-image:
        url("img/text-noise.png"),
        linear-gradient(180deg, #ffffff 0%, #e5e5e5 46%, #787878 100%);
}

.function-title strong {
    font-size: 88px;
    background-image:
        url("img/text-noise.png"),
        linear-gradient(180deg, #ffc83d 0%, #f0a000 48%, #8b4b00 100%);
}

.function-head p {
    margin: 0;
    max-width: 560px;
    color: rgba(255,255,255,.74);
    font-size: 20px;
    line-height: 1.55;
    font-weight: 600;
}

/* GRID */

.function-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 62px;
}

/* COLUMN */

.function-card {
    position: relative;
    padding: 0 26px 0 0;
    background: transparent;
    border: 0;
    overflow: visible;
    opacity: .84;
    transition: opacity .35s ease, transform .35s ease;
}

.function-card:hover {
    opacity: 1;
    transform: translateY(-4px);
}

.function-card::before {
    content: "";
    position: absolute;
    right: -31px;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(255,176,0,.18),
        transparent
    );
}

.function-card:last-child::before {
    display: none;
}

/* NUMBER */

.function-number {
    margin-bottom: 20px;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(180deg, #ffc83d 0%, #f0a000 52%, #8b4b00 100%);
    font-size: 48px;
    line-height: .85;
    font-weight: 950;
    letter-spacing: -2px;
}

/* TITLE */

.function-card h3 {
    max-width: 300px;
    margin: 0 0 30px;
    color: #ffb000;
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -.5px;
    font-weight: 950;
}

/* LIST */

.function-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.function-card li {
    position: relative;
    max-width: 92%;
    padding-left: 20px;
    margin-bottom: 15px;
    color: rgba(255,255,255,.62);
    font-size: 14px;
    line-height: 1.42;
    font-weight: 600;
    letter-spacing: -.1px;
}

.function-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 1px;
    background: #ffb000;
    opacity: .75;
    box-shadow: 0 0 10px rgba(255,176,0,.45);
}

@keyframes functionAsh {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-250px);
    }
}

/* RESPONSIVE */




/* =========================================
   REASONS TABS SECTION
========================================= */

.reasons-section {
    position: relative;
    z-index: 13;
    width: 100%;
    overflow: hidden;
    padding: 105px 0 120px;
    background:
        radial-gradient(circle at 72% 20%, rgba(255,176,0,.14), transparent 32%),
        linear-gradient(180deg, #17151f 0%, #1b1823 48%, #0b0b0f 100%);
    color: #fff;
}

.reasons-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,176,0,.18) 1px, transparent 1px),
        radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 140px 100px, 230px 160px;
    opacity: .12;
    pointer-events: none;
}

.reasons-wrap {
    position: relative;
    z-index: 2;
    width: 1500px;
    max-width: calc(100% - 96px);
    margin: 0 auto;
}

.reasons-wrap > input {
    display: none;
}

.reasons-layout {
    display: grid;
    grid-template-columns: 540px 1fr;
    min-height: 680px;
    box-shadow: 0 45px 110px rgba(0,0,0,.55);
}

/* LEFT */

.reasons-left {
    position: relative;
    padding: 54px 52px 46px;
    background:
        radial-gradient(circle at 20% 16%, rgba(255,176,0,.18), transparent 32%),
        linear-gradient(180deg, #211f2a 0%, #171520 100%);
    border: 1px solid rgba(255,176,0,.12);
    overflow: hidden;
}

.reasons-left::after {
    content: "→";
    position: absolute;
    right: 28px;
    top: 155px;
    z-index: 40;
    width: 36px;
    height: 36px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, rgba(255,220,120,.22), transparent 42%),
        rgba(255,176,0,.10);
    border: 1px solid rgba(255,176,0,.34);
    color: #ffae00;
    font-size: 18px;
    font-weight: 1000;
    pointer-events: none;
    box-shadow:
        0 0 24px rgba(255,176,0,.16),
        inset 0 0 16px rgba(255,176,0,.06);
    animation: swipeHint 1.75s ease-in-out infinite;
}

.reasons-title {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 54px;
}

.reasons-title strong {
    color: #ffae00;
    font-size: 126px;
    line-height: .75;
    font-weight: 1000;
    letter-spacing: -8px;
    text-shadow: 0 0 28px rgba(255,176,0,.14);
}

.reasons-title h2 {
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    line-height: 1.02;
    letter-spacing: -1.3px;
}

.reasons-title h2 span {
    color: #ffae00;
    font-size: 34px;
    font-weight: 1000;
}

.reasons-title h2 b {
    color: #fff;
    font-size: 32px;
    font-weight: 1000;
}

/* TABS */

.reasons-tabs {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 24px;
}

.reasons-tabs label {
    position: relative;
    min-height: 92px;
    cursor: pointer;
    opacity: .58;
    transition: .26s ease;
}

.reasons-tabs label:hover {
    opacity: .95;
    transform: translateY(-2px);
}

.reasons-tabs label i {
    width: 58px;
    height: 58px;
    margin-bottom: 12px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.02);
    color: rgba(255,255,255,.42);
    font-size: 28px;
    transition: .26s ease;
}

.reasons-tabs label b {
    display: none;
}

.reasons-tabs label span {
    display: inline-block;
    color: rgba(255,255,255,.60);
    font-size: 12px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -.15px;
    border-bottom: 1px solid rgba(255,255,255,.10);
    transition: .26s ease;
}

/* RIGHT */

.reasons-right {
    position: relative;
    padding: 72px 76px;
    background:
        radial-gradient(circle at 82% 16%, rgba(255,176,0,.05), transparent 26%),
        linear-gradient(180deg, #f6f5f2 0%, #ffffff 100%);
    overflow: hidden;
}

.reasons-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,.58), transparent 34%);
    pointer-events: none;
}

.reason-panel {
    position: relative;
    display: none;
    max-width: 780px;
    animation: reasonFade .32s ease;
}

.reason-panel h3 {
    position: relative;
    z-index: 2;
    margin: 104px 0 28px;
    color: #1d1d28;
    font-size: 34px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -.9px;
    text-transform: uppercase;
}

.reason-panel p {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 0 30px;
    color: rgba(36,36,46,.64);
    font-size: 20px;
    line-height: 1.68;
    font-weight: 400;
}

.reason-panel ul {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
    list-style: none;
}

.reason-panel li {
    position: relative;
    margin-bottom: 16px;
    padding-left: 30px;
    color: rgba(36,36,46,.66);
    font-size: 16px;
    line-height: 1.62;
    font-weight: 500;
}

.reason-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 14px;
    height: 1px;
    background: rgba(36,36,46,.28);
}

.reason-bg-number {
    position: absolute;
    right: 120px;
    top: -18px;
    color: rgba(18,18,27,.038);
    font-size: 230px;
    line-height: .72;
    font-weight: 1000;
    letter-spacing: -14px;
    pointer-events: none;
}

.reason-big-icon {
    display: none;
}

/* ACTIVE */

#reason-01:checked ~ .reasons-layout label[for="reason-01"],
#reason-02:checked ~ .reasons-layout label[for="reason-02"],
#reason-03:checked ~ .reasons-layout label[for="reason-03"],
#reason-04:checked ~ .reasons-layout label[for="reason-04"],
#reason-05:checked ~ .reasons-layout label[for="reason-05"],
#reason-06:checked ~ .reasons-layout label[for="reason-06"],
#reason-07:checked ~ .reasons-layout label[for="reason-07"],
#reason-08:checked ~ .reasons-layout label[for="reason-08"],
#reason-09:checked ~ .reasons-layout label[for="reason-09"],
#reason-10:checked ~ .reasons-layout label[for="reason-10"],
#reason-11:checked ~ .reasons-layout label[for="reason-11"],
#reason-12:checked ~ .reasons-layout label[for="reason-12"] {
    opacity: 1;
}

#reason-01:checked ~ .reasons-layout label[for="reason-01"] i,
#reason-02:checked ~ .reasons-layout label[for="reason-02"] i,
#reason-03:checked ~ .reasons-layout label[for="reason-03"] i,
#reason-04:checked ~ .reasons-layout label[for="reason-04"] i,
#reason-05:checked ~ .reasons-layout label[for="reason-05"] i,
#reason-06:checked ~ .reasons-layout label[for="reason-06"] i,
#reason-07:checked ~ .reasons-layout label[for="reason-07"] i,
#reason-08:checked ~ .reasons-layout label[for="reason-08"] i,
#reason-09:checked ~ .reasons-layout label[for="reason-09"] i,
#reason-10:checked ~ .reasons-layout label[for="reason-10"] i,
#reason-11:checked ~ .reasons-layout label[for="reason-11"] i,
#reason-12:checked ~ .reasons-layout label[for="reason-12"] i {
    border-color: rgba(255,176,0,.95);
    background: rgba(255,176,0,.06);
    color: #ffae00;
    box-shadow:
        0 0 30px rgba(255,176,0,.16),
        inset 0 0 18px rgba(255,176,0,.05);
}

#reason-01:checked ~ .reasons-layout label[for="reason-01"] span,
#reason-02:checked ~ .reasons-layout label[for="reason-02"] span,
#reason-03:checked ~ .reasons-layout label[for="reason-03"] span,
#reason-04:checked ~ .reasons-layout label[for="reason-04"] span,
#reason-05:checked ~ .reasons-layout label[for="reason-05"] span,
#reason-06:checked ~ .reasons-layout label[for="reason-06"] span,
#reason-07:checked ~ .reasons-layout label[for="reason-07"] span,
#reason-08:checked ~ .reasons-layout label[for="reason-08"] span,
#reason-09:checked ~ .reasons-layout label[for="reason-09"] span,
#reason-10:checked ~ .reasons-layout label[for="reason-10"] span,
#reason-11:checked ~ .reasons-layout label[for="reason-11"] span,
#reason-12:checked ~ .reasons-layout label[for="reason-12"] span {
    color: #ffae00;
    border-color: rgba(255,176,0,.52);
}

#reason-01:checked ~ .reasons-layout .panel-01,
#reason-02:checked ~ .reasons-layout .panel-02,
#reason-03:checked ~ .reasons-layout .panel-03,
#reason-04:checked ~ .reasons-layout .panel-04,
#reason-05:checked ~ .reasons-layout .panel-05,
#reason-06:checked ~ .reasons-layout .panel-06,
#reason-07:checked ~ .reasons-layout .panel-07,
#reason-08:checked ~ .reasons-layout .panel-08,
#reason-09:checked ~ .reasons-layout .panel-09,
#reason-10:checked ~ .reasons-layout .panel-10,
#reason-11:checked ~ .reasons-layout .panel-11,
#reason-12:checked ~ .reasons-layout .panel-12 {
    display: block;
}

/* ANIMATION */

@keyframes reasonFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes swipeHint {
    0%, 100% {
        transform: translateX(0);
        opacity: .78;
    }

    50% {
        transform: translateX(7px);
        opacity: 1;
    }
}






/* =========================================
   LEAD ORDER SECTION
========================================= */

.lead-order-section {
    position: relative;
    z-index: 14;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    padding: 44px 0 34px;
    background: #fff;
    color: #080b18;
}

.lead-order-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 54% 78%, rgba(255,176,0,.10), transparent 26%),
        linear-gradient(180deg, #fff 0%, #fff 88%, #f2f2f2 100%);
    pointer-events: none;
}

.lead-order-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 42px;
    background: url("img/section-smoke-divider.png") center / auto 90px repeat-x;
    opacity: .25;
    pointer-events: none;
}

.lead-order-wrap {
    position: relative;
    z-index: 2;
    width: 1340px;
    max-width: calc(100% - 120px);
    min-height: calc(100vh - 78px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* HEAD */

.lead-order-head {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 76px;
    align-items: start;
    margin-bottom: 28px;
}

.lead-order-kicker {
    margin-bottom: 12px;
    color: #f0a000;
    font-size: 13px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.lead-order-head h2 {
    margin: 0;
    display: flex;
    flex-direction: column;
    max-width: 760px;
    line-height: .88;
    text-transform: uppercase;
    letter-spacing: -2.6px;
    font-weight: 950;
}

.lead-order-head h2 span,
.lead-order-head h2 strong {
    display: block;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-repeat: repeat, no-repeat;
    background-size: 420px 420px, 100% 100%;
    background-blend-mode: screen;
    filter: contrast(1.12);
}

.lead-order-head h2 span {
    font-size: clamp(48px, 4.9vw, 76px);
    background-image:
        url("img/text-noise.png"),
        linear-gradient(180deg, #101018 0%, #101018 52%, #2a2a35 100%);
}

.lead-order-head h2 strong {
    max-width: 560px;
    font-size: clamp(46px, 4.7vw, 72px);
    background-image:
        url("img/text-noise.png"),
        linear-gradient(180deg, #ffc83d 0%, #f0a000 48%, #9c5b00 100%);
}

.lead-order-head p {
    margin: 10px 0 0;
    color: rgba(8,11,24,.74);
    font-size: 19px;
    line-height: 1.46;
    font-weight: 600;
}

/* BODY */

.lead-order-body {
    position: relative;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 72px;
    align-items: start;
}

.lead-order-left,
.lead-order-right {
    position: relative;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    min-height: auto;
}

.lead-order-left {
    padding: 0;
    min-height: 500px;
}

.lead-order-right {
    padding: 0;
    transform: translateY(-55px);
}

/* TITLES */

.lead-order-left h3,
.lead-form h3 {
    margin: 0 0 18px;
    color: #080b18;
    font-size: 22px;
    line-height: 1.18;
    font-weight: 950;
}

.lead-order-left h3 em,
.lead-form h3 em {
    display: block;
    margin-bottom: 7px;
    color: #080b18;
    font-family: Georgia, serif;
    font-size: 30px;
    line-height: 1;
    font-style: italic;
    font-weight: 500;
}

/* CHECKS */

.lead-check-grid {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    width: 470px;
    max-width: 100%;
}

.lead-check-grid label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #080b18;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    cursor: pointer;
}

.lead-check-grid input {
    appearance: none;
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    margin: 0;
    border: 1px solid #cfd3d9;
    border-radius: 3px;
    background: linear-gradient(180deg, #fff, #edf0f3);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.08);
}

.lead-check-grid input:checked {
    border-color: #f0a000;
    background:
        linear-gradient(135deg, transparent 0 43%, #111 43% 56%, transparent 56%),
        linear-gradient(45deg, transparent 0 47%, #111 47% 62%, transparent 62%),
        #ffb000;
}

/* DINO */

.lead-dino-box {
    position: absolute;
    right: -40px;
    bottom: -26px;
    z-index: 3;
    width: 520px;
    height: 280px;
    pointer-events: none;
}

.lead-dino-box img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 620px;
    max-width: none;
    filter:
        drop-shadow(0 18px 14px rgba(0,0,0,.16))
        drop-shadow(0 0 22px rgba(255,176,0,.10));
}

.lead-dino-note {
    position: absolute;
    left: 128px;
    top: -114px;
    z-index: 5;
    max-width: 190px;
    color: #111;
    font-family: cursive;
    font-size: 17px;
    line-height: 1.06;
    font-weight: 700;
    transform: rotate(-7deg);
}

.lead-dino-note span {
    position: absolute;
    left: 128px;
    top: 72px;
    width: 30px;
    height: 2px;
    background: #111;
    transform: rotate(39deg);
    border-radius: 999px;
}

.lead-dino-note span::before,
.lead-dino-note span::after {
    content: "";
    position: absolute;
    right: -2px;
    width: 14px;
    height: 2px;
    background: #111;
    border-radius: 999px;
}

.lead-dino-note span::before {
    top: -5px;
    transform: rotate(42deg);
}

.lead-dino-note span::after {
    top: 5px;
    transform: rotate(-42deg);
}

/* FORM */

.lead-form {
    position: relative;
    z-index: 8;
    width: 100%;
}

.lead-form label {
    display: block;
    margin-bottom: 13px;
    color: #080b18;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
}

.lead-form label span {
    color: #f0a000;
    font-size: 10px;
    font-weight: 800;
}

.lead-form input:not([type="checkbox"]),
.lead-form textarea {
    width: 100%;
    margin-top: 6px;
    border: 0;
    border-radius: 5px;
    background: #f0f1f3;
    color: #111;
    font-size: 15px;
    outline: none;
    box-shadow:
        inset 0 2px 7px rgba(0,0,0,.16),
        0 1px 0 rgba(255,255,255,.85);
}

.lead-form input:not([type="checkbox"]) {
    height: 38px;
    padding: 0 12px;
}

.lead-form textarea {
    height: 80px;
    resize: vertical;
    padding: 12px;
}

.lead-form input:focus,
.lead-form textarea:focus {
    box-shadow:
        inset 0 2px 7px rgba(0,0,0,.16),
        0 0 0 2px rgba(240,160,0,.18);
}

.lead-form button {
    width: 220px;
    height: 47px;
    margin: 3px 0 15px;
    border: 0;
    border-radius: 999px;
    background: #f6a400;
    color: #050505;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 18px rgba(240,160,0,.18);
    transition: .22s ease;
}

.lead-form button:hover {
    transform: translateY(-2px);
    background: #ffb000;
}

.lead-form button b {
    margin-left: 9px;
}

.lead-checkbox {
    display: grid !important;
    grid-template-columns: 17px 1fr;
    gap: 10px;
    align-items: start;
    margin: 0 !important;
    color: #080b18 !important;
    font-size: 10px !important;
    line-height: 1.35 !important;
    font-weight: 500 !important;
}

.lead-checkbox input {
    appearance: none;
    width: 17px;
    height: 17px;
    margin: 0;
    border: 1px solid #cfd3d9;
    border-radius: 3px;
    background: linear-gradient(180deg, #fff, #edf0f3);
}

.lead-checkbox input:checked {
    border-color: #f0a000;
    background: #ffb000;
}

.lead-checkbox span {
    color: #080b18 !important;
    font-size: 10px !important;
}




/* =========================================
   FOOTER
========================================= */

.site-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255,174,0,.08), transparent 30%),
        linear-gradient(180deg, #080812 0%, #05050b 100%);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 90px 0 30px;
}

.site-footer::before {
    content: "";
    position: absolute;
    right: -180px;
    top: 120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255,174,0,.10), transparent 70%);
    pointer-events: none;
}

.footer-wrap {
    width: 1400px;
    max-width: calc(100% - 48px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 90px;
    position: relative;
    z-index: 2;
}

.footer-left {
    width: 320px;
    flex-shrink: 0;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-decoration: none;
    margin-bottom: 45px;
}

.footer-logo-circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #ffb000;
    color: #0a0a0a;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .08em;
}

.footer-logo-text strong {
    display: block;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 800;
}

.footer-logo-text small {
    color: rgba(255,255,255,.68);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact {
    margin-bottom: 28px;
}

.footer-contact span {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
}

.footer-contact p,
.footer-contact a {
    margin: 0;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    line-height: 1.45;
    transition: .25s ease;
}

.footer-contact a:hover {
    color: #ffb000;
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.footer-socials a {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    transition: .3s ease;
}

.footer-socials a:hover {
    background: #ffb000;
    color: #111;
    transform: translateY(-4px);
}

.footer-right {
    flex: 1;
}

.footer-title {
    color: #fff;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 45px;
    letter-spacing: -.03em;
}

.footer-services {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 28px 90px;
}

.footer-service-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-service-column span {
    position: relative;
    padding-left: 18px;
    color: rgba(255,255,255,.82);
    font-size: 18px;
    line-height: 1.45;
}

.footer-service-column span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffb000;
}

.footer-bottom {
    width: 1400px;
    max-width: calc(100% - 48px);
    margin: 75px auto 0;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.06);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-copy {
    color: rgba(255,255,255,.45);
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.footer-links a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    font-size: 14px;
    transition: .25s ease;
}

.footer-links a:hover {
    color: #ffb000;
}

.lead-checkbox a {
  color: #ffb000;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-checkbox a:hover {
  color: #ffc847;
}




.form-status {
    margin: 14px 0 18px;
    padding: 13px 15px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
}

.form-status.success {
    background: rgba(46, 204, 113, .14);
    border: 1px solid rgba(46, 204, 113, .45);
    color: #7dffad;
}

.form-status.error {
    background: rgba(255, 70, 70, .14);
    border: 1px solid rgba(255, 70, 70, .45);
    color: #ff8b8b;
}

.js-mail-form button:disabled {
    opacity: .65;
    cursor: not-allowed;
}





/* =========================================
   COOKIE BANNER + MODAL
========================================= */

.cookie-banner,
.cookie-modal {
  position: fixed;
  z-index: 20000;
  font-family: Arial, Helvetica, sans-serif;
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none !important;
}

.cookie-banner {
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.cookie-banner__content {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(255,176,0,.35);
  border-radius: 24px;
  background:
    radial-gradient(circle at 15% 0%, rgba(255,176,0,.18), transparent 34%),
    linear-gradient(180deg, rgba(18,18,18,.98), rgba(5,5,5,.98));
  box-shadow: 0 24px 80px rgba(0,0,0,.72);
}

.cookie-banner strong,
.cookie-modal h2,
.cookie-option strong {
  color: #ffb000;
}

.cookie-banner p,
.cookie-modal__text,
.cookie-option p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner a,
.cookie-modal a {
  color: #ffb000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions,
.cookie-modal__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,176,0,.35);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: .22s ease;
}

.cookie-btn--primary {
  background: linear-gradient(135deg, #ffc73c 0%, #f0a100 48%, #d88400 100%);
  color: #080808;
  border-color: transparent;
}

.cookie-btn--outline {
  background: rgba(255,176,0,.08);
  color: #ffb000;
}

.cookie-btn--ghost {
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.86);
  border-color: rgba(255,255,255,.16);
}

.cookie-btn:hover {
  transform: translateY(-2px);
}

.cookie-modal {
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.78);
}

.cookie-modal__box {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  padding: 34px;
  border-radius: 26px;
  border: 1px solid rgba(255,176,0,.35);
  background:
    radial-gradient(circle at 20% 0%, rgba(255,176,0,.18), transparent 34%),
    linear-gradient(180deg, #151515, #050505);
  box-shadow: 0 30px 90px rgba(0,0,0,.85);
}

.cookie-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,176,0,.26);
  border-radius: 12px;
  background: rgba(0,0,0,.35);
  color: #ffb000;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.cookie-modal h2 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
}

.cookie-option {
  margin-top: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
}

.cookie-switch {
  position: relative;
  width: 56px;
  height: 32px;
  flex-shrink: 0;
}

.cookie-switch input {
  display: none;
}

.cookie-switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.16);
  cursor: pointer;
}

.cookie-switch span::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  transition: .22s ease;
}

.cookie-switch input:checked + span {
  background: #ffb000;
  border-color: #ffb000;
}

.cookie-switch input:checked + span::before {
  transform: translateX(24px);
  background: #111;
}

.cookie-switch input:disabled + span {
  opacity: .72;
  cursor: not-allowed;
}

.cookie-modal__links {
  display: flex;
  gap: 18px;
  margin: 22px 0;
  font-size: 13px;
  font-weight: 800;
}

.footer-cookie-settings {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.footer-cookie-settings:hover {
  color: #ffb000;
}





/* =========================================
   PACKAGE FULLSCREEN MODAL
========================================= */

.package-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    color: #fff;
}

.package-modal.is-open {
    display: block;
}

.package-modal-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 119, 34, .22), transparent 34%),
        radial-gradient(circle at 80% 80%, rgba(255, 119, 34, .12), transparent 36%),
        rgba(0, 0, 0, .92);
    backdrop-filter: blur(6px);
}

.package-modal-panel {
    position: relative;
    z-index: 2;
    width: min(100% - 60px, 1280px);
    height: min(100vh - 60px, 860px);
    margin: 30px auto;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255, 119, 34, .28);
    background:
        linear-gradient(145deg, rgba(18,18,18,.98), rgba(5,5,5,.98));
    box-shadow:
        0 0 80px rgba(255, 119, 34, .18),
        inset 0 0 0 1px rgba(255,255,255,.03);
}

.package-modal-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 52px 52px;
    opacity: .16;
}

.package-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 119, 34, .35);
    border-radius: 50%;
    background: rgba(0,0,0,.65);
    color: #fff;
    font-size: 38px;
    line-height: 48px;
    cursor: pointer;
    transition: .25s ease;
    box-shadow: 0 0 24px rgba(255,119,34,.15);
}

.package-modal-close:hover {
    background: #ff7722;
    color: #111;
    transform: rotate(90deg);
}

.package-modal-inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 42px;
    height: 100%;
    padding: 74px 56px 54px;
    overflow-y: auto;
}

.package-modal-kicker {
    margin-bottom: 18px;
    color: #ff7722;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.package-modal-title {
    margin: 0 0 34px;
    font-size: clamp(44px, 5vw, 78px);
    line-height: .9;
    text-transform: uppercase;
}

.package-selected-card {
    position: relative;
    padding: 34px;
    border-radius: 30px;
    border: 1px solid rgba(255,119,34,.24);
    background:
        radial-gradient(circle at top left, rgba(255,119,34,.18), transparent 34%),
        rgba(255,255,255,.04);
    box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.package-selected-label {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,119,34,.14);
    color: #ff8b3d;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.package-selected-card h3 {
    margin: 0 0 18px;
    font-size: 32px;
    line-height: 1.08;
}

.package-selected-price {
    margin-bottom: 14px;
    color: #ff7722;
    font-size: 46px;
    font-weight: 900;
    text-shadow: 0 0 26px rgba(255,119,34,.25);
}

.package-selected-time {
    margin-bottom: 22px;
    color: rgba(255,255,255,.75);
    font-size: 16px;
}

.package-selected-time strong {
    color: #fff;
}

.package-selected-card p {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.6;
}

.package-modal-form {
    padding: 34px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.package-modal-form h3 {
    margin: 0 0 24px;
    font-size: 34px;
    text-transform: uppercase;
}

.package-modal-form label {
    display: block;
    margin-bottom: 16px;
    color: rgba(255,255,255,.82);
    font-size: 14px;
    font-weight: 700;
}

.package-modal-form label span {
    color: #ff7722;
}

.package-modal-form input,
.package-modal-form textarea {
    width: 100%;
    margin-top: 8px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    outline: none;
    background: rgba(0,0,0,.44);
    color: #fff;
    font-size: 15px;
}

.package-modal-form textarea {
    min-height: 120px;
    resize: vertical;
}

.package-modal-form input:focus,
.package-modal-form textarea:focus {
    border-color: rgba(255,119,34,.75);
    box-shadow: 0 0 0 3px rgba(255,119,34,.14);
}

.package-modal-checkbox {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
}

.package-modal-checkbox input {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-top: 3px;
}

.package-modal-checkbox span {
    color: rgba(255,255,255,.7) !important;
    font-size: 13px;
    line-height: 1.5;
}

.package-modal-form button[type="submit"] {
    width: 100%;
    margin-top: 10px;
    padding: 18px 24px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff7722, #ffb15a);
    color: #111;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 32px rgba(255,119,34,.22);
    transition: .25s ease;
}

.package-modal-form button[type="submit"]:hover {
    transform: translateY(-2px);
}

body.package-modal-lock {
    overflow: hidden;
}


/* PACKAGE MODAL SCROLLBAR */

.package-modal-inner {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 119, 34, .75) rgba(255, 255, 255, .06);
}

.package-modal-inner::-webkit-scrollbar {
    width: 8px;
}

.package-modal-inner::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .05);
    border-radius: 999px;
}

.package-modal-inner::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff7722, #ffb15a);
    border-radius: 999px;
}

.package-modal-inner::-webkit-scrollbar-thumb:hover {
    background: #ff7722;
}

.package-modal-checkbox a {
    color: #ffb347;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: .2s ease;
}

.package-modal-checkbox a:hover {
    color: #ffffff;
}

/* =========================================
   SCROLL TOP BUTTON
========================================= */

.scroll-top-btn {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255, 119, 34, .45);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, #ffb15a, #ff7722);
    color: #111;
    font-size: 30px;
    font-weight: 900;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px) scale(.86);
    box-shadow:
        0 0 28px rgba(255, 119, 34, .42),
        0 12px 34px rgba(0, 0, 0, .35);
    transition: .28s ease;
}

.scroll-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 0 38px rgba(255, 119, 34, .62),
        0 16px 38px rgba(0, 0, 0, .42);
}

.scroll-top-btn span {
    display: block;
    line-height: 54px;
}







/* =========================================
   THANK YOU PAGE
========================================= */

.thanks-body {
    margin: 0;
    background: #050505;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

.thanks-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050505;
}

.thanks-bg {
    position: absolute;
    inset: 0;

    background:
        url("img/hero-bg.png") center center / cover no-repeat;

    transform: scale(1.05);

    filter:
        brightness(.45)
        contrast(1.15);
}

.thanks-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at center,
            rgba(245,110,40,.20),
            transparent 45%),

        linear-gradient(
            180deg,
            rgba(0,0,0,.88) 0%,
            rgba(0,0,0,.60) 45%,
            rgba(0,0,0,.90) 100%
        );
}

.thanks-content {
    position: relative;
    z-index: 5;

    width: 820px;
    max-width: calc(100% - 40px);

    text-align: center;
}

.thanks-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 42px;
    padding: 0 22px;

    border-radius: 999px;

    background:
        linear-gradient(135deg, #ffc73c, #f56e28);

    color: #111;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;

    box-shadow:
        0 0 30px rgba(245,110,40,.35);
}

.thanks-title {
    margin: 34px 0 26px;

    display: flex;
    flex-direction: column;

    line-height: .84;
    text-transform: uppercase;
    letter-spacing: -3px;
}

.thanks-title span,
.thanks-title strong {
    color: transparent;

    -webkit-background-clip: text;
    background-clip: text;

    background-repeat: repeat, no-repeat;
    background-size: 420px 420px, 100% 100%;
}

.thanks-title span {
    font-size: 76px;

    background-image:
        url("img/text-noise.png"),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #dcdcdc 48%,
            #727272 100%
        );
}

.thanks-title strong {
    margin-top: 8px;

    font-size: 92px;

    background-image:
        url("img/text-noise.png"),
        linear-gradient(
            180deg,
            #ffc73c 0%,
            #f56e28 50%,
            #a94b00 100%
        );
}

.thanks-text {
    width: 700px;
    max-width: 100%;

    margin: 0 auto;

    color: rgba(255,255,255,.82);

    font-size: 20px;
    line-height: 1.65;
}

.thanks-box {
    position: relative;

    width: 620px;
    max-width: 100%;

    margin: 42px auto 0;
    padding: 28px 34px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.02)
        );

    border: 1px solid rgba(245,110,40,.18);

    overflow: hidden;

    box-shadow:
        0 20px 50px rgba(0,0,0,.45);
}

.thanks-line {
    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 4px;

    background:
        linear-gradient(
            180deg,
            #ffc73c,
            #f56e28
        );
}

.thanks-box p {
    margin: 0;

    color: rgba(255,255,255,.84);

    font-size: 18px;
    line-height: 1.6;
}

.thanks-box b {
    color: #ffc73c;
}

.thanks-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    margin-top: 42px;
}

.thanks-btn {
    min-width: 260px;
    height: 58px;
    padding: 0 30px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #ffc73c,
            #f56e28
        );

    color: #111;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 900;
    letter-spacing: .5px;
    text-transform: uppercase;

    transition: .25s ease;

    box-shadow:
        0 18px 40px rgba(245,110,40,.28);
}

.thanks-btn:hover {
    transform: translateY(-3px);
}

.thanks-btn.secondary {
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.04)
        );

    color: #fff;

    border: 1px solid rgba(255,255,255,.12);

    box-shadow:
        0 14px 34px rgba(0,0,0,.35);
}

.thanks-title span,
.thanks-title strong {
    color: #fff !important;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    filter: none !important;
}

.thanks-title span {
    background-image: linear-gradient(180deg, #ffffff 0%, #d8d8d8 55%, #777777 100%) !important;
    text-shadow: 0 8px 24px rgba(0,0,0,.75);
}

.thanks-title strong {
    background-image: linear-gradient(180deg, #ffc73c 0%, #f56e28 60%, #c45500 100%) !important;
    text-shadow: 0 8px 24px rgba(0,0,0,.75);
}

.thanks-footer {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 10;
    transform: translateX(-50%);

    display: flex;
    gap: 22px;

    color: rgba(255,255,255,.55);
    font-size: 13px;
    font-weight: 700;
}

.thanks-footer a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
}

.thanks-footer a:hover {
    color: #ffc73c;
}

