  :root {
      --green-700: #1a8a1a;
      --green-600: #25a125;
      --text: #1d1d1f;
      --shadow: 0 12px 30px rgba(0, 0, 0, .12);
  }


  * {
      box-sizing: border-box
  }

  html,
  body {
      margin: 0
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--text);
      overflow-x: hidden
  }

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


  [id] {
      scroll-margin-top: 70px;
  }


  .accordion-item {
      scroll-margin-top: 200px;
  }

  .container {
      width: 100%;
      max-width: 1280px;
      padding-inline: 16px;
      margin-inline: auto
  }


  .site-header {
      position: relative;
      z-index: 1000;
      background: #fff;
  }


  .nav {
      position: sticky;
      top: 0;
      z-index: 1001;
      background: #61c528;
      color: #103810;
      font-weight: 600;
      box-shadow: none;
      transition: box-shadow .2s ease;
      width: 100%;
  }

  .nav.is-stuck {
      box-shadow: var(--shadow);
  }

  /* Topbar */
  .topbar {
      background: #0e7b0a;
      color: #eaffea;
      font-size: 14px
  }

  .topbar__row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      min-height: 36px
  }

  .topbar__left,
  .topbar__right {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap
  }

  .chip {
      display: flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap
  }

  .chip i {
      color: #c9ffd0
  }

  .topbar a {
      color: #eaffea;
      opacity: .9
  }

  .topbar a:hover {
      opacity: 1;
      text-decoration: underline
  }

  /* Brand */
  .brand {
      background: #fff
  }

  .brand__row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 92px;
      gap: 16px;
      transition: min-height .2s ease
  }

  .site-header.is-stuck .brand__row {
      min-height: 74px
  }

  .logo img {
      height: 62px;
      max-width: 100%;
      display: block;
      transition: height .2s ease
  }

  .site-header.is-stuck .logo img {
      height: 52px
  }

  .cta {
      border: 0;
      border-radius: 10px;
      padding: 12px 22px;
      background: linear-gradient(0deg, var(--green-700), var(--green-600));
      color: #fff;
      font-weight: 700;
      box-shadow: 0 8px 18px rgba(25, 135, 25, .28);
      cursor: pointer;
      transition: .2s
  }

  .cta:hover {
      transform: translateY(-1px);
      filter: saturate(1.05)
  }

  /* Burger */
  .burger {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      border: 1px solid #ddd;
      background: #fff;
      display: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      position: relative;
      z-index: 10;
  }

  .burger span,
  .burger::before,
  .burger::after {
      content: "";
      display: block;
      width: 22px;
      height: 2px;
      background: #1d1d1f;
      transition: .2s;
      position: relative;
      z-index: 1;
      border-radius: 1px;
  }

  .burger::before {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) translateY(-6px);
  }

  .burger::after {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) translateY(6px);
  }

  .burger[aria-expanded="true"] span {
      opacity: 0
  }

  .burger[aria-expanded="true"]::before {
      transform: translate(-50%, -50%) rotate(45deg);
  }

  .burger[aria-expanded="true"]::after {
      transform: translate(-50%, -50%) rotate(-45deg);
  }



  .nav__row {
      display: flex;
      align-items: center;
      gap: 22px;
      min-height: 56px;
      overflow: auto hidden;
      scrollbar-width: none;
      padding-block: 6px
  }

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

  .nav a {
      padding: 10px 8px;
      border-radius: 8px;
      white-space: nowrap;
      transition: background .15s ease, color .15s ease
  }

  .nav a:hover {
      background: rgba(255, 255, 255, .2);
      color: #fff;
  }

  .nav a.active {
      background: #2e7d32;
      color: #fff;
  }

  .nav__spacer {
      flex: 1
  }

  .fb {
      display: flex;
      align-items: center;
      gap: 8px
  }


  .offcanvas {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 1100
  }

  .offcanvas__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .35);
      opacity: 0;
      transition: .2s
  }

  .offcanvas__panel {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: min(88vw, 340px);
      background: #fff;
      transform: translateX(-100%);
      /* зліва → вправо */
      transition: .25s;
      display: flex;
      flex-direction: column;
      box-shadow: 12px 0 30px rgba(0, 0, 0, .18)
  }

  .offcanvas.open {
      pointer-events: auto
  }

  .offcanvas.open .offcanvas__backdrop {
      opacity: 1
  }

  .offcanvas.open .offcanvas__panel {
      transform: none
  }

  .mnav-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px;
      border-bottom: 1px solid #eee
  }

  .mnav-links {
      padding: 10px
  }

  .mnav-links a {
      display: block;
      padding: 12px;
      font-weight: 600;
      color: #1f3a1f;
      border-radius: 8px;
      transition: background .15s ease
  }

  .mnav-links a:hover {
      background: #f3fff3
  }

  .mnav-links a.active {
      background: #e8ffe8
  }

  .mnav-cta {
      margin-top: auto;
      padding: 16px;
      border-top: 1px solid #eee
  }

  .mnav-cta .cta {
      width: 100%
  }

  /* ===== Hero Section ===== */
  .hero {
      background: url('../images/bg1.jpg') center/cover no-repeat;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;

      color: #fff;
      padding: 100px 0 80px;
      position: relative;
      overflow: hidden;
      min-height: 75vh;
      height: 75vh;
      display: flex;
      align-items: center;
  }

  .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      height: 100%;
      background: linear-gradient(135deg, rgba(26, 93, 26, 0.1) 0%, rgba(46, 125, 50, 0.2) 100%);
      z-index: 1;
  }

  /* iOS Safari */
  @supports (-webkit-touch-callout: none) {
      .hero {
          background-attachment: scroll;
          -webkit-background-size: cover;
          -moz-background-size: cover;
          -o-background-size: cover;
          background-size: cover;
      }
  }

  .hero__content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
      padding: 40px 20px;
      animation: fadeInUp 1.5s ease-out;
  }

  @keyframes fadeInUp {
      0% {
          opacity: 0;
          transform: translateY(50px);
      }

      100% {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .hero__content::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 400px;
      height: 400px;
      background-image: url(../images/bg3.svg);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      opacity: 0.25;
      z-index: -1;
      pointer-events: none;
      animation: floatUp 6s ease-in-out infinite;
  }

  @keyframes floatUp {
      0% {
          transform: translate(-50%, -50%) translateY(0px);
          opacity: 0.25;
      }

      50% {
          transform: translate(-50%, -50%) translateY(-20px);
          opacity: 0.4;
      }

      100% {
          transform: translate(-50%, -50%) translateY(0px);
          opacity: 0.25;
      }
  }

  .hero__title {
      font-size: 56px;
      font-weight: 700;
      margin: 0 0 24px 0;
      line-height: 1.1;
      color: #1a5d1a;
      text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
      animation: fadeInUp 1s ease-out;
  }

  .hero__subtitle {
      font-size: 24px;
      margin: 0 0 40px 0;
      color: #1a5d1a;
      text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
      animation: fadeInUp 1s ease-out 0.2s both;
  }

  .hero__cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: #67b22f;
      color: #fff;
      padding: 16px 32px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 18px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(103, 178, 47, 0.4);
      animation: fadeInUp 1s ease-out 0.4s both;
  }

  .hero__cta:hover {
      background: #5a9a28;
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(103, 178, 47, 0.5);
  }

  .hero__cta i {
      font-size: 20px;
      transition: transform 0.3s ease;
  }

  .hero__cta:hover i {
      transform: translateX(4px);
  }

  /* ===== Segment (Hero Tabs) ===== */
  .segment {
      margin-top: 60px;
      position: relative;
      z-index: 2;
      animation: fadeInUp 1s ease-out 0.6s both;
  }

  .segment__wrap {
      background: #fff;
      border-radius: 16px;
      padding: 8px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 4px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

      margin: 0 auto;
  }

  .segment__btn {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 16px;
      border-radius: 12px;
      text-decoration: none;
      color: #2e7d32;
      font-weight: 600;
      font-size: 16px;
      transition: all 0.3s ease;
      position: relative;
      text-align: center;
      justify-content: center;
  }

  .segment__btn:hover {
      background: #e8f5e8;
  }

  .segment__btn.active {
      background: #e8f5e8;
      color: #67b22f;
  }

  .segment__btn i {
      font-size: 24px;
  }

  /* ===== Animations ===== */
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }



  /* ===== Sales Section ===== */
  .sales {
      padding: 80px 0;
      background: #f8f9fa;
  }

  .section-title {
      text-align: center;
      font-size: 36px;
      font-weight: 700;
      color: #1a5d1a;
      margin-bottom: 50px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .section-title::before,
  .section-title::after {
      content: '';
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #67b22f, #5a9a28);
      border-radius: 2px;
      margin: 0 20px;
  }

  .section-title span {
      white-space: nowrap;
  }

  .section-title a {
      color: inherit;
      text-decoration: none;
      transition: all 0.3s ease;
  }

  .section-title a:hover {
      color: #67b22f;
      text-decoration: none;
  }

  .section-title a span {
      transition: all 0.3s ease;
  }

  .section-title a:hover span {
      transform: scale(1.05);
  }

  .sales-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto;
  }

  .sales-item {
      display: block;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
  }

  .sales-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }

  .sales__image {
      width: 100%;
      max-height: 250px;
      object-fit: cover;
      display: block;
      border-radius: 8px;
      padding: 20px;
  }

  /* ===== News Section ===== */
  .news {
      padding: 80px 0;
      background: #fff;
  }

  .news-list {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
  }

  .news-item {
      height: 185px;
      background: linear-gradient(135deg, #fff 0%, #f8fff4 100%);
      border: 2px solid transparent;
      border-radius: 16px;
      padding: 0;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }

  .news-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #67b22f, #5a9a28, #4a8c2a);
      transform: scaleX(0);
      transition: transform 0.4s ease;
  }

  .news-item:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 15px 40px rgba(103, 178, 47, 0.2);
      border-color: #67b22f;
  }

  .news-item:hover::before {
      transform: scaleX(1);
  }

  .news__content {
      padding: 25px;
      position: relative;
  }

  .news__date {
      font-size: 12px;
      color: #67b22f;
      font-weight: 700;
      margin-bottom: 15px;
      text-transform: uppercase;
      letter-spacing: 1px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(103, 178, 47, 0.1);
      padding: 6px 12px;
      border-radius: 20px;
  }

  .news__date i {
      font-size: 11px;
      opacity: 0.8;
  }

  .news__title {
      margin: 0;
  }

  .news__title a {
      color: #1a5d1a;
      text-decoration: none;
      font-size: 18px;
      font-weight: 700;
      line-height: 1.4;
      transition: all 0.3s ease;
      display: block;
      position: relative;
  }

  .news__title a::after {
      content: '→';
      position: absolute;
      right: 0;
      top: 0;
      opacity: 0;
      transform: translateX(-10px);
      transition: all 0.3s ease;
      color: #67b22f;
      font-weight: bold;
  }

  .news__title a:hover {
      color: #67b22f;
      padding-right: 25px;
  }

  .news__title a:hover::after {
      opacity: 1;
      transform: translateX(0);
  }

  /* News Link */
  .news-link {
      display: block;
      text-decoration: none;
      color: inherit;
      width: 100%;
      height: 100%;
      position: relative;
  }


  .news-link:hover {
      text-decoration: none;
      color: inherit;
  }

  .news-link img {
      position: absolute;
      top: 15px;
      left: 238px;
      width: 135px;
      height: 135px;
      object-fit: contain;
      opacity: 0.6;
      z-index: 0;
      transition: all 0.3s ease;
      padding-right: 10px;
  }

  .news-link:hover img {
      opacity: 1;
      transform: scale(1.1);
  }


  .news-link .news__title {
      color: #1a5d1a;
      text-decoration: none;
      font-size: 18px;
      font-weight: 700;
      line-height: 1.4;
      transition: all 0.3s ease;
      display: block;
      position: relative;
      margin: 0;
      padding-right: 40px;
  }

  .news-item::after {
      content: '→';
      position: absolute;
      right: 20px;
      bottom: 20px;
      opacity: 1;
      transition: all 0.3s ease;
      color: #67b22f;
      font-weight: bold;
      font-size: 20px;
      z-index: 10;
  }

  .news-link:hover .news__title {
      color: #67b22f;
  }

  .news-item:hover::after {
      color: #0e7b0a;
      animation: moveArrow 1.2s ease-in-out infinite;
      text-shadow: 0 0 10px rgba(14, 123, 10, 0.5);
  }

  @keyframes moveArrow {
      0% {
          transform: translateX(0) scale(1);
      }

      25% {
          transform: translateX(8px) scale(1.1);
      }

      50% {
          transform: translateX(0) scale(1);
      }

      75% {
          transform: translateX(-5px) scale(0.9);
      }

      100% {
          transform: translateX(0) scale(1);
      }
  }

  /* ===== SEO Section ===== */
  .seo {
      padding: 80px 0;
      background: #f8f9fa;
  }

  .seo__title {
      font-size: 36px;
      font-weight: 700;
      color: #1a5d1a;
      text-align: center;
      margin-bottom: 40px;
      line-height: 1.3;
  }

  .seo__content {

      margin: 0 auto;
  }

  .seo__text {
      font-size: 16px;
      line-height: 1.7;
      color: #444;
      margin-bottom: 20px;
      text-align: justify;
  }

  .seo__text strong {
      color: #1a5d1a;
      font-weight: 700;
  }

  .seo__subtitle {
      font-size: 24px;
      font-weight: 600;
      color: #1a5d1a;
      margin: 30px 0 20px 0;
      text-align: center;
      font-style: italic;
  }

  .seo__list {
      margin: 20px 0;
      padding-left: 0;
      list-style: none;
      counter-reset: seo-counter;
  }

  .seo__list-item {
      font-size: 16px;
      line-height: 1.6;
      color: #444;
      margin-bottom: 15px;
      padding-left: 40px;
      position: relative;
      counter-increment: seo-counter;
  }

  .seo__list-item::before {
      content: counter(seo-counter);
      position: absolute;
      left: 0;
      top: 0;
      background: #67b22f;
      color: #fff;
      width: 25px;
      height: 25px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 14px;
  }

  .seo__cta {
      font-size: 18px;
      font-weight: 600;
      color: #1a5d1a;
      text-align: center;
      margin-top: 30px;
      padding: 20px;
      background: rgba(103, 178, 47, 0.1);
      border-radius: 12px;
      border-left: 4px solid #67b22f;
  }




  .sales__item-title {
      font-size: 18px;
      font-weight: 600;
      color: #1a5d1a;
      margin: 0 0 10px 0;
  }

  .sales__item-text {
      font-size: 14px;
      color: #666;
      margin: 0;
  }

  /* ===== Sales Section ===== */
  .sales {
      padding: 80px 16px;
      background: #f8fff4;
  }

  /* ===== News Section ===== */
  .news {
      padding: 80px 16px;
      background: #fff;
  }

  /* ===== Equipment Section ===== */
  .equipment {
      padding: 80px 16px;
      background: #f8fff4;
  }

  .equipment-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto;
  }


  .news__title {
      font-size: 36px;
      font-weight: 700;
      color: #1a5d1a;
      text-align: center;
      margin: 0 0 40px 0;
  }

  .news-list {
      max-width: 800px;
      margin: 0 auto;
  }

  .news__list {
      max-width: 800px;
      margin: 0 auto;
  }

  .news__item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
      border-bottom: 1px solid #eee;
  }

  .news__item:last-child {
      border-bottom: none;
  }

  .news__item-title {
      font-size: 16px;
      font-weight: 600;
      color: #1a5d1a;
      margin: 0;
  }

  .news__item-date {
      font-size: 14px;
      color: #666;
  }

  /* ===== Equipment Section ===== */
  .equipment {
      padding: 60px 16px;
      background: #f8f9fa;
  }

  .equipment__title {
      font-size: 36px;
      font-weight: 700;
      color: #1a5d1a;
      text-align: center;
      margin: 0 0 40px 0;
  }

  .equipment__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto;
  }

  .equipment-card {
      background: #fff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      position: relative;
  }

  .equipment-card:hover {
      transform: translateY(-5px);
  }

  .equipment-card__image {
      width: 100%;
      height: 200px;
      object-fit: cover;
  }

  .equipment-card__content {
      padding: 20px;
  }

  .equipment-card__title {
      font-size: 18px;
      font-weight: 600;
      color: #1a5d1a;
      margin: 0 0 10px 0;
  }

  .equipment-card__text {
      font-size: 14px;
      color: #666;
      margin: 0;
  }

  .equipment-card__ribbon {
      position: absolute;
      top: 15px;
      right: -30px;
      background: #ff6b6b;
      color: #fff;
      padding: 8px 40px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      transform: rotate(45deg);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .equipment-card__ribbon--services {
      top: 13px;
      right: -41px;
      padding: 6px 40px;
      min-width: 100px;
  }

  .equipment-card__ribbon--equipment {
      top: 20px;
      right: -54px;
      padding: 6px 50px;
      min-width: 120px;
  }


  /* ===== Footer ===== */
  .site-footer {
      background: #0e7b0a;
      color: #fff;
      padding: 60px 0 30px;
  }

  .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 40px;
      margin-bottom: 40px;
  }

  .footer-left {
      text-align: left;
  }

  .footer-center {
      text-align: center;
  }

  .footer-right {
      text-align: right;
  }

  .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 15px;
  }

  .contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
  }

  .contact-item i {
      color: #61c528;
      width: 16px;
  }

  .footer-tagline {
      font-size: 18px;
      font-weight: 600;
      margin: 0 0 20px 0;
  }

  .footer-logo {
      margin-bottom: 20px;
  }

  .footer-logo-img {
      height: 60px;
      max-width: 100%;
  }

  /* Mobile logo */
  @media (max-width: 780px) {
      .footer-logo-img {
          height: 50px;
      }
  }

  @media (max-width: 480px) {
      .footer-logo-img {
          height: 45px;
      }

      .footer-logo {
          margin-bottom: 15px;
      }

      .footer-content {
          justify-content: center;
          align-items: center;
      }

  }

  .footer-phones {
      display: flex;
      flex-direction: column;
      gap: 12px;
  }

  .phone-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
  }

  .phone-item i {
      color: #61c528;
      width: 16px;
  }

  .footer-separator {
      height: 1px;
      background: rgba(255, 255, 255, 0.2);
      margin: 30px 0;
  }

  .footer-bottom {
      font-size: 14px;
      opacity: 0.8;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
  }

  .footer-bottom__left {
      flex: 1;
  }

  .footer-bottom__right {
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .footer-bottom__right span {
      color: #fff;
      font-size: 14px;
  }

  .footer-bottom__right a {
      display: inline-block;
      transition: opacity 0.3s ease;
  }

  .footer-bottom__right a:hover {
      opacity: 0.8;
  }

  .logo-prof {
      height: 20px;
      width: auto;
      filter: brightness(0) invert(1);
  }

  .footer-separator-top {
      height: 4px;
      background: #61c528;
      width: 100%;
  }

  /* ===== Back to Top Button ===== */
  .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #1a5d1a, #2e7d32);
      color: #fff;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
      opacity: 0;
      visibility: hidden;
      z-index: 1000;
  }

  .back-to-top.show {
      opacity: 1;
      visibility: visible;
  }

  .back-to-top:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  }

  /* ===== Telegram Chat Widget ===== */
  .telegram-widget {
      position: fixed;
      bottom: 90px;
      right: 20px;
      z-index: 1001;
      transform: translateX(120%);
      transition: transform 0.5s ease-in-out;
  }

  .telegram-widget.show {
      transform: translateX(0);
  }

  .telegram-widget__content {
      display: flex;
      align-items: center;
      gap: 0;
      cursor: pointer;
      transition: all 0.3s ease;
  }

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

  .telegram-widget__bubble {
      background: #0088cc;
      color: #fff;
      padding: 12px 16px;
      border-radius: 20px;
      font-weight: 600;
      font-size: 14px;
      position: relative;
      box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
  }

  .telegram-widget__bubble::after {
      content: '';
      position: absolute;
      right: -8px;
      top: 50%;
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border-left: 8px solid #0088cc;
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
  }

  .telegram-widget__icon {
      background: #0088cc;
      width: 50px;
      height: 50px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 20px;
      position: relative;
      box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
  }

  .telegram-widget__notification {
      position: absolute;
      top: -4px;
      right: -4px;
      width: 12px;
      height: 12px;
      background: #ff4444;
      border-radius: 50%;
      border: 2px solid #fff;
      animation: pulse 2s infinite;
  }

  .telegram-widget__close {
      position: absolute;
      top: -8px;
      right: -8px;
      width: 20px;
      height: 20px;
      background: #ff4444;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 10px;
      cursor: pointer;
      box-shadow: 0 2px 6px rgba(255, 68, 68, 0.3);
      transition: all 0.3s ease;
  }

  .telegram-widget__close:hover {
      background: #ff3333;
      transform: scale(1.1);
  }

  @keyframes pulse {
      0% {
          transform: scale(1);
          opacity: 1;
      }

      50% {
          transform: scale(1.2);
          opacity: 0.7;
      }

      100% {
          transform: scale(1);
          opacity: 1;
      }
  }

  .back-to-top:active {
      transform: translateY(-1px);
  }

  /* ===== Tariffs Tabs ===== */
  .tariffs-tabs {
      padding: 60px 0;
      background: #f8f9fa;
  }

  .tabs-nav {
      display: flex;
      justify-content: center;
      margin-bottom: 40px;
      background: #fff;
      border-radius: 12px;
      padding: 8px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

      margin-left: auto;
      margin-right: auto;
  }

  .tab-btn {
      flex: 1;
      padding: 16px 24px;
      border: none;
      background: transparent;
      color: #666;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      border-radius: 8px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }

  .tab-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, #67b22f, #4a8c1a);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: -1;
  }

  .tab-btn:hover::before {
      opacity: 0.1;
  }

  .tab-btn.active {
      background: linear-gradient(135deg, #67b22f, #4a8c1a);
      color: #fff;
      box-shadow: 0 4px 15px rgba(103, 178, 47, 0.3);
  }

  .tab-btn.active::before {
      opacity: 0;
  }

  .tabs-content {
      position: relative;
  }

  .tab-panel {
      display: none;
      animation: fadeIn 0.3s ease-in-out;
  }

  .tab-panel.active {
      display: block;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(10px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* Tab info */
  .tab-info {
      margin-bottom: 30px;
      max-width: 100%;
      display: block !important;
      visibility: visible !important;
  }

  .tab-subtitle {
      font-size: 18px;
      font-weight: 600;
      color: #1a5d1a;
      margin-bottom: 10px;
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
  }

  .tab-note {
      font-size: 14px;
      color: #524f50;
      font-style: italic;
      margin: 0;
  }

  .tab-note--important {
      font-size: 14px;
      color: #dc3545;
      font-style: italic;
      margin: 0;
  }


  .tabs-content .tariffs-grid {
      max-width: 100% !important;
      width: 100% !important;
  }

  .tab-panel {
      max-width: 1200px;
      width: 100% !important;
      margin: 0 auto;
  }


  @media (max-width: 768px) {
      .tabs-nav {
          flex-direction: column;
          gap: 4px;
          padding: 6px;
          margin: 0 16px 30px 16px;
      }

      .tab-btn {
          padding: 14px 20px;
          font-size: 15px;
          text-align: center;
      }

      .tariffs-tabs {
          padding: 40px 0;
      }

      .tab-panel {
          padding: 0 16px;
      }
  }

  @media (max-width: 480px) {
      .tabs-nav {
          margin: 0 12px 20px 12px;
          padding: 4px;
      }

      .tab-btn {
          padding: 12px 16px;
          font-size: 14px;
      }

      .tab-panel {
          padding: 0 12px;
      }
  }


  .services-accordion {
      padding: 60px 0;
      background: #fff;
  }

  .modern-accordion {
      max-width: 1000px;
      margin: 0 auto;
  }

  .modern-accordion__item {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      margin-bottom: 20px;
      overflow: hidden;
      transition: all 0.3s ease;
  }

  .modern-accordion__item:hover {
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
      transform: translateY(-2px);
  }

  .modern-accordion__header {
      padding: 24px 32px;
      background: transparent;
      border: 2px solid #67b22f;
      color: #1a5d1a;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }

  .modern-accordion__header::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s ease;
  }

  .modern-accordion__header:hover {
      border-color: #4a8c1a;
      background: rgba(103, 178, 47, 0.1);
  }

  .modern-accordion__header:hover::before {
      left: 100%;
  }

  .modern-accordion__title {
      font-size: 20px;
      font-weight: 700;
      margin: 0;
      position: relative;
      z-index: 2;
  }

  .modern-accordion__icon {
      font-size: 18px;
      transition: transform 0.3s ease;
      position: relative;
      z-index: 2;
  }

  .modern-accordion__item.active .modern-accordion__icon {
      transform: rotate(180deg);
  }

  .modern-accordion__content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .modern-accordion__item.active .modern-accordion__content {
      max-height: 2000px;
  }

  .modern-accordion__content-inner {
      padding: 32px;
      background: transparent;
  }

  /* ===== Tariffs Accordion ===== */
  .tariffs-accordion {
      padding: 40px 16px;
      /* background: #f8f9fa; */
      max-width: 1000px;
      margin: 0 auto;
  }

  .tariffs-main-title {
      font-size: 48px;
      font-weight: 700;
      color: #1a5d1a;
      text-align: center;
      margin: 0 0 50px 0;
      line-height: 1.2;
  }

  .accordion-item {
      margin-bottom: 10px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
  }

  .accordion-item:hover {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      transform: translateY(-2px);
  }

  .accordion-item--active .accordion-header {
      background: #61c528;
  }

  .accordion-item--active .accordion-icon {
      transform: rotate(180deg);
  }

  .accordion-header {
      background: #67b22f;
      color: #fff;
      padding: 10px 30px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.5s ease;
      user-select: none;
      position: relative;
      overflow: hidden;
  }

  .accordion-header::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transition: left 0.5s ease;
  }

  .accordion-header:hover::before {
      left: 100%;
  }

  .accordion-header:hover {
      background: #5a9a28;
  }

  .accordion-title {
      font-size: 18px;
      font-weight: 600;
      margin: 0;
  }

  .accordion-icon {
      font-size: 16px;
      transition: transform 0.6s ease-in-out;
      transform-origin: center;
  }

  .accordion-content {
      max-height: 0;
      overflow: hidden;
      background: #fff;
      padding: 0 30px;
      opacity: 0;
      transition: max-height 0.8s ease-in-out,
          padding 0.8s ease-in-out,
          opacity 0.6s ease 0.2s;
  }

  .accordion-item--active .accordion-content {
      max-height: 2000px;
      padding: 30px;
      opacity: 1;
  }

  .accordion-info {
      margin-bottom: 30px;
      text-align: center;
  }

  .accordion-subtitle {
      font-size: 16px;
      color: #333;
      margin: 0 0 10px 0;
      font-weight: 500;
  }

  .accordion-note {
      font-size: 14px;
      color: #524f50;
      margin: 0;
  }

  .accordion-note p {
      margin: 0;
  }

  /* ===== Services Table ===== */
  .services-table {
      margin-bottom: 30px;
  }

  .services-section {
      margin-bottom: 40px;
  }

  .services-section:last-child {
      margin-bottom: 0;
  }

  .services-section-title {
      font-size: 18px;
      font-weight: 600;
      color: #2e7d32;
      margin: 0 0 15px 0;
      padding: 10px 15px;
      background: #e8f5e8;
      border-radius: 5px;
  }

  .services-table-content {
      width: 100%;
      border-collapse: collapse;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .services-table-content thead {
      background: #e8f5e8;
  }

  .services-table-content th {
      padding: 12px 15px;
      text-align: left;
      font-weight: 600;
      color: #2e7d32;
      border-bottom: 1px solid #d0d0d0;
      font-size: 14px;
  }

  .services-table-content td {
      padding: 12px 15px;
      border-bottom: 1px solid #f0f0f0;
      font-size: 14px;
      line-height: 1.4;
      color: #333;
  }

  .services-table-content tbody tr:nth-child(even) {
      background: #f9f9f9;
  }

  .services-table-content tbody tr:hover {
      background: #f0f8f0;
  }

  .services-table-content tbody tr:last-child td {
      border-bottom: none;
  }

  /* ===== Contract Samples ===== */
  .contract-samples {
      padding: 40px 16px;
      background: #f8f9fa;
      border-top: 1px solid #e0e0e0;
  }

  .contract-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
  }

  .contract-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 25px;
      background: #2e7d32;
      color: #fff;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 600;
      font-size: 16px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
      border: 2px solid transparent;
  }

  .contract-btn:hover {
      background: #1b5e20;
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(46, 125, 50, 0.4);
      color: #fff;
      text-decoration: none;
  }

  .contract-btn:active {
      transform: translateY(0);
      box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
  }

  .contract-btn i {
      font-size: 18px;
  }

  /* ===== Information Block ===== */
  .information-block {
      padding: 60px 16px;
      /* background: #fff; */
      /* max-width: 1000px; */
      /* margin: 0 auto; */
  }

  .information-title {
      font-size: 36px;
      font-weight: 700;
      color: #1a5d1a;
      text-align: center;
      margin: 0 0 50px 0;
      line-height: 1.2;
  }

  .information-section {
      margin-bottom: 40px;
      padding: 30px;
      background: #f8f9fa;
      border-radius: 12px;
      border-left: 4px solid #67b22f;
  }

  .information-section:last-child {
      margin-bottom: 0;
  }

  .information-section-title {
      font-size: 20px;
      font-weight: 600;
      color: #1a5d1a;
      margin: 0 0 20px 0;
      line-height: 1.4;
  }

  .information-list {
      margin: 0 0 20px 0;
      padding-left: 0;
      list-style: none;
  }

  .information-list li {
      position: relative;
      padding: 8px 0 8px 30px;
      font-size: 16px;
      line-height: 1.6;
      color: #333;
      border-bottom: 1px solid #e9ecef;
  }

  .information-list li:last-child {
      border-bottom: none;
  }

  .information-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 8px;
      color: #67b22f;
      font-weight: 600;
      font-size: 16px;
  }

  .information-note {
      font-size: 14px;
      color: #67b22f;
      font-weight: 600;
      margin: 0;
      padding: 15px 20px;
      background: #e8f5e8;
      border-radius: 8px;
      border-left: 3px solid #67b22f;
  }

  .tariffs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 20px;
      width: 100%;
      max-width: 100%;
  }

  .tariffs-grid--ott {
      grid-template-columns: repeat(4, 1fr);
  }

  .tariff-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
  }

  .tariff-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }


  .tariff-card__title {
      font-size: 18px;
      font-weight: 700;
      margin: 0;
      color: #0e7b0a;
      text-transform: uppercase;
  }

  .tariff-card__body {
      padding: 20px;
  }

  .tariff-features {
      margin-bottom: 20px;
  }

  .tariff-feature {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid #f1f3f4;
      background: #f8f9fa;
      margin-bottom: 2px;
      padding-left: 15px;
      padding-right: 15px;
  }

  .tariff-feature:last-of-type {
      border-bottom: none;
      margin-bottom: 0;
  }

  .tariff-feature__label {
      font-weight: 600;
      color: #2c3e50;
  }

  .tariff-feature__value {
      color: #666;
      font-weight: 500;
  }

  .tariff-price {
      font-size: 1.5rem;
      font-weight: 700;
      color: #0e7b0a;
      text-align: center;
      margin-bottom: 20px;
  }

  .tariff-btn {
      width: 100%;
      background: #0e7b0a;
      color: #fff;
      border: none;
      padding: 12px 20px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .tariff-btn:hover {
      background: #28a745;
      transform: translateY(-2px);
  }

  .tariff-header {
      background: #0e7b0a;
      color: #fff;
      padding: 20px;
      text-align: center;
  }

  .tariff-name {
      font-size: 18px;
      font-weight: 700;
      margin: 0;
      color: #fff;
      text-transform: uppercase;
  }

  .tariff-content {
      padding: 20px;
  }

  .tariff-feature {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid #f1f3f4;
      background: #f8f9fa;
      margin-bottom: 2px;
      padding-left: 15px;
      padding-right: 15px;
  }

  .tariff-feature:last-of-type {
      border-bottom: none;
      margin-bottom: 15px;
  }

  .feature-label {
      font-size: 14px;
      color: #666;
      font-weight: 500;
  }

  .feature-value {
      font-size: 14px;
      font-weight: 600;
      color: #333;
  }

  .tariff-price {
      text-align: center;
      padding: 15px 0;
      background: #f8f9fa;
      margin: 15px 0;
      border-radius: 8px;
  }

  .price-amount {
      font-size: 24px;
      font-weight: 700;
      color: #0e7b0a;
  }

  .price-currency {
      font-size: 14px;
      font-weight: 600;
      color: #666;
      margin-left: 5px;
  }

  .tariff-footer {
      padding: 0 20px 20px;
  }

  .tariff-btn {
      width: 100%;
      background: #0e7b0a;
      color: #fff;
      border: none;
      padding: 15px 20px;
      border-radius: 0 0 12px 12px;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .tariff-btn:hover {
      background: #0e7b0a;
      transform: translateY(-2px);
  }

  /* ===== Coverage Section ===== */
  .coverage {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }

  .coverage-title {
      font-size: 36px;
      font-weight: 700;
      color: #1a5d1a;
      text-align: center;
      margin-bottom: 20px;
  }

  .coverage-intro {
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
  }

  .coverage-intro p {
      font-size: 16px;
      color: #666;
      line-height: 1.6;
      margin: 0;
  }

  .coverage-map {
      margin-bottom: 60px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  .coverage-map iframe {
      width: 100%;
      height: 350px;
      border: none;
  }

  .coverage-locations {
      max-width: 1200px;
      margin: 0 auto;
  }

  .locations-title {
      font-size: 28px;
      font-weight: 600;
      color: #1a5d1a;
      text-align: center;
      margin-bottom: 40px;
  }

  .locations-controls {
      margin-bottom: 40px;
  }

  .search-box {
      position: relative;
      max-width: 400px;
      margin: 0 auto 30px auto;
  }

  .search-box input {
      width: 100%;
      padding: 15px 50px 15px 20px;
      border: 2px solid #e9ecef;
      border-radius: 25px;
      font-size: 16px;
      transition: all 0.3s ease;
  }

  .search-box input:focus {
      outline: none;
      border-color: #28a745;
      box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
  }

  .search-box i {
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      color: #666;
      font-size: 16px;
  }

  .filter-tabs {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
  }

  .filter-tab {
      padding: 10px 20px;
      border: 2px solid #e9ecef;
      background: #fff;
      color: #666;
      border-radius: 25px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .filter-tab:hover {
      border-color: #28a745;
      color: #28a745;
  }

  .filter-tab.active {
      background: #0e7b0a;
      border-color: #0e7b0a;
      color: #fff;
  }

  .locations-grid {
      display: grid;
      gap: 30px;
  }

  .location-category {
      background: #fff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
  }

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

  .category-title {
      font-size: 22px;
      font-weight: 600;
      color: #1a5d1a;
      margin-bottom: 25px;
      padding-bottom: 15px;
      border-bottom: 2px solid #e9ecef;
  }

  .locations-list {
      display: grid;
      gap: 20px;
  }

  .location-item {
      background: #f8f9fa;
      border-radius: 8px;
      padding: 20px;
      border-left: 4px solid #28a745;
  }

  .location-name {
      font-size: 18px;
      font-weight: 600;
      color: #333;
      margin-bottom: 15px;
  }

  .address-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
  }

  .address {
      font-size: 14px;
      color: #333;
      padding: 12px 16px;
      background: #f8f9fa;
      border-radius: 8px;
      position: relative;
      transition: all 0.3s ease;
  }

  .address:hover {
      background: #e9ecef;
  }

  .address::before {
      content: "\f3c5";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      margin-right: 8px;
      font-size: 12px;
      color: #0e7b0a;
  }


  /* ===== TV Tariffs ===== */
  .tv-tariffs {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }

  .tv-main-title {
      font-size: 36px;
      font-weight: 700;
      color: #1a5d1a;
      text-align: center;
      margin-bottom: 20px;
  }

  .tv-intro {
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
  }

  .tv-intro p {
      font-size: 16px;
      color: #666;
      line-height: 1.6;
      margin: 0;
  }

  .tv-partner-wrapper {
      text-align: center;
      margin-bottom: 20px;
  }

  .tv-partner-info {
      font-size: 18px;
      font-weight: 600;
      color: #0e7b0a;
      padding: 10px 20px;
      background: rgba(14, 123, 10, 0.1);
      border-radius: 8px;
      display: inline-block;
      width: fit-content;
  }

  .tv-tabs-nav {
      display: flex;
      justify-content: center;
      margin-bottom: 30px;
      background: #fff;
      border-radius: 12px;
      padding: 8px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
  }

  .tv-tab-btn {
      flex: 1;
      padding: 16px 20px;
      border: none;
      background: transparent;
      color: #666;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      border-radius: 8px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }

  .tv-tab-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, #67b22f, #4a8c1a);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: -1;
  }

  .tv-tab-btn:hover::before {
      opacity: 0.1;
  }

  .tv-tab-btn.active {
      background: linear-gradient(135deg, #67b22f, #4a8c1a);
      color: #fff;
      box-shadow: 0 4px 15px rgba(103, 178, 47, 0.3);
  }

  .tv-tab-btn.active::before {
      opacity: 0;
  }

  .tv-promo-banner {
      text-align: center;
      margin-bottom: 40px;
      padding: 20px;
      border: 2px solid #dc3545;
      border-radius: 12px;
      background: #fff;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
  }

  .tv-promo-banner p {
      font-size: 18px;
      font-weight: 600;
      color: #dc3545;
      margin: 0;
  }

  .tv-tabs-content {
      position: relative;
      margin-bottom: 40px;
  }

  .tv-tab-panel {
      display: none;
      animation: fadeIn 0.3s ease-in-out;
  }

  .tv-tab-panel.active {
      display: block;
  }

  .tv-channels-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
  }

  .tv-channel-item {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border: 2px solid transparent;
  }

  .tv-channel-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      border-color: #67b22f;
  }

  .tv-channel-logo {
      width: 80px;
      height: 80px;
      margin: 0 auto 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f8f9fa;
      border-radius: 8px;
      overflow: hidden;
  }

  .tv-channel-logo img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
  }

  .tv-channel-name {
      font-size: 14px;
      font-weight: 600;
      color: #333;
      line-height: 1.3;
  }

  .tv-contract-btn {
      text-align: center;
  }

  .sect {
      padding: 60px 0;
  }

  .grid-items {
      display: grid;
      gap: 23px 18px;
      grid-template-columns: repeat(auto-fill, minmax(min(40vw, 260px), 1fr));
  }

  .grid-items>*:not(.grid-items__item) {
      grid-column: 1 / -1;
  }

  .grid-items:has(>.stoks__item) {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
      max-width: 1000px;
      margin: 0 auto;
  }

  .grid-items:has(>.news_item) {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      max-width: 800px;
      margin: 0 auto;
  }


  /* ===== Stock Detail Page ===== */
  .stock-detail {
      padding: 40px 0 80px 0;
      background: #fff;
  }

  .stock-detail__content {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
  }

  .stock-header {
      margin-bottom: 40px;
  }

  .stock-meta {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 20px;
      flex-wrap: wrap;
  }

  .stock-category {
      background: #28a745;
      color: #fff;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .stock-date {
      color: #666;
      font-size: 14px;
      font-weight: 500;
  }

  .stock-edit {
      margin-left: auto;
  }

  .stock-edit a {
      color: #28a745;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      padding: 8px 16px;
      border: 1px solid #28a745;
      border-radius: 6px;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 6px;
  }

  .stock-edit a:hover {
      background: #28a745;
      color: #fff;
  }

  .stock-edit a i {
      font-size: 12px;
  }

  .stock-title {
      font-size: 36px;
      font-weight: 700;
      color: #333;
      line-height: 1.2;
      margin: 0;
  }

  .stock-image {
      margin-bottom: 40px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .stock-image img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
  }

  .stock-image:hover img {
      transform: scale(1.02);
  }

  .stock-content {
      margin-bottom: 50px;
      line-height: 1.8;
      color: #555;
  }

  .stock-content h2 {
      font-size: 24px;
      font-weight: 600;
      color: #333;
      margin: 30px 0 15px 0;
  }

  .stock-content h3 {
      font-size: 20px;
      font-weight: 600;
      color: #333;
      margin: 25px 0 12px 0;
  }

  .stock-content p {
      margin-bottom: 20px;
      font-size: 16px;
  }

  .stock-content ul,
  .stock-content ol {
      margin: 20px 0;
      padding-left: 30px;
  }

  .stock-content li {
      margin-bottom: 10px;
      font-size: 16px;
  }

  .stock-actions {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
  }

  .btn {
      display: inline-block;
      padding: 14px 28px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      transition: all 0.3s ease;
      border: 2px solid transparent;
      cursor: pointer;
  }

  .btn--primary {
      background: #28a745;
      color: #fff;
      border-color: #28a745;
  }

  .btn--primary:hover {
      background: #20c997;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
  }

  .btn--outline {
      background: transparent;
      color: #28a745;
      border-color: #28a745;
  }

  .btn--outline:hover {
      background: #28a745;
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
  }

  /* ===== Downloads Page ===== */
  .downloads {
      padding: 40px 0 80px 0;
      background: #fff;
  }

  .downloads__content {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
  }

  .downloads__title {
      font-size: 36px;
      font-weight: 700;
      color: #333;
      text-align: center;
      margin-bottom: 20px;
  }

  .downloads__description {
      font-size: 18px;
      color: #666;
      text-align: center;
      margin-bottom: 50px;
      line-height: 1.6;
  }

  .downloads__list {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }

  .download-item {
      display: flex;
      align-items: center;
      padding: 20px;
      background: #f8f9fa;
      border: 1px solid #e9ecef;
      border-radius: 12px;
      text-decoration: none;
      color: #333;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .download-item:hover {
      background: #fff;
      border-color: #28a745;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(40, 167, 69, 0.15);
  }

  .download-item__icon {
      width: 50px;
      height: 50px;
      background: #28a745;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 20px;
      flex-shrink: 0;
  }

  .download-item__icon i {
      color: #fff;
      font-size: 20px;
  }

  .download-item__content {
      flex: 1;
  }

  .download-item__name {
      font-size: 18px;
      font-weight: 600;
      color: #333;
      margin: 0 0 8px 0;
  }

  .download-item__meta {
      display: flex;
      align-items: center;
      gap: 15px;
  }

  .download-item__count {
      font-size: 14px;
      color: #666;
      display: flex;
      align-items: center;
      gap: 5px;
  }

  .download-item__count i {
      color: #28a745;
      font-size: 12px;
  }

  .download-item__arrow {
      color: #28a745;
      font-size: 16px;
      margin-left: 15px;
      transition: transform 0.3s ease;
  }

  .download-item:hover .download-item__arrow {
      transform: translateX(3px);
  }

  /* ===== Download Page ===== */
  .download-page {
      padding: 60px 0 80px 0;
      background: #f8f9fa;
      min-height: 60vh;
      display: flex;
      align-items: center;
  }

  .download-page__content {
      max-width: 600px;
      margin: 0 auto;
      padding: 0 20px;
      text-align: center;
  }

  .download-page__header {
      margin-bottom: 50px;
  }

  .download-page__icon {
      width: 80px;
      height: 80px;
      background: #28a745;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 30px auto;
      box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
  }

  .download-page__icon i {
      color: #fff;
      font-size: 32px;
  }

  .download-page__title {
      font-size: 32px;
      font-weight: 700;
      color: #333;
      margin-bottom: 15px;
  }

  .download-page__filename {
      font-size: 18px;
      color: #666;
      background: #fff;
      padding: 12px 20px;
      border-radius: 8px;
      border: 1px solid #e9ecef;
      display: inline-block;
      word-break: break-all;
  }

  .download-page__info {
      margin-bottom: 50px;
  }

  .download-page__timer {
      background: #fff;
      border: 1px solid #e9ecef;
      border-radius: 12px;
      padding: 25px;
      margin-bottom: 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }

  .timer-icon {
      width: 50px;
      height: 50px;
      background: #ffc107;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px auto;
  }

  .timer-icon i {
      color: #fff;
      font-size: 20px;
  }

  .timer-content {
      text-align: center;
  }

  .timer-label {
      display: block;
      font-size: 14px;
      color: #666;
      margin-bottom: 10px;
  }

  .timer-countdown {
      font-size: 24px;
      font-weight: 700;
      color: #ffc107;
      font-family: 'Courier New', monospace;
  }

  .download-page__stats {
      background: #fff;
      border: 1px solid #e9ecef;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }

  .stats-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
  }

  .stats-icon {
      width: 40px;
      height: 40px;
      background: #28a745;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .stats-icon i {
      color: #fff;
      font-size: 16px;
  }

  .stats-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
  }

  .stats-label {
      font-size: 14px;
      color: #666;
      margin-bottom: 5px;
  }

  .stats-value {
      font-size: 20px;
      font-weight: 700;
      color: #28a745;
  }

  .download-page__actions {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
  }

  .btn--large {
      padding: 18px 36px;
      font-size: 18px;
  }

  .btn--large i {
      margin-right: 8px;
  }

  /* ===== Pagination ===== */
  .navigation {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 20px 0;
      padding: 0;
      list-style: none;
  }

  .navigation li {
      margin: 0;
  }

  .navigation li+li {
      margin-left: 10px;
  }

  .navigation a {
      display: inline-block;
      background: #f8f9fa;
      border-radius: 10px;
      width: 50px;
      height: 50px;
      line-height: 50px;
      text-align: center;
      cursor: pointer;
      text-decoration: none;
      color: #666;
      font-weight: 500;
      font-size: 14px;
      transition: all 0.3s ease;
      border: 1px solid #e9ecef;
  }

  .navigation a:hover {
      background: #0e7b0a;
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(14, 123, 10, 0.3);
  }

  .navigation a.active,
  .navigation .pagination_edge a {
      background: #0e7b0a;
      color: #fff;
      font-weight: 600;
  }

  .navigation .pagination_edge a:before {
      content: "\f015";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
  }

  .navigation .pagination_edge a:hover {
      background: #28a745;
  }

  /* ===== News Detail Page ===== */
  .news-detail {
      padding: 60px 0;
      background: #fff;
  }

  .news-detail__content {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
  }

  .news-header {
      margin-bottom: 40px;
      padding-bottom: 20px;
      border-bottom: 1px solid #e9ecef;
  }

  .news-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
  }

  .news-category {
      background: #0e7b0a;
      color: #fff;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .news-rating {
      color: #666;
      font-size: 14px;
      font-weight: 500;
  }

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

  .news-date {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #7f8c8d;
      font-size: 14px;
      font-weight: 500;
  }

  .news-views {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #7f8c8d;
      font-size: 14px;
      font-weight: 500;
  }

  .news-title {
      font-size: 36px;
      font-weight: 700;
      color: #2c3e50;
      line-height: 1.2;
      margin: 0 0 40px 0;
      letter-spacing: -0.5px;
  }

  .news-image {
      margin-bottom: 40px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .news-image img {
      width: 100%;
      max-height: 450px;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
  }

  .news-image:hover img {
      transform: scale(1.02);
  }

  .news-content {
      margin-bottom: 50px;
      line-height: 1.8;
      color: #444;
      font-size: 16px;
  }

  .news-content h2 {
      font-size: 28px;
      font-weight: 700;
      color: #2c3e50;
      margin: 40px 0 20px 0;
      letter-spacing: -0.3px;
  }

  .news-content h3 {
      font-size: 22px;
      font-weight: 600;
      color: #34495e;
      margin: 30px 0 15px 0;
  }

  .news-content p {
      margin-bottom: 25px;
      font-size: 16px;
  }

  .news-content ul,
  .news-content ol {
      margin: 25px 0;
      padding-left: 30px;
  }

  .news-content li {
      margin-bottom: 12px;
      font-size: 16px;
  }

  .news-content a {
      color: #0e7b0a;
      font-weight: 700;
  }


  .news-edit {
      margin-top: 20px;
      text-align: center;
  }

  .news-edit a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #0e7b0a;
      color: #fff;
      padding: 12px 24px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
  }

  .news-edit a:hover {
      background: #28a745;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(14, 123, 10, 0.3);
  }

  /* ===== Payment Page ===== */
  .payment-section {
      padding: 60px 0;
      background: #f8f9fa;
      min-height: 100vh;
  }

  .payment-content {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 20px;
  }

  .payment-header {
      text-align: center;
      margin-bottom: 50px;
  }

  .payment-title {
      font-size: 42px;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 15px;
      letter-spacing: -0.5px;
  }

  .payment-subtitle {
      font-size: 18px;
      color: #7f8c8d;
      font-weight: 500;
  }

  .payment-tabs {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
      background: #fff;
      padding: 20px 30px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .payment-tabs-nav {
      display: flex;
      gap: 15px;
  }

  .payment-tab-btn {
      background: #e9ecef;
      color: #495057;
      border: none;
      padding: 12px 24px;
      border-radius: 25px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .payment-tab-btn:hover {
      background: #0e7b0a;
      color: #fff;
      transform: translateY(-2px);
  }

  .payment-tab-btn.active {
      background: #0e7b0a;
      color: #fff;
      box-shadow: 0 4px 15px rgba(14, 123, 10, 0.3);
  }

  .payment-actions {
      display: flex;
      align-items: center;
  }

  .balance-check-btn {
      background: #0e7b0a;
      color: #fff;
      border: none;
      padding: 15px 30px;
      border-radius: 25px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 4px 15px rgba(14, 123, 10, 0.3);
      text-decoration: none;
  }

  .balance-check-btn:hover {
      background: #28a745;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(14, 123, 10, 0.4);
      text-decoration: none;
      color: #fff;
  }

  .payment-info {
      background: #fff;
      padding: 25px 30px;
      border-radius: 12px;
      margin-bottom: 40px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .info-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 15px;
      color: #dc3545;
      font-size: 16px;
      font-weight: 500;
  }

  .info-item:last-child {
      margin-bottom: 0;
  }

  .info-item i {
      font-size: 18px;
      margin-top: 2px;
      flex-shrink: 0;
  }

  .info-content {
      display: none;
  }

  .info-content.show {
      display: block;
  }

  /* Bank tab specific styles */
  .bank-instructions {
      margin-bottom: 25px;
  }

  .bank-instructions p {
      margin-bottom: 15px;
      line-height: 1.6;
      color: #444;
  }

  .bank-details {
      background: #f8f9fa;
      padding: 25px;
      border-radius: 8px;
      margin-bottom: 25px;
      border-left: 4px solid #0e7b0a;
  }

  .bank-detail-item {
      margin-bottom: 12px;
      font-size: 16px;
      line-height: 1.5;
  }

  .bank-detail-item:last-child {
      margin-bottom: 0;
  }

  .bank-detail-item strong {
      color: #2c3e50;
      font-weight: 600;
  }

  .bank-warning {
      text-align: center;
      margin: 25px 0;
      font-size: 18px;
  }

  .bank-processing {
      margin-bottom: 25px;
  }

  .bank-processing p {
      margin-bottom: 15px;
      line-height: 1.6;
      color: #444;
  }

  .bank-ps {
      background: #fff3cd;
      padding: 20px;
      border-radius: 8px;
      border-left: 4px solid #ffc107;
  }

  .bank-ps p {
      margin: 0;
      color: #856404;
      font-size: 16px;
  }

  /* ===== Product Card ===== */
  .product-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
  }

  .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  }

  .product-card__image {
      position: relative;
      overflow: hidden;
      height: 200px;
  }

  .product-image-link {
      display: block;
      width: 100%;
      height: 100%;
      position: relative;
  }

  .product-image-link img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
  }

  .product-card:hover .product-image-link img {
      transform: scale(1.05);
  }

  .product-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: #0e7b0a;
      color: #fff;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .product-card__content {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
  }

  .product-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
      padding: 10px 0;
      border-top: 1px solid #f0f0f0;
      border-bottom: 1px solid #f0f0f0;
  }

  .product-rating {
      display: flex;
      align-items: center;
      gap: 6px;
  }

  .product-rating i {
      color: #ffc107;
      font-size: 14px;
  }

  .rating-text {
      font-size: 12px;
      color: #666;
      font-weight: 500;
  }

  .product-date {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: #999;
  }

  .product-date i {
      color: #0e7b0a;
      font-size: 12px;
  }

  .product-title {
      margin: 0 0 15px 0;
      font-size: 18px;
      font-weight: 600;
      line-height: 1.3;
  }

  .product-title a {
      color: #2c3e50;
      text-decoration: none;
      transition: color 0.3s ease;
  }

  .product-title a:hover {
      color: #0e7b0a;
  }

  .product-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 15px;
      gap: 15px;
  }

  .product-header .product-title {
      margin: 0;
      flex: 1;
  }

  .product-header .product-price {
      display: flex;
      align-items: baseline;
      gap: 5px;
      flex-shrink: 0;
  }

  .product-header .price-current {
      font-size: 20px;
      font-weight: 700;
      color: #0e7b0a;
  }

  .product-header .price-currency {
      font-size: 14px;
      font-weight: 500;
      color: #666;
  }


  .price-current {
      font-size: 24px;
      font-weight: 700;
      color: #0e7b0a;
  }

  .price-currency {
      font-size: 16px;
      font-weight: 500;
      color: #666;
  }

  .product-description {
      color: #666;
      font-size: 14px;
      line-height: 1.5;
      margin-bottom: 20px;
      flex: 1;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
  }

  .product-features {
      display: flex;
      justify-content: flex-end;
      margin-bottom: 20px;
  }

  .product-price {
      display: flex;
      align-items: baseline;
      gap: 5px;
  }

  .product-actions {
      display: flex;
      gap: 10px;
      align-items: center;
  }

  .product-actions .btn {
      flex: 1;
      justify-content: center;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 20px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .product-actions .btn--primary {
      background: #0e7b0a;
      color: #fff;
  }

  .product-actions .btn--primary:hover {
      background: #28a745;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(14, 123, 10, 0.3);
  }


  .payment-methods {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      margin-bottom: 40px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .payment-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
  }

  .payment-logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      padding: 20px;
      border-radius: 12px;
      transition: all 0.3s ease;
      min-width: 120px;
  }

  .payment-logo:hover {
      transform: translateY(-5px);
  }

  .payment-logo i {
      font-size: 48px;
  }

  .payment-logo span {
      font-size: 16px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .payment-logo.visa i {
      color: #1a1f71;
  }

  .payment-logo.visa span {
      color: #1a1f71;
  }

  .payment-logo.mastercard i {
      color: #eb001b;
  }

  .payment-logo.mastercard span {
      color: #eb001b;
  }

  .payment-logo.city24 i {
      color: #0e7b0a;
  }

  .payment-logo.city24 span {
      color: #0e7b0a;
  }

  .payment-tabs-content {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      overflow: hidden;
  }

  .payment-tab-panel {
      display: none;
      padding: 40px;
  }

  .payment-tab-panel.active {
      display: block;
  }

  .tab-content h3 {
      font-size: 28px;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 15px;
  }

  .tab-content p {
      font-size: 16px;
      color: #7f8c8d;
      margin-bottom: 30px;
  }

  .payment-form {
      max-width: 400px;
  }

  .form-group {
      margin-bottom: 25px;
  }

  .form-group label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: #2c3e50;
      margin-bottom: 8px;
  }

  .form-group input {
      width: 100%;
      padding: 15px 20px;
      border: 2px solid #e9ecef;
      border-radius: 8px;
      font-size: 16px;
      transition: all 0.3s ease;
  }

  .form-group input:focus {
      outline: none;
      border-color: #0e7b0a;
      box-shadow: 0 0 0 3px rgba(14, 123, 10, 0.1);
  }

  .pay-btn {
      background: #0e7b0a;
      color: #fff;
      border: none;
      padding: 15px 40px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
      width: 100%;
      justify-content: center;
  }

  .pay-btn:hover {
      background: #28a745;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(14, 123, 10, 0.3);
  }

  .terminals-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }

  .terminal-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 20px;
      background: #f8f9fa;
      border-radius: 8px;
      transition: all 0.3s ease;
  }

  .terminal-item:hover {
      background: #e9ecef;
      transform: translateX(5px);
  }

  .terminal-item i {
      font-size: 24px;
      color: #0e7b0a;
  }

  .terminal-info h4 {
      font-size: 18px;
      font-weight: 600;
      color: #2c3e50;
      margin-bottom: 5px;
  }

  .terminal-info p {
      color: #7f8c8d;
      margin: 0;
  }

  .bank-info {
      background: #f8f9fa;
      padding: 30px;
      border-radius: 8px;
  }

  .bank-details h4 {
      font-size: 20px;
      font-weight: 600;
      color: #2c3e50;
      margin-bottom: 20px;
  }

  .bank-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      border-bottom: 1px solid #e9ecef;
  }

  .bank-item:last-child {
      border-bottom: none;
  }

  .bank-item .label {
      font-weight: 600;
      color: #2c3e50;
  }

  .bank-item .value {
      color: #7f8c8d;
      font-family: monospace;
  }

  /* Online Cards */
  .online-cards {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      margin-bottom: 40px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      display: none;
  }

  .online-cards.show {
      display: block;
  }

  .cards-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
  }

  .card-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      border-radius: 12px;
      background: #f8f9fa;
      transition: all 0.3s ease;
      min-width: 150px;
      min-height: 100px;
      text-decoration: none;
      color: inherit;
  }

  .card-logo:hover {
      background: #e9ecef;
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      text-decoration: none;
      color: inherit;
  }

  .card-logo img {
      max-width: 100%;
      max-height: 80px;
      object-fit: contain;
      display: block;
  }

  /* Terminals Cards */
  .terminals-cards {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      margin-bottom: 40px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      display: none;
  }

  .terminals-cards.show {
      display: block;
  }

  .grid-items:has(>.product_item) {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));

      margin: 0 auto;
  }

  /* ===== Product Detail ===== */
  .product-detail {
      padding: 40px 0;
      background: #f8f9fa;
      min-height: 100vh;
  }

  .product-detail__content {
      max-width: 1200px;
      margin: 0 auto;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
      overflow: hidden;
  }

  .product-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 30px 40px;
      border-bottom: 1px solid #e9ecef;
      background: #fff;
  }

  .product-meta {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
  }

  .product-category {
      background: #0e7b0a;
      color: #fff;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .product-rating {
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .rating-text {
      font-size: 16px;
      color: #666;
      font-weight: 500;
  }

  .product-date {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: #999;
  }

  .product-actions {
      display: flex;
      gap: 12px;
      margin-left: auto;
  }

  .product-actions .btn {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
  }

  .product-actions .btn--secondary {
      background: #6c757d;
      color: #fff;
  }

  .product-actions .btn--secondary:hover {
      background: #5a6268;
      transform: translateY(-2px);
  }

  .product-actions .btn--outline {
      background: transparent;
      color: #666;
      border: 2px solid #e9ecef;
  }

  .product-actions .btn--outline:hover {
      background: #0e7b0a;
      border-color: #0e7b0a;
      color: #fff;
      transform: translateY(-2px);
  }

  .product-title {
      font-size: 32px;
      font-weight: 700;
      color: #2c3e50;
      margin: 0 0 30px 0;
      padding: 0 40px;
      line-height: 1.2;
  }

  .product-main {
      display: grid;
      grid-template-columns: 0.40fr 0.60fr;
      gap: 40px;
      padding: 0 40px 40px;
      align-items: start;
  }

  .product-images {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }

  .product-main-image {
      width: 100%;
      border-radius: 12px;
      overflow: hidden;
  }

  .product-main-image img {
      width: 100%;
      height: auto;
      display: block;
  }

  .product-gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
  }

  .product-gallery img {
      width: 100%;
      height: 80px;
      object-fit: cover;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      border: 2px solid transparent;
  }

  .product-gallery img:hover {
      transform: scale(1.05);
  }

  .product-gallery img.active {
      border: 3px solid #0e7b0a;
      transform: scale(1.05);
  }

  .product-details {
      display: flex;
      flex-direction: column;
      gap: 30px;
  }

  .product-price-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 30px;
      background: #f8f9fa;
      border-radius: 12px;
  }

  .product-price {
      display: flex;
      align-items: baseline;
      gap: 8px;
  }

  .product-availability {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #28a745;
      font-weight: 600;
      font-size: 16px;
  }

  .product-availability i {
      font-size: 20px;
  }

  .product-availability.out-of-stock {
      color: #dc3545;
  }

  .product-availability.out-of-stock i {
      color: #dc3545;
  }

  .product-description {
      padding: 0 40px 40px;
  }

  .product-description h3 {
      font-size: 24px;
      font-weight: 600;
      color: #2c3e50;
      margin: 0 0 20px 0;
  }

  .description-content {
      font-size: 16px;
      line-height: 1.6;
      color: #666;
  }

  .product-specifications h3 {
      font-size: 24px;
      font-weight: 600;
      color: #2c3e50;
      margin: 0 0 20px 0;
  }

  .specs-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
  }

  .spec-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 15px;
      font-size: 12px;
      background: #f8f9fa;
      border-radius: 8px;
      border-left: 4px solid #0e7b0a;
  }

  .spec-label {
      font-weight: 600;
      color: #666;
  }

  .spec-value {
      font-weight: 500;
      color: #2c3e50;
  }

  .specs-toggle {
      text-align: center;
      margin-top: 20px;
  }

  .specs-toggle-btn {
      background: #0e7b0a;
      color: white;
      border: none;
      padding: 12px 24px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0 auto;
      transition: all 0.3s ease;
  }

  .specs-toggle-btn:hover {
      background: #0d6e0a;
      transform: translateY(-1px);
  }

  .toggle-icon {
      transition: transform 0.3s ease;
  }

  .specs-toggle-btn.expanded .toggle-icon {
      transform: rotate(180deg);
  }


  /* ===== Contact Page ===== */
  .contact-section {
      padding: 40px 0;
      background: #f8f9fa;
      min-height: 100vh;
  }

  .online-help {
      border: 2px solid #15a010;
      color: #15a010;
      padding: 20px 40px;
      margin-bottom: 30px;
      border-radius: 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
  }

  .help-title {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 18px;
      font-weight: 600;
  }

  .help-title i {
      font-size: 20px;
  }

  .help-downloads {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
  }

  .download-link {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #15a010;
      text-decoration: none;
      padding: 10px 20px;
      background: #15a01014;
      border-radius: 8px;
      transition: all 0.3s ease;
      font-weight: 500;
  }

  .download-link:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
  }

  .contact-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
  }

  .contact-left,
  .contact-right {
      background: #fff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .contact-section-title {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 24px;
      font-weight: 600;
      color: #2c3e50;
      margin: 0 0 25px 0;
  }

  .contact-section-title i {
      color: #0e7b0a;
      font-size: 22px;
  }

  .map-container {
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
  }

  .map-container iframe {
      display: block;
      width: 100%;
      height: 400px;
      border: none;
  }

  .working-hours {
      margin-top: 30px;
  }

  .hours-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      flex-wrap: wrap;
      gap: 15px;
  }

  .hours-title {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 600;
      color: #2c3e50;
      margin: 0;
  }

  .work-status {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      transition: all 0.3s ease;
  }

  .work-status.open {
      background: #d4edda;
      color: #155724;
      border: 1px solid #c3e6cb;
  }

  .work-status.open i {
      color: #28a745;
      animation: pulse 2s infinite;
  }

  .work-status.closed {
      background: #f8d7da;
      color: #721c24;
      border: 1px solid #f5c6cb;
  }

  .work-status.closed i {
      color: #dc3545;
  }

  .work-status.weekend {
      background: #fff3cd;
      color: #856404;
      border: 1px solid #ffeaa7;
  }

  .work-status.weekend i {
      color: #ffc107;
  }

  @keyframes pulse {
      0% {
          opacity: 1;
      }

      50% {
          opacity: 0.5;
      }

      100% {
          opacity: 1;
      }
  }

  .hours-title i {
      color: #0e7b0a;
      font-size: 18px;
  }

  .hours-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
  }

  .hours-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 16px;
      background: #f8f9fa;
      border-radius: 8px;
      border-left: 4px solid #0e7b0a;
  }

  .hours-item.weekend {
      background: #fff5f5;
      border-left-color: #dc3545;
  }

  .day {
      font-weight: 600;
      color: #2c3e50;
  }

  .time {
      color: #666;
      font-weight: 500;
  }

  .street-view {
      margin-bottom: 20px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .street-view img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
  }

  .address-details {
      margin-bottom: 30px;
  }

  .address-item {
      margin-bottom: 10px;
      font-size: 16px;
      color: #2c3e50;
  }

  .address-line {
      margin-bottom: 5px;
      color: #666;
      font-size: 15px;
      line-height: 1.4;
  }

  .contact-info {
      margin-top: 30px;
  }

  .info-title {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 600;
      color: #2c3e50;
      margin: 0 0 20px 0;
  }

  .info-title i {
      color: #0e7b0a;
      font-size: 18px;
  }

  .contact-section .phone-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 25px;
  }

  .contact-section .phone-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      background: #f8f9fa;
      border-radius: 8px;
      text-decoration: none;
      color: #2c3e50;
      transition: all 0.3s ease;
      border-left: 4px solid #0e7b0a;
  }

  .contact-section .phone-item:hover {
      background: #0e7b0a;
      color: #fff;
      transform: translateX(5px);
  }

  .contact-section .phone-item i {
      color: #0e7b0a;
      font-size: 16px;
  }

  .contact-section .phone-item:hover i {
      color: #fff;
  }

  .email-section {
      margin-bottom: 25px;
  }

  .email-title {
      font-size: 16px;
      font-weight: 600;
      color: #2c3e50;
      margin: 0 0 10px 0;
  }

  .email-link {
      color: #0e7b0a;
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      transition: color 0.3s ease;
  }

  .email-link:hover {
      color: #28a745;
      text-decoration: underline;
  }

  .info-notice {
      background: #fff5f5;
      padding: 20px;
      border-radius: 8px;
      border-left: 4px solid #dc3545;
  }

  .notice-title {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      font-weight: 600;
      color: #dc3545;
      margin: 0 0 15px 0;
  }

  .notice-title i {
      font-size: 18px;
  }

  .notice-text {
      color: #666;
      line-height: 1.6;
      margin: 0;
      font-size: 14px;
  }

  /* ===== Legal Information ===== */
  .legal-info {
      margin-top: 40px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
  }

  .legal-title {
      text-align: center;
      font-size: 28px;
      font-weight: 700;
      color: #2c3e50;
      margin: 0 0 40px 0;
  }

  .legal-companies {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
  }

  .company-block {
      background: #f8f9fa;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .company-name {
      font-size: 20px;
      font-weight: 700;
      color: #2c3e50;
      margin: 0 0 25px 0;
      text-align: center;
      padding-bottom: 15px;
      border-bottom: 2px solid #0e7b0a;
  }

  .company-details {
      display: flex;
      flex-direction: column;
      gap: 15px;
  }

  .detail-item {
      display: flex;
      flex-direction: column;
      gap: 5px;
  }

  .detail-item strong {
      color: #2c3e50;
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 5px;
  }

  .detail-item .label {
      color: #2c3e50;
      font-weight: 500;
      font-size: 14px;
  }

  .detail-item .value {
      color: #666;
      font-size: 14px;
      margin-left: 10px;
  }

  .address-text {
      color: #666;
      font-size: 14px;
      line-height: 1.4;
      margin-top: 5px;
  }

  .phones {
      display: flex;
      flex-direction: column;
      gap: 3px;
      margin-left: 10px;
  }

  .phones span {
      color: #666;
      font-size: 14px;
  }

  /* ===== New Item Card ===== */
  .item-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
  }

  .item-card:hover {
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  }

  .item-card__image {
      position: relative;
      overflow: hidden;
      height: 200px;
  }

  .item-image-link {
      display: block;
      width: 100%;
      height: 100%;
      position: relative;
  }

  .item-image-link img {
      width: 100%;
      height: 100%;
      transition: transform 0.3s ease;
  }


  .item-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: #0e7b0a;
      color: #fff;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .item-card__content {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
  }

  .item-header {
      margin-bottom: 15px;
  }

  .item-title {
      margin: 0;
      font-size: 18px;
      font-weight: 600;
      line-height: 1.3;
  }

  .item-title a {
      color: #2c3e50;
      text-decoration: none;
      transition: color 0.3s ease;
  }

  .item-title a:hover {
      color: #0e7b0a;
  }

  .item-price-section {
      margin-bottom: 20px;
      text-align: center;
      padding: 15px 0;
      background: #f8f9fa;
      border-radius: 8px;
  }

  .item-price {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 5px;
  }

  .item-price-amount {
      font-size: 24px;
      font-weight: 700;
      color: #0e7b0a;
  }

  .item-price-currency {
      font-size: 16px;
      font-weight: 500;
      color: #666;
  }

  .item-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
      padding: 10px 0;
      border-top: 1px solid #f0f0f0;
      border-bottom: 1px solid #f0f0f0;
  }

  .item-rating {
      display: flex;
      align-items: center;
      gap: 6px;
  }

  .item-rating i {
      color: #ffc107;
      font-size: 14px;
  }

  .item-rating-text {
      font-size: 12px;
      color: #666;
      font-weight: 500;
  }

  .item-date {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: #999;
  }

  .item-date i {
      color: #0e7b0a;
      font-size: 12px;
  }

  .item-description {
      color: #666;
      font-size: 14px;
      line-height: 1.5;
      margin-bottom: 20px;
      flex: 1;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
  }

  .item-actions {
      display: flex;
      gap: 10px;
      align-items: center;
  }

  .item-btn {
      flex: 1;
      justify-content: center;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 20px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .item-btn--primary {
      background: #0e7b0a;
      color: #fff;
  }

  .item-btn--primary:hover {
      background: #28a745;
      transform: translateY(-2px);
  }

  /* TV Channels */
  .tv-channels {
      padding: 16px;
      background: #f8f9fa;
  }

  .section-header {
      text-align: center;
      margin-bottom: 50px;
  }

  .section-description {
      font-size: 1.1rem;
      color: #666;
      margin-top: 15px;
  }

  .channels-categories {
      display: flex;
      gap: 15px;
      margin-bottom: 50px;
      flex-wrap: wrap;
      justify-content: center;
  }

  .category-btn {
      background: white;
      border: 2px solid #e0e0e0;
      padding: 12px 24px;
      border-radius: 25px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 500;
      color: #666;
      font-size: 14px;
  }

  .category-btn:hover,
  .category-btn.active {
      background: #15a010;
      color: white;
      border-color: #15a010;
  }

  .coming-soon {
      text-align: center;
      padding: 60px 20px;
      color: #666;
  }

  .coming-soon h2 {
      font-size: 2rem;
      margin-bottom: 15px;
      color: #333;
      font-weight: 600;
  }

  .coming-soon p {
      font-size: 1.1rem;
      margin-bottom: 40px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
  }

  .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 50px;
  }

  .feature-card {
      background: white;
      padding: 30px 25px;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .feature-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 20px;
      background: #15a010;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 24px;
  }

  .feature-card h3 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 10px;
      color: #333;
  }

  .feature-card p {
      color: #666;
      line-height: 1.5;
  }

  /* Channels Grid Styles */
  .channels-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 20px;
      margin-bottom: 50px;
  }

  .channel-card {
      background: white;
      border-radius: 15px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
  }

  .channel-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .channel-logo {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin: 0 auto 15px;
      border-radius: 10px;
      border: 1px solid #f0f0f0;
      padding: 5px;
      background: #fafafa;
  }

  .channel-name {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 8px;
      color: #333;
      line-height: 1.3;
  }

  .channel-category {
      background: #f8f9fa;
      color: #666;
      padding: 4px 12px;
      border-radius: 15px;
      font-size: 0.85rem;
      display: inline-block;
  }

  .channels-stats {
      background: white;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      margin-top: 40px;
  }

  .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
  }

  .stat-item {
      text-align: center;
  }

  .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: #15a010;
      margin-bottom: 8px;
  }

  .stat-label {
      font-size: 1rem;
      color: #666;
      font-weight: 500;
  }

  /* Простий список логотипів каналів */
  .channels-grid-simple {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
      gap: 15px;
      padding: 20px 0;
  }

  .channel-logo-simple {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      border-radius: 12px;
      padding: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      height: 80px;
  }

  .channel-logo-simple:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .channel-logo-simple .logo-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 8px;
  }

  /* TV Tariff Cards */
  .tv-tariff-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin: 40px 0;
  }

  .tv-tariff-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      position: relative;
  }

  .tv-tariff-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .tv-tariff-header {
      padding: 17px 25px 17px;
      text-align: center;
      position: relative;
  }

  .tv-tariff-basic .tv-tariff-header {
      background: linear-gradient(135deg, #61c528, #2e7d32);
  }

  .tv-tariff-premium .tv-tariff-header {
      background: linear-gradient(135deg, #61c528, #2e7d32);
  }

  .tv-tariff-vip .tv-tariff-header {
      background: linear-gradient(135deg, #61c528, #2e7d32);
  }

  .tv-tariff-title {
      color: #fff;
      font-size: 1.2rem;
      font-weight: 500;
      margin: 0;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .tv-tariff-content {
      padding: 30px;
  }

  .tv-tariff-channels {
      text-align: center;
      margin-bottom: 25px;
  }

  .tv-channel-count {
      display: block;
      font-size: 3rem;
      font-weight: 800;
      color: #15a010;
      line-height: 1;
      margin-bottom: 5px;
  }

  .tv-channel-text {
      color: #666;
      font-size: 1rem;
      font-weight: 500;
  }

  .tv-tariff-features {
      margin-bottom: 25px;
  }

  .tv-feature {
      display: flex;
      align-items: center;
      margin-bottom: 12px;
      color: #333;
      font-weight: 500;
  }

  .tv-feature i {
      color: #15a010;
      margin-right: 12px;
      font-size: 1.1rem;
      width: 20px;
  }

  .tv-tariff-price {
      text-align: center;
      font-size: 1.5rem;
      font-weight: 800;
      color: #15a010;
      margin-bottom: 25px;
  }

  .tv-tariff-btn {
      width: 100%;
      padding: 15px 20px;
      background: transparent;
      border: 2px solid #15a010;
      color: #15a010;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .tv-tariff-btn:hover {
      background: #15a010;
      color: #fff;
      transform: translateY(-2px);
  }

  /* TV Channel List Button */
  .tv-channel-list-btn {
      display: inline-block;
      margin-top: 8px;
      padding: 6px 12px;
      background: #f8f9fa;
      color: #0e7b0a;
      border: 1px solid #0e7b0a;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .tv-channel-list-btn:hover {
      background: #0e7b0a;
      color: #fff;
  }

  /* TV Channel List Container */
  .tv-channel-list-container {
      margin-top: 40px;
      margin-bottom: 40px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
  }

  .tv-channel-list-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 25px;
      background: linear-gradient(135deg, #61c528, #2e7d32);
      color: #fff;
  }

  .tv-channel-list-header h3 {
      margin: 0;
      font-size: 20px;
      font-weight: 600;
  }

  .tv-channel-list-close {
      background: none;
      border: none;
      color: #fff;
      font-size: 24px;
      cursor: pointer;
      padding: 0;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: background 0.3s ease;
  }

  .tv-channel-list-close:hover {
      background: rgba(255, 255, 255, 0.2);
  }

  .tv-channel-list-content {
      padding: 25px;
  }

  /* TV Channel Availability */
  .channel-unavailable-basic {
      filter: grayscale(100%) brightness(0.4) !important;
      opacity: 0.6 !important;
      pointer-events: auto !important;
      position: relative !important;
      cursor: help !important;
  }

  .channel-unavailable-basic::after {
      content: 'В пакеті UA:Ефір';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(0, 0, 0, 0.9);
      color: #ffffff;
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 10px;
      font-weight: 700;
      white-space: nowrap;
      z-index: 10;
      opacity: 0;
      transition: opacity 0.3s ease;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  }

  .channel-unavailable-basic:hover::after {
      opacity: 1;
  }

  .channel-unavailable-premium {
      filter: grayscale(100%) brightness(0.4);
      opacity: 0.6;
      pointer-events: auto;
      position: relative;
      cursor: help;
  }

  .channel-unavailable-premium::after {
      content: 'В пакеті Премиум';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(0, 0, 0, 0.9);
      color: #ffffff;
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 10px;
      font-weight: 700;
      white-space: nowrap;
      z-index: 10;
      opacity: 0;
      transition: opacity 0.3s ease;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  }

  .channel-unavailable-premium:hover::after {
      opacity: 1;
  }

  .channel-unavailable-vip {
      filter: grayscale(100%) brightness(0.4);
      opacity: 0.6;
      pointer-events: auto;
      position: relative;
      cursor: help;
  }

  .channel-unavailable-vip::after {
      content: 'В пакеті VIP HD';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(0, 0, 0, 0.9);
      color: #ffffff;
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 10px;
      font-weight: 700;
      white-space: nowrap;
      z-index: 10;
      opacity: 0;
      transition: opacity 0.3s ease;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  }

  .channel-unavailable-vip:hover::after {
      opacity: 1;
  }

  /* TV Modal Package Info */
  .tv-modal-package-info {
      background: #f8f9fa;
      padding: 20px;
      border-radius: 10px;
      margin-bottom: 20px;
      border-left: 4px solid #15a010;
  }

  .tv-modal-package-info h3 {
      color: #15a010;
      font-size: 1.3rem;
      font-weight: 700;
      margin: 0 0 15px 0;
  }

  .tv-modal-details {
      display: flex;
      flex-direction: column;
      gap: 8px;
  }

  .tv-modal-channels {
      font-size: 1rem;
      color: #333;
      font-weight: 500;
  }

  .tv-modal-channels span {
      font-weight: 700;
      color: #15a010;
  }

  .tv-modal-price {
      font-size: 1.2rem;
      font-weight: 700;
      color: #15a010;
  }

  /* Tariff Cards - Updated Design */
  .tariffs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin: 40px 0;
  }

  .tariff-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      position: relative;
  }

  .tariff-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .tariff-card__header {
      padding: 17px 20px 17px;
      text-align: center;
      background: linear-gradient(135deg, #61c528, #2e7d32);
      position: relative;
  }

  .tariff-card__title {
      color: #fff;
      font-size: 1.2rem;
      font-weight: 500;
      margin: 0;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .tariff-card__body {
      padding: 30px;
  }

  .tariff-features {
      margin-bottom: 25px;
  }

  .tariff-feature {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
      color: #333;
      font-weight: 500;
  }

  .tariff-feature__label {
      color: #666;
  }

  .tariff-feature__value {
      font-weight: 600;
      color: #15a010;
  }

  .tariff-price {
      text-align: center;
      font-size: 1.5rem;
      font-weight: 800;
      color: #15a010;
      margin-bottom: 25px;
  }

  .tariff-btn {
      width: 100%;
      padding: 15px 20px;
      background: transparent;
      border: 2px solid #15a010;
      color: #15a010;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
  }

  .tariff-btn:hover {
      background: #15a010;
      color: #fff;
      transform: translateY(-2px);
  }