/*
Theme Name: Top Rated
Theme URI: https://www.toprated.shakedeal.co.il
Author: Tiran Moyal
Author URI: https://www.toprated.shakedeal.co.il
Description: Custom Design Theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: Top Rated, Business, Directory
Text Domain: toprated
*/

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --color-primary:     #4f46e5;
  --color-primary-dk:  #4338ca;
  --color-secondary:   #7c3aed;
  --color-accent-red:  #e53e3e;
  --color-dark:        #1a1a2e;
  --color-body-bg:     #f8f7f4;
  --color-white:       #ffffff;
  --color-border:      #ebebf0;
  --color-border-light:#e5e7eb;
  --color-text-muted:  #64748b;
  --color-text-faint:  #94a3b8;
  --color-text-body:   #475569;
  --color-star:        #f59e0b;
  --color-green:       #22c55e;
  --color-indigo-light:#eef0ff;
  --color-indigo-fade: #f0f0fe;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   24px;
  --radius-pill: 50px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.05);
  --shadow-md:   0 4px 24px rgba(79,70,229,.08), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg:   0 16px 40px rgba(0,0,0,.08);
  --shadow-card: 0 24px 60px rgba(79,70,229,.10), 0 4px 16px rgba(0,0,0,.06);
  --font-base:   'Heebo', sans-serif;
  --transition:  .2s ease;
  --transition-lift: .35s cubic-bezier(.165,.84,.44,1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-base);
  background-color: var(--color-body-bg);
  color: var(--color-dark);
  line-height: 1.5;
  direction: rtl;
  text-align: right;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { font-family: var(--font-base); cursor: pointer; }
select { font-family: var(--font-base); }
input, textarea, select { font-family: var(--font-base); }

/* ── Typography Utilities ──────────────────────────────────── */
.section-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.shimmer-text {
  background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 30%, #4f46e5 60%, #7c3aed 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.85); }
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(20px, -15px); }
  66%       { transform: translate(-10px, 12px); }
}
@keyframes floatA {
  0%, 100% { transform: translateY(0px)  rotate(-2deg); }
  50%       { transform: translateY(-12px) rotate(-2deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0px)  rotate(1.5deg); }
  50%       { transform: translateY(-16px) rotate(1.5deg); }
}

/* ── Scroll fade-in ────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ── HEADER ────────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(248, 247, 244, .92);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Logo ──────────────────────────────────────────────────── */
.logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--color-dark);
  text-decoration: none;
  flex-shrink: 0;
}
.logo .logo-accent { color: var(--color-primary); }
.logo .logo-dot {
  color: var(--color-accent-red);
  font-size: 26px;
  line-height: 0;
  vertical-align: -3px;
}

/* ── Site Nav ──────────────────────────────────────────────── */
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav ul li{
  position: relative;
  display: inline-block;
  margin: 0 15px 0 15px;
}
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.site-nav a:hover,
.site-nav a.active { color: var(--color-primary); }
.site-nav a.active { font-weight: 700; }

.site-nav ul li.current_page_item a{
  color: var(--color-primary);
  font-weight: 700;
}


/* ── Header Actions ────────────────────────────────────────── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── Hamburger toggle ──────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition);
}
.nav-toggle:hover { background: var(--color-indigo-light); }
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav ────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 12px 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  display: block;
  color: var(--color-dark);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover { background: var(--color-indigo-light); color: var(--color-primary); }
.mobile-nav a.active { color: var(--color-primary); font-weight: 700; }
.mobile-nav .mobile-nav-actions {
  display: flex;
  gap: 10px;
  padding: 12px 24px;
  border-top: 1px solid var(--color-border);
  margin-top: 8px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 9px 20px;
}
.btn-primary:hover { background: var(--color-primary-dk); }
.btn-ghost {
  background: none;
  color: var(--color-primary);
  padding: 9px 16px;
}
.btn-ghost:hover { background: var(--color-indigo-light); }
.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 800;
}
.btn-white:hover { background: #f0f0fe; }
.btn-lg {
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 800;
}
.btn-full { width: 100%; }

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
  background: var(--color-dark);
  color: #9ca3af;
  padding: 60px 24px 40px;
}
footer a {
  color: #9ca3af;
  text-decoration: none;
  transition: color var(--transition);
}
footer a:hover { color: var(--color-white); }
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-logo { font-size: 20px; font-weight: 900; letter-spacing: -1px; color: var(--color-white); margin-bottom: 16px; }
.footer-logo .logo-accent { color: #a5b4fc; }
.footer-logo .logo-dot { color: var(--color-accent-red); }
.footer-tagline { font-size: 13px; line-height: 1.7; }
.footer-col h4 { color: var(--color-white); font-weight: 700; margin-bottom: 14px; font-size: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}
.footer-social { display: flex; gap: 16px; }

/* ── Card ──────────────────────────────────────────────────── */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}

/* ── Stars ─────────────────────────────────────────────────── */
.stars      { color: var(--color-star); letter-spacing: -1px; }
.stars-lg   { color: var(--color-star); font-size: 20px; letter-spacing: -1px; }
.stars-sm   { color: var(--color-star); font-size: 14px; letter-spacing: -1px; }

