﻿:root {
      --green:        #1B6B3A;
      --green-light:  #E8F0EC;
      --green-mid:    #2A8A4E;
      --green-mid-hover: #1e6e3a;
      --red:          #CC1C2E;
      --red-hover:    #A81525;
      --charcoal:     #1C1C1E;
      --mid-gray:     #5A5A6A;
      --border-gray:  #E2E4E8;
      --bg-white:     #FFFFFF;
      --bg-soft:      #F7F8FA;
      --bg-dark:      #111318;
      --font-body:    'Inter', system-ui, sans-serif;
      --radius:       8px;
      --radius-lg:    14px;
      --shadow-card:  0 2px 12px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.06);
      --shadow-btn:   0 4px 16px rgba(42,138,78,.35);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-body);
      color: var(--charcoal);
      background: var(--bg-white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    .container {
      width: 100%;
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .section-label {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 10px;
    }

    /* SVG icon sizing */
    .icon-sm { width: 15px; height: 15px; flex-shrink: 0; }
    .icon-md { width: 18px; height: 18px; flex-shrink: 0; }
    .icon-lg { width: 26px; height: 26px; flex-shrink: 0; }
    .icon-xl { width: 22px; height: 22px; flex-shrink: 0; }

    /* ── HEADER ── */
    .site-header {
      background: var(--bg-white);
      border-bottom: 1px solid var(--border-gray);
      position: sticky; top: 0; z-index: 100;
    }
    .header-inner {
      display: flex; align-items: center;
      justify-content: space-between; height: 64px;
    }
    .logo {
      font-size: 22px; font-weight: 800;
      letter-spacing: -.01em; color: var(--charcoal);
      display: flex; align-items: center; gap: 8px;
    }
    .logo-badge {
      background: var(--green); color: #fff;
      font-size: 10px; font-weight: 600;
      letter-spacing: .06em; padding: 3px 7px;
      border-radius: 4px; text-transform: uppercase;
    }
    /* ── DESKTOP NAV & DROPDOWNS ── */
    .nav-links {
      display: flex; align-items: center; gap: 4px;
    }
    .nav-link {
      font-size: 14px; font-weight: 500; color: var(--charcoal);
      padding: 8px 12px; border-radius: var(--radius);
      transition: color .15s, background .15s;
      white-space: nowrap;
    }
    .nav-link:hover { color: var(--green); background: var(--green-light); }

    /* Nav item with dropdown */
    .nav-item { position: relative; }
    .nav-trigger {
      display: flex; align-items: center; gap: 5px;
      background: none; border: none; cursor: pointer;
      font-size: 14px; font-weight: 500; color: var(--charcoal);
      padding: 8px 12px; border-radius: var(--radius);
      font-family: var(--font-body);
      transition: color .15s, background .15s;
      white-space: nowrap;
    }
    .nav-trigger:hover { color: var(--green); background: var(--green-light); }
    .nav-trigger[aria-expanded="true"] { color: var(--green); background: var(--green-light); }
    .nav-arrow {
      width: 14px; height: 14px; flex-shrink: 0;
      transition: transform .2s;
    }
    .nav-trigger[aria-expanded="true"] .nav-arrow { transform: rotate(180deg); }

    /* ══════════════════════════════════════════
       MEGA MENU — 3-column flyout
       Service → Region → City
    ══════════════════════════════════════════ */
    .mega-menu {
      display: none;
      position: absolute; top: calc(100% + 6px); left: 50%;
      transform: translateX(-50%);
      background: var(--bg-white);
      border: 1px solid var(--border-gray);
      border-radius: var(--radius-lg);
      box-shadow: 0 8px 32px rgba(0,0,0,.13), 0 2px 8px rgba(0,0,0,.06);
      z-index: 200; min-width: 580px;
    }
    .mega-menu.open { display: flex; animation: dropDown .18s ease; }
    @keyframes dropDown {
      from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
      to   { opacity: 1; transform: translateX(-50%) translateY(0); }
    }

    /* Three columns — display handled by .mega-menu.open */
    .mega-3col-panel { }
    .m3-services, .m3-regions, .m3-cities {
      padding: 10px 0;
    }
    .m3-services {
      width: 160px; flex-shrink: 0;
      border-right: 1px solid var(--border-gray);
    }
    .m3-regions {
      width: 170px; flex-shrink: 0;
      border-right: 1px solid var(--border-gray);
    }
    .m3-cities { flex: 1; padding: 10px 12px; }

    .m3-col-label {
      font-size: 10px; font-weight: 700; text-transform: uppercase;
      letter-spacing: .1em; color: var(--mid-gray);
      padding: 4px 14px 8px; display: block;
    }

    /* Service rows (col 1) */
    #m3ServiceList, #m3RegionList { list-style: none; }
    .m3-service-row, .m3-region-row {
      display: flex; align-items: center; gap: 8px;
      padding: 8px 14px; cursor: pointer;
      font-size: 13.5px; font-weight: 500; color: var(--charcoal);
      transition: background .12s, color .12s;
      border-radius: 0;
      justify-content: space-between;
    }
    .m3-service-row .m3-row-left,
    .m3-region-row .m3-row-left {
      display: flex; align-items: center; gap: 8px;
      text-decoration: none; color: inherit;
    }
    .m3-service-row svg.m3-icon,
    .m3-region-row svg.m3-icon { color: var(--green); flex-shrink: 0; }
    .m3-chevron { color: var(--mid-gray); opacity: 0; transition: opacity .15s; flex-shrink: 0; }
    .m3-service-row:hover, .m3-service-row.active,
    .m3-region-row:hover, .m3-region-row.active {
      background: var(--green-light); color: var(--green);
    }
    .m3-service-row:hover .m3-chevron,
    .m3-service-row.active .m3-chevron,
    .m3-region-row:hover .m3-chevron,
    .m3-region-row.active .m3-chevron { opacity: 1; color: var(--green); }

    /* Cities col: display toggled via inline style by JS */
    #m3CityPanels { position: relative; }
    .m3-city-panel {
      grid-template-columns: 1fr 1fr; gap: 2px;
    }
    .m3-city-panel a {
      font-size: 13px; color: var(--charcoal); font-weight: 500;
      padding: 7px 10px; border-radius: var(--radius);
      display: block; transition: color .12s, background .12s;
    }
    .m3-city-panel a:hover { color: var(--green); background: var(--green-light); }
    .m3-view-region {
      grid-column: 1 / -1;
      font-size: 11.5px; font-weight: 700;
      color: var(--green) !important;
      border-bottom: 1px solid var(--border-gray);
      padding-bottom: 8px !important; margin-bottom: 4px;
    }

    /* ── CALL BUTTON (desktop) ── */
    .btn-call-header {
      background: var(--green); color: #fff;
      padding: 9px 18px; border-radius: var(--radius);
      font-size: 14px; font-weight: 600;
      display: flex; align-items: center; gap: 7px;
      transition: background .18s; white-space: nowrap;
      flex-shrink: 0;
    }
    .btn-call-header:hover { background: var(--green-mid-hover); }

    /* ── BURGER BUTTON ── */
    .burger-btn {
      display: none;
      flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer;
      padding: 8px; border-radius: var(--radius);
      transition: background .15s;
    }
    .burger-btn:hover { background: var(--bg-soft); }
    .burger-bar {
      display: block; width: 22px; height: 2px;
      background: var(--charcoal); border-radius: 2px;
      transition: transform .25s, opacity .25s;
      transform-origin: center;
    }
    .burger-btn[aria-expanded="true"] .burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger-btn[aria-expanded="true"] .burger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .burger-btn[aria-expanded="true"] .burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── MOBILE OVERLAY ── */
    .mobile-overlay {
      display: none; position: fixed; inset: 0;
      background: rgba(0,0,0,.45); z-index: 299;
      backdrop-filter: blur(2px);
    }
    .mobile-overlay.open { display: block; }

    /* ── MOBILE DRAWER ── */
    .mobile-drawer {
      position: fixed; top: 0; right: 0; bottom: 0;
      width: min(340px, 90vw);
      background: var(--bg-white);
      z-index: 300;
      display: flex; flex-direction: column;
      transform: translateX(100%);
      transition: transform .3s cubic-bezier(.4,0,.2,1);
      overflow: hidden;
    }
    .mobile-drawer.open { transform: translateX(0); }
    .mobile-drawer-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid var(--border-gray);
      flex-shrink: 0;
    }
    .mobile-drawer-logo {
      font-size: 18px; font-weight: 800; color: var(--charcoal);
      display: flex; align-items: center; gap: 7px;
    }
    .mobile-drawer-close {
      background: none; border: none; cursor: pointer;
      padding: 6px; border-radius: var(--radius);
      color: var(--mid-gray); transition: background .15s, color .15s;
    }
    .mobile-drawer-close:hover { background: var(--bg-soft); color: var(--charcoal); }
    .mobile-drawer-body { flex: 1; overflow-y: auto; padding: 8px 0; }
    .mobile-drawer-footer {
      padding: 16px 20px; border-top: 1px solid var(--border-gray); flex-shrink: 0;
    }

    /* Mobile 3-level accordion (built by JS) */
    .mob-l1-row {
      display: flex; align-items: stretch;
      border-bottom: 1px solid var(--bg-soft);
    }
    .mob-l1-service-link {
      display: flex; align-items: center; gap: 8px;
      flex: 1; padding: 13px 20px;
      font-size: 15px; font-weight: 600;
      color: var(--charcoal); text-decoration: none;
      transition: color .15s;
    }
    .mob-l1-service-link svg { color: var(--green); flex-shrink: 0; }
    .mob-l1-service-link:hover,
    .mob-l1-item.open .mob-l1-service-link { color: var(--green); }
    .mob-l1-trigger, .mob-l2-trigger {
      background: none; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-body); color: var(--charcoal);
      transition: color .15s;
    }
    .mob-l1-trigger {
      padding: 0 18px;
      border-left: 1px solid var(--bg-soft);
    }
    .mob-l1-trigger:hover, .mob-l1-item.open .mob-l1-trigger { color: var(--green); }
    .mob-l2-row {
      display: flex; align-items: stretch;
      background: var(--bg-soft); border-radius: 6px;
      margin-bottom: 4px; overflow: hidden;
    }
    .mob-l2-link {
      flex: 1; padding: 10px 14px;
      font-size: 13.5px; font-weight: 600; color: var(--charcoal);
      text-decoration: none; transition: color .15s, background .15s;
    }
    .mob-l2-row:hover .mob-l2-link,
    .mob-l2-item.open .mob-l2-link { color: var(--green); }
    .mob-l2-trigger {
      padding: 0 12px;
      border-left: 1px solid var(--border-gray);
      transition: color .15s, background .15s;
    }
    .mob-l2-row:hover,
    .mob-l2-item.open .mob-l2-row { background: var(--green-light); }
    .mob-l2-row:hover .mob-l2-trigger,
    .mob-l2-item.open .mob-l2-trigger { color: var(--green); }
    .mob-arrow { transition: transform .22s; flex-shrink: 0; }
    .mob-l1-item.open .mob-l1-trigger .mob-arrow,
    .mob-l2-item.open .mob-l2-trigger .mob-arrow { transform: rotate(180deg); }

    .mob-l1-body, .mob-l2-body {
      max-height: 0; overflow: hidden;
      transition: max-height .28s ease;
    }
    .mob-l1-item.open .mob-l1-body { max-height: 2000px; }
    .mob-l2-item.open .mob-l2-body { max-height: 500px; }

    .mob-l1-body-inner { padding: 8px 16px 12px; }
    .mob-l2-body-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
      padding: 4px 0 6px;
    }
    .mob-l2-body-inner a {
      font-size: 13px; color: var(--charcoal);
      padding: 7px 10px; border-radius: var(--radius);
      display: block; transition: background .12s, color .12s;
    }
