/* Root services index page CSS extracted from services.html. */

    .mv-site-header {
      color: rgb(248 250 252);
      transition: color .2s ease;
    }

    .mv-site-header .mv-header-logo {
      filter: brightness(0) invert(1);
      transition: filter .2s ease;
    }

    .mv-site-header.is-solid {
      color: rgb(15 23 42);
    }

    .mv-site-header.is-solid .mv-header-logo {
      filter: none;
    }
    .mv-page-bg {
      pointer-events: none;
      position: fixed;
      inset: 0;
      z-index: -10;
    }

    .mv-page-bg-base {
      position: absolute;
      inset: 0;
      background: rgb(241 245 249);
    }

    .mv-page-bg-depth {
      position: absolute;
      top: -8rem;
      left: 50%;
      width: min(900px, 92vw);
      height: 520px;
      border-radius: 9999px;
      background: rgb(203 213 225 / .4);
      filter: blur(64px);
      transform: translateX(-50%);
    }

    .mv-page-bg-accent {
      position: absolute;
      top: -10rem;
      right: -260px;
      width: 520px;
      height: 520px;
      border-radius: 9999px;
      background: rgb(191 219 254 / .2);
      filter: blur(64px);
    }

    .mv-page-bg-bottom {
      position: absolute;
      inset-inline: 0;
      bottom: 0;
      height: 320px;
      background: linear-gradient(to top, #fff, rgb(255 255 255 / .7), transparent);
    }

    .mv-soft-section {
      position: relative;
      overflow: hidden;
    }

    .mv-soft-section > .mx-auto {
      position: relative;
      z-index: 10;
    }

    .mv-soft-section::before,
    .mv-soft-section::after {
      content: "";
      pointer-events: none;
      position: absolute;
      top: 0;
      bottom: 0;
      z-index: 0;
      width: 22%;
    }

    .mv-soft-section::before {
      left: 0;
      background: linear-gradient(to right, rgb(15 23 42 / .18), transparent);
    }

    .mv-soft-section::after {
      right: 0;
      background: linear-gradient(to left, rgb(15 23 42 / .18), transparent);
    }

    .mv-final-soft-fade {
      pointer-events: none;
      position: absolute;
      inset-inline: 0;
      bottom: 0;
      z-index: 1;
      height: 14rem;
      background: linear-gradient(to top, #fff, rgb(255 255 255 / .95), transparent);
    }

    .mv-services-hero {
      min-height: 520px;
      background: rgb(18 18 18);
      color: #fff;
    }

    .mv-services-hero-title {
      font-size: clamp(4.25rem, 10vw, 8rem);
      line-height: .9;
      letter-spacing: -.075em;
      font-weight: 800;
    }

    .mv-services-hero-copy {
      max-width: 46rem;
      margin-inline: auto;
      color: rgb(245 245 245);
      font-size: clamp(1rem, 1.25vw, 1.15rem);
      line-height: 1.65;
      font-weight: 500;
    }

    .mv-service-section {
      position: relative;
      z-index: 10;
      padding-block: clamp(5.75rem, 9vw, 8.5rem);
      background: #fff;
    }

    .mv-service-section + .mv-service-section {
      padding-top: clamp(4.5rem, 8vw, 7.5rem);
    }

    .mv-section-head {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-bottom: clamp(4.25rem, 7vw, 6.25rem);
    }

    .mv-section-title {
      max-width: 28rem;
      color: rgb(15 15 15);
      font-size: clamp(2.9rem, 4.6vw, 4rem);
      line-height: 1.02;
      letter-spacing: -.055em;
      font-weight: 800;
    }

    .mv-section-copy {
      max-width: 42rem;
      color: rgb(51 65 85);
      font-size: clamp(1.05rem, 1.25vw, 1.18rem);
      line-height: 1.62;
      font-weight: 500;
    }

    .mv-service-cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(2rem, 3.5vw, 3.5rem);
    }

    .mv-service-card {
      min-width: 0;
    }

    .mv-card-media {
      position: relative;
      display: flex;
      min-height: 15rem;
      aspect-ratio: 4 / 3;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border-radius: .45rem;
      background: rgb(241 245 249);
    }

    .mv-card-media::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 30% 30%, rgb(255 255 255 / .65), transparent 28%),
        linear-gradient(135deg, rgb(226 232 240), rgb(248 250 252));
    }

    .mv-card-media[data-image]::before {
      content: none;
    }

    .mv-card-media img {
      position: absolute;
      inset: 0;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 49%;
      filter: grayscale(1);
      transform: scale(1.001);
      transition: transform .55s ease, filter .55s ease, opacity .55s ease;
    }

    .mv-service-card a:hover .mv-card-media img,
    .mv-service-card a:focus-visible .mv-card-media img {
      transform: scale(1.045);
      filter: grayscale(.25);
      opacity: .96;
    }

    .mv-card-media[data-tone="dark"] {
      background: rgb(18 18 18);
    }

    .mv-card-media[data-tone="dark"]::before {
      background:
        radial-gradient(circle at 25% 20%, rgb(255 255 255 / .12), transparent 28%),
        linear-gradient(135deg, rgb(15 23 42), rgb(30 41 59));
    }

    .mv-card-media[data-tone="blue"]::before {
      background:
        radial-gradient(circle at 30% 20%, rgb(255 255 255 / .85), transparent 28%),
        linear-gradient(135deg, rgb(219 234 254), rgb(239 246 255));
    }

    .mv-card-media[data-tone="green"]::before {
      background:
        radial-gradient(circle at 30% 22%, rgb(255 255 255 / .18), transparent 27%),
        linear-gradient(135deg, rgb(22 101 52), rgb(20 83 45));
    }

    .mv-card-placeholder {
      position: relative;
      z-index: 1;
      width: 52%;
      max-width: 15rem;
      aspect-ratio: 1.55 / 1;
      border-radius: 1.4rem;
      border: 1px solid rgb(255 255 255 / .62);
      background: rgb(255 255 255 / .48);
      box-shadow: 0 20px 60px rgb(15 23 42 / .08);
    }

    .mv-card-media[data-tone="dark"] .mv-card-placeholder,
    .mv-card-media[data-tone="green"] .mv-card-placeholder {
      border-color: rgb(255 255 255 / .22);
      background: rgb(255 255 255 / .1);
      box-shadow: none;
    }

    .mv-card-title {
      margin-top: 1.35rem;
      color: rgb(15 15 15);
      font-size: clamp(1.75rem, 2.45vw, 2.25rem);
      line-height: 1.05;
      letter-spacing: -.045em;
      font-weight: 800;
    }

    .mv-hero-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 3.25rem;
      padding: .75rem 1.25rem;
      border-radius: 1rem;
      font-weight: 700;
      line-height: 1.2;
      transition: background-color .2s ease, color .2s ease, border-color .2s ease;
    }

    .mv-hero-btn-solid {
      border: 1px solid #fff;
      background: #fff;
      color: rgb(15 23 42);
    }

    .mv-hero-btn-solid:hover,
    .mv-hero-btn-solid:focus-visible {
      border-color: rgb(255 255 255 / .6);
      background: rgb(15 23 42);
      color: #fff;
    }

    .mv-hero-btn-outline {
      border: 1px solid rgb(255 255 255 / .3);
      background: transparent;
      color: #fff;
    }

    .mv-hero-btn-outline:hover,
    .mv-hero-btn-outline:focus-visible {
      border-color: rgb(255 255 255 / .45);
      background: rgb(255 255 255 / .1);
      color: #fff;
    }

    .mv-chooser-section {
      background: #fff;
    }

    .mv-chooser-section::before,
    .mv-chooser-section::after {
      content: none;
    }

    .mv-chooser-inner {
      max-width: 52rem;
      margin-inline: auto;
      padding-block: clamp(3.5rem, 6vw, 5rem);
      text-align: center;
    }

    .mv-chooser-kicker {
      color: rgb(71 85 105);
      font-size: .875rem;
      line-height: 1.5;
      font-weight: 800;
    }

    .mv-chooser-heading {
      margin-top: .5rem;
      color: rgb(15 23 42);
      font-size: clamp(2rem, 3vw, 2.75rem);
      line-height: 1.08;
      letter-spacing: -.045em;
      font-weight: 900;
    }

    .mv-chooser-list {
      display: grid;
      gap: 1.75rem;
      margin-top: 2.25rem;
      text-align: right;
    }

    .mv-chooser-item {
      padding-block: .25rem;
    }

    .mv-chooser-label {
      color: rgb(71 85 105);
      font-size: .9rem;
      line-height: 1.5;
      font-weight: 800;
    }

    .mv-chooser-title {
      display: inline-flex;
      align-items: center;
      gap: .7rem;
      margin-top: .35rem;
      color: rgb(15 23 42);
      font-size: clamp(1.25rem, 2vw, 1.5rem);
      line-height: 1.2;
      letter-spacing: -.025em;
      font-weight: 900;
    }

    .mv-chooser-title::before {
      content: "";
      display: inline-block;
      width: 1.35rem;
      height: 2px;
      flex: 0 0 1.35rem;
      border-radius: 999px;
      background: currentColor;
    }

    .mv-chooser-copy {
      margin-top: .65rem;
      color: rgb(51 65 85);
      font-size: .95rem;
      line-height: 1.75;
      font-weight: 500;
    }

    @media (min-width: 768px) {
      .mv-chooser-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(1.75rem, 3vw, 3rem);
      }
    }


    @media (min-width: 768px) {
      .mv-service-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (min-width: 1024px) {
      .mv-section-head {
        grid-template-columns: minmax(0, .95fr) minmax(0, 1.1fr);
        align-items: start;
      }

      .mv-section-copy {
        justify-self: end;
      }

      .mv-service-cards[data-count="3"] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .mv-service-cards[data-count="2"] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 54rem;
      }
    }

    @media (max-width: 640px) {
      .mv-services-hero {
        min-height: 460px;
      }

      .mv-services-hero-title {
        font-size: clamp(3.4rem, 19vw, 4.9rem);
      }

      .mv-section-head {
        margin-bottom: 3rem;
      }

      .mv-card-media {
        min-height: 12.5rem;
      }
    }

    @media (max-width: 1023px), (hover: none), (pointer: coarse) {
      .mv-card-media img {
        filter: grayscale(0);
        opacity: 1;
      }

      .mv-service-card a:hover .mv-card-media img,
      .mv-service-card a:focus-visible .mv-card-media img {
        transform: scale(1.001);
        filter: grayscale(0);
        opacity: 1;
      }
    }



    /* Entry reveal animation — reused from the "איך זה עובד" section pattern */
    html.mv-io .mv-entry {
      opacity: 0;
      transform: translateY(10px);
    }

    html.mv-io .mv-entry.is-revealed {
      opacity: 1;
      transform: translateY(0);
      transition: opacity .55s ease, transform .55s ease;
    }

    @media (prefers-reduced-motion: reduce) {
      .mv-card-media img {
        transition: none;
      }

      html.mv-io .mv-entry,
      html.mv-io .mv-entry.is-revealed {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }
