*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #C8102E;
  --red-d: #A00D23;
  --red-l: #FFF0F2;
  --red-m: #FECDD3;

  --dark: #0F172A;
  --g50: #F8FAFC;
  --g100: #F1F5F9;
  --g200: #E2E8F0;
  --g300: #CBD5E1;
  --g400: #94A3B8;
  --g500: #64748B;
  --g600: #475569;
  --g700: #334155;
  --g800: #1E293B;
  --g900: #0F172A;

  --gold: #F59E0B;
  --gold-bg: #FFFBEB;

  --green: #10B981;
  --green-bg: #ECFDF5;

  --r: 12px;
  --rsm: 8px;
  --rlg: 18px;

  --sh: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .04);
  --sh-md: 0 8px 24px rgba(15, 23, 42, .08);
  --sh-lg: 0 20px 50px rgba(0, 0, 0, .18);

  --tr: .18s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--g900);
  background: #fff;
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.hidden {
  display: none !important;
}

.page {
  display: none;
}

.page.active {
  display: block;
}

.errorlist {
  list-style: none;
  margin-top: 4px;
  color: #DC2626;
  font-size: 12px;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 84px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1.5px solid var(--g200);
  position: sticky;
  top: 0;
  z-index: 200;
}

.logo {
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
  color: var(--dark);
  letter-spacing: -.5px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.logo em {
  color: var(--red);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-link {
  height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--g600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--g100);
  color: var(--g900);
}

.nav-link.active {
  background: var(--red-l);
  color: var(--red);
}

.exp-search-wrap {
  flex: 1 1 420px;
  max-width: 620px;
  min-width: 280px;
  position: relative;
}

.exp-search-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--g400);
  pointer-events: none;
}

.exp-search {
  width: 100%;
  height: 52px;
  padding: 0 16px 0 44px;
  border: 1.5px solid var(--g200);
  border-radius: 18px;
  background: var(--g50);
  color: var(--g900);
  font-size: 14px;
  outline: none;
  transition: var(--tr);
}

.exp-search::placeholder {
  color: var(--g400);
}

.exp-search:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200, 16, 46, .06);
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.lang-sw {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1.5px solid var(--g200);
  border-radius: 14px;
  padding: 4px;
  background: #fff;
}

.lang-btn {
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--g500);
  cursor: pointer;
  transition: var(--tr);
}

.lang-btn.active {
  background: var(--red);
  color: #fff;
}

.btn-apply {
  min-width: 190px;
  height: 52px;
  padding: 0 24px;
  border: none;
  border-radius: 16px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  transition: var(--tr);
}

.btn-apply:hover {
  background: var(--red-d);
  transform: translateY(-1px);
}

/* =========================
   HOME PAGE
========================= */

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  min-height: calc(100dvh - 84px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--g900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #1a0a10 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 16, 46, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 16, 46, .07) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 16, 46, .18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  gap: 72px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200, 16, 46, .15);
  border: 1px solid rgba(200, 16, 46, .3);
  color: var(--red-m);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 999px;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  max-width: 620px;
  font-family: 'Montserrat', sans-serif;
  font-size: 68px;
  font-weight: 800;
  line-height: 1.0;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 26px;
}

.hero-title em {
  color: var(--red);
  font-style: normal;
  display: block;
}

.hero-sub {
  max-width: 560px;
  font-size: 16px;
  color: #A7B2C8;
  line-height: 1.8;
  margin-bottom: 34px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-sec {
  height: 54px;
  padding: 0 28px;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
}

.btn-hero-primary {
  background: var(--red);
  color: #fff;
}

.btn-hero-primary:hover {
  background: var(--red-d);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 16, 46, .35);
}

.btn-hero-sec {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .18);
  color: #fff;
}

.btn-hero-sec:hover {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .34);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 38px;
  max-width: 560px;
}

.hstat {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}

.hstat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  display: block;
  letter-spacing: -1px;
}

.hstat-lbl {
  font-size: 12px;
  color: #75819A;
  letter-spacing: .3px;
}

.hero-mockup {
  position: relative;
}

.mockup-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.mockup-card + .mockup-card {
  margin-top: 14px;
}

.mc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.mc-ava {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.mc-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.mc-tag {
  font-size: 11px;
  color: #7F8AA1;
}

.mc-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
}

.mc-bar {
  height: 4px;
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
  margin-top: 10px;
  overflow: hidden;
}

.mc-fill {
  height: 100%;
  background: var(--red);
  border-radius: 999px;
}

.mc-addr {
  font-size: 11px;
  color: #7F8AA1;
  margin-top: 8px;
}

.pm-badge {
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--gold);
  color: #92400E;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
}

/* =========================
   SECTIONS
========================= */

.section {
  padding: 80px 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-full {
  padding: 80px 0;
  background: var(--g50);
  border-top: 1px solid var(--g200);
  border-bottom: 1px solid var(--g200);
}

.section-full .section {
  padding: 0 32px;
  padding-top: 0;
}

.sec-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sec-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--g900);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.sec-sub {
  font-size: 15px;
  color: var(--g500);
  max-width: 520px;
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--g200);
  border: 1px solid var(--g200);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 48px;
}

.step {
  background: #fff;
  padding: 28px 22px;
}

.step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--red-m);
  line-height: 1;
  margin-bottom: 14px;
}

.step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--g900);
  margin-bottom: 6px;
}

.step-text {
  font-size: 12px;
  color: var(--g500);
  line-height: 1.6;
}

.feats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.feat {
  border: 1.5px solid var(--g200);
  border-radius: var(--r);
  padding: 24px;
  background: #fff;
  transition: var(--tr);
}

.feat:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.feat-icon {
  width: 42px;
  height: 42px;
  background: var(--red-l);
  border-radius: var(--rsm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}

.feat-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--g900);
  margin-bottom: 6px;
}

.feat-text {
  font-size: 12px;
  color: var(--g500);
  line-height: 1.65;
}

.cta-banner {
  background: var(--g900);
  padding: 72px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(200, 16, 46, .12) 0%, transparent 70%);
}

.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 14px;
  position: relative;
}

.cta-sub {
  font-size: 15px;
  color: #94A3B8;
  margin-bottom: 32px;
  position: relative;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.footer {
  background: var(--g900);
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 40px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  letter-spacing: -.4px;
}

.footer-logo em {
  color: var(--red);
  font-style: normal;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-link {
  font-size: 12px;
  color: #64748B;
  transition: var(--tr);
}

.footer-link:hover {
  color: #94A3B8;
}

.footer-copy {
  font-size: 11px;
  color: #475569;
}

/* =========================
   EXPLORE PAGE
========================= */

.explore-v2.exp-layout {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 84px);
  height: calc(100dvh - 84px);
  background: var(--g50);
  overflow: hidden;
}

.explore-v2 .filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 18px;
  background: #fff;
  border-bottom: 1px solid var(--g200);
  flex-shrink: 0;
  overflow-x: auto;
}

.explore-v2 .filter-bar::-webkit-scrollbar {
  display: none;
}

.explore-v2 .flabel {
  font-size: 10px;
  font-weight: 700;
  color: var(--g400);
  text-transform: uppercase;
  letter-spacing: .7px;
  white-space: nowrap;
}

.explore-v2 .filter-select {
  height: 42px;
  min-width: 165px;
  padding: 0 34px 0 14px;
  border: 1.5px solid var(--g200);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--g900);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5' viewBox='0 0 9 5'%3E%3Cpath d='M0 0l4.5 5L9 0z' fill='%2394A3B8'/%3E%3C/svg%3E") no-repeat right 12px center;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: var(--tr);
  flex-shrink: 0;
}

.explore-v2 .filter-select:focus {
  border-color: var(--red);
}

.explore-v2 .sep {
  width: 1px;
  height: 22px;
  background: var(--g200);
  flex-shrink: 0;
}

.explore-v2 .pills {
  display: flex;
  gap: 8px;
  align-items: center;
}

.explore-v2 .pill {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  border: 1.5px solid var(--g200);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--g500);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--tr);
  flex-shrink: 0;
}

.explore-v2 .pill:hover {
  border-color: var(--red);
  color: var(--red);
}

.explore-v2 .pill.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* GLAVNI LAYOUT: MANJA LEVA KOLONA, VECA MAPA */
.explore-v2 .exp-main {
  display: grid;
  grid-template-columns: 440px minmax(0, 1fr);
  gap: 0;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.explore-v2 .results-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  background: var(--g50);
  border-right: 1px solid var(--g200);
}

.explore-v2 .results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: var(--g50);
  border-bottom: 1px solid var(--g200);
  flex-shrink: 0;
}

.explore-v2 .rcount {
  font-size: 16px;
  color: var(--g500);
}

.explore-v2 .rcount strong {
  color: var(--g900);
  font-weight: 700;
}

.explore-v2 .sort-sel {
  height: 44px;
  min-width: 148px;
  padding: 0 14px;
  border: 1px solid var(--g200);
  border-radius: 14px;
  font-size: 14px;
  color: var(--g700);
  background: #fff;
  cursor: pointer;
  outline: none;
}

