:root {
  /* 7suppliers redesign v2 */
  --sup-bg: #f8fafc;
  --sup-text: #0f172a;
  --sup-muted: #64748b;
  --sup-border: #e2e8f0;
  --sup-card: #ffffff;
  --sup-dark: #020617;
  --sup-blue: #2563eb;
  --sup-blue-dark: #1d4ed8;
  --sup-green: #10b981;
  --sup-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.home,
body.sup-body {
  margin: 0;
  background: var(--sup-bg);
  color: var(--sup-text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body.home a,
body.sup-body a {
  color: inherit;
  text-decoration: none;
}

body.home a:hover,
body.sup-body a:hover {
  color: var(--sup-blue);
  text-decoration: none;
}

.sup-container {
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
}

.sup-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--sup-border);
  backdrop-filter: blur(14px);
}

.sup-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sup-logo {
  color: var(--sup-text);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.sup-logo span {
  color: var(--sup-blue);
}

.sup-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #475569;
  font-size: 15px;
  font-weight: 700;
}

.sup-button,
.sup-form button,
.sup-submit,
input.sup-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--sup-blue);
  color: #fff !important;
  padding: 12px 22px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.sup-button:hover,
.sup-form button:hover,
.sup-submit:hover,
input.sup-submit:hover {
  background: var(--sup-blue-dark);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.28);
}

.sup-main {
  min-height: 60vh;
}

.sup-hero {
  position: relative;
  overflow: hidden;
  background: var(--sup-dark);
  color: #fff;
}

.sup-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.85), transparent 34%),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.65), transparent 30%);
  opacity: 0.45;
}

.sup-hero__inner {
  position: relative;
  padding: 84px 0;
}

.sup-hero--compact .sup-hero__inner {
  padding: 58px 0;
}

.sup-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #dbeafe;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  margin-bottom: 20px;
}

.sup-hero h1 {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.sup-hero--compact h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.sup-hero p {
  max-width: 820px;
  margin: 22px 0 0;
  color: #cbd5e1;
  font-size: clamp(18px, 2.2vw, 25px);
}

.sup-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  color: #bfdbfe;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}

.sup-breadcrumbs li:not(:last-child):after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.45);
}

.sup-form {
  display: flex;
  max-width: 800px;
  gap: 8px;
  margin-top: 34px;
  padding: 8px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.sup-form input,
.sup-form textarea,
.sup-input,
.sup-textarea,
.sup-form-control {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--sup-border);
  border-radius: 16px;
  background: #fff;
  color: var(--sup-text);
  padding: 14px 18px;
  font-size: 17px;
  outline: none;
}

.sup-form input {
  border-color: transparent;
}

.sup-form textarea,
.sup-textarea {
  min-height: 150px;
  resize: vertical;
}

.sup-form input:focus,
.sup-form textarea:focus,
.sup-input:focus,
.sup-textarea:focus,
.sup-form-control:focus {
  border-color: var(--sup-blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.sup-tags,
.sup-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.sup-tag,
.sup-badge,
.badges .badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #e2e8f0;
  color: var(--sup-text);
  padding: 9px 15px;
  font-size: 14px;
  font-weight: 800;
}

.sup-hero .sup-tag {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.sup-section {
  padding: 56px 0;
}

.sup-section--tight {
  padding: 34px 0;
}

.sup-section-title {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.sup-muted {
  color: var(--sup-muted);
}

.sup-grid {
  display: grid;
  gap: 18px;
}

.sup-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sup-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sup-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sup-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 34px;
  align-items: start;
}

.sup-card,
.sup-panel,
.contacts,
.card {
  border: 1px solid var(--sup-border) !important;
  border-radius: 20px !important;
  background: var(--sup-card) !important;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06) !important;
  padding: 24px !important;
}

.sup-card:hover {
  box-shadow: var(--sup-shadow) !important;
}

.sup-card h2,
.sup-card h3,
.sup-card h4,
.sup-panel h2,
.sup-panel h3,
.contacts h4 {
  margin-top: 0;
  color: var(--sup-text);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.sup-card p,
.sup-panel p {
  color: var(--sup-muted);
}

.sup-stat {
  min-height: 132px;
}

.sup-stat__number {
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.sup-stat__label {
  margin-top: 10px;
  color: var(--sup-muted);
}

.sup-summary-grid {
  margin-bottom: 0;
}

.sup-sidebar {
  position: sticky;
  top: 96px;
}

.sup-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--sup-border);
  border-radius: 18px;
  background: #fff;
}

.sup-table,
.styled-table,
.table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  color: var(--sup-text);
  font-size: 15px;
}

.sup-table th,
.sup-table td,
.styled-table th,
.styled-table td,
.table th,
.table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--sup-border);
  vertical-align: top;
}

