:root {
  --pink: #e11d74;
  --pink-2: #c01363;
  --pink-soft: #fff0f6;
  --blue-btn: #1f6feb;
  --blue-btn-2: #1558c0;
  --card-line: #7eb6d9;
  --text: #222;
  --muted: #5c5c5c;
  --bg: #fff;
  --max: 980px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
a { color: var(--pink); }
:focus-visible { outline: 3px solid #7eb6ff; outline-offset: 2px; }

.skip {
  position: absolute;
  left: 8px;
  top: -48px;
  background: #111;
  color: #fff;
  padding: 8px 12px;
  z-index: 40;
}
.skip:focus { top: 8px; }

.wrap { width: min(var(--max), calc(100% - 24px)); margin-inline: auto; }

.topbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 30;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #222;
  font-weight: 800;
  font-size: 1.35rem;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7ec8ff, var(--pink));
}
.logo em { color: var(--pink); font-style: normal; }
.logo small { display: block; font-weight: 600; font-size: .7rem; color: #666; margin-top: -2px; }

.top-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn, .post-btn, .nav-toggle {
  min-height: 44px;
  border-radius: 999px;
  border: 0;
  font: inherit;
  cursor: pointer;
}
.icon-btn { width: 44px; background: #f4f4f4; }
.post-btn {
  background: var(--blue-btn);
  color: #fff;
  padding: 0 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.post-btn:hover { background: var(--blue-btn-2); color: #fff; }
.nav-toggle { display: none; background: #f4f4f4; padding: 0 14px; }
.subnav { display: block; padding: 0 0 12px; }
.subnav ul, .subnav { }
.subnav a {
  display: inline-block;
  padding: 8px 12px 10px 0;
  color: #333;
  text-decoration: none;
  font-weight: 700;
}
.subnav a[aria-current="page"] { color: var(--pink); }

.search-row { padding: 14px 0 8px; }
.search-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 4px 4px 4px 14px;
  gap: 8px;
}
.search-box input {
  flex: 1;
  border: 0;
  min-height: 44px;
  font: inherit;
  outline: none;
}
.search-box button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}
.chips { display: flex; gap: 8px; padding: 8px 0 4px; flex-wrap: wrap; }
.chip {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 999px;
  min-height: 36px;
  padding: 0 12px;
  font: inherit;
  cursor: pointer;
}
.chip.is-on { border-color: var(--pink); color: var(--pink); background: var(--pink-soft); }

.banner {
  margin: 12px 0 18px;
  border-radius: 14px;
  min-height: 180px;
  background-image:
    linear-gradient(90deg, rgba(12,10,20,.72), rgba(12,10,20,.35)),
    url("images/banner14.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 28px 22px;
}
.banner h1 { margin: 0 0 8px; color: var(--pink); font-size: clamp(1.4rem, 4vw, 2rem); }
.banner p { margin: 0; max-width: 60ch; color: #f3e9ef; }

.crumb { color: var(--pink); font-size: .9rem; margin: 0 0 8px; }
.crumb a { color: var(--pink); text-decoration: none; }
.crumb span { color: #888; }
.results-label { margin: 0; color: #444; }
.page-title { margin: 4px 0 14px; font-size: 1.35rem; }

.ad-list { display: grid; gap: 14px; }
.ad {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 14px;
  border: 1px solid var(--card-line);
  border-radius: 10px;
  padding: 10px;
  background: #fff;
  text-align: left;
  width: 100%;
  font: inherit;
  color: inherit;
  cursor: pointer;
  position: relative;
}
.ad:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.badge {
  position: absolute;
  top: 8px;
  right: 10px;
  color: #1a73c7;
  font-size: .75rem;
  font-weight: 700;
}

.carousel {
  position: relative;
  height: 168px;
  border-radius: 8px;
  overflow: hidden;
  background: #222;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .45s ease;
}
.slide.is-on { opacity: 1; }
.slide img, .prof-pics img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.prof-pics img { min-height: 160px; border-radius: 8px; }
.slide-label {
  position: absolute;
  left: 6px;
  bottom: 6px;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: .7rem;
  padding: 2px 6px;
  border-radius: 4px;
}

.ad-body h2 {
  margin: 0 48px 6px 0;
  font-size: 1rem;
  color: var(--pink);
  line-height: 1.35;
}
.ad-body p { margin: 0 0 10px; color: #333; font-size: .92rem; }
.meta { display: flex; flex-wrap: wrap; gap: 12px; color: #555; font-size: .85rem; }
.actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 8px;
}
.orb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .8rem;
  border: 0;
  cursor: pointer;
}
.orb.call { background: #ff4f9a; }
.orb.wa { background: #25d366; }
.orb.tg { background: #2aa1d8; }

.pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 22px 0 36px;
}
.pager button {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  font: inherit;
  cursor: pointer;
}
.pager button[aria-current="page"] {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: none;
  z-index: 50;
  padding: 16px;
  overflow: auto;
}
.modal.is-open { display: block; }
.sheet {
  width: min(820px, 100%);
  margin: 24px auto;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
}
.sheet-top { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.close {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
}
.prof-pics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 12px 0;
}
.prof-pics div {
  min-height: 160px;
  border-radius: 8px;
}
.stars { color: #f5a623; }
table { width: 100%; border-collapse: collapse; margin-top: 10px; }
th, td { border: 1px solid #eee; padding: 10px; text-align: left; }

.site-footer {
  border-top: 1px solid #eee;
  padding: 20px 0 28px;
  color: #666;
  font-size: .9rem;
}


.block { padding: 8px 0 28px; }
.block h2 { color: #222; font-size: 1.35rem; margin: 0 0 10px; }
.block p { color: #444; }
.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.premium-card {
  border: 1px solid var(--card-line);
  border-radius: 10px;
  padding: 16px;
  background: var(--pink-soft);
}
.premium-card h3 { margin: 0 0 6px; color: var(--pink); font-size: 1rem; }
.rate-table { width: 100%; border-collapse: collapse; background: #fff; }
.rate-table th { background: var(--pink); color: #fff; }
.rate-table th, .rate-table td { border: 1px solid #f3c2d8; padding: 12px; }
.faq details {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
  background: #fff;
}
.faq summary { cursor: pointer; font-weight: 700; color: var(--pink-2); }
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.review {
  border: 1px solid var(--card-line);
  border-radius: 10px;
  padding: 14px;
}
.review strong { color: var(--pink); }
.map-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.map-box, .home-form {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  min-height: 320px;
}
.map-box iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }
.home-form { padding: 16px; background: #fff; }
.home-form label { display: block; margin-bottom: 10px; font-size: .92rem; }
.home-form input, .home-form textarea, .home-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 10px;
  font: inherit;
}
.home-form textarea { min-height: 90px; }
.home-form button {
  background: var(--blue-btn);
  color: #fff;
  border: 0;
  border-radius: 8px;
  min-height: 44px;
  padding: 0 16px;
  font-weight: 700;
  cursor: pointer;
}
.rta {
  display: inline-block;
  background: #6b7280;
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 6px 10px;
  border-radius: 6px;
  margin: 8px 0 12px;
}
.foot-top { padding: 28px 0 10px; border-top: 1px solid #eee; }
.foot-intro { color: #666; max-width: 52ch; margin: 0 0 18px; }
.foot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.foot-grid h3 { margin: 0 0 8px; font-size: .95rem; }
.foot-grid a, .foot-grid p { color: #333; text-decoration: none; display: block; margin: 6px 0; font-size: .9rem; }
.boost-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 22px 0;
  align-items: center;
}
.boost-row .post-btn { justify-content: center; min-height: 48px; border-radius: 8px; }
.country-box {
  border: 1px solid #ddd;
  border-radius: 8px;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: #444;
}
.pay-row { color: #888; font-size: .85rem; margin: 8px 0 16px; }
.foot-bottom {
  background: #2b2b2b;
  color: #ddd;
  text-align: center;
  padding: 22px 12px 28px;
}
.socials { display: flex; justify-content: center; gap: 16px; margin-bottom: 8px; }
.socials a { color: #fff; text-decoration: none; }
.to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 14px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
}
@media (max-width: 720px) {
  .map-contact, .boost-row, .foot-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .subnav { display: none; }
  .subnav.is-open { display: block; }
  .subnav a { display: block; padding: 10px 0; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; align-items: center; }
  .ad {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 10px;
    padding: 8px;
    align-items: start;
  }
  .carousel {
    width: 110px;
    height: 132px;
    min-height: 132px;
    flex: 0 0 110px;
  }
  .slide,
  .slide.is-on {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .slide img {
    width: 100%;
    height: 132px;
    object-fit: cover;
    object-position: center top;
  }
  .ad-body h2 {
    font-size: .86rem;
    margin: 0 36px 4px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .ad-body p {
    font-size: .78rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
  }
  .meta { font-size: .75rem; gap: 8px; }
  .actions { margin-top: 4px; }
  .orb { width: 34px; height: 34px; font-size: .68rem; }
  .badge { top: 4px; right: 6px; font-size: .65rem; }
  .prof-pics { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .ad { grid-template-columns: 92px 1fr; gap: 8px; }
  .carousel {
    width: 92px;
    height: 118px;
    min-height: 118px;
    flex: 0 0 92px;
  }
  .slide img { height: 118px; }
}