/* LEVA LISTA SKROLUJE */
.explore-v2 .results-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
}

.explore-v2 .results-list::-webkit-scrollbar {
  width: 10px;
}

.explore-v2 .results-list::-webkit-scrollbar-thumb {
  background: var(--g300);
  border-radius: 999px;
}

.explore-v2 .results-list::-webkit-scrollbar-track {
  background: transparent;
}

/* KOMPAKTNA KARTICA */
.explore-v2 .dir-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  grid-auto-rows: auto; /* row height always determined by content, never clamps */
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  background: #fff;
  border: 2px solid #F6C343;
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
  transition: var(--tr);
  overflow: clip; /* clips visuals but never constrains block height */
}

.explore-v2 .dir-card:not(.prem) {
  border-color: #D7DEE8;
}

.explore-v2 .dir-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--sh-md);
}

.explore-v2 .dir-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.explore-v2 .dir-card__logo,
.explore-v2 .dir-card__body {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.explore-v2 .dir-card__logo {
  width: 64px;
  height: 64px;
  min-width: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: 18px;
  overflow: hidden;
}

.explore-v2 .dir-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  box-sizing: border-box;
  display: block;
}

.explore-v2 .dir-card__initials {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.explore-v2 .dir-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 1px;
}

.explore-v2 .dir-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.explore-v2 .dir-card__text {
  min-width: 0;
  flex: 1;
}

.explore-v2 .dir-card__name {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--g900);
  overflow-wrap: anywhere;
}

.explore-v2 .dir-card__category {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.explore-v2 .dir-card__plan {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1.5px solid #F6C343;
  background: #FFF8DC;
  color: #A16207;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.explore-v2 .dir-card__address {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding-top: 8px;
  border-top: 1px solid var(--g100);
  font-size: 13px;
  line-height: 1.35;
  color: var(--g600);
}

.explore-v2 .dir-card__pin {
  flex-shrink: 0;
  margin-top: 1px;
}

.explore-v2 .no-res {
  text-align: center;
  padding: 40px 20px;
  color: var(--g400);
}


/* MAPA */
.explore-v2 .map-panel {
  position: relative;
  min-width: 0;
  min-height: 0;
  height: 100%;
  background: #B0CCDF;
  overflow: hidden;
}

.explore-v2 .leaflet-map {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.explore-v2 .map-label {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--g200);
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 700;
  color: var(--g700);
  box-shadow: var(--sh);
  z-index: 500;
}

.explore-v2 .map-empty-note {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 500;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--g200);
  background: rgba(255, 255, 255, .96);
  color: var(--g700);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--sh);
}

.explore-v2 .hidden {
  display: none !important;
}

.explore-v2 .leaflet-container {
  font-family: 'DM Sans', sans-serif;
  background: #B0CCDF;
}

.explore-v2 .leaflet-top.leaflet-right {
  top: 16px;
  right: 16px;
}

.explore-v2 .leaflet-control-zoom {
  border: 1px solid var(--g200) !important;
  border-radius: 14px !important;
  overflow: hidden;
  box-shadow: var(--sh) !important;
}

.explore-v2 .leaflet-control-zoom a {
  width: 46px !important;
  height: 46px !important;
  line-height: 46px !important;
  font-size: 22px !important;
  color: var(--g600) !important;
  background: #fff !important;
  border-bottom: 1px solid var(--g200) !important;
}

.explore-v2 .leaflet-control-zoom a:last-child {
  border-bottom: none !important;
}

.explore-v2 .leaflet-control-attribution {
  font-size: 11px;
}

.explore-v2 .company-marker {
  background: transparent;
  border: none;
}

.explore-v2 .company-marker__bubble {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  border: 3px solid #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .20);
  transition: transform .15s ease, box-shadow .15s ease;
}

.explore-v2 .company-marker.is-active .company-marker__bubble {
  transform: scale(1.08);
  box-shadow: 0 12px 26px rgba(200, 16, 46, .28);
}

.explore-v2 .dir-card.is-active {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, .10);
}

.explore-v2 .map-popup {
  min-width: 210px;
}

.explore-v2 .map-popup__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--g900);
  margin-bottom: 4px;
  line-height: 1.3;
}

.explore-v2 .map-popup__meta {
  font-size: 12px;
  color: var(--g500);
  margin-bottom: 8px;
}

.explore-v2 .map-popup__address {
  font-size: 13px;
  color: var(--g600);
  line-height: 1.5;
  margin-bottom: 12px;
}

.explore-v2 .map-popup__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.explore-v2 .map-popup__btn {
  height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.explore-v2 .map-popup__btn--ghost {
  background: #fff;
  color: var(--g700);
  border: 1px solid var(--g200);
}
@media (max-width: 1600px) {
  .explore-v2 .exp-main {
    grid-template-columns: 430px minmax(0, 1fr);
  }
}

/* 1400 i manje */
@media (max-width: 1400px) {
  .explore-v2 .exp-main {
    grid-template-columns: 410px minmax(0, 1fr);
  }

  .explore-v2 .dir-card {
    grid-template-columns: 60px minmax(0, 1fr);
    padding: 11px 12px;
    gap: 10px;
  }

  .explore-v2 .dir-card__logo,
  .explore-v2 .dir-card__logo img,
  .explore-v2 .dir-card__initials {
    width: 60px;
    height: 60px;
  }

  .explore-v2 .dir-card__logo img,
  .explore-v2 .dir-card__initials {
    border-radius: 16px;
  }

  .explore-v2 .dir-card__name {
    font-size: 15px;
  }

  .explore-v2 .dir-card__address {
    font-size: 12.5px;
  }
}
/* tablet / mobile */
@media (max-width: 1180px) {
  .explore-v2.exp-layout {
    height: auto;
    min-height: calc(100vh - 84px);
    min-height: calc(100dvh - 84px);
  }

  .explore-v2 .exp-main {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .explore-v2 .results-panel {
    border-right: none;
    border-bottom: 1px solid var(--g200);
  }

  .explore-v2 .results-list {
    max-height: none;
    overflow: visible;
  }

  .explore-v2 .map-panel {
    min-height: 420px;
    height: 420px;
  }
}

@media (max-width: 760px) {
  .explore-v2 .results-list {
    padding: 12px;
    gap: 12px;
  }

  .explore-v2 .dir-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 13px;
    border-radius: 20px;
  }

  .explore-v2 .dir-card__logo,
  .explore-v2 .dir-card__logo img,
  .explore-v2 .dir-card__initials {
    width: 64px;
    height: 64px;
  }

  .explore-v2 .dir-card__logo img,
  .explore-v2 .dir-card__initials {
    border-radius: 18px;
  }

  .explore-v2 .dir-card__top {
    flex-direction: column;
    gap: 10px;
  }

  .explore-v2 .dir-card__plan {
    align-self: flex-start;
  }

  .explore-v2 .dir-card__name {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .explore-v2 .dir-card__category {
    font-size: 12px;
    padding: 6px 10px;
  }

  .explore-v2 .dir-card__address {
    font-size: 13px;
    padding-top: 8px;
  }

  .explore-v2 .results-header {
    padding: 12px;
  }
}
/* =========================
   APPLY PAGE
========================= */

.apply-layout {
  min-height: calc(100vh - 84px);
  min-height: calc(100dvh - 84px);
  background: var(--g50);
  padding: 48px 24px;
}

.apply-inner {
  max-width: 680px;
  margin: 0 auto;
}

.apply-head {
  text-align: center;
  margin-bottom: 40px;
}

.apply-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--g900);
  letter-spacing: -.8px;
  margin-bottom: 10px;
}

.apply-sub {
  font-size: 15px;
  color: var(--g500);
  line-height: 1.7;
}

.form-card {
  background: #fff;
  border: 1.5px solid var(--g200);
  border-radius: var(--r);
  padding: 32px;
  box-shadow: var(--sh);
}

.form-section {
  margin-bottom: 28px;
}

.form-section-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--g200);
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.fg:last-child {
  margin-bottom: 0;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.flbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--g700);
}

.flbl span {
  color: var(--red);
}

.finput,
.fselect {
  height: 42px;
  padding: 0 13px;
  border: 1.5px solid var(--g200);
  border-radius: var(--rsm);
  font-size: 13px;
  color: var(--g900);
  background: #fff;
  outline: none;
  transition: var(--tr);
  width: 100%;
}

.finput::placeholder,
.ftextarea::placeholder {
  color: var(--g300);
}

.finput:focus,
.fselect:focus,
.ftextarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, .08);
}

.fselect {
  padding-right: 30px;
  appearance: none;
  cursor: pointer;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5' viewBox='0 0 9 5'%3E%3Cpath d='M0 0l4.5 5L9 0z' fill='%2394A3B8'/%3E%3C/svg%3E") no-repeat right 11px center;
}