/* ── Avatar ────────────────────────────────────────────────── */
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.avatar-purple { background: #ede9fe; color: #6d28d9; }
.avatar-green  { background: #dcfce7; color: #15803d; }
.avatar-pink   { background: #fce7f3; color: #be185d; }
.avatar-blue   { background: #dbeafe; color: #1d4ed8; }

/* ── Tag / Badge ───────────────────────────────────────────── */
.tag {
  display: inline-block;
  background: #f0f0f7;
  color: #6b6b9e;
  border-radius: var(--radius-sm);
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 500;
}
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 12px; font-weight: 700;
}
.badge-verified { background: var(--color-indigo-light); color: var(--color-primary); }
.badge-top      { background: #fef3c7; color: #92400e; }
.badge-new      { background: #dcfce7; color: #15803d; }
.verified-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  display: inline-block;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}

/* ── Review Card ───────────────────────────────────────────── */
.review-card {
  background: var(--color-white);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  padding: 24px;
  transition: box-shadow .25s;
}
.review-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.review-biz-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: var(--color-indigo-light);
  display: flex; align-items: center; justify-content: center;
}

/* ── CTA Section ───────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 32px;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  padding: 60px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40px; right: 10%;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}
.cta-copy { position: relative; z-index: 1; }
.cta-copy h2 { font-size: 36px; font-weight: 900; letter-spacing: -1px; margin-bottom: 12px; }
.cta-copy p  { font-size: 17px; opacity: .85; max-width: 380px; line-height: 1.6; }
.cta-actions { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.cta-note { font-size: 13px; opacity: .7; }

/* ── Hero (Light BG) ───────────────────────────────────────── */
.hero-light {
  background: var(--color-body-bg);
  position: relative;
  overflow: hidden;
  padding: 90px 24px 0;
}
.hero-light::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,.10) 0%, transparent 65%);
  top: -220px; right: -160px;
  pointer-events: none;
}
.hero-light::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,186,116,.18) 0%, transparent 65%);
  bottom: 40px; left: -100px;
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(79,70,229,.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,.07) 0%, transparent 70%);
  top: 60%; left: 60%;
  animation: orbDrift 12s ease-in-out infinite;
  pointer-events: none;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 560px;
  position: relative;
  z-index: 2;
}
.hero-copy { padding-bottom: 60px; }
.hero-copy h1 {
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -2px;
  color: var(--color-dark);
  margin-bottom: 22px;
  animation: fadeSlideIn .75s .1s ease both;
}
.hero-copy p {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 36px;
  animation: fadeSlideIn .8s .2s ease both;
}
.peace-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  font-size: 13px;
  color: #555;
  font-weight: 600;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  animation: fadeSlideIn .7s ease both;
}

/* ── Hero Search Box ───────────────────────────────────────── */
.hero-search {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  padding: 6px;
  gap: 6px;
  max-width: 520px;
  margin-bottom: 16px;
  animation: fadeSlideIn .85s .3s ease both;
}
.hero-search input {
  flex: 1;
  padding: 11px 14px;
  font-size: 15px;
  background: transparent;
  outline: none;
  border: none;
  color: var(--color-dark);
}
.hero-search input::placeholder { color: #a0a0b0; }
.hero-search select {
  font-size: 13px;
  font-weight: 600;
  min-width: 110px;
  padding: 0 10px;
  background: transparent;
  outline: none;
  border: none;
  border-right: 1px solid var(--color-border-light);
  color: #555;
}
.hero-search .btn-search {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 12px;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.hero-search .btn-search:hover { background: var(--color-primary-dk); }

/* ── Popular Tags ──────────────────────────────────────────── */
.popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  animation: fadeSlideIn .9s .4s ease both;
}
.popular-label { font-size: 12px; color: var(--color-text-muted); font-weight: 600; }
.pop-tag {
  display: inline-block;
  border: 1px solid #d4d4e4;
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--color-white);
}
.pop-tag:hover { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }

/* ── Hero Mock Card ────────────────────────────────────────── */
.mock-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  animation: cardFloat 5s ease-in-out infinite;
  width: 310px;
  padding: 22px;
  position: relative;
  z-index: 3;
}
.mock-card-header { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.mock-avatar {
  width: 54px; height: 54px;
  border-radius: 14px;
  flex-shrink: 0;
  background-size: cover;
  background-position: top;
}
.mock-verified {
  margin-inline-start: auto;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #15803d;
  white-space: nowrap;
}
.mock-bar { height: 8px; border-radius: 99px; background: #f0f0f7; overflow: hidden; }
.mock-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--color-primary), var(--color-secondary)); }
.mock-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--color-text-faint);
  font-weight: 600;
}
.mock-row .mock-label { min-width: 60px; }
.mock-row .mock-val   { color: var(--color-text-body); min-width: 20px; }
.mock-reviews { border-top: 1px solid #f0f0f7; padding-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.mock-review-row { display: flex; gap: 9px; align-items: flex-start; }
.mock-review-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #ede9fe;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #6d28d9;
}
.mock-review-text .name  { font-size: 11px; font-weight: 700; color: var(--color-text-body); margin-bottom: 2px; }
.mock-review-text .quote { font-size: 11px; color: var(--color-text-faint); line-height: 1.5; }

/* Trust chips (floating on hero) */
.trust-chip {
  position: absolute;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-dark);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 8px 28px rgba(79,70,229,.10), 0 2px 6px rgba(0,0,0,.06);
}
.trust-chip .chip-star { color: var(--color-star); }
.trust-chip-a { top: 12%; left: 12%; animation: floatA 6s ease-in-out infinite; }
.trust-chip-b { bottom: 26%; left: 0%;  animation: floatB 7s ease-in-out infinite; }
.trust-chip-c { top: 5%;  right: 30%;  animation: floatA 8s ease-in-out infinite; }
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  animation: fadeSlideIn 1s .25s ease both;
}

/* ── Wave Divider ──────────────────────────────────────────── */
.wave-divider { width: 100%; display: block; margin-bottom: -2px; }

/* ── Category Pills ────────────────────────────────────────── */
.cat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  cursor: pointer;
  transition: all .25s ease;
  min-width: 88px;
  text-decoration: none;
}
.cat-pill:hover {
  border-color: var(--color-primary);
  background: var(--color-indigo-fade);
  transform: translateY(-2px);
}
.cat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.cat-name { font-size: 12px; font-weight: 700; color: var(--color-dark); }
.cat-count { font-size: 11px; color: var(--color-text-muted); }

