:root {
  --blue: #0757d8;
  --blue-dark: #073a91;
  --blue-soft: #eef6ff;
  --ink: #101828;
  --text: #101828;  /* совместимость с главной */
  --muted: #667085;
  --line: #e6edf6;
  --bg: #f7fbff;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
  --radius: 22px;
  --green: #12b76a;
  --gold: #f5a524;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fbff 0%, #fff 45%, #f7fbff 100%);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  overflow: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.account_area .container{
	max-width: 1320px;
}
/* header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.flag-icon{
	width: 25px;
	max-width:none;
	display: inline;
	border: 1px solid #00000038;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 25px;
  color: var(--blue);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

/* иконка главной */
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, #075bd8, #0b8cff);
  box-shadow: 0 10px 22px rgba(7, 91, 216, 0.28);
  font-size: 21px;
}

/* иконка внутренней */
.logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0aa2ff);
  box-shadow: 0 8px 18px rgba(7, 87, 216, 0.24);
  font-weight: 900;
}

.menu {
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 600;
  font-size: 15px;
}

.menu a {
  padding: 27px 0;
  color: #1d2939;
}

.menu a:hover {
  color: var(--blue);
}

.menu a.active {
  color: var(--blue);
  border-bottom: 3px solid var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #1d2939;
}

.pill-mini {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #0f172a;
  white-space: nowrap;
}

.pill {
  display: flex;
  align-items: center;
  gap: 7px;
}

.badge {
  font-size: 12px;
  background: #eef2f7;
  color: #344054;
  border-radius: 999px;
  padding: 2px 7px;
}

/* hero – вариант внутренней */
.hero {
  position: relative;
  overflow: hidden;
  padding: 38px 0 44px;
  background:
    linear-gradient(90deg, rgba(247,251,255,0.98) 0%, rgba(247,251,255,0.90) 36%, rgba(247,251,255,0.35) 68%, rgba(247,251,255,0.12) 100%),
    url("/assets/images/countries/780fefad9463424f3bb5dc727a664c5b.jpg") center/cover;
  border-bottom: 1px solid rgba(230,237,246,0.85);
}

.breadcrumbs {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}

.breadcrumbs span {
  color: var(--ink);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.95fr;
  gap: 22px;
  align-items: start;
}

input{
	width: 100%;
    height: 52px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0 48px 0 18px;
    font-size: 15px;
    outline: none;
    background: #fff;width: 100%;
    height: 52px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0 48px 0 18px;
    font-size: 15px;
    outline: none;
    background: #fff;
}

.hr{
	color: #b4b9c1;
}

.company-hero-card,
.side-panel,
.content-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.company-hero-card {
  padding: 26px;
}

.hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.identity {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.hero-logo {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: linear-gradient(135deg, #1769e8, #0aa2ff);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 42px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(7, 87, 216, 0.22);
  flex: 0 0 auto;
}

h1 {
  font-size: 44px;
  line-height: 1.02;
  margin: 0 0 10px;
  letter-spacing: -1.6px;
}

.accent {
  color: var(--blue);
}

.subline {
  color: #475467;
  font-size: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #98a2b3;
  display: inline-block;
}

.verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #effaf4;
  border: 1px solid #d1fadf;
  color: #067647;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.score {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
  color: #344054;
  font-size: 14px;
}

.star {
  color: var(--gold);
  font-weight: 900;
}

.chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.chip {
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #344054;
}

.summary {
  margin: 18px 0 0;
  color: #344054;
  line-height: 1.65;
  font-size: 15px;
  max-width: 760px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn,
.ghost-btn,
.soft-btn {
  height: 48px;
  border-radius: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  cursor: pointer;
  font-size: 15px;
}

.btn {
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
  box-shadow: 0 12px 24px rgba(7, 87, 216, 0.22);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(7, 91, 216, 0.35);
}

.ghost-btn {
  background: #fff;
  color: var(--blue);
  border: 1px solid var(--line);
}

.soft-btn {
  background: var(--blue-soft);
  color: var(--blue);
  border: 1px solid #dbeafe;
}

/* hero-блок главной (фичи) */
.hero-features {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 760px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.hero-feature {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px 16px;
  border-right: 1px solid var(--line);
}

.hero-feature:last-child {
  border-right: 0;
}

.feature-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 11px;
  font-size: 20px;
}

.hero-feature strong {
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}

.hero-feature span {
  color: var(--muted);
  font-size: 12px;
}

/* абзац в hero (главная) */
.hero p {
  max-width: 560px;
  margin: 0 0 30px;
  color: #263244;
  font-size: 18px;
  line-height: 1.55;
}

/* поиск (главная) */
.search-box {
  width: min(600px, 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
}

.search-box input {
  border: 0;
  outline: 0;
  padding: 0 18px;
  font-size: 15px;
  color: var(--text);
}

section {
  padding: 36px 0;
}

main section {
  padding: 32px 0;
}

.white-wave {
  position: relative;
  margin-top: -25px;
  background: white;
  border-radius: 38px 38px 0 0;
  z-index: 5;
  box-shadow: 0 -20px 55px rgba(8, 43, 101, 0.07);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
}

h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.see-all {
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
}

.error_border{
	border: 1px solid #dc3545!important;
}

/* карточки (главная) */
.country-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}


.bi-heart::before {

    content: url("/assets/components/pb/templates/v1/img/heart_light.svg");
}


.country-card,
.company-card,
.info-card,
.category-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(8, 43, 101, 0.07);
  overflow: hidden;
}

.country-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 15px;
}