.ftextarea {
  padding: 11px 13px;
  border: 1.5px solid var(--g200);
  border-radius: var(--rsm);
  font-size: 13px;
  color: var(--g900);
  background: #fff;
  outline: none;
  transition: var(--tr);
  resize: vertical;
  min-height: 90px;
  width: 100%;
  line-height: 1.5;
}

.submit-btn {
  width: 100%;
  height: 50px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--rsm);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--tr);
  margin-top: 10px;
  letter-spacing: .2px;
}

.submit-btn:hover {
  background: var(--red-d);
  transform: translateY(-1px);
}

.submit-btn:disabled {
  background: var(--g300);
  cursor: not-allowed;
  transform: none;
}

.form-note {
  font-size: 11px;
  color: var(--g400);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

.form-consent {
  margin-top: 16px;
  margin-bottom: 8px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--red);
  width: 15px;
  height: 15px;
}

.consent-text {
  font-size: 12px;
  color: var(--g500);
  line-height: 1.55;
}

.consent-text a {
  color: var(--red);
  text-decoration: underline;
}

.consent-text a:hover {
  color: var(--red-d);
}

.success-box {
  background: var(--green-bg);
  border: 1.5px solid #6EE7B7;
  border-radius: var(--r);
  padding: 32px;
  text-align: center;
  display: none;
}

.success-box.show {
  display: block;
}

.success-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.success-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #065F46;
  margin-bottom: 8px;
}

.success-text {
  font-size: 13px;
  color: #047857;
  line-height: 1.65;
}

/* =========================
   DETAIL PAGE
========================= */

.detail-page {
  background: var(--g50);
  min-height: calc(100vh - 84px);
  min-height: calc(100dvh - 84px);
  padding: 32px 24px 60px;
}

.detail-container {
  max-width: 1180px;
  margin: 0 auto;
}

.detail-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  gap: 12px;
  flex-wrap: wrap;
}

.back-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--g600);
}

.back-link:hover {
  color: var(--red);
}

.detail-plan-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--gold-bg);
  color: #92400E;
  border: 1px solid #FCD34D;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
}

.detail-hero {
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: var(--rlg);
  padding: 28px;
  box-shadow: var(--sh);
  margin-bottom: 20px;
}

.detail-hero-main {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.detail-avatar {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  flex-shrink: 0;
}

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

.detail-category-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
}

.detail-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 10px;
  color: var(--g900);
}

.detail-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--g500);
  margin-bottom: 14px;
}

.detail-stars {
  color: var(--gold);
}

.detail-dot {
  color: var(--g300);
}

.verified-text {
  color: #059669;
  font-weight: 700;
}

.detail-description {
  font-size: 15px;
  line-height: 1.75;
  color: var(--g600);
  max-width: 820px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
}

.detail-main,
.detail-sidebar {
  min-width: 0;
}

.detail-card {
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: var(--rlg);
  padding: 24px;
  box-shadow: var(--sh);
  margin-bottom: 20px;
}

.detail-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--g900);
  margin-bottom: 16px;
}

.detail-paragraph {
  font-size: 14px;
  line-height: 1.8;
  color: var(--g600);
}

.location-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-line {
  font-size: 14px;
  color: var(--g700);
}

.location-map-placeholder {
  min-height: 220px;
  border: 1.5px dashed var(--g300);
  border-radius: var(--r);
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g500);
  font-size: 14px;
  text-align: center;
  padding: 20px;
}

.info-list,
.profile-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--g400);
}

.info-value {
  font-size: 14px;
  color: var(--g800);
  word-break: break-word;
}

.detail-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.detail-btn-primary,
.detail-btn-secondary {
  height: 42px;
  border-radius: var(--rsm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  transition: var(--tr);
}

.detail-btn-primary {
  background: var(--red);
  color: #fff;
}

.detail-btn-primary:hover {
  background: var(--red-d);
}

.detail-btn-secondary {
  border: 1.5px solid var(--g200);
  color: var(--g700);
  background: #fff;
}

.detail-btn-secondary:hover {
  border-color: var(--g400);
}

.profile-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--g700);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--g100);
}

.profile-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.related-card {
  border: 1.5px solid var(--g200);
  border-radius: var(--r);
  padding: 16px;
  background: var(--g50);
}

.related-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.related-avatar {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  flex-shrink: 0;
}

.related-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--g900);
  margin-bottom: 4px;
}

.related-meta {
  font-size: 12px;
  color: var(--g500);
}

.related-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--g500);
  margin-bottom: 12px;
}

.related-link {
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
}

.related-link:hover {
  color: var(--red-d);
}

/* =========================
   LOGO SUPPORT
========================= */

.avatar-logo,
.detail-avatar-logo,
.mc-ava-logo,
.related-avatar-logo {
  background: #fff !important;
  border: 1px solid var(--g200);
  overflow: hidden;
  padding: 6px;
}

.avatar-logo img,
.detail-avatar-logo img,
.mc-ava-logo img,
.related-avatar-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.detail-avatar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mc-ava-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1280px) {
  .navbar {
    flex-wrap: wrap;
    gap: 12px;
  }

  .exp-search-wrap {
    order: 10;
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 0;
  }

  .nav-right {
    margin-left: 0;
  }

  .exp-main {
    grid-template-columns: 560px minmax(0, 1fr);
  }
}

@media (max-width: 1100px) {
  .exp-main {
    grid-template-columns: 1fr;
  }

  .results-list {
    max-height: none;
    overflow: visible;
  }

  .map-panel {
    position: relative;
    top: auto;
    min-height: 420px;
    height: 420px;
  }

  .map-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .steps-grid,
  .feats-grid,
  .frow,
  .related-grid,
  .detail-grid {
    grid-template-columns: 1fr !important;
  }

  .detail-hero-main {
    flex-direction: column;
  }

  .detail-title {
    font-size: 28px;
  }
}

@media (max-width: 760px) {
  .navbar {
    padding: 12px 16px;
  }

  .nav-right {
    width: 100%;
    justify-content: space-between;
  }

  .btn-apply {
    min-width: 0;
    flex: 1;
  }

  .filter-bar {
    padding: 10px 12px;
  }

  .results-list {
    padding: 12px;
    gap: 12px;
  }

    .card.card--listing {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
    min-height: 132px;
    border-radius: 22px;
  }

  .card-logo {
    width: 72px;
    height: 72px;
    min-width: 72px;
  }

  .card-initials {
    font-size: 28px;
    border-radius: 20px;
  }

  .card-row-top {
    flex-direction: column;
    gap: 12px;
  }

  .card-plan {
    align-self: flex-start;
  }

  .card-name {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .card-category {
    font-size: 13px;
    padding: 7px 12px;
  }

  .card-address {
    font-size: 14px;
    padding-top: 14px;
  }

  .hero-title {
    font-size: 44px;
    letter-spacing: -1px;
  }

  .hero-btns,
  .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .footer {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
}
.detail-price-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #FFF8DC;
  border: 1px solid #F6C343;
}

.detail-price-label {
  font-size: 12px;
  font-weight: 700;
  color: #A16207;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.detail-price-value {
  font-size: 20px;
  font-weight: 800;
  color: #92400E;
}

.detail-coupon-card {
  border-color: #FCD34D;
}

.coupon-banner {
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FFF8DC 0%, #FFFBEB 100%);
  border: 1px solid #FCD34D;
  color: #92400E;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--g100);
}

.service-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-main {
  min-width: 0;
  flex: 1;
}

.service-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--g900);
  line-height: 1.35;
}

.service-desc {
  margin-top: 4px;
  font-size: 13px;
  color: var(--g500);
  line-height: 1.55;
}

.service-side {
  flex-shrink: 0;
  text-align: right;
}

.service-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--red);
}

.service-price-muted {
  font-size: 13px;
  font-weight: 600;
  color: var(--g500);
}

@media (max-width: 760px) {
  .service-row {
    flex-direction: column;
    gap: 10px;
  }

  .service-side {
    text-align: left;
  }

  .detail-price-value {
    font-size: 18px;
  }
}
/* =========================
   HOMEPAGE REDESIGN
========================= */

/* Centered hero (new layout — removes the two-column grid) */
.hero--centered .hero-content,
.hero--centered {
  display: block;
}

.hero--centered .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 32px 72px;
  text-align: center;
}

.hero--centered .hero-eyebrow {
  display: inline-flex;
  justify-content: center;
}

.hero--centered .hero-title {
  font-size: 62px;
  max-width: 100%;
  text-align: center;
}

.hero--centered .hero-sub {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 36px;
}

.hero-glow--left {
  top: auto;
  bottom: -80px;
  left: -100px;
  right: auto;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,16,46,.10) 0%, transparent 70%);
}

/* Hero search bar */
/* ── Homepage search form ─────────────────────────────────────────────────── */

.hs-form {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,.30);
  max-width: 720px;
  margin: 0 auto 28px;
  overflow: visible; /* MUST be visible — the dropdown panel escapes this container */
}

/* Each input slot */
.hs-field {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding: 0 20px;
  min-width: 0;
}

/* The category field is the positioning parent of the dropdown panel */
.hs-field--cat {
  position: relative;
}

