:root {
  --bg: #fcfbf8;
  --surface: #ffffff;
  --dark: #1f1f21;
  --text: #222326;
  --muted: #62666d;
  --line: #dedbd4;
  --soft-line: #ebe8e1;
  --soft: #f5f3ee;
  --green: #00b67a;
  --green-dark: #009a66;
  --blue: #4156c5;
  --blue-dark: #3346ad;
  --cyan: #c7f2f4;
  --yellow: #ffcf00;
  --star-off: #d8d8d8;
  --footer: #171719;
  --radius: 8px;
  --shadow: 0 10px 30px rgba(31, 31, 33, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--dark);
  color: #fff;
}

.topbar-inner {
  width: min(1198px, calc(100% - 32px));
  min-height: 70px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(280px, 458px) 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-star {
  color: var(--green);
  font-size: 30px;
  line-height: 1;
}

.global-search,
.keyword-search {
  position: relative;
}

.global-search input,
.keyword-search input {
  width: 100%;
  height: 46px;
  border: 1px solid #c9c9c9;
  border-radius: 4px;
  background: #fff;
  color: var(--text);
  padding: 0 18px 0 43px;
  outline: 0;
}

.global-search input::placeholder,
.keyword-search input::placeholder {
  color: #7c8088;
}

.global-search input:focus,
.keyword-search input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(65, 86, 197, 0.15);
}

.search-symbol {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 15px;
  height: 15px;
  border: 2px solid #757b85;
  border-radius: 50%;
  transform: translateY(-50%);
}

.search-symbol::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  right: -5px;
  bottom: -3px;
  background: #757b85;
  transform: rotate(45deg);
}

.search-symbol.small {
  left: 18px;
  width: 13px;
  height: 13px;
}

.search-results {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 80;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.search-results button {
  width: 100%;
  height: 44px;
  border: 0;
  border-bottom: 1px solid var(--soft-line);
  background: #fff;
  color: var(--text);
  padding: 0 14px;
  text-align: left;
  font-weight: 700;
}

.search-results button:last-child {
  border-bottom: 0;
}

.search-results button:hover {
  background: #f4f4f4;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  color: #f1f1f1;
  font-size: 13px;
  font-weight: 700;
}

.business-pill {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 22px;
  border-radius: 100px;
  background: #5868e8;
  color: #fff;
}

.bell-btn,
.menu-btn,
.mini-info,
.chevron-btn,
.slider-btn {
  border: 0;
  background: transparent;
}

.bell-btn {
  position: relative;
  width: 22px;
  height: 22px;
}

.bell-btn::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 11px;
  height: 13px;
  border: 2px solid #ddd;
  border-bottom: 0;
  border-radius: 8px 8px 2px 2px;
}

.bell-btn::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 4px;
  width: 14px;
  height: 2px;
  background: #ddd;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
}

.menu-btn span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: #fff;
}

.mobile-panel {
  display: none;
  border-top: 1px solid #38383c;
  padding: 12px 20px 18px;
}

.mobile-panel a {
  display: block;
  padding: 12px 0;
  font-weight: 700;
}

.mobile-panel.is-open {
  display: block;
}

.profile-shell {
  position: relative;
  background: var(--dark);
  padding-bottom: 34px;
}

.profile-shell::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 41px;
  bottom: 0;
  border-radius: 10px 10px 0 0;
  background: var(--bg);
}

.profile-shell>.container {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 4px 0 0;
  color: #c8c8c8;
  font-size: 11px;
  font-weight: 700;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 64%) 31%;
  gap: 64px;
  align-items: start;
  padding-top: 60px;
}

.profile-main {
  padding-top: 34px;
}

.company-block {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 43px;
  align-items: start;
  min-height: 182px;
  border-bottom: 1px solid #d5d5d5;
  padding-bottom: 30px;
}

.company-logo {
  width: 94px;
  height: 122px;
  display: grid;
  justify-items: center;
  align-content: center;
  color: #3153c8;
  font-weight: 800;
}

.logo-flame {
  position: relative;
  width: 30px;
  height: 42px;
  margin-bottom: -8px;
  background: linear-gradient(180deg, #ff9a2b, #f15a24);
  border-radius: 70% 20% 70% 30%;
  transform: rotate(15deg);
}

.logo-flame::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 9px;
  width: 13px;
  height: 20px;
  background: #fff;
  border-radius: 70% 20% 70% 30%;
}

