    /* ── Variables ─────────────────────────────────────────── */
    :root {
      --navy: #1B3A5C;
      --navy-mid: #234d7a;
      --cyan: #06B6D4;
      --cyan-h: #0891B2;
      --cyan-pale: rgba(6, 182, 212, .12);
      --white: #fff;
      --bg: #f8f8f8;
      --bg2: #f2f4f7;
      --line: #e2e5ea;
      --txt: #1a1a2e;
      --muted: #6b7280;
      --green: #16a34a;
      --r4: 4px;
      --r8: 8px;
      --r12: 12px;
      --r50: 50px;
      --sh: 0 2px 12px rgba(0, 0, 0, .07);
      --sh-h: 0 8px 32px rgba(0, 0, 0, .13);
      --t: all .25s ease;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--txt);
      background: var(--white);
      overflow-x: hidden;
      line-height: 1.6;
    }

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

    ul {
      list-style: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

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

    /* ── Layout ────────────────────────────────────────────── */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section {
      padding: 72px 0;
    }

    .section-alt {
      background: var(--bg);
    }

    .section-dark {
      background: var(--navy);
    }

    .s-head {
      text-align: center;
      margin-bottom: 48px;
    }

    .s-title {
      font-size: clamp(1.5rem, 2.8vw, 2rem);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 8px;
    }

    .s-sub {
      font-size: .94rem;
      color: var(--muted);
    }

    .s-head.light .s-title {
      color: #fff;
    }

    .s-head.light .s-sub {
      color: rgba(255, 255, 255, .7);
    }

    /* ── Buttons ───────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 11px 22px;
      border-radius: var(--r4);
      font-size: .87rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: var(--t);
      white-space: nowrap;
    }

    .btn-navy {
      background: var(--navy);
      color: #fff;
    }

    .btn-navy:hover {
      background: var(--navy-mid);
    }

    .btn-cyan {
      background: var(--cyan);
      color: #fff;
    }

    .btn-cyan:hover {
      background: var(--cyan-h);
      box-shadow: 0 4px 14px rgba(6, 182, 212, .4);
    }

    .btn-outline {
      background: transparent;
      color: var(--navy);
      border: 1.5px solid var(--navy);
    }

    .btn-outline:hover {
      background: var(--navy);
      color: #fff;
    }

    .btn-ghost {
      background: transparent;
      color: var(--muted);
      border: 1.5px solid var(--line);
    }

    .btn-ghost:hover {
      border-color: var(--navy);
      color: var(--navy);
    }

    .btn-lg {
      padding: 14px 28px;
      font-size: .95rem;
    }

    .btn-sm {
      padding: 8px 16px;
      font-size: .8rem;
    }

    /* ── Scroll reveal ─────────────────────────────────────── */
    [data-r] {
      opacity: 0;
      transform: translateY(14px);
      transition: opacity .38s ease, transform .38s ease;
    }

    [data-r].on {
      opacity: 1;
      transform: translateY(0);
    }

    /* ═══════════════════════════════════════════════════════
       HEADER
    ═══════════════════════════════════════════════════════ */
    #hdr {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 1000;
      background: #fff;
      border-bottom: 1px solid var(--line);
      transition: box-shadow .3s;
    }

    .hdr-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
      gap: 16px;
    }

    .logo {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
      flex-shrink: 0;
    }

    .logo-name {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -.3px;
    }

    .logo-sub {
      font-size: .58rem;
      font-weight: 500;
      color: var(--cyan);
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    /* Main nav */
    #nav {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .nav-item {
      position: relative;
    }

    .nav-link {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 8px 12px;
      border-radius: var(--r4);
      font-size: .85rem;
      font-weight: 500;
      color: var(--txt);
      cursor: pointer;
      border: none;
      background: none;
      transition: var(--t);
      white-space: nowrap;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--navy);
      background: var(--bg2);
    }

    .nav-link i.chevron {
      font-size: .65rem;
      transition: transform .2s;
    }

    .nav-item:hover .nav-link i.chevron {
      transform: rotate(180deg);
    }

    /* Dropdown */
    .dropdown {
      position: absolute;
      top: calc(100% + 6px);
      left: 0;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--r8);
      box-shadow: var(--sh-h);
      min-width: 200px;
      padding: 8px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-4px);
      transition: opacity .2s, transform .2s, visibility .2s;
    }

    .nav-item:hover .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown a {
      display: block;
      padding: 9px 18px;
      font-size: .85rem;
      color: var(--txt);
      transition: background .15s;
    }

    .dropdown a:hover {
      background: var(--bg2);
      color: var(--navy);
    }

    /* Header right */
    .hdr-right {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }

    .hdr-agency {
      font-size: .8rem;
      color: var(--muted);
      transition: color .2s;
    }

    .hdr-agency:hover {
      color: var(--navy);
    }

    /* Hamburger */
    #burger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      color: var(--navy);
      font-size: 1.35rem;
    }

    /* ═══════════════════════════════════════════════════════
       HERO — full-screen dark photo style
    ═══════════════════════════════════════════════════════ */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 68px;
      overflow: hidden;
    }

    .hero-photo {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1567767292278-a4f21aa2d36e?w=1920&auto=format&fit=crop&q=85') center/cover no-repeat;
    }

    .hero-photo::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom,
          rgba(10, 20, 35, .35) 0%,
          rgba(10, 20, 35, .55) 50%,
          rgba(10, 20, 35, .72) 100%);
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      width: 100%;
      padding: 60px 0;
      text-align: center;
    }

    .hero-text {
      margin-bottom: 42px;
    }

    .hero-h1 {
      font-size: clamp(3.2rem, 6.5vw, 5.3rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 14px;
    }

    .hero-count {
      font-size: 1.45rem;
      font-weight: 500;
      color: rgba(255, 255, 255, .85);
    }

    .hero-count strong {
      color: var(--cyan);
      font-weight: 700;
    }

    /* ── Search widget ── */
    .hero-search {
      max-width: 1060px;
      margin: 0 auto;
    }

    /* Tabs row */
    .htabs-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 13px;
    }

    .htabs {
      display: flex;
      gap: 6px;
    }

    .htab {
      padding: 12px 30px;
      border-radius: var(--r50);
      font-size: 1.05rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      background: rgba(255, 255, 255, .18);
      color: rgba(255, 255, 255, .9);
      backdrop-filter: blur(6px);
      transition: var(--t);
    }

    .htab.active {
      background: var(--cyan);
      color: #fff;
      box-shadow: 0 4px 18px rgba(6, 182, 212, .5);
    }

    .htab:not(.active):hover {
      background: rgba(255, 255, 255, .28);
    }

    /* Filtres button */
    .btn-filtres {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      border-radius: var(--r50);
      background: rgba(255, 255, 255, .92);
      color: var(--navy);
      font-size: 1rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      backdrop-filter: blur(6px);
      transition: var(--t);
    }

    .btn-filtres:hover {
      background: #fff;
    }

    /* Search bar card */
    .hbar {
      display: flex;
      align-items: stretch;
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 16px 56px rgba(0, 0, 0, .28);
      overflow: hidden;
    }

    .hbar-field {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 19px 24px;
      border-right: 1px solid var(--line);
      cursor: pointer;
      transition: background .15s;
      min-width: 0;
    }

    .hbar-field:hover {
      background: var(--bg);
    }

    .hbar-field:last-of-type {
      border-right: none;
    }

    .hbar-label {
      font-size: .88rem;
      font-weight: 700;
      color: var(--navy);
      text-transform: uppercase;
      letter-spacing: .6px;
      margin-bottom: 6px;
    }

    .hbar-input {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 1.05rem;
      color: var(--muted);
    }

    .hbar-input i {
      color: var(--muted);
      font-size: 1rem;
      flex-shrink: 0;
    }

    .hbar-input select,
    .hbar-input input {
      border: none;
      outline: none;
      background: transparent;
      font-size: 1.05rem;
      color: var(--txt);
      width: 100%;
      font-family: inherit;
      cursor: pointer;
    }

    .hbar-input select:focus,
    .hbar-input input:focus {
      color: var(--navy);
    }

    .hbar-btn {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 0 38px;
      background: var(--cyan);
      color: #fff;
      font-size: 1.1rem;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: var(--t);
    }

    .hbar-btn:hover {
      background: var(--cyan-h);
    }

    /* Form fields used outside hero */
    .form-col {
      display: flex;
      flex-direction: column;
      gap: 3px;
      margin-bottom: 12px;
    }

    .form-col label {
      font-size: .71rem;
      font-weight: 700;
      color: var(--navy);
      text-transform: uppercase;
      letter-spacing: .6px;
    }

    .form-col input,
    .form-col select {
      padding: 11px 13px;
      border: 1.5px solid var(--line);
      border-radius: var(--r8);
      font-size: .87rem;
      color: var(--txt);
      outline: none;
      transition: border-color .2s;
      background: var(--white);
    }

    .form-col input:focus,
    .form-col select:focus {
      border-color: var(--cyan);
    }

    /* Hidden search-card & search-tabs (replaced by hbar) */
    .search-card {
      display: none;
    }

    .search-tabs {
      display: none;
    }

    .s-tab {
      padding: 10px 18px 12px;
      font-size: .85rem;
      font-weight: 600;
      color: var(--muted);
      cursor: pointer;
      border: none;
      background: none;
      border-bottom: 2px solid transparent;
      margin-bottom: -2px;
      transition: var(--t);
    }

    .s-tab.active {
      color: var(--cyan);
      border-bottom-color: var(--cyan);
    }

    .form-row-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }

    .btn-search-big {
      width: 100%;
      padding: 15px;
      background: var(--navy);
      color: #fff;
      border: none;
      border-radius: var(--r8);
      font-size: .97rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      transition: var(--t);
    }

    .btn-search-big:hover {
      background: var(--navy-mid);
    }

    .search-note {
      text-align: center;
      font-size: .74rem;
      color: var(--muted);
      margin-top: 10px;
    }

    .search-note i {
      color: var(--cyan);
    }

    /* ═══════════════════════════════════════════════════════
       STATS BAR
    ═══════════════════════════════════════════════════════ */
    #stats-bar {
      background: var(--navy);
      padding: 36px 0;
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      divide-x: 1px solid rgba(255, 255, 255, .15);
    }

    .stat-item {
      text-align: center;
      padding: 8px 16px;
      border-right: 1px solid rgba(255, 255, 255, .12);
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-n {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--cyan);
      line-height: 1;
      margin-bottom: 6px;
    }

    .stat-l {
      font-size: .82rem;
      color: rgba(255, 255, 255, .75);
    }

    .stats-disclaimer {
      text-align: center;
      font-size: .78rem;
      font-style: italic;
      color: rgba(255, 255, 255, .45);
      margin: 18px auto 0;
      max-width: 640px;
      padding-top: 16px;
      border-top: 1px solid rgba(255, 255, 255, .1);
      line-height: 1.7;
    }

    /* ═══════════════════════════════════════════════════════
       SERVICES
    ═══════════════════════════════════════════════════════ */
    .svc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .svc-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--r12);
      padding: 32px 24px;
      transition: var(--t);
      position: relative;
      overflow: hidden;
    }

    .svc-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--cyan);
      transform: scaleX(0);
      transition: transform .3s;
    }

    .svc-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--sh-h);
      border-color: transparent;
    }

    .svc-card:hover::before {
      transform: scaleX(1);
    }

    .svc-icon {
      width: 56px;
      height: 56px;
      border-radius: 12px;
      background: rgba(27, 58, 92, .08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--navy);
      margin-bottom: 18px;
      transition: var(--t);
    }

    .svc-card:hover .svc-icon {
      background: var(--navy);
      color: #fff;
    }

    .svc-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .svc-card p {
      font-size: .86rem;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    /* ═══════════════════════════════════════════════════════
       ESTIMATION — PROPERTY TYPES GRID  (Laforet-style)
    ═══════════════════════════════════════════════════════ */
    .types-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
      margin-bottom: 36px;
    }

    .type-card {
      background: #fff;
      border: 1.5px solid var(--line);
      border-radius: var(--r8);
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px 12px;
      cursor: pointer;
      transition: var(--t);
      text-align: center;
      gap: 10px;
    }

    .type-card:hover,
    .type-card.sel {
      border-color: var(--navy);
      background: rgba(27, 58, 92, .04);
    }

    .type-card.sel {
      border-width: 2px;
    }

    .type-card i {
      font-size: 1.6rem;
      color: var(--navy);
    }

    .type-card span {
      font-size: .8rem;
      font-weight: 600;
      color: var(--txt);
    }

    .estim-form {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--r12);
      padding: 32px;
    }

    .estim-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 14px;
      margin-bottom: 14px;
    }

    .estim-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 20px;
    }

    /* ═══════════════════════════════════════════════════════
       PROPERTY CARDS  (Laforet-style)
    ═══════════════════════════════════════════════════════ */
    .props-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-bottom: 40px;
    }

    .pc {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--r12);
      overflow: hidden;
      transition: var(--t);
    }

    .pc:hover {
      box-shadow: var(--sh-h);
      transform: translateY(-3px);
    }

    .pc-img {
      position: relative;
      height: 210px;
      overflow: hidden;
      background: var(--bg2);
    }

    .pc-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s;
    }

    .pc:hover .pc-img img {
      transform: scale(1.04);
    }

    .pc-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: var(--cyan);
      color: #fff;
      padding: 3px 10px;
      border-radius: var(--r50);
      font-size: .72rem;
      font-weight: 700;
    }

    .pc-exclu {
      position: absolute;
      top: 10px;
      right: 10px;
      background: var(--navy);
      color: #fff;
      padding: 3px 10px;
      border-radius: var(--r50);
      font-size: .7rem;
      font-weight: 700;
    }

    .pc-photos {
      position: absolute;
      bottom: 8px;
      right: 8px;
      background: rgba(0, 0, 0, .5);
      color: #fff;
      padding: 2px 8px;
      border-radius: var(--r50);
      font-size: .7rem;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .pc-body {
      padding: 16px;
    }

    .pc-price {
      font-size: 1.3rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .pc-price span {
      font-size: .8rem;
      font-weight: 500;
      color: var(--muted);
    }

    .pc-title {
      font-size: .88rem;
      font-weight: 600;
      color: var(--txt);
      margin-bottom: 3px;
    }

    .pc-city {
      font-size: .81rem;
      color: var(--muted);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .pc-specs {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      padding: 12px 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      margin-bottom: 12px;
    }

    .pc-spec {
      font-size: .78rem;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .pc-spec i {
      color: var(--navy);
      font-size: .75rem;
    }

    .pc-actions {
      display: flex;
      gap: 8px;
    }

    .pc-actions .btn {
      flex: 1;
      justify-content: center;
      font-size: .78rem;
      padding: 9px 10px;
    }

    /* ── Dossier locatif banner ─────────────────── */
    .dossier-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      background: linear-gradient(120deg, var(--navy), var(--navy-mid));
      border-radius: var(--r12);
      padding: 28px 36px;
      margin-bottom: 40px;
    }

    .dossier-bar h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 5px;
    }

    .dossier-bar p {
      font-size: .86rem;
      color: rgba(255, 255, 255, .75);
    }

    /* ═══════════════════════════════════════════════════════
       CITY CARDS  (Laforet-style image grid)
    ═══════════════════════════════════════════════════════ */
    .cities-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .city-card {
      position: relative;
      border-radius: var(--r12);
      overflow: hidden;
      height: 180px;
      cursor: pointer;
    }

    .city-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s;
    }

    .city-card:hover img {
      transform: scale(1.06);
    }

    .city-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .1) 60%);
    }

    .city-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1;
      padding: 14px 16px;
    }

    .city-name {
      font-size: .95rem;
      font-weight: 700;
      color: #fff;
    }

    .city-dept {
      font-size: .75rem;
      color: rgba(255, 255, 255, .8);
    }

    /* Small city tags below */
    .zone-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 28px;
      justify-content: center;
    }

    .zone-pill {
      font-size: .78rem;
      font-weight: 500;
      color: var(--navy);
      background: rgba(27, 58, 92, .07);
      padding: 5px 14px;
      border-radius: var(--r50);
      transition: var(--t);
    }

    .zone-pill:hover {
      background: var(--navy);
      color: #fff;
    }

    /* ═══════════════════════════════════════════════════════
       TESTIMONIALS  (Google-review style)
    ═══════════════════════════════════════════════════════ */

    /* Note globale */
    .reviews-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 28px;
      padding: 18px 24px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--r12);
      box-shadow: var(--sh);
    }

    .reviews-global {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .reviews-score {
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--navy);
      line-height: 1;
    }

    .reviews-stars-global {
      display: flex;
      gap: 3px;
      color: #f59e0b;
      font-size: 1.1rem;
    }

    .reviews-count {
      font-size: .82rem;
      color: var(--muted);
      margin-top: 2px;
    }

    .reviews-badges {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .badge-google {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(66, 133, 244, .08);
      border: 1px solid rgba(66, 133, 244, .2);
      color: #4285F4;
      border-radius: 50px;
      padding: 5px 14px;
      font-size: .78rem;
      font-weight: 700;
    }

    .btn-see-reviews {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #4285F4;
      color: #fff;
      border-radius: 6px;
      padding: 7px 16px;
      font-size: .82rem;
      font-weight: 600;
      transition: background .2s;
    }

    .btn-see-reviews:hover {
      background: #2b6fd1;
    }

    .btn-leave-review {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      color: #4285F4;
      border: 2px solid #4285F4;
      border-radius: 8px;
      padding: 10px 24px;
      font-size: .88rem;
      font-weight: 700;
      transition: all .2s;
    }

    .btn-leave-review:hover {
      background: #4285F4;
      color: #fff;
    }

    .testi-wrap {
      overflow: hidden;
    }

    .testi-track {
      display: flex;
      gap: 20px;
      transition: transform .4s ease;
    }

    .testi-card {
      min-width: calc(33.333% - 14px);
      flex-shrink: 0;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--r12);
      padding: 24px;
      transition: var(--t);
    }

    .testi-card:hover {
      box-shadow: var(--sh-h);
    }

    .testi-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 12px;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .testi-av {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--navy);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: .88rem;
      flex-shrink: 0;
    }

    .testi-name {
      font-weight: 600;
      font-size: .88rem;
      color: var(--txt);
    }

    .testi-meta {
      font-size: .74rem;
      color: var(--muted);
    }

    .testi-source {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: .72rem;
      color: var(--muted);
    }

    .stars {
      display: flex;
      gap: 2px;
      margin-bottom: 10px;
    }

    .stars i {
      color: #FFB800;
      font-size: .82rem;
    }

    .testi-text {
      font-size: .85rem;
      color: var(--muted);
      line-height: 1.7;
      font-style: italic;
    }

    .testi-date {
      font-size: .74rem;
      color: #aaa;
      margin-top: 10px;
    }

    .testi-nav {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 28px;
    }

    .t-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1.5px solid var(--line);
      background: #fff;
      color: var(--navy);
      font-size: .9rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--t);
    }

    .t-btn:hover {
      background: var(--navy);
      color: #fff;
      border-color: var(--navy);
    }

    /* ═══════════════════════════════════════════════════════
       SEO TEXT SECTION
    ═══════════════════════════════════════════════════════ */
    .seo-block {
      max-width: 860px;
      margin: 0 auto;
      font-size: .91rem;
      color: var(--muted);
      line-height: 1.85;
    }

    .seo-block strong {
      color: var(--navy);
    }

    .seo-block p+p {
      margin-top: 14px;
    }

    /* ═══════════════════════════════════════════════════════
       CONTACT
    ═══════════════════════════════════════════════════════ */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    .info-card {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 20px;
      background: var(--bg);
      border-radius: var(--r8);
      border-left: 3px solid var(--cyan);
    }

    .info-icon-box {
      width: 40px;
      height: 40px;
      border-radius: var(--r8);
      background: var(--navy);
      color: #fff;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .9rem;
    }

    .info-card strong {
      display: block;
      font-weight: 600;
      color: var(--navy);
      font-size: .87rem;
      margin-bottom: 2px;
    }

    .info-card span {
      font-size: .84rem;
      color: var(--muted);
    }

    .info-card small {
      display: block;
      font-size: .75rem;
      color: #bbb;
      margin-top: 1px;
    }

    .contact-stack {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .cf textarea {
      padding: 11px 13px;
      border: 1.5px solid var(--line);
      border-radius: var(--r8);
      font-size: .87rem;
      color: var(--txt);
      resize: vertical;
      outline: none;
      width: 100%;
      transition: border-color .2s;
    }

    .cf textarea:focus {
      border-color: var(--navy);
    }

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

    /* ═══════════════════════════════════════════════════════
       STICKY CTA
    ═══════════════════════════════════════════════════════ */
    #sticky {
      position: fixed;
      inset: auto 0 0 0;
      z-index: 900;
      background: var(--navy);
      border-top: 2px solid var(--cyan);
      padding: 12px 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      transform: translateY(100%);
      transition: transform .35s ease;
    }

    #sticky.up {
      transform: translateY(0);
    }

    .sticky-txt {
      color: #fff;
      font-size: .88rem;
    }

    .sticky-txt strong {
      font-weight: 700;
    }

    #sticky-x {
      position: absolute;
      right: 18px;
      background: none;
      border: none;
      color: rgba(255, 255, 255, .5);
      cursor: pointer;
      font-size: 1rem;
      padding: 4px;
      transition: color .2s;
    }

    #sticky-x:hover {
      color: #fff;
    }

    /* ═══════════════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════════════ */
    footer {
      background: #0e1f30;
      color: rgba(255, 255, 255, .7);
      padding-bottom: 80px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 44px;
      padding: 60px 0 44px;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    footer .logo-name {
      color: #fff;
      font-size: 1.05rem;
    }

    footer .logo-sub {
      color: var(--cyan);
    }

    .ft-desc {
      font-size: .83rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, .5);
      margin: 14px 0 18px;
    }

    .ft-contact {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 18px;
    }

    .ft-contact li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .82rem;
    }

    .ft-contact li i {
      color: var(--cyan);
      width: 13px;
      flex-shrink: 0;
    }

    .socials {
      display: flex;
      gap: 8px;
    }

    .soc {
      width: 34px;
      height: 34px;
      border-radius: var(--r4);
      background: rgba(255, 255, 255, .07);
      color: rgba(255, 255, 255, .6);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .84rem;
      transition: var(--t);
    }

    .soc:hover {
      background: var(--cyan);
      color: #fff;
    }

    .ft-col-h {
      font-size: .78rem;
      font-weight: 700;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 16px;
    }

    .ft-links li {
      margin-bottom: 8px;
    }

    .ft-links a {
      font-size: .82rem;
      color: rgba(255, 255, 255, .5);
      transition: color .2s;
    }

    .ft-links a:hover {
      color: var(--cyan);
    }

    .ft-legal-box {
      margin-top: 18px;
      padding: 12px;
      font-size: .69rem;
      color: rgba(255, 255, 255, .35);
      line-height: 1.7;
      background: rgba(200, 149, 108, .08);
      border-left: 2px solid var(--cyan);
      border-radius: var(--r4);
    }

    .footer-bottom {
      padding: 18px 0;
      text-align: center;
      font-size: .75rem;
      color: rgba(255, 255, 255, .3);
    }

    .footer-bottom a {
      color: rgba(255, 255, 255, .3);
      transition: color .2s;
    }

    .footer-bottom a:hover {
      color: var(--cyan);
    }

    /* ═══════════════════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .stats-row {
        grid-template-columns: repeat(2, 1fr);
      }

      .types-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .cities-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      #nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 12px;
        border-top: 1px solid var(--line);
        box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
      }

      #nav.open {
        display: flex;
      }

      .hdr-right .btn {
        display: none;
      }

      #burger {
        display: block;
      }

      .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 4px 0 4px 16px;
      }

      .svc-grid,
      .props-grid {
        grid-template-columns: 1fr;
      }

      .estim-grid {
        grid-template-columns: 1fr;
      }

      .types-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .cities-grid {
        grid-template-columns: 1fr 1fr;
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }

      .footer-top {
        grid-template-columns: 1fr;
      }

      .form-row-2,
      .estim-grid-2 {
        grid-template-columns: 1fr;
      }

      .dossier-bar {
        flex-direction: column;
        text-align: center;
      }

      #sticky {
        flex-direction: column;
        gap: 8px;
        padding: 16px 24px;
        text-align: center;
      }

      #sticky-x {
        top: 10px;
      }

      .testi-card {
        min-width: 100%;
      }

      .hbar {
        flex-direction: column;
        border-radius: var(--r12);
      }

      .hbar-field {
        border-right: none;
        border-bottom: 1px solid var(--line);
      }

      .hbar-field:last-of-type {
        border-bottom: none;
      }

      .hbar-btn {
        padding: 16px;
        border-radius: 0 0 var(--r12) var(--r12);
      }

      .htabs-row {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
      }

      .hero-h1 {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 480px) {
      .types-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .stats-row {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* ── success btn ─── */
    .btn-ok {
      background: var(--green) !important;
    }

    /* ── Monday loading/error ── */
    .props-loading,
    .props-error {
      grid-column: 1 / -1;
      text-align: center;
      padding: 60px 0;
      color: var(--muted);
      font-size: .95rem;
    }

    .props-loading i {
      color: var(--cyan);
      font-size: 1.8rem;
      display: block;
      margin-bottom: 12px;
    }

    .props-error i {
      color: #e55;
      font-size: 1.8rem;
      display: block;
      margin-bottom: 12px;
    }