.hs-icon {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,.55);
  flex-shrink: 0;
}

/* Thin vertical divider between fields */
.hs-divider {
  width: 1px;
  background: rgba(255,255,255,.18);
  margin: 12px 0;
  flex-shrink: 0;
}

/* ── Custom select ── */

.hs-select {
  flex: 1;
  min-width: 0;
}

.hs-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  height: 56px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  text-align: left;
  outline: none;
}

.hs-value {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(255,255,255,.55);
  font-size: 15px;
  line-height: 1;
}

.hs-value.has-value {
  color: #fff;
}

.hs-chevron {
  width: 15px;
  height: 15px;
  color: rgba(255,255,255,.5);
  flex-shrink: 0;
  transition: transform .18s ease;
}

.hs-trigger[aria-expanded="true"] .hs-chevron {
  transform: rotate(180deg);
}

/* Dropdown panel — positioned relative to .hs-field--cat */
.hs-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  min-width: 260px;
  background: var(--g800);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,.45);
  max-height: 320px;
  overflow-y: auto;
  z-index: 600;
  animation: hsFadeIn .13s ease-out;
}

@keyframes hsFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hs-option {
  padding: 11px 18px;
  font-size: 14px;
  color: rgba(255,255,255,.80);
  cursor: pointer;
  transition: background .1s, color .1s;
}

.hs-option:first-child { border-radius: 14px 14px 0 0; }
.hs-option:last-child  { border-radius: 0 0 14px 14px; }

.hs-option:hover,
.hs-option:focus {
  background: rgba(200,16,46,.25);
  color: #fff;
  outline: none;
}

.hs-option[aria-selected="true"] {
  background: rgba(200,16,46,.35);
  color: #fff;
  font-weight: 500;
}

/* ── Location text input ── */

.hs-input {
  flex: 1;
  height: 56px;
  border: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #fff;
  outline: none;
  min-width: 0;
}

.hs-input::placeholder {
  color: rgba(255,255,255,.55);
}

/* ── Submit button ── */

.hs-btn {
  flex-shrink: 0;
  align-self: center;
  margin: 6px 6px 6px 0;
  height: 44px;
  padding: 0 26px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--tr);
  white-space: nowrap;
  letter-spacing: .3px;
}

.hs-btn:hover { background: var(--red-d); }

/* Category chips on hero */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 16px;
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 600;
  transition: var(--tr);
  white-space: nowrap;
}

.hero-chip:hover {
  border-color: var(--red);
  background: rgba(200,16,46,.15);
  color: #fff;
}

/* Steps — 3 column version */
.steps-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.step-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

/* White section (testimonials) */
.section-white {
  background: #fff;
  border-top: 1px solid var(--g200);
  border-bottom: 1px solid var(--g200);
  padding: 80px 0;
}

.section-white .section { padding-top: 0; }

/* Testimonial cards */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--g50);
  border: 1.5px solid var(--g200);
  border-radius: var(--rlg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tcard-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1px;
}

.tcard-text {
  font-size: 13px;
  color: var(--g600);
  line-height: 1.7;
  flex: 1;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tcard-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--g300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--g600);
  flex-shrink: 0;
}

.tcard-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--g900);
}

.tcard-role {
  font-size: 11px;
  color: var(--g400);
}

/* Popular searches */
.popular-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.popular-chip {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  border: 1.5px solid var(--g200);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--g700);
  transition: var(--tr);
  white-space: nowrap;
}

.popular-chip:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
  box-shadow: var(--sh);
}

/* CTA banner inner */
.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* =========================
   EXPLORE REDESIGN
========================= */

/* Integrated country + search combo */
.search-combo {
  display: flex;
  align-items: center;
  height: 44px;
  border: 1.5px solid var(--g200);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
  min-width: 360px;
  max-width: 480px;
}

.country-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--g700);
}

.cp-flag { font-size: 18px; }
.cp-name { max-width: 100px; overflow: hidden; text-overflow: ellipsis; }

.cp-arrow {
  width: 10px;
  height: 6px;
  color: var(--g400);
  flex-shrink: 0;
}

.cp-select {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
}

.combo-divider {
  width: 1px;
  height: 24px;
  background: var(--g200);
  flex-shrink: 0;
}

.combo-search {
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  padding: 0 14px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--g900);
  background: transparent;
  min-width: 0;
}

.combo-search::placeholder { color: var(--g400); }

/* Advanced filter bar */
.adv-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 8px 18px;
  background: var(--g50);
  border-bottom: 1px solid var(--g200);
  flex-shrink: 0;
  overflow-x: auto;
}

.adv-filter-bar::-webkit-scrollbar { display: none; }

.adv-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 14px;
  border: 1.5px solid var(--g200);
  border-radius: 12px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--g600);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--tr);
  flex-shrink: 0;
}

.adv-btn:hover { border-color: var(--red); color: var(--red); }

.adv-btn--active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.adv-select {
  height: 36px;
  padding: 0 32px 0 12px;
  border: 1.5px solid var(--g200);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--g700);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5' viewBox='0 0 9 5'%3E%3Cpath d='M0 0l4.5 5L9 0z' fill='%2394A3B8'/%3E%3C/svg%3E") no-repeat right 10px center;
  appearance: none;
  outline: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--tr);
}

.adv-select:focus { border-color: var(--red); }

.adv-spacer { flex: 1; }

/* Plan badges on cards */
.plan-badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.plan-badge--business {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border: 1.5px solid #F59E0B;
  color: #78350F;
}

.plan-badge--premium {
  background: #EFF6FF;
  border: 1.5px solid #BFDBFE;
  color: #1D4ED8;
}

.plan-badge--basic {
  background: var(--g100);
  border: 1.5px solid var(--g200);
  color: var(--g500);
}

/* Business-tier card gold frame */
.explore-v2 .dir-card.is-business {
  border-color: #F59E0B;
  box-shadow: 0 0 0 1px rgba(245,158,11,.15), 0 2px 8px rgba(245,158,11,.10);
}

/* Rating row on cards */
.dir-card__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--g600);
}

.dc-stars { color: var(--gold); font-size: 12px; }
.dc-rcount { color: var(--g400); }

.dc-price {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  background: var(--red-l);
  padding: 2px 8px;
  border-radius: 6px;
}

/* Compare checkbox on cards */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.compare-chk-wrap {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  cursor: pointer;
}

.compare-chk-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 2px solid var(--g300);
  border-radius: 6px;
  background: #fff;
  transition: var(--tr);
}

.compare-chk-box svg {
  width: 12px;
  height: 10px;
  color: transparent;
  transition: var(--tr);
}

.compare-chk:checked + .compare-chk-box {
  background: var(--red);
  border-color: var(--red);
}

.compare-chk:checked + .compare-chk-box svg { color: #fff; }

.dir-card.is-compare-selected {
  outline: 3px solid var(--red);
  outline-offset: -1px;
}

.dir-card.is-map-hover {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(200,16,46,.12) !important;
}

/* Map "Search this area" button */
.search-area-btn {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  height: 40px;
  padding: 0 20px;
  background: #fff;
  border: 1.5px solid var(--g200);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--g800);
  cursor: pointer;
  box-shadow: var(--sh-md);
  white-space: nowrap;
  transition: var(--tr);
}

.search-area-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

/* Map close (mobile) */
.map-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 500;
  height: 36px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--sh);
}

/* Mobile map toggle button */
.mobile-map-btn {
  display: none;
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 800;
  height: 48px;
  padding: 0 28px;
  background: var(--g900);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,.32);
}

/* Marker cluster */
.company-cluster {
  background: transparent;
  border: none;
}

.cluster-bubble {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(200,16,46,.30);
}

/* Compare floating bar */
.compare-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  height: 68px;
  background: var(--g900);
  border-top: 1.5px solid rgba(255,255,255,.10);
  box-shadow: 0 -8px 32px rgba(0,0,0,.20);
}

.compare-bar__left {
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.compare-bar__left strong { color: var(--red); }

.compare-bar__chips {
  display: flex;
  gap: 8px;
  flex: 1;
  overflow: hidden;
}

.compare-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  max-width: 160px;
}

.compare-chip span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compare-chip button {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  font-size: 13px;
  padding: 0;
  flex-shrink: 0;
}

.compare-chip button:hover { color: #fff; }

.compare-bar__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.compare-bar__clear {
  background: transparent;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 10px;
  height: 38px;
  padding: 0 16px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--tr);
}

.compare-bar__clear:hover {
  border-color: rgba(255,255,255,.4);
  color: #fff;
}

.compare-bar__btn {
  height: 42px;
  padding: 0 22px;
  background: var(--red);
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: var(--tr);
}

.compare-bar__btn:hover { background: var(--red-d); }

/* =========================
   PREMIUM DETAIL PAGE
========================= */

