/* ============================================================
   נכסים – ניהול נכסי נדל״ן
   פלטת צבעים:
   60% לבן        #F8FAFC
   25% כחול נייבי  #0F172A
   10% טורקיז      #14B8A6
   5%  זהב עדין    #F59E0B
   ============================================================ */

:root {
  --white: #f8fafc;
  --navy: #0f172a;
  --navy-soft: #1e293b;
  --teal: #14b8a6;
  --teal-dark: #0d9488;
  --gold: #f59e0b;
  --text: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.15);
  --container: 1200px;
  --transition: 0.25s ease;
}

:focus-visible { outline: 3px solid rgba(245, 158, 11, 0.85); outline-offset: 4px; }

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

html { scroll-behavior: smooth; }

body {
  font-family: "Heebo", system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.access-font-lg { font-size: 112%; }
body.access-font-xl { font-size: 124%; }
body.access-contrast { background: #000; color: #fff; }
body.access-contrast section, body.access-contrast header, body.access-contrast footer, body.access-contrast .service-card, body.access-contrast .article-card, body.access-contrast .contact-form, body.access-contrast .stat { background-color: #000 !important; color: #fff !important; }
body.access-contrast p, body.access-contrast h1, body.access-contrast h2, body.access-contrast h3, body.access-contrast h4, body.access-contrast a, body.access-contrast span, body.access-contrast li { color: #fff !important; }
body.access-links a { text-decoration: underline !important; text-decoration-thickness: 2px; text-underline-offset: 4px; }
body.access-readable { font-family: Arial, sans-serif; letter-spacing: 0.01em; }
body.access-motion *, body.access-motion *::before, body.access-motion *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
svg path, svg circle, svg rect { vector-effect: non-scaling-stroke; }
.inline-icon, .contact-icon {
  width: 1.15em; height: 1.15em; display: inline-grid; place-items: center; flex: 0 0 auto; color: var(--teal-dark);
}
.inline-icon svg, .contact-icon svg { width: 100%; height: 100%; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.site-header .container { max-width: 1460px; }

.eyebrow {
  color: var(--teal);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--navy); font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; }
.section-head-start { text-align: right; max-width: 820px; margin: 0 0 56px; }
.section-sub { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}
.btn { border-radius: 50px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 10px 24px rgba(20, 184, 166, 0.4); }
.btn-primary:hover { background: var(--teal-dark); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; border-radius: var(--radius-sm); }

/* Play video button */
.play-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: 1rem; color: #fff;
  transition: color var(--transition);
}
.play-btn .play-icon {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: grid; place-items: center;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.play-btn .play-icon svg { width: 20px; height: 20px; fill: currentColor; stroke: none; transform: translateX(-1px); }
.play-btn:hover { color: var(--teal); }
.play-btn:hover .play-icon { border-color: var(--teal); background: var(--teal); color: #fff; transform: scale(1.05); }

/* ---------- Top utility bar ---------- */
.topbar { background: #0b1120; color: rgba(255, 255, 255, 0.78); font-size: 1.125rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 48px; }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a {
  width: 30px; height: 30px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255, 255, 255, 0.08);
  font-weight: 700; font-size: 0.88rem; transition: background var(--transition), color var(--transition);
}
.topbar-social svg { width: 16px; height: 16px; }
.topbar-social a:first-child svg, .topbar-social a:last-child svg { fill: currentColor; stroke: none; }
.topbar-social a:hover { background: var(--teal); color: #fff; }
.topbar-links { display: flex; align-items: center; gap: 16px; }
.topbar-links a { transition: color var(--transition); }
.topbar-links a:hover { color: var(--teal); }
.topbar-sep { color: rgba(255, 255, 255, 0.25); }
.topbar-phone { color: #fff; font-weight: 700; }
.lang-switcher { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.lang-label { color: rgba(255, 255, 255, 0.86); font-weight: 800; font-size: 0.98em; }
.lang-switcher a {
  min-width: 36px; height: 30px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 999px;
  color: rgba(255, 255, 255, 0.86); font-weight: 800; font-size: 1.08rem; line-height: 1;
  position: relative;
}
.lang-switcher a:hover, .lang-switcher a[aria-current="page"] { background: var(--teal); border-color: var(--teal); color: #fff; }
.flag {
  width: 25px; height: 17px; display: inline-block; flex: 0 0 auto;
  border-radius: 3px; overflow: hidden; position: relative;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.flag-il { background: linear-gradient(to bottom, #fff 0 18%, #1f5fbf 18% 31%, #fff 31% 69%, #1f5fbf 69% 82%, #fff 82% 100%); }
.flag-il::after {
  content: "\2721"; position: absolute; inset: 0; display: grid; place-items: center;
  color: #1f5fbf; font-size: 10px; line-height: 1;
}
.flag-gb {
  background:
    linear-gradient(27deg, transparent 42%, #fff 42% 47%, #c8102e 47% 53%, #fff 53% 58%, transparent 58%),
    linear-gradient(153deg, transparent 42%, #fff 42% 47%, #c8102e 47% 53%, #fff 53% 58%, transparent 58%),
    linear-gradient(to right, transparent 40%, #fff 40% 60%, transparent 60%),
    linear-gradient(to bottom, transparent 35%, #fff 35% 65%, transparent 65%),
    linear-gradient(to right, transparent 44%, #c8102e 44% 56%, transparent 56%),
    linear-gradient(to bottom, transparent 41%, #c8102e 41% 59%, transparent 59%),
    #012169;
}
.flag-ru { background: linear-gradient(to bottom, #fff 0 33.33%, #1c57a7 33.33% 66.66%, #d52b1e 66.66% 100%); }
.flag-fr { background: linear-gradient(to right, #0055a4 0 33.33%, #fff 33.33% 66.66%, #ef4135 66.66% 100%); }
.lang-name {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}
.mobile-lang-switcher { display: none; }
html[lang="en"] body, html[lang="fr"] body, html[lang="ru"] body { font-family: "Noto Sans", "Heebo", system-ui, -apple-system, sans-serif; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.site-header.scrolled .header-inner { min-height: 86px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 104px; }

.logo { display: inline-flex; align-items: center; gap: 11px; color: var(--navy); flex: 0 0 auto; }
.logo-mark {
  width: 58px; height: 50px; border-radius: 16px;
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  overflow: hidden;
}
.logo-img { width: 100%; height: 100%; max-width: none; object-fit: contain; padding: 5px; }
.logo.has-custom-logo { gap: 0; }
.logo.has-custom-logo .logo-mark { width: 150px; height: 100px; background: transparent; border-color: transparent; border-radius: 0; box-shadow: none; }
.logo.has-custom-logo .logo-img { padding: 0; transition: opacity var(--transition), filter var(--transition); }
.logo.has-custom-logo .logo-copy { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.logo-copy { display: grid; gap: 1px; line-height: 1; }
.logo-text { font-weight: 900; font-size: 1.42rem; letter-spacing: 0; }
.logo-sub { color: var(--muted); font-weight: 750; font-size: 0.76rem; letter-spacing: 0; }
.site-header.scrolled .logo.has-custom-logo .logo-mark { width: 126px; height: 84px; background: transparent; }
.site-header.scrolled .logo.has-custom-logo .logo-img { opacity: 0.72; filter: saturate(0.8) contrast(0.9); }

.main-nav {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex: 1 1 auto;
  min-width: 0; white-space: nowrap; padding: 8px 10px; border: 1px solid rgba(226,232,240,.9);
  border-radius: 999px; background: rgba(255,255,255,.72); box-shadow: 0 10px 26px rgba(15,23,42,.06);
}
.main-nav a {
  font-weight: 850; font-size: 1.12rem; color: var(--navy); position: relative; transition: color var(--transition), background var(--transition), transform var(--transition);
  flex: 1 1 0; min-width: max-content; text-align: center; padding: 10px 12px; border-radius: 999px; line-height: 1.2;
}
.main-nav a:not(.nav-cta)::after {
  content: none;
}
.main-nav a:not(.nav-cta):hover { color: var(--teal-dark); background: rgba(20,184,166,.1); }
.nav-cta { background: var(--navy); color: #fff !important; border-radius: 999px; transition: background var(--transition), transform var(--transition); box-shadow: 0 10px 22px rgba(15,23,42,.16); }
.nav-cta:hover { background: var(--teal); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: var(--transition); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: #0f172a url("assets/images/image-10.webp") center/cover;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; pointer-events: none;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.9) 34%, rgba(15, 23, 42, 0.58) 100%);
  z-index: 1; pointer-events: none;
}
body.access-motion .hero-video { display: none !important; }
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }
.hero-content { position: relative; z-index: 2; padding: 132px 24px 118px; max-width: 980px; }
.hero .eyebrow {
  width: fit-content; font-size: clamp(1.45rem, 2.4vw, 2.25rem); margin-bottom: 18px;
  font-weight: 950; letter-spacing: 0; line-height: 1.05;
  color: #fff; background: linear-gradient(90deg, #14b8a6, #f59e0b, #38bdf8, #fff, #14b8a6);
  background-size: 280% 100%; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; text-shadow: 0 12px 34px rgba(20, 184, 166, 0.22);
  animation: heroEyebrowColors 7s ease-in-out infinite;
}
@keyframes heroEyebrowColors {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) { .hero .eyebrow { animation: none; background-position: 50% 50%; } }
.hero h1 { font-size: clamp(3.15rem, 6.8vw, 5.55rem); font-weight: 900; line-height: 1.02; letter-spacing: 0; margin-bottom: 26px; }
.hero-lead { font-size: clamp(1.28rem, 1.35vw, 1.55rem); color: rgba(255, 255, 255, 0.9); max-width: 820px; margin-bottom: 40px; line-height: 1.68; font-weight: 500; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.hero .btn, .hero .play-btn { font-size: 1.16rem; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 46px; margin-top: 62px; }
.stat { display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px; }
.stat-num, .stat-plus { font-size: 2.75rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-label { width: 100%; color: rgba(255, 255, 255, 0.82); font-size: 1.16rem; margin-top: 6px; font-weight: 700; }

/* ---------- Tech gradient band ---------- */
.tech-band {
  background: linear-gradient(100deg, #0ea5e9 0%, #2563eb 55%, #1e40af 100%);
  position: relative; overflow: hidden;
}
.tech-band::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.12) 0 2px, transparent 2px),
    radial-gradient(circle at 60% 30%, rgba(255,255,255,0.1) 0 2px, transparent 2px),
    radial-gradient(circle at 85% 70%, rgba(255,255,255,0.1) 0 2px, transparent 2px);
  background-size: 120px 120px;
  opacity: 0.8;
}
.tech-band-inner {
  position: relative;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 40px;
  padding: 22px 24px;
}
.tech-item { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; font-size: 1rem; }
.tech-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.3); }

/* ---------- Features / Services ---------- */
.features { padding: 100px 0; }
.service-carousel-wrap { margin-top: 26px; }
.service-carousel-head {
  display: flex; justify-content: space-between; gap: 24px; align-items: end;
  margin-bottom: 26px;
}
.service-carousel-head h3 { color: var(--navy); font-size: clamp(1.35rem, 2.3vw, 2rem); font-weight: 900; margin-bottom: 8px; }
.service-carousel-head p { color: var(--muted); max-width: 660px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 4px 2px 18px;
  scrollbar-width: thin;
  cursor: grab;
}
.service-carousel.is-dragging, .properties-grid.is-dragging { cursor: grabbing; user-select: none; }
.service-carousel::-webkit-scrollbar { height: 8px; }
.service-carousel::-webkit-scrollbar-thumb { background: var(--line); border-radius: 10px; }
.service-carousel .service-card { flex: 0 0 calc((100% - 56px) / 3); scroll-snap-align: start; }
.service-card {
  background: #eef6f7;
  border-radius: 20px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-open {
  display: block; width: 100%; height: 100%;
  border: 0; padding: 0; background: transparent; text-align: right;
  font: inherit; color: inherit;
}
.service-media { aspect-ratio: 16 / 10; overflow: hidden; padding: 14px 14px 0; }
.service-open .service-media { display: block; }
.service-media img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; transition: transform 0.5s ease; }
.service-card:hover .service-media img { transform: scale(1.05); }
.service-body { padding: 22px 26px 30px; }
.service-open .service-body { display: block; }
.service-kicker { color: var(--teal-dark); font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; display: inline-block; }
.service-body h3 { color: var(--navy); font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
.service-body p { color: var(--muted); font-size: 0.98rem; margin-bottom: 18px; }
.service-link { color: var(--teal-dark); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.service-link::after { content: "\2190"; transition: transform var(--transition); }
.service-card:hover .service-link::after { transform: translateX(-4px); }
.service-page-link {
  display: inline-flex; margin: 0 26px 24px; color: var(--navy); font-weight: 800;
  border-bottom: 2px solid var(--gold);
}

/* ---------- About ---------- */
.about { padding: 90px 0; background: #fff; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); display: block; width: 100%; }
.about-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; gap: 12px;
  padding: 48px 26px 22px;
  border-radius: 0 0 var(--radius) var(--radius);
  background: linear-gradient(to top, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.35) 45%, rgba(15, 23, 42, 0) 100%);
  pointer-events: none;
}
.about-caption-mark { color: var(--gold); font-size: 1.3rem; flex-shrink: 0; }
.about-caption-text {
  color: #fff; font-size: 1.15rem; font-weight: 600; letter-spacing: 0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.about-text h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--navy); margin-bottom: 18px; }
.about-text p { color: var(--muted); margin-bottom: 20px; }
.about-list { margin-bottom: 28px; display: grid; gap: 12px; }
.about-list li { position: relative; padding-right: 30px; color: var(--text); }
.about-list li::before {
  content: "✓";
  position: absolute; right: 0; top: 0;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--teal); color: #fff;
  border-radius: 50%; font-size: 0.8rem;
}
.about-text p strong { color: var(--navy); }

/* מקטעי אודות נוספים */
.about-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 72px;
}
.about-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-right: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 30px;
}
.about-block h3 { color: var(--navy); font-size: 1.35rem; margin-bottom: 14px; }
.about-block p { color: var(--muted); margin-bottom: 14px; }
.about-block p:last-child { margin-bottom: 0; }

.about-services {
  margin-top: 72px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 44px;
  color: #fff;
}
.about-services h3 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.about-services-lead { color: rgba(255, 255, 255, 0.75); margin-bottom: 26px; }
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
.services-list li {
  position: relative;
  padding-right: 32px;
  color: rgba(255, 255, 255, 0.9);
}
.services-list li::before {
  content: "✓";
  position: absolute; right: 0; top: 2px;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--teal); color: #fff;
  border-radius: 50%; font-size: 0.8rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.process-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.process-num {
  display: inline-block;
  font-size: 2rem; font-weight: 800;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.process-step h4 { color: var(--navy); font-size: 1.15rem; margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: 0.95rem; }
.process-note {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 28px;
  font-style: italic;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 22px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  font-size: 1.7rem;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 50%;
}
.value-card h4 { color: var(--navy); font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 0.95rem; }

.about-brand-cta {
  margin-top: 72px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: var(--radius);
  padding: 56px 32px;
  color: #fff;
}
.about-brand-cta h3 { font-size: 2rem; color: #fff; margin-bottom: 6px; }
.about-brand-en { color: var(--gold); font-weight: 600; letter-spacing: 0.08em; margin-bottom: 14px; }
.about-brand-slogan { color: rgba(255, 255, 255, 0.85); font-size: 1.1rem; margin-bottom: 28px; }

/* ---------- Properties ---------- */
.properties { padding: 100px 0; }
.carousel-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.carousel-head .section-head { margin: 0; }
.carousel-nav { display: flex; gap: 12px; flex-shrink: 0; }
.carousel-btn {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--navy);
  line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.carousel-btn svg { width: 22px; height: 22px; }
.carousel-btn:hover { background: var(--teal); color: #fff; border-color: var(--teal); transform: translateY(-2px); }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.carousel-dot {
  width: 10px; height: 10px; padding: 0; border-radius: 50%;
  border: none; cursor: pointer; background: var(--line);
  transition: background var(--transition), transform var(--transition), width var(--transition);
}
.carousel-dot:hover { background: var(--teal); }
.carousel-dot.is-active { background: var(--teal); width: 28px; border-radius: 6px; }
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 40px; }
.filter-btn {
  font-family: inherit; font-weight: 600; font-size: 0.95rem;
  padding: 9px 22px; border-radius: 40px;
  border: 1px solid var(--line); background: #fff; color: var(--navy);
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover { border-color: var(--teal); color: var(--teal); }
.filter-btn.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }

.properties-grid {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 14px;
  scrollbar-width: thin;
}
.properties-grid::-webkit-scrollbar { height: 8px; }
.properties-grid::-webkit-scrollbar-thumb { background: var(--line); border-radius: 10px; }
.properties-grid .property-card {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 56px) / 3);
}
.property-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.property-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; cursor: pointer; }
.property-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.property-card:hover .property-media img { transform: scale(1.06); }
.property-media.has-no-image { cursor: default; background: linear-gradient(135deg, var(--navy), var(--teal-dark)); }
.property-image-placeholder, .pm-image-placeholder {
  width: 100%; height: 100%; display: grid; place-items: center;
  color: #fff; font-weight: 800; text-align: center; padding: 24px;
}
.property-tag {
  position: absolute; top: 14px; right: 14px;
  background: var(--teal); color: #fff;
  font-size: 0.8rem; font-weight: 700;
  padding: 5px 14px; border-radius: 30px;
}
.property-tag.sale { background: var(--gold); }
.property-tag.commercial { background: var(--navy); }
.property-gallery-count {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(15, 23, 42, 0.75); color: #fff;
  font-size: 0.82rem; font-weight: 600;
  padding: 5px 12px; border-radius: 30px;
  display: inline-flex; align-items: center; gap: 6px;
}
.property-body { padding: 22px; }
.property-price { color: var(--teal); font-weight: 800; font-size: 1.25rem; margin-bottom: 6px; }
.property-title { color: var(--navy); font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.property-location { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; }
.property-location::before { content: "📍 "; }
.property-specs {
  display: flex; gap: 18px; padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.9rem;
}
.property-specs span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Articles ---------- */
.articles { padding: 90px 0; background: #fff; }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.carousel-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.articles-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 4px 2px 18px;
  scrollbar-width: thin;
  cursor: grab;
}
.articles-carousel::-webkit-scrollbar { height: 8px; }
.articles-carousel::-webkit-scrollbar-thumb { background: var(--line); border-radius: 10px; }
.articles-carousel .article-card { flex: 0 0 calc((100% - 56px) / 3); scroll-snap-align: start; }
.articles-carousel.is-dragging { cursor: grabbing; user-select: none; }
.article-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: transform var(--transition), box-shadow var(--transition);
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.article-media { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.article-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.article-card:hover .article-media img { transform: scale(1.06); }
.article-body { padding: 24px; }
.article-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; font-size: 0.82rem; }
.article-cat { background: rgba(20, 184, 166, 0.12); color: var(--teal-dark); font-weight: 700; padding: 4px 12px; border-radius: 30px; }
.article-date { color: var(--muted); }
.article-card h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 10px; }
.article-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }
.article-link {
  color: var(--teal); font-weight: 700; display: inline-flex; align-items: center; gap: 6px;
  border: 0; background: transparent; padding: 0; font-family: inherit; cursor: pointer;
}
.article-link::after { content: "←"; transition: transform var(--transition); }
.article-card:hover .article-link::after { transform: translateX(-4px); }

.catalog-header { position: sticky; top: 0; }
.catalog-hero {
  padding: 150px 0 78px;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-soft) 68%, #0b2b3a 100%);
  color: #fff;
}
.catalog-hero-inner { max-width: 880px; }
.catalog-hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.08; margin-bottom: 18px; }
.catalog-hero p { color: rgba(255,255,255,0.82); font-size: 1.08rem; line-height: 1.9; }
.catalog-section { padding-top: 76px; }
.catalog-toolbar {
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  margin-bottom: 28px;
}
.catalog-toolbar h2 { color: var(--navy); font-size: clamp(1.6rem, 3vw, 2.4rem); }
.catalog-filters {
  display: grid; grid-template-columns: 1fr 220px auto; gap: 12px; align-items: center;
  margin-bottom: 28px; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
}
.catalog-filters input, .catalog-filters select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; font: inherit;
}
.catalog-filters p { color: var(--navy); font-weight: 800; white-space: nowrap; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.single-article { background: #fff; }
.single-hero {
  min-height: 520px; padding: 150px max(24px, calc((100vw - var(--container)) / 2)) 70px;
  position: relative; display: grid; align-items: end; color: #fff; overflow: hidden;
}
.single-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.single-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,.92), rgba(15,23,42,.35), rgba(15,23,42,.08)); }
.single-hero > div { position: relative; z-index: 1; max-width: 820px; }
.single-hero h1 { font-size: clamp(2.1rem, 5vw, 4rem); line-height: 1.08; margin-bottom: 16px; }
.single-hero p:not(.eyebrow) { color: rgba(255,255,255,.86); font-size: 1.08rem; line-height: 1.8; }
.single-layout {
  display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 36px;
  max-width: var(--container); margin: 0 auto; padding: 54px 24px 90px;
}
.single-toc { position: sticky; top: 110px; align-self: start; display: grid; gap: 10px; }
.single-toc a { padding: 12px 14px; border-radius: 12px; background: #f8fafc; color: var(--navy); font-weight: 800; }
.single-toc a:hover { background: rgba(20,184,166,.12); color: var(--teal-dark); }
.seo-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 0 0 24px; color: var(--muted); font-size: .92rem; }
.seo-breadcrumb a { color: var(--teal-dark); font-weight: 800; }
.article-toc-box, .article-faq, .related-articles { margin: 34px 0; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #f8fafc; }
.article-toc-box h2, .article-faq h2, .related-articles h2 { color: var(--navy); font-size: 1.25rem; margin-bottom: 14px; }
.article-toc-box ol, .article-faq dl, .related-articles ul { display: grid; gap: 10px; }
.article-toc-box a, .related-articles a { color: var(--teal-dark); font-weight: 800; }
.article-faq dt { color: var(--navy); font-weight: 900; }
.article-faq dd { color: var(--text); line-height: 1.75; }
.service-detail-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 28px; }
.service-detail-cards article { border: 1px solid var(--line); border-radius: 16px; padding: 18px; background: #f8fafc; }
.service-detail-cards h4 { color: var(--navy); margin-bottom: 8px; }
.service-detail-cards p { color: var(--muted); line-height: 1.7; }

.page-section { padding: 78px 0; background: #fff; }
.page-grid { display: grid; gap: 28px; align-items: start; }
.two-col { grid-template-columns: 1fr 1fr; }
.info-panel, .page-form, .cta-band, .report-panel {
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); padding: 28px;
}
.info-panel h2, .page-form h2, .cta-band h2 { color: var(--navy); font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 14px; }
.info-panel p, .cta-band p { color: var(--muted); line-height: 1.85; margin-bottom: 18px; }
.detail-list, .check-list { display: grid; gap: 12px; margin: 18px 0 24px; }
.detail-list li, .check-list li { color: var(--text); line-height: 1.75; }
.check-list li { position: relative; padding-right: 28px; }
.check-list li::before { content: ""; position: absolute; right: 0; top: .55em; width: 10px; height: 10px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(20,184,166,.12); }
.map-placeholder {
  min-height: 180px; border-radius: 16px; border: 1px dashed rgba(20,184,166,.45);
  background: linear-gradient(135deg, rgba(20,184,166,.1), rgba(245,158,11,.1)); display: grid; place-items: center; text-align: center; padding: 22px;
}
.map-placeholder span { color: var(--navy); font-weight: 900; font-size: 1.2rem; }
.map-embed { min-height: 260px; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 12px 30px rgba(15,23,42,.08); }
.map-embed iframe { width: 100%; height: 300px; border: 0; display: block; }
.page-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.page-form label { display: grid; gap: 6px; color: var(--navy); font-weight: 700; }
.page-form input, .page-form select, .page-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; font: inherit; background: #f8fafc; color: var(--text);
}
.page-form .wide, .page-form h2, .page-form button, .page-form .form-success { grid-column: 1 / -1; }
.wide-form { max-width: 920px; margin: 0 auto; }
.form-success { color: var(--teal-dark); font-weight: 800; }
.feature-grid, .report-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-grid article, .report-grid article {
  border: 1px solid var(--line); border-radius: 16px; background: #f8fafc; padding: 22px; min-height: 170px;
}
.feature-grid h3 { color: var(--navy); margin-bottom: 10px; }
.feature-grid p, .report-grid p { color: var(--muted); line-height: 1.75; }
.cta-band { margin-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 22px; background: linear-gradient(135deg, var(--navy), #12333f); color: #fff; }
.cta-band h2, .cta-band p { color: #fff; margin-bottom: 0; }
.report-grid article span { color: var(--muted); font-weight: 800; }
.report-grid article strong { display: block; color: var(--navy); font-size: 2rem; margin: 8px 0; }

.article-modal {
  position: fixed; inset: 0; z-index: 2200;
  display: none; align-items: center; justify-content: center;
  padding: 28px;
}
.article-modal.open { display: flex; }
.am-backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 23, 42, 0.74);
  backdrop-filter: blur(5px);
  animation: pmFade 0.28s ease;
}
.am-dialog {
  position: relative; z-index: 1;
  width: min(1060px, 100%); max-height: 92vh;
  overflow-y: auto; background: #fff;
  border-radius: 22px; box-shadow: 0 38px 90px rgba(15, 23, 42, 0.42);
  animation: pmPop 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}
.am-close {
  position: sticky; top: 18px; margin: 18px 18px -60px auto; z-index: 5;
  width: 44px; height: 44px; border: 0; border-radius: 50%;
  background: rgba(255, 255, 255, 0.9); color: var(--navy);
  font-size: 1.7rem; cursor: pointer; display: grid; place-items: center;
  box-shadow: var(--shadow); transition: background var(--transition), color var(--transition), transform var(--transition);
}
.am-close:hover { background: var(--teal); color: #fff; transform: rotate(90deg); }
.am-hero { position: relative; min-height: 430px; display: grid; align-items: end; overflow: hidden; }
.am-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.am-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.05));
}
.am-hero-copy { position: relative; z-index: 1; padding: 86px 52px 42px; color: #fff; max-width: 820px; }
.am-meta { color: var(--gold); font-weight: 800; margin-bottom: 10px; }
.am-hero-copy h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.08; margin-bottom: 16px; }
.am-hero-copy p { color: rgba(255, 255, 255, 0.88); font-size: 1.08rem; max-width: 720px; }
.am-summary {
  margin: 34px 52px 0; padding: 26px 28px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(20,184,166,.14), rgba(245,158,11,.12));
  border: 1px solid rgba(20,184,166,.24);
}
.am-summary h3 { color: var(--navy); font-size: 1.35rem; margin-bottom: 12px; }
.am-summary p { color: var(--text); line-height: 1.9; margin-bottom: 12px; }
.am-summary p:last-child { margin-bottom: 0; }
.am-chart-wrap { margin: 34px 52px 10px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #f8fafc; }
.am-image-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin: 30px 0 34px;
}
.am-image-card {
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  background: #fff; box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}
.am-image-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.am-image-card div { padding: 16px; }
.am-image-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 6px; }
.am-image-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
.am-chart-head { display: flex; justify-content: space-between; gap: 18px; align-items: end; margin-bottom: 22px; }
.am-chart-head h3 { color: var(--navy); font-size: 1.25rem; }
.am-chart-head p { color: var(--muted); font-size: 0.95rem; }
.am-chart { height: 230px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; align-items: end; }
.am-bar-item { height: 100%; display: grid; grid-template-rows: 1fr auto; gap: 10px; text-align: center; color: var(--muted); font-size: 0.86rem; }
.am-bar {
  align-self: end; border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, var(--teal), var(--navy-soft));
  min-height: 18px; position: relative; animation: chartGrow 0.8s ease both;
}
.am-bar span { position: absolute; top: -26px; left: 50%; transform: translateX(-50%); color: var(--navy); font-weight: 800; }
.am-bar-item strong { color: var(--text); font-weight: 700; }
@keyframes chartGrow { from { transform: scaleY(0.2); transform-origin: bottom; opacity: 0.3; } to { transform: scaleY(1); opacity: 1; } }
.am-body { padding: 28px 52px 58px; max-width: 840px; margin: 0 auto; }
.am-lead { color: var(--navy); font-size: 1.18rem; line-height: 1.9; font-weight: 500; margin-bottom: 28px; }
.am-section { margin: 34px 0; }
.am-section h3 { color: var(--navy); font-size: 1.45rem; margin-bottom: 14px; }
.am-section p { color: var(--text); line-height: 1.92; margin-bottom: 16px; }
.am-section ul { display: grid; gap: 8px; margin: 18px 0 0; padding: 18px 22px; border-right: 4px solid var(--teal); background: rgba(20, 184, 166, 0.08); border-radius: 12px; }
.am-section li { color: var(--text); }

/* ---------- Areas We Serve ---------- */
.areas { padding: 100px 0; background: #fff; }
.areas-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.areas-intro h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: var(--navy); font-weight: 800; line-height: 1.12; margin-bottom: 16px; }
.areas-intro p { color: var(--muted); margin-bottom: 26px; }
.areas-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.areas-col h4 {
  color: var(--navy); font-size: 1.1rem; font-weight: 800;
  padding-bottom: 12px; margin-bottom: 8px;
  border-bottom: 2px solid var(--teal);
}
.areas-col a {
  display: block; padding: 7px 0; color: var(--muted);
  transition: color var(--transition), padding-right var(--transition);
}
.areas-col a:hover { color: var(--teal); padding-right: 6px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-soft) 60%, #0b2b3a 100%);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(20, 184, 166, 0.25), transparent 45%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 64px 24px;
}
.cta-inner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.2; max-width: 720px; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; flex-shrink: 0; }

/* ---------- Conversion sections ---------- */
.calculator, .faq { padding: 96px 0; background: #fff; }
.calculator-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 34px; align-items: start; }
.calc-form {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  padding: 26px; border: 1px solid var(--line); border-radius: var(--radius);
  background: #f8fafc;
}
.calc-form label { display: grid; gap: 8px; color: var(--navy); font-weight: 700; }
.calc-form input, .area-tool input {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line);
  border-radius: 12px; font: inherit; background: #fff; color: var(--text);
}
.calc-results { grid-column: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.calc-results div {
  padding: 22px; border-radius: var(--radius); background: var(--navy); color: #fff;
  box-shadow: var(--shadow);
}
.calc-results span { display: block; font-size: 1.45rem; font-weight: 900; color: var(--gold); }
.calc-results small { color: rgba(255,255,255,0.78); font-weight: 600; }

.testimonials { padding: 96px 0; background: #f8fafc; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonials-grid article {
  padding: 28px; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}
.stars { color: var(--gold); margin-bottom: 14px; display: flex; gap: 3px; }
.stars svg { width: 18px; height: 18px; fill: currentColor; stroke: currentColor; }
.testimonials-grid p { color: var(--text); line-height: 1.8; margin-bottom: 18px; }
.testimonials-grid strong { color: var(--navy); }

.faq-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 42px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-list details {
  border: 1px solid var(--line); border-radius: 16px; background: #f8fafc;
  padding: 0 20px; overflow: hidden;
}
.faq-list summary {
  cursor: pointer; padding: 18px 0; color: var(--navy); font-weight: 800;
  list-style: none; display: flex; justify-content: space-between; gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--teal); font-size: 1.3rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { color: var(--muted); line-height: 1.8; padding-bottom: 18px; }

.area-checker { padding: 82px 0; background: linear-gradient(120deg, #eef6f7, #fff); }
.area-checker-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.area-checker h2 { color: var(--navy); font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 12px; }
.area-checker p { color: var(--muted); }
.area-tool { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; }
.area-tool p { grid-column: 1 / -1; font-weight: 800; color: var(--navy); min-height: 28px; }

.floating-cta {
  position: fixed; right: 18px; bottom: 18px; z-index: 1300;
  display: flex; flex-direction: column; gap: 12px;
}
.floating-cta a {
  position: relative; width: 62px; height: 62px; padding: 0;
  color: #fff; font-weight: 900; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.28); transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.floating-cta svg { width: 22px; height: 22px; }
.float-whatsapp { background: #25d366; }
.float-whatsapp svg { width: 30px; height: 30px; }
.floating-cta span {
  position: absolute; top: 50%; right: calc(100% + 10px);
  width: max-content; max-width: 180px; padding: 8px 13px; border-radius: 999px;
  background: rgba(15, 23, 42, 0.94); color: #fff; font-size: 0.9rem; line-height: 1.25; white-space: nowrap;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.24);
  opacity: 0; pointer-events: none; transform: translateY(-50%) translateX(8px);
  transition: opacity var(--transition), transform var(--transition);
}
.floating-cta a:hover span, .floating-cta a:focus-visible span { opacity: 1; transform: translateY(-50%) translateX(0); }
.float-call { background: var(--navy); }
.float-call svg { color: var(--gold); }
.floating-cta a:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(15, 23, 42, 0.34); }
.float-whatsapp:hover { background: #18b957; }
.float-call:hover { background: var(--teal-dark); }

.accessibility-widget {
  position: fixed; left: 18px; top: 50%; transform: translateY(-50%); z-index: 1300;
  display: grid; gap: 12px; justify-items: start;
}
.access-toggle {
  position: relative; width: 56px; height: 56px; overflow: visible;
  border: 1px solid rgba(255,255,255,.24); cursor: pointer; border-radius: 999px; padding: 8px;
  font: inherit; font-weight: 900; color: #fff; background: linear-gradient(135deg, var(--navy), #18233a);
  box-shadow: 0 18px 44px rgba(15,23,42,.28); display: inline-flex; align-items: center; justify-content: center; gap: 0;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.access-toggle:hover, .accessibility-widget.is-open .access-toggle { transform: translateY(-2px); background: linear-gradient(135deg, var(--teal-dark), var(--navy)); }
.access-toggle-icon {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  color: var(--navy); background: #fff; box-shadow: inset 0 0 0 1px rgba(15,23,42,.08);
}
.access-toggle-icon svg { width: 22px; height: 22px; }
.access-toggle > span:last-child {
  position: absolute; top: 50%; left: calc(100% + 10px);
  width: max-content; padding: 8px 13px; border-radius: 999px;
  background: rgba(15, 23, 42, 0.94); color: #fff; font-size: 0.92rem; line-height: 1.25; white-space: nowrap;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.24);
  opacity: 0; pointer-events: none; transform: translateY(-50%) translateX(-8px);
  transition: opacity var(--transition), transform var(--transition);
}
.access-toggle:hover > span:last-child, .access-toggle:focus-visible > span:last-child { opacity: 1; transform: translateY(-50%) translateX(0); }
.access-panel {
  width: min(300px, calc(100vw - 36px)); padding: 16px; border-radius: 20px; background: rgba(255,255,255,.96);
  border: 1px solid rgba(226,232,240,.95); box-shadow: 0 22px 58px rgba(15,23,42,.24); display: grid; gap: 10px;
  backdrop-filter: blur(12px); transform-origin: center left;
}
.access-panel[hidden] { display: none !important; }
.access-panel h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 4px; font-weight: 900; }
.access-panel button {
  border: 1px solid var(--line); background: #f8fafc; color: var(--navy); cursor: pointer; border-radius: 14px;
  padding: 11px 13px; font: inherit; font-weight: 800; text-align: right;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.access-panel button:hover { background: rgba(20,184,166,.12); border-color: rgba(20,184,166,.35); transform: translateX(2px); }
.access-panel button.is-active { background: var(--teal); border-color: var(--teal); color: #fff; }

/* ---------- Contact ---------- */
.contact { padding: 90px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-info h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--navy); margin-bottom: 14px; }
.contact-info p { color: var(--muted); margin-bottom: 28px; }
.contact-details { display: grid; gap: 16px; }
.contact-details li { display: flex; align-items: center; gap: 12px; color: var(--text); }
.contact-details a:hover { color: var(--teal); }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}
.field textarea { resize: vertical; }
.error { color: #dc2626; font-size: 0.82rem; min-height: 1em; }
.contact-form .btn-block { grid-column: 1 / -1; }
.form-success { grid-column: 1 / -1; color: var(--teal-dark); font-weight: 700; text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, 0.8); padding-top: 64px; }
.footer-inner { display: grid; grid-template-columns: 1.45fr 1.45fr 0.9fr 0.85fr; gap: 44px; padding-bottom: 48px; }
.footer-brand p { margin-top: 14px; max-width: 320px; font-size: 0.95rem; }
.footer-brand .logo { color: #fff; }
.footer-brand .logo-mark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}
.footer-brand .logo.has-custom-logo .logo-mark {
  width: 154px;
  height: 102px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}
.footer-brand .logo.has-custom-logo .logo-img { opacity: 1; filter: none; }
.footer-brand .logo-sub { color: rgba(255, 255, 255, 0.68); }
.footer-contact { margin-top: 18px; display: grid; gap: 8px; font-size: 0.92rem; }
.footer-contact li { color: rgba(255, 255, 255, 0.8); }
.footer-contact a { color: rgba(255, 255, 255, 0.8); transition: color var(--transition); }
.footer-contact a:hover { color: var(--teal); }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col a { display: block; padding: 5px 0; color: rgba(255, 255, 255, 0.75); transition: color var(--transition); }
.footer-col a:hover { color: var(--teal); }
.footer-nav-col h4 { text-align: center; }
.footer-nav-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 30px; }
.footer-services-col { margin-inline-start: 18px; }
.social { display: flex; flex-direction: column; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 20px 0; }
.footer-bottom p { font-size: 0.9rem; text-align: center; color: rgba(255, 255, 255, 0.6); }
.footer-bottom .site-credit { margin-top: 6px; color: rgba(255, 255, 255, 0.52); font-size: 0.88rem; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(15, 23, 42, 0.94);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(255, 255, 255, 0.12); color: #fff;
  border: none; cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%;
  font-size: 2rem; line-height: 1;
  display: grid; place-items: center;
  transition: background var(--transition);
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--teal); }
.lightbox-close { top: 24px; left: 24px; }
.lightbox-prev { right: 24px; }
.lightbox-next { left: 24px; }
.lightbox-counter {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: #fff; background: rgba(255, 255, 255, 0.12);
  padding: 6px 18px; border-radius: 30px; font-weight: 600;
}

/* ---------- שאלון התאמה ---------- */
.fit-quiz {
  position: fixed; inset: 0; z-index: 2100;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.fit-quiz.open { display: flex; }
.fit-quiz-backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(6px);
}
.fit-quiz-dialog {
  position: relative; z-index: 1;
  width: min(820px, 100%); max-height: min(720px, 92vh);
  border-radius: 24px; overflow: hidden;
  background: #fff; box-shadow: 0 34px 90px rgba(15, 23, 42, 0.38);
  animation: pmPop 0.36s cubic-bezier(0.16, 1, 0.3, 1);
}
.fit-quiz-close {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  width: 38px; height: 38px; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.9); color: var(--navy); font-size: 1.55rem; line-height: 1;
  box-shadow: var(--shadow); display: grid; place-items: center;
}
.fit-quiz-shell { display: grid; grid-template-columns: 0.82fr 1.18fr; min-height: 480px; }
.fit-quiz-side {
  display: grid; align-content: end; gap: 12px;
  padding: 42px 34px;
  color: #fff; background:
    linear-gradient(145deg, rgba(15,23,42,.92), rgba(15,23,42,.72)),
    url("assets/images/image-46.webp") center/cover;
}
.fit-quiz-side span { color: var(--gold); font-weight: 900; }
.fit-quiz-side strong { font-size: 1.75rem; line-height: 1.15; color: #fff; }
.fit-quiz-side p { color: rgba(255,255,255,.82); line-height: 1.7; }
.fit-quiz-main { padding: 42px 36px 32px; overflow-y: auto; }
.fit-quiz-progress { height: 7px; background: #e2e8f0; border-radius: 999px; overflow: hidden; margin-bottom: 24px; }
.fit-quiz-progress span { display: block; height: 100%; width: 20%; background: linear-gradient(90deg, var(--teal), var(--gold)); transition: width .25s ease; }
.fit-quiz-main h2 { color: var(--navy); font-size: clamp(1.55rem, 3vw, 2.1rem); line-height: 1.18; margin-bottom: 20px; }
.fit-quiz-content { min-height: 176px; }
.fit-quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fit-quiz-options button {
  min-height: 58px; border: 1px solid var(--line); border-radius: 16px; cursor: pointer;
  background: #f8fafc; color: var(--navy); padding: 13px 15px; font: inherit; font-weight: 850; text-align: right;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.fit-quiz-options button:hover, .fit-quiz-options button[aria-pressed="true"] {
  background: rgba(20,184,166,.12); border-color: rgba(20,184,166,.6); box-shadow: 0 10px 24px rgba(15,23,42,.08); transform: translateY(-1px);
}
.fit-quiz-input, .fit-quiz-fields label { display: grid; gap: 7px; color: var(--navy); font-weight: 800; }
.fit-quiz-input input, .fit-quiz-fields input {
  width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; font: inherit; background: #f8fafc; color: var(--text);
}
.fit-quiz-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fit-quiz-result { margin-top: 16px; padding: 16px; border-radius: 16px; background: rgba(20,184,166,.1); color: var(--navy); display: grid; gap: 4px; }
.fit-quiz-result span { font-weight: 900; color: var(--teal-dark); }
.fit-quiz-note { min-height: 24px; margin-top: 14px; color: #dc2626; font-weight: 800; }
.fit-quiz-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 12px; }
.fit-quiz-actions .btn { min-width: 126px; }
.fit-quiz-done { display: grid; gap: 12px; }
.fit-quiz-done h3 { color: var(--navy); font-size: 1.45rem; }
.fit-quiz-done p { color: var(--muted); line-height: 1.7; }
.fit-quiz-done .btn { width: 100%; }

/* ---------- חלונית פרטי נכס ---------- */
.property-modal {
  position: fixed; inset: 0; z-index: 1100;
  display: none; align-items: center; justify-content: center;
  padding: 32px;
}
.property-modal.open { display: flex; }
.pm-backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(4px);
  animation: pmFade 0.3s ease;
}
.pm-dialog {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 1fr;
  width: min(1080px, 100%); max-height: 90vh;
  background: #fff; border-radius: 22px; overflow: hidden;
  box-shadow: 0 40px 90px rgba(15, 23, 42, 0.45);
  animation: pmPop 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes pmFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pmPop {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
.pm-close {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  width: 42px; height: 42px; border-radius: 50%;
  border: none; cursor: pointer; font-size: 1.7rem; line-height: 1;
  background: rgba(255, 255, 255, 0.9); color: var(--navy);
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.pm-close:hover { background: var(--teal); color: #fff; transform: rotate(90deg); }

.pm-gallery { display: flex; flex-direction: column; background: var(--navy); }
.pm-stage { position: relative; flex: 1; overflow: hidden; min-height: 320px; }
.pm-img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.pm-image-placeholder { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy), var(--teal-dark)); }
.pm-img-in { animation: pmImgIn 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes pmImgIn {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: none; }
}
.pm-tag {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--teal); color: #fff;
  padding: 6px 16px; border-radius: 30px; font-weight: 700; font-size: 0.85rem;
}
.pm-tag.sale { background: var(--gold); }
.pm-tag.commercial { background: var(--navy-soft); }
.pm-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  border: none; cursor: pointer; font-size: 1.7rem; line-height: 1;
  background: rgba(255, 255, 255, 0.85); color: var(--navy);
  display: grid; place-items: center;
  transition: background var(--transition), color var(--transition);
}
.pm-nav:hover { background: var(--teal); color: #fff; }
.pm-nav[hidden], .pm-zoom[hidden], .pm-img[hidden] { display: none !important; }
.pm-prev { right: 14px; }
.pm-next { left: 14px; }
.pm-counter {
  position: absolute; bottom: 14px; right: 14px; z-index: 2;
  background: rgba(15, 23, 42, 0.7); color: #fff;
  padding: 4px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 600;
}
.pm-zoom {
  position: absolute; bottom: 14px; left: 14px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  border: none; cursor: pointer; font-size: 1.2rem;
  background: rgba(15, 23, 42, 0.7); color: #fff;
  display: grid; place-items: center;
  transition: background var(--transition);
}
.pm-zoom:hover { background: var(--teal); }
.pm-thumbs {
  display: flex; gap: 8px; padding: 10px; overflow-x: auto;
  background: var(--navy-soft);
}
.pm-thumb {
  flex: 0 0 64px; height: 48px; padding: 0; border-radius: 8px;
  overflow: hidden; cursor: pointer; border: 2px solid transparent;
  background: none; opacity: 0.6;
  transition: opacity var(--transition), border-color var(--transition);
}
.pm-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pm-thumb:hover { opacity: 1; }
.pm-thumb.is-active { opacity: 1; border-color: var(--teal); }

.pm-info { padding: 44px 36px 32px; overflow-y: auto; }
.pm-price { color: var(--teal); font-size: 1.5rem; font-weight: 800; margin-bottom: 4px; }
.pm-title { font-size: 1.7rem; margin-bottom: 6px; }
.pm-location { color: var(--muted); margin-bottom: 18px; }
.pm-location, .pm-specs span, .property-specs span, .property-gallery-count, .pm-features li, .info-list li, .footer-col li { display: flex; align-items: center; gap: 7px; }
.pm-specs { display: flex; flex-wrap: wrap; gap: 18px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 18px; font-weight: 600; }
.pm-desc { color: var(--text); line-height: 1.8; margin-bottom: 22px; }
.pm-features-title { font-size: 1.05rem; margin-bottom: 12px; }
.pm-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; margin-bottom: 26px; }
.pm-features li { color: var(--text); }
.pm-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.pm-actions [hidden] { display: none !important; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; transition-delay: var(--stagger, 0ms); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .service-carousel .service-card { flex-basis: calc((100% - 28px) / 2); }
  .am-image-cards { grid-template-columns: 1fr 1fr; }
  .calculator-inner, .faq-inner, .area-checker-inner { grid-template-columns: 1fr; }
  .calc-results { grid-column: auto; }
  .properties-grid .property-card { flex-basis: calc((100% - 28px) / 2); }
  .articles-carousel .article-card { flex-basis: calc((100% - 28px) / 2); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .about-media { max-width: 520px; margin: 0 auto; }
  .about-blocks { grid-template-columns: 1fr; }
  .process-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-inner { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; align-items: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .pm-dialog { grid-template-columns: 1fr; max-height: 92vh; }
  .pm-gallery { max-height: 44vh; }
  .pm-stage { min-height: 240px; }
  .pm-info { padding: 28px 24px; }
  .pm-features { grid-template-columns: 1fr; }
}

@media (max-width: 1320px) {
  .nav-toggle { display: flex; }
  #mainNav {
    position: absolute; top: 76px; right: 16px; left: 16px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-radius: 18px; border: 1px solid var(--line);
    padding: 12px 24px 20px;
    transform: translateY(-140%);
    transition: transform 0.35s ease;
    box-shadow: var(--shadow);
  }
  #mainNav.open { transform: translateY(0); }
  #mainNav a { flex: 0 0 auto; min-width: 0; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 1.08rem; }
  #mainNav .nav-cta { text-align: center; margin-top: 10px; border-bottom: none; }
  #mainNav .mobile-lang-switcher {
    display: grid; grid-template-columns: auto repeat(4, minmax(0, 1fr)); align-items: center; gap: 8px;
    padding: 4px 0 12px; margin-bottom: 6px; border-bottom: 1px solid var(--line);
  }
  #mainNav .mobile-lang-switcher .lang-label { color: var(--navy); font-size: .95rem; }
  #mainNav .mobile-lang-switcher a {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 36px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px;
    background: #fff; color: var(--navy); font-size: 1.08rem; font-weight: 900;
  }
  #mainNav .mobile-lang-switcher a[aria-current="page"] { background: var(--teal); border-color: var(--teal); color: #fff; }
}

@media (max-width: 640px) {

  .container { padding: 0 18px; }
  .section-head, .section-head-start { margin-bottom: 28px; }
  .section-head h2 { font-size: clamp(1.55rem, 8vw, 2.05rem); }
  .section-sub { margin-top: 10px; font-size: .98rem; line-height: 1.55; }
  .eyebrow { margin-bottom: 6px; font-size: .82rem; }
  .btn { width: 100%; padding: 11px 20px; font-size: .95rem; }
  .topbar { display: none; }
  .header-inner { min-height: 86px; gap: 12px; }
  .logo-mark { width: 40px; height: 40px; border-radius: 12px; }
  .logo.has-custom-logo .logo-mark { width: 108px; height: 72px; border-radius: 0; }
  .logo-text { font-size: 1.15rem; }
  .logo-sub { display: none; }
  #mainNav { top: 86px; right: 10px; left: 10px; padding: 8px 18px 14px; }
  #mainNav a { padding: 10px 0; font-size: 1.05rem; }

  .hero-content { padding: 74px 18px 54px; }
  .hero .eyebrow { font-size: clamp(1.28rem, 7vw, 1.7rem); margin-bottom: 10px; }
  .hero h1 { font-size: clamp(2.45rem, 12vw, 3.45rem); margin-bottom: 16px; line-height: 1.06; }
  .hero-lead { font-size: 1.12rem; line-height: 1.55; margin-bottom: 24px; }
  .hero-actions { gap: 12px; }
  .hero .btn, .hero .play-btn { font-size: 1.05rem; }
  .play-btn { width: 100%; justify-content: center; }
  .play-btn .play-icon { width: 40px; height: 40px; }
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 28px; }
  .stat { display: grid; justify-items: center; text-align: center; gap: 1px; padding: 10px 6px; border-radius: 14px; background: rgba(255,255,255,.09); }
  .stat-num, .stat-plus { font-size: 1.7rem; }
  .stat-label { font-size: .86rem; margin-top: 1px; line-height: 1.22; }
  .tech-band-inner { gap: 10px; justify-content: flex-start; padding: 12px 18px; overflow-x: auto; flex-wrap: nowrap; }
  .tech-item { flex: 0 0 auto; font-size: .86rem; }

  .features, .properties, .articles, .areas, .calculator, .faq, .testimonials, .contact { padding: 54px 0; }
  .about { padding: 46px 0; }
  .area-checker { padding: 44px 0; }
  .cta-inner { padding: 38px 18px; }
  .btn-lg { padding: 13px 24px; font-size: 1rem; }

  .about-inner { gap: 22px; }
  .about-media img { aspect-ratio: 16 / 9; object-fit: cover; }
  .about-caption { padding: 34px 18px 16px; }
  .about-caption-text { font-size: .98rem; }
  .about-text h2 { font-size: 1.55rem; margin-bottom: 12px; }
  .about-text p { margin-bottom: 12px; line-height: 1.62; }
  .about-text p:not(.eyebrow):nth-of-type(n+3) { display: none; }
  .about-blocks, .about-services, .about-brand-cta { margin-top: 28px; }
  .about-block { padding: 18px; border-radius: 14px; }
  .about-block h3 { font-size: 1.12rem; margin-bottom: 8px; }
  .about-block p { margin-bottom: 0; line-height: 1.58; }
  .about-block p + p { display: none; }
  .about-services { padding: 22px 18px; }
  .about-services h3 { font-size: 1.25rem; }
  .about-services-lead { margin-bottom: 14px; }
  .services-list { gap: 9px; }
  .services-list li { padding-right: 28px; line-height: 1.45; }
  .process-grid, .values-grid { gap: 10px; }
  .process-step, .value-card { padding: 16px; text-align: right; }
  .process-num { font-size: 1.35rem; margin-bottom: 4px; }
  .process-step h4, .value-card h4 { font-size: 1rem; margin-bottom: 4px; }
  .process-step p, .value-card p { font-size: .88rem; line-height: 1.45; }
  .process-note { display: none; }
  .value-icon { width: 42px; height: 42px; margin: 0 0 8px; font-size: 1.15rem; }
  .about-brand-cta { padding: 28px 20px; }
  .about-brand-cta h3 { font-size: 1.45rem; }
  .about-brand-en { margin-bottom: 8px; }
  .about-brand-slogan { font-size: .98rem; margin-bottom: 18px; }

  .service-carousel-wrap { margin-top: 16px; }
  .service-carousel-head { margin-bottom: 14px; gap: 10px; }
  .service-carousel-head h3 { font-size: 1.28rem; margin-bottom: 4px; }
  .service-carousel-head p { font-size: .94rem; line-height: 1.5; }
  .service-media { aspect-ratio: 16 / 8.5; padding: 10px 10px 0; }
  .service-body { padding: 16px 18px 18px; }
  .service-kicker { font-size: .74rem; margin-bottom: 5px; }
  .service-body h3 { font-size: 1.15rem; margin-bottom: 7px; }
  .service-body p { font-size: .9rem; line-height: 1.5; margin-bottom: 12px; }
  .service-page-link { margin: 0 18px 18px; }

  .carousel-head { margin-bottom: 18px; gap: 12px; }
  .carousel-nav { gap: 8px; }
  .carousel-btn { width: 44px; height: 44px; }
  .filters { justify-content: flex-start; gap: 8px; margin-bottom: 18px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .filter-btn { flex: 0 0 auto; padding: 7px 14px; font-size: .86rem; }
  .properties-grid, .service-carousel, .articles-carousel { gap: 14px; padding-bottom: 10px; }
  .property-media { aspect-ratio: 16 / 10; }
  .property-body { padding: 16px; }
  .property-price { font-size: 1.08rem; margin-bottom: 3px; }
  .property-title { font-size: 1rem; margin-bottom: 3px; }
  .property-location { margin-bottom: 10px; }
  .property-specs { gap: 10px; padding-top: 10px; font-size: .82rem; }
  .carousel-dots { margin-top: 14px; gap: 7px; }
  .carousel-dot { width: 8px; height: 8px; }
  .carousel-dot.is-active { width: 22px; }

  .article-body { padding: 16px; }
  .article-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
  .article-card p { font-size: .88rem; line-height: 1.48; margin-bottom: 10px; }
  .article-cat { font-size: .78rem; }

  .areas-inner, .calculator-inner, .faq-inner, .area-checker-inner, .contact-inner { gap: 22px; }
  .areas-intro h2, .area-checker h2, .contact-info h2 { font-size: 1.55rem; }
  .areas-intro p, .area-checker p, .contact-info p { margin-bottom: 16px; line-height: 1.55; }
  .areas-cols { gap: 14px; }
  .areas-col h4 { font-size: .96rem; padding-bottom: 7px; margin-bottom: 4px; }
  .areas-col a { padding: 4px 0; font-size: .9rem; }
  .calc-form, .contact-form { padding: 18px; gap: 12px; }
  .calc-results { gap: 10px; }
  .calc-results div, .testimonials-grid article { padding: 16px; }
  .calc-results span { font-size: 1.18rem; }
  .testimonials-grid { gap: 12px; }
  .testimonials-grid p { line-height: 1.55; margin-bottom: 10px; }
  .faq-list { gap: 8px; }
  .faq-list details { padding: 0 14px; border-radius: 12px; }
  .faq-list summary { padding: 13px 0; line-height: 1.35; }
  .faq-list p { line-height: 1.55; padding-bottom: 13px; }
  .contact-details { gap: 10px; }
  .contact-details li { align-items: flex-start; line-height: 1.45; }
  .field input, .field select, .field textarea { padding: 10px 12px; }
  .field textarea { min-height: 96px; }

  .features-grid, .articles-grid { grid-template-columns: 1fr; }
  .carousel-actions { flex-direction: column; align-items: flex-start; width: 100%; }
  .catalog-toolbar { flex-direction: column; align-items: flex-start; }
  .catalog-filters { grid-template-columns: 1fr; }
  .catalog-hero { padding-top: 118px; }
  .single-hero { min-height: 430px; padding-top: 118px; }
  .single-layout { grid-template-columns: 1fr; }
  .single-toc { position: static; }
  .service-detail-cards { grid-template-columns: 1fr; }
  .two-col, .feature-grid, .report-grid { grid-template-columns: 1fr; }
  .page-form { grid-template-columns: 1fr; }
  .cta-band { display: grid; }
  .catalog-nav {
    position: static; transform: none; flex-direction: row; flex-wrap: wrap;
    background: transparent; border-bottom: 0; box-shadow: none; padding: 0;
  }
  .catalog-nav a { border-bottom: 0; padding: 8px 0; }
  .service-carousel-head { flex-direction: column; align-items: flex-start; }
  .service-carousel .service-card { flex-basis: 88%; }
  .articles-carousel .article-card { flex-basis: 88%; }
  .am-image-cards { grid-template-columns: 1fr; }
  .calc-form, .calc-results, .testimonials-grid { grid-template-columns: 1fr; }
  .area-tool { grid-template-columns: 1fr; }
  .floating-cta { right: 12px; left: auto; bottom: 12px; }
  .float-whatsapp { width: 56px; height: 56px; }
  .float-call { min-width: 56px; width: 56px; height: 56px; padding: 0; }
  .floating-cta span { right: calc(100% + 8px); max-width: 160px; padding: 7px 11px; font-size: .84rem; }
  .accessibility-widget { left: 10px; top: 50%; bottom: auto; transform: translateY(-50%); gap: 8px; }
  .access-toggle { padding: 7px; gap: 0; }
  .access-toggle:hover, .accessibility-widget.is-open .access-toggle { transform: none; }
  .access-toggle > span:last-child { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
  .access-toggle-icon { width: 42px; height: 42px; }
  .access-panel {
    width: min(190px, calc(100vw - 86px)); max-height: min(340px, calc(100vh - 96px)); overflow-y: auto;
    padding: 8px; border-radius: 14px; gap: 5px;
  }
  .access-panel h3 { font-size: .86rem; margin-bottom: 1px; }
  .access-panel button { padding: 7px 8px; border-radius: 10px; font-size: .82rem; }
  .article-modal { padding: 12px; }
  .am-dialog { border-radius: 16px; max-height: 94vh; }
  .am-close { top: 10px; margin: 10px 10px -54px auto; }
  .fit-quiz { padding: 12px; }
  .fit-quiz-dialog { border-radius: 18px; max-height: 94vh; }
  .fit-quiz-shell { grid-template-columns: 1fr; min-height: auto; }
  .fit-quiz-side { display: none; }
  .fit-quiz-main { padding: 24px 18px 18px; }
  .fit-quiz-progress { margin-bottom: 16px; }
  .fit-quiz-main h2 { font-size: 1.35rem; margin-bottom: 14px; }
  .fit-quiz-content { min-height: 140px; }
  .fit-quiz-options { grid-template-columns: 1fr; gap: 8px; }
  .fit-quiz-options button { min-height: 48px; padding: 10px 12px; border-radius: 12px; }
  .fit-quiz-fields { grid-template-columns: 1fr; gap: 10px; }
  .fit-quiz-actions { margin-top: 8px; }
  .fit-quiz-actions .btn { width: auto; min-width: 104px; padding: 10px 16px; }
  .fit-quiz-close { top: 8px; left: 8px; width: 34px; height: 34px; }
  .am-hero { min-height: 360px; }
  .am-hero-copy { padding: 76px 22px 28px; }
  .am-summary { margin: 24px 18px 0; padding: 20px; }
  .am-chart-wrap { margin: 22px 18px 0; padding: 18px; }
  .am-chart-head { display: block; }
  .am-chart { gap: 10px; height: 190px; overflow-x: auto; grid-template-columns: repeat(5, minmax(72px, 1fr)); }
  .am-body { padding: 24px 22px 42px; }
  .am-section h3 { font-size: 1.24rem; }
  .am-section p { line-height: 1.82; }
  .properties-grid .property-card { flex-basis: 85%; }
  .contact-form { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .process-grid, .values-grid, .services-list { grid-template-columns: 1fr; }
  .about-process, .about-values { margin-top: 26px; }
  .about-process .section-head, .about-values .section-head, .about-forward { display: none; }
  .about-process .process-grid, .about-values .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-process .process-step p, .about-values .value-card p { display: none; }
  .about-values .value-card { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 9px; }
  .about-values .value-card h4 { margin: 0; }
  .about-services { padding: 32px 24px; }
  .areas-cols { grid-template-columns: 1fr 1fr; }
  .carousel-head { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav-grid { grid-template-columns: 1fr 1fr; }
  .footer-services-col { margin-inline-start: 0; }
}

/* ---------- Larger Readability Pass ---------- */
html { font-size: 17px; }

.eyebrow,
.service-kicker,
.article-meta,
.article-cat,
.property-tag,
.property-gallery-count,
.seo-breadcrumb,
.field label,
.error,
.footer-brand p,
.footer-contact,
.footer-bottom p,
.footer-bottom .site-credit,
.am-chart-head p,
.am-bar-item,
.pm-tag,
.pm-counter,
.floating-cta span,
.access-toggle > span:last-child,
.lang-label {
  font-size: max(1rem, 0.95em);
}

.service-body p,
.process-step p,
.value-card p,
.property-location,
.property-specs,
.article-card p,
.am-image-card p,
.areas-col a,
.about-caption-text,
.about-brand-slogan,
.section-sub,
.tech-item,
.filter-btn,
.access-panel h3,
.access-panel button {
  font-size: 1rem;
}

.footer-col h4,
.footer-col a,
.contact-details,
.faq-list p,
.testimonials-grid p,
.calc-form,
.contact-form,
.area-tool,
.fit-quiz-side,
.fit-quiz-done p {
  font-size: 1.05rem;
}

@media (max-width: 640px) {
  html { font-size: 16.5px; }

  .eyebrow,
  .service-kicker,
  .article-cat,
  .property-specs,
  .article-card p,
  .areas-col a,
  .access-panel h3,
  .access-panel button,
  .floating-cta span {
    font-size: 0.95rem;
  }
}
