  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  body {
      font-family: "Sen", sans-serif;
      font-size: 18px;
      color: #ffffff;
      background-color: #0a1f3a;
  }

  .cl-wrap {
      min-height: 100vh;
      background: linear-gradient(135deg, #0a1f3a 0%, #124e9b 50%, #0a1f3a 100%);
      position: relative;
      overflow: hidden;
  }



  .cl-layout {
      position: relative;
      z-index: 1;
      max-width: 1160px;
      margin: 0 auto;
      padding: 14px 16px 60px;
  }

  /* HEADER */

  .cl-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
  }

  .cl-header__brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: #ffffff;
  }

  .cl-header__logo-mark {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      background: linear-gradient(135deg, #27ae60, #2ecc71);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 22px;
  }

  .cl-header__logo-text-main {
      font-weight: 700;
      letter-spacing: 0.02em;
      font-size: 20px;
      line-height: 1.1;
  }

  .cl-header__logo-text-sub {
      font-size: 11px;
      opacity: 0.8;
      text-transform: uppercase;
      letter-spacing: 0.12em;
  }

  .cl-header__center {
      display: flex;
      align-items: center;
      gap: 32px;
      flex: 1;
      justify-content: center;
  }

  .cl-header__nav {
      display: flex;
      align-items: center;
      gap: 22px;
  }

  .cl-header__nav-link {
      text-decoration: none;
      color: #f2f5ff;
      font-size: 16px;
      position: relative;
  }

  .cl-header__nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      background-color: #2ecc71;
      transition: width 0.25s ease;
  }

  .cl-header__nav-link:hover::after {
      width: 100%;
  }

  .cl-header__actions {
      display: flex;
      align-items: center;
      gap: 12px;
  }

  .cl-header__btn {
      border-radius: 40px;
      padding: 8px 20px;
      border: none;
      cursor: pointer;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
      white-space: nowrap;
  }

  .cl-header__btn--quote {
      background-color: #2ecc71;
      color: #052039;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  }

  .cl-header__btn--quote:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  }

  .cl-header__btn--book {
      background-color: #ff9f1c;
      color: #052039;
  }

  .cl-header__btn--book:hover {
      background-color: #ffb340;
  }

  .cl-header__phone {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      color: #ffffff;
      text-decoration: none;
      font-size: 16px;
  }

  .cl-header__phone-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background-color: #2ecc71;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .cl-header__burger {
      display: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.35);
      background: transparent;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
  }

  .cl-header__burger-line {
      width: 18px;
      height: 2px;
      background-color: #ffffff;
      transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .cl-header--nav-open .cl-header__burger-line--top {
      transform: translateY(7px) rotate(45deg);
  }

  .cl-header--nav-open .cl-header__burger-line--middle {
      opacity: 0;
  }

  .cl-header--nav-open .cl-header__burger-line--bottom {
      transform: translateY(-7px) rotate(-45deg);
  }

  /* HERO */

  .cl-hero {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      align-items: center;
      margin-top: 40px;
      gap: 30px;
  }

  .cl-hero__content {
      max-width: 560px;
  }

  .cl-hero__eyebrow {
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #a9d9ff;
      margin-bottom: 10px;
      font-weight: 600;
  }

  .cl-hero__title {
      font-size: 42px;
      line-height: 1.18;
      font-weight: 800;
      margin-bottom: 14px;
  }

  .cl-hero__title span {
      color: #2ecc71;
  }

  .cl-hero__subtitle {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 20px;
  }

  .cl-hero__text {
      font-size: 18px;
      line-height: 1.6;
      color: #e4edff;
      margin-bottom: 18px;
  }

  .cl-hero__checklist {
      list-style: none;
      margin-bottom: 24px;
  }

  .cl-hero__check-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 8px;
      color: #f4f7ff;
  }

  .cl-hero__check-icon {
      margin-top: 4px;
      color: #2ecc71;
      font-size: 18px;
      flex-shrink: 0;
  }

  .cl-hero__check-text {
      font-size: 17px;
  }

  .cl-hero__cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 18px;
      align-items: center;
  }

  .cl-hero__phone-wrap {
      display: inline-flex;
      align-items: center;
      gap: 10px;
  }

  .cl-hero__phone-label {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      opacity: 0.8;
  }

  .cl-hero__phone-number {
      font-size: 20px;
      font-weight: 700;
  }

  .cl-hero__visual {
      position: relative;
      justify-self: center;
  }

  .cl-hero__img-wrap {
      position: relative;
      border-radius: 26px;
      overflow: hidden;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
      max-width: 380px;
  }

  .cl-hero__img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
  }

  .cl-hero__badge {
      position: absolute;
      left: -16px;
      bottom: 24px;
      background-color: #2ecc71;
      color: #052039;
      padding: 10px 18px;
      border-radius: 18px;
      font-size: 14px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  }

  .cl-hero__badge-icon {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background-color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      color: #2ecc71;
  }

  /* RESPONSIVE */

  @media (max-width: 991px) {
      .cl-header__center {
          display: none;
      }

      .cl-header__actions {
          display: none;
      }

      .cl-header__burger {
          display: inline-flex;
      }

      .cl-header--nav-open .cl-header__center{
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          background: rgba(3, 9, 24, 0.96);
          padding: 14px 16px 18px;
          border-radius: 18px;
          position: absolute;
          left: 16px;
          right: 16px;
          top: 70px;
          gap: 14px;
          z-index: 5;
      }

      .cl-header--nav-open .cl-header__center {
          gap: 12px;
      }

      .cl-header--nav-open .cl-header__nav {
          flex-direction: column;
          align-items: flex-start;
          width: 100%;
      }

      .cl-header--nav-open .cl-header__actions {
          margin-top: 4px;
      }

      .cl-hero {
          grid-template-columns: minmax(0, 1fr);
          margin-top: 32px;
          text-align: left;
      }

      .cl-hero__content {
          max-width: none;
      }

      .cl-hero__title {
          font-size: 32px;
      }

      .cl-hero__subtitle {
          font-size: 22px;
      }

      .cl-hero__cta-row {
          align-items: flex-start;
      }

      .cl-hero__visual {
          order: -1;
          margin-bottom: 20px;
      }

      .cl-layout {
          padding-bottom: 40px;
      }
  }

  @media (max-width: 575px) {
      .cl-header__logo-mark {
          width: 42px;
          height: 42px;
          font-size: 19px;
      }

      .cl-header__logo-text-main {
          font-size: 18px;
      }

      .cl-header__btn {
          width: 100%;
          justify-content: center;
      }

      .cl-hero__title {
          font-size: 28px;
      }

      .cl-hero__subtitle {
          font-size: 20px;
      }

      .cl-hero__cta-row {
          flex-direction: column;
          align-items: stretch;
      }

      .cl-hero__phone-wrap {
          justify-content: flex-start;
      }

      .cl-hero__img-wrap {
          max-width: 320px;
      }
  }

  .cl-section {
      padding: 80px 16px 80px;
      max-width: 1160px;
      margin: 0 auto;
  }

  .cl-section__intro {
      text-align: center;
      margin-bottom: 40px;
  }

  .cl-section__title-main {
      font-size: 32px;
      line-height: 1.3;
      font-weight: 800;
      margin-bottom: 14px;
  }

  .cl-section__title-main span {
      color: #1aa64a;
  }

  .cl-section__text {
      max-width: 760px;
      margin: 0 auto;
      line-height: 1.6;
      color: #dfdfdf;
  }

  .cl-section__text+.cl-section__text {
      margin-top: 10px;
  }

  .cl-section__cta {
      margin-top: 22px;
  }

  .cl-section__cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: #1aa64a;
      color: #ffffff;
      font-weight: 700;
      padding: 12px 28px;
      border-radius: 40px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      font-size: 17px;
      transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  }

  .cl-section__cta-btn:hover {
      background-color: #18b554;
      transform: translateY(-1px);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  }

  .cl-section__cta-btn-icon {
      font-size: 15px;
  }

  .cl-section__subblock {
      margin-top: 56px;
      text-align: center;
  }

  .cl-section__subtitle-main {
      font-size: 30px;
      font-weight: 800;
      margin-bottom: 8px;
  }

  .cl-section__subtitle-tag {
      font-size: 14px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #888888;
  }

  .cl-services {
      margin-top: 50px;
  }

  .cl-services__list {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
  }

  .cl-services__item {
      background-color: #fff6eb;
      border-radius: 18px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
  }

  .cl-services__img-wrap {
      width: 100%;
      overflow: hidden;
  }

  .cl-services__img {
      width: 100%;
      height: 250px;
      display: block;
      object-fit: cover;
  }

  .cl-services__body {
      padding: 20px 18px 22px;
      display: flex;
      flex-direction: column;
      flex: 1;
  }

  .cl-services__title {
      font-size: 20px;
      font-weight: 700;
      color: #000000;
      margin-bottom: 10px;
  }

  .cl-services__text {
      font-size: 18px;
      line-height: 1.6;
      color: #555555;
      margin-bottom: 18px;
  }

  .cl-services__link {
      color: #e6701a;
      font-weight: 600;
      text-decoration: none;
  }

  .cl-services__link:hover {
      text-decoration: underline;
  }

  .cl-services__btn-wrap {
      margin-top: auto;
  }

  .cl-services__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 22px;
      border-radius: 999px;
      background-color: #ff8a1a;
      color: #ffffff;
      font-size: 16px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }

  .cl-services__btn:hover {
      background-color: #ffa046;
      transform: translateY(-1px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

  .cl-services__btn-icon {
      font-size: 14px;
  }

  @media (max-width: 991px) {
      .cl-services__list {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .cl-section {
          padding-top: 50px;
          padding-bottom: 60px;
      }

      .cl-section__title-main {
          font-size: 28px;
      }

      .cl-section__subtitle-main {
          font-size: 26px;
      }
  }

  @media (max-width: 767px) {
      .cl-services__list {
          grid-template-columns: minmax(0, 1fr);
      }

      .cl-section {
          padding-top: 42px;
          padding-bottom: 50px;
      }

      .cl-section__title-main {
          font-size: 24px;
      }

      .cl-section__subtitle-main {
          font-size: 23px;
      }

      .cl-services__body {
          padding: 18px 16px 20px;
      }
  }

  .bk-steps {
      background-color: #022943;
      color: #ffffff;
      padding: 60px 16px 80px;
  }

  .bk-steps__inner {
      max-width: 1160px;
      margin: 0 auto;
      text-align: center;
  }

  .bk-steps__title {
      font-size: 32px;
      line-height: 1.3;
      font-weight: 800;
      margin-bottom: 20px;
  }

  .bk-steps__subtitle {
      font-size: 18px;
      max-width: 760px;
      margin: 0 auto 40px;
      line-height: 1.6;
      color: #d9e8ff;
  }

  /* track + items */

  .bk-steps__row {
      position: relative;
      display: flex;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 40px;
      padding-top: 28px;
  }


  .bk-steps__item {
      position: relative;
      flex: 1 1 0;
      padding: 0 8px;
  }

  .bk-steps__circle {
      position: absolute;
      top: 0;
      left: 50%;
      font-size: 50px;
      transform: translate(-50%, 0);
      width: 66px;
      height: 66px;
      border-radius: 50%;
      background-color: #f69c00;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: #ffffff;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  }

  .bk-steps__circle--green {
      background-color: #16a34a;
  }

  .bk-steps__circle--blue {
      background-color: #1f77d0;
  }

  .bk-steps__circle--cyan {
      background-color: #31c3ff;
  }

  .bk-steps__item-title {
      margin-top: 85px;
      margin-bottom: 8px;
      font-size: 20px;
      font-weight: 700;
  }

  .bk-steps__item-text {
      font-size: 18px;
      line-height: 1.6;
      color: #d5e3ff;
  }

  .bk-steps__tagline {
      margin-top: 10px;
      margin-bottom: 24px;
      font-size: 14px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: #d5e3ff;
  }

  .bk-steps__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 32px;
      border-radius: 999px;
      border: none;
      background-color: #f69c00;
      color: #ffffff;
      font-size: 17px;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32);
      transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }

  .bk-steps__btn:hover {
      background-color: #ffad2b;
      transform: translateY(-1px);
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.36);
  }

  .bk-steps__btn-icon {
      font-size: 14px;
  }

  /* RESPONSIVE */

  @media (max-width: 991px) {
      .bk-steps__row {
          flex-wrap: wrap;
          gap: 30px;
      }

      .bk-steps__row::before {
          left: 10%;
          right: 10%;
      }

      .bk-steps__item {
          flex: 1 1 calc(50% - 30px);
      }
  }

  @media (max-width: 767px) {
      .bk-steps {
          padding-top: 50px;
          padding-bottom: 60px;
      }

      .bk-steps__title {
          font-size: 26px;
      }

      .bk-steps__row {
          flex-direction: column;
          align-items: stretch;
          padding-top: 10px;
      }

      .bk-steps__row::before {
          display: none;
      }

      .bk-steps__item {
          padding: 0;
      }

      .bk-steps__circle {
          position: static;
          transform: none;
          margin: 0 auto 12px;
      }

      .bk-steps__item-title {
          margin-top: 0;
      }
  }

  .cl-options {
      padding: 70px 16px 80px;
  }

  .cl-options__inner {
      max-width: 1160px;
      margin: 0 auto;
  }

  .cl-options__head {
      text-align: center;
      margin-bottom: 65px;
  }

  .cl-options__title {
      font-size: 32px;
      line-height: 1.3;
      font-weight: 800;
  }

  .cl-options__title span {
      color: #1ba247;
  }

  /* ROWS */

  .cl-options__row {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 40px;
      align-items: center;
      margin-bottom: 60px;
  }

  .cl-options__row--reverse {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }

  .cl-options__media {
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  }

  .cl-options__image {
      display: block;
      width: 100%;
      height: 340px;
      object-fit: cover;
  }

  .cl-options__content {
      max-width: 520px;
  }

  .cl-options__label {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 6px;
  }

  .cl-options__label i {
      color: #ff8c1a;
      margin-right: 6px;
  }

  .cl-options__name {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 12px;
  }

  .cl-options__text {
      line-height: 1.6;
      color: #cac7c7;
  }

  .cl-options__text a {
      color: #0085c7;
      text-decoration: none;
      font-weight: 600;
  }

  .cl-options__text a:hover {
      text-decoration: underline;
  }

  /* center block */

  .cl-options__row--center {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }

  .cl-options__content--center {
      text-align: center;
      margin: 0 auto;
  }

  .cl-options__content--center .cl-options__text {
      max-width: 630px;
      margin: 0 auto;
  }

  @media (max-width: 991px) {
      .cl-options {
          padding-top: 60px;
          padding-bottom: 60px;
      }

      .cl-options__row,
      .cl-options__row--reverse,
      .cl-options__row--center {
          grid-template-columns: minmax(0, 1fr);
      }

      .cl-options__content {
          max-width: none;
      }

      .cl-options__media {
          max-width: 720px;
          margin: 0 auto;
      }
  }

  @media (max-width: 767px) {
      .cl-options {
          padding-top: 48px;
          padding-bottom: 56px;
      }

      .cl-options__title {
          font-size: 26px;
      }

      .cl-options__row {
          gap: 26px;
          margin-bottom: 46px;
      }

      .cl-options__name {
          font-size: 20px;
      }
  }

  .ep-why {
      padding: 70px 16px 80px;
  }

  .ep-why__inner {
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 40px;
      align-items: center;
  }

  .ep-why__content {
      max-width: 560px;
  }

  .ep-why__title {
      font-size: 34px;
      line-height: 1.25;
      font-weight: 800;
      margin-bottom: 18px;
  }

  .ep-why__title span {
      color: #1ab44a;
  }

  .ep-why__lead {
      margin-bottom: 16px;
      line-height: 1.6;
      color: #d3d3d3;
  }

  .ep-why__lead+.ep-why__lead {
      margin-top: 4px;
  }

  .ep-why__list {
      list-style: none;
      margin: 18px 0 24px;
  }

  .ep-why__list-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 8px;
  }

  .ep-why__icon {
      margin-top: 3px;
      flex-shrink: 0;
      color: #1ab44a;
      font-size: 18px;
  }

  .ep-why__text {
      line-height: 1.6;
      color: #d6d6d6;
  }

  .ep-why__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 28px;
      border-radius: 999px;
      border: none;
      background-color: #004b8c;
      color: #ffffff;
      font-size: 17px;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
      transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }

  .ep-why__btn:hover {
      background-color: #0364b7;
      transform: translateY(-1px);
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32);
  }

  .ep-why__btn-icon {
      font-size: 14px;
  }

  /* VISUAL */

  .ep-why__visual-wrap {
      position: relative;
  }

  .ep-why__shape {
      position: absolute;
      inset: 6% 0 0 10%;
      background-color: #ffe9d7;
      border-radius: 60% 40% 65% 35%;
      z-index: 1;
  }

  .ep-why__shape-decor {
      position: absolute;
      top: 22%;
      left: 16%;
      width: 60%;
      height: 36%;
      border-top: 3px solid #ff9b3c;
      border-radius: 80% 20% 0 100%;
  }

  .ep-why__shape-mark {
      position: absolute;
      top: 30%;
      right: 14%;
      font-size: 10px;
      color: #ff9b3c;
  }

  .ep-why__image-box {
      position: relative;
      z-index: 2;
      max-width: 420px;
      margin: 0 auto;
  }

  .ep-why__img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
  }

  /* RESPONSIVE */

  @media (max-width: 991px) {
      .ep-why__inner {
          grid-template-columns: minmax(0, 1fr);
      }

      .ep-why {
          padding-top: 60px;
          padding-bottom: 70px;
      }

      .ep-why__content {
          order: 2;
          max-width: none;
      }

      .ep-why__visual-wrap {
          order: 1;
      }

      .ep-why__title {
          font-size: 30px;
      }
  }

  @media (max-width: 767px) {
      .ep-why {
          padding-top: 48px;
          padding-bottom: 56px;
      }

      .ep-why__title {
          font-size: 26px;
      }

      .ep-why__shape {
          inset: 8% 4% 0 8%;
      }

      .ep-why__image-box {
          max-width: 360px;
      }
  }

  .loc-hero {
      position: relative;
      min-height: 420px;
      color: #ffffff;
      overflow: hidden;
  }

  .loc-hero__bg {
      position: absolute;
      inset: 0;

      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      z-index: 1;
  }

  .loc-hero__overlay {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 40%, rgba(14, 165, 233, 0.22) 0, transparent 55%);
      opacity: 0.7;
      z-index: 2;
  }

  .loc-hero__inner {
      position: relative;
      z-index: 3;
      max-width: 1220px;
      margin: 0 auto;
      padding: 50px 20px 60px;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      align-items: center;
      gap: 40px;
  }

  .loc-hero__person {
      display: flex;
      justify-content: flex-start;
  }

  .loc-hero__person-img-wrap {
      max-width: 420px;
  }

  .loc-hero__person-img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
  }

  .loc-hero__content {
      max-width: 520px;
      text-align: left;
      margin-left: auto;
  }

  .loc-hero__eyebrow {
      font-size: 16px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 8px;
      color: #bfdbfe;
  }

  .loc-hero__title {
      font-size: 34px;
      line-height: 1.25;
      font-weight: 800;
      margin-bottom: 18px;
  }

  .loc-hero__title span {
      color: #22c55e;
  }

  .loc-hero__text {
      line-height: 1.6;
      color: #e5e7eb;
      margin-bottom: 10px;
  }

  .loc-hero__text a {
      color: #22c55e;
      font-weight: 600;
      text-decoration: none;
  }

  .loc-hero__text a:hover {
      text-decoration: underline;
  }

  .loc-hero__bottom-line {
      margin-top: 8px;
      color: #cbd5f5;
  }

  .loc-hero__btn-row {
      margin-top: 22px;
  }

  .loc-hero__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 30px;
      border-radius: 999px;
      border: none;
      background-color: #1d4ed8;
      color: #ffffff;
      font-size: 17px;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.7);
      transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }

  .loc-hero__btn:hover {
      background-color: #2563eb;
      transform: translateY(-1px);
      box-shadow: 0 14px 32px rgba(15, 23, 42, 0.8);
  }

  .loc-hero__btn-icon {
      font-size: 14px;
  }

  .loc-hero__marker {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 12px;
      font-size: 16px;
      color: #a5b4fc;
  }

  .loc-hero__marker i {
      color: #22c55e;
  }

  /* RESPONSIVE */

  @media (max-width: 991px) {
      .loc-hero__inner {
          grid-template-columns: minmax(0, 1fr);
          gap: 30px;
          padding-top: 40px;
          padding-bottom: 46px;
      }

      .loc-hero__person {
          justify-content: center;
      }

      .loc-hero__content {
          margin-left: 0;
          text-align: center;
      }

      .loc-hero__marker {
          justify-content: center;
      }
  }

  @media (max-width: 640px) {
      .loc-hero__title {
          font-size: 26px;
      }

      .loc-hero__inner {
          padding-inline: 16px;
      }

      .loc-hero__person-img-wrap {
          max-width: 320px;
      }
  }

  .faq-block {
      max-width: 1040px;
      margin: 0 auto;
      padding: 70px 16px 80px;
  }

  .faq-block__head {
      text-align: left;
      margin-bottom: 32px;
  }

  .faq-block__title-main {
      font-size: 34px;
      line-height: 1.2;
      font-weight: 800;
  }

  .faq-block__title-sub {
      font-size: 34px;
      line-height: 1.2;
      font-weight: 800;
  }

  .faq-block__list {
      border-bottom: 1px solid #ffffff14;
  }

  .faq-block__item {
      border-bottom: 1px solid #ffffff14;
  }

  .faq-block__item-head {
      display: flex;
      align-items: center;
      padding: 14px 10px;
      cursor: pointer;
  }

  .faq-block__icon {
      width: 26px;
      display: flex;
      justify-content: center;
      margin-right: 18px;
      font-size: 12px;
  }

  .faq-block__icon i {
      transition: transform 0.2s ease;
  }

  .faq-block__question {
      flex: 1;
      font-size: 18px;
  }

  .faq-block__item-body {
      padding: 8px 54px 16px;
      display: none;
      font-size: 16px;
      line-height: 1.6;
      color: #e4e4e4;
  }

  .faq-block__item--open .faq-block__item-body {
      display: block;
  }

  .faq-block__item--open .faq-block__icon i {
      transform: rotate(180deg);
  }

  @media (max-width: 767px) {
      .faq-block {
          padding-top: 50px;
          padding-bottom: 60px;
      }

      .faq-block__title-main,
      .faq-block__title-sub {
          font-size: 26px;
      }

      .faq-block__item-body {
          padding: 8px 44px 14px;
      }
  }

  .cl-footer {
      background-color: #161616;
      color: #f9fafb;
  }

  .cl-footer__top {
      max-width: 1160px;
      margin: 0 auto;
      padding: 40px 16px 34px;
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
      gap: 32px;
  }

  .cl-footer__brand {
      display: flex;
      flex-direction: column;
      gap: 18px;
  }

  .cl-footer__logo-row {
      display: flex;
      align-items: center;
      gap: 14px;
  }

  .cl-footer__logo-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: linear-gradient(135deg, #22c55e, #0ea5e9);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 20px;
  }

  .cl-footer__logo-text-main {
      font-weight: 800;
      font-size: 22px;
      letter-spacing: 0.03em;
  }

  .cl-footer__logo-text-sub {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.13em;
      color: #e5e7eb;
  }

  .cl-footer__desc {
      line-height: 1.6;
      color: #e5e7eb;
  }

  .cl-footer__desc a {
      color: #22c55e;
      text-decoration: none;
      font-weight: 600;
  }

  .cl-footer__desc a:hover {
      text-decoration: underline;
  }

  .cl-footer__contacts {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 8px;
  }

  .cl-footer__contact-row {
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .cl-footer__contact-icon {
      width: 32px;
      height: 32px;
      min-width: 32px;
      min-height: 32px;
      border-radius: 50%;
      background-color: #f97316;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: #111827;
      flex: 0 0 32px;
  }

  .cl-footer__contact-text {
      color: #f9fafb;
  }

  .cl-footer__badge {
      margin-top: 12px;
      max-width: 160px;
  }

  .cl-footer__badge img {
      width: 100%;
      display: block;
      border-radius: 12px;
  }

  .cl-footer__col-title {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 14px;
      color: #f97316;
  }

  .cl-footer__links {
      list-style: none;
  }

  .cl-footer__link-item {
      margin-bottom: 6px;
  }

  .cl-footer__link {
      text-decoration: none;
      color: #e5e7eb;
      font-size: 17px;
  }

  .cl-footer__link:hover {
      color: #fbbf24;
  }

  .cl-footer__socials {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 10px 0 16px;
  }

  .cl-footer__social-btn {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      background-color: #111827;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: #f9fafb;
      font-size: 16px;
      transition: background-color 0.2s ease, transform 0.2s ease;
  }

  .cl-footer__social-btn:hover {
      background-color: #f97316;
      transform: translateY(-1px);
  }

  .cl-footer__cta {
      margin-top: 4px;
  }

  .cl-footer__cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 24px;
      border-radius: 40px;
      border: none;
      background-color: #f97316;
      color: #111827;
      font-weight: 700;
      font-size: 17px;
      text-decoration: none;
      cursor: pointer;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
      transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }

  .cl-footer__cta-btn:hover {
      background-color: #fb923c;
      transform: translateY(-1px);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.55);
  }

  .cl-footer__cta-icon {
      font-size: 14px;
  }

  .cl-footer__bottom {
      background-color: #0b0b0b;
      padding: 12px 16px;
  }

  .cl-footer__bottom-inner {
      max-width: 1160px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      font-size: 15px;
      color: #d1d5db;
  }

  .cl-footer__legal-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
  }

  .cl-footer__legal-link {
      text-decoration: none;
      color: #f97316;
  }

  .cl-footer__legal-link:hover {
      text-decoration: underline;
  }

  @media (max-width: 991px) {
      .cl-footer__top {
          grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      }
  }

  @media (max-width: 767px) {
      .cl-footer__top {
          grid-template-columns: minmax(0, 1fr);
          padding-top: 32px;
          padding-bottom: 28px;
      }

      .cl-footer__brand {
          padding-bottom: 6px;
          border-bottom: 1px solid #27272a;
      }
  }

  .ep-about {
      padding: 70px 16px 80px;
  }

  .ep-about__inner {
      max-width: 1160px;
      margin: 0 auto;
  }

  .ep-about__heading-wrap {
      text-align: center;
      margin-bottom: 26px;
  }

  .ep-about__title {
      font-size: 34px;
      line-height: 1.25;
      font-weight: 800;
  }

  .ep-about__title span {
      color: #16a34a;
  }

  .ep-about__intro {
      max-width: 880px;
      margin: 14px auto 32px;
      line-height: 1.6;
      color: #e6e6e6;
  }

  .ep-about__intro strong {
      font-weight: 700;
  }

  .ep-about__layout {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      background-color: #f3f4f6;
  }

  .ep-about__media {
      position: relative;
  }

  .ep-about__img {
      display: block;
      width: 100%;
      height: 520px;
      object-fit: cover;
  }

  .ep-about__card {
      position: absolute;
      right: 4%;
      bottom: 4%;
      max-width: 460px;
      background-color: #ffffff;
      border-radius: 22px;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
      padding: 24px 26px 22px;
  }

  .ep-about__card-title {
      font-size: 22px;
      font-weight: 800;
      color: #000000;
      margin-bottom: 14px;
  }

  .ep-about__list {
      list-style: none;
  }

  .ep-about__list-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 8px;
      color: #374151;
  }

  .ep-about__icon {
      margin-top: 4px;
      font-size: 18px;
      color: #16a34a;
      flex-shrink: 0;
  }

  .ep-about__list-text {
      line-height: 1.6;
  }

  /* RESPONSIVE */

  @media (max-width: 1024px) {
      .ep-about__card {
          max-width: 420px;
      }
  }

  @media (max-width: 900px) {
      .ep-about__layout {
          background-color: transparent;
          border-radius: 0;
      }

      .ep-about__card {
          position: static;
          margin: 16px auto 0;
          box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
      }
  }

  @media (max-width: 767px) {
      .ep-about {
          padding-top: 52px;
          padding-bottom: 60px;
      }

      .ep-about__title {
          font-size: 26px;
      }

      .ep-about__card {
          padding: 20px 18px 18px;
      }
  }

  .pest-why {
      padding: 70px 16px 80px;
  }

  .pest-why__inner {
      max-width: 1160px;
      margin: 0 auto;
  }

  .pest-why__head {
      text-align: center;
      margin-bottom: 34px;
  }

  .pest-why__title {
      font-size: 34px;
      line-height: 1.25;
      font-weight: 800;
      margin-bottom: 12px;
  }

  .pest-why__subtitle {
      max-width: 840px;
      margin: 0 auto;
      line-height: 1.6;
      color: #e2e2e2;
  }

  .pest-why__grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 20px;
  }

  .pest-why__card {
      background-color: #fff5eb;
      padding: 22px 18px;
      border-radius: 18px;
      text-align: center;
      display: flex;
      flex-direction: column;
      height: 100%;
  }

  .pest-why__icon {
      font-size: 70px;
      color: #f97316;
      margin-bottom: 12px;
  }

  .pest-why__card-title {
      font-size: 20px;
      line-height: 1.3;
      font-weight: 700;
      color: #0b0b0b;
      margin-bottom: 10px;
  }

  .pest-why__text {
      font-size: 16px;
      line-height: 1.6;
      color: #374151;
  }

  /* Responsive */
  @media (max-width: 1024px) {
      .pest-why__grid {
          grid-template-columns: repeat(3, minmax(0, 1fr));
      }
  }

  @media (max-width: 768px) {
      .pest-why {
          padding-top: 50px;
          padding-bottom: 60px;
      }

      .pest-why__title {
          font-size: 28px;
      }

      .pest-why__grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
  }

  @media (max-width: 540px) {
      .pest-why__grid {
          grid-template-columns: minmax(0, 1fr);
      }
  }

  .ct-section {
      padding: 70px 16px 80px;
  }

  .ct-section__inner {
      max-width: 1160px;
      margin: 0 auto;
  }

  .ct-section__head {
      text-align: center;
      margin-bottom: 28px;
  }

  .ct-section__title {
      font-size: 34px;
      line-height: 1.25;
      font-weight: 800;
      margin-bottom: 16px;
  }

  .ct-section__text {
      max-width: 840px;
      margin: 0 auto;
      line-height: 1.6;
      color: #d5d5d5;
  }

  .ct-section__text a {
      color: #16a34a;
      text-decoration: none;
      font-weight: 600;
  }

  .ct-section__text a:hover {
      text-decoration: underline;
  }

  /* FORM CARD */

  .ct-section__form-wrap {
      margin-top: 40px;
      display: flex;
      justify-content: center;
  }

  .ct-section__form-card {
      width: 100%;
      max-width: 820px;
      background-color: #0b4f7f;
      border-radius: 4px;
      padding: 26px 32px 30px;
      box-shadow: 0 14px 32px rgba(15, 23, 42, 0.35);
  }

  .ct-section__form-row {
      display: flex;
      align-items: center;
      margin-bottom: 14px;
  }

  .ct-section__form-label {
      width: 130px;
      font-size: 14px;
      color: #e5e7eb;
  }

  .ct-section__form-label span {
      color: #f97316;
      margin-left: 2px;
  }

  .ct-section__form-field {
      flex: 1;
  }

  .ct-section__input,
  .ct-section__textarea {
      width: 100%;
      border-radius: 2px;
      border: 1px solid #d1d5db;
      padding: 8px 10px;
      font-size: 16px;
      outline: none;
  }

  .ct-section__input:focus,
  .ct-section__textarea:focus {
      border-color: #22c55e;
  }

  .ct-section__textarea {
      min-height: 110px;
      resize: vertical;
  }

  .ct-section__submit-row {
      margin-top: 10px;
  }

  .ct-section__submit-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 26px;
      border-radius: 2px;
      border: none;
      background-color: #22a34f;
      color: #ffffff;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
      transition: background-color 0.2s ease, transform 0.2s ease,
          box-shadow 0.2s ease;
  }

  .ct-section__submit-btn:hover {
      background-color: #27c259;
      transform: translateY(-1px);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
  }

  /* MAP + CONTACT PANEL */

  .ct-section__bottom {
      margin-top: 40px;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      min-height: 260px;
  }

  .ct-section__map {
      background-color: #e5e7eb;
      position: relative;
      overflow: hidden;
  }

  .ct-section__map iframe {
      border: 0;
      width: 100%;
      height: 100%;
  }

  .ct-section__info {
      background-color: #16a34a;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: left;
      padding: 30px 34px;
  }

  .ct-section__info-inner {
      max-width: 280px;
  }

  .ct-section__info-title {
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 20px;
  }

  .ct-section__info-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
  }

  .ct-section__info-row {
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .ct-section__info-icon {
      width: 32px;
      height: 32px;
      min-width: 32px;
      min-height: 32px;
      border-radius: 999px;
      background-color: #f97316;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: #111827;
      flex: 0 0 32px;
  }

  .ct-section__info-text {
      color: #f9fafb;
  }

  /* RESPONSIVE */

  @media (max-width: 900px) {
      .ct-section__form-card {
          padding: 22px 18px 26px;
      }

      .ct-section__form-label {
          width: 110px;
      }

      .ct-section__bottom {
          grid-template-columns: minmax(0, 1fr);
      }

      .ct-section__info {
          padding: 26px 22px;
          justify-content: flex-start;
      }
  }

  @media (max-width: 640px) {
      .ct-section {
          padding-top: 52px;
          padding-bottom: 60px;
      }

      .ct-section__title {
          font-size: 26px;
      }

      .ct-section__form-row {
          flex-direction: column;
          align-items: stretch;
      }

      .ct-section__form-label {
          width: 100%;
          margin-bottom: 4px;
      }

      .ct-section__info {
          text-align: center;
      }

      .ct-section__info-inner {
          max-width: none;
      }

      .ct-section__info-row {
          justify-content: center;
      }
  }

  @media (max-width:767px) {
      [data-aos] {
          opacity: 1 !important;
          transform: none !important;
          transition: none !important;
      }
  }

  .rv-testimonials {
      padding: 70px 16px 80px;
      background-color: #f3f4f6;
  }

  .rv-testimonials__inner {
      max-width: 1160px;
      margin: 0 auto;
  }

  .rv-testimonials__head {
      text-align: center;
      margin-bottom: 28px;
  }

  .rv-testimonials__kicker {
      font-size: 14px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #6b7280;
      margin-bottom: 8px;
  }

  .rv-testimonials__title {
      font-size: 32px;
      line-height: 1.3;
      font-weight: 800;
      margin-bottom: 10px;
      color: #0b0b0b;
  }

  .rv-testimonials__subtitle {
      max-width: 720px;
      margin: 0 auto;
      line-height: 1.6;
      color: #4b5563;
  }

  .rv-testimonials__grid {
      margin-top: 32px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
  }

  .rv-testimonials__item {
      background-color: #ffffff;
      border-radius: 18px;
      padding: 20px 18px 18px;
      box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
      display: flex;
      flex-direction: column;
      height: 100%;
  }

  .rv-testimonials__top {
      display: flex;
      align-items: center;
      margin-bottom: 14px;
  }

  .rv-testimonials__avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, #0ea5e9, #22c55e);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-weight: 800;
      margin-right: 12px;
  }

  .rv-testimonials__client {
      display: flex;
      flex-direction: column;
  }

  .rv-testimonials__name {
      font-size: 18px;
      font-weight: 700;
      color: #000000;
  }

  .rv-testimonials__location {
      font-size: 14px;
      color: #6b7280;
  }

  .rv-testimonials__stars {
      margin-left: auto;
      display: flex;
      gap: 4px;
      color: #fbbf24;
      font-size: 15px;
  }

  .rv-testimonials__text {
      line-height: 1.6;
      color: #374151;
      margin-bottom: 12px;
  }

  .rv-testimonials__meta {
      margin-top: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      color: #6b7280;
  }

  .rv-testimonials__source {
      display: inline-flex;
      align-items: center;
      gap: 6px;
  }

  .rv-testimonials__source-icon {
      width: 18px;
      height: 18px;
      border-radius: 4px;
      background-color: #0f172a;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #facc15;
      font-size: 11px;
  }

  .rv-testimonials__rating {
      font-weight: 600;
      color: #111827;
  }

  /* Responsive */

  @media (max-width: 1024px) {
      .rv-testimonials__grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
  }

  @media (max-width: 767px) {
      .rv-testimonials {
          padding-top: 52px;
          padding-bottom: 60px;
      }

      .rv-testimonials__title {
          font-size: 26px;
      }

      .rv-testimonials__grid {
          grid-template-columns: minmax(0, 1fr);
      }
  }

  .tc-terms {
      padding: 70px 16px 80px;
  }

  .tc-terms__inner {
      max-width: 1160px;
      margin: 0 auto;
  }

  .tc-terms__heading {
      margin-bottom: 26px;
  }

  .tc-terms__title {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 16px;
  }

  .tc-terms__meta {
      font-weight: 700;
      margin-bottom: 10px;
  }

  .tc-terms__text {
      line-height: 1.6;
      color: #374151;
      margin-bottom: 22px;
  }

  .tc-terms__section {
      margin-bottom: 26px;
  }

  .tc-terms__section-title {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .tc-terms__section-title-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background-color: #0f766e;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 13px;
  }

  .tc-terms__section-body {
      line-height: 1.7;

  }

  .tc-terms__list {
      margin-top: 6px;
      padding-left: 20px;
  }

  .tc-terms__list-item {
      margin-bottom: 4px;
  }

  .tc-terms__note {
      font-size: 16px;
      margin-top: 4px;
  }

  /* responsive */

  @media (max-width: 767px) {
      .tc-terms {
          padding-top: 52px;
          padding-bottom: 60px;
      }

      .tc-terms__title {
          font-size: 26px;
      }

      .tc-terms__section-title {
          font-size: 20px;
      }
  }

  .ck-bar {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 9999;
      display: none;
      /* будет включаться через JS */
      background-color: #0f172a;
      color: #f9fafb;
      box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.6);
  }

  .ck-bar__inner {
      max-width: 1160px;
      margin: 0 auto;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 16px;
  }

  .ck-bar__icon-wrap {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      background: linear-gradient(135deg, #22c55e, #0ea5e9);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 18px;
  }

  .ck-bar__content {
      flex: 1;
  }

  .ck-bar__title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 4px;
  }

  .ck-bar__text {
      font-size: 18px;
      line-height: 1.5;
      color: #e5e7eb;
  }

  .ck-bar__text a {
      color: #38bdf8;
      text-decoration: none;
      font-weight: 600;
  }

  .ck-bar__text a:hover {
      text-decoration: underline;
  }

  .ck-bar__actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
  }

  .ck-bar__btn {
      padding: 9px 22px;
      border-radius: 999px;
      border: none;
      background-color: #22c55e;
      color: #052e16;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
      transition: background-color 0.2s ease, transform 0.2s ease,
          box-shadow 0.2s ease;
      white-space: nowrap;
  }

  .ck-bar__btn:hover {
      background-color: #16a34a;
      transform: translateY(-1px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.75);
  }

  .ck-bar__close {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid #475569;
      background-color: transparent;
      color: #e5e7eb;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 14px;
      transition: background-color 0.2s ease, color 0.2s ease;
  }

  .ck-bar__close:hover {
      background-color: #1f2937;
      color: #ffffff;
  }

  @media (max-width: 768px) {
      .ck-bar__inner {
          flex-direction: column;
          align-items: flex-start;
          padding: 14px 16px 18px;
      }

      .ck-bar__actions {
          align-self: stretch;
          justify-content: flex-start;
      }

      .ck-bar__btn {
          flex: 0 0 auto;
      }
  }