.detail-page--premium .detail-hero--premium {
  background: linear-gradient(135deg, #fff 0%, #FFF8E7 100%);
  border-color: #F6C343;
}

.detail-plan-badge--premium {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border: 1px solid #F59E0B;
  color: #78350F;
}

.detail-avatar--lg {
  width: 100px;
  height: 100px;
  font-size: 28px;
}

.premium-text { color: #1D4ED8; }

.gallery-strip {
  background: var(--g100);
  border-top: 1px solid var(--g200);
  border-bottom: 1px solid var(--g200);
}

.gallery-strip--premium {
  background: linear-gradient(135deg, #FFF8E7, #FEF3C7);
  border-color: #F6C343;
}

.gallery-ph {
  padding: 28px 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--g500);
  text-align: center;
}

.detail-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 16px;
  border: 1.5px solid var(--g200);
  border-radius: var(--rsm);
  font-size: 13px;
  font-weight: 600;
  color: var(--g700);
  transition: var(--tr);
  width: fit-content;
}

.detail-directions-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

/* =========================
   BUSINESS DETAIL PAGE
========================= */

.biz-hero {
  position: relative;
  background: var(--g900);
  overflow: hidden;
  padding: 0;
}

.biz-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0F172A 0%, #1a0a10 100%);
}

.biz-hero__glow {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,.15) 0%, transparent 70%);
  pointer-events: none;
}

.biz-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 32px 48px;
}

.biz-hero__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.back-link--light { color: rgba(255,255,255,.6); }
.back-link--light:hover { color: #fff; }

.biz-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(245,158,11,.25), rgba(245,158,11,.15));
  border: 1px solid rgba(245,158,11,.4);
  color: #FCD34D;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
}

.biz-hero__content {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.biz-avatar {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  border: 3px solid rgba(245,158,11,.4);
  flex-shrink: 0;
}

.biz-avatar--logo {
  background: #fff;
  padding: 10px;
  overflow: hidden;
}

.biz-avatar--logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.biz-hero__text { flex: 1; min-width: 0; }

.biz-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -1.5px;
  margin: 12px 0 10px;
}

.biz-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-bottom: 14px;
}

.biz-meta strong { color: #fff; }

.biz-sub {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 20px;
}

.biz-response-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(16,185,129,.15);
  border: 1px solid rgba(16,185,129,.3);
  color: #6EE7B7;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
}

.biz-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.biz-btn {
  height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--tr);
  flex-shrink: 0;
}

.biz-btn--primary {
  background: var(--red);
  color: #fff;
}

.biz-btn--primary:hover { background: var(--red-d); }

.biz-btn--gold {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #fff;
}

.biz-btn--gold:hover { background: linear-gradient(135deg, #D97706, #B45309); }

.gallery-strip--business {
  background: var(--g800);
  border-color: rgba(245,158,11,.2);
}

.gallery-ph--dark {
  color: rgba(255,255,255,.4);
}

.detail-container--biz {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 60px;
}

.biz-card {
  border-color: rgba(245,158,11,.15);
}

.biz-contact-card {
  border: 1.5px solid rgba(245,158,11,.3);
  background: linear-gradient(135deg, #fff, #FFFBEB);
}

.biz-gold-badge {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border: 1px solid #F59E0B;
  color: #78350F;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
}

.gold-text { color: #B45309; }

.detail-btn-gold {
  height: 42px;
  border-radius: var(--rsm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #fff;
  transition: var(--tr);
}

.detail-btn-gold:hover { background: linear-gradient(135deg, #D97706, #B45309); }

/* Team placeholder */
.team-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  background: var(--g50);
  border-radius: var(--r);
  text-align: center;
}

.team-ph-icon { font-size: 40px; }
.team-ph-text { font-size: 14px; color: var(--g400); }

/* =========================
   COMPARE PAGE
========================= */

.compare-page {
  background: var(--g50);
  min-height: calc(100vh - 84px);
  padding: 32px 24px 80px;
}

.compare-container {
  max-width: 1280px;
  margin: 0 auto;
}

.compare-topbar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.compare-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--g900);
  letter-spacing: -.5px;
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--rlg);
  border: 1px solid var(--g200);
  box-shadow: var(--sh);
  background: #fff;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--g100);
  vertical-align: top;
  text-align: left;
}

.compare-row-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--g400);
  text-transform: uppercase;
  letter-spacing: .5px;
  width: 140px;
  min-width: 140px;
  white-space: nowrap;
  background: var(--g50);
  border-right: 1px solid var(--g200);
}

.compare-col-head {
  background: #fff;
  border-right: 1px solid var(--g200);
}

.compare-col-head:last-child { border-right: none; }

.compare-head-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  position: relative;
}

.compare-avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.compare-avatar--logo {
  background: #fff;
  border: 1px solid var(--g200);
  padding: 6px;
  overflow: hidden;
}

.compare-avatar--logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.compare-head-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--g900);
  line-height: 1.3;
}

.compare-head-cat {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
}

.compare-head-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  transition: var(--tr);
}

.compare-head-link:hover { color: var(--red-d); }

.compare-remove-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--g100);
  border: 1px solid var(--g200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--g500);
  transition: var(--tr);
}

.compare-remove-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }

.compare-cell {
  font-size: 14px;
  color: var(--g700);
  border-right: 1px solid var(--g200);
  vertical-align: middle;
}

.compare-cell:last-child { border-right: none; }

.compare-sub {
  font-size: 12px;
  color: var(--g500);
  line-height: 1.5;
}

.compare-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--red);
}

.compare-na { color: var(--g300); }

.compare-cat-pill {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.compare-services {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.compare-services li {
  font-size: 12px;
  color: var(--g600);
  line-height: 1.4;
}

.compare-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
}

.compare-link:hover { color: var(--red-d); }

.compare-cta-cell { text-align: center; }

.compare-cta-btn {
  display: inline-flex !important;
  height: 38px !important;
  padding: 0 18px !important;
  font-size: 13px !important;
  border-radius: var(--rsm) !important;
}

.compare-empty {
  text-align: center;
  padding: 80px 32px;
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: var(--rlg);
}

.compare-empty-icon { font-size: 56px; margin-bottom: 20px; }
.compare-empty h2 { font-size: 24px; font-weight: 700; color: var(--g900); margin-bottom: 10px; }
.compare-empty p { font-size: 15px; color: var(--g500); }

/* =========================
   RESPONSIVE UPDATES
========================= */

@media (max-width: 1280px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .hero--centered .hero-title { font-size: 52px; }
}

@media (max-width: 980px) {
  .hero--centered .hero-title { font-size: 42px; }

  .hs-form {
    flex-direction: column;
    border-radius: 18px;
    max-width: 100%;
    gap: 0;
  }

  .hs-field {
    width: 100%;
    height: 56px;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .hs-field--cat { border-radius: 18px 18px 0 0; }

  .hs-divider { display: none; }

  .hs-input {
    font-size: 16px; /* prevent iOS zoom on focus */
  }

  .hs-trigger {
    font-size: 16px;
  }

  .hs-btn {
    align-self: stretch;
    margin: 0;
    height: 52px;
    border-radius: 0 0 18px 18px;
    font-size: 16px;
    width: 100%;
  }

  .biz-hero__content { flex-direction: column; }
  .biz-title { font-size: 34px; }

  .search-combo {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero--centered .hero-inner { padding: 48px 20px 52px; }
  .hero--centered .hero-title { font-size: 36px; }
  .hero-chips { gap: 8px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid--3 { grid-template-columns: 1fr; }
  .popular-grid { gap: 8px; }

  .mobile-map-btn { display: flex; }

  .explore-v2 .map-panel {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 700;
    height: 100% !important;
    min-height: 100% !important;
  }

  .explore-v2 .map-panel.map-panel--visible { display: block; }

  .adv-filter-bar { padding: 6px 12px; }

  .compare-bar {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 16px;
    gap: 8px;
  }

  .compare-bar__chips { display: none; }

  .compare-table { min-width: 400px; }
  .compare-row-label { width: 100px; min-width: 100px; }
}

/* Field hint text (apply form) */
.field-hint {
  font-size: 11px;
  color: var(--g400);
  margin-top: 4px;
  display: block;
  line-height: 1.4;
}

.field-hint--private {
  color: var(--green);
}

/* =========================
   EXPLORE — SHOW MORE
========================= */

.pag-hidden {
  display: none !important;
}

.show-more-wrap {
  padding: 12px 16px 16px;
  flex-shrink: 0;
}

.show-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  border: 1.5px solid var(--g200);
  border-radius: 14px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: var(--g600);
  cursor: pointer;
  transition: var(--tr);
}

.show-more-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-l);
}

/* =========================
   EXPLORE MOBILE — OVERFLOW & LAYOUT FIXES
========================= */

@media (max-width: 900px) {

  /* Prevent any horizontal page overflow */
  .explore-v2.exp-layout {
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* Filter bar: stack search + pills vertically */
  .explore-v2 .filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 12px;
    overflow-x: hidden;
  }

  .explore-v2 .filter-bar .sep {
    display: none;
  }

  /* Search combo: full width, no min-width */
  .search-combo {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }

  /* Pills: internal scroll, no page overflow */
  .explore-v2 .filter-bar .pills {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
    flex-wrap: nowrap;
  }

  /* Advanced filter bar: 2 columns × 2 rows */
  .adv-filter-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px 12px;
    overflow-x: hidden;
  }

  .adv-filter-bar .adv-spacer {
    display: none;
  }

  .adv-filter-bar .adv-btn,
  .adv-filter-bar .adv-select {
    width: 100%;
    flex-shrink: unset;
    min-width: 0;
  }

  /* Sort select spans full row at the bottom */
  .adv-filter-bar .sort-sel {
    grid-column: 1 / -1;
  }

  /* Results header */
  .explore-v2 .results-header {
    padding: 10px 12px;
  }

  /* Hide show-more on mobile (all cards visible) */
  .show-more-wrap {
    display: none !important;
  }
}


