:root { --nav-height: 84px; --cursor-size: 26px; }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; background: #F9F9F9; }
    body { font-family: 'Space Grotesk', sans-serif; background: #F9F9F9; color: #111111; cursor: none; overflow-x: hidden; }
    a, button, input, select, textarea, label { cursor: none !important; }
    section { scroll-margin-top: 110px; }
    .cursor-circle { position: fixed; top: 0; left: 0; width: var(--cursor-size); height: var(--cursor-size); border: 1.5px solid #111111; border-radius: 999px; pointer-events: none; z-index: 999999; transform: translate(-50%, -50%); mix-blend-mode: normal; background: rgba(17,17,17,.04); transition: width .22s ease, height .22s ease, background .22s ease, border-color .22s ease, opacity .22s ease; }
    .cursor-circle.is-on-dark { border-color: #F9F9F9; background: rgba(249,249,249,.08); }
    .cursor-circle.is-hover { width: 70px; height: 70px; background: rgba(17,17,17,.08); border-color: #111111; }
    .cursor-circle.is-hover.is-on-dark { background: rgba(249,249,249,.16); border-color: #F9F9F9; }
    .cursor-circle.is-hidden { opacity: 0; }
    .nav-link { position: relative; transition: color .25s ease; }
    .nav-link::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: #111111; transition: width .25s ease; }
    .nav-link.active { color: #111111; font-weight: 700; }
    .nav-link.active::after, .nav-link:hover::after { width: 100%; }
    .nav-link-light::after { background: #F9F9F9; }
    .site-header { z-index: 9999 !important; transition: background-color .25s ease, border-color .25s ease, color .25s ease; }
    .site-header > div:first-child { position: relative; z-index: 10001; }
    .menu-toggle { position: relative; z-index: 10002; }
    .site-header.is-on-dark { background: rgba(17,17,17,.88) !important; border-color: rgba(249,249,249,.16) !important; color: #F9F9F9; }
    .site-header.is-on-dark nav { color: rgba(249,249,249,.64) !important; }
    .site-header.is-on-dark .nav-link.active { color: #F9F9F9; }
    .site-header.is-on-dark .nav-link::after { background: #F9F9F9; }
    .site-header.is-on-dark .language-switcher { border-color: #F9F9F9; }
    .site-header.is-on-dark .language-btn.active { background: #F9F9F9; color: #111111; }
    .site-header.is-on-dark .menu-toggle { border-color: #F9F9F9; }
    .site-header.is-on-dark .menu-line { background: #F9F9F9; }
    .site-header.menu-is-open { background: #111111 !important; border-color: rgba(249,249,249,.16) !important; color: #F9F9F9 !important; }
    .site-header.menu-is-open .language-switcher { border-color: #F9F9F9 !important; }
    .site-header.menu-is-open .language-btn { color: #F9F9F9; }
    .site-header.menu-is-open .language-btn.active { background: #F9F9F9 !important; color: #111111 !important; }
    .site-header.menu-is-open .menu-toggle { border-color: #F9F9F9 !important; }
    .site-header.menu-is-open .menu-line { background: #F9F9F9 !important; }
    body.mobile-menu-open { overflow: hidden; }
    .language-btn.active { background: #111111; color: #F9F9F9; }
    .reveal { opacity: 0; }
    .reveal.is-visible { opacity: 1; }
    .hero-title { font-size: clamp(3.4rem, 10.5vw, 9.5rem); line-height: .88; letter-spacing: -.075em; }
    .section-title { font-size: clamp(2.6rem, 7vw, 6.75rem); line-height: .9; letter-spacing: -.06em; }
    .project-card { grid-template-columns: 1fr; }
    .project-card:hover img { transform: scale(1.04); }
    .project-media { height: 320px; aspect-ratio: 16 / 10; }
    .project-body { min-height: 320px; overflow-wrap: anywhere; }
    .project-title { font-size: clamp(2.35rem, 4.3vw, 3.75rem); line-height: .92; letter-spacing: -.06em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .project-description { display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
    @media (min-width: 1024px) {
      .project-card { grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr); height: 560px; }
      .project-card.project-card-reverse { grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr); }
      .project-media, .project-body { height: 100%; }
      .project-media { aspect-ratio: auto; }
    }
    .field-line { background: transparent; border: 0; border-bottom: 2px solid rgba(249,249,249,.38); border-radius: 0; color: #F9F9F9; padding: .15rem .25rem .25rem; outline: none; min-width: 190px; }
    .field-line:focus { border-color: #B9FF3D; box-shadow: none; }
    select.field-line { appearance: auto; color: #B9FF3D; }
    select.field-line option { color: #111111; }
    .mobile-menu { position: fixed; inset: 0; z-index: 99999; background: #111111 !important; color: #F9F9F9 !important; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-14px); transition: opacity .32s ease, transform .32s ease, visibility .32s ease; overflow-y: auto; }
    .mobile-menu.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); height: 100dvh; }
    .mobile-menu nav { color: #F9F9F9 !important; }
    .mobile-link { display: block; color: #F9F9F9 !important; text-decoration: none; }
    .mobile-link.active { color: #B9FF3D !important; }
    body.mobile-menu-open .site-header { background: #111111 !important; border-color: rgba(249,249,249,.16) !important; color: #F9F9F9 !important; }
    body.mobile-menu-open .site-header .language-switcher { border-color: #F9F9F9 !important; }
    body.mobile-menu-open .site-header .language-btn { color: #F9F9F9; }
    body.mobile-menu-open .site-header .language-btn.active { background: #F9F9F9 !important; color: #111111 !important; }
    body.mobile-menu-open .site-header .menu-toggle { border-color: #F9F9F9 !important; }
    body.mobile-menu-open .site-header .menu-line { background: #F9F9F9 !important; }
    .menu-line { width: 28px; height: 2px; background: #111111; display: block; transition: transform .25s ease, opacity .25s ease; }
    .menu-toggle.open .menu-line:first-child { transform: translateY(5px) rotate(45deg); }
    .menu-toggle.open .menu-line:last-child { transform: translateY(-5px) rotate(-45deg); }
    .img-grain { position: relative; overflow: hidden; }
    .img-grain::after { content:''; position:absolute; inset:0; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.08), transparent 30%), linear-gradient(135deg, rgba(185,255,61,.12), transparent 40%); pointer-events:none; mix-blend-mode: screen; opacity:.5; }

    .contact-trigger-card { border: 1px solid rgba(249,249,249,.22); border-radius: 2rem; padding: clamp(2rem, 4vw, 4rem); background: rgba(249,249,249,.06); min-height: 460px; display: flex; flex-direction: column; justify-content: space-between; }
    .contact-step-modal { position: fixed; inset: 0; z-index: 99999; display: none; align-items: center; justify-content: center; padding: 1.25rem; background: rgba(17,17,17,.68); backdrop-filter: blur(6px); }
    .contact-step-modal.open { display: flex; }
    .contact-step-dialog.is-submitting .contact-step-panel,
    .contact-step-dialog.is-submitting .contact-step-counter,
    .contact-step-dialog.is-submitting #stepBackWrapper { opacity: 0; pointer-events: none; }
    .contact-step-loader { position: absolute; inset: 0; display: none; place-items: center; align-content: center; gap: 1.2rem; text-align: center; padding: 2rem; background: #F9F9F9; border-radius: inherit; z-index: 3; }
    .contact-step-dialog.is-submitting .contact-step-loader { display: grid; }
    .contact-loader-spinner { width: 56px; height: 56px; border-radius: 999px; border: 4px solid rgba(17,17,17,.15); border-top-color: #111111; animation: contactSpin .8s linear infinite; }
    .contact-step-loader p { font-size: 1.15rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
    @keyframes contactSpin { to { transform: rotate(360deg); } }
    .contact-trigger-card.is-finished { border-color: rgba(185,255,61,.55); background: rgba(185,255,61,.08); }
    #openStepForm:disabled { opacity: .72; pointer-events: none; filter: grayscale(.15); }
    .contact-step-dialog { position: relative; width: min(100%, 980px); min-height: min(78vh, 690px); background: #F9F9F9; color: #111111; border-radius: 2rem; padding: clamp(2rem, 5vw, 4.5rem); display: flex; flex-direction: column; justify-content: center; box-shadow: 0 30px 100px rgba(0,0,0,.28); }
    .contact-step-close { position: absolute; top: 1.6rem; right: 1.6rem; font-size: 2.5rem; line-height: 1; width: 48px; height: 48px; display: grid; place-items: center; }
    .contact-step-counter { font-family: Georgia, serif; font-style: italic; font-size: 1.05rem; text-align: center; margin-bottom: 1.25rem; }
    .contact-step-title { font-size: clamp(2rem, 4vw, 3rem); line-height: 1; letter-spacing: -.055em; text-align: center; margin-bottom: 2.3rem; }
    .contact-step-panel { display: none; }
    .contact-step-panel.active { display: block; }
    .contact-step-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; max-width: 720px; margin: 0 auto; }
    .contact-step-options.center-last .step-option:last-child { grid-column: 1 / -1; width: min(100%, 360px); justify-self: center; }
    .step-option { min-height: 74px; border-radius: 999px; background: #000; color: #F9F9F9; font-weight: 800; text-transform: uppercase; letter-spacing: .02em; display: grid; place-items: center; padding: 1rem 1.35rem; text-align: center; transition: transform .22s ease, background .22s ease; }
    .step-option:hover, .step-option.selected { transform: translateY(-2px); background: #B9FF3D; color: #111111; }
    .contact-step-fields { max-width: 680px; margin: 0 auto; display: grid; gap: 1rem; }
    .contact-step-input, .contact-step-textarea { width: 100%; border: 1px solid rgba(17,17,17,.22); border-radius: 1.2rem; background: white; padding: 1.05rem 1.2rem; font-size: 1rem; outline: none; }
    .contact-step-textarea { min-height: 150px; resize: vertical; }
    .contact-step-input:focus, .contact-step-textarea:focus { border-color: #111111; box-shadow: none; }
    .contact-step-input.has-error, .contact-step-textarea.has-error { border-color: #dc2626; background: #fff7f7; }
    .contact-step-error { min-height: 1.1rem; max-width: 680px; margin: .35rem auto 0; color: #dc2626; font-size: .88rem; font-weight: 800; text-align: left; }
    .contact-step-options + .contact-step-error { text-align: center; margin-top: 1rem; }
    .contact-step-counterline { margin-top: -.35rem; color: rgba(17,17,17,.58); font-size: .86rem; font-weight: 700; text-align: right; }
    .contact-step-counterline.is-low { color: #dc2626; }
    .contact-step-actions { display: flex; justify-content: center; gap: .9rem; margin-top: 2rem; flex-wrap: wrap; }
    .contact-step-back, .contact-step-next, .contact-step-submit { border-radius: 999px; padding: .95rem 1.6rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
    .contact-step-back { border: 1px solid rgba(17,17,17,.22); }
    .contact-step-next, .contact-step-submit { background: #111111; color: #F9F9F9; }
    @media (max-width: 767px) {
      .contact-step-dialog { min-height: auto; max-height: 90vh; overflow-y: auto; border-radius: 1.4rem; padding: 4.2rem 1.25rem 1.5rem; }
      .contact-step-options { grid-template-columns: 1fr; }
      .contact-step-options.center-last .step-option:last-child { grid-column: auto; width: 100%; }
      .step-option { min-height: 62px; }
    }
    @media (pointer: coarse) { body, a, button, input, select, textarea, label { cursor: auto !important; } .cursor-circle { display: none; } }
    @media (max-width: 767px) { section { scroll-margin-top: 96px; } .sticky-mobile-fix { position: static !important; min-height: auto !important; } .field-line { min-width: 100%; width: 100%; margin-top: .5rem; } }
  
    /* Responsive fullscreen menu */
    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 99999;
      background: #111111 !important;
      color: #F9F9F9 !important;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(-12px);
      transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
      overflow-y: auto;
      padding: 0;
    }

    .mobile-menu.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }

    .mobile-menu-close {
      position: fixed;
      top: 1.35rem;
      right: 1.35rem;
      z-index: 100001;
      color: #F9F9F9 !important;
      background: transparent;
      border: 1px solid rgba(249,249,249,.45);
      border-radius: 999px;
      padding: .75rem 1rem;
      font-size: .9rem;
      font-weight: 900;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    
.mobile-menu-nav {
      width:100%;
      height:100vh;
      display:flex;
      justify-content:center;
      align-items:center;

      display: flex;
      flex-direction: column;
      gap: 1.35rem;
    }

    .mobile-menu-nav .mobile-link {
      display: block;
      color: #F9F9F9 !important;
      font-size: clamp(2rem, 8vw, 3.8rem);
      line-height: .9;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: -.08em;
      text-decoration: none;
    }

    .mobile-menu-nav .mobile-link.active {
      color: #B9FF3D !important;
    }

    .mobile-menu-footer {
      margin-top: 3.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(249,249,249,.2);
      display: flex;
      flex-direction: column;
      gap: .8rem;
    }

    .mobile-menu-footer a {
      color: rgba(249,249,249,.72) !important;
      text-decoration: none;
      font-weight: 700;
    }

  
    /* Team section */
    .team-section {
      background: #F9F9F9;
      color: #111111;
      padding: clamp(5rem, 9vw, 8rem) 1.25rem;
    }

    .team-wrap {
      max-width: 1480px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: .78fr 1.22fr;
      gap: clamp(2.5rem, 6vw, 5rem);
      align-items: center;
    }

    .team-kicker {
      text-transform: uppercase;
      letter-spacing: .24em;
      font-size: .78rem;
      font-weight: 900;
      margin-bottom: 1.4rem;
    }

    .team-title {
      font-size: clamp(2.6rem, 5.8vw, 5.8rem);
      line-height: .9;
      letter-spacing: -.07em;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }

    .team-text {
      max-width: 420px;
      color: rgba(17,17,17,.62);
      font-size: clamp(1rem, 1.5vw, 1.25rem);
      line-height: 1.7;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 1.25rem;
    }

    .team-card {
      position: relative;
      min-height: 520px;
      border-radius: 1.25rem;
      overflow: hidden;
      background: #111111;
      isolation: isolate;
    }

    .team-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%);
      transform: scale(1.02);
      transition: transform .55s ease, filter .55s ease;
    }

    .team-card-info {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      background: #D9FFE2;
      color: #111111;
      padding: 1.35rem;
      transform: translateY(calc(100% - 92px));
      transition: transform .42s ease;
    }

    .team-card:hover .team-card-info {
      transform: translateY(0);
    }

    .team-card:hover img {
      transform: scale(1.08);
      filter: grayscale(0%);
    }

    .team-card-head {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      align-items: flex-start;
      margin-bottom: .9rem;
    }

    .team-card-name {
      font-size: 1rem;
      font-weight: 900;
      margin-bottom: .25rem;
    }

    .team-card-role {
      font-size: .82rem;
      color: rgba(17,17,17,.58);
      font-weight: 700;
    }

    .team-card-social {
      display: flex;
      gap: .85rem;
      font-weight: 900;
      font-size: 1.05rem;
      white-space: nowrap;
    }

    .team-card-copy {
      font-size: .92rem;
      line-height: 1.55;
      color: rgba(17,17,17,.68);
    }

    @media (max-width: 900px) {
      .team-wrap { grid-template-columns: 1fr; }
      .team-card { min-height: 430px; }
      .team-card-info { transform: translateY(0); }
    }

  
    /* Team section */
    .team-section {
      background: #F9F9F9;
      color: #111111;
      padding: clamp(5rem, 9vw, 8rem) 1.25rem;
      overflow: hidden;
    }

    .team-wrap {
      max-width: 1480px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: .72fr 1.28fr;
      gap: clamp(2.5rem, 6vw, 5rem);
      align-items: center;
    }

    .team-kicker {
      text-transform: uppercase;
      letter-spacing: .24em;
      font-size: .78rem;
      font-weight: 900;
      margin-bottom: 1.4rem;
    }

    .team-title {
      font-size: clamp(2.4rem, 5.2vw, 5.4rem);
      line-height: .92;
      letter-spacing: -.065em;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }

    .team-text {
      max-width: 420px;
      color: rgba(17,17,17,.62);
      font-size: clamp(1rem, 1.5vw, 1.2rem);
      line-height: 1.7;
    }

    .team-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 2rem;
      background: #111111;
      color: #F9F9F9;
      border-radius: 999px;
      padding: 1rem 1.65rem;
      font-weight: 900;
      font-size: .9rem;
      text-transform: uppercase;
      letter-spacing: .08em;
      text-decoration: none;
      transition: background-color .25s ease, color .25s ease;
    }

    .team-cta:hover {
      background: #B9FF3D;
      color: #111111;
    }

    .team-swiper {
      width: 100%;
      max-width: 760px;
      margin-left: auto;
      margin-right: 0;
      overflow: hidden;
    }

    .team-swiper .swiper-wrapper {
      align-items: stretch;
    }

    .team-card {
      width: 360px !important;
      max-width: 360px;
      height: 520px;
      border-radius: 1.2rem;
      overflow: hidden;
      background: #FFFFFF;
      display: flex;
      flex-direction: column;
      transition: transform .35s ease, box-shadow .35s ease;
    }

    .team-card:hover {
      transform: translateY(-8px);
    }

    .team-card-image {
      position: relative;
      flex: 1 1 auto;
      min-height: 0;
      overflow: hidden;
      background: #E9E9E9;
    }

    .team-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(8%);
      transform: scale(1.01);
      transition: transform .45s ease, filter .45s ease;
    }

    .team-card:hover .team-card-image img {
      transform: scale(1.06);
      filter: grayscale(0%);
    }

    .team-card-info {
      flex: 0 0 auto;
      background: #FFFFFF;
      color: #111111;
      padding: 1.45rem 1.45rem 1.55rem;
      min-height: 132px;
    }

    .team-card-head {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      align-items: flex-start;
    }

    .team-card-name {
      font-size: 1.2rem;
      font-weight: 900;
      letter-spacing: -.035em;
      margin-bottom: .45rem;
    }

    .team-card-role {
      font-size: 1rem;
      color: rgba(17,17,17,.55);
      font-weight: 700;
    }

    .team-card-social {
      display: flex;
      align-items: center;
      gap: .9rem;
      color: #111111;
      font-size: 1.45rem;
      font-weight: 900;
      white-space: nowrap;
    }

    .team-card-copy {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      margin-top: 0;
      font-size: .92rem;
      line-height: 1.55;
      color: rgba(17,17,17,.66);
      transition: max-height .35s ease, opacity .35s ease, margin-top .35s ease;
    }

    .team-card:hover .team-card-copy {
      max-height: 120px;
      opacity: 1;
      margin-top: 1rem;
    }

    .team-pagination {
      position: static;
      margin-top: 1.5rem;
      display: none;
    }

    @media (max-width: 900px) {
      .team-wrap {
        grid-template-columns: 1fr;
        gap: 2.2rem;
      }

      .team-swiper {
        max-width: 100%;
        margin-left: 0;
        padding-right: 0;
        overflow: hidden;
      }

      .team-card {
        width: 100% !important;
        max-width: 100%;
        height: 600px;
      }

      .team-card-copy {
        max-height: 120px;
        opacity: 1;
        margin-top: 1rem;
      }

      .team-pagination {
        display: block;
      }

      .team-swiper .swiper-slide {
        width: 100% !important;
      }
    }


    /* Will service modals + internal case studies */
    .service-card-action { margin-top: 2rem; display: inline-flex; align-items: center; justify-content: center; border: 1px solid currentColor; border-radius: 999px; padding: 1.15rem 1.9rem; font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; transition: background-color .25s ease, color .25s ease, border-color .25s ease; }
    article:hover .service-card-action { background: #111111; color: #F9F9F9; border-color: #111111; }
    .will-modal-container { position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: 100000; display: none; align-items: center; justify-content: center; padding: 1.25rem; }
    .will-modal-container.open { display: flex; }
    .will-modal-overlay { position: absolute; inset: 0; background: rgba(17,17,17,.85); backdrop-filter: blur(4px); }
    .will-modal-content { position: relative; width: min(90vw, 1200px); height: 80vh; margin: auto; background: #F9F9F9; color: #111111; display: flex; overflow: hidden; border: 1px solid #111111; border-radius: 1.35rem; z-index: 10; animation: willEmerge .45s cubic-bezier(.16, 1, .3, 1) forwards; box-shadow: 0 30px 90px rgba(0,0,0,.28); }
    .will-modal-visual { width: 50%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; background-attachment: fixed; filter: grayscale(100%) contrast(115%); }
    .will-modal-text-content { width: 50%; height: 100%; overflow-y: auto; padding: clamp(2rem, 5vw, 3.75rem); color: #111111; -webkit-overflow-scrolling: touch; }
    .will-modal-close { position: absolute; top: 1.25rem; right: 1.25rem; width: 48px; height: 48px; display: grid; place-items: center; background: rgba(249,249,249,.88); border: 1px solid rgba(17,17,17,.2); border-radius: 999px; font-size: 2rem; line-height: 1; color: #111111; z-index: 20; transition: transform .2s ease, background-color .2s ease; }
    .will-modal-close:hover { transform: scale(1.08); background: #B9FF3D; }
    .will-modal-kicker { display: inline-flex; margin-bottom: 1.25rem; border: 1px solid rgba(17,17,17,.24); border-radius: 999px; padding: .5rem .85rem; font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
    .will-modal-title { font-size: clamp(2rem, 4vw, 4rem); line-height: .92; letter-spacing: -.065em; font-weight: 900; text-transform: uppercase; margin-bottom: 1rem; }
    .will-modal-subtitle { font-size: clamp(1.1rem, 1.6vw, 1.45rem); line-height: 1.35; font-weight: 800; color: rgba(17,17,17,.72); margin-bottom: 1.6rem; }
    .will-modal-copy { font-size: 1.05rem; line-height: 1.75; color: rgba(17,17,17,.72); margin-bottom: 1.8rem; }
    .will-modal-list { display: grid; gap: .9rem; margin: 0; padding: 0; list-style: none; }
    .will-modal-list li { padding: 1rem 1.1rem; border: 1px solid rgba(17,17,17,.12); border-radius: 1rem; background: #fff; line-height: 1.5; }
    .will-modal-list strong { color: #111111; }
    .will-modal-external-cta { display: inline-flex; width: fit-content; margin-top: 1.6rem; border-radius: 999px; padding: .95rem 1.35rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
    .lang-block { display: none; }
    .lang-block.active { display: block; }
    @keyframes willEmerge { from { opacity: 0; transform: translateY(40px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
    .case-study-grid { display: grid; grid-template-columns: repeat(5, minmax(260px, 1fr)); gap: 1rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; }
    .case-study-card { min-height: 560px; background: #fff; border: 1px solid rgba(17,17,17,.14); border-radius: 1.6rem; overflow: hidden; display: flex; flex-direction: column; scroll-snap-align: start; transition: transform .35s ease, box-shadow .35s ease; }
    .case-study-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(17,17,17,.1); }
    .case-study-media { height: 210px; overflow: hidden; background: #111111; }
    .case-study-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(70%); transition: transform .5s ease, filter .5s ease; }
    .case-study-card:hover img { transform: scale(1.06); filter: grayscale(0); }
    .case-study-body { padding: 1.35rem; display: flex; flex-direction: column; gap: 1rem; flex: 1; }
    .case-study-index { font-size: .75rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color: rgba(17,17,17,.48); }
    .case-study-title { font-size: 1.35rem; line-height: 1.05; letter-spacing: -.045em; font-weight: 900; text-transform: uppercase; }
    .case-study-focus { font-size: .86rem; font-weight: 800; color: rgba(17,17,17,.6); }
    .case-study-block { border-top: 1px solid rgba(17,17,17,.12); padding-top: .85rem; }
    .case-study-block strong { display: block; margin-bottom: .28rem; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
    .case-study-block p { color: rgba(17,17,17,.66); font-size: .92rem; line-height: 1.55; }
    @media (max-width: 768px) { .will-modal-content { flex-direction: column; height: 92vh; width: 95vw; border-radius: .8rem; } .will-modal-visual { width: 100%; height: 35%; background-attachment: scroll; } .will-modal-text-content { width: 100%; height: 65%; padding: 1.55rem; } .will-modal-close { color: #F9F9F9; background: rgba(17,17,17,.62); top: .8rem; right: .8rem; width: 45px; height: 45px; font-size: 1.7rem; } .case-study-grid { grid-template-columns: 1fr; overflow-x: visible; } .case-study-card { min-height: auto; } }


    /* Case studies slider + modal cards */
    .case-study-shell { position: relative; overflow: hidden; }
    .case-study-topline { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; }
    .case-study-controls { display: flex; align-items: center; gap: .75rem; }
    .case-study-button { width: 48px; height: 48px; border-radius: 999px; border: 1px solid rgba(17,17,17,.22); display: grid; place-items: center; font-weight: 900; transition: background-color .25s ease, color .25s ease, transform .25s ease; }
    .case-study-button:hover { background: #111111; color: #F9F9F9; transform: translateY(-2px); }
    .case-study-swiper { overflow: visible; padding: .5rem .15rem 3.5rem; }
    .case-study-swiper .swiper-slide { height: auto; }
    .case-study-card { min-height: 500px; background: #fff; border: 1px solid rgba(17,17,17,.14); border-radius: 1.6rem; overflow: hidden; display: flex; flex-direction: column; transition: transform .35s ease, box-shadow .35s ease, background-color .35s ease; position: relative; }
    .case-study-card::before { content: ''; position: absolute; inset: 0; border-radius: inherit; border: 0 solid #B9FF3D; pointer-events: none; transition: border-width .25s ease; z-index: 2; }
    .case-study-card:hover { transform: translateY(-8px); box-shadow: 0 24px 70px rgba(17,17,17,.12); }
    .case-study-card:hover::before { border-width: 5px; }
    .case-study-card.is-featured { background: #B9FF3D; }
    .case-study-media { height: 190px; overflow: hidden; background: #111111; margin: 1rem 1rem 0; border-radius: 1rem; }
    .case-study-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(108%); transition: transform .5s ease, filter .5s ease; }
    .case-study-card:hover img { transform: scale(1.06); filter: grayscale(0); }
    .case-study-body { padding: 1.35rem; display: flex; flex-direction: column; gap: .95rem; flex: 1; }
    .case-study-index { font-size: .72rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; color: rgba(17,17,17,.52); }
    .case-study-title { font-size: clamp(1.25rem, 1.65vw, 1.65rem); line-height: 1.02; letter-spacing: -.055em; font-weight: 900; text-transform: uppercase; }
    .case-study-focus { font-size: .86rem; font-weight: 800; color: rgba(17,17,17,.58); line-height: 1.45; }
    .case-study-summary { color: rgba(17,17,17,.66); font-size: .94rem; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
    .case-study-action { margin-top: auto; display: inline-flex; align-items: center; gap: .6rem; font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; }
    .case-study-pagination { position: static; margin-top: .5rem; }
    .case-study-modal-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; margin: 1.6rem 0; }
    .case-study-modal-metric { background: #fff; border: 1px solid rgba(17,17,17,.12); border-radius: 1rem; padding: 1rem; }
    .case-study-modal-metric strong { display: block; font-size: 1.6rem; letter-spacing: -.06em; line-height: 1; }
    .case-study-modal-metric span { display: block; margin-top: .4rem; color: rgba(17,17,17,.58); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
    @media (max-width: 900px) { .case-study-topline { align-items: flex-start; } .case-study-controls { display:none; } .case-study-card { min-height: 470px; } .case-study-modal-metrics { grid-template-columns: 1fr; } }

  

    /* Case studies visual slider inspired by reference, adapted to current Will style */
    .case-studies-showcase {
      max-width: none;
      margin: 0;
      padding: clamp(5.5rem, 9vw, 8rem) 0 clamp(5.5rem, 9vw, 8rem) max(1.25rem, calc((100vw - 1480px) / 2 + 2.5rem));
      background: #F9F9F9;
      color: #111111;
      overflow: hidden;
    }

    .case-studies-layout {
      display: grid;
      grid-template-columns: minmax(320px, .8fr) minmax(0, 1.7fr);
      gap: clamp(2.5rem, 5vw, 5rem);
      align-items: center;
    }

    .case-studies-intro {
      max-width: 520px;
      padding-right: 1rem;
    }

    .case-studies-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .65rem;
      margin-bottom: 1.5rem;
      font-size: .8rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .18em;
      color: rgba(17,17,17,.74);
    }

    .case-studies-eyebrow span {
      width: 1.35rem;
      height: 1.35rem;
      border-radius: 999px;
      background: #B9FF3D;
      box-shadow: 12px 0 0 rgba(17,17,17,.8);
      display: inline-block;
    }

    .case-studies-title {
      font-size: clamp(3.2rem, 5.2vw, 6.5rem);
      line-height: .88;
      letter-spacing: -.075em;
      font-weight: 900;
      text-transform: uppercase;
    }

    .case-studies-copy {
      max-width: 420px;
      margin-top: 1.65rem;
      color: rgba(17,17,17,.62);
      font-size: clamp(1rem, 1.4vw, 1.22rem);
      line-height: 1.65;
    }

    .case-studies-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 2rem;
      border-radius: 999px;
      background: #111111;
      color: #F9F9F9;
      padding: 1.15rem 1.9rem;
      font-weight: 900;
      font-size: .86rem;
      text-transform: uppercase;
      letter-spacing: .08em;
      text-decoration: none;
      transition: background-color .25s ease, color .25s ease, transform .25s ease;
    }

    .case-studies-cta:hover {
      background: #B9FF3D;
      color: #111111;
      transform: translateY(-2px);
    }

    .case-studies-slider-area {
      min-width: 0;
      overflow: hidden;
      padding: .5rem max(1.25rem, calc((100vw - 1480px) / 2 + 2.5rem)) .5rem 0;
    }

    .case-studies-swiper {
      overflow: visible;
      padding: .5rem 0 1.2rem;
    }

    .case-studies-swiper .swiper-slide {
      height: auto;
    }

    .case-card-visual {
      position: relative;
      min-height: 540px;
      border: 1px solid rgba(17,17,17,.12);
      border-radius: 1.45rem;
      overflow: hidden;
      background: #111111;
      isolation: isolate;
      display: block;
      box-shadow: none;
      transition: transform .35s ease, box-shadow .35s ease;
    }

    .case-card-visual::before { display: none; }

    .case-card-visual:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 70px rgba(17,17,17,.14);
    }

    .case-card-visual img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%) contrast(108%);
      transform: scale(1.02);
      transition: transform .55s ease, filter .55s ease;
      z-index: 0;
    }

    .case-card-visual:hover img {
      transform: scale(1.08);
      filter: grayscale(0%) contrast(104%);
    }

    .case-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(17,17,17,.05) 0%, rgba(17,17,17,.32) 36%, rgba(17,17,17,.9) 100%);
      z-index: 1;
    }

    .case-card-content {
      position: relative;
      z-index: 2;
      min-height: 540px;
      padding: clamp(1.35rem, 2vw, 2rem);
      color: #F9F9F9;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .case-card-kicker {
      display: block;
      margin-bottom: .85rem;
      color: rgba(249,249,249,.82);
      font-size: .82rem;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .case-card-content h3 {
      font-size: clamp(1.75rem, 2.25vw, 2.55rem);
      line-height: .98;
      letter-spacing: -.065em;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .case-card-content p {
      color: rgba(249,249,249,.72);
      font-size: .98rem;
      line-height: 1.5;
      margin-bottom: 1.4rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .case-card-content span:not(.case-card-kicker) {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      min-height: 48px;
      border: 1px solid rgba(249,249,249,.72);
      border-radius: 999px;
      padding: .75rem 1.15rem;
      font-weight: 900;
      font-size: .84rem;
      text-transform: uppercase;
      letter-spacing: .07em;
      color: #F9F9F9;
      transition: background-color .25s ease, color .25s ease;
    }

    .case-card-visual:hover .case-card-content span:not(.case-card-kicker) {
      background: #B9FF3D;
      border-color: #B9FF3D;
      color: #111111;
    }

    .case-studies-bottom {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 1rem;
      padding-right: max(1.25rem, calc((100vw - 1480px) / 2 + 2.5rem));
      margin-top: .25rem;
    }

    .case-studies-bottom .case-study-pagination {
      position: static;
      width: auto;
      min-width: 90px;
      margin: 0;
    }

    .case-studies-bottom .swiper-pagination-bullet {
      background: #111111;
      opacity: .25;
    }

    .case-studies-bottom .swiper-pagination-bullet-active {
      background: #111111;
      opacity: 1;
    }

    .case-study-controls {
      display: flex;
      align-items: center;
      gap: .75rem;
    }

    .case-study-button {
      width: 52px;
      height: 52px;
      border-radius: 999px;
      border: 1px solid #111111;
      background: #111111;
      color: #F9F9F9;
      display: grid;
      place-items: center;
      font-size: 1.8rem;
      line-height: 1;
      font-weight: 600;
      transition: background-color .25s ease, color .25s ease, transform .25s ease;
    }

    .case-study-button:hover {
      background: #B9FF3D;
      color: #111111;
      transform: translateY(-2px);
    }

    .case-study-prev {
      transform: rotate(180deg);
    }

    .case-study-prev:hover {
      transform: rotate(180deg) translateY(2px);
    }

    @media (max-width: 1180px) {
      .case-studies-layout { grid-template-columns: minmax(280px, .75fr) minmax(0, 1.45fr); gap: 2.5rem; }
      .case-card-visual, .case-card-content { min-height: 500px; }
    }

    @media (max-width: 900px) {
      .case-studies-showcase { padding: 5rem 1.25rem; }
      .case-studies-layout { grid-template-columns: 1fr; gap: 2.5rem; }
      .case-studies-intro { max-width: 100%; padding-right: 0; }
      .case-studies-slider-area { padding: 0; overflow: hidden; }
      .case-studies-bottom { padding-right: 0; justify-content: space-between; }
      .case-study-controls { display: flex; }
      .case-card-visual, .case-card-content { min-height: 520px; }
    }

    @media (max-width: 560px) {
      .case-studies-title { font-size: clamp(2.75rem, 15vw, 4.4rem); }
      .case-card-visual, .case-card-content { min-height: 500px; }
      .case-card-content h3 { font-size: 2rem; }
      .case-studies-bottom { justify-content: center; flex-wrap: wrap; }
    }

  

    /* Team section official override */
    .team-section-official {
      padding: clamp(5rem, 9vw, 8rem) 0;
      background: #F9F9F9;
      color: #111111;
      overflow: hidden;
    }

    .team-official-wrap {
      width: 100%;
    }

    .team-official-head {
      max-width: 980px;
      margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
    }

    .team-official-head .team-title {
      max-width: 920px;
    }

    .team-official-head .team-text {
      max-width: 820px;
      font-size: clamp(1.05rem, 1.7vw, 1.45rem);
      line-height: 1.6;
    }

    .team-official-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(1.25rem, 3vw, 2rem);
      align-items: stretch;
    }

    .team-official-card {
      height: 100%;
      border: 1px solid rgba(17,17,17,.12);
      border-radius: 2rem;
      overflow: hidden;
      background: #FFFFFF;
      display: flex;
      flex-direction: column;
      box-shadow: 0 24px 70px rgba(17,17,17,.06);
      transition: transform .35s ease, box-shadow .35s ease;
    }

    .team-official-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 34px 90px rgba(17,17,17,.12);
    }

    .team-official-card-dark { background:#FFFFFF; color:#111111; border:1px solid rgba(17,17,17,.12); }

    .team-official-image {
      width: 100%;
      aspect-ratio: 4 / 5;
      min-height: 340px;
      max-height: 480px;
      overflow: hidden;
      background: #EDEBE4;
      flex: 0 0 auto;
    }

    .team-official-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      filter: grayscale(100%) contrast(108%);
      transform: scale(1.02);
      transition: transform .55s ease, filter .55s ease;
    }

    .team-official-card:hover .team-official-image img {
      transform: scale(1.07);
      filter: grayscale(100%) contrast(118%);
    }

    .team-official-content {
      padding: clamp(1.6rem, 3vw, 2.4rem);
      flex: 1 1 auto;
      display: flex;
      flex-direction: column;
    }

    .team-official-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 46px;
      height: 46px;
      border-radius: 999px;
      background: #B9FF3D;
      color: #111111;
      font-size: .78rem;
      font-weight: 900;
      margin-bottom: 1.25rem;
    }

    .team-official-card .team-card-name {
      font-size: clamp(2rem, 3vw, 3.2rem);
      line-height: .92;
      letter-spacing: -.06em;
      text-transform: uppercase;
      margin-bottom: .8rem;
    }

    .team-official-card .team-card-role {
      color: rgba(17,17,17,.55);
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: 1.5rem;
    }

    .team-official-card-dark .team-card-role { color: rgba(17,17,17,.55); }

    .team-official-card .team-card-copy {
      max-height: none;
      opacity: 1;
      margin-top: 0;
      color: rgba(17,17,17,.68);
      font-size: clamp(1rem, 1.2vw, 1.08rem);
      line-height: 1.72;
    }

    .team-official-card-dark .team-card-copy { color: rgba(17,17,17,.68); }

    .team-official-footer {
      display: flex;
      justify-content: center;
      margin-top: clamp(2rem, 4vw, 3.5rem);
    }

    .team-official-footer .team-cta {
      margin-top: 0;
      padding: 1.15rem 1.9rem;
    }

    @media (max-width: 900px) {
      .team-section-official { padding-inline: 0; }
      .team-official-grid { grid-template-columns: 1fr; }
      .team-official-card { border-radius: 1.5rem; }
      .team-official-image { aspect-ratio: 1 / 1.15; min-height: 280px; max-height: 380px; }
      .team-official-footer { justify-content: stretch; }
      .team-official-footer .team-cta { width: 100%; text-align: center; }
    }

    @media (max-width: 520px) {
      .team-official-image { min-height: 260px; max-height: 340px; }
      .team-official-content { padding: 1.35rem; }
    }


    /* Team section avatar circle refinement */
    .team-official-grid {
      gap: clamp(1.5rem, 3vw, 2.5rem);
    }

    .team-official-card {
      padding: clamp(2rem, 3.2vw, 3rem);
      overflow: visible;
      text-align: center;
      align-items: center;
      border-radius: 2rem;
    }

    .team-official-card-dark {
      box-shadow: 0 24px 70px rgba(17,17,17,.12);
    }

    .team-official-image {
      width: clamp(140px, 14vw, 190px);
      height: clamp(140px, 14vw, 190px);
      min-height: 0;
      max-height: none;
      aspect-ratio: 1 / 1;
      margin: 0 auto clamp(1.5rem, 2.5vw, 2rem);
      padding: 6px;
      border-radius: 999px;
      overflow: hidden;
      background: linear-gradient(135deg, #B9FF3D, #F9F9F9 52%, #B9FF3D);
      box-shadow: 0 18px 45px rgba(185,255,61,.22);
      flex: 0 0 auto;
    }

    .team-official-card-dark .team-official-image {
      background: linear-gradient(135deg, #B9FF3D, rgba(249,249,249,.9) 52%, #B9FF3D);
      box-shadow: 0 18px 50px rgba(185,255,61,.18);
    }

    .team-official-image img {
      width: 100%;
      height: 100%;
      border-radius: 999px;
      object-fit: cover;
      object-position: center top;
      display: block;
      filter: grayscale(100%) contrast(108%);
      transform: scale(1);
      background: #EDEBE4;
    }

    .team-official-card:hover .team-official-image img {
      transform: scale(1.06);
      filter: grayscale(100%) contrast(118%);
    }

    .team-official-content {
      width: 100%;
      padding: 0;
      align-items: center;
      text-align: center;
    }

    .team-official-number {
      margin: 0 auto 1.15rem;
    }

    .team-official-card .team-card-name {
      max-width: 620px;
      margin-left: auto;
      margin-right: auto;
    }

    .team-official-card .team-card-role {
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
    }

    .team-official-card .team-card-copy {
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
    }

    @media (max-width: 900px) {
      .team-official-card {
        padding: 2rem;
      }

      .team-official-image {
        width: 150px;
        height: 150px;
        min-height: 0;
        max-height: none;
      }
    }

    @media (max-width: 520px) {
      .team-official-card {
        padding: 1.5rem;
      }

      .team-official-image {
        width: 132px;
        height: 132px;
      }
    }

  
.btn-hero {
  background: #B9FF3D !important;
  color: #111111 !important;
}

.btn-hero:hover {
  background: #111111 !important;
  color: white !important;
}


.section-title,
.team-title,
.case-studies-title {
  font-size: clamp(3.4rem, 13.5vw, 9.5rem);
}

@media (min-width: 768px) {
  .section-title,
  .team-title,
  .case-studies-title {
    font-size: clamp(2.6rem, 7vw, 6.75rem);
  }
}