.logo-book {
  width: 104px;
  min-height: 104px;
  display: grid;
  place-items: center;
  scale: 1.2;
  margin-left: 12px;
  background: #000;
  padding: 10px 10px 20px;
  margin-top: 10px;
}

.logo-book img {
  width: 100%;
  max-height: 82px;
  height: auto;
  object-fit: contain;
}

.logo-book span {
  display: block;
  height: 32px;
  border: 4px solid #3153c8;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  background: #fff;
}

.logo-book span:nth-child(2) {
  height: 38px;
  border-color: #ff6b28;
}

.company-logo strong {
  margin-top: 6px;
  font-size: 11px;
  line-height: 1;
}

.company-logo small {
  color: #f15a24;
  font-size: 6px;
  font-weight: 800;
}

.claim-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 22px;
  margin-bottom: 8px;
  padding: 0 7px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: #6c6f76;
  background: #fff;
  font-size: 11px;
  font-weight: 600;
}

.claim-badge span {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e7f6eb;
}

.claim-badge span::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 3px;
  height: 6px;
  border: solid var(--green-dark);
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 2px;
  color: #2c2c30;
  font-size: 36px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}

.micro-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  color: #585d67;
  font-size: 14px;
}

.micro-rating a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tiny-stars {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 2px;
  vertical-align: middle;
}

.tiny-stars i {
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 1px;
  background: var(--yellow);
  position: relative;
}

.tiny-stars i::after {
  content: "\2605";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-style: normal;
  font-size: 10px;
  line-height: 1;
}

.tiny-stars i:nth-child(5) {
  background: linear-gradient(90deg, var(--yellow) 25%, var(--star-off) 25%);
}

.review-stars i {
  background: var(--green);
}

.review-stars i:nth-child(5) {
  background: var(--star-off);
}

.publisher-link {
  display: inline-block;
  margin-top: 5px;
  color: #4054c7;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.write-btn,
.visit-btn,
.closer-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 22px;
  font-weight: 500;
}

.write-btn,
.closer-btn {
  background: var(--blue);
  color: #fff;
}

.write-btn:hover,
.closer-btn:hover {
  background: var(--blue-dark);
}

.write-btn.full {
  width: 100%;
}

.visit-btn {
  background: #fff;
  color: var(--blue);
  border-color: var(--blue);
}

.visit-btn:hover {
  background: #f3f4ff;
}

.pen-icon,
.external-icon,
.shield-icon,
.send-icon,
.chart-icon,
.pin-icon,
.phone-icon,
.mail-icon,
.globe-icon,
.sliders-icon,
.thumb-icon,
.share-icon,
.flag-icon {
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
}

.pen-icon {
  width: 14px;
  height: 14px;
  transform: rotate(-45deg);
}

.pen-icon::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  width: 5px;
  height: 13px;
  border-radius: 2px;
  background: currentColor;
}

.external-icon {
  width: 14px;
  height: 14px;
  border: 1.6px solid currentColor;
  border-radius: 2px;
}