/* =========================
   EXPLORE — FILTER BAR REDESIGN (two-row layout)
========================= */

.explore-v2 .filter-bar {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow-x: visible;
  min-height: auto;
}

.explore-v2 .fb-search-row {
  display: flex;
  align-items: center;
  padding: 10px 18px;
  border-bottom: 1px solid var(--g100);
  background: #fff;
}

.explore-v2 .fb-search-row .search-combo {
  width: 100%;
  max-width: 560px;
}

.explore-v2 .fb-pills-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #fff;
  flex-wrap: wrap;
  overflow-x: visible;
}

/* Pills now wrap — no horizontal scroll */
.explore-v2 .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  overflow-x: visible;
}

/* Hide extra pills initially */
.pill-extra-hidden {
  display: none !important;
}

/* Expand/collapse button */
.pill-expand-btn {
  white-space: nowrap;
  background: var(--g900) !important;
  color: #fff !important;
  border-color: var(--g900) !important;
}

.pill-expand-btn:hover {
  background: var(--g700) !important;
  border-color: var(--g700) !important;
  color: #fff !important;
}

.pill-expand-btn--open {
  background: var(--g700) !important;
  border-color: var(--g700) !important;
}

/* =========================
   HOMEPAGE — HERO CHIPS (limited + more)
========================= */

.hero-chip--extra {
  display: none;
}

.hero-chips.is-expanded .hero-chip--extra {
  display: inline-flex;
}

.hero-chip--more {
  background: rgba(255,255,255,.14) !important;
  border-style: dashed !important;
  font-weight: 700;
  cursor: pointer;
}

.hero-chip--more:hover {
  background: rgba(200,16,46,.20) !important;
  border-color: var(--red) !important;
  border-style: solid !important;
}

/* =========================
   MOBILE OVERRIDES (override old rules)
========================= */

@media (max-width: 900px) {
  /* Reset filter-bar for mobile — was already column */
  .explore-v2 .filter-bar {
    flex-direction: column;
    overflow-x: hidden;
  }

  .explore-v2 .fb-search-row {
    padding: 8px 12px;
    border-bottom: 1px solid var(--g100);
  }

  .explore-v2 .fb-pills-row {
    padding: 8px 12px;
    overflow-x: hidden;
    flex-wrap: wrap;
  }

  .explore-v2 .pills {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  /* Adv filter: 2×2 grid on mobile (already defined, keep consistent) */
  .adv-filter-bar {
    grid-template-columns: 1fr 1fr;
  }
  .adv-filter-bar .sort-sel {
    grid-column: 1 / -1;
  }
}


/* =========================
   EXPLORE — SINGLE-ROW FILTER BAR
========================= */

/* Override the two-row layout from previous iteration */
.explore-v2 .filter-bar {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  min-height: 58px;
  padding: 0 18px;
  background: #fff;
  border-bottom: 1px solid var(--g200);
  flex-shrink: 0;
  overflow-x: visible;
  position: relative;   /* anchor for floating dropdown */
}

/* Country prefix — flex-shrink: 0 so it never collapses */
.explore-v2 .filter-bar .country-prefix {
  flex-shrink: 0;
}

/* Search input grows to fill space between country and pills */
.explore-v2 .filter-bar .combo-search {
  flex: 1 1 0;
  min-width: 120px;
  max-width: none;
  height: 100%;
  padding: 0 14px;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--g900);
  background: transparent;
}

.explore-v2 .filter-bar .combo-search::placeholder {
  color: var(--g400);
}

/* Visual separator between search input and pills */
.explore-v2 .filter-bar .pills-sep {
  width: 1px;
  height: 24px;
  background: var(--g200);
  flex-shrink: 0;
  margin: 0 10px;
}

/* Pills zone: constrained width, overflow clipped — JS measures what fits */
.explore-v2 .pills-zone {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  flex: 0 1 auto;
  min-width: 0;
}

/* Expand / overflow button */
.explore-v2 .pill-expand-btn {
  flex-shrink: 0;
  background: var(--g900) !important;
  color: #fff !important;
  border-color: var(--g900) !important;
  white-space: nowrap;
}

.explore-v2 .pill-expand-btn:hover {
  background: var(--g700) !important;
  border-color: var(--g700) !important;
}

.explore-v2 .pill-expand-btn--open {
  background: var(--red) !important;
  border-color: var(--red) !important;
}

/* Expand button glows when the selected category is in the overflow */
.explore-v2 .pill-expand-btn--has-active {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* ── Floating pills dropdown ── */
.explore-v2 .pills-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 300;
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: 0 0 var(--r) var(--r);
  padding: 12px 18px;
  flex-wrap: wrap;
  gap: 6px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, .10);
  /* display is controlled by the [hidden] attribute — do NOT set it here */
}

/* Only show when the hidden attribute is absent (toggled by JS) */
.explore-v2 .pills-dropdown:not([hidden]) {
  display: flex;
}

/* =========================
   EXPLORE SINGLE-ROW — RESPONSIVE
========================= */

/* Tablet (768–1279px): search still grows, fewer pills naturally */
@media (max-width: 1279px) {
  .explore-v2 .filter-bar {
    padding: 0 14px;
  }
  .explore-v2 .filter-bar .combo-search {
    min-width: 100px;
  }
}

/* Mobile (<768px): stack filter bar into two rows, no horizontal scroll anywhere */
@media (max-width: 767px) {

  /* Filter bar wraps: row 1 = country+search, row 2 = pills */
  .explore-v2 .filter-bar {
    flex-wrap: wrap;
    padding: 8px 12px;
    gap: 0;
    min-height: auto;
    row-gap: 6px;
  }

  /* Row 1 items stay in a single line */
  .explore-v2 .filter-bar .country-prefix,
  .explore-v2 .filter-bar .combo-divider {
    flex-shrink: 0;
  }
  .explore-v2 .filter-bar .combo-search {
    flex: 1 1 0;
    min-width: 80px;
    padding: 10px 12px;
    font-size: 16px; /* prevent iOS zoom */
  }

  /* pills-sep: full-width spacer that forces pills onto their own row */
  .explore-v2 .filter-bar .pills-sep {
    flex: 0 0 100%;
    height: 1px;
    width: 100%;
    background: var(--g100);
    margin: 2px 0;
  }

  /* Pills zone: takes remaining space, overflow hidden — JS measures what fits */
  .explore-v2 .pills-zone {
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden; /* no horizontal scroll */
    flex-wrap: nowrap;
  }

  /* Expand button always visible, fixed width */
  .explore-v2 .pill-expand-btn {
    flex-shrink: 0;
    margin-left: 4px;
  }

  /* Dropdown on mobile: full width, slight border-radius */
  .explore-v2 .pills-dropdown {
    top: calc(100% + 2px);
    border-radius: 0 0 var(--rsm) var(--rsm);
    padding: 10px 12px;
    max-height: 60vh;
    overflow-y: auto;
  }

  /* ── Adv filter: single horizontal row, equal-width controls ── */
  .adv-filter-bar {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    padding: 8px 12px;
    overflow-x: hidden;
  }
  .adv-filter-bar .adv-btn,
  .adv-filter-bar .adv-select {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 6px;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .adv-filter-bar .adv-spacer { display: none; }

  /* ── Results list: bottom padding so floating button doesn't overlap last card ── */
  .explore-v2 .results-list {
    padding-bottom: 80px;
  }
}

/* ── Floating "Karte anzeigen" button: fixed position, centred, clear shadow ── */
.mobile-map-btn {
  bottom: 24px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .40), 0 0 0 1px rgba(0, 0, 0, .06) !important;
}


/* ══════════════════════════════════════════════════════════════════
   Opening Hours — Admin widget
   ══════════════════════════════════════════════════════════════════ */
.oh-widget { font-size: 14px; }

