html {
    scroll-behavior: smooth;
}

.solutions-hero {
    background: var(--color-bg-dark);
    color: white;
    padding-top: 120px;
    padding-bottom: 50px;
}

.hero-title-white {
    color: white;
    -webkit-text-fill-color: white;
}

.solutions-hero-text {
    max-width: 760px;
    color: var(--color-text-muted);
    font-size: 1.08rem;
    margin-bottom: 0;
}

.solutions-toolbar {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 1rem;
}

.toolbar-field {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.toolbar-field label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    font-weight: 600;
}

.solutions-search,

.solutions-select {
    min-height: 56px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: white;
    padding: 0 1rem;
    font-size: 0.98rem;
    font-weight: 500;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.solutions-search::placeholder {
    color: rgba(255, 255, 255, 0.62);
}

.solutions-search:focus,
.solutions-select:focus {
    border-color: rgba(37, 201, 255, 0.7);
    box-shadow: 0 0 0 4px rgba(37, 201, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
}

.solutions-select option {
    color: #0a0f1c;
    background: #ffffff;
}

.solutions-select:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.catalog-summary {
    margin-top: 1.35rem;
}

.catalog-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.4rem;
}

.catalog-description {
    color: var(--color-text-muted);
    max-width: 860px;
    line-height: 1.65;
}

.search-status {
    margin-top: 0.8rem;
    color: #91e7ff;
    font-size: 0.96rem;
    font-weight: 600;
}

.catalog-section {
    padding-top: 42px;
}

.search-empty {
    display: none;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(10, 15, 28, 0.04);
    color: #516072;
    margin-bottom: 1.25rem;
}

.search-empty.show {
    display: block;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.catalog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1rem;
    border-radius: 22px;
    background: white;
    border: 1px solid rgba(12, 22, 40, 0.08);
    box-shadow: 0 16px 42px rgba(7, 17, 34, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(7, 17, 34, 0.14);
    border-color: rgba(37, 201, 255, 0.26);
}

.product-media {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(18, 28, 51, 0.95), rgba(10, 15, 28, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.catalog-card .badge {
    margin-bottom: 0.65rem;
    align-self: flex-start;
}

.catalog-card .card-title {
    margin-bottom: 0.35rem;
}

.product-subtitle {
    display: inline-block;
    margin-bottom: 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #7dd3fc;
}

.catalog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 0.9rem;
}

.catalog-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.38rem 0.72rem;
    font-size: 0.76rem;
    font-weight: 700;
    background: rgba(10, 15, 28, 0.06);
    color: #0f1724;
}

.catalog-card .card-text {
    margin-bottom: 1rem;
}

.catalog-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.catalog-pagination {
    margin: 2rem 0rem 2rem 0rem;
    display: flex;
    justify-content: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.page-tab {
    min-width:30px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid rgba(10, 15, 28, 0.08);
    background: white;
    color: #0f1724;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
    box-shadow: 0 10px 24px rgba(7, 17, 34, 0.05);
}

.page-tab:hover {
    transform: translateY(-2px);
}

.page-tab.active {
    background: linear-gradient(135deg, #00c8ff, #008ee6);
    color: white;
    border-color: transparent;
    box-shadow: 0 14px 28px rgba(0, 142, 230, 0.28);
}

.page-tab.nav {
    padding: 0 1rem;
    min-width: auto;
}

@media (max-width: 1100px) {
    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .solutions-toolbar {
        grid-template-columns: 1fr 1fr;
    }

    .toolbar-search {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .product-media {
        height: 200px;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .solutions-toolbar {
        grid-template-columns: 1fr;
    }
}


.frequency-disclaimer {
  position: relative;
  margin: 0 0 28px;
  padding: 24px 22px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 196, 0, 0.18), transparent 35%),
    linear-gradient(135deg, rgba(255, 196, 0, 0.12), rgba(255, 120, 0, 0.08)),
    #121826;
  border: 1px solid rgba(255, 196, 0, 0.28);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.frequency-disclaimer::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, #ffd54a, #ff8a00);
}

.frequency-disclaimer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 196, 0, 0.14);
  border: 1px solid rgba(255, 196, 0, 0.22);
  color: #ffd54a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.frequency-disclaimer-title {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
}

.frequency-disclaimer-text {
  margin: 0;
  max-width: 980px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.7;
}

.frequency-disclaimer-text strong {
  color: #ffd54a;
}

@media (max-width: 768px) {
  .frequency-disclaimer {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .frequency-disclaimer-title {
    font-size: 1.15rem;
  }

  .frequency-disclaimer-text {
    font-size: 0.93rem;
    line-height: 1.6;
  }
}

.disclaimer-highlight {
  color: #22c55e;
  font-weight: 600;
  background: rgba(34, 197, 94, 0.12);
  padding: 3px 6px;
  border-radius: 6px;
}


.toolbar-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toolbar-field label {
  font-size: 0.98rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
}

.solutions-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  min-height: 56px;
  padding: 0 52px 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(0, 194, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    linear-gradient(135deg, rgba(7, 15, 30, 0.96), rgba(11, 27, 48, 0.94));
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.06);
  outline: none;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    linear-gradient(135deg, rgba(7, 15, 30, 0.96), rgba(11, 27, 48, 0.94)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23d8f4ff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center, center, right 18px center;
  background-size: auto, auto, 18px;
}

.solutions-select:hover {
  border-color: rgba(0, 194, 255, 0.45);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(0, 194, 255, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

.solutions-select:focus {
  border-color: rgba(0, 194, 255, 0.8);
  box-shadow:
    0 0 0 4px rgba(0, 194, 255, 0.14),
    0 16px 36px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.solutions-select:disabled {
  opacity: 0.58;
  cursor: not-allowed;
  filter: grayscale(0.15);
}

.solutions-select option {
  background: #09111f;
  color: #ffffff;
}