
    :root {
      --primary: #ef151d;
      --primary-dark: #d80f16;
      --text: #171717;
      --muted: #6b7280;
      --line: #ececec;
      --surface: #ffffff;
      --soft: #fafafa;
      --shadow: 0 12px 36px rgb(0 0 0 / 15%);;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
   
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }
    img { max-width: 100%; display: block; }

    .container {
      /* width: min(1180px, calc(100% - 40px)); */
      margin:0 auto;
      max-width: 1200px;
    }

    
   
    /* Hero */
    .landing-content { background: #fff; }
    .hero-section {
      position: relative;
      /* padding: 26px 0 0; */
      background: #fff;
    }
    .hero-grid {
      /* max-width: 1200px; */
      /* margin: 0 auto; */
      min-height: 500px;
      /* border-radius: 28px; */
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 0px 64px 56px;
      background-image: url(/images/land-hero-back.png);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
      box-shadow: 0 20px 45px rgba(0,0,0,.08);
      direction: rtl;
    }
    .hero-visual { display: none; }
    .hero-copy {
    direction: rtl;
    text-align: right;
    width: min(100%, 480px);
    position: relative;
    z-index: 2;
    margin-left: auto;
    /* margin-left: 0; */
    padding: 8px 0;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      padding: 8px 14px;
      border-radius: 999px;
      background: #fff4f4;
      color: var(--primary);
      font-size: 13px;
      font-weight: 800;
      box-shadow: 0 7px 20px rgba(239,21,29,.07);
    }
    .hero-badge::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 0 5px rgba(239,21,29,.1);
    }
    .hero-title {
      font-size: clamp(34px, 3.8vw, 56px);
      line-height: 1.35;
      letter-spacing: -1.6px;
      font-weight: 900;
      margin-bottom: 16px;
      color: #111318;
    }
    .hero-title strong { color: var(--primary); }
    .hero-description {
      color: #5f6670;
      font-size: 15px;
      line-height: 2.1;
      max-width: 470px;
      margin-bottom: 26px;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
    .hero-btn {
      min-height: 55px;
      padding: 0 24px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 850;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .hero-btn svg { width: 19px; height: 19px; }
    .hero-btn.secondary {
    background: linear-gradient(135deg, #3a3a3a, #111);
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .3);
}
    .hero-btn.primary:secondary {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .35);
}


    /*.hero-btn.secondary {*/
    /*  background: #fff;*/
    /*  color: #222;*/
    /*  border: 1.5px solid #bfc2c7;*/
    /*}*/
    /*.hero-btn.secondary:hover { border-color: #333; transform: translateY(-2px); }*/

    /* Benefits bar */
    .benefits-wrap {
      position: relative;
      margin-top: -52px;
      padding: 0 0 34px;
      z-index: 5;
    }
    .benefits-bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: #fff;
      border: 1px solid #ededed;
      border-radius: 18px;
      box-shadow: var(--shadow);
      overflow: hidden;
      max-width:1200px;
      margin:0 auto;
    }
    .benefit-item {
      position: relative;
      min-height: 138px;
      padding: 4px 28px;
      display: flex;
      align-items: center;
      gap: 17px;
    }
    .benefit-item:not(:last-child)::after {
      content: "";
      position: absolute;
      left: 0;
      top: 26px;
      bottom: 26px;
      width: 1px;
      background: #e7e7e7;
    }
    .benefit-icon {
      width: 48px;
      height: 48px;
      flex: 0 0 48px;
      display: grid;
      place-items: center;
      color: var(--primary);
    }
    .benefit-icon svg { width: 38px; height: 38px; }
    .benefit-text h3 { font-size: 16px; margin-bottom: 9px; font-weight: 900; }
    .benefit-text p { color: #7a7f86; font-size: 12px; line-height: 1.9; }

    .placeholder-next-section { min-height: 160px; background: #fff; }

    /* Category shortcuts directly below hero */
    .category-shortcuts {
      padding: 0 0 34px;
      background: #fff;
    }
    .category-shortcuts-bar {
      display: grid;
      grid-template-columns: repeat(8, minmax(0, 1fr));
      background: #fff;
      border: 1px solid #ececec;
      border-radius: 18px;
      box-shadow: 0 10px 30px rgba(0,0,0,.045);
      overflow: hidden;
    }
    .category-shortcut {
      position: relative;
      min-height: 118px;
      padding: 18px 10px 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 11px;
      text-align: center;
      color: #232323;
      transition: background .2s ease, color .2s ease, transform .2s ease;
    }
    .category-shortcut:not(:last-child)::after {
      content: "";
      position: absolute;
      left: 0;
      top: 22px;
      bottom: 22px;
      width: 1px;
      background: #eeeeee;
    }
    .category-shortcut:hover {
      background: #fff8f8;
      color: var(--primary);
      transform: translateY(-2px);
    }
    .category-shortcut-icon {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      color: var(--primary);
    }
    .category-shortcut-icon svg {
      width: 34px;
      height: 34px;
      stroke-width: 1.8;
    }
    .category-shortcut span {
      font-size: 12px;
      font-weight: 800;
      line-height: 1.55;
      white-space: nowrap;
    }

    /* Popular categories */
    .popular-categories {
      padding: 14px 0 56px;
      background: #fff;
    }
    .section-title {
      text-align: center;
      font-size: 30px;
      font-weight: 900;
      color: #171717;
      margin: 30px 0px;
      /*letter-spacing: -.8px;*/
      line-height:1.6;
    }
    .categories-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }
    .category-card {
      background: hsl(60deg 3% 95.78%);
      border: 1px solid #ececec;
      border-radius: 18px;
      box-shadow: 0 8px 22px rgb(0 0 0 / 10%);
      padding: 18px 18px 20px;
      transition: transform .2s ease, box-shadow .2s ease;
      text-align: center;
    }
    .category-card:hover {
      /*transform: translateY(-4px);*/
      box-shadow: 0 14px 30px rgba(0,0,0,.08);
    }
   
    .category-image-wrap {
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
      overflow: hidden;
      border-radius: 12px;
      /* background: #fff; */
    }
    .category-image-wrap img {
      max-height: 100%;
      width: auto;
      margin-inline: auto;
      object-fit: contain;
         transition:ease .5s;
    }
     .category-card:hover img{
        transform:scale(1.1);
        transition:ease .5s;
    }
    .category-card h3 {
      font-size: 18px;
      font-weight: 900;
      color: #161616;
      margin-bottom: 8px;
    }
    .category-card p {
      font-size: 13px;
      line-height: 1.9;
      color: #666b73;
      min-height: 48px;
    }
    .category-link {
      width: 30px;
      height: 30px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background:#333;
      color: #fff;
      margin-top: 14px;
      transition: background .2s ease, transform .2s ease;
    }
    .category-link:hover {
      background: var(--primary-dark);
      transform: scale(1.06);
    }
    .category-link svg { width: 16px; height: 16px; }




    /* Cooperation section */
    .cooperation-section {
      padding: 0 0 58px;
      background: #fff;
    }
    .cooperation-card {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 38px;
      align-items: center;
      padding: 20px;
      border: 1px solid #e9e9e9;
      border-radius: 18px;
      background: #fff;
      box-shadow: 0 10px 28px rgba(0,0,0,.055);
      direction: ltr;
    }
    .cooperation-visual {
      direction: rtl;
      min-height: 290px;
      border-radius: 14px;
      overflow: hidden;
      background: #111;
    }
    .cooperation-visual img {
      width: 100%;
      height: 100%;
      min-height: 290px;
      object-fit: cover;
    }
    .cooperation-content {
      direction: rtl;
      text-align: right;
      padding: 10px 16px 10px 6px;
    }
    .cooperation-title {
      font-size: clamp(28px, 3vw, 40px);
      line-height: 1.35;
      font-weight: 900;
      color: #171717;
      margin-bottom: 14px;
      letter-spacing: -.8px;
    }
    .cooperation-title strong { color: var(--primary); }
    .cooperation-description {
      font-size: 14px;
      line-height: 2;
      color: #676c74;
      margin-bottom: 16px;
    }
    .cooperation-list {
      list-style: none;
      display: grid;
      gap: 10px;
      margin-bottom: 20px;
    }
    .cooperation-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #34373c;
      font-size: 14px;
      font-weight: 700;
    }
    .cooperation-check {
      width: 19px;
      height: 19px;
      flex: 0 0 19px;
      display: grid;
      place-items: center;
      border: 2px solid var(--primary);
      color: var(--primary);
      border-radius: 50%;
      font-size: 11px;
      line-height: 1;
      font-weight: 900;
    }
    .cooperation-more {
      min-height: 48px;
      padding: 0 20px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1.5px solid #d7d9dd;
      border-radius: 11px;
      background: #fff;
      color: #26282c;
      font-size: 13px;
      font-weight: 800;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      margin-top:20px;
    }
    .cooperation-more:hover {
      transform: translateY(-2px);
      border-color: #a9adb3;
      box-shadow: 0 8px 18px rgba(0,0,0,.06);
    }
    .cooperation-more svg { width: 18px; height: 18px; }

    @media (max-width: 1050px) {
      .main-nav { gap: 25px; }
      .hero-grid {
        min-height: 460px;
        padding: 44px 40px;
        /*background-position: left center;*/
      }
      .benefit-item { padding: 20px 16px; gap: 12px; }
      .benefit-icon { width: 42px; height: 42px; flex-basis: 42px; }
    }

    @media (max-width: 980px) {
      .header-inner { 
        grid-template-columns: auto 1fr auto; 
        min-height: 82px; }
      .brand { font-size: 29px; }
      .main-nav {
        position: absolute;
        top: 82px;
        right: 20px;
        left: 20px;
        padding: 12px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 14px;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        display: none;
      }
      .site-header.menu-open .main-nav { display: flex; }
      .nav-link { min-height: 48px; padding: 0 14px; justify-content: flex-start; }
      .nav-link::after { display: none; }
      .price-list-btn { min-height: 46px; padding: 0 14px; font-size: 12px; }
      .mobile-menu-button { display: inline-flex; }
      .hero-grid {
        min-height: 420px;
        padding: 36px 28px 10px;
        justify-content: flex-end;
        /*background-image: inherit;*/
      }
      .hero-copy { text-align: right; width: min(100%, 430px); }
      .hero-description { margin-inline: 0; }
      .hero-actions { justify-content: flex-start; }
      .benefits-wrap { margin-top: -42px; }
      .benefits-bar { grid-template-columns: repeat(2, 1fr); }
      .benefit-item:nth-child(2)::after { display: none; }
      .benefit-item { border: 1px solid #ededed; 
      flex-direction: column;}
      .categories-grid { grid-template-columns: repeat(2, 1fr); }
      .cooperation-card { grid-template-columns: 1fr; direction: rtl; gap: 20px; }
      .cooperation-content { padding: 8px; }
      .cooperation-visual { min-height: 150px; height:150px;}
      .cooperation-visual img { min-height: 150px; height:150px; }
    }

    @media (max-width: 620px) {
      .container { width: min(100% - 24px, 1180px); }
      .header-inner { grid-template-columns: 1fr auto; gap: 12px; }
      .brand { font-size: 25px; }
      .price-list-btn { display: none; }
      /* .hero-section { padding-top: 18px; } */
      
      .hero-copy { width: 100%; }
      .hero-title { font-size: 30px; letter-spacing: -1px; }
      .hero-description { font-size: 13px; line-height: 2; max-width:300px; }
      .hero-btn { width: 100%; }
      .benefits-wrap { margin-top: -20px; }
      /* .benefits-bar { grid-template-columns: 1fr; } */
      .benefit-item { min-height: 112px; }
      .benefit-item::after { display: none !important; }
      .benefit-item:not(:last-child) { border-bottom: 1px solid #ededed; }
      .section-title { font-size: 20px; }

      .category-card { padding: 16px 4px 18px; }
      .cooperation-section { padding-bottom: 0px; }
      .cooperation-card { padding: 12px; border-radius: 15px; }
      .cooperation-title { font-size: 27px; }
      .cooperation-description { font-size: 13px; }
      .cooperation-list li { font-size: 13px; align-items: flex-start; }
      .cooperation-more { width: 100%; }
    }
  

    @media (max-width: 1050px) {
      .category-shortcuts-bar { grid-template-columns: repeat(4, 1fr); }
      .category-shortcut:nth-child(4)::after { display: none; }
      .category-shortcut:nth-child(-n+4) { border-bottom: 1px solid #eeeeee; }
    }
    @media (max-width: 620px) {
      .category-shortcuts { padding-bottom: 24px; }
      .category-shortcuts-bar { grid-template-columns: repeat(2, 1fr); }
      .category-shortcut { min-height: 100px; padding: 14px 8px; }
      .category-shortcut:nth-child(even)::after { display: none; }
      .category-shortcut:nth-child(-n+6) { border-bottom: 1px solid #eeeeee; }
      .category-shortcut span { font-size: 11px; white-space: normal; }
    }
.seo-description-box {
  padding: 32px;
    background: #f5f5f4;
    border: 1px solid #eee;
    border-radius: 18px;
    direction: rtl;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .055);
}

.seo-description-box h2 {
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 800;
    color: #222;
}

.seo-description-text {
    position: relative;
    color: #666;
    font-size: 15px;
    line-height: 2;
}

.seo-description-text p {
    margin-bottom: 10px;
}

.seo-description-more {
    display: none;
}

.seo-toggle-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 10px auto 0;
    padding: 5px 12px;
    color: #d61217;
    background: transparent;
    border: 0;
    font-weight: 700;
    cursor: pointer;
}

.seo-toggle-arrow {
    display: inline-block;
    font-size: 19px;
    font-style: normal;
    transition: transform 0.25s;
}

.seo-description-box.expanded .seo-toggle-arrow {
    transform: rotate(180deg);
}

@media (max-width: 576px) {
      .category-image-wrap {
      height: 100px;
      }
      .category-card h3 {
    font-size: 15px;
      }
    .seo-description-box {
        padding: 22px 18px;
    }

    .seo-description-box h2 {
        font-size: 20px;
    }

    .seo-description-text {
        font-size: 14px;
    }
}