.oh-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 560px;
}
.oh-row td { padding: 5px 8px; vertical-align: middle; }
.oh-day { font-weight: 600; width: 90px; color: #374151; }
.oh-closed-cell { width: 130px; }
.oh-closed-lbl { display: flex; align-items: center; gap: 6px; cursor: pointer; color: #6B7280; font-size: 13px; }
.oh-sep { color: #9CA3AF; padding: 0 4px; }
.oh-time {
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 13px;
  width: 88px;
  color: #111827;
}
.oh-time:disabled { opacity: .4; cursor: not-allowed; }

/* Collapsible toggle (apply form) */
.oh-collapsible { display: flex; flex-direction: column; gap: 12px; }
.oh-toggle-lbl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600;
  color: #1E3A8A;
  font-size: 14px;
  user-select: none;
}
.oh-body { padding-top: 4px; }

/* ══════════════════════════════════════════════════════════════════
   Opening Hours — Detail page card
   ══════════════════════════════════════════════════════════════════ */
.oh-card { }

.oh-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.oh-card-header .detail-section-title { margin-bottom: 0; }

/* Status badge */
.oh-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
}
.oh-status-badge--open         { background: #D1FAE5; color: #065F46; }
.oh-status-badge--closing_soon { background: #FEF3C7; color: #92400E; }
.oh-status-badge--closed       { background: #FEE2E2; color: #991B1B; }
.oh-status-badge--not_specified{ display: none; }

/* Hint line */
.oh-hint {
  font-size: 13px;
  color: #6B7280;
  margin: 6px 0 12px;
}

/* Schedule rows */
.oh-schedule {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
}
.oh-sched-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  font-size: 13px;
  border-bottom: 1px solid #F3F4F6;
  background: #fff;
}
.oh-sched-row:last-child { border-bottom: none; }
.oh-sched-row--today {
  background: #EFF6FF;
  font-weight: 600;
}
.oh-sched-day { color: #374151; }
.oh-sched-time { color: #374151; }
.oh-sched-time--closed { color: #9CA3AF; font-style: italic; }

/* ══════════════════════════════════════════════════════════════════
   "Jetzt geöffnet" badge on explore cards (optional future use)
   ══════════════════════════════════════════════════════════════════ */
.open-now-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  margin-right: 4px;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

/* apply.html optional label */
.optional-label {
  font-size: 13px;
  font-weight: 400;
  color: #9CA3AF;
  margin-left: 4px;
}

/* ══════════════════════════════════════════════════════════════════
   FAQ — Public profile accordion
   ══════════════════════════════════════════════════════════════════ */
.faq-card .detail-section-title { margin-bottom: 8px; }

.faq-lang-notice {
  font-size: 12px;
  color: #9CA3AF;
  margin-bottom: 12px;
}

.faq-accordion {
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #F3F4F6;
  background: #fff;
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: #111827;
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: #F9FAFB; }

.faq-chevron {
  flex-shrink: 0;
  width: 12px;
  height: 8px;
  color: #6B7280;
  transition: transform .2s ease;
}
details[open] > .faq-question .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 16px 16px;
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════
   FAQ — Apply form widget
   ══════════════════════════════════════════════════════════════════ */
.faq-widget { display: flex; flex-direction: column; gap: 10px; }

.faq-counter-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-counter {
  font-size: 12px;
  font-weight: 600;
  color: #6B7280;
  background: #F3F4F6;
  padding: 2px 8px;
  border-radius: 20px;
}

.faq-entries { display: flex; flex-direction: column; gap: 10px; }

.faq-entry { background: #F9FAFB; border: 1px solid #E5E7EB; border-radius: 8px; padding: 12px; }
.faq-entry-row { display: flex; gap: 10px; align-items: flex-start; }
.faq-entry-fields { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.faq-q { }
.faq-a { resize: vertical; min-height: 60px; }

.faq-remove {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  background: #fff;
  color: #9CA3AF;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}
.faq-remove:hover { background: #FEE2E2; color: #991B1B; border-color: #FECACA; }

.faq-add-btn {
  align-self: flex-start;
  background: none;
  border: 1px dashed #D1D5DB;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  color: #374151;
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.faq-add-btn:hover { border-color: #6B7280; color: #111827; }
.faq-add-btn:disabled { opacity: .4; cursor: not-allowed; }

.faq-warning {
  font-size: 13px;
  color: #991B1B;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 6px;
  padding: 8px 12px;
}

@media (max-width: 600px) {
  .faq-entry-row { flex-direction: column; }
  .faq-remove { align-self: flex-end; }
}

/* ══════════════════════════════════════════════════════════════════
   Photo Gallery — desktop grid
   ══════════════════════════════════════════════════════════════════ */
.gallery-wrap {
  margin: 0 0 8px;
  overflow: hidden;
}

/* ── 4-column grid ──────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 4px;
  border-radius: 16px;
  overflow: hidden;
}

.gallery-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #E5E7EB;
}
.gallery-cell:hover .gallery-img { transform: scale(1.04); }

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

/* Cover photo spans 2×2 when it's first */
.gallery-grid--cover .gallery-cell--cover {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

/* "+N more" overlay on the last visible tile */
.gallery-more {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.3px;
}

/* ── Mobile horizontal strip ─────────────────────────────────────── */
.gallery-mobile-strip {
  display: none;                       /* shown only on mobile */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 8px;
  padding: 0 16px 4px;
  scrollbar-width: none;
}
.gallery-mobile-strip::-webkit-scrollbar { display: none; }

.gallery-mobile-item {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  background: #E5E7EB;
}
.gallery-mobile-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-mobile-counter {
  text-align: center;
  font-size: 12px;
  color: #9CA3AF;
  margin: 4px 0 0;
  display: none;                       /* shown only on mobile */
}

@media (max-width: 767px) {
  .gallery-grid          { display: none; }
  .gallery-mobile-strip  { display: flex; }
  .gallery-mobile-counter{ display: block; }
}

/* ══════════════════════════════════════════════════════════════════
   Lightbox
   ══════════════════════════════════════════════════════════════════ */
#gallery-lb {
  display: flex;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
#gallery-lb.lb-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .90);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: zoom-out;
}

.lb-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(90vw, 1200px);
  max-height: 90vh;
}

.lb-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .6);
  transition: opacity .15s ease;
}
.lb-img--fade { opacity: 0; }

.lb-cap {
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  text-align: center;
  margin-top: 10px;
  min-height: 1em;
}

.lb-close,
.lb-prev,
.lb-next {
  position: fixed;
  z-index: 2;
  background: rgba(0, 0, 0, .5);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: #DC2626;
  color: #fff;
}

.lb-close { top: 16px; right: 16px; font-size: 18px; }
.lb-prev  { left: 16px;  top: 50%; transform: translateY(-50%); }
.lb-next  { right: 16px; top: 50%; transform: translateY(-50%); }

.lb-ctr {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
  font-weight: 600;
  background: rgba(0,0,0,.4);
  padding: 3px 10px;
  border-radius: 20px;
  z-index: 2;
}

@media (max-width: 600px) {
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-close { top: 8px; right: 8px; }
}

/* =========================
   PLAN SELECTION PAGE
========================= */

.sp-inner {
  max-width: 980px;
}

/* Duration toggle */
.sp-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.sp-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--g100);
  border-radius: 999px;
  padding: 4px;
}

.sp-toggle-btn {
  height: 42px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--g500);
  background: transparent;
  cursor: pointer;
  transition: var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.sp-toggle-btn.active {
  background: #fff;
  color: var(--g900);
  box-shadow: var(--sh);
}

.sp-save-badge {
  background: var(--green-bg);
  color: #059669;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid #6EE7B7;
}

/* Plan grid */
.sp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
  align-items: start;
}

.sp-card {
  background: #fff;
  border: 1.5px solid var(--g200);
  border-radius: var(--rlg);
  padding: 28px 22px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--tr);
}

.sp-card:hover {
  box-shadow: var(--sh-md);
}

.sp-card--premium {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,.06), var(--sh);
}

.sp-card--business {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,158,11,.08), var(--sh);
}

.sp-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: .4px;
  white-space: nowrap;
  border: 2px solid #fff;
}

.sp-badge--popular {
  background: var(--red);
  color: #fff;
}

.sp-badge--business {
  background: var(--gold);
  color: #fff;
}

.sp-card-head {
  margin-bottom: 4px;
}

.sp-plan-icon {
  font-size: 26px;
  margin-bottom: 8px;
  line-height: 1;
}

.sp-plan-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--g900);
  letter-spacing: -.3px;
}

.sp-card--premium .sp-plan-name { color: var(--red); }
.sp-card--business .sp-plan-name { color: #D97706; }

.sp-plan-tagline {
  font-size: 12px;
  color: var(--g400);
  margin-top: 3px;
}

.sp-price-wrap {
  margin: 14px 0 16px;
  min-height: 66px;
}

.sp-price-total {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--g900);
  line-height: 1;
}

.sp-card--premium .sp-price-total { color: var(--red); }
.sp-card--business .sp-price-total { color: #D97706; }

.sp-price-meta {
  font-size: 12px;
  color: var(--g400);
  margin-top: 6px;
  line-height: 1.65;
  min-height: 18px;
}

.sp-savings {
  display: inline-block;
  background: var(--green-bg);
  color: #059669;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 6px;
}

.sp-divider {
  height: 1px;
  background: var(--g100);
  margin: 14px 0;
}

.sp-features {
  list-style: none;
  flex: 1;
  margin-bottom: 20px;
}

.sp-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--g700);
  padding: 4px 0;
  line-height: 1.5;
}