/* ── Trust Bar (dark strip) ────────────────────────────────── */
.trust-bar { background: var(--color-dark); color: var(--color-white); }
.trust-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #a5b4fc;
  line-height: 1;
}
.trust-stat span { font-size: 13px; color: #9ca3af; margin-top: 2px; display: block; }

/* ── Business Card (listing) ───────────────────────────────── */
.biz-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform var(--transition-lift), box-shadow var(--transition-lift);
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}
.biz-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,.08); }
.biz-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.biz-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--color-white);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; gap: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,.10);
}
.biz-body { padding: 18px 20px; }
.biz-body h3 { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.biz-meta { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--color-text-muted); margin-bottom: 12px; }
.biz-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.biz-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid #f0f0f7;
  font-size: 13px;
}

/* ── Section: Recent Reviews ───────────────────────────────── */
.reviews-section { padding: 0 24px 80px; background: var(--color-white); }
.reviews-header { padding-top: 80px; margin-bottom: 40px; }
.reviews-header h2 { font-size: 32px; font-weight: 900; letter-spacing: -1px; }
.reviews-header p  { color: var(--color-text-muted); margin-top: 6px; }

/* ── ABOUT PAGE ────────────────────────────────────────────── */
.about-hero {
  background: radial-gradient(ellipse 80% 60% at 50% -10%, #e0e7ff 0%, transparent 70%), var(--color-body-bg);
  padding: 80px 24px 90px;
  text-align: center;
}
.about-hero .badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 13px; color: #555;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.about-hero h1 { font-size: clamp(40px, 6vw, 68px); font-weight: 900; line-height: 1.08; letter-spacing: -2px; margin-bottom: 20px; }
.about-hero h1 span { color: var(--color-primary); }
.about-hero p  { font-size: 18px; color: var(--color-text-muted); line-height: 1.7; max-width: 520px; margin: 0 auto; }
.stat-big { font-size: 48px; font-weight: 900; color: var(--color-primary); line-height: 1; }
.value-icon {
  width: 52px; height: 52px;
  background: var(--color-indigo-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.team-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform var(--transition-lift), box-shadow var(--transition-lift);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-photo { height: 260px; background-size: cover; background-position: top center; }
.team-body { padding: 20px; }
.team-body h3 { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.team-body .role { font-size: 13px; color: var(--color-primary); font-weight: 600; margin-bottom: 8px; }
.team-body p { font-size: 13px; color: var(--color-text-muted); line-height: 1.6; }
.timeline-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--color-primary); flex-shrink: 0; margin-top: 4px; }
.timeline-line { width: 2px; background: var(--color-border-light); flex: 1; min-height: 32px; margin: 4px auto; }

/* ── BLOG PAGE ─────────────────────────────────────────────── */
.blog-hero {
  padding: 64px 24px 52px;
  text-align: center;
  background: radial-gradient(ellipse 70% 50% at 50% -5%, #e0e7ff, transparent 65%), var(--color-body-bg);
}
.blog-hero p { font-size: 13px; font-weight: 700; color: var(--color-primary); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.blog-hero h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 14px; }
.blog-hero .sub { font-size: 16px; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 28px; }
.blog-search-wrap {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  background: var(--color-white);
  border-radius: 14px;
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.blog-search-wrap input {
  flex: 1; padding: 12px 16px;
  outline: none; font-size: 14px; border: none;
  background: transparent;
}
.blog-search-wrap button {
  background: var(--color-primary); color: var(--color-white);
  border: none; padding: 12px 20px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: background var(--transition);
}
.blog-search-wrap button:hover { background: var(--color-primary-dk); }
.topics-wrap { padding: 0 24px 40px; }
.topic-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.topic-tag {
  background: #f0f0f7; color: #555;
  border-radius: var(--radius-pill); padding: 6px 16px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  border: none; transition: all var(--transition);
}
.topic-tag:hover, .topic-tag.active { background: var(--color-primary); color: var(--color-white); }
.post-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-lift), box-shadow var(--transition-lift);
  text-decoration: none;
  display: block;
  color: inherit;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.post-thumb { background-size: cover; background-position: center; }
.post-thumb-featured { height: 100%; min-height: 280px; }
.post-thumb-sm { height: 180px; }
.post-body { padding: 22px; }
.post-body h2 { font-size: 20px; font-weight: 900; letter-spacing: -.5px; line-height: 1.3; margin-bottom: 10px; }
.post-body h3 { font-size: 16px; font-weight: 800; line-height: 1.35; margin-bottom: 8px; }
.post-body p  { font-size: 14px; color: var(--color-text-muted); line-height: 1.65; margin-bottom: 14px; }
.post-featured-body { padding: 44px; }
.post-featured-body h2 { font-size: 28px; font-weight: 900; letter-spacing: -.8px; line-height: 1.25; margin-bottom: 14px; }
.post-featured-body p  { font-size: 15px; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 24px; }
.post-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.cat-label {
  display: inline-block;
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: 12px; font-weight: 700;
}
.cat-label-indigo { background: var(--color-indigo-light); color: var(--color-primary); }
.cat-label-green   { background: #dcfce7; color: #15803d; }
.cat-label-amber   { background: #fef3c7; color: #92400e; }
.post-author { display: flex; align-items: center; gap: 10px; }
.post-author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background-size: cover;
  flex-shrink: 0;
}
.post-featured-footer { display: flex; align-items: center; justify-content: space-between; }

/* ── CATEGORY PAGE ─────────────────────────────────────────── */
.cat-hero { background: var(--color-dark); padding: 48px 24px 52px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.breadcrumb a:hover { color: rgba(255,255,255,.85); }
.filter-btn {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 13px; font-weight: 600; color: #555;
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
}
.filter-btn:hover, .filter-btn.active { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }
.sort-select {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: 10px; padding: 8px 14px;
  font-size: 13px; font-weight: 600; color: var(--color-dark);
  outline: none; cursor: pointer;
}
.sidebar-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 20px;
}
.range-input { width: 100%; accent-color: var(--color-primary); }
.sub-cat {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px;
  cursor: pointer; transition: background .15s;
  font-size: 13px; font-weight: 600;
}
.sub-cat:hover { background: #f0f0f7; }
.sub-cat.active { background: var(--color-indigo-light); color: var(--color-primary); }

/* ── BUSINESS DETAIL PAGE ──────────────────────────────────── */
.cover-wrap { position: relative; height: 320px; overflow: hidden; }
.cover-img { width: 100%; height: 100%; background-size: cover; background-position: center; }
.cover-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,46,.72) 0%, transparent 55%); }
.cover-breadcrumb {
  position: absolute; bottom: 18px; right: 0; left: 0;
  font-size: 13px; color: rgba(255,255,255,.65);
}
.cover-breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; }
.cover-breadcrumb a:hover { color: var(--color-white); }
.cover-sep { margin: 0 6px; color: rgba(255,255,255,.35); }
.avatar-ring {
  width: 130px; height: 155px;
  border-radius: 18px;
  border: 3px solid var(--color-white);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  background: #f0f0f7;
  overflow: hidden;
  flex-shrink: 0;
}
.anchor-nav {
  display: flex;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
}
.anchor-link {
  flex: 1; padding: 13px 8px;
  font-size: 14px; font-weight: 700; color: var(--color-text-muted);
  text-decoration: none; text-align: center;
  transition: all var(--transition);
  border-left: 1px solid #f0f0f7;
}
.anchor-link:last-child { border-left: none; }
.anchor-link:hover { background: var(--color-body-bg); color: var(--color-dark); }
.anchor-link.active { background: var(--color-indigo-light); color: var(--color-primary); }
.sec {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  scroll-margin-top: 80px;
}
.sec-head {
  padding: 22px 28px;
  border-bottom: 1px solid #f0f0f7;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.sec-head h2 { font-size: 17px; font-weight: 900; letter-spacing: -.3px; }
.sec-body { padding: 28px; }
.rv { border: 1px solid var(--color-border); border-radius: 18px; padding: 20px; transition: box-shadow .2s; }
.rv:hover { box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.rbar { height: 8px; background: #f0f0f7; border-radius: 99px; overflow: hidden; flex: 1; }
.rbar-fill { height: 100%; background: var(--color-star); border-radius: 99px; }
.stat-box { background: var(--color-body-bg); border-radius: 14px; padding: 16px; text-align: center; }
.stat-n { font-size: 26px; font-weight: 900; line-height: 1; }
.stat-l { font-size: 11px; color: var(--color-text-faint); margin-top: 4px; font-weight: 500; }
.proj {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 18px; overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-lift), box-shadow var(--transition-lift);
}
.proj:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,.08); }
.proj-thumb { height: 190px; background-size: cover; background-position: center; position: relative; }
.proj-tag {
  position: absolute; top: 11px; right: 11px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  border-radius: 7px; padding: 3px 9px;
  font-size: 11px; font-weight: 700;
}
.like-btn {
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--color-text-faint);
  padding: 4px 8px; border-radius: 7px; transition: all var(--transition);
}
.like-btn:hover { color: #ef4444; background: #fef2f2; }
.like-btn.liked { color: #ef4444; }
.submit-btn {
  width: 100%; background: var(--color-primary); color: var(--color-white);
  border: none; border-radius: 11px; padding: 13px;
  font-size: 15px; font-weight: 800; cursor: pointer; transition: background var(--transition);
}
.submit-btn:hover { background: var(--color-primary-dk); }
.ir {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid #f0f0f7;
  font-size: 13px; color: var(--color-text-body);
}
.ir:last-child { border-bottom: none; }
.ir-icon {
  width: 32px; height: 32px;
  background: var(--color-indigo-light); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sidebar-sticky { position: sticky; top: 78px; display: flex; flex-direction: column; gap: 14px; }
.share-btn {
  flex: 1; background: #f0f0f7; border: none;
  border-radius: 9px; padding: 9px; cursor: pointer;
  font-size: 12px; font-weight: 700; transition: background var(--transition);
}
.share-btn:hover { background: var(--color-indigo-light); }
.share-btn-primary { color: var(--color-primary); }
.verify-badge {
  margin-top: 13px; padding: 10px;
  background: var(--color-indigo-light); border-radius: 10px;
  font-size: 12px; color: var(--color-primary); font-weight: 700;
  text-align: center; display: flex; align-items: center; justify-content: center; gap: 5px;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-green); flex-shrink: 0; }
.status-text { font-size: 13px; font-weight: 700; color: var(--color-green); }

/* ── CONTACT PAGE ──────────────────────────────────────────── */
.contact-hero { padding: 70px 24px 60px; text-align: center; }
.contact-icon-wrap {
  width: 64px; height: 64px;
  background: var(--color-indigo-light); border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.contact-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 14px; }
.contact-hero p  { font-size: 17px; color: var(--color-text-muted); line-height: 1.7; }
.contact-option {
  display: flex; align-items: center; gap: 14px;
  padding: 18px; background: var(--color-white);
  border: 1px solid var(--color-border); border-radius: 18px;
  cursor: pointer; transition: all var(--transition);
}
.contact-option:hover { border-color: var(--color-primary); background: #f8f8ff; transform: translateY(-2px); }
.contact-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--color-indigo-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-label h3 { font-weight: 800; font-size: 15px; }
.contact-label p  { font-size: 13px; color: var(--color-text-muted); }
.contact-label .status-live { font-size: 11px; color: var(--color-green); margin-top: 2px; font-weight: 600; }
.faq-item { border-bottom: 1px solid #f0f0f7; cursor: pointer; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-weight: 700; font-size: 15px; }
.faq-a { font-size: 14px; color: var(--color-text-muted); line-height: 1.7; padding-bottom: 18px; display: none; }
.faq-a.open { display: block; }
.topic-btn {
  background: var(--color-body-bg);
  border: 1px solid var(--color-border-light);
  border-radius: 11px; padding: 11px 14px;
  font-size: 13px; font-weight: 600; color: #555;
  cursor: pointer; text-align: right; transition: all var(--transition);
}
.topic-btn:hover, .topic-btn.active { background: var(--color-indigo-light); border-color: var(--color-primary); color: var(--color-primary); }

/* ── Form Elements ─────────────────────────────────────────── */
.form-label { font-size: 13px; font-weight: 700; color: var(--color-text-body); display: block; margin-bottom: 6px; }
.form-label-sm { font-size: 12px; font-weight: 700; color: var(--color-text-muted); display: block; margin-bottom: 5px; }
.form-input {
  width: 100%;
  border: 1px solid var(--color-border-light);
  border-radius: 12px; padding: 12px 15px;
  font-size: 15px; color: var(--color-dark);
  background: var(--color-white); outline: none;
  transition: border-color var(--transition);
}
.form-input:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(79,70,229,.08); }
.form-input::placeholder { color: #a0a0b0; }
.form-input-sm { border-radius: 11px; padding: 10px 13px; font-size: 14px; }
textarea.form-input { resize: vertical; min-height: 130px; }
textarea.form-input-sm { min-height: 95px; }
.form-select { color: var(--color-dark); }

/* ── POST / ARTICLE PAGE ───────────────────────────────────── */
.post-hero-img {
  height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,.8) 0%, transparent 50%);
}
.post-hero-content { position: absolute; bottom: 0; right: 0; left: 0; padding: 32px; }
.post-hero-content h1 {
  font-size: clamp(24px, 4vw, 42px); font-weight: 900;
  color: var(--color-white); letter-spacing: -1px; line-height: 1.2; max-width: 700px;
}
.post-hero-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.post-hero-meta span { color: rgba(255,255,255,.7); font-size: 13px; }
.post-hero-meta .sep { color: rgba(255,255,255,.5); }

.progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: var(--color-primary); z-index: 200; transition: width .1s; }

.prose h2    { font-size: 22px; font-weight: 900; letter-spacing: -.5px; margin: 32px 0 12px; color: var(--color-dark); }
.prose h3    { font-size: 18px; font-weight: 800; margin: 24px 0 10px; color: var(--color-dark); }
.prose p     { font-size: 16px; color: #374151; line-height: 1.85; margin-bottom: 18px; }
.prose ul    { margin: 0 0 18px 0; padding-inline-start: 22px; }
.prose ul li { font-size: 15px; color: #374151; line-height: 1.8; margin-bottom: 6px; }
.prose strong { font-weight: 700; color: var(--color-dark); }
.prose blockquote {
  border-right: 4px solid var(--color-primary);
  padding: 16px 20px; background: var(--color-indigo-fade);
  border-radius: 0 12px 12px 0; margin: 24px 0;
  font-size: 16px; color: var(--color-primary); font-style: italic; line-height: 1.7;
}
.prose .tip-box {
  background: #f0fdf4; border: 1px solid #bbf7d0;
  border-radius: 14px; padding: 18px 20px; margin: 24px 0; display: flex; gap: 12px;
}
.prose .warn-box {
  background: #fef3c7; border: 1px solid #fde68a;
  border-radius: 14px; padding: 18px 20px; margin: 24px 0; display: flex; gap: 12px;
}
.toc-link { display: block; padding: 7px 12px; font-size: 13px; font-weight: 600; color: var(--color-text-muted); border-radius: 9px; text-decoration: none; transition: all .15s; }
.toc-link:hover, .toc-link.active { background: var(--color-indigo-light); color: var(--color-primary); }
.related-card {
  background: var(--color-white); border: 1px solid var(--color-border);
  border-radius: 18px; overflow: hidden; cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  text-decoration: none; display: block;
}
.related-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,.08); }
.related-img { height: 160px; background-size: cover; background-position: center; }
.related-body { padding: 16px; }
.related-body h4 { font-size: 14px; font-weight: 800; line-height: 1.4; margin-bottom: 6px; color: var(--color-dark); }
.related-body p  { font-size: 12px; color: var(--color-text-muted); }
.author-meta-bar {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 18px; padding: 20px 24px; margin-bottom: 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.author-info { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background-size: cover; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: 14px; }
.author-role { font-size: 12px; color: var(--color-text-faint); }
.share-group { display: flex; gap: 8px; }
.share-chip {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 14px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700; cursor: pointer;
  border: 1px solid var(--color-border);
  background: var(--color-white); color: var(--color-text-muted);
  transition: all var(--transition);
}
.share-chip:hover { border-color: var(--color-primary); color: var(--color-primary); background: var(--color-indigo-light); }
.sidebar-toc {
  position: sticky; top: 78px;
  background: var(--color-white); border: 1px solid var(--color-border);
  border-radius: 20px; padding: 20px;
}
.sidebar-toc h3 { font-size: 12px; font-weight: 800; color: var(--color-text-faint); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 12px; }
.sidebar-cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 20px; padding: 24px; color: var(--color-white);
  position: sticky; top: 220px; margin-top: 20px;
}
.sidebar-cta h3 { font-size: 16px; font-weight: 900; margin-bottom: 8px; }
.sidebar-cta p  { font-size: 13px; opacity: .85; line-height: 1.6; margin-bottom: 16px; }
.sidebar-cta button {
  width: 100%; background: var(--color-white); color: var(--color-primary);
  border: none; border-radius: var(--radius-pill); padding: 10px;
  font-size: 14px; font-weight: 800; cursor: pointer; transition: background var(--transition);
}
.sidebar-cta button:hover { background: #f0f0fe; }

/* ── Background Image Classes ──────────────────────────────── */
/* Business cover */
.bg-cover-architecture {
  background-image: url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?auto=format&fit=crop&w=1600');
}
/* Profile — Yossi Levy */
.bg-profile-yossi-sm {
  background-image: url('https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=120');
}
.bg-profile-yossi {
  background-image: url('https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=400');
}
/* Profile — Sarah */
.bg-profile-sarah {
  background-image: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=400');
}
.bg-profile-sarah-sm {
  background-image: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=100');
}
/* Profile — David */
.bg-profile-david {
  background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&w=400');
}
/* Profile — Roni */
.bg-profile-roni {
  background-image: url('https://images.unsplash.com/photo-1580489944761-15a19d654956?auto=format&fit=crop&w=400');
}
/* Profile — Avi */
.bg-profile-avi {
  background-image: url('https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?auto=format&fit=crop&w=400');
}
/* Team cards */
.bg-team-yossi { background-image: url('https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=320&h=460'); }
.bg-team-sarah { background-image: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=320&h=460'); }
.bg-team-avi   { background-image: url('https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?auto=format&fit=crop&w=320&h=460'); }
.bg-team-roni  { background-image: url('https://images.unsplash.com/photo-1580489944761-15a19d654956?auto=format&fit=crop&w=320&h=460'); }
/* Blog */
.bg-blog-architecture { background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=800'); }
.bg-blog-cafe         { background-image: url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&w=600'); }
.bg-blog-fitness      { background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6954?auto=format&fit=crop&w=600'); }
.bg-blog-legal        { background-image: url('https://images.unsplash.com/photo-1579310962131-aa21f240d986?auto=format&fit=crop&w=600'); }
.bg-blog-office       { background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=600'); }
.bg-blog-house        { background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=600'); }
/* Post hero */
.bg-post-hero { background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1400'); }
/* Business listing cards */
.bg-biz-cafe          { background-image: url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&w=800'); }
.bg-biz-moving        { background-image: url('https://images.unsplash.com/photo-1569336415962-a4bd9f69c0c9?auto=format&fit=crop&w=400'); }
.bg-biz-fitness       { background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6954?auto=format&fit=crop&w=800'); }
.bg-biz-plumber       { background-image: url('https://images.unsplash.com/photo-1560185007-cde436f6a4d0?auto=format&fit=crop&w=800'); }
.bg-biz-legal         { background-image: url('https://images.unsplash.com/photo-1579310962131-aa21f240d986?auto=format&fit=crop&w=800'); }
.bg-biz-architecture  { background-image: url('https://images.unsplash.com/photo-1583847268964-b28dc8f51f92?auto=format&fit=crop&w=800'); }
/* Project gallery */
.bg-proj-1 { background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=800'); }
.bg-proj-2 { background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=800'); }
.bg-proj-3 { background-image: url('https://images.unsplash.com/photo-1583847268964-b28dc8f51f92?auto=format&fit=crop&w=200'); }
.bg-proj-4 { background-image: url('https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=200'); }
.bg-proj-5 { background-image: url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=200'); }
.bg-proj-6 { background-image: url('https://images.unsplash.com/photo-1600566753376-12c8ab7fb75b?auto=format&fit=crop&w=200'); }
.bg-proj-7 { background-image: url('https://images.unsplash.com/photo-1600573472550-8090b5e0745e?auto=format&fit=crop&w=200'); }
/* Author avatars */
.bg-author-mia { background-image: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=128'); }

/* ── Typography scale ──────────────────────────────────────── */
.text-11 { font-size: 11px; }
.text-12 { font-size: 12px; }
.text-13 { font-size: 13px; }
.text-14 { font-size: 14px; }
.text-15 { font-size: 15px; }
.text-16 { font-size: 16px; }
.text-17 { font-size: 17px; }
.text-18 { font-size: 18px; }
.text-20 { font-size: 20px; }
.text-21 { font-size: 21px; }
.text-22 { font-size: 22px; }
.text-23 { font-size: 23px; }
.text-28 { font-size: 28px; }
.text-32 { font-size: 32px; }
.text-36 { font-size: 36px; }
.lh-7  { line-height: 1.7; }
.lh-8  { line-height: 1.8; }
.lh-85 { line-height: 1.85; }

/* ── Spacing helpers ───────────────────────────────────────── */
.mt-4  { margin-top: 4px; }
.mt-5  { margin-top: 5px; }
.mt-6  { margin-top: 6px; }
.mt-8  { margin-top: 8px; }
.mt-10 { margin-top: 10px; }
.mt-12 { margin-top: 12px; }
.mt-14 { margin-top: 14px; }
.mt-16 { margin-top: 16px; }
.mt-18 { margin-top: 18px; }
.mt-20 { margin-top: 20px; }
.mt-22 { margin-top: 22px; }
.mt-24 { margin-top: 24px; }
.mt-28 { margin-top: 28px; }
.mt-32 { margin-top: 32px; }
.mb-4  { margin-bottom: 4px; }
.mb-6  { margin-bottom: 6px; }
.mb-7  { margin-bottom: 7px; }
.mb-8  { margin-bottom: 8px; }
.mb-10 { margin-bottom: 10px; }
.mb-12 { margin-bottom: 12px; }
.mb-14 { margin-bottom: 14px; }
.mb-16 { margin-bottom: 16px; }
.mb-18 { margin-bottom: 18px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-28 { margin-bottom: 28px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.ms-auto { margin-inline-start: auto; }
.ms-7   { margin-inline-start: 7px; }
.p-16   { padding: 16px; }
.p-18   { padding: 18px; }
.p-20   { padding: 20px; }
.p-22   { padding: 22px; }
.p-24   { padding: 24px; }
.p-26   { padding: 26px; }
.p-28   { padding: 28px; }
.p-36   { padding: 36px; }
.pt-20  { padding-top: 20px; }
.pt-22  { padding-top: 22px; }
.pt-24  { padding-top: 24px; }
.pb-14  { padding-bottom: 14px; }
.pb-18  { padding-bottom: 18px; }
.pb-22  { padding-bottom: 22px; }

/* ── Flex helpers ──────────────────────────────────────────── */
.d-flex         { display: flex; }
.flex-col       { flex-direction: column; }
.flex-wrap      { flex-wrap: wrap; }
.items-center   { align-items: center; }
.items-start    { align-items: flex-start; }
.items-end      { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.justify-end     { justify-content: flex-end; }
.flex-1         { flex: 1; }
.flex-shrink-0  { flex-shrink: 0; }
.gap-4  { gap: 4px; }
.gap-5  { gap: 5px; }
.gap-6  { gap: 6px; }
.gap-7  { gap: 7px; }
.gap-8  { gap: 8px; }
.gap-9  { gap: 9px; }
.gap-10 { gap: 10px; }
.gap-12 { gap: 12px; }
.gap-14 { gap: 14px; }
.gap-16 { gap: 16px; }
.gap-18 { gap: 18px; }
.gap-20 { gap: 20px; }

/* ── Display / visibility ──────────────────────────────────── */
.block          { display: block; }
.inline-block   { display: inline-block; }
.inline-flex    { display: inline-flex; }
.relative       { position: relative; }
.absolute       { position: absolute; }
.text-center    { text-align: center; }
.text-right     { text-align: right; }
.w-full         { width: 100%; }
.overflow-hidden { overflow: hidden; }
.white-space-nowrap { white-space: nowrap; }
.word-break-all { word-break: break-all; }
.letter-spacing-tight { letter-spacing: -.5px; }
.letter-spacing-tighter { letter-spacing: -1px; }

/* ── Border helpers ────────────────────────────────────────── */
.border-top     { border-top: 1px solid var(--color-border); }
.border-bottom  { border-bottom: 1px solid var(--color-border); }
.border-top-light { border-top: 1px solid #f0f0f7; }

/* ── Animation delays ──────────────────────────────────────── */
.delay-0   { transition-delay: 0s; }
.delay-06  { transition-delay: .06s; }
.delay-08  { transition-delay: .08s; }
.delay-1   { transition-delay: .1s; }
.delay-12  { transition-delay: .12s; }
.delay-16  { transition-delay: .16s; }
.delay-18  { transition-delay: .18s; }
.delay-2   { transition-delay: .2s; }
.delay-24  { transition-delay: .24s; }
.delay-3   { transition-delay: .3s; }

/* ── Section padding presets ───────────────────────────────── */
.section-pad-sm  { padding: 48px 24px; }
.section-pad     { padding: 64px 24px; }
.section-pad-lg  { padding: 80px 24px; }
.section-pad-xl  { padding: 100px 24px; }
.section-pad-b   { padding: 0 24px 80px; }

/* ── Misc Helpers ──────────────────────────────────────────── */
.text-primary  { color: var(--color-primary); }
.text-muted    { color: var(--color-text-muted); }
.text-faint    { color: var(--color-text-faint); }
.text-white    { color: var(--color-white); }
.text-green    { color: var(--color-green); }
.text-dark     { color: var(--color-dark); }
.font-black    { font-weight: 900; }
.font-bold     { font-weight: 700; }
.gap-form { display: flex; flex-direction: column; gap: 10px; }
.two-col-form { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.section-wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-header { margin-bottom: 40px; }
.section-header h2 { font-size: 32px; font-weight: 900; letter-spacing: -1px; }
.section-header p  { color: var(--color-text-muted); margin-top: 6px; }
.divider { border-top: 1px solid var(--color-border); }

.sidebar-card-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 12px;
}
.bg-proj-8 { background-image: url('https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=200'); }

/* ── Category Page – Sticky Filter Bar ────────────────────── */
.filter-bar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 14px 24px;
  position: sticky;
  top: 68px;
  z-index: 40;
}
.filter-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-bar-right {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sort-label { font-size: 13px; color: var(--color-text-faint); }

/* ── Category Page – Sidebar sticky ───────────────────────── */
.cat-sidebar { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 130px; }
.apply-btn {
  width: 100%;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 12px;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}
.apply-btn:hover { background: var(--color-primary-dk); }

/* ── Category Page – Results header ───────────────────────── */
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.results-count { font-size: 14px; color: var(--color-text-muted); font-weight: 500; }
.results-count strong { color: var(--color-dark); }
.view-toggle-group { display: flex; gap: 6px; }
.view-btn {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  padding: 7px 10px;
  cursor: pointer;
  transition: background var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.view-btn.active { background: var(--color-indigo-light); border-color: var(--color-primary); }

/* ── Category Page – Horizontal Row Card ──────────────────── */
.biz-row-card {
  display: flex;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-lift), box-shadow var(--transition-lift);
}
.biz-row-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }
.biz-row-photo {
  width: 180px;
  flex-shrink: 0;
  background-size: cover;
  background-position: top center;
}
.biz-row-body { padding: 22px; flex: 1; }
.biz-row-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}
.biz-row-title { font-size: 18px; font-weight: 800; }
.biz-row-meta { display: flex; align-items: center; gap: 8px; margin-top: 4px; flex-wrap: wrap; }
.biz-row-desc { font-size: 13px; color: var(--color-text-muted); line-height: 1.6; margin-bottom: 12px; }
.biz-row-footer { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.available-badge {
  margin-inline-start: auto;
  font-size: 13px;
  color: var(--color-green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.response-time {
  margin-inline-start: auto;
  font-size: 13px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.results-list { display: flex; flex-direction: column; gap: 14px; }

/* ── Pagination ────────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
}
.page-btn {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all var(--transition);
}
.page-btn:hover { background: var(--color-indigo-light); color: var(--color-primary); border-color: var(--color-primary); }
.page-btn.active { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); font-weight: 700; }
.page-btn.disabled { color: var(--color-text-faint); cursor: default; }
.page-ellipsis { font-size: 14px; color: var(--color-text-faint); padding: 0 4px; }

/* ── Simple Footer (category / business / post pages) ─────── */
.footer-simple {
  background: var(--color-dark);
  color: #9ca3af;
  padding: 34px 24px;
  margin-top: 60px;
}
.footer-simple-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-simple-logo { font-size: 18px; font-weight: 900; letter-spacing: -1px; color: var(--color-white); }
.footer-simple-logo .logo-accent { color: #a5b4fc; }

/* ── Business Page – Sub Ratings ──────────────────────────── */
.sub-ratings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-bottom: 24px; }
.sub-rating-box { background: var(--color-body-bg); border-radius: 11px; padding: 13px; text-align: center; }
.sub-rating-val { font-size: 19px; font-weight: 900; color: var(--color-primary); }
.sub-rating-label { font-size: 11px; color: var(--color-text-faint); margin-top: 3px; font-weight: 500; }

/* ── Business Page – Review Filter Buttons ────────────────── */
.review-filters { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.rv-filter-btn {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all var(--transition);
}
.rv-filter-btn:hover { background: var(--color-indigo-light); color: var(--color-primary); }
.rv-filter-btn.active { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); font-weight: 700; }

/* ── Business Page – Owner Reply ──────────────────────────── */
.owner-reply {
  background: var(--color-body-bg);
  border-radius: 10px;
  padding: 11px 13px;
  border-right: 3px solid var(--color-primary);
  margin-top: 11px;
}
.owner-reply-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.owner-reply p { font-size: 13px; color: var(--color-text-muted); line-height: 1.6; }

/* ── Business Page – Project Tag type label ───────────────── */
.proj-label-indigo { background: var(--color-indigo-light); color: var(--color-primary); border-radius: 5px; padding: 2px 7px; font-size: 11px; font-weight: 600; }
.proj-label-amber  { background: #fef3c7; color: #92400e; border-radius: 5px; padding: 2px 7px; font-size: 11px; font-weight: 600; }
.proj-gallery { display: flex; gap: 4px; }
.proj-gallery-thumb { height: 48px; flex: 1; background-size: cover; border-radius: 6px; cursor: pointer; position: relative; }
.proj-gallery-more {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white); font-size: 11px; font-weight: 700;
}

/* ── Business Page – About: credential item ──────────────── */
.credential-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px;
  background: var(--color-body-bg);
  border-radius: 11px;
}
.credential-icon {
  width: 32px; height: 32px;
  background: var(--color-indigo-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.credential-title { font-weight: 700; font-size: 13px; }
.credential-sub   { font-size: 11px; color: var(--color-text-faint); }

/* ── Business Page – Hours grid ───────────────────────────── */
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; font-size: 13px; }
.hour-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 13px;
  background: var(--color-body-bg);
  border-radius: 10px;
}
.hour-row.closed { background: #fef2f2; }
.hour-row.closed .hour-day   { color: var(--color-text-faint); }
.hour-row.closed .hour-time  { color: #ef4444; font-weight: 700; }
.hour-day  { color: var(--color-text-muted); }
.hour-time { font-weight: 700; }

/* ── Business Page – Services Tab ─────────────────────────── */
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 20px;
  transition: box-shadow .2s, transform var(--transition-lift);
}
.service-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.07); transform: translateY(-2px); }
.service-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--color-indigo-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.service-name  { font-size: 15px; font-weight: 800; margin-bottom: 6px; }
.service-desc  { font-size: 13px; color: var(--color-text-muted); line-height: 1.6; margin-bottom: 12px; }
.service-price { font-size: 13px; font-weight: 700; color: var(--color-primary); }
.service-from  { font-size: 11px; color: var(--color-text-faint); margin-bottom: 2px; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .site-nav    { display: none; }
  .nav-toggle  { display: flex; }
  .header-actions .btn-primary { display: none; }

  .hero-layout { grid-template-columns: 1fr; }
  .hero-layout .hero-visual { display: none; }
  .hero-light { padding: 60px 24px 0; }
  .hero-copy  { padding-bottom: 40px; }
  .hero-copy h1 { font-size: clamp(34px, 8vw, 50px); }

  .cta-section { padding: 40px 24px; flex-direction: column; align-items: flex-start; }
  .cta-copy h2 { font-size: 28px; }

  .cover-wrap { height: 220px; }

  .anchor-nav { overflow-x: auto; border-radius: 12px; }
  .anchor-link { font-size: 12px; padding: 10px 6px; min-width: 70px; }

  .post-hero-img { height: 280px; }

  .sidebar-sticky { position: static; }

  .post-card .post-featured-grid { grid-template-columns: 1fr; }
  .post-featured-body { padding: 24px; }

  .reviews-header { padding-top: 48px; }

  footer { padding: 40px 24px 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .cta-actions { width: 100%; }
  .cta-actions .btn-white { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .header-inner { padding: 12px 16px; }
  .section-wrap { padding: 0 16px; }
  .hero-search { flex-wrap: wrap; }
  .hero-search select { border-right: none; border-top: 1px solid var(--color-border-light); padding: 8px 12px; }
  .two-col-form { grid-template-columns: 1fr; }
}
