    *{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #ffffff;  /* очень тёплый белый фон */
      font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
      color: #1f2a2e;       /* тёмный, близкий к чёрному, но мягкий */
      line-height: 1.5;
    }

    /* основная палитра — оранжевый #f26e14 и его оттенки */
    :root {
      --orange: #ff9028;
      --orange-light: #fee9da;    /* очень светлый для подложек */
      --orange-soft: #fadbc8;      /* для границ, чуть темнее */
      --orange-dark: #d45e14;      /* затемнённый, для теней и ховеров */
      --brown-dark: #3a2e28;       /* для текста, глубокий коричневый */
      --card-bg: #ffffff;
      --shadow: 0 16px 32px -12px rgba(255, 181, 132, 0.377);
    }

    .container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 30px;
    }

    /* --- ХЕДЕР --- */
    header {
      background: rgb(89, 89, 89);
      box-shadow: 0 6px 18px rgba(242, 110, 20, 0.08);
      padding: 16px 0;
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 7px solid var(--orange);
    }

    .header-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .logo-icon {
      
      width: 56px;
      height: 56px;
      border-radius: 18px 6px 18px 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      font-weight: 800;
      color: white;
      box-shadow: 0 8px 0 #e99767;
      transition: all 0.15s;
    }

    .logo-img {
      width: 100%; /* Делает изображение адаптивным */
      max-width: 300px; /* Ограничивает максимальную ширину */
      height: auto; /* Сохраняет пропорции */
    }

    .logo-text h1 {
      font-size: 32px;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: #1f2a2e;
    }

    .logo-text span {
      color: var(--orange);
      font-weight: 600;
      font-size: 16px;
      letter-spacing: 1px;
    }

    nav {
      display: flex;
      gap: 36px;
    }

    nav a {
      text-decoration: none;
      font-weight: 600;
      color: #ffffff;
      font-size: 1.1rem;
      padding-bottom: 5px;
      border-bottom: 2px solid transparent;
      transition: 0.15s;
    }

    nav a:hover {
      border-bottom-color: var(--orange);
      color: var(--orange);
    }

    /* --- СЕКЦИИ --- */
    section {
      padding: 90px 0;
      border-bottom: 1px solid rgba(242, 110, 20, 0.15);
    }

    .section-header {
      margin-bottom: 50px;
    }

    .section-title {
      font-size: 36px;
      font-weight: 400;
      color: #1f2a2e;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .section-title i {
      color: var(--orange);
      font-size: 36px;
      background: var(--orange-light);
      padding: 12px;
      border-radius: 22px 6px 22px 6px;
    }

    .section-sub {
      font-size: 1.2rem;
      color: #5f5853;
      margin-top: 10px;
      max-width: 700px;
    }

    /* --- КАРТОЧКИ / БЛОКИ --- */
    .about-card {
      background: var(--card-bg);
      border-radius: 40px 12px 40px 12px;
      padding: 38px;
      box-shadow: var(--shadow);
      border-left: 10px solid var(--orange);
      font-size: 1.2rem;
      border: 1px solid rgba(242, 110, 20, 0.3);
    }

    .about-card p {
      margin-bottom: 20px;
    }

    /* --- КОНТАКТЫ (двухколоночный) --- */
    .contact-row {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 45px;
      background: white;
      border-radius: 56px 16px 56px 16px;
      padding: 48px;
      box-shadow: var(--shadow);
      border: 1px solid var(--orange-soft);
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 24px;
      font-size: 1.2rem;
    }

    .contact-item i {
      width: 56px;
      height: 56px;
      background: var(--orange-light);
      border-radius: 30% 6px 30% 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--orange);
      font-size: 22px;
    }

    .contact-item a {
      color: #1f2a2e;
      text-decoration: none;
      border-bottom: 1px dotted transparent;
    }

    .contact-item a:hover {
      border-bottom-color: var(--orange);
    }

    .map-container {
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 0 0 5px white, 0 0 0 12px var(--orange-light);
      
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
    }

    /* --- ГАРАНТИЯ --- */
    .guarantee-box {
      background: #fef7f0;
      border-radius: 60px 16px 60px 16px;
      padding: 55px 50px;
      border: 2px dashed var(--orange);
      box-shadow: inset 0 2px 12px rgba(242, 110, 20, 0.06);
    }

    .guarantee-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 30px;
      margin: 45px 0 30px;
    }

    .guarantee-item {
      background: white;
      border-radius: 32px 8px 32px 8px;
      padding: 28px 22px;
      border-left: 4px solid var(--orange);
      box-shadow: 0 6px 16px rgba(242, 110, 20, 0.1);
    }

    .guarantee-item i {
      font-size: 38px;
      color: var(--orange);
      margin-bottom: 15px;
    }

    /* --- поставщики: КНОПКА открытия модального окна (имитация отдельной страницы) --- */
    .supplier-section {
      text-align: center;
      background: white;
      border-radius: 70px 20px 70px 20px;
      padding: 70px 40px;
      box-shadow: var(--shadow);
      border: 2px solid var(--orange);
    }

    .supplier-section h2 {
      font-size: 48px;
      font-weight: 800;
      color: var(--orange);
      margin-bottom: 20px;
    }

    .supplier-section p {
      font-size: 1.3rem;
      max-width: 700px;
      margin: 0 auto 40px;
    }

    .open-modal-btn {
      background: var(--orange);
      color: white;
      font-weight: 700;
      font-size: 1.9rem;
      padding: 24px 60px;
      border: none;
      border-radius: 80px 16px 80px 16px;
      box-shadow: 0 12px 0 #b3470a;
      cursor: pointer;
      transition: 0.1s;
      display: inline-flex;
      align-items: center;
      gap: 20px;
    }

    .open-modal-btn i {
      font-size: 2rem;
    }

    .open-modal-btn:hover {
      background: #e0630f;
      transform: translateY(4px);
      box-shadow: 0 8px 0 #b3470a;
    }

    /* --- МОДАЛЬНОЕ ОКНО (отдельная страница для поставщиков) --- */
    .modal {
      display: none;
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(6px);
      align-items: center;
      justify-content: center;
      z-index: 1000;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: white;
      max-width: 600px;
      width: 100%;
      border-radius: 70px 20px 70px 20px;
      padding: 15px 45px;
      box-shadow: 0 40px 60px rgba(242, 110, 20, 0.3);
      border: 2px solid var(--orange);
      position: relative;
    }

    .close-modal {
      position: absolute;
      top: 25px;
      right: 30px;
      font-size: 36px;
      cursor: pointer;
      color: var(--orange);
      transition: 0.1s;
      line-height: 1;
    }

    .close-modal:hover {
      color: var(--orange-dark);
    }

    .modal-title {
      font-size: 38px;
      font-weight: 800;
      color: var(--orange);
      margin-bottom: 25px;
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .form-group {
      margin-bottom: 25px;
    }

    .form-group label {
      font-weight: 600;
      color: #1f2a2e;
      display: block;
      margin-bottom: 8px;
      font-size: 1.1rem;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 18px 24px;
      border: 2px solid #fadbc8;
      border-radius: 40px 8px 40px 8px;
      font-size: 1.1rem;
      background: #fefaf7;
      transition: 0.15s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--orange);
      outline: none;
      box-shadow: 0 0 0 5px rgba(242, 110, 20, 0.2);
    }

    .form-group textarea {
      min-height: 130px;
      resize: vertical;
    }

    .submit-btn {
      background: var(--orange);
      color: white;
      font-weight: 700;
      font-size: 1.8rem;
      padding: 18px 30px;
      border: none;
      border-radius: 60px 12px 60px 12px;
      box-shadow: 0 9px 0 #b3470a;
      cursor: pointer;
      width: 100%;
      transition: 0.1s;
    }

    .submit-btn:hover {
      background: #d85c0e;
      transform: translateY(3px);
      box-shadow: 0 6px 0 #b3470a;
    }

    .about-image {
      flex: 1;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .about-image img {
      width: 100%;
      height: auto;
      display: block;
    }


    /* --- ФУТЕР --- */
    footer {
      background: #1f2a2e;
      color: #dfd4cb;
      padding: 40px 0;
      border-top: 8px solid var(--orange);
    }

    .footer-row {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
    }

    .footer-col a {
      color: #f6b485;
      text-decoration: none;
      display: block;
      margin-top: 8px;
    }

    .footer-col a:hover {
      color: var(--orange);
    }

    @media (max-width: 800px) {
      .header-row { flex-direction: column; gap: 16px; }
      nav { gap: 20px; flex-wrap: wrap; justify-content: center; }
      .contact-row { grid-template-columns: 1fr; }
      .section-title { font-size: 36px; }
    }