.country-title {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 7px;
  font-size: 18px;
  font-weight: 800;
}

.small-muted {
  color: var(--muted);
  font-size: 14px;
}

.directory-box {
  background: linear-gradient(135deg, #f6f9ff, #ffffff);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(8, 43, 101, 0.08);
}

.directory-top {
  display: grid;
  grid-template-columns: 1fr 220px 220px auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}

.directory-top p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.select-like {
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: white;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.company_listing .company-grid {
	grid-template-columns: repeat(3, 1fr);
	padding: 18px;
}

.company-card {
  padding: 18px;
}




.company-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--blue), #0ea5e9);
}

.company-card h3 {
  margin: 0 0 5px;
  font-size: 17px;
}

.company-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  min-height: 32px;
}

.company_listing .company-card {
	border: 1px solid var(--line);
    border-radius: 17px;
    padding: 18px;
    background: #fff;
    min-height: 258px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .2s;
}

.outline-btn {
  display: block;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 10px;
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
  background: white;
}

.center {
  text-align: center;
  margin-top: 20px;
}

.center .outline-btn {
  display: inline-block;
  padding: 13px 24px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.category-card {
  min-height: 86px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 13px 8px;
  font-weight: 800;
  font-size: 12px;
}

.category-card .icon {
  color: var(--blue);
  font-size: 27px;
  margin-bottom: 8px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.info-card img {
  width: 100%;
  height: 135px;
  object-fit: cover;
  display: block;
}

.info-card h3 {
  margin: 0 0 9px;
  font-size: 17px;
}

.info-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.info-card a {
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
}

/* внутренняя сетка */
.grid-main {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.stack {
  display: grid;
  gap: 22px;
}

.content-card {
  padding: 24px;
  background: #fff;
}

.content-card h2 {
  margin: 0 0 18px;
  font-size: 28px;
  letter-spacing: -0.5px;
}

.content-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

.content-card p {
  color: #475467;
  line-height: 1.75;
  font-size: 15px;
  margin: 0;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.fact {
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

.fact strong {
  display: block;
  font-size: 14px;
  margin-bottom: 7px;
}

.fact span {
  color: #475467;
  font-size: 14px;
  line-height: 1.5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
}

.service strong {
  display: block;
  font-size: 16px;
  margin-bottom: 7px;
}

.service p {
  font-size: 14px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery img {
  border-radius: 18px;
  height: 210px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.info-list {
  display: grid;
  gap: 12px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.info-row:last-child {
  border-bottom: 0;
}

.info-row strong {
  font-size: 14px;
}

.info-row span {
  color: #475467;
  font-size: 14px;
  text-align: right;
}

.hours {
  display: grid;
  gap: 10px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.hour-row:last-child {
  border-bottom: 0;
}

.hour-row span:last-child {
  color: #475467;
}

.hour-row.today span:last-child {
  color: var(--green);
  font-weight: 800;
}

.map-box {
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    url("/assets/images/countries/780fefad9463424f3bb5dc727a664c5b.jpg") center/cover;
  position: relative;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fff;
  border: 6px solid var(--blue);
  box-shadow: 0 18px 35px rgba(7, 87, 216, 0.25);
  display: grid;
  place-items: center;
  font-size: 24px;
  color: var(--blue);
  font-weight: 900;
}

.reviews {
  display: grid;
  gap: 14px;
}

.review {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
}

.review-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.reviewer {
  display: flex;
  gap: 12px;
  align-items: center;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #eaf2ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.review small {
  color: #667085;
}

.review p {
  font-size: 14px;
  line-height: 1.7;
  color: #475467;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #344054;
  background: #fff;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.04);
}

.related-card .top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.mini-logo {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: linear-gradient(135deg, #1769e8, #0aa2ff);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 22px;
  flex: 0 0 auto;
}

.mini-logo.green {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.mini-logo.orange {
  background: linear-gradient(135deg, #ff6b2c, #ff9f43);
}

.related-card strong {
  display: block;
  font-size: 17px;
}

.related-card .meta {
  font-size: 13px;
  color: #667085;
  margin-top: 4px;
}

.related-card .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: 13px;
  color: #475467;
}

/* CTA-блоки */
.full-cta {
  background: linear-gradient(135deg, #eef6ff, #ffffff);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  gap: 18px;
  align-items: center;
}

.small-cta {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.small-cta .iconbox {
  width: 48px;
  height: 48px;
}

.cta {
  margin-top: 20px;
  background: linear-gradient(135deg, #075bd8, #07327a);
  color: white;
  padding: 34px 0;
}

.cta .cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.cta-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.6);
  font-size: 38px;
}

.cta h2 {
  color: white;
  margin-bottom: 6px;
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.cta .btn {
  background: white;
  color: var(--blue);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

/* Сайд-панель внутренней */
.side-panel {
  padding: 24px;
}

.side-panel h3 {
  margin: 0 0 16px;
  font-size: 20px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
}

.iconbox {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--blue-soft);
  display: grid;
  place-items: center;
  color: var(--blue);
  font-weight: 900;
  flex: 0 0 auto;
}

.contact-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}

.account_area .main-search .icon {
    right: 0px;
    top: 0px;
}

.account_area .small-cta .iconbox {
    width: 52px;
    height: 52px;
}


.contact-item span,
.contact-item a {
  font-size: 14px;
  color: #475467;
}

.work-badge {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.quick-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  color: #475467;
}

/* footer – вариант внутренней */
footer {
  margin-top: 18px;
  padding: 38px 0 30px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-title {
  font-weight: 900;
  margin-bottom: 14px;
}

footer h4 {
  margin: 0 0 14px;
}

.footer-col a,
.footer-col p {
  display: block;
  color: #475467;
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.4;
}

footer p,
footer a {
  color: #475467;
  font-size: 14px;
  line-height: 1.9;
}

.social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f2f4f7;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.copyright {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.copy {
  margin-top: 28px;
  color: #667085;
  font-size: 13px;
}

/* ==================== */
/* Новые стили каталога */
/* ==================== */

.lead {
  font-size: 20px;
  line-height: 1.45;
  color: #344054;
  max-width: 700px;
  margin: 0 0 28px;
}

.search-panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  max-width: 1120px;
}

.main-search {
  position: relative;
  margin-bottom: 18px;
}

.main-search input {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 48px 0 18px;
  font-size: 15px;
  outline: none;
  background: #fff;
}

.main-search .icon {
  position: absolute;
  right: 18px;
  top: 14px;
  color: var(--muted);
}

.filters {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto auto;
  gap: 14px;
  align-items: end;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 7px;
  color: #344054;
}

select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 0 14px;
  background: #fff;
  color: #475467;
  font-weight: 600;
}

.check {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 14px;
  color: #344054;
  font-weight: 600;
}

.check input {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}

.reset {
  display: block;
  text-align: center;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
}

.link {
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
}

.cat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #1d2939;
  transition: 0.2s;
}

.cat:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
}

.cat svg {
  width: 26px;
  height: 26px;
  color: var(--blue);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 26px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 25px;
  font-weight: 900;
}

.stat strong {
  display: block;
  font-size: 22px;
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.recommended {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mini-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.05);
}

.company-top {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}

.avatar {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
}

.avatar.blue { background: #1769e8; }
.avatar.green { background: #12a37f; }
.avatar.purple { background: #7a5af8; }
.avatar.orange { background: #ff6b2c; }

.company-name {
  font-weight: 800;
  font-size: 17px;
}

.company-meta {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #344054;
}

.verified {
  color: var(--blue);
  font-weight: 800;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 20px;
  align-items: start;
}

.sidebar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
  padding: 22px;
  position: sticky;
  top: 92px;
}

.results {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
}

.sidebar h3 {
  margin: 0 0 18px;
  font-size: 21px;
}

.filter-group {
  margin-bottom: 18px;
}

.filter-group label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #344054;
  margin-bottom: 8px;
}

.stars {
  font-size: 23px;
  letter-spacing: 2px;
  color: #98a2b3;
}

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #475467;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
}

.sidebar .btn {
  width: 100%;
  margin-top: 10px;
}

.sidebar .clear {
  display: block;
  text-align: center;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
}

.results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.results-head strong {
  font-size: 15px;
}

.sort {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #475467;
}

.sort select {
  height: 40px;
  min-width: 150px;
}

.view-toggle {
  display: flex;
  gap: 7px;
}

.view-toggle button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--blue);
  font-weight: 900;
}

/* переопределения для company-card внутри каталога */
.company-card .company-top {
  align-items: flex-start;
}

.small-tags {
  display: flex;
  gap: 6px;
  margin: 7px 0;
}

.tag {
  font-size: 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px 6px;
  color: #475467;
  background: #f8fafc;
}

.info-line {
  font-size: 13px;
  color: #475467;
  margin: 5px 0;
}

.info-line a {
  color: var(--blue);
  font-weight: 700;
}

.desc {
  font-size: 13px;
  color: #344054;
  line-height: 1.4;
  margin: 8px 0 14px;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ghost {
  height: 40px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--blue);
}

.solid {
  height: 40px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  background: var(--blue);
  border: 1px solid var(--blue);
  color: #fff;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0 18px 22px;
}

.page {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #344054;
  font-weight: 700;
}

.page.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.help-strip {
  background: linear-gradient(135deg, #eef6ff, #ffffff);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.help-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.help-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--blue-soft);
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 25px;
}

.help-box h3,
.help-strip h3 {
  margin: 0 0 6px;
  font-size: 19px;
}

.help-box p,
.help-strip p {
  margin: 0;
  color: #475467;
  line-height: 1.45;
  font-size: 14px;
}

.footer_lang_ul{
	width: 100%;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0 12px;
    background: #fff;
}

/* ==================== */
/* Адаптив для каталога */
/* ==================== */
@media (max-width: 980px) {
  .filters {
    grid-template-columns: 1fr 1fr;
  }
  .check,
  .filters .btn {
    grid-column: span 2;
  }
  .catalog-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
  .help-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .lead {
    font-size: 16px;
  }
  .filters,
  .recommended {
    grid-template-columns: 1fr;
  }
  .check,
  .filters .btn {
    grid-column: auto;
  }
  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .stat:last-child {
    border-bottom: 0;
  }
  .results-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

/* ==================== */
/* Адаптив (главная)     */
/* ==================== */
@media (max-width: 1050px) {
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .country-grid,
  .company-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .category-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .directory-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .hero {
    padding-top: 42px;
  }
  .search-box {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .search-box input {
    height: 48px;
  }
  .hero-features,
  .country-grid,
  .company-grid,
  .category-grid,
  .info-grid,
  .directory-top {
    grid-template-columns: 1fr;
  }
  .hero-feature {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .cta-row,
  .cta-left {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ==================== */
/* Адаптив (внутренняя)  */
/* ==================== */
@media (max-width: 1050px) {
  .menu {
    display: none;
  }
  .hero-grid,
  .grid-main,
  .full-cta {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 16px;
  }
  .nav-actions {
    display: none;
  }
  .brand {
    font-size: 21px;
  }
  h1 {
    font-size: 34px;
  }
  .hero-top,
  .identity {
    flex-direction: column;
  }
  .gallery,
  .facts,
  .services-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .info-row {
    flex-direction: column;
  }
  .info-row span {
    text-align: left;
  }
}