.external-icon::before {
  content: "";
  position: absolute;
  right: -1px;
  top: -1px;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.external-icon::after {
  content: "";
  position: absolute;
  right: 0;
  top: 1px;
  width: 8px;
  height: 2px;
  background: currentColor;
  transform: rotate(-45deg);
}

.muted {
  color: #7a7e86;
}

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

.mini-info {
  width: 15px;
  height: 15px;
  padding: 0;
  border: 1.5px solid #a6a8ad;
  border-radius: 50%;
  color: #858990;
  vertical-align: middle;
  position: relative;
}

.mini-info::after {
  content: "i";
  position: absolute;
  inset: -1px 0 0;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
}

.integrity-note {
  position: relative;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  padding: 15px 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fcfbf3;
  color: #3e444d;
  font-size: 13px;
  cursor: pointer;
  justify-content: space-between;
}

.integrity-note p {
  grid-column: 2 / -1;
  margin: 0;
  color: var(--muted);
}

.shield-icon {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  background: #dce8ff;
}

.shield-icon::before {
  content: "\2605";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 12px;
}

.chevron-btn {
  width: 22px;
  height: 22px;
}

.chevron-btn::after,
.filter-toggle .sliders-icon::before,
.filter-toggle .sliders-icon::after,
.accordion button span::before {
  content: "";
  position: absolute;
}


.company-details {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
}

.company-details h2,
.contact-info h2 {
  margin-bottom: 0;
  color: #333437;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 500;
}

.detail-content {
  min-width: 0;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
  align-items: center;
}

.category-tags span {
  height: 20px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border: 1px solid #d8ddf6;
  border-radius: 2px;
  background: #f7f8ff;
  font-size: 11px;
  font-weight: 700;
  color: #687ce1;
}

.detail-content h3 {
  margin-bottom: 7px;
  font-size: 14px;
}

.detail-content p {
  max-width: 440px;
  margin-bottom: 0;
  color: #212121;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 1px;
}

.inline-link,
.under-link,
.clear-filter {
  border: 0;
  background: transparent;
  color: #4657c6;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
}

.more-company {
  margin-top: 9px;
}

.contact-info {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
  margin-top: 72px;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-row {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #000;
  text-underline-offset: 3px;
  width: fit-content;
  font-size: 16px;
}

.contact-row:first-child {
  text-decoration: none;
}

.pin-icon,
.phone-icon,
.mail-icon,
.globe-icon {
  width: 15px;
  height: 15px;
  color: #83878e;
}

.pin-icon {
  border: 1.7px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.pin-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.phone-icon::before {
  content: "";
  position: absolute;
  inset: 1px 4px;
  border: 1.6px solid currentColor;
  border-left-width: 4px;
  border-radius: 5px;
  transform: rotate(-35deg);
}

.mail-icon {
  border: 1.6px solid currentColor;
  border-radius: 2px;
}

.mail-icon::before,
.mail-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 9px;
  height: 1.5px;
  background: currentColor;
}

.mail-icon::before {
  left: 1px;
  transform: rotate(35deg);
}

.mail-icon::after {
  right: 1px;
  transform: rotate(-35deg);
}

.globe-icon {
  border: 1.7px solid currentColor;
  border-radius: 50%;
}

.globe-icon::before,
.globe-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.globe-icon::before {
  left: 2px;
  right: 2px;
  top: 6px;
  height: 1px;
}

.globe-icon::after {
  top: 2px;
  bottom: 2px;
  left: 6px;
  width: 1px;
}

.profile-aside {
  display: grid;
  gap: 14px;
  padding-top: 34px;
  position: sticky;
  top: 50px;
}

.score-card,
.side-info-card,
.suggest-card,
.rating-filter-card,
.review-card,
.experience-card,
.review-modal {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.score-card {
  padding: 28px 28px 20px;
  box-shadow: var(--shadow);
  border-radius: 20px;
}

.score-top {
  display: grid;
  grid-template-columns: 1fr 168px;
  gap: 18px;
}

.big-score {
  color: #2c2c30;
  font-size: 50px;
  line-height: 0.9;
  font-weight: 800;
}

.score-card strong {
  display: block;
  margin: 5px 0 7px;
  color: #2e3034;
  font-size: 15px;
}

.score-card span {
  color: #4f535a;
  font-size: 12px;
}

.mini-bars {
  display: grid;
  gap: 8px;
  padding-top: 3px;
}

.mini-bars div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 7px;
}

.mini-bars b,
.rating-row b {
  display: block;
  overflow: hidden;
  height: 8px;
  border-radius: 99px;
  background: #dfdfdf;
}

.mini-bars i,
.rating-row i {
  display: block;
  height: 100%;
  background: #5cc142;
}

.score-card .under-link {
  display: block;
  margin: 22px auto 0;
  color: #50545b;
  font-size: 12px;
}

.side-info-card {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 18px;
  border-radius: 20px;
}

.side-info-card h3 {
  margin-bottom: 3px;
  color: #4b4b4b;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 2;
  margin-bottom: 7px;
}

.side-info-card p {
  margin: 0;
  color: #6c7077;
  font-size: 14px;
  line-height: 1.5;
}

.send-icon,
.chart-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.send-icon::before {}

.chart-icon::before,
.chart-icon::after {
}

.chart-icon::before {
  left: 10px;
  height: 9px;
}

.chart-icon::after {
  left: 18px;
  height: 15px;
}

.looked-at {
  padding: 30px 0 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.slider-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.slider-heading h2 {
  margin: 0;
  color: #333437;
  font-size: 26px;
  font-weight: 800;
}

.slider-controls {
  display: none;
  gap: 9px;
}

.slider-btn {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #c8d0fb;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-btn::after {
}

.slider-btn.prev {
  opacity: 0.45;
}

.slider-btn.prev::after {
  left: 11px;
  transform: rotate(135deg);
}

.company-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 42px) / 4);
  gap: 14px;
  overflow: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.company-slider::-webkit-scrollbar {
  display: none;
}

.suggest-card {
  min-height: 134px;
  padding: 18px;
}

.suggest-logo {
  width: 50px;
  height: 50px;
  margin-bottom: 11px;
  display: grid;
  place-items: center;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  color: #10394f;
  font-size: 13px;
  font-weight: 800;
  background: #fff;
}

.suggest-logo.iron {
  border: 0;
  background:
    linear-gradient(45deg, transparent 31%, #ff5b25 31% 45%, transparent 45%),
    linear-gradient(135deg, transparent 31%, #ff5b25 31% 45%, transparent 45%),
    linear-gradient(#ff5b25, #ff5b25);
  background-size: 50% 100%, 50% 100%, 60% 60%;
  background-position: left, right, center;
  background-repeat: no-repeat;
}

.suggest-logo.ordb {
  background: #102433;
  color: #fff;
}

.suggest-logo.flag::before {
  content: "";
  width: 22px;
  height: 28px;
  border-left: 3px solid #184052;
  border-top: 3px solid #184052;
  border-radius: 4px 0 0 0;
  transform: skewX(-10deg);
}

.suggest-logo.dns {
  color: #4aa6b1;
  font-size: 10px;
}

.suggest-logo.blue {
  background: #e8f0ff;
  color: #345bd6;
}

.suggest-card h3 {
  margin-bottom: 0;
  color: #1f2024;
  font-size: 16px;
  font-weight: 800;
}

.suggest-card p {
  margin-bottom: 8px;
  color: #5c6169;
  font-size: 12px;
}

.suggest-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4d535d;
  font-size: 12px;
}

.suggest-rating .tiny-stars i {
  width: 12px;
  height: 12px;
}

.suggest-rating .tiny-stars i::after {
  font-size: 7px;
}

.reviews-area {
  padding: 34px 0 42px;
  background: #fff;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 316px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.review-side {
  padding-top: 4px;
  position: sticky;
  top: -140px;
}

.review-scoreline {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
}

.review-scoreline span {
  color: var(--yellow);
  font-size: 39px;
  line-height: 1;
}

.review-scoreline strong {
  color: #2f3034;
  font-size: 32px;
  font-weight: 800;
}

.review-side h2 {
  margin-bottom: 9px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
}

.review-side h2 span {
  font-size: 17px;
  font-weight: 600;
}

.review-side p {
  margin-bottom: 12px;
  color: #4e535d;
}

.small-write {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  margin-bottom: 12px;
  border: 0;
  border-radius: 999px;
  background: #eeeeec;
  color: #4a4d54;
  padding: 19px;
  font-size: 12px;
  font-weight: 800;
  gap: 10px;
}

.checks-line {
  font-size: 13px;
}

.rating-filter-card {
  padding: 15px 14px;
  margin: 12px 0 28px;
}

.rating-row {
  width: 100%;
  display: grid;
  grid-template-columns: 62px 1fr 34px;
  gap: 10px;
  align-items: center;
  border: 0;
  background: transparent;
  color: #9b9da1;
  padding: 6px 0;
  text-align: left;
}

.rating-row:hover span {
  color: #363a40;
  text-decoration: underline;
}

.rating-row strong {
  color: #93969c;
  font-size: 12px;
}

.clear-filter {
  display: none;
  margin-top: -18px;
  margin-bottom: 18px;
}

.clear-filter.is-visible {
  display: inline-block;
}

.labels-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  width: 100%;
  color: #4f5359;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 13px;
  font-weight: 700;
}

.labels-link .external-icon {
  width: 12px;
  height: 12px;
}

.review-feed {
  width: min(560px, 100%);
}

.policy-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 20px;
  padding: 14px 18px;
  background: var(--cyan);
  border-radius: 3px;
}

.policy-banner p {
  margin: 0;
  color: #315054;
  font-size: 12px;
  line-height: 1.35;
}

.policy-banner a {
  color: #3154bd;
  text-decoration: underline;
}

.info-round {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1px solid #78bfc6;
  border-radius: 50%;
  color: #3d8c93;
  font-weight: 800;
}

.keyword-search {
  margin-bottom: 17px;
}

.keyword-search input {
  border-radius: 999px;
  height: 42px;
}

.feed-tools {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 16px;
}

.filter-toggle,
.sort-select select {
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #3f434a;
  padding: 0 15px;
  font-size: 13px;
  font-weight: 700;
}

.filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sliders-icon {
  width: 15px;
  height: 13px;
}

.sliders-icon::before,
.sliders-icon::after {
  left: 0;
  right: 0;
  height: 1.7px;
  background: currentColor;
}

.sliders-icon::before {
  top: 3px;
}

.sliders-icon::after {
  bottom: 3px;
}

.sort-select select {
  appearance: none;
  min-width: 120px;
}

.filter-panel {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.filter-panel label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #535962;
  font-size: 13px;
  font-weight: 700;
}

.review-list {
  display: grid;
  gap: 18px;
}

.review-card {
  padding: 0 0 20px;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.review-head {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 11px;
  align-items: center;
  padding-top: 20px;
  margin-bottom: 13px;
}

.avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #bff0c8;
  color: #287948;
  font-size: 13px;
  font-weight: 800;
}

.review-head strong {
  display: block;
  color: #2e3136;
  font-size: 13px;
}

.review-head span,
.review-head time {
  color: #717780;
  font-size: 12px;
}

.review-card h3 {
  margin: 10px 0 7px;
  color: #2b2e33;
  font-size: 14px;
  font-weight: 800;
}

.review-card p {
  margin-bottom: 12px;
  color: #353940;
  font-size: 14px;
  line-height: 1.45;
}

.review-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.review-tags span {
  height: 24px;
  display: inline-flex;
  align-items: center;
  border-radius: 3px;
  background: #f1f0eb;
  color: #6e727a;
  padding: 0 9px;
  font-size: 11px;
  font-weight: 700;
}

.review-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.review-actions button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: #747982;
  padding: 0;
  font-size: 13px;
  font-weight: 700;
}