.sup-table th,
.styled-table th,
.table th {
  background: #eff6ff;
  color: #1e3a8a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.sup-table tr:last-child td,
.styled-table tr:last-child td,
.table tr:last-child td {
  border-bottom: 0;
}

.sup-suppliers-table th:nth-child(1),
.sup-suppliers-table td:nth-child(1) {
  width: 24%;
}

.sup-suppliers-table th:nth-child(2),
.sup-suppliers-table td:nth-child(2) {
  width: 16%;
}

.sup-suppliers-table th:nth-child(4),
.sup-suppliers-table td:nth-child(4) {
  width: 150px;
}

.sup-product-excerpt {
  color: var(--sup-text);
  line-height: 1.55;
}

.sup-product-details {
  margin-top: 10px;
}

.sup-product-details summary,
.sup-faq-list summary {
  color: var(--sup-blue);
  font-weight: 900;
  cursor: pointer;
}

.sup-product-details p,
.sup-faq-list p {
  margin: 10px 0 0;
}

.sup-button--small {
  min-height: 38px;
  padding: 9px 16px;
  font-size: 14px;
  white-space: nowrap;
}

.sup-table-cta-row td {
  background: #f8fafc;
}

.sup-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.sup-inline-cta p {
  margin: 6px 0 0;
}

.sup-inline-cta--standalone {
  background: #f8fafc !important;
}

.sup-country-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.sup-country-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--sup-border);
  border-radius: 16px;
  background: #f8fafc;
  padding: 13px 15px;
  color: var(--sup-text) !important;
  font-weight: 800;
}

.sup-country-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sup-country-card strong {
  color: var(--sup-blue);
  font-size: 20px;
}

.sup-faq-list {
  display: grid;
  gap: 12px;
}

.sup-faq-list details {
  border: 1px solid var(--sup-border);
  border-radius: 16px;
  background: #f8fafc;
  padding: 14px 16px;
}

.sup-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sup-list li,
.list-group-item {
  border: 1px solid var(--sup-border) !important;
  border-radius: 14px !important;
  background: #fff !important;
  padding: 13px 16px !important;
}

.sup-content h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.sup-content h3 {
  margin: 24px 0 14px;
  font-size: 24px;
  font-weight: 900;
}

.sup-content p,
.sup-content li {
  color: #475569;
}

.sup-contact-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.sup-contact-list li {
  color: #475569;
}

.sup-smart-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.sup-smart-link {
  display: grid;
  gap: 4px;
  min-height: 74px;
  border: 1px solid var(--sup-border);
  border-radius: 16px;
  background: #f8fafc;
  padding: 13px 15px;
  color: var(--sup-text) !important;
  font-weight: 800;
}

.sup-smart-link span {
  color: var(--sup-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sup-smart-link:hover {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.sup-footer {
  margin-top: 32px;
  padding: 42px 0 112px;
  background: var(--sup-dark);
  color: #94a3b8;
}

.sup-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.sup-footer__brand {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.sup-bottom-cta {
  position: fixed;
  z-index: 60;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid var(--sup-border);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  padding: 12px 16px;
}

.sup-bottom-cta__button {
  display: flex;
  width: min(100%, 760px);
  min-height: 58px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 18px;
  background: var(--sup-blue);
  color: #fff !important;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.28);
}

.sup-bottom-cta__button:hover {
  background: var(--sup-blue-dark);
  color: #fff !important;
}

.sup-form-shell form,
form#comments,
form#comment-form {
  display: grid;
  gap: 14px;
}

.sup-form-shell fieldset,
form#comments fieldset,
form#comment-form fieldset {
  display: grid;
  gap: 14px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.sup-form-shell .row,
form#comments .row,
form#comment-form .row,
form#comments .col-12,
form#comment-form .col-12,
form#comments .input-group,
form#comment-form .input-group {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

form#comments .form-control,
form#comment-form .form-control {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--sup-border);
  border-radius: 16px;
  color: var(--sup-text);
  padding: 14px 18px;
  font-size: 16px;
}

form#comments textarea.form-control,
form#comment-form textarea.form-control {
  min-height: 150px;
}

form#comments .primary-button,
form#comment-form .primary-button,
form#comments .btn,
form#comment-form .btn {
  width: auto;
  border: 0;
  border-radius: 999px;
  background: var(--sup-blue);
  padding: 13px 24px;
  color: #fff;
  font-weight: 900;
}

.flag {
  width: 20px;
  height: 15px;
  margin-right: 6px;
  vertical-align: middle;
}

@media (max-width: 960px) {
  .sup-nav {
    display: none;
  }

  .sup-layout,
  .sup-grid--3,
  .sup-grid--4,
  .sup-country-grid,
  .sup-smart-links {
    grid-template-columns: 1fr;
  }

  .sup-grid--2 {
    grid-template-columns: 1fr;
  }

  .sup-inline-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .sup-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .sup-container {
    width: min(100% - 24px, 1280px);
  }

  .sup-header__inner {
    min-height: 64px;
    gap: 12px;
  }

  .sup-logo {
    font-size: 24px;
  }

  .sup-header .sup-button {
    padding: 10px 14px;
    font-size: 13px;
  }

  .sup-hero__inner,
  .sup-hero--compact .sup-hero__inner {
    padding: 48px 0;
  }

  .sup-form {
    flex-direction: column;
    border-radius: 18px;
  }

  .sup-footer__inner {
    flex-direction: column;
  }
}
