/* =========================================
   RESPONSIVE — HERO SECTION / FINAL
========================================= */

@media (max-width: 1440px) {
  .hero-inner {
    width: min(100% - 80px, 1320px);
  }

  .hero-bg {
    background-position: 62% center;
  }

  .hero-copy {
    width: 620px;
    margin-left: 0;
  }

  .t-white,
  .t-orange {
    font-size: 66px;
  }

  .hero-title small {
    font-size: 38px;
  }

  .hero-nav {
    gap: 24px;
  }

  .hero-nav a {
    font-size: 14px;
  }
}

@media (max-width: 1199px) {
  .hero-inner {
    width: min(100% - 48px, 980px);
  }

  .hero-header {
    height: 86px;
  }

  .hero-nav,
  .header-btn {
    display: none;
  }

  .burger-btn {
    display: block;
  }

  .hero-content {
    min-height: calc(100vh - 86px);
    align-items: center;
    padding: 40px 0 95px;
  }

  .hero-copy {
    width: 560px;
    margin-left: 0;
    padding-top: 0;
  }

  .t-white,
  .t-orange {
    font-size: 58px;
  }

  .hero-title small {
    font-size: 32px;
  }

  .hero-description {
    width: 500px;
    font-size: 16px;
  }

  .main-btn {
    width: 255px;
    height: 50px;
    font-size: 13px;
  }

  .hero-bg {
    background-position: 70% center;
    transform: scale(1.04);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.92) 43%, rgba(0,0,0,.56) 68%, rgba(0,0,0,.16) 100%),
      linear-gradient(180deg, rgba(0,0,0,.38) 0%, rgba(0,0,0,.08) 45%, rgba(0,0,0,.96) 100%);
  }
}