.thumb-icon {
  width: 13px;
  height: 13px;
  border: 1.5px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  border-radius: 2px;
  transform: rotate(-45deg);
}

.share-icon {
  width: 16px;
  height: 13px;
}

.share-icon::before,
.share-icon::after {
  content: "";
  position: absolute;
}

.share-icon::before {
  left: 0;
  top: 5px;
  width: 14px;
  height: 1.6px;
  background: currentColor;
}

.share-icon::after {
  right: 0;
  top: 1px;
  width: 7px;
  height: 7px;
  border-top: 1.6px solid currentColor;
  border-right: 1.6px solid currentColor;
  transform: rotate(45deg);
}

.flag-icon {
  width: 12px;
  height: 14px;
  border-left: 1.6px solid currentColor;
}

.flag-icon::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 0;
  width: 9px;
  height: 7px;
  border: 1.5px solid currentColor;
  border-left: 0;
}

.empty-state {
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.empty-state h3 {
  margin-bottom: 5px;
}

.empty-state p {
  margin: 0;
  color: var(--muted);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  margin: 52px 0 24px;
  border: 1px solid #777b83;
  border-radius: 2px;
  overflow: hidden;
}

.pagination[hidden] {
  display: none;
}

.pagination button {
  min-width: 44px;
  height: 38px;
  border: 0;
  border-right: 1px solid #777b83;
  background: #fff;
  color: #1f2937;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.pagination button:first-child,
.pagination button:last-child {
  flex: 1 1 120px;
}

.pagination button:disabled {
  color: #aaa;
  cursor: not-allowed;
}

.pagination button:last-child {
  border-right: 0;
}

.pagination span {
  display: grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  border-right: 1px solid #777b83;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.pagination .current {
  color: var(--blue);
  background: #eef0ff;
}

.experience-card {
  padding: 22px 24px 26px;
}

.experience-card h2 {
  margin-bottom: 18px;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
}

.experience-card h2 span {
  color: var(--green);
}

.accordion {
  margin-bottom: 12px;
}

.accordion button {
  position: relative;
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  background: var(--cyan);
  color: #315054;
  padding: 0 44px 0 17px;
  text-align: left;
  font-size: 13px;
  font-weight: 800;
}

.accordion button span {
  position: absolute;
  right: 17px;
  top: 16px;
  width: 13px;
  height: 13px;
}

.accordion button span::before {
  left: 2px;
  top: 2px;
  width: 7px;
  height: 7px;
  border-right: 1.7px solid #4e7f85;
  border-bottom: 1.7px solid #4e7f85;
  transform: rotate(45deg);
}

.accordion button[aria-expanded="true"] span::before {
  top: 5px;
  transform: rotate(225deg);
}

.accordion p {
  margin: 0;
  padding: 10px 14px 0;
  color: #526268;
  font-size: 13px;
}

.closer-btn {
  width: 100%;
  margin-top: 4px;
}

.footer {
  background: var(--footer);
  color: #d7d7df;
  padding: 68px 0 52px;
}

.footer-inner {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-brand {
  color: #fff;
  margin-bottom: 58px;
}

.footer-brand .brand-star {
  font-size: 28px;
}

.recaptcha {
  margin-bottom: 48px;
  color: #c7c8d1;
  font-size: 12px;
}

.recaptcha a,
.legal-links a {
  color: #cbd3ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.2fr 1.1fr 1.4fr;
  gap: 42px;
}

.footer h3 {
  margin-bottom: 18px;
  color: #d4d4dc;
  font-size: 14px;
  font-weight: 800;
}

.footer section a {
  display: block;
  margin-bottom: 18px;
  color: #f3f3f7;
  font-size: 12px;
  font-weight: 700;
}

.app-store {background: transparent;border: none;}

.country-select {
  width: 216px;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 4px;
  background: #fff;
  color: #222326;
  padding: 0 16px;
  font-weight: 700;
}

.country-select span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 14px;
  background: #f1f1f1;
  color: #5364d8;
  font-size: 8px;
}

.country-select b {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-right: 1.7px solid #333;
  border-bottom: 1.7px solid #333;
  transform: rotate(45deg) translateY(-2px);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 56px 0 34px;
}

.legal-links a {
  color: #f0f0f5;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.copyright {
  margin: 0;
  color: #c4c4ce;
  font-size: 12px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(17, 17, 19, 0.66);
}

.review-modal {
  position: relative;
  width: min(540px, 100%);
  padding: 30px;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #efefef;
  color: var(--text);
  font-size: 24px;
}

.review-modal h2 {
  margin-bottom: 8px;
  font-size: 27px;
}

.review-modal p {
  color: var(--muted);
}

.review-form {
  display: grid;
  gap: 16px;
}

.review-meta-fields {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 12px;
}

.rating-picker {
  display: flex;
  gap: 5px;
}

.rating-picker button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 2px;
  background: var(--star-off);
  color: #fff;
  font-size: 24px;
}

.rating-picker button.is-selected {
  background: var(--green);
}

.review-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 800;
}