.mob-l2-body-inner a:hover { background: var(--green-light); color: var(--green); }

    /* Static links in drawer */
    .mob-static-link {
      display: block; padding: 13px 20px;
      font-size: 15px; font-weight: 600; color: var(--charcoal);
      border-bottom: 1px solid var(--bg-soft);
      transition: color .15s;
    }
    .mob-static-link:hover { color: var(--green); }

    /* Drawer footer call button */
    .mob-call-btn {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      width: 100%; background: var(--green-mid); color: #fff;
      font-size: 18px; font-weight: 700; padding: 14px;
      border-radius: var(--radius-lg); transition: background .18s;
      box-shadow: var(--shadow-btn);
    }
    .mob-call-btn:hover { background: var(--green-mid-hover); }
    .mob-call-sub {
      text-align: center; font-size: 11.5px; color: var(--mid-gray);
      margin-top: 8px;
    }

    /* ── HERO ── */
    .hero {
      background: var(--bg-soft);
      padding: 64px 0 72px;
      position: relative; overflow: hidden;
    }
    /* Subtle Italian-flag diagonal wash on the right */
    .hero::before {
      content: '';
      position: absolute; top: 0; right: 0;
      width: 50%; height: 100%;
      background: linear-gradient(160deg, transparent 0%, rgba(27,107,58,.04) 40%, rgba(255,255,255,.01) 55%, rgba(204,28,46,.04) 90%, transparent 100%);
      pointer-events: none;
    }

    /* Two-column grid: left text, right trust panel */
    .hero-inner {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }

    /* Left column */
    .hero-left {}

    .hero-eyebrow { display: flex; align-items: center; gap: 8px; margin: -20px auto 20px;}
    .badge-24h {
      background: var(--green); color: #fff;
      font-size: 13px; font-weight: 700;
      letter-spacing: .08em; padding: 4px 10px;
      border-radius: 4px; text-transform: uppercase;
    }
    .badge-available {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--green-light);
      border: 1px solid rgba(27,107,58,.2);
      font-size: 13px; color: var(--green); font-weight: 600;
      padding: 5px 12px; border-radius: 20px;
    }
    .pulse-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--green); animation: pulse-green 2s infinite;
      flex-shrink: 0;
    }
    @keyframes pulse-green {
      0%, 100% { box-shadow: 0 0 0 0 rgba(27,107,58,.5); }
      50% { box-shadow: 0 0 0 5px rgba(27,107,58,0); }
    }

    .hero h1 {
      font-size: clamp(38px, 5.5vw, 68px);
      font-weight: 800; line-height: 1.05;
      letter-spacing: -.025em; color: var(--charcoal);
      margin-bottom: 16px;
    }
    .hero h1 .highlight { color: var(--green-mid); }
    .hero-sub {
      font-size: 15px; color: var(--mid-gray);
      margin-bottom: 32px; line-height: 1.6;
      max-width: 460px;
    }
    .hero-cta-block { display: flex; flex-direction: column; gap: 12px; width: fit-content; }
    .btn-call-primary {
      display: inline-flex; align-items: center; justify-content: center; gap: 12px;
      background: var(--green); color: #fff;
      font-size: 22px; font-weight: 700;
      letter-spacing: -.01em; padding: 17px 32px;
      border-radius: var(--radius-lg); box-shadow: var(--shadow-btn);
      animation: pulse-cta 2.5s infinite;
      transition: background .18s, transform .1s;
      width: fit-content;
    }
    .btn-call-primary:active { transform: scale(.98); }
    .btn-call-primary:hover { background: var(--green-mid-hover); animation: none; }
    @keyframes pulse-cta {
      0%, 100% { box-shadow: 0 4px 16px rgba(42,138,78,.35); }
      50%       { box-shadow: 0 4px 28px rgba(42,138,78,.6); }
    }
    .btn-call-secondary { font-size: 12.5px; color: var(--mid-gray); text-align: center; }

    /* Right column — trust panel card */
    .hero-trust-panel {
      background: var(--bg-white);
      border: 1px solid var(--border-gray);
      border-radius: var(--radius-lg);
      box-shadow: 0 4px 24px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.05);
      overflow: hidden;
    }
    .hero-trust-panel-header {
      background: var(--charcoal);
      padding: 18px 24px;
      display: flex; align-items: center; gap: 10px;
    }
    .hero-trust-panel-header span {
      color: #fff; font-size: 14px; font-weight: 600;
      letter-spacing: .01em;
    }
    .hero-trust-list {
      padding: 8px 0;
    }
    .hero-trust-item {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 14px 24px;
      border-bottom: 1px solid var(--bg-soft);
    }
    .hero-trust-item:last-child { border-bottom: none; }
    .hero-trust-icon {
      width: 38px; height: 38px; border-radius: var(--radius);
      background: var(--green-light); color: var(--green);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .hero-trust-text { flex: 1; min-width: 0; }
    .hero-trust-title {
      font-size: 14px; font-weight: 700; color: var(--charcoal);
      line-height: 1.3; margin-bottom: 2px;
    }
    .hero-trust-desc {
      font-size: 12.5px; color: var(--mid-gray); line-height: 1.5;
    }
    /* Star rating card */
    .hero-trust-rating {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--bg-white);
      border: 1px solid var(--border-gray);
      border-radius: var(--radius);
      box-shadow: 0 2px 10px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.04);
      padding: 12px 16px;
      text-decoration: none;
      color: inherit;
      align-self: flex-start;
      transition: box-shadow .18s, transform .12s;
    }
    .hero-trust-rating:hover {
      box-shadow: 0 4px 18px rgba(0,0,0,.12), 0 1px 4px rgba(0,0,0,.06);
      transform: translateY(-1px);
    }
    .hero-trust-rating-stars {
      color: #F59E0B; font-size: 16px; letter-spacing: 2px;
      flex-shrink: 0;
    }
    .hero-trust-rating-text { font-size: 13px; color: var(--mid-gray); }
    .hero-trust-rating-text strong { color: var(--charcoal); }

    /* trust-badges kept for legacy / mobile use */
    .trust-badges { display: none; }

    /* ── ABOUT ── */
    .about-section { padding: 80px 0; background: var(--bg-white); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .about-text h2 {
      font-size: clamp(26px, 3.5vw, 40px); font-weight: 800;
      letter-spacing: -.02em; line-height: 1.1; margin-bottom: 16px;
    }
    .about-text p { font-size: 15px; color: var(--mid-gray); line-height: 1.7; margin-bottom: 14px; }
    .about-image {
      border-radius: var(--radius-lg); overflow: hidden;
      aspect-ratio: 4/3; background: var(--bg-soft);
    }
    .about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

    /* ── COUNTERS ── */
    .counters-section {
      background: var(--bg-white);
      border-top: 3px solid var(--green);
      border-bottom: 3px solid var(--green);
    }
    .counters-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
    .counter-item {
      text-align: center; padding: 36px 20px;
      border-right: 1px solid var(--border-gray);
    }
    .counter-item:last-child { border-right: none; }
    .counter-num {
      font-size: 44px; font-weight: 800; line-height: 1;
      color: var(--green); display: block; letter-spacing: -.025em;
    }
    .counter-num small { font-size: 26px; vertical-align: middle; color: var(--green); opacity: .7; }
    .counter-label {
      font-size: 13px; color: var(--mid-gray); font-weight: 500;
      margin-top: 6px;
    }

    /* ── CALLOUT ── */
    .callout-section {
      background: var(--charcoal);
      padding: 52px 0;
      position: relative;
      overflow: hidden;
    }
    .callout-section::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 45%; height: 100%;
      background: linear-gradient(135deg, transparent 0%, rgba(27,107,58,.07) 100%);
      pointer-events: none;
    }
    .callout-inner {
      display: grid;
      grid-template-columns: 1.1fr 1.4fr auto;
      gap: 48px;
      align-items: center;
    }
    .callout-kicker {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--green-mid);
      margin-bottom: 10px;
    }
    .callout-heading {
      font-size: clamp(22px, 2.8vw, 34px);
      font-weight: 800;
      line-height: 1.15;
      color: #fff;
      letter-spacing: -.025em;
    }
    .callout-pillars {
      display: flex;
      flex-direction: column;
      gap: 13px;
      padding-left: 48px;
      border-left: 1px solid rgba(255,255,255,.12);
    }
    .callout-pillar {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,.8);
    }
    .callout-pillar svg { color: var(--green-mid); flex-shrink: 0; }
    .callout-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      color: var(--charcoal);
      font-size: 16px;
      font-weight: 700;
      padding: 16px 28px;
      border-radius: var(--radius-lg);
      white-space: nowrap;
      letter-spacing: -.01em;
      transition: background .18s, transform .12s;
      flex-shrink: 0;
    }
    .callout-btn svg { color: var(--green); }
    .callout-btn:hover { background: var(--green-light); transform: translateY(-1px); }

    /* ── SERVICES ── */
    .services-section { padding: 80px 0; background: var(--bg-white); }
    .section-header { margin-bottom: 44px; }
    .section-header h2 {
      font-size: clamp(28px, 4vw, 44px); font-weight: 800;
      line-height: 1.05; letter-spacing: -.02em;
    }
    .section-header p { font-size: 16px; color: var(--mid-gray); margin-top: 10px; max-width: 560px; }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .service-card {
      border: 1px solid var(--border-gray); border-radius: var(--radius-lg);
      overflow: hidden; display: flex; flex-direction: column;
      transition: box-shadow .2s, border-color .2s; background: var(--bg-white);
    }
    .service-card:hover { box-shadow: var(--shadow-card); border-color: var(--green); }
    .service-card-link { display: block; flex: 1; padding: 28px 28px 20px; color: inherit; }
    .service-icon-wrap {
      width: 52px; height: 52px; border-radius: var(--radius);
      background: var(--green-light); display: flex;
      align-items: center; justify-content: center;
      margin-bottom: 16px; color: var(--green);
    }
    .service-card h3 { font-size: 22px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 6px; }
    .service-tagline { font-size: 14px; color: var(--mid-gray); margin-bottom: 16px; line-height: 1.5; }
    .service-emergency-list { border-top: 1px solid var(--border-gray); padding-top: 14px; }
    .service-emergency-list li {
      font-size: 13.5px; color: var(--charcoal); padding: 5px 0;
      display: flex; align-items: center; gap: 8px;
      border-bottom: 1px solid var(--bg-soft);
    }
    .service-emergency-list li:last-child { border-bottom: none; }
    .emergency-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
    .service-card-footer { padding: 0 24px 24px; }
    .btn-call-service {
      display: flex; align-items: center; justify-content: center;
      gap: 8px; width: 100%; background: var(--green); color: #fff;
      font-size: 17px; font-weight: 700; padding: 13px;
      border-radius: var(--radius); transition: background .18s;
      border: none; cursor: pointer; text-decoration: none;
    }
    .btn-call-service:hover { background: var(--green-mid-hover); }

    /* ── HOW IT WORKS ── */
    .how-section { padding: 80px 0 60px; background: var(--bg-soft); }
    .steps-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      position: relative; margin-top: 20px;
    }
    /* Connector line sits between mascot and number */
    .steps-grid::before {
      content: ''; position: absolute;
      top: calc(160px + 28px);
      left: calc(33.33% + 10px); right: calc(33.33% + 10px);
      height: 2px; background: linear-gradient(to right, var(--green), var(--green-mid));
    }
    .step { padding: 0 24px; text-align: center; }

    /* Mascot image above the number circle */
    .step-mascot {
      display: block;
      width: 160px;
      height: 160px;
      object-fit: contain;
      margin: 0 auto;
      opacity: 0;
      transform: translateY(24px) scale(0.82);
      transition: opacity .55s ease, transform .55s cubic-bezier(.34,1.56,.64,1);
    }
    .step-mascot.mascot-visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    .step:nth-child(1) .step-mascot { transition-delay: 0s;   }
    .step:nth-child(2) .step-mascot { transition-delay: .15s; }
    .step:nth-child(3) .step-mascot { transition-delay: .30s; }

    .step-number {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--charcoal); color: #fff;
      font-size: 24px; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      margin: 8px auto 18px; position: relative; z-index: 1;
    }
    .step:nth-child(2) .step-number { background: var(--green); }
    .step:nth-child(3) .step-number { background: var(--charcoal); }
    .step h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
    .step p { font-size: 14px; color: var(--mid-gray); line-height: 1.6; }

    /* ════════════════════════════════════════════
       REVIEWS
    ════════════════════════════════════════════ */
    .reviews-section { padding: 80px 0; background: var(--bg-soft); }

    .reviews-header-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 36px;
    }
    .reviews-headline { max-width: 520px; }
    .reviews-headline h2 { font-size: clamp(24px, 4vw, 36px); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; }
    .reviews-headline h2 em { font-style: normal; color: var(--green-mid); }

    .reviews-proof {
      display: flex; flex-direction: column;
      align-items: flex-end; gap: 4px; text-align: right;
    }
    .reviews-avatars { display: flex; margin-bottom: 6px; justify-content: flex-end; }
    .reviews-avatars .av {
      width: 36px; height: 36px; border-radius: 50%;
      border: 2px solid var(--bg-soft);
      background: var(--green-light); color: var(--green);
      font-size: 13px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      margin-left: -10px; flex-shrink: 0; overflow: hidden;
    }
    .reviews-avatars .av:first-child { margin-left: 0; }
    .proof-stars { color: #F59E0B; font-size: 18px; letter-spacing: 2px; }
    .proof-line { font-size: 13px; color: var(--mid-gray); }
    .proof-line strong { color: var(--charcoal); }

    /* Carousel */
    .carousel-outer { position: relative; }
    .carousel-viewport { overflow: hidden; }
    .carousel-track {
      display: flex; gap: 20px;
      transition: transform .42s cubic-bezier(.4,0,.2,1);
      will-change: transform;
    }
    .review-card {
      flex: 0 0 calc((100% - 40px) / 3);
      min-width: 0;
      background: var(--bg-white);
      border: 1px solid var(--border-gray);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex; flex-direction: column;
      box-shadow: 0 1px 4px rgba(0,0,0,.05);
      user-select: none;
    }
    .review-card-header {
      padding: 18px 18px 12px;
      display: flex; align-items: center; gap: 12px;
    }
    .rc-avatar {
      width: 46px; height: 46px; border-radius: 50%;
      flex-shrink: 0; overflow: hidden;
      background: var(--green-light); border: 2px solid var(--border-gray);
    }
    .rc-avatar-initials {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; font-weight: 700; color: var(--green);
    }
    .rc-meta { flex: 1; min-width: 0; }
    .rc-name { font-size: 14px; font-weight: 700; color: var(--charcoal); line-height: 1.2; }
    .rc-location {
      display: flex; align-items: center; gap: 4px;
      font-size: 12px; color: var(--mid-gray); margin-top: 2px;
    }
    .rc-location svg { flex-shrink: 0; }
    .rc-badge {
      flex-shrink: 0;
      display: flex; align-items: center; gap: 4px;
      background: #E8F5E9; color: #2E7D32;
      font-size: 11px; font-weight: 600;
      padding: 3px 8px; border-radius: 20px; white-space: nowrap;
    }
    .rc-badge svg { color: #2E7D32; }
    .review-card-stars {
      color: #F59E0B; font-size: 16px;
      letter-spacing: 2px; margin-bottom: 12px; padding: 0 18px;
    }
    .review-card-text {
      font-size: 14.5px; line-height: 1.65;
      color: #3A3A3A; font-style: italic;
      flex: 1; padding: 0 18px 16px;
    }
    .review-card-photo {
      width: 100%; aspect-ratio: 16/9;
      background: var(--bg-soft); border-top: 1px solid var(--border-gray);
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 6px;
      color: var(--mid-gray); font-size: 12px;
      position: relative; overflow: hidden;
    }
    .review-card-photo svg { opacity: .35; }
    .review-card-photo span { opacity: .55; }
    .review-card-photo::before {
      content: ''; position: absolute; inset: 0;
      background-image: repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(0,0,0,.03) 8px, rgba(0,0,0,.03) 9px);
    }
    .review-card-photo-tag {
      position: absolute; bottom: 10px; left: 10px;
      background: rgba(0,0,0,.55); color: #fff;
      font-size: 11px; font-weight: 600;
      padding: 3px 8px; border-radius: 4px; backdrop-filter: blur(2px);
    }

    /* Carousel controls */
    .carousel-controls {
      display: flex; align-items: center;
      justify-content: center; gap: 16px; margin-top: 20px;
    }
    .carousel-btn {
      width: 38px; height: 38px; border-radius: 50%;
      border: 1px solid var(--border-gray);
      background: var(--bg-white); color: var(--charcoal);
      font-size: 16px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: border-color .15s, background .15s; flex-shrink: 0;
    }
    .carousel-btn:hover { border-color: var(--green); background: var(--green-light); }
    .carousel-dots { display: flex; align-items: center; gap: 7px; }
    .carousel-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--border-gray); border: none; padding: 0;
      cursor: pointer; transition: background .2s, width .25s; flex-shrink: 0;
    }
    .carousel-dot.active { background: var(--green); width: 24px; border-radius: 4px; }
    .carousel-dot:hover:not(.active) { background: var(--mid-gray); }

    /* ── COVERAGE ── */
    .coverage-section { padding: 72px 0; background: var(--bg-soft); border-top: 1px solid var(--border-gray); }
    .coverage-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 36px;
    }
    .coverage-card {
      background: var(--bg-white);
      border: 1px solid var(--border-gray);
      border-radius: var(--radius-lg);
      padding: 22px 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 16px;
      text-decoration: none;
      color: inherit;
      transition: box-shadow .2s, border-color .2s, transform .15s;
    }
    .coverage-card:hover {
      box-shadow: 0 4px 20px rgba(0,0,0,.09), 0 1px 4px rgba(0,0,0,.05);
      border-color: var(--green);
      transform: translateY(-2px);
    }
    .coverage-card-name {
      font-size: 17px;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 4px;
    }
    .coverage-card-count {
      font-size: 13px;
      color: var(--mid-gray);
    }
    .coverage-card-cta {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--green);
      display: flex;
      align-items: center;
      gap: 5px;
      transition: gap .15s;
    }
    .coverage-card:hover .coverage-card-cta { gap: 8px; }

    /* ── FAQ ── */
    .faq-section { padding: 80px 0; background: var(--bg-soft); }
    .faq-grid { max-width: 760px; margin: 44px auto 0; }
    .faq-item {
      border: 1px solid var(--border-gray); border-radius: var(--radius);
      margin-bottom: 10px; background: var(--bg-white); overflow: hidden;
    }
    .faq-question {
      width: 100%; background: none; border: none;
      padding: 18px 20px; text-align: left; cursor: pointer;
      display: flex; align-items: center; justify-content: space-between;
      gap: 14px; font-size: 15px; font-weight: 600;
      color: var(--charcoal); font-family: var(--font-body);
    }
    .faq-question:hover { color: var(--green); }
    .faq-chevron { flex-shrink: 0; font-size: 18px; transition: transform .25s; color: var(--green); font-weight: 700; }
    .faq-item.open .faq-chevron { transform: rotate(45deg); }
    .faq-answer {
      max-height: 0; overflow: hidden;
      transition: max-height .3s ease, padding .3s;
      padding: 0 20px; font-size: 14.5px; color: var(--mid-gray); line-height: 1.7;
    }
    .faq-item.open .faq-answer { max-height: 300px; padding: 4px 20px 20px; }

    /* ── FOOTER ── */
    .footer { background: var(--bg-dark); color: rgba(255,255,255,.65); padding: 56px 0 36px; font-size: 13.5px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
    .footer-brand .logo { color: #fff; margin-bottom: 14px; font-size: 20px; }
    .footer-brand p { line-height: 1.65; }
    .footer h4 { color: #fff; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
    .footer-links { display: flex; flex-direction: column; gap: 9px; }
    .footer-links a:hover { color: rgba(255,255,255,.9); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 10px;
    }
    .footer-legal { font-size: 12px; }

    /* ── STICKY CALL BAR (mobile) ── */
    .sticky-call-bar {
      display: none; position: fixed; bottom: 0; left: 0; right: 0;
      z-index: 200; background: var(--bg-white);
      border-top: 1px solid var(--border-gray); padding: 10px 16px;
      box-shadow: 0 -4px 20px rgba(0,0,0,.12);
    }
    .sticky-call-bar a {
      display: flex; align-items: center; justify-content: center;
      gap: 10px; background: var(--green); color: #fff;
      font-size: 20px; font-weight: 700; padding: 13px;
      border-radius: var(--radius); box-shadow: var(--shadow-btn);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-image { max-width: 480px; }
      .reviews-proof { align-items: flex-start; text-align: left; }
      .reviews-avatars { justify-content: flex-start; }
    }
    @media (max-width: 1024px) {
      .coverage-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      body { padding-bottom: 72px; }
      .sticky-call-bar { display: block; }
      .coverage-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .nav-links { display: none; }
      .btn-call-header { display: none; }
      .burger-btn { display: flex; }
      .hero { padding: 40px 0 48px; }
      .hero-inner { grid-template-columns: 1fr; gap: 32px; }
      .hero h1 { font-size: clamp(34px, 9vw, 48px); }
      .hero-sub { max-width: 100%; }
      .hero-cta-block { width: 100%; }
      .hero-cta-block .btn-call-primary { width: 100%; font-size: 20px; justify-content: center; }
      .hero-trust-panel { max-width: 100%; }
      .hero-trust-panel-header { display: none; }
      .counters-grid { grid-template-columns: 1fr 1fr; }
      .counter-item { border-right: none; border-bottom: 1px solid var(--border-gray); }
      .counter-item:nth-child(odd) { border-right: 1px solid var(--border-gray); }
      .counter-item:nth-last-child(-n+2) { border-bottom: none; }
      .callout-inner { grid-template-columns: 1fr; gap: 24px; }
      .callout-pillars { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; flex-direction: row; flex-wrap: wrap; gap: 12px 20px; }
      .callout-btn { justify-content: center; width: 100%; }
      .services-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .service-emergency-list, .emergency-dot, .service-tagline { display: none; }
      .service-card-link { text-align: center; padding: 28px 10px 20px;}
      .service-icon-wrap { margin-left: auto; margin-right: auto; }
      .steps-grid { grid-template-columns: 1fr; gap: 32px; }
      .steps-grid::before { display: none; }
      .step-mascot { width: 120px; height: 120px; }
      .carousel-track { gap: 0; }
      .review-card { flex: 0 0 100%; }
      .reviews-header-row { flex-direction: column; }
      .reviews-proof { align-items: flex-start; text-align: left; }
      .reviews-avatars { justify-content: flex-start; }
      .footer-grid { grid-template-columns: 1fr; gap: 30px; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }
    @media (max-width: 480px) {
      .hero h1 { font-size: 40px; }
      .btn-call-primary { font-size: 22px; padding: 16px 20px; }
      .counter-num { font-size: 42px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .btn-call-primary { animation: none; }
      .pulse-dot { animation: none; }
      .step-mascot { transition: none; }
    }

/* ── UNPUBLISHED / COMING-SOON STATES ──────────────────────────────────────
   Applied wherever a service+region+city page doesn't exist yet.
   When the page is created, nav_is_published() returns true and these
   classes are no longer used — the normal <a> is rendered instead.
   ─────────────────────────────────────────────────────────────────────── */

/* Desktop mega-menu: region header (non-clickable) */
.m3-view-region--soon {
  display: flex; align-items: center;
  gap: 6px; padding: 10px 16px;
  font-size: 12px; font-weight: 600;
  color: var(--mid-gray);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-gray);
  cursor: default;
  grid-column: 1 / -1;
}

/* Desktop mega-menu: individual city (non-clickable) */
.m3-nav-city-unavailable {
  display: block;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--mid-gray);
  cursor: default;
}

/* Mobile drawer: region row (non-clickable) */
.mob-l2-link--soon {
  flex: 1;
  font-size: 13px; font-weight: 600;
  color: var(--mid-gray);
  cursor: default;
  padding: 0;
}

/* Mobile drawer: city (non-clickable) */
.mob-city-unavailable {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--mid-gray);
  cursor: default;
  border-bottom: 1px solid var(--bg-soft);
}

/* Service hub — city chip (non-clickable) */
.pg-city-chip--soon {
  font-size: 12.5px;
  color: var(--mid-gray);
  background: var(--bg-soft);
  border: 1px solid var(--border-gray);
  border-radius: 20px;
  padding: 4px 11px;
  cursor: default;
  opacity: 0.65;
  white-space: nowrap;
}

/* Service hub — region panel header (non-clickable) */
.pg-region-panel-header--soon {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 18px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-gray);
  color: var(--mid-gray);
  cursor: default;
}
.pg-region-panel-header--soon svg { color: var(--mid-gray); flex-shrink: 0; }
.pg-region-panel-header--soon strong { flex: 1; font-size: 14px; font-weight: 700; }

/* Region hub — service link (non-clickable icon button) */
.svc-link--soon {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 10px 8px;
  color: var(--mid-gray);
  cursor: default;
  opacity: 0.55;
  font-size: 11px; font-weight: 500;
  text-align: center;
  border-radius: var(--radius);
}
.svc-link--soon svg { color: var(--mid-gray); }

/* Region hub — "Vedi interventi" link (non-clickable) */
.reg-svc-overview-link--soon {
  font-size: 13px; font-weight: 700;
  color: var(--mid-gray);
  cursor: default;
  opacity: 0.55;
}

/* City hub — service row (non-clickable) */
span.mi-service-row--soon {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-gray);
  color: var(--mid-gray);
  cursor: default;
  opacity: 0.6;
}
span.mi-service-row--soon:last-child { border-bottom: none; }
span.mi-service-row--soon .mi-service-arrow { color: var(--mid-gray); }

/* "In arrivo" badge on city hub service rows */
.mi-badge-soon {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 10px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--mid-gray);
  background: var(--border-gray);
  border-radius: 4px;
  padding: 2px 7px;
}

/* "In arrivo" state for city cards on service+region pages (all service prefixes) */
[class*="-city-card--soon"] {
  cursor: default;
  opacity: 0.55;
  pointer-events: none;
}
[class*="-badge-soon"]:not(.mi-badge-soon) {
  font-size: 10px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--mid-gray);
  background: var(--border-gray);
  border-radius: 4px;
  padding: 2px 7px;
}