@media (max-width: 991px) {
  .hero-inner {
    width: min(100% - 36px, 760px);
  }

  .hero-header {
    height: 82px;
  }

  .logo-circle {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .logo-text span {
    font-size: 18px;
  }

  .logo-text strong {
    margin-top: 6px;
    font-size: 10px;
    letter-spacing: 3px;
  }

  .hero-content {
    min-height: calc(100vh - 82px);
    align-items: center;
    padding: 60px 0 110px;
  }

  .hero-copy {
    width: 535px;
  }

  .hero-kicker {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .hero-title {
    line-height: .86;
    letter-spacing: -2px;
  }

  .t-white,
  .t-orange {
    font-size: 52px;
  }

  .hero-title small {
    font-size: 28px;
  }

  .hero-description {
    width: 470px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-buttons {
    margin-top: 25px;
  }

  .main-btn {
    width: 235px;
    height: 48px;
    border-radius: 14px;
  }

  .hero-bg {
    background-position: 76% center;
    transform: scale(1.02);
  }
}
/* =========================================
   MOBILE — 767
========================================= */
/* =========================================
   MOBILE — HERO FIX
========================================= */

@media (max-width: 767px) {

  .hero-section {
    min-height: auto;
  }

  .hero-inner {
    width: min(100% - 28px, 520px);
  }

  .hero-header {
    height: 88px;
  }

  .logo-wrap {
    gap: 12px;
  }

  .logo-circle {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .logo-text span {
    font-size: 16px;
  }

  .logo-text strong {
    margin-top: 6px;
    font-size: 9px;
    letter-spacing: 2.6px;
  }

  .burger-btn {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .hero-content {
    min-height: auto;
    align-items: flex-start;
    padding: 86px 0 88px;
  }

  .hero-copy {
    width: 100%;
    margin-left: 0;
  }

  .hero-kicker {
    margin-bottom: 14px;
    font-size: 11px;
    line-height: 1.2;
  }

  .hero-title {
    line-height: .9;
    letter-spacing: -1.4px;
  }

  .title-line {
    gap: 8px;
    flex-wrap: wrap;
  }

  .t-white,
  .t-orange {
    font-size: 38px;
  }

  .hero-title small {
    margin-top: 7px;
    font-size: 21px;
  }

  .hero-description {
    width: 100%;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.52;
  }

  .hero-buttons {
    margin-top: 28px;
  }

  .main-btn {
    width: 100%;
    height: 50px;
    border-radius: 14px;
    font-size: 13px;
  }

  .hero-bg {
    background-size: auto 100%;
    background-position: 82% center;
    transform: scale(1);
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(0,0,0,.99) 0%,
        rgba(0,0,0,.95) 47%,
        rgba(0,0,0,.70) 73%,
        rgba(0,0,0,.25) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0,0,0,.52) 0%,
        rgba(0,0,0,.12) 42%,
        rgba(0,0,0,.92) 100%
      );
  }

  .mobile-menu {
    top: 94px;
    left: 14px;
    right: 14px;
  }
}

@media (max-width: 480px) {

  .hero-inner {
    width: calc(100% - 28px);
  }

  .hero-header {
    height: 84px;
  }

  .hero-content {
    padding: 82px 0 78px;
  }

  .t-white,
  .t-orange {
    font-size: 34px;
  }

  .hero-title small {
    font-size: 19px;
  }

  .hero-description {
    margin-top: 17px;
    font-size: 13.5px;
    line-height: 1.52;
  }

  .hero-buttons {
    margin-top: 26px;
  }

  .main-btn {
    height: 49px;
    font-size: 12.5px;
  }

  .hero-bg {
    background-position: 84% center;
  }
}

@media (max-width: 360px) {

  .hero-inner {
    width: calc(100% - 22px);
  }

  .hero-header {
    height: 80px;
  }

  .logo-circle {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .logo-text span {
    font-size: 14px;
  }

  .logo-text strong {
    margin-top: 5px;
    font-size: 8px;
    letter-spacing: 2px;
  }

  .burger-btn {
    width: 42px;
    height: 42px;
  }

  .hero-content {
    padding: 74px 0 68px;
  }

  .hero-kicker {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .hero-title {
    letter-spacing: -1px;
  }

  .t-white,
  .t-orange {
    font-size: 29px;
  }

  .hero-title small {
    margin-top: 6px;
    font-size: 16px;
  }

  .hero-description {
    margin-top: 15px;
    font-size: 12px;
    line-height: 1.5;
  }

  .hero-buttons {
    margin-top: 24px;
  }

  .main-btn {
    height: 46px;
    border-radius: 13px;
    font-size: 11px;
  }

  .hero-bg {
    background-position: 87% center;
  }

  .mobile-menu {
    top: 86px;
    left: 10px;
    right: 10px;
    padding: 14px;
  }

  .mobile-menu-nav a {
    min-height: 42px;
    font-size: 13px;
  }

  .mobile-menu-btn {
    height: 46px;
    font-size: 12px;
  }
}
/* =========================================
   RESPONSIVE — PROMO SECTION / FIX
========================================= */

/* =========================================
   RESPONSIVE — PROMO SECTION / FINAL
========================================= */

@media (max-width: 1199px) {
  .promo-section {
    height: auto;
    min-height: 960px;
    padding: 70px 0 0;
  }

  .promo-wrap {
    width: 100%;
    min-height: 960px;
  }

  .promo-board {
    position: relative;
    left: auto;
    top: auto;
    width: min(92%, 760px);
    height: auto;
    margin: 0 auto;
    transform: none;
  }

  .promo-board-img {
    display: none;
  }

  .promo-board::after {
    inset: 0;
    background:
      radial-gradient(circle at 50% 18%, rgba(255,170,0,.18), transparent 42%),
      linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,.68));
  }

  .promo-board-content {
    position: relative;
    inset: auto;
    padding: 54px 42px 48px;
    text-align: left;
  }

  .promo-title-white,
  .promo-title-orange {
    font-size: 58px;
  }

  .promo-copy,
  .promo-warning {
    width: 100%;
  }

  .promo-copy p {
    font-size: 19px;
  }

  .promo-warning {
    font-size: 20px;
  }

  .promo-dino-left {
    left: -135px;
    bottom: 120px;
    width: 570px;
  }

  .promo-dino-right {
    right: 30px;
    bottom: -15px;
    width: 540px;
  }

  .promo-left-text {
    left: 5%;
    top: auto;
    bottom: 355px;
    transform: translateX(-4%) rotate(-19deg);
    font-size: 20px;
  }

  .promo-right-text {
    left: 590px;
    right: auto;
    top: auto;
    bottom: 285px;
    transform: rotate(-14deg);
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .promo-section {
    min-height: 920px;
    padding: 46px 0 0;
  }

  .promo-bg {
    object-position: center top;
    opacity: .95;
  }

  .promo-wrap {
    min-height: 920px;
  }

  .promo-board {
    width: calc(100% - 24px);
  }

  .promo-board-content {
    padding: 42px 18px 34px;
  }

  .promo-kicker {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 4px;
    text-align: center;
  }

  .promo-title {
    align-items: center;
    text-align: center;
    margin-bottom: 26px;
    letter-spacing: -2px;
  }

  .promo-title-white,
  .promo-title-orange {
    font-size: 48px;
    line-height: .9;
    text-align: center;
  }

  .promo-copy p {
    font-size: 20px;
    line-height: 1.45;
    text-align: left;
  }

  .promo-warning {
    margin-top: 26px;
    margin-bottom: 30px;
    padding-left: 18px;
    font-size: 20px;
    line-height: 1.25;
  }

  .promo-btn {
    width: 100%;
    height: 58px;
    border-radius: 18px;
    font-size: 15px;
  }

  .promo-dino-left {
    left: -70px;
    bottom: 100px;
    width: 490px;
  }

  .promo-dino-right {
    right: -20px;
    bottom: 0;
    width: 480px;
  }

  .promo-left-text {
    left: 18%;
    bottom: 320px;
    width: 260px;
    font-size: 20px;
    line-height: 1.08;
    transform: none;
  }

  .promo-right-text {
    left: 382px;
    bottom: 255px;
    width: 300px;
    font-size: 18px;
    line-height: 1.08;
  }

  .promo-arrow {
    margin-top: 14px;
    font-size: 50px;
  }
}

@media (max-width: 480px) {
  .promo-section {
    min-height: 804px;
    padding-top: 34px;
  }

  .promo-wrap {
    min-height: 804px;
  }

  .promo-board-content {
    padding: 36px 18px 30px;
  }

  .promo-kicker {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .promo-title-white,
  .promo-title-orange {
    font-size: 42px;
  }

  .promo-copy p {
    font-size: 18px;
  }

  .promo-warning {
    font-size: 18px;
  }

  .promo-btn {
    height: 56px;
    font-size: 14px;
  }

  .promo-dino-left {
    left: -145px;
    bottom: 45px;
    width: 320px;
  }

  .promo-dino-right {
    right: -10px;
    bottom: 0;
    width: 330px;
  }

  .promo-left-text {
    left: 8%;
    bottom: 220px;
    width: 200px;
    font-size: 16px;
  }

  .promo-right-text {
    left: 148px;
    bottom: 148px;
    width: 260px;
    font-size: 14px;
  }
  .promo-arrow {
    margin-top: 4px;
    font-size: 20px;
  }
}

@media (max-width: 360px) {
  .promo-section {
    min-height: 760px;
  }

  .promo-wrap {
    min-height: 760px;
  }

  .promo-title-white,
  .promo-title-orange {
    font-size: 36px;
  }

  .promo-copy p {
    font-size: 16px;
  }

  .promo-warning {
    font-size: 16px;
  }

  .promo-dino-left {
    display: none;
  }

  .promo-dino-right {
    width: 340px;
    right: 40px;
  }

  .promo-left-text {
    display: none;
  }

  .promo-right-text {
    left: 30px;
    bottom: 168px;
    font-size: 16px;
  }
}



/* =========================================
   RESPONSIVE — WHY SECTION
========================================= */

/* =========================================
   WHY SECTION — 1440px
========================================= */

@media (max-width: 1440px) {

  .why-section {
    padding: 128px 0 110px;
  }

  .why-wrap {
    width: min(100% - 56px, 1320px);
  }

  /* =========================
     HEAD
  ========================= */

  .why-head {
    max-width: 1120px;
  }

  .why-title {
    gap: 26px;
  }

  .why-title-big {
    font-size: 132px;
    line-height: .82;
    letter-spacing: -6px;
  }

  .why-title-lines span {
    font-size: 58px;
    line-height: .9;
    letter-spacing: -2px;
  }

  .why-head p {
    max-width: 900px;
    margin-top: 30px;
    font-size: 17px;
    line-height: 1.7;
  }

  /* =========================
     FORMULA
  ========================= */

  .why-formula {
    margin-top: 58px;
    padding: 0 10px;
  }

  .why-stat strong {
    font-size: 54px;
  }

  .why-stat span {
    font-size: 15px;
  }

  /* =========================
     CONTENT
  ========================= */

  .why-content {
    margin-top: 78px;
    gap: 54px;
    align-items: center;
  }

  .why-left {
    flex: 1;
  }

  .why-left h3 {
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: -1px;
  }

  .why-grid {
    margin-top: 38px;
    gap: 18px;
  }

  .why-item {
    min-height: 148px;
    padding: 22px;
    border-radius: 24px;
  }

  .why-item p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.55;
  }

  .why-right {
    width: 500px;
  }

  .why-heroes {
    width: 100%;
  }

  .why-badge {
    right: -10px;
    bottom: -12px;

    max-width: 320px;

    padding: 20px 22px;
    border-radius: 22px;
  }

  .why-badge p {
    font-size: 14px;
    line-height: 1.5;
  }
}



/* =========================================
   WHY SECTION — 1024px
========================================= */

@media (max-width: 1024px) {

  .why-section {
    padding: 96px 0 82px;
  }

  .why-wrap {
    width: min(100% - 36px, 920px);
  }

  /* =========================
     HEAD
  ========================= */

  .why-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .why-title-big {
    font-size: 94px;
    line-height: .82;
    letter-spacing: -4px;
  }

  .why-title-lines span {
    font-size: 42px;
    line-height: .92;
    letter-spacing: -1.5px;
  }

  .why-head p {
    max-width: 720px;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.65;
  }

  /* =========================
     FORMULA
  ========================= */

  .why-formula {
    margin-top: 46px;
    padding: 24px 18px;

    border-radius: 24px;

    background:
      linear-gradient(
        180deg,
        rgba(255,176,0,.06),
        rgba(255,176,0,.02)
      );

    border: 1px solid rgba(255,176,0,.08);

    gap: 18px;
  }

  .why-formula .dot {
    display: none;
  }

  .why-plus {
    width: 46px;
    height: 46px;
    flex-shrink: 0;

    font-size: 24px;
  }

  .why-stat strong {
    font-size: 42px;
  }

  .why-stat span {
    margin-top: 4px;
    font-size: 13px;
  }

  /* =========================
     CONTENT
  ========================= */

  .why-content {
    margin-top: 58px;
    gap: 42px;

    flex-direction: column;
    align-items: stretch;
  }

  .why-left,
  .why-right {
    width: 100%;
    max-width: 100%;
  }

  .why-left h3 {
    max-width: 720px;

    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .why-grid {
    margin-top: 30px;

    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .why-item {
    min-height: 126px;

    padding: 18px;
    border-radius: 20px;
  }

  .why-item img {
    width: 42px;
    height: 42px;
  }

  .why-item p {
    margin-top: 14px;

    font-size: 14px;
    line-height: 1.5;
  }

  .why-btn {
    margin-top: 30px;

    width: 100%;
    height: 58px;

    justify-content: center;

    border-radius: 18px;
  }

  /* =========================
     RIGHT
  ========================= */

  .why-right {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
  }

  .why-heroes {
    width: 100%;
    max-width: 620px;
  }

  .why-badge {
    right: 50%;
    bottom: -12px;

    transform: translateX(50%);

    width: min(100%, 420px);

    padding: 18px 22px;
    border-radius: 20px;
  }

  .why-badge p {
    font-size: 14px;
    line-height: 1.45;
  }
}
/* =========================================
   WHY SECTION — FINAL MOBILE + TABLET
========================================= */

@media (max-width: 768px) {

  .why-section {
    padding: 54px 0 48px;
    min-height: auto;
  }

  .why-wrap {
    width: calc(100% - 32px);
    max-width: 560px;
  }

  .why-head {
    text-align: left;
    margin: 0 0 26px;
  }

  .why-title {
    display: block;
    margin: 0;
    text-align: left;
    letter-spacing: -1px;
  }

  .why-title-big {
    display: block;
    font-size: 54px;
    line-height: .82;
    letter-spacing: -2px;
  }

  .why-title-lines {
    display: block;
  }

  .why-title-lines > span {
    display: block;
    font-size: 31px;
    line-height: .9;
    letter-spacing: -1px;
  }

  .why-head p {
    margin-top: 22px;
    max-width: 100%;
    font-size: 14px;
    line-height: 1.5;
  }

  .why-formula {
    display: grid;
    grid-template-columns: 1fr 34px 1fr 34px 1fr;
    align-items: start;
    gap: 0;
    margin: 28px 0 42px;
    padding: 0;
  }

  .why-formula::before {
    top: 24px;
  }

  .why-formula .dot {
    display: block;
    top: 19px;
  }

  .why-plus {
    display: flex;
    width: 34px;
    height: 34px;
    margin-top: 7px;
    font-size: 18px;
  }

  .why-stat strong {
    font-size: 28px;
  }

  .why-stat span {
    font-size: 11px;
    line-height: 1.15;
  }

  .why-content {
    display: flex;
    flex-direction: column;
    gap: 26px;
  }

  .why-left h3 {
    margin: 0 0 22px;
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: -.7px;
  }

  .why-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 0 24px;
  }

  .why-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    gap: 14px;
    min-height: auto;
    padding: 0;
  }

  .why-item img {
    width: 42px;
    height: 42px;
  }

  .why-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
  }

  .why-right {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .why-heroes {
    position: relative;
    right: auto;
    bottom: auto;
    width: 112%;
    max-width: 520px;
    margin: 2px 0 0;
  }

  .why-badge {
    position: relative;
    right: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    margin: -12px 0 0;
    padding: 15px 16px;
    border-radius: 18px;
    gap: 12px;
  }

  .why-target {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .why-badge p {
    font-size: 13px;
    line-height: 1.35;
  }

  .why-btn {
    width: 100%;
    min-width: 0;
    height: 52px;
    padding: 0 20px;
    border-radius: 15px;
    font-size: 13px;
  }
}

@media (max-width: 425px) {

  .why-section {
    padding: 46px 0 42px;
  }

  .why-wrap {
    width: calc(100% - 24px);
  }

  .why-title-big {
    font-size: 44px;
  }

  .why-title-lines > span {
    font-size: 25px;
  }

  .why-head p {
    margin-top: 18px;
    font-size: 13px;
  }

  .why-formula {
    grid-template-columns: 1fr 30px 1fr 30px 1fr;
    margin: 24px 0 34px;
  }

  .why-plus {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .why-stat strong {
    font-size: 25px;
  }

  .why-stat span {
    font-size: 10px;
  }

  .why-left h3 {
    font-size: 22px;
  }

  .why-grid {
    gap: 14px;
  }

  .why-item {
    grid-template-columns: 44px 1fr;
  }

  .why-item img {
    width: 38px;
    height: 38px;
  }

  .why-item p {
    font-size: 13px;
  }

  .why-heroes {
    width: 118%;
  }

  .why-badge {
    margin-top: -8px;
    padding: 14px;
  }

  .why-badge p {
    font-size: 12px;
  }
}

@media (max-width: 375px) {

  .why-wrap {
    width: calc(100% - 20px);
  }

  .why-title-big {
    font-size: 39px;
  }

  .why-title-lines > span {
    font-size: 22px;
  }

  .why-head p {
    font-size: 12px;
  }

  .why-formula {
    grid-template-columns: 1fr 26px 1fr 26px 1fr;
  }

  .why-plus {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }

  .why-stat strong {
    font-size: 22px;
  }

  .why-stat span {
    font-size: 9px;
  }

  .why-left h3 {
    font-size: 20px;
  }

  .why-item p {
    font-size: 12px;
  }

  .why-badge {
    gap: 10px;
  }
}

@media (max-width: 320px) {

  .why-section {
    padding: 40px 0 38px;
  }

  .why-wrap {
    width: calc(100% - 16px);
  }

  .why-title-big {
    font-size: 34px;
  }

  .why-title-lines > span {
    font-size: 19px;
  }

  .why-head p {
    font-size: 11px;
    line-height: 1.45;
  }

  .why-formula {
    grid-template-columns: 1fr 22px 1fr 22px 1fr;
    margin: 20px 0 30px;
  }

  .why-plus {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  .why-stat strong {
    font-size: 19px;
  }

  .why-stat span {
    font-size: 8px;
  }

  .why-left h3 {
    font-size: 17px;
  }

  .why-item {
    grid-template-columns: 38px 1fr;
    gap: 10px;
  }

  .why-item img {
    width: 34px;
    height: 34px;
  }

  .why-item p {
    font-size: 11px;
  }

  .why-badge {
    padding: 12px;
  }

  .why-target {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .why-badge p {
    font-size: 10.5px;
  }
}

/* =========================================
   RESPONSIVE — INCLUDED SECTION
========================================= */

/* =========================================
   INCLUDED SECTION — RESPONSIVE FINAL CLEAN
   1440 / 1024 / 768 / 425 / 375 / 320
========================================= */

.included-more-btn {
  display: none;
}

/* 1440 */
@media (max-width: 1440px) {
  .included-section {
    min-height: 780px;
    padding: 44px 0 38px;
  }

  .included-wrap {
    width: min(100% - 70px, 1320px);
  }

  .included-head {
    max-width: 760px;
    margin-bottom: 34px;
  }

  .included-title span {
    font-size: 66px;
  }

  .included-title strong {
    font-size: 78px;
  }

  .included-head p {
    width: 680px;
    font-size: 19px;
    line-height: 1.45;
  }

  .included-content {
    min-height: 470px;
  }

  .included-list {
    width: 620px;
  }

  .included-item {
    height: 34px;
    font-size: 15px;
  }

  .included-item::before {
    width: 26px;
    height: 26px;
  }

  .included-dino-main {
    width: 860px;
    right: 250px;
    bottom: -50px;
  }

  .included-dino-mini {
    width: 220px;
    right: 80px;
    bottom: 25px;
  }

  .included-mini-note {
    right: 60px;
    bottom: 165px;
    font-size: 19px;
  }
}

/* 1024 */
@media (max-width: 1024px) {
  .included-section {
    min-height: 570px;
    padding: 70px 0 60px;
  }

  .included-wrap {
    width: min(100% - 44px, 940px);
  }

  .included-head {
    max-width: 820px;
    margin-bottom: 36px;
  }

  .included-kicker {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .included-title {
    letter-spacing: -2.5px;
  }

  .included-title span {
    font-size: 54px;
  }

  .included-title strong {
    font-size: 64px;
  }

  .included-head p {
    width: 680px;
    font-size: 17px;
    line-height: 1.5;
  }

  .included-content {
    min-height: 570px;
  }

  .included-list {
    width: 540px;
  }

  .included-item {
    height: 40px;
    font-size: 14px;
  }

  .included-item::before {
    width: 26px;
    height: 26px;
    margin-right: 12px;
  }

  .included-dino-main {
    width: 830px;
    right: -20px;
    bottom: 15px;
  }

  .included-dino-mini {
    width: 200px;
    right: 0;
    bottom: 102px;
  }

  .included-mini-note {
    right: -20px;
    bottom: 242px;
    font-size: 16px;
  }

  .included-mini-note i {
    margin-top: 8px;
    margin-left: 52px;
    font-size: 38px;
  }
}

/* MOBILE BASE */
@media (max-width: 768px) {
  .included-section {
    min-height: auto;
    padding: 42px 0 34px;
  }

  .included-wrap {
    width: calc(100% - 24px);
    max-width: 520px;
  }

  .included-head {
    margin-bottom: 24px;
    overflow: hidden;
  }

  .included-kicker {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 3px;
  }

  .included-title {
    max-width: 100%;
    line-height: .9;
    letter-spacing: -1.4px;
  }

  .included-title span {
    font-size: 33px;
    white-space: normal;
  }

  .included-title strong {
    font-size: 48px;
    white-space: normal;
  }

  .included-head p {
    width: 100%;
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.5;
  }

  .included-content {
    min-height: auto;
    margin-top: 0;
    display: block;
  }

  .included-list {
    width: 100%;
    padding-top: 0;
  }

  .included-item {
    display: none;
    min-height: 48px;
    height: auto;
    margin-bottom: 8px;
    padding: 12px 14px;
    border-radius: 14px;

    background:
      linear-gradient(90deg, rgba(255,176,0,.09), rgba(255,176,0,.025)),
      rgba(5,5,5,.46);

    border: 1px solid rgba(255,176,0,.22);
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,.03),
      0 10px 24px rgba(0,0,0,.22);

    color: rgba(255,255,255,.94);
    font-size: 13px;
    line-height: 1.25;
    font-weight: 850;
  }

  .included-item:nth-child(-n+3) {
    display: flex;
  }

  .included-list.is-open .included-item {
    display: flex;
  }

  .included-item::before {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    border-radius: 7px;
  }

  .included-item::after,
  .included-item .line-dot {
    display: none !important;
  }

  .included-dino-main,
  .included-dino-mini,
  .included-mini-note {
    display: none !important;
  }

  .included-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    width: 100%;
    margin: 4px 0 0;
    padding: 3px 0 0;

    border: 0;
    background: transparent;
    color: #ffb000;

    font-size: 10px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: 1.8px;
    text-transform: uppercase;

    cursor: pointer;
  }

  .included-more-btn span {
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    transition: transform .25s ease;
  }

  .included-more-btn.is-open span {
    transform: rotate(180deg);
  }
}

/* 425 */
@media (max-width: 425px) {
  .included-section {
    padding: 36px 0 28px;
  }

  .included-wrap {
    width: calc(100% - 20px);
  }

  .included-head {
    margin-bottom: 22px;
  }

  .included-title span {
    font-size: 30px;
  }

  .included-title strong {
    font-size: 32px;
  }

  .included-head p {
    margin-top: 14px;
    font-size: 12.5px;
  }

  .included-item {
    min-height: 46px;
    margin-bottom: 7px;
    padding: 11px 13px;
    border-radius: 13px;
    font-size: 12.5px;
  }

  .included-item::before {
    width: 21px;
    height: 21px;
    margin-right: 11px;
  }

  .included-more-btn {
    margin-top: 2px;
    font-size: 9.5px;
  }
}

/* 375 */
@media (max-width: 375px) {
  .included-wrap {
    width: calc(100% - 18px);
  }

  .included-title span {
    font-size: 38px;
  }

  .included-title strong {
    font-size: 38px;
  }

  .included-head p {
    font-size: 12px;
  }

  .included-item {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .included-item::before {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
}

/* 320 */
@media (max-width: 320px) {
  .included-section {
    padding: 32px 0 24px;
  }

  .included-wrap {
    width: calc(100% - 14px);
  }

  .included-kicker {
    font-size: 9px;
    letter-spacing: 2.4px;
  }

  .included-title span {
    font-size: 26px;
  }

  .included-title strong {
    font-size: 31px;
  }

  .included-head p {
    font-size: 11px;
    line-height: 1.45;
  }

  .included-item {
    min-height: 41px;
    margin-bottom: 6px;
    padding: 9px 10px;
    border-radius: 12px;
    font-size: 11px;
  }

  .included-item::before {
    width: 18px;
    height: 18px;
    margin-right: 8px;
  }

  .included-more-btn {
    font-size: 9px;
    letter-spacing: 1.4px;
  }
}

/* =========================================
   RESPONSIVE — PRICE HERO + PLANS
========================================= */

/* =========================================
   PRICE HERO SECTION — RESPONSIVE
   1440 / 1024 / 768 / 425 / 375 / 320
========================================= */

/* 1440 */
@media (max-width: 1440px) {

  .price-hero-section {
    min-height: 760px;
  }

  .price-hero-wrap {
    width: min(100% - 70px, 1320px);
    min-height: 760px;
  }

  .price-hero-copy {
    width: 760px;
    padding-left: 52px;
  }

  .price-hero-kicker {
    margin-bottom: 18px;
    font-size: 14px;
    letter-spacing: 5px;
  }

  .price-hero-title {
    letter-spacing: -3px;
  }

  .price-hero-title .white {
    font-size: 58px;
  }

  .price-hero-title .small {
    font-size: 42px;
  }

  .price-hero-title strong {
    font-size: 102px;
    line-height: .84;
  }

  .price-hero-copy p {
    width: 760px;
    margin-top: 26px;
    font-size: 19px;
    line-height: 1.55;
  }

  .price-hero-copy p b {
    display: block;
    margin-top: 10px;
    font-size: 50px;
    line-height: 1;
  }
}

/* 1024 */
@media (max-width: 1024px) {

  .price-hero-section {
    min-height: auto;
    padding: 92px 0 78px;
  }

  .price-hero-bg {
    object-position: 64% center;
  }

  .price-hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(0,0,0,.98) 0%,
        rgba(0,0,0,.92) 48%,
        rgba(0,0,0,.70) 74%,
        rgba(0,0,0,.88) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0,0,0,.94) 0%,
        rgba(0,0,0,.24) 44%,
        rgba(0,0,0,.96) 100%
      );
  }

  .price-hero-wrap {
    width: min(100% - 44px, 920px);
    min-height: auto;
  }

  .price-hero-copy {
    width: 620px;
    padding-left: 34px;
  }

  .price-hero-kicker {
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 4px;
  }

  .price-hero-title {
    letter-spacing: -2px;
  }

  .price-hero-title .white {
    font-size: 46px;
  }

  .price-hero-title .small {
    margin-top: 8px;
    font-size: 32px;
  }

  .price-hero-title strong {
    font-size: 78px;
    line-height: .86;
  }

  .price-hero-copy p {
    width: 620px;
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.55;
  }

  .price-hero-copy p b {
    display: block;
    margin-top: 8px;
    font-size: 38px;
    line-height: 1;
  }
}

/* 768 */
@media (max-width: 768px) {

  .price-hero-section {
    padding: 74px 0 60px;
  }

  .price-hero-bg {
    object-position: 67% center;
  }

  .price-hero-wrap {
    width: calc(100% - 28px);
    max-width: 560px;
  }

  .price-hero-copy {
    width: 100%;
    padding-left: 18px;
  }

  .price-hero-kicker {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 3px;
  }

  .price-hero-title {
    line-height: .88;
    letter-spacing: -1.4px;
  }

  .price-hero-title .white {
    font-size: 31px;
  }

  .price-hero-title .small {
    margin-top: 6px;
    font-size: 24px;
  }

  .price-hero-title strong {
    font-size: 58px;
  }

  .price-hero-copy p {
    width: 100%;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.5;
  }

  .price-hero-copy p b {
    display: block;
    margin-top: 8px;
    font-size: 28px;
    line-height: 1;
  }
}

/* 425 */
@media (max-width: 425px) {

  .price-hero-section {
    padding: 64px 0 52px;
  }

  .price-hero-wrap {
    width: calc(100% - 22px);
  }

  .price-hero-copy {
    padding-left: 14px;
  }

  .price-hero-title .white {
    font-size: 25px;
  }

  .price-hero-title .small {
    font-size: 19px;
  }

  .price-hero-title strong {
    font-size: 46px;
  }

  .price-hero-copy p {
    margin-top: 16px;
    font-size: 13px;
  }

  .price-hero-copy p b {
    font-size: 22px;
  }
}

/* 375 */
@media (max-width: 375px) {

  .price-hero-wrap {
    width: calc(100% - 18px);
  }

  .price-hero-copy {
    padding-left: 10px;
  }

  .price-hero-title .white {
    font-size: 22px;
  }

  .price-hero-title .small {
    font-size: 17px;
  }

  .price-hero-title strong {
    font-size: 40px;
  }

  .price-hero-copy p {
    font-size: 12px;
    line-height: 1.45;
  }

  .price-hero-copy p b {
    font-size: 20px;
  }
}

/* 320 */
@media (max-width: 320px) {

  .price-hero-section {
    padding: 56px 0 44px;
  }

  .price-hero-wrap {
    width: calc(100% - 14px);
  }

  .price-hero-copy {
    padding-left: 6px;
  }

  .price-hero-kicker {
    margin-bottom: 12px;
    font-size: 9px;
    letter-spacing: 2px;
  }

  .price-hero-title .white {
    font-size: 18px;
  }

  .price-hero-title .small {
    font-size: 14px;
  }

  .price-hero-title strong {
    font-size: 33px;
  }

  .price-hero-copy p {
    margin-top: 14px;
    font-size: 11px;
    line-height: 1.42;
  }

  .price-hero-copy p b {
    margin-top: 6px;
    font-size: 17px;
  }
}

/* =========================================
   PRICE PLANS — RESPONSIVE FINAL
   1440 / 1024 / 768 / 425 / 375 / 320
========================================= */

/* 1440 */
@media (max-width: 1440px) {
  .price-plans-section {
    padding: 78px 0 100px;
  }

  .price-plans-wrap {
    width: min(100% - 70px, 1320px);
  }

  .plans-head {
    margin-bottom: 48px;
  }

  .plans-head h2 {
    font-size: 54px;
  }

  .plans-head p {
    font-size: 17px;
  }

  .plans-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    overflow: visible;
  }

  .plan-card {
    min-width: 0;
    min-height: 660px;
    padding: 38px 34px 34px;
  }

  .plan-card-featured {
    transform: translateY(-18px);
  }

  .plan-top h3 {
    font-size: 30px;
  }

  .plan-top p {
    font-size: 16px;
  }

  .plan-price strong {
    font-size: 50px;
  }
}

/* 1024 — slider */
@media (max-width: 1024px) {
  .price-plans-section {
    padding: 70px 0 82px;
  }

  .price-plans-wrap {
    width: calc(100% - 44px);
    max-width: 960px;
  }

  .plans-head {
    margin-bottom: 38px;
  }

  .plans-kicker {
    font-size: 11px;
    letter-spacing: 4px;
  }

  .plans-head h2 {
    font-size: 42px;
    line-height: .95;
  }

  .plans-head p {
    max-width: 650px;
    font-size: 15px;
  }

  .plans-slider {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 18px 0 26px;
    margin: 0 -22px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .plans-slider::-webkit-scrollbar {
    height: 6px;
  }

  .plans-slider::-webkit-scrollbar-thumb {
    background: rgba(255,176,0,.55);
    border-radius: 999px;
  }

  .plan-card {
    flex: 0 0 420px;
    min-width: 420px;
    min-height: 640px;
    scroll-snap-align: center;
    padding: 36px 34px 32px;
  }

  .plan-card-featured {
    transform: none;
    order: -1;
  }

  .plan-top h3 {
    font-size: 30px;
  }

  .plan-price strong {
    font-size: 48px;
  }

  .plans-mobile-hint {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-width: 100%;
    color: #ffb000;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
}

/* 768 */
@media (max-width: 768px) {
  .price-plans-section {
    padding: 58px 0 68px;
  }

  .price-plans-wrap {
    width: calc(100% - 28px);
    max-width: 560px;
  }

  .plans-head {
    margin-bottom: 26px;
  }

  .plans-head h2 {
    font-size: 32px;
  }

  .plans-head p {
    font-size: 13.5px;
    line-height: 1.5;
  }

  .plans-slider {
    gap: 18px;
    margin: 0 -14px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .plan-card {
    flex-basis: 360px;
    min-width: 360px;
    min-height: 610px;
    padding: 32px 28px 28px;
  }

  .plan-top h3 {
    font-size: 26px;
  }

  .plan-top p {
    font-size: 14px;
  }

  .plan-time {
    font-size: 14px;
  }

  .plan-card li {
    font-size: 13.5px;
  }

  .plan-price strong {
    font-size: 42px;
  }
}

/* 425 */
@media (max-width: 425px) {
  .price-plans-section {
    padding: 46px 0 56px;
  }

  .price-plans-wrap {
    width: calc(100% - 20px);
  }

  .plans-kicker {
    margin-bottom: 12px;
    font-size: 9px;
    letter-spacing: 3px;
  }

  .plans-head h2 {
    font-size: 25px;
  }

  .plans-head p {
    font-size: 12px;
  }

  .plans-slider {
    gap: 14px;
    margin: 0 -10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .plan-card {
    flex-basis: 315px;
    min-width: 315px;
    min-height: 560px;
    padding: 28px 22px 24px;
  }

  .plan-card::before {
    inset: 12px;
  }

  .plan-corner {
    background:
      linear-gradient(#ffb000,#ffb000) left 14px top 14px / 38px 2px no-repeat,
      linear-gradient(#ffb000,#ffb000) left 14px top 14px / 2px 38px no-repeat,
      linear-gradient(#ffb000,#ffb000) right 14px top 14px / 38px 2px no-repeat,
      linear-gradient(#ffb000,#ffb000) right 14px top 14px / 2px 38px no-repeat,
      linear-gradient(#ffb000,#ffb000) left 14px bottom 14px / 38px 2px no-repeat,
      linear-gradient(#ffb000,#ffb000) left 14px bottom 14px / 2px 38px no-repeat,
      linear-gradient(#ffb000,#ffb000) right 14px bottom 14px / 38px 2px no-repeat,
      linear-gradient(#ffb000,#ffb000) right 14px bottom 14px / 2px 38px no-repeat;
  }

  .plan-label {
    margin-bottom: 18px;
    padding: 8px 12px;
    font-size: 10px;
  }

  .plan-top h3 {
    font-size: 22px;
  }

  .plan-top p {
    margin-bottom: 22px;
    font-size: 12.5px;
  }

  .plan-time {
    margin-bottom: 22px;
    padding: 14px 16px;
    font-size: 13px;
  }

  .plan-card li {
    margin-bottom: 12px;
    padding-left: 28px;
    font-size: 12.5px;
  }

  .plan-price {
    padding-top: 24px;
  }

  .plan-price span {
    font-size: 15px;
  }

  .plan-price strong {
    font-size: 36px;
  }

  .plan-price em {
    font-size: 11px;
  }

  .plan-btn {
    height: 50px;
    margin-top: 24px;
    font-size: 12px;
  }
}

/* 375 */
@media (max-width: 375px) {
  .price-plans-wrap {
    width: calc(100% - 18px);
  }

  .plans-head h2 {
    font-size: 23px;
  }

  .plan-card {
    flex-basis: 292px;
    min-width: 292px;
    min-height: 540px;
    padding: 26px 20px 22px;
  }

  .plan-top h3 {
    font-size: 20px;
  }

  .plan-card li {
    font-size: 12px;
  }

  .plan-price strong {
    font-size: 32px;
  }
}

/* 320 */
@media (max-width: 320px) {
  .price-plans-section {
    padding: 40px 0 48px;
  }

  .price-plans-wrap {
    width: calc(100% - 14px);
  }

  .plans-head h2 {
    font-size: 20px;
  }

  .plans-head p {
    font-size: 11px;
  }

  .plan-card {
    flex-basis: 266px;
    min-width: 266px;
    min-height: 510px;
    padding: 24px 18px 20px;
  }

  .plan-top h3 {
    font-size: 18px;
  }

  .plan-top p,
  .plan-time,
  .plan-card li {
    font-size: 11px;
  }

  .plan-price strong {
    font-size: 28px;
  }

  .plan-btn {
    height: 46px;
    font-size: 11px;
  }
}



/* =========================================
   RESPONSIVE — ZEIT SECTION
========================================= */

/* =========================================
   RESPONSIVE — ZEIT SECTION
   1440 / 1024
========================================= */

/* 1440 */
@media (max-width: 1440px) {
  .zeit-section {
    padding: 82px 0 105px;
  }

  .zeit-container {
    width: min(100% - 70px, 1320px);
  }

  .zeit-panel {
    grid-template-columns: 43% 57%;
    min-height: 660px;
  }

  .zeit-left {
    min-height: 660px;
    padding: 62px 48px 44px;
  }

  .zeit-kicker {
    margin-bottom: 28px;
    font-size: 12px;
    letter-spacing: 4px;
  }

  .zeit-left h2 {
    font-size: 78px;
    line-height: .84;
    letter-spacing: -3px;
  }

  .zeit-left p {
    width: 82%;
    margin-top: 26px;
    font-size: 16px;
    line-height: 1.48;
  }

  .zeit-note {
    left: 34px;
    bottom: 260px;
    font-size: 18px;
  }

  .zeit-skelet {
    right: 28px;
    bottom: 28px;
    width: 82%;
  }

  .zeit-right {
    min-height: 660px;
    padding: 62px 54px 48px;
  }

  .zeit-table {
    grid-template-columns: 1.85fr .42fr .42fr .42fr;
  }

  .zeit-table > * {
    min-height: 38px;
    padding: 0 15px;
    font-size: 13px;
  }

  .zeit-table .zt-head {
    font-size: 15px;
  }

  .zeit-result {
    padding: 17px 20px;
    font-size: 18px;
  }

  .zeit-cinema-text {
    margin-top: 48px;
    padding-left: 28px;
  }

  .zeit-cinema-text small {
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 4px;
  }

  .zeit-cinema-text p {
    max-width: 640px;
    font-size: 27px;
    line-height: 1.15;
    letter-spacing: -.8px;
  }

  .zeit-btn {
    margin-top: 48px;
    padding: 20px 58px;
    font-size: 14px;
  }
}

/* 1024 */
@media (max-width: 1024px) {
  .zeit-section {
    padding: 72px 0 88px;
  }

  .zeit-container {
    width: min(100% - 44px, 940px);
  }

  .zeit-panel {
    grid-template-columns: 40% 60%;
    min-height: 600px;
  }

  .zeit-panel::after {
    left: 40%;
  }

  .zeit-left {
    min-height: 600px;
    padding: 52px 32px 36px;
  }

  .zeit-kicker {
    margin-bottom: 24px;
    font-size: 11px;
    letter-spacing: 3px;
  }

  .zeit-left h2 {
    font-size: 58px;
    line-height: .86;
    letter-spacing: -2.2px;
  }

  .zeit-left p {
    width: 95%;
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.48;
  }

  .zeit-note {
    left: 22px;
    bottom: 220px;
    max-width: 240px;
    font-size: 15px;
  }

  .zeit-note span {
    left: 96px;
    top: 44px;
  }

  .zeit-skelet {
    right: 18px;
    bottom: 30px;
    width: 88%;
  }

  .zeit-right {
    min-height: 600px;
    padding: 52px 36px 40px;
  }

  .zeit-table-wrap::before {
    inset: -14px;
  }

  .zeit-table {
    grid-template-columns: 1.75fr .4fr .4fr .4fr;
  }

  .zeit-table > * {
    min-height: 34px;
    padding: 0 10px;
    font-size: 11.5px;
  }

  .zeit-table .zt-head {
    font-size: 13px;
  }

  .zeit-result {
    gap: 6px;
    padding: 15px 16px;
    font-size: 15px;
  }

  .zeit-cinema-text {
    margin-top: 40px;
    padding-left: 24px;
  }

  .zeit-cinema-text small {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 3px;
  }

  .zeit-cinema-text p {
    max-width: 520px;
    font-size: 21px;
    line-height: 1.18;
    letter-spacing: -.5px;
  }

  .zeit-btn {
    margin-top: 42px;
    padding: 18px 52px;
    font-size: 13px;
  }
}

/* =========================================
   ZEIT SECTION — 768 / 425 / 375 / 320
========================================= */

@media (max-width: 768px) {
  .zeit-section {
    padding: 54px 0 64px;
  }

  .zeit-container {
    width: calc(100% - 28px);
    max-width: 620px;
  }

  .zeit-panel {
    display: flex;
    flex-direction: column;
    min-height: auto;
    border-radius: 16px;
    overflow: hidden;
    background: #111016;
  }

  .zeit-panel::after {
    display: none;
  }

  .zeit-left {
    width: 100%;
    min-height: 430px;
    padding: 34px 36px 22px;
    background: #f6a900;
  }

  .zeit-kicker {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 4px;
  }

  .zeit-left h2 {
    font-size: 56px;
    line-height: .88;
    letter-spacing: -2px;
  }

  .zeit-left p {
    width: 88%;
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.5;
  }

  .zeit-note {
    left: 142px;
    bottom: 85px;
    font-size: 12px;
  }

  .zeit-note span {
    display: block;
    left: 182px;
    top: 24px;
  }

  .zeit-skelet {
    right: 12px;
    bottom: -30px;
    width: 54%;
  }

  .zeit-right {
    width: 100%;
    min-height: auto;
    padding: 20px 28px 30px;
  }

  .zeit-table {
    grid-template-columns: 1.85fr .42fr .42fr .42fr;
  }

  .zeit-table > * {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .zeit-table .zt-head {
    font-size: 13px;
  }

  .zeit-result {
    padding: 16px 14px;
    font-size: 17px;
    line-height: 1.25;
    flex-wrap: wrap;
  }

  .zeit-cinema-text {
    margin-top: 34px;
    padding-left: 24px;
  }

  .zeit-cinema-text small {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 3px;
  }

  .zeit-cinema-text p {
    font-size: 24px;
    line-height: 1.16;
  }

  .zeit-btn {
    width: min(100%, 340px);
    margin-top: 34px;
    padding: 18px 34px;
    font-size: 13px;
  }
}

@media (max-width: 425px) {
  .zeit-section {
    padding: 42px 0 52px;
  }

  .zeit-container {
    width: calc(100% - 20px);
  }

  .zeit-panel {
    border-radius: 12px;
  }

  .zeit-left {
    min-height: 345px;
    padding: 24px 26px 18px;
  }

  .zeit-kicker {
    margin-bottom: 14px;
    font-size: 9px;
    letter-spacing: 3px;
  }

  .zeit-left h2 {
    font-size: 33px;
    line-height: .92;
    letter-spacing: -1.2px;
  }

  .zeit-left p {
    width: 80%;
    margin-top: 18px;
    font-size: 11px;
    line-height: 1.45;
  }

  .zeit-note {
    left: 90px;
    bottom: 92px;
    max-width: 250px;
    font-size: 12px;
  }

  .zeit-note span {
    left: 70px;
    top: 34px;
    width: 16px;
  }

  .zeit-skelet {
    right: 20px;
    bottom: -18px;
    width: 56%;
  }

  .zeit-right {
    padding: 14px 18px 24px;
  }

  .zeit-table > * {
    min-height: 31px;
    padding: 0 7px;
    font-size: 8.5px;
  }

  .zeit-table .zt-head {
    font-size: 10px;
  }

  .zeit-result {
    padding: 13px 10px;
    font-size: 14px;
  }

  .zeit-cinema-text {
    margin-top: 24px;
    padding-left: 18px;
  }

  .zeit-cinema-text small {
    font-size: 9px;
    letter-spacing: 2.5px;
  }

  .zeit-cinema-text p {
    font-size: 18px;
    line-height: 1.18;
  }

  .zeit-btn {
    width: calc(100% - 56px);
    margin-top: 28px;
    padding: 16px 22px;
    font-size: 11px;
  }
}

@media (max-width: 375px) {
  .zeit-container {
    width: calc(100% - 18px);
  }

  .zeit-left {
    min-height: 325px;
    padding: 22px 24px 16px;
  }

  .zeit-left h2 {
    font-size: 30px;
  }

  .zeit-left p {
    width: 82%;
    font-size: 10.5px;
  }

  .zeit-note {
    bottom: 86px;
    font-size: 11px;
  }

  .zeit-skelet {
    width: 55%;
  }

  .zeit-right {
    padding: 13px 16px 22px;
  }

  .zeit-table > * {
    min-height: 29px;
    padding: 0 6px;
    font-size: 8px;
  }

  .zeit-table .zt-head {
    font-size: 9px;
  }

  .zeit-result {
    font-size: 13px;
  }

  .zeit-cinema-text p {
    font-size: 17px;
  }

  .zeit-btn {
    width: calc(100% - 52px);
  }
}

@media (max-width: 320px) {
  .zeit-section {
    padding: 36px 0 46px;
  }

  .zeit-container {
    width: calc(100% - 14px);
  }

  .zeit-left {
    min-height: 305px;
    padding: 20px 20px 14px;
  }

  .zeit-kicker {
    font-size: 8px;
    letter-spacing: 2.4px;
  }

  .zeit-left h2 {
    font-size: 27px;
  }

  .zeit-left p {
    width: 86%;
    margin-top: 14px;
    font-size: 9.5px;
  }

  .zeit-note {
    left: 22px;
    bottom: 82px;
    font-size: 10px;
  }

  .zeit-note span {
    display: none;
  }

  .zeit-skelet {
    right: 14px;
    bottom: 14px;
    width: 54%;
  }

  .zeit-right {
    padding: 11px 12px 20px;
  }

  .zeit-table > * {
    min-height: 27px;
    padding: 0 4px;
    font-size: 7px;
  }

  .zeit-table .zt-head {
    font-size: 8px;
  }

  .zeit-result {
    padding: 11px 8px;
    font-size: 11px;
  }

  .zeit-cinema-text {
    margin-top: 22px;
    padding-left: 15px;
  }

  .zeit-cinema-text small {
    font-size: 8px;
    letter-spacing: 2px;
  }

  .zeit-cinema-text p {
    font-size: 14px;
    line-height: 1.22;
  }

  .zeit-btn {
    width: calc(100% - 36px);
    margin-top: 24px;
    padding: 14px 16px;
    font-size: 10px;
  }
}


/* =========================================
   RESPONSIVE — STEPS SECTION
========================================= */

@media (max-width: 1400px) {

  .steps-wrap {
    width: min(100% - 40px, 1240px);
  }

  .steps-head h2 span,
  .steps-head h2 strong {
    font-size: 72px;
  }
}

@media (max-width: 1199px) {

  .steps-section {
    padding: 110px 0 90px;
  }

  .steps-wrap {
    width: min(100% - 32px, 980px);
  }

  .steps-head {
    max-width: 880px;
  }

  .steps-head h2 span,
  .steps-head h2 strong {
    font-size: 60px;
    line-height: .92;
  }

  .steps-head p {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.6;
  }

  .steps-tabs {
    margin-top: 54px;
    gap: 14px;
  }

  .steps-tab {
    min-width: 120px;
    padding: 18px 20px;
  }

  .steps-tab b {
    font-size: 26px;
  }

  .steps-tab span {
    font-size: 14px;
  }

  .steps-content {
    margin-top: 46px;
  }

  .steps-panel {
    gap: 34px;
    padding: 38px;
    border-radius: 30px;
  }

  .steps-number {
    font-size: 120px;
  }

  .steps-panel h3 {
    font-size: 40px;
  }

  .steps-panel p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.6;
  }

  .steps-panel ul {
    margin-top: 24px;
  }

  .steps-panel ul li {
    font-size: 15px;
  }
}

@media (max-width: 991px) {

  .steps-section {
    padding: 95px 0 75px;
  }

  .steps-wrap {
    width: min(100% - 24px, 760px);
  }

  .steps-head h2 span,
  .steps-head h2 strong {
    font-size: 48px;
  }

  .steps-head p {
    font-size: 15px;
  }

  .steps-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    gap: 12px;
    padding-bottom: 12px;
    margin-top: 46px;
  }

  .steps-tabs::-webkit-scrollbar {
    height: 5px;
  }

  .steps-tabs::-webkit-scrollbar-thumb {
    background: rgba(255,176,0,.45);
    border-radius: 999px;
  }

  .steps-tab {
    min-width: 110px;
    flex-shrink: 0;
    padding: 16px 18px;
  }

  .steps-tab b {
    font-size: 22px;
  }

  .steps-tab span {
    font-size: 13px;
  }

  .steps-content {
    margin-top: 38px;
  }

  .steps-panel {
    flex-direction: column;
    gap: 18px;
    padding: 32px;
  }

  .steps-number {
    font-size: 92px;
    line-height: .8;
  }

  .steps-panel h3 {
    font-size: 34px;
    line-height: 1;
  }

  .steps-panel p {
    margin-top: 16px;
  }
}

/* =========================================
   RESPONSIVE — STEPS SECTION / CLEAN FIX
========================================= */

@media (max-width: 768px) {
  .steps-section {
    padding: 54px 0 58px !important;
  }

  .steps-wrap {
    width: calc(100% - 28px) !important;
    max-width: 560px !important;
    margin: 0 auto !important;
  }

  .steps-head {
    max-width: 100% !important;
    margin: 0 auto 30px !important;
    text-align: center;
  }

  .steps-kicker {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 4px;
  }

  .steps-head h2 {
    margin-bottom: 18px;
    line-height: .92;
    letter-spacing: -1.4px;
  }

  .steps-head h2 span {
    font-size: 31px !important;
  }

  .steps-head h2 strong {
    font-size: 40px !important;
  }

  .steps-head p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.55;
  }

  .steps-tabs {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 26px;
    max-width: none;
    width: auto;
    margin: 0 -14px 32px;
    padding: 8px 14px 24px;
    scroll-snap-type: x mandatory;
  }

  .steps-tabs::before {
    left: 38px;
    right: 38px;
    top: 75px;
  }

  .steps-tab {
    flex: 0 0 74px;
    min-width: 74px;
    padding: 0 0 34px;
    scroll-snap-align: center;
  }

  .steps-tab b {
    margin-bottom: 9px;
    font-size: 28px;
  }

  .steps-tab span {
    font-size: 12px;
    font-weight: 950;
  }

  .steps-tab::after {
    top: 68px;
    width: 13px;
    height: 13px;
  }

  .steps-tab.active::after {
    top: 67px;
    width: 16px;
    height: 16px;
  }

  .steps-content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .steps-panel {
    position: relative;
    display: none;
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 38px 36px 34px !important;
    overflow: hidden;
    border-radius: 0;
  }

  .steps-panel.active {
    display: grid !important;
  }

  .steps-number {
    position: absolute;
    left: 26px;
    top: 30px;
    z-index: 0;
    font-size: 128px;
    opacity: .18;
  }

  .steps-panel > div:not(.steps-number) {
    position: relative;
    z-index: 2;
    width: 100%;
  }

  .steps-panel h3 {
    max-width: 100%;
    margin: 42px 0 20px;
    font-size: 28px;
    line-height: 1.12;
  }

  .steps-panel p {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
  }

  .steps-panel ul {
    width: 100%;
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .steps-panel li {
    width: 100%;
    padding-left: 32px;
    font-size: 14px;
    line-height: 1.45;
  }
}

@media (max-width: 425px) {
  .steps-section {
    padding: 46px 0 52px !important;
  }

  .steps-wrap {
    width: calc(100% - 20px) !important;
    max-width: none !important;
  }

  .steps-head h2 span {
    font-size: 23px !important;
  }

  .steps-head h2 strong {
    font-size: 31px !important;
  }

  .steps-head p {
    font-size: 12.5px;
  }

  .steps-tabs {
    gap: 22px;
    margin: 0 -10px 28px;
    padding: 6px 10px 22px;
  }

  .steps-tabs::before {
    top: 68px;
  }

  .steps-tab {
    flex: 0 0 62px;
    min-width: 62px;
    padding-bottom: 32px;
  }

  .steps-tab b {
    font-size: 24px;
  }

  .steps-tab span {
    font-size: 9px;
  }

  .steps-tab::after {
    top: 62px;
  }

  .steps-tab.active::after {
    top: 61px;
  }

  .steps-panel {
    padding: 32px 22px 30px !important;
  }

  .steps-number {
    left: 20px;
    top: 24px;
    font-size: 116px;
  }

  .steps-panel h3 {
    margin-top: 34px;
    font-size: 23px;
  }

  .steps-panel p {
    font-size: 12.8px;
    line-height: 1.58;
  }

  .steps-panel li {
    font-size: 12.5px;
  }
}

@media (max-width: 375px) {
  .steps-wrap {
    width: calc(100% - 18px) !important;
  }

  .steps-head h2 span {
    font-size: 21px !important;
  }

  .steps-head h2 strong {
    font-size: 28px !important;
  }

  .steps-tab {
    flex-basis: 58px;
    min-width: 58px;
  }

  .steps-tab b {
    font-size: 22px;
  }

  .steps-tab span {
    font-size: 8px;
  }

  .steps-panel {
    padding: 30px 20px 28px !important;
  }

  .steps-panel h3 {
    font-size: 21px;
  }

  .steps-panel p {
    font-size: 12px;
  }

  .steps-panel li {
    font-size: 11.8px;
  }
}

@media (max-width: 320px) {
  .steps-wrap {
    width: calc(100% - 14px) !important;
  }

  .steps-head h2 span {
    font-size: 18px !important;
  }

  .steps-head h2 strong {
    font-size: 23px !important;
  }

  .steps-head p {
    font-size: 10.8px;
  }

  .steps-tabs {
    gap: 16px;
    margin: 0 -7px 24px;
    padding: 4px 7px 20px;
  }

  .steps-tab {
    flex-basis: 50px;
    min-width: 50px;
  }

  .steps-tab b {
    font-size: 18px;
  }

  .steps-tab span {
    font-size: 7px;
  }

  .steps-panel {
    padding: 28px 18px 26px !important;
  }

  .steps-number {
    font-size: 94px;
  }

  .steps-panel h3 {
    font-size: 18px;
  }

  .steps-panel p {
    font-size: 10.8px;
  }

  .steps-panel li {
    font-size: 10.7px;
  }
}


/* =========================================
   RESPONSIVE — AUDIT SECTION
========================================= */

/* =========================================
   RESPONSIVE — AUDIT SECTION FINAL
   1440 / 1024 / 768 / 425 / 375 / 320
========================================= */

@media (max-width: 1440px) {
  .audit-section {
    padding: 78px 0 82px;
  }

  .audit-wrap {
    width: min(100% - 70px, 1320px);
    grid-template-columns: 1.02fr .98fr;
    gap: 54px;
  }

  .audit-left {
    min-height: 560px;
  }

  .audit-title span {
    font-size: 52px;
  }

  .audit-title strong {
    font-size: 72px;
  }

  .audit-dino {
    width: 620px;
    left: 80px;
    bottom: -12px;
  }

  .audit-note {
    left: 90px;
    bottom: 245px;
    font-size: 20px;
  }

  .audit-form-card {
    padding: 48px 48px 44px;
  }

  .audit-form h3 {
    font-size: 32px;
  }
}

@media (max-width: 1024px) {
  .audit-section {
    padding: 66px 0 74px;
  }

  .audit-wrap {
    width: min(100% - 44px, 940px);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .audit-left {
    min-height: 540px;
    text-align: center;
  }

  .audit-title {
    align-items: center;
    margin: 0 auto;
  }

  .audit-title span {
    font-size: 42px;
  }

  .audit-title strong {
    font-size: 58px;
  }

  .audit-dino {
    width: 560px;
    left: 50%;
    bottom: -4px;
    transform: translateX(-50%);
  }

  .audit-note {
    left: calc(50% - 245px);
    bottom: 235px;
    font-size: 17px;
  }

  .audit-form-card {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 42px 38px 38px;
  }
}

@media (max-width: 768px) {
  .audit-section {
    padding: 52px 0 58px;
  }

  .audit-wrap {
    width: calc(100% - 28px);
    max-width: 560px;
    gap: 26px;
  }

  .audit-left {
    min-height: 455px;
  }

  .audit-kicker {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .audit-title {
    letter-spacing: -1.5px;
  }

  .audit-title span {
    font-size: 32px;
  }

  .audit-title strong {
    font-size: 45px;
  }

  .audit-dino {
    width: 430px;
    bottom: 0;
  }

  .audit-note {
    left: 34px;
    bottom: 190px;
    font-size: 14px;
  }

  .audit-note span {
    left: 106px;
    top: 44px;
    width: 45px;
  }

  .audit-form-card {
    padding: 30px 22px 28px;
    border-radius: 20px;
  }

  .audit-form h3 {
    margin-bottom: 22px;
    font-size: 25px;
  }

  .audit-form label {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .audit-form input:not([type="checkbox"]) {
    height: 50px;
    margin-top: 8px;
    font-size: 14px;
  }

  .audit-form button {
    width: 100%;
    height: 54px;
    margin: 4px 0 20px;
    font-size: 13px;
  }

  .audit-checkbox {
    grid-template-columns: 20px 1fr;
    gap: 11px;
    font-size: 11.5px !important;
  }

  .audit-checkbox input {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 425px) {
  .audit-section {
    padding: 42px 0 50px;
  }

  .audit-wrap {
    width: calc(100% - 20px);
  }

  .audit-left {
    min-height: 365px;
  }

  .audit-kicker {
    font-size: 9px;
    letter-spacing: 2.4px;
  }

  .audit-title span {
    font-size: 25px;
  }

  .audit-title strong {
    font-size: 36px;
  }

  .audit-dino {
    width: 330px;
  }

  .audit-note {
    left: 18px;
    bottom: 145px;
    font-size: 12px;
  }

  .audit-note span {
    display: none;
  }

  .audit-form-card {
    padding: 24px 18px 22px;
    border-radius: 18px;
  }

  .audit-form h3 {
    font-size: 21px;
  }

  .audit-form input:not([type="checkbox"]) {
    height: 48px;
  }
}

@media (max-width: 375px) {
  .audit-wrap {
    width: calc(100% - 18px);
  }

  .audit-left {
    min-height: 340px;
  }

  .audit-title span {
    font-size: 22px;
  }

  .audit-title strong {
    font-size: 32px;
  }

  .audit-dino {
    width: 300px;
  }

  .audit-note {
    bottom: 132px;
    font-size: 11px;
  }

  .audit-form-card {
    padding: 22px 16px 20px;
  }

  .audit-form h3 {
    font-size: 19px;
  }

  .audit-form label {
    font-size: 12px;
  }

  .audit-form button {
    height: 50px;
    font-size: 12px;
  }
}

@media (max-width: 320px) {
  .audit-section {
    padding: 36px 0 44px;
  }

  .audit-wrap {
    width: calc(100% - 14px);
  }

  .audit-left {
    min-height: 305px;
  }

  .audit-title span {
    font-size: 19px;
  }

  .audit-title strong {
    font-size: 28px;
  }

  .audit-dino {
    width: 260px;
  }

  .audit-note {
    left: 10px;
    bottom: 112px;
    font-size: 10px;
  }

  .audit-form-card {
    padding: 20px 14px 18px;
    border-radius: 16px;
  }

  .audit-form h3 {
    font-size: 17px;
  }

  .audit-form label {
    margin-bottom: 13px;
    font-size: 11px;
  }

  .audit-form input:not([type="checkbox"]) {
    height: 44px;
    font-size: 12px;
  }

  .audit-form button {
    height: 46px;
    font-size: 11px;
  }

  .audit-checkbox {
    font-size: 9.8px !important;
  }
}



/* =========================================
   RESPONSIVE — WORKER SECTION
========================================= */

/* =========================================
   RESPONSIVE — WORKER SECTION
   1440 / 1024 / 768 / 425 / 375 / 320
========================================= */

/* 1440 */
@media (max-width: 1440px) {
    .worker-wrap {
        width: min(100% - 70px, 1320px);
        grid-template-columns: 660px 1fr;
        gap: 46px;
    }

    .worker-title span {
        font-size: 90px;
    }

    .worker-title strong {
        font-size: 43px;
    }

    .worker-text {
        max-width: 580px;
        font-size: 16px;
    }

    .worker-list {
        max-width: 610px;
        gap: 14px 16px;
    }

    .worker-item {
        min-height: 84px;
        padding: 16px 16px 15px 70px;
    }

    .worker-item b {
        left: 20px;
        font-size: 26px;
    }

    .worker-ui-card {
        width: 210px;
        min-height: 80px;
    }

    .worker-word-1 {
        right: 80px;
        top: 90px;
    }

    .worker-word-2 {
        right: 330px;
        bottom: 170px;
    }

    .worker-word-3 {
        right: 70px;
        bottom: 70px;
    }
}

/* 1024 */
@media (max-width: 1024px) {
    .worker-section {
        min-height: auto;
        padding: 86px 0 76px;
    }

    .worker-wrap {
        width: min(100% - 44px, 940px);
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .worker-content {
        width: 100%;
        max-width: 760px;
        padding-left: 30px;
    }

    .worker-title span {
        font-size: 78px;
    }

    .worker-title strong {
        font-size: 38px;
    }

    .worker-text {
        max-width: 660px;
        font-size: 16px;
    }

    .worker-list {
        max-width: 720px;
    }

    .worker-visual {
        min-height: 300px;
    }

    .worker-ui-1 {
        right: 70px;
        top: 20px;
    }

    .worker-ui-2 {
        left: 20px;
        top: 80px;
    }

    .worker-ui-3 {
        right: 0;
        bottom: 20px;
    }

    .worker-ui-4 {
        left: 210px;
        bottom: 0;
    }

    .worker-big-word {
        font-size: 82px;
    }

    .worker-word-1 {
        right: 20px;
        top: 70px;
    }

    .worker-word-2 {
        right: 230px;
        bottom: 160px;
    }

    .worker-word-3 {
        right: 40px;
        bottom: 70px;
    }

    .worker-overlay {
        background:
            radial-gradient(circle at 72% 60%, rgba(255,176,0,.16), transparent 34%),
            linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.92) 50%, rgba(0,0,0,.72) 100%),
            linear-gradient(180deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.22) 48%, rgba(0,0,0,.98) 100%);
    }
}

/* 768 */
@media (max-width: 768px) {
    .worker-section {
        padding: 58px 0 58px;
    }

    .worker-wrap {
        width: calc(100% - 28px);
        max-width: 560px;
        gap: 30px;
    }

    .worker-content {
        padding-left: 18px;
    }

    .worker-content::before {
        top: -24px;
        bottom: -24px;
    }

    .worker-kicker {
        margin-bottom: 13px;
        font-size: 10px;
        letter-spacing: 3.4px;
    }

    .worker-title {
        letter-spacing: -1.5px;
        line-height: .9;
    }

    .worker-title span {
        font-size: 58px;
    }

    .worker-title strong {
        font-size: 28px;
    }

    .worker-text {
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.5;
    }

    .worker-list {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 26px;
    }

    .worker-list::before {
        display: none;
    }

    .worker-item,
    .worker-item-2,
    .worker-item-5 {
        min-height: 76px;
        padding: 14px 14px 13px 66px;
        transform: none;
    }

    .worker-item:hover,
    .worker-item-2:hover,
    .worker-item-5:hover {
        transform: translateY(-3px);
    }

    .worker-item b {
        left: 18px;
        font-size: 25px;
    }

    .worker-item span {
        font-size: 15px;
    }

    .worker-item small {
        font-size: 11px;
    }

    .worker-bottom {
        margin-top: 26px;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .worker-proof {
        max-width: 100%;
    }

    .worker-visual {
        min-height: 230px;
    }

    .worker-ui-card {
        width: 185px;
        min-height: 72px;
        padding: 14px 15px;
    }

    .worker-ui-card span {
        margin-bottom: 6px;
        font-size: 10px;
        letter-spacing: 2px;
    }

    .worker-ui-card b {
        font-size: 13px;
    }

    .worker-ui-1 {
        right: 8px;
        top: 0;
    }

    .worker-ui-2 {
        left: 0;
        top: 56px;
    }

    .worker-ui-3 {
        right: 0;
        bottom: 26px;
    }

    .worker-ui-4 {
        left: 72px;
        bottom: 0;
    }

    .worker-big-word {
        font-size: 58px;
        letter-spacing: -3px;
    }
}

/* 425 */
@media (max-width: 425px) {
    .worker-section {
        padding: 46px 0 48px;
    }

    .worker-wrap {
        width: calc(100% - 20px);
    }

    .worker-content {
        padding-left: 14px;
    }

    .worker-kicker {
        font-size: 9px;
        letter-spacing: 2.6px;
    }

    .worker-title span {
        font-size: 44px;
    }

    .worker-title strong {
        font-size: 21px;
    }

    .worker-text {
        font-size: 12.5px;
    }

    .worker-item {
        min-height: 70px;
        padding: 13px 12px 12px 58px;
    }

    .worker-item b {
        left: 15px;
        font-size: 22px;
    }

    .worker-item span {
        font-size: 14px;
    }

    .worker-item small {
        font-size: 10.5px;
    }

    .worker-btn {
        font-size: 12px;
        letter-spacing: 1.4px;
    }

    .worker-proof b {
        font-size: 12px;
    }

    .worker-proof span {
        font-size: 11px;
    }

    .worker-visual {
        min-height: 210px;
    }

    .worker-ui-card {
        width: 158px;
        min-height: 66px;
        padding: 12px 13px;
    }

    .worker-ui-card b {
        font-size: 11.5px;
    }

    .worker-ui-1 {
        right: 0;
        top: 0;
    }

    .worker-ui-2 {
        left: 0;
        top: 48px;
    }

    .worker-ui-3 {
        right: 0;
        bottom: 30px;
    }

    .worker-ui-4 {
        left: 44px;
        bottom: 0;
    }

    .worker-big-word {
        font-size: 42px;
    }
}

/* 375 */
@media (max-width: 375px) {
    .worker-wrap {
        width: calc(100% - 18px);
    }

    .worker-title span {
        font-size: 39px;
    }

    .worker-title strong {
        font-size: 18.5px;
    }

    .worker-text {
        font-size: 12px;
    }

    .worker-item {
        min-height: 66px;
        padding-left: 54px;
    }

    .worker-item b {
        left: 14px;
        font-size: 20px;
    }

    .worker-item span {
        font-size: 13px;
    }

    .worker-item small {
        font-size: 10px;
    }

    .worker-visual {
        min-height: 195px;
    }

    .worker-ui-card {
        width: 145px;
        min-height: 62px;
        padding: 11px 12px;
    }

    .worker-ui-card span {
        font-size: 9px;
    }

    .worker-ui-card b {
        font-size: 10.5px;
    }

    .worker-ui-4 {
        left: 32px;
    }
}

/* 320 */
@media (max-width: 320px) {
    .worker-section {
        padding: 40px 0 42px;
    }

    .worker-wrap {
        width: calc(100% - 14px);
    }

    .worker-content {
        padding-left: 10px;
    }

    .worker-kicker {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .worker-title span {
        font-size: 34px;
    }

    .worker-title strong {
        font-size: 16px;
    }

    .worker-text {
        margin-top: 14px;
        font-size: 11px;
        line-height: 1.45;
    }

    .worker-list {
        margin-top: 22px;
        gap: 8px;
    }

    .worker-item {
        min-height: 62px;
        padding: 11px 10px 10px 48px;
    }

    .worker-item b {
        left: 12px;
        font-size: 18px;
    }

    .worker-item span {
        font-size: 12px;
    }

    .worker-item small {
        font-size: 9px;
    }

    .worker-bottom {
        margin-top: 22px;
    }

    .worker-btn {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .worker-proof {
        padding-left: 12px;
    }

    .worker-proof b {
        font-size: 11px;
    }

    .worker-proof span {
        font-size: 10px;
    }

    .worker-visual {
        min-height: 180px;
    }

    .worker-ui-card {
        width: 128px;
        min-height: 58px;
        padding: 10px;
    }

    .worker-ui-card span {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .worker-ui-card b {
        font-size: 9.5px;
    }

    .worker-ui-1 {
        right: 0;
    }

    .worker-ui-2 {
        left: 0;
        top: 44px;
    }

    .worker-ui-3 {
        right: 0;
        bottom: 28px;
    }

    .worker-ui-4 {
        left: 20px;
        bottom: 0;
    }

    .worker-big-word {
        font-size: 34px;
    }
}

/* =========================================
   WORKER FIX — HIDE RIGHT VISUAL FROM 1024
========================================= */

@media (max-width: 1024px) {
    .worker-wrap {
        display: block;
    }

    .worker-content {
        max-width: 760px;
    }

    .worker-visual,
    .worker-ui-card,
    .worker-big-word,
    .worker-grid-bg {
        display: none !important;
    }
}

/* =========================================
   RESPONSIVE — FUNCTION SECTION
========================================= */

/* =========================================
   FUNCTION SECTION — FINAL RESPONSIVE
   1440 / 1024 / 768 / 425 / 375 / 320
========================================= */

@media (max-width: 1440px) {
  .function-section {
    padding: 92px 0 110px;
  }

  .function-wrap {
    width: min(100% - 70px, 1320px);
  }

  .function-head {
    grid-template-columns: 1.05fr .95fr;
    gap: 58px;
    margin-bottom: 66px;
  }

  .function-kicker {
    margin-bottom: -34px;
    font-size: 12px;
    letter-spacing: 5px;
  }

  .function-title span {
    font-size: 60px;
  }

  .function-title strong {
    font-size: 76px;
  }

  .function-head p {
    max-width: 520px;
    font-size: 17px;
    line-height: 1.55;
  }

  .function-grid {
    gap: 42px;
  }

  .function-card {
    padding-right: 18px;
  }

  .function-card::before {
    right: -22px;
  }

  .function-number {
    font-size: 42px;
    margin-bottom: 18px;
  }

  .function-card h3 {
    font-size: 25px;
    margin-bottom: 26px;
  }

  .function-card li {
    font-size: 12.5px;
    line-height: 1.4;
    margin-bottom: 13px;
  }
}

@media (max-width: 1024px) {
  .function-section {
    padding: 72px 0 82px;
  }

  .function-wrap {
    width: calc(100% - 44px);
    max-width: 960px;
  }

  .function-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 34px;
  }

  .function-kicker {
    grid-column: auto;
    margin: 0;
    font-size: 11px;
    letter-spacing: 4px;
  }

  .function-title {
    letter-spacing: -2px;
  }

  .function-title span {
    font-size: 48px;
  }

  .function-title strong {
    font-size: 60px;
  }

  .function-head p {
    max-width: 620px;
    font-size: 15px;
    line-height: 1.55;
  }

  .function-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    margin: 0 -22px;
    padding: 14px 22px 34px;
  }

  .function-grid::-webkit-scrollbar {
    height: 6px;
  }

  .function-grid::-webkit-scrollbar-thumb {
    background: rgba(255,176,0,.55);
    border-radius: 999px;
  }

  .function-card {
    flex: 0 0 390px;
    min-width: 390px;
    min-height: 390px;
    scroll-snap-align: center;
    padding: 32px 30px 28px;
    opacity: 1;
    overflow: hidden;
    border-radius: 0;
    background:
      radial-gradient(circle at 92% 12%, rgba(255,176,0,.14), transparent 28%),
      linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
      rgba(5,5,5,.72);
    border: 1px solid rgba(255,176,0,.20);
    box-shadow:
      0 28px 70px rgba(0,0,0,.45),
      inset 0 0 0 1px rgba(255,255,255,.035);
  }

  .function-card::before {
    display: none;
  }

  .function-card::after {
    content: "";
    position: absolute;
    inset: auto 16px 16px auto;
    width: 58px;
    height: 58px;
    border-right: 2px solid rgba(255,176,0,.55);
    border-bottom: 2px solid rgba(255,176,0,.55);
    opacity: .55;
    pointer-events: none;
  }

  .function-number {
    margin-bottom: 18px;
    font-size: 58px;
  }

  .function-card h3 {
    max-width: 280px;
    margin-bottom: 22px;
    font-size: 25px;
  }

  .function-card li {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.42;
    margin-bottom: 10px;
  }

  .function-card li:nth-child(n+7) {
    display: none;
  }

  .function-wrap::after {
    content: "← WISCHEN →";
    display: block;
    margin: -16px auto 0;
    width: fit-content;
    color: rgba(255,176,0,.85);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 2px;
  }
}

@media (max-width: 768px) {
  .function-section {
    padding: 54px 0 62px;
  }

  .function-wrap {
    width: calc(100% - 28px);
    max-width: 620px;
  }

  .function-head {
    gap: 16px;
    margin-bottom: 26px;
  }

  .function-kicker {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .function-title {
    line-height: .9;
    letter-spacing: -1.5px;
  }

  .function-title span {
    font-size: 38px;
  }

  .function-title strong {
    font-size: 48px;
  }

  .function-head p {
    font-size: 13.5px;
    line-height: 1.5;
  }

  .function-grid {
    gap: 16px;
    margin: 0 -14px;
    padding: 10px 14px 32px;
  }

  .function-card {
    flex-basis: 360px;
    min-width: 360px;
    min-height: 370px;
    padding: 30px 28px 26px;
  }

  .function-number {
    font-size: 56px;
  }

  .function-card h3 {
    font-size: 24px;
  }

  .function-card li {
    font-size: 12.5px;
  }

  .function-card li:nth-child(n+6) {
    display: none;
  }
}

@media (max-width: 425px) {
  .function-section {
    padding: 46px 0 54px;
  }

  .function-wrap {
    width: calc(100% - 20px);
  }

  .function-kicker {
    font-size: 9px;
    letter-spacing: 2.6px;
  }

  .function-title span {
    font-size: 31px;
  }

  .function-title strong {
    font-size: 37px;
  }

  .function-head p {
    font-size: 12px;
  }

  .function-grid {
    gap: 14px;
    margin: 0 -10px;
    padding: 8px 10px 30px;
  }

  .function-card {
    flex-basis: 315px;
    min-width: 315px;
    min-height: 360px;
    padding: 28px 22px 24px;
  }

  .function-number {
    font-size: 64px;
    margin-bottom: 14px;
    opacity: .95;
  }

  .function-card h3 {
    max-width: 220px;
    font-size: 23px;
    line-height: 1.04;
    margin-bottom: 20px;
  }

  .function-card li {
    padding-left: 18px;
    font-size: 12px;
    line-height: 1.42;
    margin-bottom: 10px;
  }

  .function-card li:nth-child(n+6) {
    display: none;
  }
}

@media (max-width: 375px) {
  .function-wrap {
    width: calc(100% - 18px);
  }

  .function-title span {
    font-size: 28px;
  }

  .function-title strong {
    font-size: 34px;
  }

  .function-card {
    flex-basis: 292px;
    min-width: 292px;
    min-height: 350px;
    padding: 26px 20px 22px;
  }

  .function-number {
    font-size: 58px;
  }

  .function-card h3 {
    font-size: 21px;
  }

  .function-card li {
    font-size: 11.5px;
  }
}

@media (max-width: 320px) {
  .function-section {
    padding: 40px 0 48px;
  }

  .function-wrap {
    width: calc(100% - 14px);
  }

  .function-kicker {
    font-size: 8px;
    letter-spacing: 2px;
  }

  .function-title span {
    font-size: 24px;
  }

  .function-title strong {
    font-size: 29px;
  }

  .function-head p {
    font-size: 11px;
    line-height: 1.45;
  }

  .function-card {
    flex-basis: 266px;
    min-width: 266px;
    min-height: 340px;
    padding: 24px 18px 20px;
  }

  .function-number {
    font-size: 50px;
  }

  .function-card h3 {
    font-size: 19px;
  }

  .function-card li {
    font-size: 10.8px;
    line-height: 1.4;
  }

  .function-wrap::after {
    font-size: 9px;
    letter-spacing: 1.6px;
  }
}




/* =========================================
   REASONS SECTION — FINAL RESPONSIVE FIX
   1440 / 1024 / 768 / 425 / 375 / 320
========================================= */

@media (max-width: 1440px) {
  .reasons-section {
    padding: 42px 0 72px !important;
    overflow: hidden !important;
  }

  .reasons-wrap {
    width: calc(100% - 56px) !important;
    max-width: 1380px !important;
    margin: 0 auto !important;
  }

  .reasons-layout {
    display: block !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 42px 48px 48px !important;
    border-radius: 22px !important;
    overflow: hidden !important;
  }

  .reasons-left,
  .reasons-right {
    width: 100% !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    overflow: visible !important;
  }

  .reasons-left::after,
  .reasons-right::before {
    display: none !important;
  }

  .reasons-title {
    display: flex !important;
    align-items: flex-start !important;
    gap: 26px !important;
    margin: 0 0 34px !important;
  }

  .reasons-title strong {
    flex-shrink: 0 !important;
    font-size: 120px !important;
    line-height: .74 !important;
    letter-spacing: -7px !important;
  }

  .reasons-title h2 {
    margin: 0 !important;
    padding-top: 4px !important;
    max-width: 700px !important;
    line-height: .92 !important;
  }

  .reasons-title h2 span {
    font-size: 38px !important;
    line-height: .9 !important;
  }

  .reasons-title h2 b {
    font-size: 37px !important;
    line-height: .92 !important;
    white-space: normal !important;
  }

  .reasons-tabs {
    display: flex !important;
    gap: 18px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    margin: 0 0 34px !important;
    padding: 0 0 24px !important;
    scroll-snap-type: x mandatory !important;
  }

  .reasons-tabs::-webkit-scrollbar {
    height: 5px !important;
  }

  .reasons-tabs::-webkit-scrollbar-track {
    background: rgba(255,255,255,.12) !important;
    border-radius: 999px !important;
  }

  .reasons-tabs::-webkit-scrollbar-thumb {
    background: #ffb000 !important;
    border-radius: 999px !important;
  }

  .reasons-tabs label {
    flex: 0 0 150px !important;
    width: 150px !important;
    min-width: 150px !important;
    min-height: 108px !important;
    padding: 15px 12px !important;
    border-radius: 15px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    scroll-snap-align: start !important;
    background: rgba(255,255,255,.035) !important;
    border: 1px solid rgba(255,255,255,.13) !important;
  }

  .reasons-tabs label i {
    width: 56px !important;
    height: 56px !important;
    margin: 0 0 10px !important;
    display: grid !important;
    place-items: center !important;
    font-size: 30px !important;
    color: rgba(255,255,255,.45) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
  }

  .reasons-tabs label b {
    display: none !important;
  }

  .reasons-tabs label span {
    color: rgba(255,255,255,.58) !important;
    font-size: 13px !important;
    font-weight: 950 !important;
  }

  #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"] {
    border-color: rgba(255,176,0,.85) !important;
    background: rgba(255,176,0,.08) !important;
    box-shadow: 0 0 28px rgba(255,176,0,.18) !important;
  }

  #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 {
    color: #ffb000 !important;
    border-color: rgba(255,176,0,.9) !important;
    text-shadow: 0 0 18px rgba(255,176,0,.65) !important;
  }

  #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: #ffb000 !important;
  }

  .reason-panel {
    display: none !important;
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 430px !important;
    margin: 0 !important;
    padding: 68px 76px 60px 52% !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    background:
      linear-gradient(90deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.12) 36%, rgba(0,0,0,.72) 56%, rgba(0,0,0,.98) 100%),
      url("img/bg-REASONS-icon.png") left center / cover no-repeat !important;
    border: 1px solid rgba(255,176,0,.22) !important;
  }

  #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 !important;
  }

  .reason-bg-number {
    left: 42px !important;
    top: 30px !important;
    font-size: 126px !important;
    color: rgba(255,255,255,.08) !important;
  }

  .reason-big-icon {
    position: absolute !important;
    left: 23% !important;
    top: 52% !important;
    transform: translate(-50%, -50%) !important;
    width: 240px !important;
    height: 240px !important;
    display: grid !important;
    place-items: center !important;
    color: #ffb000 !important;
    font-size: 132px !important;
    text-shadow: 0 0 34px rgba(255,176,0,.55) !important;
  }

  .reason-panel h3 {
    margin: 0 0 18px !important;
    color: #fff !important;
    font-size: 40px !important;
    line-height: 1.05 !important;
  }

  .reason-panel p {
    max-width: 620px !important;
    margin: 0 0 22px !important;
    color: rgba(255,255,255,.9) !important;
    font-size: 17px !important;
    line-height: 1.48 !important;
  }

  .reason-panel li {
    margin-bottom: 10px !important;
    color: rgba(255,255,255,.86) !important;
    font-size: 14.5px !important;
    line-height: 1.4 !important;
  }
}

@media (max-width: 1024px) {
  .reasons-wrap {
    width: calc(100% - 44px) !important;
    max-width: 980px !important;
  }

  .reasons-layout {
    padding: 36px 36px 42px !important;
  }

  .reasons-title strong {
    font-size: 96px !important;
  }

  .reasons-title h2 span {
    font-size: 31px !important;
  }

  .reasons-title h2 b {
    font-size: 30px !important;
  }

  .reasons-tabs label {
    flex: 0 0 128px !important;
    width: 128px !important;
    min-width: 128px !important;
    min-height: 96px !important;
  }

  .reason-panel {
    min-height: 410px !important;
    padding: 58px 56px 52px 48% !important;
  }

  .reason-big-icon {
    left: 25% !important;
    width: 200px !important;
    height: 200px !important;
    font-size: 110px !important;
  }

  .reason-panel h3 {
    font-size: 34px !important;
  }

  .reason-panel p {
    max-width: 480px !important;
    font-size: 15px !important;
  }

  .reason-panel li {
    font-size: 13px !important;
  }
}

/* =========================================
   REASONS — MOBILE RESTORE FIX
   425 / 375 / 320
========================================= */

@media (max-width: 768px) {
  .reasons-tabs {
    gap: 12px !important;
    margin: 0 -22px 24px !important;
    padding: 0 22px 18px !important;
  }

  .reason-panel {
    min-height: auto !important;
    padding: 150px 24px 30px !important;
    background:
      linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.28) 34%, rgba(0,0,0,.88) 62%, rgba(0,0,0,.98) 100%),
      url("img/bg-REASONS-icon.png") center top / cover no-repeat !important;
  }

  .reason-big-icon {
    left: 49% !important;
    top: 82px !important;
    width: 118px !important;
    height: 118px !important;
    transform: translateX(-50%) !important;
    font-size: 64px !important;
  }
}

@media (max-width: 425px) {
  .reasons-wrap {
    width: calc(100% - 18px) !important;
    max-width: 407px !important;
  }

  .reasons-layout {
    padding: 22px 12px 20px !important;
    border-radius: 18px !important;
  }

  .reasons-title {
    gap: 10px !important;
    margin-bottom: 22px !important;
  }

  .reasons-title strong {
    font-size: 68px !important;
  }

  .reasons-title h2 {
    max-width: 230px !important;
    padding-top: 2px !important;
  }

  .reasons-title h2 span {
    font-size: 20px !important;
  }

  .reasons-title h2 b {
    font-size: 19px !important;
    line-height: .9 !important;
  }

  .reasons-tabs {
    gap: 10px !important;
    margin: 0 -12px 20px !important;
    padding: 0 12px 16px !important;
  }

  .reasons-tabs label {
    flex: 0 0 88px !important;
    width: 88px !important;
    min-width: 88px !important;
    min-height: 78px !important;
    padding: 9px 8px !important;
  }

  .reasons-tabs label i {
    width: 38px !important;
    height: 38px !important;
    margin-bottom: 8px !important;
    font-size: 22px !important;
  }

  .reasons-tabs label span {
    font-size: 10px !important;
  }

  .reason-panel {
    padding: 128px 16px 22px !important;
    border-radius: 16px !important;
  }

  .reason-bg-number {
    left: 18px !important;
    top: 16px !important;
    font-size: 76px !important;
  }

  .reason-big-icon {
    top: 80px !important;
    width: 104px !important;
    height: 104px !important;
    font-size: 58px !important;
  }

  .reason-panel h3 {
    font-size: 20px !important;
  }

  .reason-panel p {
    font-size: 12px !important;
  }

  .reason-panel li {
    font-size: 11.4px !important;
  }
}

@media (max-width: 375px) {
  .reasons-wrap {
    width: calc(100% - 18px) !important;
    max-width: 357px !important;
  }

  .reasons-title strong {
    font-size: 64px !important;
  }

  .reasons-title h2 {
    max-width: 205px !important;
  }

  .reasons-title h2 span {
    font-size: 18px !important;
  }

  .reasons-title h2 b {
    font-size: 17px !important;
  }

  .reasons-tabs label {
    flex-basis: 84px !important;
    width: 84px !important;
    min-width: 84px !important;
  }

  .reason-panel {
    padding: 122px 15px 20px !important;
  }

  .reason-big-icon {
    top: 76px !important;
    width: 98px !important;
    height: 98px !important;
    font-size: 54px !important;
  }

  .reason-panel h3 {
    font-size: 19px !important;
  }

  .reason-panel p,
  .reason-panel li {
    font-size: 11.2px !important;
  }
}

@media (max-width: 320px) {
  .reasons-wrap {
    width: calc(100% - 14px) !important;
    max-width: 306px !important;
  }

  .reasons-layout {
    padding: 18px 10px 16px !important;
  }

  .reasons-title {
    gap: 8px !important;
  }

  .reasons-title strong {
    font-size: 54px !important;
  }

  .reasons-title h2 {
    max-width: 170px !important;
  }

  .reasons-title h2 span {
    font-size: 16px !important;
  }

  .reasons-title h2 b {
    font-size: 15px !important;
  }

  .reasons-tabs {
    gap: 8px !important;
    margin: 0 -10px 18px !important;
    padding: 0 10px 15px !important;
  }

  .reasons-tabs label {
    flex-basis: 76px !important;
    width: 76px !important;
    min-width: 76px !important;
    min-height: 70px !important;
  }

  .reasons-tabs label i {
    width: 32px !important;
    height: 32px !important;
    font-size: 18px !important;
  }

  .reasons-tabs label span {
    font-size: 8.5px !important;
  }

  .reason-panel {
    padding: 108px 12px 18px !important;
  }

  .reason-big-icon {
    top: 68px !important;
    width: 88px !important;
    height: 88px !important;
    font-size: 48px !important;
  }

  .reason-panel h3 {
    font-size: 17px !important;
  }

  .reason-panel p,
  .reason-panel li {
    font-size: 10.3px !important;
  }
}

/* =========================================
   REASON ICON GLOW — FIXED
========================================= */

.reason-big-icon {
  position: absolute !important;
  z-index: 5 !important;

  display: grid !important;
  place-items: center !important;

  color: #ffb000 !important;

  text-shadow:
    0 0 10px rgba(255,176,0,.95),
    0 0 24px rgba(255,176,0,.85),
    0 0 54px rgba(255,120,0,.55),
    0 0 110px rgba(255,80,0,.28) !important;

  filter:
    drop-shadow(0 0 12px rgba(255,176,0,.75))
    drop-shadow(0 0 34px rgba(255,120,0,.45)) !important;
}

/* свет позади */
.reason-panel::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;

  left: 18%;
  top: 58%;

  width: 340px;
  height: 340px;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(255,176,0,.30) 0%,
      rgba(255,140,0,.16) 34%,
      rgba(255,90,0,.08) 56%,
      transparent 74%);

  filter: blur(30px);
}

/* контент поверх света */
.reason-panel > * {
  position: relative;
  z-index: 3;
}

@media (max-width: 768px) {
  .reason-panel::after {
    left: 50%;
    top: 92px;

    width: 180px;
    height: 180px;

    transform: translateX(-50%);
  }
}
/* =========================================
   RESPONSIVE — LEAD ORDER SECTION
========================================= */

.lead-dropdown-btn {
  display: none;
}

/* 1024 и ниже */
@media (max-width: 1024px) {
  .lead-order-section {
    min-height: auto;
    padding: 54px 0 58px;
  }

  .lead-order-wrap {
    width: min(100% - 44px, 940px);
    min-height: auto;
  }

  .lead-order-head {
    grid-template-columns: 1fr 340px;
    gap: 34px;
    margin-bottom: 26px;
  }

  .lead-order-head h2 span {
    font-size: 54px;
  }

  .lead-order-head h2 strong {
    font-size: 58px;
  }

  .lead-order-head p {
    margin-top: 4px;
    font-size: 17px;
    line-height: 1.45;
  }

  .lead-order-body {
    grid-template-columns: 1fr 370px;
    gap: 34px;
  }

  .lead-order-left {
    min-height: 430px;
  }

  .lead-order-right {
    transform: none;
  }

  .lead-order-left h3,
  .lead-form h3 {
    font-size: 20px;
  }

  .lead-order-left h3 em,
  .lead-form h3 em {
    font-size: 27px;
  }

  .lead-dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 330px;
    max-width: 100%;
    height: 48px;
    margin-bottom: 12px;
    padding: 0 18px;
    border: 1px solid rgba(240,160,0,.35);
    border-radius: 14px;
    background: linear-gradient(180deg, #fff, #f2f3f5);
    color: #080b18;
    font-size: 14px;
    font-weight: 950;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(0,0,0,.08);
  }

  .lead-dropdown-btn span {
    color: #f0a000;
    font-size: 18px;
    transition: .25s ease;
  }

  .lead-dropdown-btn.is-open span {
    transform: rotate(180deg);
  }

  .lead-check-grid {
    display: none;
    width: 330px;
    max-height: 300px;
    overflow-y: auto;
    padding: 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(8,11,24,.10);
    box-shadow: 0 18px 38px rgba(0,0,0,.10);
  }

  .lead-check-grid.is-open {
    display: grid;
  }

  .lead-check-grid label {
    font-size: 14px;
    gap: 10px;
  }

  .lead-dino-box {
    right: 60px;
    bottom: -118px;
    width: 430px;
    height: 250px;
  }

  .lead-dino-box img {
    width: 500px;
  }

  .lead-dino-note {
    left: 104px;
    top: -64px;
    font-size: 15px;
  }
}

/* 768 */
@media (max-width: 768px) {
  .lead-order-section {
    padding: 46px 0 52px;
  }

  .lead-order-wrap {
    width: calc(100% - 28px);
    max-width: 560px;
  }

  .lead-order-head {
    display: block;
    margin-bottom: 28px;
  }

  .lead-order-head h2 span {
    font-size: 39px;
  }

  .lead-order-head h2 strong {
    font-size: 44px;
  }

  .lead-order-head p {
    margin-top: 18px;
    max-width: 100%;
    font-size: 15px;
  }

  .lead-order-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .lead-order-left {
    min-height: 360px;
  }

  .lead-dropdown-btn,
  .lead-check-grid {
    width: 100%;
  }

  .lead-dino-box {
    left: 70%;
    right: auto;
    bottom: -70px;
    width: 430px;
    transform: translateX(-50%);
  }

  .lead-dino-box img {
    width: 470px;
  }

  .lead-dino-note {
    left: 120px;
    top: -56px;
  }

  .lead-form input:not([type="checkbox"]) {
    height: 42px;
  }

  .lead-form textarea {
    height: 90px;
  }

  .lead-form button {
    width: 100%;
    height: 52px;
  }
}

/* 425 */
@media (max-width: 425px) {
  .lead-order-wrap {
    width: calc(100% - 20px);
  }

  .lead-order-head h2 span {
    font-size: 30px;
  }

  .lead-order-head h2 strong {
    font-size: 34px;
  }

  .lead-order-head p {
    font-size: 13px;
  }

  .lead-order-left {
    min-height: 300px;
  }

  .lead-order-left h3,
  .lead-form h3 {
    font-size: 18px;
  }

  .lead-order-left h3 em,
  .lead-form h3 em {
    font-size: 24px;
  }

  .lead-dino-box {
    width: 330px;
    height: 190px;
  }

  .lead-dino-box img {
    width: 360px;
  }

  .lead-dino-note {
    left: 22px;
    top: -42px;
    font-size: 12px;
  }
}

/* 375 */
@media (max-width: 375px) {
  .lead-order-head h2 span {
    font-size: 27px;
  }

  .lead-order-head h2 strong {
    font-size: 31px;
  }

  .lead-dino-box img {
    width: 335px;
  }
}

/* 320 */
@media (max-width: 320px) {
  .lead-order-wrap {
    width: calc(100% - 14px);
  }

  .lead-order-head h2 span {
    font-size: 23px;
  }

  .lead-order-head h2 strong {
    font-size: 27px;
  }

  .lead-dropdown-btn {
    height: 45px;
    font-size: 12px;
  }

  .lead-check-grid label {
    font-size: 12px;
  }

  .lead-dino-box {
    width: 250px;
  }

  .lead-dino-box img {
    width: 255px;
  }
}




/* =========================================
   RESPONSIVE — FOOTER
========================================= */

/* =========================================
   RESPONSIVE — FOOTER / FINAL
   1440 / 1024 / 768 / 425 / 375 / 320
========================================= */

@media (max-width: 1440px) {
  .site-footer {
    padding: 78px 0 28px;
  }

  .footer-wrap,
  .footer-bottom {
    width: min(100% - 70px, 1320px);
    max-width: none;
  }

  .footer-wrap {
    gap: 70px;
  }

  .footer-left {
    width: 330px;
  }

  .footer-title {
    font-size: 38px;
    margin-bottom: 38px;
  }

  .footer-services {
    gap: 24px 70px;
  }

  .footer-service-column {
    gap: 15px;
  }

  .footer-service-column span {
    font-size: 16px;
  }

  .footer-contact p,
  .footer-contact a {
    font-size: 20px;
  }
}

@media (max-width: 1024px) {
  .site-footer {
    padding: 64px 0 28px;
  }

  .footer-wrap,
  .footer-bottom {
    width: calc(100% - 44px);
  }

  .footer-wrap {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 44px;
  }

  .footer-left {
    width: 100%;
  }

  .footer-logo {
    margin-bottom: 34px;
  }

  .footer-logo-circle {
    width: 52px;
    height: 52px;
    font-size: 17px;
  }

  .footer-logo-text strong {
    font-size: 24px;
  }

  .footer-logo-text small {
    font-size: 13px;
  }

  .footer-contact {
    margin-bottom: 22px;
  }

  .footer-contact p,
  .footer-contact a {
    font-size: 17px;
  }

  .footer-socials {
    margin-top: 30px;
  }

  .footer-title {
    font-size: 34px;
    line-height: .95;
    margin-bottom: 30px;
  }

  .footer-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 34px;
  }

  .footer-service-column {
    gap: 13px;
  }

  .footer-service-column span {
    padding-left: 16px;
    font-size: 14px;
    line-height: 1.35;
  }

  .footer-bottom {
    margin-top: 56px;
    gap: 20px;
  }

  .footer-links {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 54px 0 26px;
  }

  .footer-wrap,
  .footer-bottom {
    width: calc(100% - 28px);
    max-width: 560px;
  }

  .footer-wrap {
    display: flex;
    flex-direction: column;
    gap: 38px;
  }

  .footer-left {
    padding: 24px;
    border: 1px solid rgba(255,176,0,.16);
    border-radius: 22px;
    background: rgba(255,255,255,.025);
  }

  .footer-logo {
    margin-bottom: 28px;
  }

  .footer-title {
    font-size: 30px;
    margin-bottom: 24px;
  }

  .footer-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
  }

  .footer-service-column {
    display: contents;
  }

  .footer-service-column span {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 10px 12px 10px 28px;
    border-radius: 13px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.06);
    font-size: 12.5px;
    line-height: 1.25;
  }

  .footer-service-column span::before {
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
  }

  .footer-bottom {
    margin-top: 34px;
    padding-top: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-links a {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.035);
    font-size: 12px;
  }
}

@media (max-width: 425px) {
  .site-footer {
    padding: 46px 0 24px;
  }

  .footer-wrap,
  .footer-bottom {
    width: calc(100% - 20px);
  }

  .footer-left {
    padding: 20px;
    border-radius: 20px;
  }

  .footer-logo-circle {
    width: 46px;
    height: 46px;
    font-size: 15px;
  }

  .footer-logo-text strong {
    font-size: 21px;
  }

  .footer-logo-text small {
    font-size: 12px;
    line-height: 1.45;
  }

  .footer-contact span {
    font-size: 10px;
  }

  .footer-contact p,
  .footer-contact a {
    font-size: 15px;
  }

  .footer-socials a {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .footer-title {
    font-size: 25px;
  }

  .footer-services {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-service-column span {
    min-height: 39px;
    font-size: 12px;
  }

  .footer-copy {
    font-size: 12px;
  }
}

@media (max-width: 375px) {
  .footer-wrap,
  .footer-bottom {
    width: calc(100% - 18px);
  }

  .footer-left {
    padding: 18px;
  }

  .footer-logo-text strong {
    font-size: 19px;
  }

  .footer-title {
    font-size: 23px;
  }

  .footer-service-column span {
    font-size: 11.5px;
  }
}

@media (max-width: 320px) {
  .footer-wrap,
  .footer-bottom {
    width: calc(100% - 14px);
  }

  .footer-left {
    padding: 16px;
  }

  .footer-logo {
    gap: 12px;
  }

  .footer-logo-circle {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .footer-logo-text strong {
    font-size: 17px;
  }

  .footer-logo-text small {
    font-size: 11px;
  }

  .footer-contact p,
  .footer-contact a {
    font-size: 13px;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-service-column span {
    min-height: 36px;
    padding: 9px 10px 9px 26px;
    font-size: 10.8px;
  }

  .footer-links a {
    font-size: 10.5px;
  }
}





/* =========================================
   RESPONSIVE — COOKIE BANNER + MODAL
========================================= */

@media (max-width: 768px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner__content {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
    border-radius: 20px;
  }

  .cookie-banner p,
  .cookie-modal__text,
  .cookie-option p {
    font-size: 13px;
  }

  .cookie-banner__actions,
  .cookie-modal__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-btn {
    width: 100%;
    min-height: 48px;
  }

  .cookie-modal {
    padding: 12px;
  }

  .cookie-modal__box {
    padding: 28px 18px 20px;
    border-radius: 20px;
  }

  .cookie-modal h2 {
    padding-right: 44px;
    font-size: 24px;
  }

  .cookie-option {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cookie-modal__links {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 375px) {
  .cookie-banner__content {
    padding: 18px 14px;
  }

  .cookie-banner p,
  .cookie-modal__text,
  .cookie-option p {
    font-size: 12px;
  }

  .cookie-modal h2 {
    font-size: 21px;
  }

  .cookie-option {
    padding: 14px;
  }
}






/* =========================================
   MOBILE TEXT GRADIENT FIX — ALL TITLES
========================================= */

@media (max-width: 768px) {
  .t-white,
  .promo-title-white,
  .why-title .white,
  .included-title span,
  .price-hero-title .white,
  .steps-head h2 span,
  .audit-title span,
  .worker-title strong,
  .function-title span,
  .lead-order-head h2 span {
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    background-blend-mode: normal !important;
    filter: none !important;
    background-image: linear-gradient(
      180deg,
      #ffffff 0%,
      #eeeeee 42%,
      #9b9b9b 100%
    ) !important;
  }

  .t-orange,
  .promo-title-orange,
  .why-title .orange,
  .why-title-big,
  .included-title strong,
  .price-hero-title strong,
  .steps-head h2 strong,
  .steps-number,
  .audit-title strong,
  .worker-title span,
  .function-title strong,
  .function-number,
  .lead-order-head h2 strong {
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    background-blend-mode: normal !important;
    filter: none !important;
    background-image: linear-gradient(
      180deg,
      #ffd35a 0%,
      #ffb000 48%,
      #c46f00 100%
    ) !important;
  }
}




/* =========================================
   PACKAGE MODAL RESPONSIVE
========================================= */

@media (max-width: 1440px) {

    .package-modal-panel {
        width: min(100% - 48px, 1180px);
    }

    .package-modal-inner {
        padding: 70px 48px 44px;
        gap: 34px;
    }

    .package-selected-price {
        font-size: 40px;
    }

}

@media (max-width: 1024px) {

    .package-modal-panel {
        width: calc(100% - 32px);
        height: calc(100vh - 32px);
        margin: 16px auto;
        border-radius: 28px;
    }

    .package-modal-inner {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 74px 34px 34px;
    }

    .package-modal-title {
        margin-bottom: 22px;
        font-size: 52px;
    }

    .package-selected-card h3 {
        font-size: 28px;
    }

}

@media (max-width: 768px) {

    .package-modal-panel {
        width: calc(100% - 20px);
        height: calc(100vh - 20px);
        margin: 10px auto;
        border-radius: 24px;
    }

    .package-modal-inner {
        padding: 72px 22px 24px;
        gap: 20px;
    }

    .package-modal-close {
        top: 14px;
        right: 14px;
        width: 48px;
        height: 48px;
        font-size: 34px;
        line-height: 42px;
    }

    .package-modal-title {
        font-size: 42px;
    }

    .package-selected-card,
    .package-modal-form {
        padding: 26px;
        border-radius: 24px;
    }

    .package-selected-card h3 {
        font-size: 24px;
    }

    .package-selected-price {
        font-size: 36px;
    }

}

@media (max-width: 425px) {

    .package-modal-panel {
        width: calc(100% - 12px);
        height: calc(100vh - 12px);
        margin: 6px auto;
        border-radius: 20px;
    }

    .package-modal-inner {
        padding: 66px 14px 18px;
        gap: 16px;
    }

    .package-modal-kicker {
        margin-bottom: 12px;
        font-size: 11px;
    }

    .package-modal-title {
        margin-bottom: 14px;
        font-size: 32px;
    }

    .package-selected-card,
    .package-modal-form {
        padding: 20px;
        border-radius: 20px;
    }

    .package-selected-card h3 {
        font-size: 20px;
    }

    .package-selected-price {
        font-size: 30px;
    }

    .package-selected-time,
    .package-selected-card p {
        font-size: 14px;
    }

    .package-modal-form h3 {
        font-size: 24px;
    }

    .package-modal-form input,
    .package-modal-form textarea {
        padding: 14px;
        border-radius: 14px;
    }

    .package-modal-form textarea {
        min-height: 96px;
    }

    .package-modal-form button[type="submit"] {
        padding: 16px;
        font-size: 14px;
    }

}

@media (max-width: 375px) {

    .package-modal-inner {
        padding-left: 12px;
        padding-right: 12px;
    }

    .package-modal-title {
        font-size: 28px;
    }

    .package-selected-card,
    .package-modal-form {
        padding: 18px;
    }

    .package-selected-price {
        font-size: 26px;
    }

}

@media (max-width: 320px) {

    .package-modal-panel {
        width: calc(100% - 8px);
        height: calc(100vh - 8px);
        margin: 4px auto;
    }

    .package-modal-inner {
        padding: 62px 10px 14px;
    }

    .package-modal-close {
        width: 42px;
        height: 42px;
        font-size: 30px;
        line-height: 36px;
    }

    .package-modal-title {
        font-size: 24px;
    }

    .package-selected-card,
    .package-modal-form {
        padding: 16px;
    }

    .package-selected-card h3 {
        font-size: 18px;
    }

    .package-selected-price {
        font-size: 24px;
    }

    .package-modal-form h3 {
        font-size: 20px;
    }

}



/* =========================================
   SCROLL TOP BUTTON RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .scroll-top-btn {
        right: 18px;
        bottom: 18px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }

    .scroll-top-btn span {
        line-height: 48px;
    }

}

@media (max-width: 425px) {

    .scroll-top-btn {
        right: 14px;
        bottom: 14px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .scroll-top-btn span {
        line-height: 44px;
    }

}

@media (max-width: 320px) {

    .scroll-top-btn {
        right: 10px;
        bottom: 10px;
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    .scroll-top-btn span {
        line-height: 40px;
    }

}




/* =========================================
   THANK YOU PAGE
========================================= */

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .thanks-title span {
        font-size: 52px;
    }

    .thanks-title strong {
        font-size: 62px;
    }

    .thanks-text {
        font-size: 18px;
        line-height: 1.6;
    }

    .thanks-buttons {
        flex-direction: column;
    }

    .thanks-btn {
        width: 100%;
        min-width: unset;
    }

}

@media (max-width: 480px) {

    .thanks-content {
        max-width: calc(100% - 26px);
    }

    .thanks-title {
        letter-spacing: -2px;
    }

    .thanks-title span {
        font-size: 38px;
    }

    .thanks-title strong {
        font-size: 46px;
    }

    .thanks-text {
        font-size: 16px;
    }

    .thanks-box {
        padding: 24px 22px;
    }

    .thanks-box p {
        font-size: 16px;
    }

    .thanks-btn {
        height: 54px;
        font-size: 12px;
    }

}

@media (max-width: 480px) {
    .thanks-section {
        padding: 48px 0 82px;
    }

    .thanks-footer {
        bottom: 18px;
        gap: 14px;
        font-size: 11px;
    }
}