.review-form input,
.review-form textarea {
  width: 100%;
  border: 1px solid #c7c7c7;
  border-radius: 4px;
  padding: 12px;
  resize: vertical;
}

.review-form input:focus,
.review-form textarea:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(65, 86, 197, 0.15);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  max-width: min(380px, calc(100% - 36px));
  padding: 13px 16px;
  border-radius: 7px;
  background: #24262b;
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1120px) {
  .topbar-inner {
    grid-template-columns: auto minmax(240px, 1fr) auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .profile-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
  }

  .reviews-layout {
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 32px;
  }
}

@media (max-width: 860px) {
  .topbar-inner {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 13px 0;
  }

  .global-search {
    grid-column: 1 / -1;
    order: 3;
  }

  .profile-shell {
    background: var(--dark);
  }

  .profile-shell::before {
    top: 54px;
  }

  .breadcrumbs {
    padding-top: 0;
    font-size: 10px;
  }

  .profile-layout,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .profile-aside {
    padding-top: 0;
  }

  .profile-main {
    padding-top: 24px;
  }

  .company-slider {
    grid-auto-columns: minmax(220px, 78%);
  }

  .review-feed {
    width: 100%;
  }
}

@media (max-width: 640px) {

  .container,
  .topbar-inner,
  .footer-inner {
    width: min(100% - 24px, 1080px);
  }

  .profile-shell {
    padding-bottom: 26px;
  }

  .company-block,
  .company-details,
  .contact-info,
  .score-top {
    grid-template-columns: 1fr;
  }

  .company-block {
    gap: 14px;
  }

  h1 {
    font-size: 30px;
  }

  .company-details,
  .contact-info {
    gap: 16px;
    margin-top: 34px;
  }

  .integrity-note {
    grid-template-columns: auto 1fr;
  }

  .integrity-note .chevron-btn {
    grid-column: 2;
    justify-self: end;
  }

  .integrity-note p {
    grid-column: 1 / -1;
  }

  .side-info-card {
    grid-template-columns: 38px 1fr;
  }

  .side-info-card .external-icon {
    display: none;
  }

  .slider-heading,
  .feed-tools,
  .review-head {
    align-items: start;
  }

  .slider-heading {
    gap: 14px;
  }

  .slider-heading h2 {
    font-size: 23px;
  }

  .feed-tools {
    flex-direction: column;
  }

  .filter-toggle,
  .sort-select,
  .sort-select select {
    width: 100%;
  }

  .review-head {
    grid-template-columns: 38px 1fr;
  }

  .review-head time {
    grid-column: 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
  }

  .country-select {
    width: 100%;
  }

  .legal-links {
    gap: 18px;
  }
}