.sp-features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.sp-feat-prev {
  color: var(--g400) !important;
  font-style: italic;
}

.sp-feat-prev::before {
  color: var(--g300) !important;
}

/* Plan buttons */
.sp-btn {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: var(--rsm);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--tr);
  letter-spacing: .2px;
}

.sp-btn:disabled {
  background: var(--g200) !important;
  color: var(--g400) !important;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.sp-btn--basic {
  background: var(--g800);
  color: #fff;
}
.sp-btn--basic:hover:not(:disabled) {
  background: var(--dark);
  transform: translateY(-1px);
}

.sp-btn--premium {
  background: var(--red);
  color: #fff;
}
.sp-btn--premium:hover:not(:disabled) {
  background: var(--red-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(200,16,46,.28);
}

.sp-btn--business {
  background: var(--gold);
  color: #fff;
}
.sp-btn--business:hover:not(:disabled) {
  background: #D97706;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245,158,11,.28);
}

/* Bottom note */
.sp-payment-note {
  text-align: center;
  font-size: 12px;
  color: var(--g400);
  margin-top: 4px;
  padding-bottom: 8px;
}

/* Error banner */
.sp-error {
  background: #FEF2F2;
  border: 1.5px solid #FECACA;
  color: #991B1B;
  padding: 14px 18px;
  border-radius: var(--rsm);
  font-size: 13px;
  margin-bottom: 24px;
  text-align: center;
}

/* Payment return page */
.sp-recap {
  background: #fff;
  border: 1.5px solid var(--g200);
  border-radius: var(--r);
  padding: 24px;
  margin-top: 24px;
  box-shadow: var(--sh);
}

.sp-recap-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--g100);
  font-size: 14px;
}

.sp-recap-row:last-child { border-bottom: none; }

.sp-recap-label { color: var(--g500); }
.sp-recap-value { font-weight: 600; color: var(--g900); }

.sp-status-box {
  background: #fff;
  border: 1.5px solid var(--g200);
  border-radius: var(--r);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--sh);
}

.sp-status-box--pending { border-color: #FDE68A; background: #FFFBEB; }
.sp-status-box--failed  { border-color: #FECACA; background: #FEF2F2; }

.sp-status-icon  { font-size: 44px; margin-bottom: 14px; }
.sp-status-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.sp-status-box--pending .sp-status-title { color: #92400E; }
.sp-status-box--failed  .sp-status-title { color: #991B1B; }

.sp-status-text { font-size: 14px; color: var(--g500); line-height: 1.65; }
.sp-status-manual { margin-top: 14px; font-size: 13px; }

.sp-retry-btn {
  display: inline-block;
  margin-top: 20px;
  height: 46px;
  padding: 0 28px;
  background: var(--red);
  color: #fff;
  border-radius: var(--rsm);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 46px;
  transition: var(--tr);
}
.sp-retry-btn:hover {
  background: var(--red-d);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 800px) {
  .sp-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .sp-toggle-btn { padding: 0 14px; font-size: 13px; }
  .sp-save-badge { display: none; }
}

/* =========================
   SITE FOOTER (4-column)
========================= */

.site-footer {
  background: var(--g900);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 56px 32px 24px;
}

.site-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.site-footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -.3px;
}

.site-footer-col h4 em {
  color: var(--red);
  font-style: normal;
}

.site-footer-col p {
  font-size: 13px;
  color: var(--g500);
  line-height: 1.6;
}

.site-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer-col ul li a {
  font-size: 13px;
  color: var(--g500);
  transition: color var(--tr);
}

.site-footer-col ul li a:hover {
  color: var(--g300);
}

.site-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 20px;
}

.site-footer-bottom p {
  font-size: 12px;
  color: var(--g600);
  text-align: center;
}

@media (max-width: 900px) {
  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .site-footer {
    padding: 40px 20px 20px;
  }
  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* =========================
   LEGAL PAGES
========================= */

.legal-container {
  max-width: 780px;
  margin: 48px auto 80px;
  padding: 0 24px;
}

.legal-container h1 {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--g900);
  margin-bottom: 8px;
}

.legal-container .last-updated {
  color: var(--g500);
  font-size: 13px;
  margin-bottom: 36px;
}

.legal-container h2 {
  font-size: 17px;
  font-weight: 600;
  color: var(--g800);
  margin: 32px 0 10px;
}

.legal-container h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--g700);
  margin: 18px 0 6px;
}

.legal-container p {
  font-size: 14px;
  color: var(--g700);
  line-height: 1.7;
  margin-bottom: 10px;
}

.legal-container ul {
  margin: 8px 0 14px 20px;
}

.legal-container ul li {
  font-size: 14px;
  color: var(--g700);
  line-height: 1.7;
  margin-bottom: 4px;
}

.legal-container a {
  color: var(--red);
  text-decoration: underline;
}

.legal-container a:hover {
  color: var(--red-d);
}

.translation-notice {
  padding: 14px 16px;
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  border-radius: var(--rsm);
  margin-bottom: 28px;
  font-size: 13px;
  color: #664d03;
  line-height: 1.6;
}

.translation-notice a {
  color: #664d03;
  font-weight: 600;
}

/* =========================
   COOKIE BANNER
========================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--g900);
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
  padding: 20px 24px;
}

.cookie-banner-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.cookie-banner-content p {
  flex: 1;
  font-size: 13px;
  color: var(--g400);
  line-height: 1.5;
  min-width: 200px;
}

.cookie-banner-content p a {
  color: var(--g300);
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 9px 18px;
  border-radius: var(--rsm);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--tr);
  border: none;
}

.btn-cookie--neutral {
  background: var(--g700);
  color: #fff;
  border: 1px solid var(--g600);
}

.btn-cookie--neutral:hover {
  background: var(--g600);
  border-color: var(--g500);
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}

.cookie-modal-content {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: var(--r);
  padding: 32px;
  width: 100%;
  max-width: 500px;
  margin: 16px;
  box-shadow: var(--sh-lg);
}

.cookie-modal-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--g900);
  margin-bottom: 20px;
}

.cookie-category {
  border: 1px solid var(--g200);
  border-radius: var(--rsm);
  padding: 14px 16px;
  margin-bottom: 12px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.cookie-category-header label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--g800);
}

.cookie-category-header label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--red);
}

.cookie-category-header label input[disabled] {
  cursor: not-allowed;
  opacity: .5;
}

.cookie-category p {
  font-size: 12px;
  color: var(--g500);
  line-height: 1.5;
  margin: 0;
}

.cookie-required-badge {
  font-size: 11px;
  font-weight: 600;
  background: var(--g100);
  color: var(--g600);
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.cookie-modal-buttons {
  margin-top: 20px;
}

.cookie-modal-buttons .btn-cookie {
  width: 100%;
  padding: 12px;
  background: var(--red);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--rsm);
}

.cookie-modal-buttons .btn-cookie:hover {
  background: var(--red-d);
}

@media (max-width: 640px) {
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .cookie-banner-content h3 {
    white-space: normal;
  }
  .cookie-banner-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-cookie {
    width: 100%;
    text-align: center;
    padding: 11px;
  }
}

/* =========================
   APPLY FORM — PLAN CARDS
========================= */

.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 4px;
}

.plan-card {
  border: 1.5px solid var(--g200);
  border-radius: var(--r);
  padding: 14px 12px 12px;
  cursor: pointer;
  transition: border-color var(--tr), background var(--tr), box-shadow var(--tr);
  background: #fff;
  user-select: none;
  position: relative;
}

.plan-card:hover {
  border-color: var(--g300);
  box-shadow: var(--sh);
}

.plan-card.selected {
  border-color: var(--red);
  background: var(--red-l);
  box-shadow: 0 0 0 3px rgba(200,16,46,.08);
}

.plan-card__badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: var(--red);
  color: #fff;
  border-radius: 4px;
  padding: 2px 6px;
  margin-bottom: 6px;
}

.plan-card__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--g900);
  margin-bottom: 2px;
}

.plan-card__price {
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 8px;
}

.plan-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.plan-card__features li {
  font-size: 11px;
  color: var(--g600);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan-card__features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .plan-cards {
    grid-template-columns: 1fr;
  }
}

/* =========================
   APPLY FORM — FILE INPUT
========================= */

.file-input {
  display: block;
  width: 100%;
  font-size: 13px;
  color: var(--g700);
  padding: 9px 0;
  cursor: pointer;
}

.file-input::-webkit-file-upload-button {
  height: 34px;
  padding: 0 14px;
  border: 1.5px solid var(--g200);
  border-radius: var(--rsm);
  background: var(--g50);
  color: var(--g700);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 10px;
  transition: var(--tr);
}

.file-input::-webkit-file-upload-button:hover {
  border-color: var(--red);
  color: var(--red);
}
