/* ============================================================
   LV Realty — hoja de estilos compartida
   Paleta corporativa alineada con Domia:
   naranja LV (#F58220) + navy Domia (#0B1D3A) + charcoal/gris
   Tipografía: Plus Jakarta Sans (títulos) + Inter (texto/UI)
   ============================================================ */

:root{
  /* LV Realty brand */
  --orange: #F58220;
  --orange-dark: #DF6F12;
  --orange-light: #FDECDD;
  /* Domia / corporativo compartido */
  --navy: #0B1D3A;
  --navy-light: #123466;
  /* Texto */
  --ink: #22252A;
  --ink-soft: #686868;
  --text-muted: #8B929B;
  /* UI */
  --charcoal: #292A2D;
  --line: #E6E8EB;
  --bg: #FFFFFF;
  --bg-alt: #F7F8FA;
  --white: #FFFFFF;
  --radius: 10px;
  --shadow: 0 10px 34px rgba(11,29,58,0.12);
  --shadow-sm: 0 4px 18px rgba(11,29,58,0.08);
  --maxw: 1200px;
  /* Tipografía */
  --font-heading: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ margin:0; line-height:1.15; font-family: var(--font-heading); font-weight:700; letter-spacing:-0.01em; }
h3,h4{ font-weight:600; }
p{ margin:0; }