@media (max-width: 430px) {
  body {
    font-size: 13px;
  }

  .brand {
    font-size: 20px;
  }

  .brand-star {
    font-size: 27px;
  }

  .hero-actions {
    display: grid;
  }

  .write-btn,
  .visit-btn {
    width: 100%;
  }

  .company-details h2,
  .contact-info h2,
  .slider-heading h2 {
    font-size: 22px;
  }

  .score-card,
  .side-info-card,
  .suggest-card,
  .experience-card,
  .review-modal {
    padding: 18px;
  }

  .review-meta-fields {
    grid-template-columns: 1fr;
  }

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

.write-btn i,
.closer-btn i {
  font-size: 20px;
}

.side-info-card i {
  font-size: 20px;
  color: rgb(143, 143, 143);
}

.send-icon i {
  font-size: 28px;
}

.contact-row i {
  font-size: 19px;
}


.integrity-note i {
  font-size: 21px;
}

.integrity-note strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.write-btn svg {fill: #fff;}

.visit-btn svg {
    fill: #4156c5;
}
.integrity-note p a {
    color: #3873e5;
    font-weight: 500;
}

.card_logo {
    width: 60px;
    overflow: hidden;
    border-radius: 6px;
    height: 60px;
    border: 1px solid #e5e5e5;
    margin-bottom: 9px;
}

.card_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slider-btn i {
    font-size: 23px;
    color: #5868e8;
}

.small-write svg {
    width: 12px;
}

.social_icon a {
    font-size: 24px !important;
    margin-bottom: 7px !important;
}

.legal-links a:hover {
    text-decoration: underline !important;
    color: #89a1fd;
}

.footer section a:hover {
    text-decoration: underline !important;
    color: #89a1fd;
}

select,
::picker(select) {
    appearance: base-select;
    width: 200px;
    overflow: hidden;
    cursor: pointer;
    padding: 10px 10px;
    border-radius: 0;
}

::picker(select) {
    border: 0;
    margin: 0px 0px;
    box-shadow: 0px 0px 10px gray;
}

option {
    font-size: 14px;
    padding: 12px 7px;
    cursor: pointer;
}
 

.desktop-nav svg {
    fill: #fff;
}
.intigrityTabinner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.intigrityTab {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.droppara {
    margin: 20px 0 0;
}
.droppara p {
    margin: 0 0 10px;
}

.droppara p:nth-child(2) {
    margin: 0;
}
