      :root {
        color-scheme: light;
        --bg: #f7f5f2;
        --ink: #1f1f1f;
        --muted: #5a5a5a;
        --accent: #0f3d3e;
        --accent-2: #e0b973;
        --card: #ffffff;
        --border: #e2ded7;
      }
      * {
        box-sizing: border-box;
      }
      body {
        margin: 0;
        font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
        color: var(--ink);
        background: var(--bg);
      }
      a {
        color: inherit;
        text-decoration: none;
      }
      .wrap {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0px 0px 0;
      }
      header {
        position: sticky;
        top: 0;
        width: 100%;
        z-index: 50;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        min-height: 90px;
        height: auto;
        background: rgba(247, 245, 242, 0.9);
        backdrop-filter: blur(6px);
        box-sizing: border-box;
      }
      .nav-toggle {
        display: none;
      }
      .nav-toggle-label {
        display: none;
        width: 52px;
        height: 52px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
      }
      .nav-toggle-label span,
      .nav-toggle-label span::before,
      .nav-toggle-label span::after {
        display: block;
        width: 24px;
        height: 2px;
        background: #1f1f1f;
        border-radius: 2px;
        position: relative;
        content: "";
      }
      .nav-toggle-label span::before {
        position: absolute;
        top: -7px;
      }
      .nav-toggle-label span::after {
        position: absolute;
        top: 7px;
      }
      .brand {
        display: inline-flex;
        align-items: center;
      }
      .brand img {
        height: 124px;
        width: auto;
        display: block;
      }
      nav a {
        margin-left: 16px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        font-weight: 700;
        transition: transform 0.2s ease, opacity 0.2s ease;
      }
      nav a:hover {
        transform: translateY(-2px);
        opacity: 0.75;
      }
      .menu-cta {
        margin-left: 20px;
        padding: 10px 16px;
        border-radius: 999px;
        background: #f87216;
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        border: 1px solid #f87216;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }
      .menu-cta:hover {
        filter: brightness(0.95);
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(248, 114, 22, 0.25);
      }
      .hero {
        margin-top: 40px;
        background: url("img/demenagement_paris.jpg") center / cover no-repeat;
        padding: 36px 0 136px;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
      }
      .hero-inner {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        gap: 24px;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        align-items: center;
      }
      .hero-card {
        background: var(--card);
        border: 1px solid var(--border);
        padding: 28px;
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
      }
      h1 {
        margin: 0 0 16px;
        font-size: clamp(32px, 4vw, 44px);
        line-height: 1.1;
      }
      .hero-title {
        text-align: center;
        margin-bottom: 200px;
      }
      .hero-sub {
        text-align: center;
        margin: 0;
        color: #000;
        font-size: 18px;
      }
      .hero-sub-wrap {
        display: flex;
        justify-content: center;
        margin-bottom: 18px;
      }
      .hero-callout {
        display: inline-block;
        background: rgba(255, 255, 255, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.45);
        padding: 12px 18px;
        border-radius: 16px;
        backdrop-filter: blur(2px);
        transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease;
      }
      .hero-callout:hover {
        background: linear-gradient(135deg, rgba(15, 61, 62, 0.9), rgba(248, 114, 22, 0.85));
        border-color: rgba(255, 255, 255, 0.6);
        box-shadow: 0 10px 24px rgba(15, 61, 62, 0.25);
        color: #fff;
        backdrop-filter: blur(8px);
      }
      .hero-callout:hover .hero-title,
      .hero-callout:hover .hero-sub {
        color: #fff;
        font-weight: 700;
      }
      .hero-callout.title {
        padding: 6px 14px;
      }
      .hero-callout.subtitle {
        padding: 6px 10px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .hero-callout.title .hero-title {
        margin: 0;
      }
      .hero-callout-wrap {
        display: flex;
        justify-content: center;
        margin-bottom: 150px;
      }
      .lead {
        color: var(--muted);
        font-size: 18px;
        line-height: 1.5;
      }
      .cta-row {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 20px;
      }
      .quote-bar {
        display: grid;
        gap: 12px;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        align-items: center;
        margin-top: 16px;
        background: var(--card);
        border: 1px solid var(--border);
        padding: 14px;
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
      }
      .quote-bar input,
      .quote-bar select {
        height: 44px;
      }
      .quote-bar .quote-btn {
        height: 44px;
        white-space: nowrap;
        background: #f87216;
        border-color: #f87216;
        color: #fff;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }
      .quote-bar .quote-btn:hover {
        filter: brightness(0.95);
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(248, 114, 22, 0.25);
      }
      .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        border: 0;
      }
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 18px;
        border-radius: 999px;
        border: 1px solid var(--accent);
        background: var(--accent);
        color: #fff;
        font-weight: 600;
        font-size: 14px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }
      .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(15, 61, 62, 0.2);
      }
      .btn.secondary {
        background: transparent;
        color: var(--accent);
      }
      .tagline {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--accent);
      }
      .grid {
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        align-items: stretch;
      }


      .process-step {
        background: rgba(255, 255, 255, 0.7);
        padding: 10px 12px;
        border-radius: 999px;
        font-weight: 600;
        font-size: 14px;
        white-space: nowrap;
        position: relative;
        cursor: default;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }
      .process-step:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
      }

      .process-step:hover::after {
        opacity: 1;
        transform: translateX(-50%) translateY(-12px);
      }

      .why-list {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
      }
      .why-item {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        border-radius: 999px;
        background: #f87216;
        color: #fff;
        font-weight: 600;
        font-size: 14px;
        border: 1px solid #f87216;
      }
      .why-item .icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: inherit;
      }
      .why-item.phone {
        background: #fff;
        color: #f87216;
        border-color: #f87216;
      }
      .why-item.whatsapp {
        background: #25d366;
        color: #fff;
        border-color: #25d366;
      }
      .floating-cta {
        position: fixed;
        left: 50%;
        bottom: 24px;
        transform: translateX(-50%);
        z-index: 25;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .floating-cta .call-btn {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #f87216;
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #f87216;
        padding: 0;
        flex: 0 0 48px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }
      .floating-cta .call-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(248, 114, 22, 0.25);
      }
      .floating-cta .btn {
        background: #f87216;
        border-color: #f87216;
        padding: 14px 22px;
        font-size: 17px;
      }
      .whatsapp-btn {
        position: fixed;
        right: 24px;
        bottom: 24px;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background: #25d366;
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #25d366;
        z-index: 26;
        padding: 0;
        flex: 0 0 54px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }
      .whatsapp-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(37, 211, 102, 0.25);
      }
      @media (max-width: 720px) {
        .why-list {
          justify-content: center;
        }
      }
      
      .section {
        margin-top: 52px;
      }
      .section h2 {
        margin: 0 0 12px;
        font-size: 26px;
      }
      .section h2.center {
        text-align: center;
      }
      .card {
        background: var(--card);
        border: 1px solid var(--border);
        padding: 20px;
        border-radius: 14px;
        display: flex;
        flex-direction: column;
      }
      .card-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 52px;
        height: 52px;
        margin: 0 auto 10px;
        border-radius: 50%;
        background: rgba(15, 61, 62, 0.1);
        font-size: 24px;
      }
      .pill {
        display: inline-block;
        padding: 6px 10px;
        font-size: 12px;
        border-radius: 999px;
        background: #f7c9aa;
        color: var(--accent);
        margin-bottom: 8px;
      }
      .pill.center {
        display: block;
        width: fit-content;
        margin: 0 auto 10px;
      }
      .card-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 18px;
        border-radius: 999px;
        border: 1px solid #f87216;
        background: #f87216;
        color: #fff;
        font-weight: 600;
        font-size: 14px;
        margin-top: auto;
        align-self: center;
        text-align: center;
        white-space: nowrap;
        min-width: 170px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }
      .card-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(248, 114, 22, 0.25);
      }
      details.service-card {
        border: 1px solid var(--border);
        border-radius: 14px;
        background: var(--card);
        padding: 0;
      }
      details.service-card > summary {
        list-style: none;
        cursor: pointer;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
      }
      details.service-card > summary::-webkit-details-marker {
        display: none;
      }
      details.service-card .card-body {
        padding: 0 20px 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      details.service-card .card-body p {
        margin: 0 0 5px;
      }
      details.service-card .card-body {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
      }
      details.service-card[open] .card-body {
        max-height: 400px;
        opacity: 1;
      }
      @media (min-width: 721px) {
        .floating-cta .call-btn {
          display: none;
        }
        .whatsapp-btn {
          display: none;
        }
        details.service-card {
          display: grid;
          grid-template-rows: auto 1fr;
          height: 100%;
          position: relative;
        }
        #services details.service-card {
          height: 400px;
        }
        #services .grid {
          align-items: stretch;
        }
        details.service-card .card-body {
          max-height: none;
          opacity: 1;
          padding-bottom: 56px;
          display: flex;
          flex-direction: column;
        }
        details.service-card .card-cta {
          position: absolute;
          bottom: 15px;
          left: 50%;
          transform: translateX(-50%);
        }
      }
      ul {
        margin: 12px 0 0;
        padding-left: 18px;
        color: var(--muted);
      }
      .form {
        display: grid;
        gap: 12px;
      }
      label {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.7px;
        color: var(--muted);
      }
      input,
      select,
      textarea {
        width: 100%;
        padding: 10px 12px;
        border-radius: 10px;
        border: 1px solid var(--border);
        font-family: inherit;
        font-size: 14px;
      }
      textarea {
        min-height: 110px;
        resize: vertical;
      }
      footer {
        margin-top: 64px;
        padding: 24px 0 32px;
        background: #f7c9aa;
        color: #1f1f1f;
        font-size: 13px;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: space-between;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
      }
      footer::after {
        content: "";
        display: block;
        height: 10vh;
      }
      footer .footer-block,
      footer .footer-meta {
        max-width: 1100px;
        margin: 0 auto;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
      }
      footer .footer-block {
        flex: 1 1 100%;
      }
      footer .footer-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: space-between;
        width: 100%;
      }
      footer h2 {
        margin: 0 0 12px;
        font-size: 18px;
        color: #1f1f1f;
      }
      footer .footer-columns {
        display: grid;
        gap: 24px;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
      footer .sitemap {
        display: grid;
        gap: 6px;
        font-size: 15px;
      }
      .footer-details {
        display: grid;
        gap: 6px;
        font-size: 15px;
      }
      @media (max-width: 720px) {
        header {
          flex-direction: row;
          align-items: center;
          width: 100%;
          margin-left: 0;
          margin-right: 0;
          padding: 10px;
        }
        .brand img {
          height: 80px;
        }
        .nav-toggle-label {
          display: inline-flex;
        }
        nav {
          position: absolute;
          right: 20px;
          top: calc(100% + 10px);
          background: #fff;
          border: 1px solid var(--border);
          border-radius: 12px;
          padding: 12px;
          display: none;
          flex-direction: column;
          gap: 10px;
          z-index: 30;
        }
        nav a {
          margin: 0;
        }
        .nav-toggle:checked + label + nav {
          display: flex;
        }
        .hero-inner,
        .section:not(footer),
        .section:not(footer) .grid,
        .section:not(footer) .card,
        .section:not(footer) .cta-row,
        .section:not(footer) .process-arrow,
        .section:not(footer) .process-arrow-wrap,
        .section:not(footer) .quote-bar {
          text-align: center;
          justify-content: center;
        }
        .section:not(footer) .grid {
          justify-items: center;
        }
        .section:not(footer) .card {
          align-items: center;
        }
        .section:not(footer) .cta-row {
          justify-content: center;
        }
        .section:not(footer) .process-arrow {
          flex-direction: column;
        }
        .process-arrow {
          width: fit-content;
          margin: 0 auto;
        }

        #services .grid {
          grid-template-columns: 1fr;
        }
        #services .card {
          display: none;
        }
        #services details.service-card {
          width: 100%;
        }
        #services details.service-card .card-body {
          text-align: center;
          align-items: center;
        }
        #services details.service-card:not([open]) .card-body {
          display: none;
        }
        #services details.service-card {
          display: block;
          height: auto;
        }
        .floating-cta .btn {
          text-align: center;
          white-space: nowrap;
          width: auto;
          flex: 0 0 auto;
        }
        .floating-cta .call-btn {
          font-size: 20px;
          width: 53px;
          height: 53px;
          min-width: 53px;
          border-radius: 50%;
          padding: 0;
          flex: 0 0 53px;
        }
        .floating-cta {
          flex-wrap: nowrap;
        }
        .whatsapp-btn {
          position: static;
          width: 53px;
          height: 53px;
          min-width: 53px;
          border-radius: 50%;
          padding: 0;
          flex: 0 0 53px;
        }
      }
    