.wrap{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 13px 24px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight:600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-primary{ background: var(--orange); color:#fff; }
.btn-primary:hover{ background: var(--orange-dark); transform: translateY(-1px); }
.btn-outline{ background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover{ background: var(--ink); color:#fff; }
.btn-outline-light{ background: transparent; color:#fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover{ background: rgba(255,255,255,0.12); border-color:#fff; }
/* Botón "ecosistema Domia": navy en vez de naranja — señala que la acción
   lleva a otro producto (Domia) dentro del mismo ecosistema digital */
.btn-domia{ background: var(--navy); color:#fff; border-color: var(--navy); }
.btn-domia:hover{ background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-1px); }
.btn-block{ width:100%; }
.btn-sm{ padding: 9px 16px; font-size: .85rem; }

/* ---------- Top utility bar ---------- */
.topbar{
  background: var(--charcoal);
  color: #FFFFFF;
  font-size: 0.8rem;
}
.topbar .wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:8px; padding-bottom:8px;
}
.topbar-links{ display:flex; gap:20px; align-items:center; }
.topbar-links a:hover{ color: var(--orange); }
.topbar-social{ display:flex; gap:12px; }
.topbar-social a{
  width:26px; height:26px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,0.08);
  transition: background .15s ease;
}
.topbar-social a:hover{ background: var(--orange); }
.topbar-social svg{ width:13px; height:13px; fill:#fff; }

/* ---------- Header ---------- */
header.site-header{
  background:#fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top:0; z-index: 50;
}
.nav-row{
  display:flex; align-items:center; justify-content:space-between;
  padding: 16px 0;
  gap: 24px;
}
.brand{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.brand-logo{
  height: 64px; width:auto; border-radius: 10px;
  display:block;
}
.footer-logo{
  background:#fff; padding:6px; box-shadow: var(--shadow-sm);
}

.main-nav{ display:flex; gap:30px; align-items:center; }
.main-nav a{
  font-weight:600; font-size:.92rem; color: var(--ink-soft);
  padding: 6px 0; border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.main-nav a:hover, .main-nav a.active{ color: var(--orange); border-bottom-color: var(--orange); }

.header-cta{ display:flex; align-items:center; gap:14px; flex-shrink:0; }
.header-phone{ display:flex; align-items:center; gap:8px; font-weight:700; font-size:.92rem; color:var(--ink); }
.header-phone svg{ width:16px; height:16px; fill: var(--orange); }

.nav-toggle{
  display:none; width:40px; height:40px; border-radius:8px; border:1px solid var(--line);
  background:#fff; align-items:center; justify-content:center; cursor:pointer; flex-shrink:0;
}
.nav-toggle svg{ width:20px; height:20px; }
.nav-toggle .icon-close{ display:none; }
.nav-toggle.open .icon-open{ display:none; }
.nav-toggle.open .icon-close{ display:block; }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  background: linear-gradient(180deg, #FCFAF7 0%, #F7F5F1 100%);
  overflow:hidden;
}
.hero .wrap{
  display:grid; grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  padding-top: 64px; padding-bottom: 0;
  align-items:center;
}
.hero > .wrap + .wrap{ padding-bottom: 56px; }
.hero-eyebrow{
  display:inline-block;
  background: var(--orange-light); color: var(--orange-dark);
  font-weight:700; font-size:.75rem; letter-spacing:.03em;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 20px;
}
.hero h1{ font-size: clamp(2.1rem, 3.6vw, 3.1rem); color: var(--ink); margin-bottom:20px; }
.hero h1 .accent{ color: var(--orange); }
.hero p.lead{ font-size:1.05rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: 30px; }
.hero-actions{ display:flex; gap:14px; margin-bottom: 40px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap:36px; flex-wrap:wrap; }
.hero-stats div strong{ display:block; font-family: var(--font-heading); font-weight:700; font-size:1.5rem; color:var(--ink); }
.hero-stats div span{ font-size:.78rem; color:var(--ink-soft); }

.hero-media{ position:relative; }
.hero-media img{
  border-radius: 18px; box-shadow: var(--shadow);
  width:100%; height: 420px; object-fit:cover;
}
.hero-card{
  position:absolute; left:-28px; bottom:-28px;
  background:#fff; border-radius: 14px; box-shadow: var(--shadow);
  padding: 16px 20px; display:flex; align-items:center; gap:12px;
  max-width: 240px;
}
.hero-card .ico{
  width:42px; height:42px; border-radius:10px; background: var(--orange-light);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.hero-card .ico svg{ width:20px; height:20px; fill: var(--orange); }
.hero-card strong{ display:block; font-size:.95rem; }
.hero-card span{ font-size:.75rem; color: var(--ink-soft); }

/* ---------- Search box ---------- */
.search-box{
  background: var(--navy);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin-top: 56px;
  position:relative; z-index: 5;
  box-shadow: var(--shadow);
}
.search-box h3{ color:#fff; font-size:1.05rem; margin-bottom: 18px; }
.search-grid{
  display:grid; grid-template-columns: repeat(4, minmax(0,1fr)) auto;
  gap: 12px;
  align-items: stretch;
}
.search-field{
  background:#fff; border-radius:8px; padding: 10px 14px;
  min-width: 0;
}
.search-field select, .search-field input{ min-width:0; }
.search-field label{ display:block; font-size:.68rem; font-weight:700; color: var(--ink-soft); text-transform:uppercase; letter-spacing:.03em; margin-bottom:2px; }
.search-field select, .search-field input{
  border:none; outline:none; width:100%; font-size:.92rem; font-family:inherit; color: var(--ink); background:transparent;
}
.search-submit{
  display:flex; align-items:center; justify-content:center; gap:8px;
  background: var(--orange); color:#fff; border:none; border-radius:8px;
  padding: 0 26px; font-weight:700; font-size:.92rem; cursor:pointer;
  transition: background .15s ease;
}
.search-submit:hover{ background: var(--orange-dark); }
.search-submit svg{ width:16px; height:16px; fill:#fff; }

/* ---------- Section headings ---------- */
.section{ padding: 90px 0; }
.section.tight-top{ padding-top:90px; }
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  margin-bottom: 40px; gap: 24px; flex-wrap:wrap;
}
.eyebrow{ color: var(--orange); font-weight:800; font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; margin-bottom:10px; display:block; }
.section-head h2{ font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.section-head p{ color: var(--ink-soft); max-width: 60ch; margin-top:10px; }
.link-arrow{ font-weight:700; color: var(--ink); display:inline-flex; align-items:center; gap:6px; white-space:nowrap; }
.link-arrow svg{ width:14px; height:14px; fill:var(--orange); transition: transform .15s ease; }
.link-arrow:hover svg{ transform: translateX(4px); }

/* ---------- Property cards ---------- */
.prop-grid{
  display:grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.prop-grid.cols-3{ grid-template-columns: repeat(3, 1fr); }
.prop-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  overflow:hidden; transition: box-shadow .2s ease, transform .2s ease;
}
.prop-card:hover{ box-shadow: var(--shadow); transform: translateY(-3px); }
.prop-media{ position:relative; height: 190px; }
.prop-media img{ width:100%; height:100%; object-fit:cover; }
.badge{
  position:absolute; top:12px; left:12px;
  padding: 5px 11px; border-radius:6px;
  font-size:.7rem; font-weight:800; letter-spacing:.02em; color:#fff;
  text-transform:uppercase;
}
.badge.venta{ background: var(--orange); }
.badge.alquiler{ background: var(--navy); }
.fav{
  position:absolute; top:12px; right:12px; width:32px; height:32px; border-radius:50%;
  background: rgba(255,255,255,.92); display:flex; align-items:center; justify-content:center;
}
.fav svg{ width:15px; height:15px; fill:none; stroke: var(--ink); stroke-width:2; }
.prop-body{ padding: 16px 18px 18px; }
.prop-loc{ font-size:.78rem; color: var(--ink-soft); margin-bottom:4px; }
.prop-title{ font-weight:700; font-size:1rem; margin-bottom:8px; }
.prop-price{ color: var(--orange); font-family: var(--font-heading); font-weight:700; font-size:1.1rem; margin-bottom:12px; }
.prop-price span{ font-weight:600; font-size:.78rem; color: var(--ink-soft); }
.prop-meta{ display:flex; gap:14px; border-top:1px solid var(--line); padding-top:12px; }
.prop-meta div{ display:flex; align-items:center; gap:6px; font-size:.8rem; color: var(--ink-soft); }
.prop-meta svg{ width:15px; height:15px; fill: var(--ink-soft); }

/* ---------- Filters bar (listing pages) ---------- */
.filters-bar{
  background: var(--bg-alt); border:1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; display:grid; grid-template-columns: repeat(4,1fr) auto; gap:14px;
  margin-bottom: 36px;
}
.filters-bar .search-field{ background:#fff; border:1px solid var(--line); }
.results-row{ display:flex; align-items:center; justify-content:space-between; margin-bottom:22px; flex-wrap:wrap; gap:12px; }
.results-count{ font-weight:700; color: var(--ink); }
.results-sort{ display:flex; align-items:center; gap:8px; font-size:.85rem; color: var(--ink-soft); }
.results-sort select{ border:1px solid var(--line); border-radius:8px; padding:8px 12px; font-family:inherit; font-size:.85rem; }
.pagination{ display:flex; justify-content:center; gap:8px; margin-top: 44px; }
.pagination a{
  width:38px; height:38px; border-radius:8px; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; font-weight:700; font-size:.85rem;
}
.pagination a.active{ background: var(--orange); border-color: var(--orange); color:#fff; }
.pagination a:hover:not(.active){ border-color: var(--ink); }

/* ---------- Why choose us ---------- */
.why-grid{
  display:grid; grid-template-columns: repeat(5, 1fr); gap: 28px;
}
.why-item{ text-align:center; }
.why-ico{
  width:64px; height:64px; border-radius:16px; background: var(--orange-light);
  display:flex; align-items:center; justify-content:center; margin: 0 auto 16px;
}
.why-ico svg{ width:28px; height:28px; fill:none; stroke: var(--orange-dark); stroke-width:1.6; }
.why-item h4{ font-size:.98rem; margin-bottom:6px; }
.why-item p{ font-size:.83rem; color: var(--ink-soft); line-height:1.5; }

/* ---------- Split section (image + text) ---------- */
.split{
  display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center;
}
.split img{ border-radius: 16px; box-shadow: var(--shadow-sm); width:100%; height: 420px; object-fit:cover; }
.split .checklist{ margin-top: 22px; display:flex; flex-direction:column; gap:14px; }
.split .checklist div{ display:flex; gap:12px; align-items:flex-start; }
.check-ico{
  width:24px; height:24px; border-radius:50%; background: var(--orange); flex-shrink:0;
  display:flex; align-items:center; justify-content:center; margin-top:2px;
}
.check-ico svg{ width:12px; height:12px; fill:none; stroke:#fff; stroke-width:3; }

/* ---------- Steps ---------- */
.steps{ display:grid; grid-template-columns: repeat(4,1fr); gap:24px; counter-reset: step; }
.step{ position:relative; padding: 30px 22px; background:#fff; border:1px solid var(--line); border-radius: var(--radius); }
.step-num{
  width:38px; height:38px; border-radius:10px; background:var(--navy); color:#fff;
  font-family: var(--font-heading);
  display:flex; align-items:center; justify-content:center; font-weight:700; margin-bottom:16px;
}
.step h4{ font-size:1rem; margin-bottom:8px; }
.step p{ font-size:.85rem; color:var(--ink-soft); line-height:1.55; }

/* ---------- Stat strip ---------- */
.stat-strip{ background: var(--navy); color:#fff; padding: 46px 0; }
.stat-strip .wrap{ display:grid; grid-template-columns: repeat(4,1fr); gap:24px; text-align:center; }
.stat-strip strong{ display:block; font-family: var(--font-heading); font-weight:700; font-size:2rem; color:#fff; }
.stat-strip span{ font-size:.8rem; color:#AEB7C5; }

/* ---------- Testimonials ---------- */
.testi-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
.testi-card{ background: var(--bg-alt); border-radius: var(--radius); padding:26px; }
.testi-stars{ color: var(--orange); font-size:.9rem; margin-bottom:14px; letter-spacing:2px; }
.testi-card p.quote{ font-size:.92rem; color: var(--ink-soft); line-height:1.6; margin-bottom:18px; }
.testi-who{ display:flex; align-items:center; gap:12px; }
.testi-avatar{ width:42px; height:42px; border-radius:50%; background: var(--orange); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; }
.testi-who strong{ display:block; font-size:.88rem; }
.testi-who span{ font-size:.75rem; color: var(--ink-soft); }

/* ---------- Domia CTA banner ----------
   Navy en vez de naranja: refuerza que este bloque conecta con el
   ecosistema Domia, distinto de los CTA propios de LV Realty */
.domia-banner{
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 100%);
  color:#fff;
}
.domia-banner .wrap{
  display:flex; align-items:center; justify-content:space-between; gap: 30px;
  padding: 40px 32px; flex-wrap:wrap;
}
.domia-left{ display:flex; align-items:center; gap:18px; }
.domia-ico{
  width:52px; height:52px; border-radius:14px; background: rgba(255,255,255,.18);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.domia-ico svg{ width:26px; height:26px; fill:#fff; }
.domia-left h3{ font-size:1.15rem; margin-bottom:4px; }
.domia-left p{ font-size:.88rem; color: rgba(255,255,255,.9); }
.domia-logo{ font-weight:800; font-size:1.3rem; letter-spacing:-.02em; }

/* ---------- Simple hero (inner pages) ---------- */
.page-hero{
  background: var(--navy); color:#fff; padding: 56px 0 46px;
}
.page-hero .eyebrow{ color: var(--orange); }
.page-hero h1{ color:#fff; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.page-hero p{ color:#AEB7C5; margin-top:10px; max-width:60ch; }
.breadcrumb{ font-size:.8rem; color:#AEB7C5; margin-bottom:16px; }
.breadcrumb a:hover{ color:#fff; }
.breadcrumb span{ color: var(--orange); }

/* ---------- Forms ---------- */
.form-card{ background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; margin-bottom:16px; }
.form-group{ display:flex; flex-direction:column; gap:6px; }
.form-group.full{ grid-column: 1 / -1; }
.form-group label{ font-size:.8rem; font-weight:700; color: var(--ink); }
.form-group input, .form-group select, .form-group textarea{
  border:1px solid var(--line); border-radius:8px; padding: 11px 13px; font-family:inherit; font-size:.92rem; color:var(--ink); outline:none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,130,32,0.12);
}
.form-group textarea{ resize: vertical; min-height: 110px; }

.info-card{ background: var(--bg-alt); border-radius: var(--radius); padding: 26px; }
.info-row{ display:flex; gap:14px; align-items:flex-start; padding: 14px 0; border-bottom:1px solid var(--line); }
.info-row:last-child{ border-bottom:none; }
.info-row .ico{ width:38px; height:38px; border-radius:9px; background: var(--orange-light); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.info-row .ico svg{ width:18px; height:18px; fill: var(--orange-dark); }
.info-row strong{ display:block; font-size:.88rem; margin-bottom:2px; }
.info-row span{ font-size:.82rem; color: var(--ink-soft); }
.map-placeholder{
  height: 220px; border-radius: var(--radius); margin-top:18px;
  background: repeating-linear-gradient(45deg, #EFECE6, #EFECE6 10px, #F7F5F1 10px, #F7F5F1 20px);
  display:flex; align-items:center; justify-content:center; color: var(--ink-soft); font-size:.85rem; font-weight:700;
  border:1px solid var(--line);
}

/* ---------- Team ---------- */
.team-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:24px; }
.team-card{ text-align:center; }
.team-card img{ border-radius: var(--radius); height:220px; object-fit:cover; margin-bottom:14px; }
.team-card h4{ font-size:.98rem; }
.team-card span{ font-size:.8rem; color: var(--orange-dark); font-weight:700; }

/* ---------- Values ---------- */
.values-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
.value-card{ padding:26px; border:1px solid var(--line); border-radius: var(--radius); }

/* ---------- Blog / recursos ---------- */
.blog-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:26px; }
.blog-card{ border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; transition: box-shadow .2s ease, transform .2s ease; }
.blog-card:hover{ box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-card img{ height:180px; object-fit:cover; width:100%; }
.blog-body{ padding:18px 20px 22px; }
.blog-tag{ color: var(--orange-dark); font-weight:800; font-size:.7rem; letter-spacing:.05em; text-transform:uppercase; }
.blog-body h4{ font-size:1rem; margin: 8px 0 10px; line-height:1.4; }
.blog-body p{ font-size:.85rem; color: var(--ink-soft); line-height:1.55; margin-bottom:14px; }
.blog-meta{ font-size:.76rem; color: var(--ink-soft); display:flex; justify-content:space-between; border-top:1px solid var(--line); padding-top:12px; }

/* ---------- Footer ---------- */
footer.site-footer{ background: var(--navy); color:#AEB7C5; }
.footer-top{ padding: 60px 0 40px; display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .brand-text .b1{ color:#fff; }
.footer-brand p{ font-size:.85rem; color:#AEB7C5; margin: 16px 0 20px; max-width:32ch; line-height:1.6; }
.footer-social{ display:flex; gap:10px; }
.footer-social a{ width:34px; height:34px; border-radius:50%; background: rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; transition: background .15s ease; }
.footer-social a:hover{ background: var(--orange); }
.footer-social svg{ width:15px; height:15px; fill:#fff; }
.footer-col h5{ color:#fff; font-family: var(--font-heading); font-size:.85rem; text-transform:uppercase; letter-spacing:.05em; margin-bottom:18px; }
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:.88rem; color:#AEB7C5; transition: color .15s ease; }
.footer-col a:hover{ color: var(--orange); }
.footer-contact li{ display:flex; gap:10px; font-size:.85rem; color:#AEB7C5; align-items:flex-start; }
.footer-contact svg{ width:16px; height:16px; fill: var(--orange); flex-shrink:0; margin-top:2px; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding: 20px 0; font-size:.78rem; color:#8C93A3;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
}
.footer-bottom a:hover{ color: var(--orange); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px){
  .hero .wrap{ grid-template-columns:1fr; padding-top:40px; }
  .hero-media{ order:-1; }
  .search-grid{ grid-template-columns: 1fr 1fr; }
  .prop-grid{ grid-template-columns: repeat(2,1fr); }
  .why-grid{ grid-template-columns: repeat(3,1fr); }
  .split{ grid-template-columns:1fr; }
  .steps{ grid-template-columns: repeat(2,1fr); }
  .footer-top{ grid-template-columns: 1fr 1fr; }
  .stat-strip .wrap{ grid-template-columns: repeat(2,1fr); }
  .testi-grid, .team-grid, .values-grid, .blog-grid{ grid-template-columns: repeat(2,1fr); }
  .filters-bar{ grid-template-columns: 1fr 1fr; }
  .main-nav{
    display:none; position:absolute; top:100%; left:0; right:0;
    background:#fff; border-bottom:1px solid var(--line); box-shadow: var(--shadow);
    flex-direction:column; gap:0; padding: 8px 0;
  }
  .main-nav.open{ display:flex; }
  .main-nav a{ padding: 14px 32px; width:100%; border-bottom:1px solid var(--line); border-left:2px solid transparent; }
  .main-nav a:hover, .main-nav a.active{ border-left-color: var(--orange); border-bottom-color: var(--line); background: var(--bg-alt); }
  .nav-toggle{ display:flex; }
  .header-phone{ display:none; }
  .nav-row{ position:relative; flex-wrap:wrap; }
}
@media (max-width: 640px){
  .wrap{ padding: 0 20px; }
  .topbar .wrap{ flex-direction:column; align-items:flex-start; gap:4px; }
  .topbar-links{ flex-wrap:wrap; gap:10px; }
  .topbar .wrap > div:last-child{ width:100%; justify-content:space-between; }
  .prop-grid, .why-grid, .steps, .testi-grid, .team-grid, .values-grid, .blog-grid{ grid-template-columns: 1fr; }
  .search-grid{ grid-template-columns: 1fr; }
  .filters-bar{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr; }
  .stat-strip .wrap{ grid-template-columns: 1fr 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .domia-banner .wrap{ flex-direction:column; align-items:flex-start; }
}
