@layer reset, tokens, base, layout, components, utilities, states, overrides;

@layer reset {
  .lp-page {
    margin: 0;
  }

  :where(.lp-2026-07, .lp-2026-07 *) {
    box-sizing: border-box;
  }

  :where(.lp-2026-07 h1, .lp-2026-07 h2, .lp-2026-07 h3, .lp-2026-07 h4, .lp-2026-07 p, .lp-2026-07 ul, .lp-2026-07 ol, .lp-2026-07 dl, .lp-2026-07 dd) {
    margin: 0;
  }

  :where(.lp-2026-07 ul, .lp-2026-07 ol) {
    padding: 0;
    list-style: none;
  }

  :where(.lp-2026-07 img, .lp-2026-07 svg, .lp-2026-07 iframe) {
    display: block;
    max-width: 100%;
  }

  :where(.lp-2026-07 a) {
    color: inherit;
    text-decoration: none;
  }

  :where(.lp-2026-07 button) {
    padding: 0;
    color: inherit;
    font: inherit;
    background: none;
    border: 0;
  }
}

@layer tokens {
  .lp-2026-07 {
    --lp-color-bg: #f5fbff;
    --lp-color-surface: #fff;
    --lp-color-surface-soft: #f9fafb;
    --lp-color-primary: #83a2b2;
    --lp-color-primary-alt: #82a1b1;
    --lp-color-primary-dark: #6b8d9e;
    --lp-color-primary-pale: #dde9f0;
    --lp-color-text: #4a5565;
    --lp-color-number: #3e5f94;
    --lp-color-accent: #e88c6b;
    --lp-color-muted: #e4e4e4;
    --lp-font-ja: "Zen Kaku Gothic New", sans-serif;
    --lp-font-en: "Inter", sans-serif;
    --lp-weight-regular: 400;
    --lp-weight-medium: 500;
    --lp-weight-bold: 700;
    --lp-weight-black: 900;
    --lp-content: 1066px;
    --lp-mobile-gutter: 25px;
    --lp-section-space: 80px;
    --lp-radius-card: 16px;
    --lp-radius-pill: 999px;
    --lp-shadow-card: 0 4px 16px rgb(0 0 0 / 8%);
    --lp-transition: 240ms;
    --lp-z-header: 20;
    --lp-z-menu: 30;
  }
}

@layer base {
  .lp-2026-07 {
    min-width: 0;
    overflow: clip;
    color: var(--lp-color-text);
    font-family: var(--lp-font-ja);
    font-size: 16px;
    line-height: 2;
    background: var(--lp-color-bg);
  }

  .lp-2026-07 :where(a, button) {
    -webkit-tap-highlight-color: transparent;
  }

  .lp-2026-07 :where(a, button):focus-visible {
    outline: 3px solid #3e5f94;
    outline-offset: 4px;
  }

  .lp-2026-07 h1,
  .lp-2026-07 h2,
  .lp-2026-07 h3,
  .lp-2026-07 h4 {
    font-weight: var(--lp-weight-medium);
  }

  .lp-2026-07 small {
    font-size: inherit;
  }
}

@layer layout {
  .lp-container {
    width: min(calc(100% - (var(--lp-mobile-gutter) * 2)), var(--lp-content));
    margin-inline: auto;
  }

  .lp-container--narrow {
    max-width: 800px;
  }

  .lp-section-heading {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }

  .lp-section-heading > img {
    width: 114px;
    height: 22px;
  }

  .lp-section-heading h2 {
    font-size: 20px;
    line-height: 1.6;
  }

  .lp-section-heading p {
    font-size: 16px;
    line-height: 2;
  }

  .lp-section-heading--light {
    color: #fff;
  }
}

@layer components {
  .lp-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: var(--lp-z-header);
    height: 104px;
  }

  .lp-header__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 24px 25px;
  }

  .lp-header__logo {
    position: relative;
    z-index: 1;
    width: 163px;
  }

  .lp-header__logo img {
    filter: brightness(0) invert(1);
  }

  .lp-header__desktop-nav {
    display: none;
  }

  .lp-menu-button {
    position: fixed;
    top: 1rem;
    right: .25rem;
    z-index: calc(var(--lp-z-menu) + 1);
    width: 42px;
    height: 42px;
    cursor: pointer;
  }

  .lp-menu-button__line,
  .lp-menu-button__line::before,
  .lp-menu-button__line::after {
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--lp-color-primary-dark);
    transition: background-color var(--lp-transition), transform var(--lp-transition), opacity var(--lp-transition);
    content: "";
    left: 50%;
    top: 50%;
    --y: 0px;
    transform: translate(-50%, calc(-50% + var(--y)));
  }

  .lp-menu-button__line::before {
    --y: -7px;
  }

  .lp-menu-button__line::after {
    --y: 7px;
  }

  .lp-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: var(--lp-z-menu);
    visibility: hidden;
    overflow-y: auto;
    background: var(--lp-color-primary);
    opacity: 0;
    transition: visibility var(--lp-transition), opacity var(--lp-transition);
  }

  .lp-mobile-menu__surface {
    min-height: 100%;
    padding: 56px 56px 72px;
    background: var(--lp-color-surface-soft);
    border-top-right-radius: min(44vw, 165px);
    transform: translateY(-12px);
    transition: transform var(--lp-transition);
  }

  .lp-mobile-menu__logo {
    display: block;
    width: 155px;
    max-width: calc(100vw - 112px);
    transform: translateY(-14px);
  }

  .lp-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: flex-start;
    margin-top: 36px;
  }

  .lp-mobile-menu__nav ul {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .lp-mobile-menu__nav li a {
    display: block;
    font-size: 18px;
    line-height: 1.5;
    padding-block: 1rem;
  }

  .lp-mobile-menu__nav .lp-button {
    width: 199px;
    min-height: 52px;
    padding-inline: 16px;
  }

  .lp-button {
    display: inline-flex;
    min-height: 56px;
    padding: 8px 32px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: var(--lp-weight-bold);
    line-height: 1.5;
    text-align: center;
    border-radius: var(--lp-radius-pill);
    transition: color var(--lp-transition), background-color var(--lp-transition), transform var(--lp-transition);
  }

  .lp-button--light {
    color: var(--lp-color-text);
    background: #fff;
  }

  .lp-button--primary,
  .lp-button--download {
    color: #fff;
    background: var(--lp-color-accent);
  }

  .lp-button--download {
    gap: 16px;
    border-radius: 8px;
  }

  .lp-button--download img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
  }

  .lp-hero {
    position: relative;
    color: #fff;
    background: var(--lp-color-primary);
    border-radius: 0 175px 0 0;
  }

  .lp-hero__inner {
    display: grid;
    width: min(calc(100% - 50px), 325px);
    margin-inline: auto;
    padding-block: 104px 145px;
    gap: 40px;
  }

  .lp-hero__image {
    height: 336px;
    overflow: hidden;
    order: -1;
    border-top-right-radius: 80px;
  }

  .lp-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .lp-hero__content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .lp-hero__content::before {
    position: absolute;
    inset: 52px -25px auto;
    height: 180px;
    pointer-events: none;
    opacity: 0.75;
    content: "";
  }

  .lp-hero h1,
  .lp-hero p {
    position: relative;
  }

  .lp-hero h1 {
    font-size: clamp(36px, 9.55vw, 40px);
    font-weight: var(--lp-weight-black);
    line-height: 1.6;
  }

  .lp-hero h1 span {
    display: block;
    font-size: 24px;
    line-height: 2.2;
  }

  .lp-hero p {
    font-size: 16px;
    line-height: 2;
  }

  .lp-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .lp-hero__actions .lp-button {
    width: 100%;
  }

  .lp-intro {
    position: relative;
    overflow: hidden;
    padding-block: 108px;
    background: var(--lp-color-bg);
  }

  .lp-intro .lp-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .lp-intro__copy {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .lp-intro h2 {
    font-size: 20px;
    line-height: 1.6;
  }

  .lp-intro p {
    font-size: 16px;
    line-height: 2;
    text-align: left;
  }

  .lp-intro__video {
    width: 100%;
    overflow: hidden;
  }

  .lp-intro__video iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: 0;
  }

  .lp-challenges {
    position: relative;
    z-index: 9;
    padding-block: 80px;
    color: #fff;
    background: var(--lp-color-primary);
    border-top-right-radius: 160px;
    clip-path: polygon(0 0, 100% 0, 100% 91%, 50% 100%, 0 91%);
  }

  .lp-challenges__list {
    display: grid;
    gap: 24px;
    width: min(100%, 320px);
    margin: 40px auto 0;
  }

  .lp-challenges__list li {
    padding: 8px 12px;
    font-size: 16px;
    font-weight: var(--lp-weight-medium);
    line-height: 2;
    text-align: center;
    background: var(--lp-color-primary-dark);
    border-radius: 8px;
  }

  .lp-challenges__lead {
    display: none;
  }

  .lp-services {
    position: relative;
    margin-top: -1px;
    padding-block: 140px 114px;
    background: var(--lp-color-primary-pale);
    border-bottom-left-radius: 80px;
  }

  .lp-services::before {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 240px;
    pointer-events: none;
    background: var(--lp-color-primary-pale);
    content: "";
  }

  .lp-services__list {
    display: flex;
    flex-direction: column;
    gap: 104px;
  }

  .lp-service-card {
    display: flex;
    flex-direction: column;
    gap: 80px;
  }

  .lp-service-card__body {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .lp-service-card__title {
    display: flex;
    gap: 32px;
    align-items: center;
  }

  .lp-service-card__number {
    display: flex;
    width: 57px;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 0.5rem;
  }

  .lp-service-card__number img {
    width: 57px;
    height: auto;
  }

  .lp-service-card h3 {
    font-size: 20px;
    line-height: 1.5;
  }

  .lp-service-card p {
    font-size: 16px;
    line-height: 2;
  }

  .lp-service-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 325 / 208;
    object-fit: cover;
    border-radius: 0 40px 0 40px;
  }

  .lp-clients,
  .lp-roles,
  .lp-reasons,
  .lp-cases,
  .lp-contact {
    padding-block: var(--lp-section-space);
  }

  #lp-clients-title {
    justify-content: center;
  }

  .lp-clients-number {
    font-family: Zen Kaku Gothic New;
    color: var(--lp-color-accent);
    font-size: 1.5em;
    font-weight: var(--lp-weight-black);
    margin-right: 5px;
  }

  .lp-break-tiny {
    display: none;
  }

  .lp-client-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    margin-top: 40px;
  }

  .lp-client-card {
    width: min(100%, 320px);
  }

  .lp-client-card h3 {
    width: max-content;
    width: 100%;
    margin-inline: auto;
    padding: 12px 24px;
    color: #fff;
    font-family: var(--lp-font-en);
    font-size: 14px;
    font-weight: var(--lp-weight-regular);
    line-height: 1.2;
    text-align: center;
    background: var(--lp-color-primary);
    border-radius: 12px 12px 0 0;
  }

  .lp-client-card ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px 1px;
    align-content: center;
    align-items: center;
    justify-content: center;
    min-height: 269px;
    background: #fff;
    border-radius: 0 0 var(--lp-radius-card) var(--lp-radius-card);
    box-shadow: var(--lp-shadow-card);
  }

  .lp-client-card li {
    display: grid;
    place-items: center;
  }

  .lp-client-card li img {
    width: auto;
    max-width: 100%;
    height: 54px;
    object-fit: contain;
  }

  /* クライアントロゴの各画像サイズ調整 */

  /* ITエンジニア（7個） */
  .lp-client-card--it li:nth-child(1) img { width: 100px; }
  .lp-client-card--it li:nth-child(2) img { width: 100px; }
  .lp-client-card--it li:nth-child(3) img { width: 100px; }
  .lp-client-card--it li:nth-child(4) img { width: 100px; }
  .lp-client-card--it li:nth-child(5) img { width: 100px; }
  .lp-client-card--it li:nth-child(6) img { width: 100px; }
  .lp-client-card--it li:nth-child(7) img { width: 100px; }

  /* 製造系（6個） */
  .lp-client-card--manufacturing li:nth-child(1) img { width: 150px; }
  .lp-client-card--manufacturing li:nth-child(2) img { width: 150px; }
  .lp-client-card--manufacturing li:nth-child(3) img { width: 112px; }
  .lp-client-card--manufacturing li:nth-child(4) img { width: 136px; }
  .lp-client-card--manufacturing li:nth-child(5) img { width: 145px; }
  .lp-client-card--manufacturing li:nth-child(6) img { width: 105px; }

  /* コールセンター・事務（6個） */
  .lp-client-card--office li:nth-child(1) img { width: 100px; }
  .lp-client-card--office li:nth-child(2) img { width: 100px; }
  .lp-client-card--office li:nth-child(3) img { width: 100px; }
  .lp-client-card--office li:nth-child(4) img { width: 100px; }
  .lp-client-card--office li:nth-child(5) img { width: 100px; }
  .lp-client-card--office li:nth-child(6) img { width: 100px; }

  /* 販売（6個） */
  .lp-client-card--sales li:nth-child(1) img { width: 100px; }
  .lp-client-card--sales li:nth-child(2) img { width: 100px; }
  .lp-client-card--sales li:nth-child(3) img { width: 100px; }
  .lp-client-card--sales li:nth-child(4) img { width: 100px; }
  .lp-client-card--sales li:nth-child(5) img { width: 100px; }
  .lp-client-card--sales li:nth-child(6) img { width: 140px; }

  /* 介護（5個） */
  .lp-client-card--care li:nth-child(1) img { width: 100px; }
  .lp-client-card--care li:nth-child(2) img { width: 127px; }
  .lp-client-card--care li:nth-child(3) img { width: 131px; }
  .lp-client-card--care li:nth-child(4) img { width: 128px; }
  .lp-client-card--care li:nth-child(5) img { width: 100px; }

  .lp-role-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 40px;
  }

  .lp-role-grid li {
    display: flex;
    min-height: 216px;
    padding: 24px 12px;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    background: #fff;
    border-radius: var(--lp-radius-card);
    box-shadow: var(--lp-shadow-card);
  }

  .lp-role-grid img {
    width: 80px;
    height: 80px;
    object-fit: contain;
  }

  .lp-reason-grid {
    display: grid;
    gap: 80px;
    margin-top: 40px;
  }

  .lp-reason-card {
    position: relative;
    display: flex;
    min-height: 633px;
    padding: 80px 32px;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    background: #fff;
    border-radius: var(--lp-radius-card);
    box-shadow: var(--lp-shadow-card);
  }

  .lp-reason-card__number {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 58px;
    padding: 8px 16px;
    color: #fff;
    font-family: var(--lp-font-en);
    font-size: 16px;
    line-height: 1;
    text-align: center;
    background: var(--lp-color-primary-alt);
    border-radius: 12px 0 12px 0
  }

  .lp-reason-card__heading {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .lp-reason-card > img {
    width: 160px;
    height: 160px;
    object-fit: contain;
  }

  .lp-reason-card h3 {
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
  }

  .lp-reason-card h4 {
    font-size: 16px;
    font-weight: var(--lp-weight-medium);
    line-height: 2;
    text-align: center;
  }

  .lp-reason-card p {
    font-size: 16px;
    line-height: 2;
  }

  .lp-cta {
    position: relative;
    padding-block: 68px;
    color: #fff;
    background: var(--lp-color-primary);
  }

  .lp-cta__waves {
    position: absolute;
    width: 160px;
    height: auto;
    pointer-events: none;
    opacity: 0.75;
    display: none;
  }

  .lp-cta__group {
    position: relative;
    max-width: 1400px;
    margin-inline: auto;
  }

  .lp-cta__inner {
    position: relative;
  }

  .lp-cta__content {
    position: relative;
    z-index: 1;
  }

  .lp-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
  }

  .lp-cta__person {
    position: absolute;
    right: 2%;
    bottom: -68px;
    width: min(29vw, 500px);
    height: auto;
    display: block;
  }

  .lp-achievements__heading {
    padding-block: 60px;
  }

  .lp-achievements__body {
    padding-block: 80px;
    color: var(--lp-color-text);
    background: var(--lp-color-primary);
    border-bottom-right-radius: 160px;
  }

  .lp-achievement-grid {
    display: grid;
    gap: 24px;
  }

  .lp-achievement-card {
    display: grid;
    min-height: 261px;
    padding: 32px;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    background: #fff;
    border-radius: var(--lp-radius-card);
    box-shadow: var(--lp-shadow-card);
  }

  .lp-achievement-card > img {
    width: 90px;
    height: 90px;
    object-fit: contain;
  }

  .lp-achievement-card > div {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    min-width: 0;
    text-align: center;
  }

  .lp-achievement-card dt {
    font-size: 16px;
    font-weight: var(--lp-weight-medium);
    line-height: 1.8;
  }

  .lp-achievement-card dt small {
    display: block;
    font-size: 12px;
    line-height: 1.5;
  }

  .lp-achievement-card .lp-achievement-card__wave {
    width: 57px;
    height: auto;
  }

  .lp-achievement-card dd {
    color: var(--lp-color-number);
    font-size: 14px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .lp-achievement-card dd strong {
    font-size: clamp(30px, 9vw, 48px);
    font-weight: var(--lp-weight-black);
  }

  .lp-achievement-card__ratio {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-achievement-card__ratio span {
    white-space: nowrap;
  }

  .lp-achievements__note {
    margin-top: 12px;
    color: #fff;
    font-size: 11px;
    text-align: right;
  }

  .lp-case-grid {
    display: grid;
    gap: 64px;
    width: min(100%, 325px);
    margin: 80px auto 0;
  }

  .lp-case-card {
    overflow: hidden;
    background: #fff;
    border-radius: 40px;
    box-shadow: var(--lp-shadow-card);
  }

  .lp-case-card > header {
    display: flex;
    padding: 16px 32px 24px;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    background: var(--lp-color-primary);
  }

  .lp-case-card__logo {
    display: grid;
    width: 260px;
    height: 136px;
    padding: 24px;
    background: #fff;
    border-radius: 0 40px 40px 40px;
    place-items: center;
    overflow: clip;
  }

  .lp-case-workman {
    width: 23% !important;
  }

  .lp-case-card__logo img {
    width: 174px;
    height: 72px;
    object-fit: contain;
    --scale: 1;
    transform: scale(var(--scale));
  }

  .lp-case-card > header p {
    width: fit-content;
    margin-inline: auto;
    font-size: 16px;
    font-weight: var(--lp-weight-medium);
    line-height: 1.7;
    color: #fff;
  }

  .lp-case-card__body {
    display: flex;
    padding: 40px 32px 48px;
    flex-direction: column;
    gap: 24px;
  }

  .lp-case-card__body h3 {
    font-size: 18px;
    line-height: 1.7;
  }

  .lp-case-card__body h4 {
    align-self: flex-start;
    padding: 6px 14px;
    font-size: 16px;
    line-height: 1.5;
    background: var(--lp-color-muted);
    border-radius: 0 14px 0 14px;
    min-width: 8.5em;
  }

  .lp-case-card__body h4.lp-case-card__result {
    color: #fff;
    background: var(--lp-color-accent);
  }

  .lp-case-card__body p {
    font-size: 14px;
    line-height: 2;
  }

  .lp-contact__form-embed {
    width: 100%;
    max-width: 750px;
    min-height: 128px;
    margin: 80px auto 0;
    overflow: hidden;
  }

  .lp-contact__form-embed iframe {
    width: 100%;
    max-width: 100%;
    border: 0;
  }

  .lp-footer {
    padding: 64px 17px 40px;
    background: var(--lp-color-surface-soft);
  }

  .lp-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }

  .lp-footer__logo {
    width: 120px;
  }

  .lp-footer nav {
    width: 100%;
  }

  .lp-footer nav h2 {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
  }

  .lp-footer nav ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .lp-footer nav a {
    font-family: var(--lp-font-en);
    font-size: 12px;
    line-height: 2;
  }

  .lp-footer small {
    align-self: center;
    font-family: var(--lp-font-en);
    font-size: 12px;
  }
}

@layer utilities {
  .lp-only-desktop {
    display: none;
  }
}

@layer states {
  .lp-page.is-menu-open {
    overflow: hidden;
  }

  .lp-menu-button[aria-expanded="true"] .lp-menu-button__line {
    background: transparent;
  }

  .lp-menu-button[aria-expanded="true"] .lp-menu-button__line::before,
  .lp-menu-button[aria-expanded="true"] .lp-menu-button__line::after {
    background: #fff;
  }

  .lp-menu-button[aria-expanded="true"] .lp-menu-button__line::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .lp-menu-button[aria-expanded="true"] .lp-menu-button__line::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .lp-mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
  }

  .lp-mobile-menu.is-open .lp-mobile-menu__surface {
    transform: translateY(0);
  }

  @media (hover: hover) {
    .lp-2026-07 a:not(.lp-header__logo, .lp-mobile-menu__logo, .lp-footer__logo):hover {
      opacity: 0.78;
    }

    .lp-button:hover {
      transform: translateY(-2px);
      opacity: 1;
    }
  }
}

@layer overrides {
  @media (min-width: 400px) {
    .lp-case-grid {
      width: 80%;
    }
  }

  @media (min-width: 600px) {
    .lp-2026-07 {
      --lp-mobile-gutter: 40px;
    }

    .lp-hero__inner {
      width: min(calc(100% - 80px), 700px);
    }

    .lp-hero__image { height: auto; }

    .lp-role-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lp-achievement-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lp-achievement-card {
      padding-inline: 24px;
      grid-template-columns: 100px minmax(0, 1fr);
    }

    .lp-achievement-card > img {
      width: 100px;
      height: 100px;
    }

    .lp-client-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
    }

    .lp-client-card {
      max-width: none;
      width: 100%;
    }
  }

  @media (min-width: 950px) {
    .lp-2026-07 {
      --lp-section-space: 160px;
      font-size: 18px;
    }

    .lp-header {
      position: relative;
      height: 106px;
      background: var(--lp-color-surface-soft);
    }

    .lp-header__inner {
      width: min(100%, 1440px);
      width: 100%;
      margin-inline: auto;
      padding: 24px clamp(24px, 3.89vw, 56px);
      align-items: center;
    }

    .lp-header__logo {
      width: clamp(200px, 18.4vw, 265px);
    }

    .lp-header__logo img {
      filter: none;
    }

    .lp-header__desktop-nav {
      display: flex;
      gap: clamp(12px, 1.67vw, 24px);
      align-items: center;
    }

    .lp-header__desktop-nav ul {
      display: flex;
      gap: clamp(12px, 1.67vw, 24px);
      gap: 0;
      align-items: center;
    }

    .lp-header__desktop-nav ul a {
      font-family: var(--lp-font-en);
      font-size: clamp(14px, 1.11vw, 16px);
      line-height: 1.5;
      white-space: nowrap;
      padding: 1rem;
    }

    .lp-button--header {
      min-height: 52px;
      padding-inline: clamp(18px, 2.22vw, 32px);
      font-size: clamp(14px, 1.25vw, 18px);
    }

    .lp-menu-button,
    .lp-mobile-menu {
      display: none;
    }

    .lp-hero {
      border-bottom-left-radius: 160px;
    }

    .lp-hero::before {
      position: absolute;
      inset: 0 55% 0 0;
      pointer-events: none;
      opacity: .75;
      content: "";
    }

    .lp-hero__inner {
      position: relative;
      display: grid;
      width: min(100%, 1440px);
      width: 100%;
      height: 792px;
      margin-inline: 0;
      padding: 0;
      grid-template-columns: 45% 55%;
      grid-template-rows: 1fr auto;
      gap: 0;
    }

    .lp-hero__image {
      z-index: 1;
      width: 100%;
      height: 792px;
      order: 0;
      grid-column: 2;
      grid-row: 1 / 3;
      border-radius: 0 160px 0 0;
    }

    .lp-hero__content {
      z-index: 2;
      align-self: end;
      padding: 80px 24px 24px 56px;
      grid-column: 1;
      grid-row: 1;
      white-space: nowrap;
    }

    .lp-hero__content::before {
      display: none;
    }

    .lp-hero h1 {
      font-size: clamp(24px, calc(3.27vw - 7px), 40px);
      line-height: 1.15;
    }

    .lp-hero h1 span {
      font-size: clamp(24px, calc(3.27vw - 7px), 40px);
    }

    .lp-hero p {
      font-size: clamp(13px, 1.25vw, 18px);
      line-height: 1.78;
    }

    .lp-hero__actions {
      padding: 0 24px 88px 56px;
      flex-direction: row;
      flex-wrap: wrap;
      gap: clamp(12px, 1.67vw, 24px);
      grid-column: 1;
      grid-row: 2;
    }

    .lp-hero__actions .lp-button {
      width: auto;
      min-height: 72px;
      padding-inline: clamp(18px, 2.22vw, 32px);
      font-size: clamp(14px, 1.25vw, 18px);
    }

    .lp-intro {
      padding-block: 140px;
    }

    .lp-intro .lp-container {
      gap: 113px;
    }

    .lp-intro__copy {
      gap: 40px;
      max-width: 700px;
    }

    .lp-intro h2 {
      font-size: 40px;
      line-height: 1.4;
    }

    .lp-intro p {
      font-size: 18px;
      line-height: 2.2;
      text-align: left;
    }

    .lp-intro__video {
      max-width: 800px;
      width: 100%;
    }

    .lp-section-heading h2 {
      font-size: 40px;
      line-height: 1.4;
    }

    .lp-section-heading p {
      font-size: 18px;
      line-height: 2.2;
    }

    .lp-challenges {
      padding-block: 132px 208px;
      border-top-right-radius: 160px;
      clip-path: polygon(0 0, 100% 0, 100% 84%, 50% 100%, 0 84%);
    }

    .lp-challenges__list {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 48px;
      width: 100%;
      max-width: 1066px;
      margin-top: 86px;
    }

    .lp-challenges__list li {
      font-size: 18px;
    }

    .lp-challenges__lead {
      display: block;
      margin-top: 80px;
      font-size: 40px;
      font-weight: var(--lp-weight-bold);
      line-height: 1.4;
      text-align: center;
    }

    .lp-services {
      padding-block: 240px;
      border-bottom-left-radius: 160px;
    }

    .lp-services__list {
      gap: 195px;
    }

    .lp-service-card {
      display: grid;
      grid-template-columns: minmax(0, 484px) minmax(0, 552px);
      gap: 30px;
      align-items: center;
    }

    .lp-service-card--reverse {
      grid-template-columns: minmax(0, 552px) minmax(0, 436px);
      gap: 78px;
    }

    .lp-service-card--reverse .lp-service-card__body {
      grid-column: 2;
      grid-row: 1;
    }

    .lp-service-card--reverse .lp-service-card__image {
      grid-column: 1;
      grid-row: 1;
    }

    .lp-service-card__title {
      flex-direction: column;
      gap: 32px;
      align-items: flex-start;
    }

    .lp-service-card__number {
      width: 114px;
    }

    .lp-service-card__number img {
      width: 114px;
    }

    .lp-service-card h3 {
      font-size: 40px;
      line-height: 1.4;
    }

    .lp-service-card p {
      font-size: 18px;
      line-height: 1.78;
    }

    .lp-service-card__image {
      width: 552px;
      height: 352px;
      border-radius: 0 80px 0 80px;
    }

    .lp-client-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
      justify-content: center;
      margin-top: 40px;
    }

    .lp-clients,
    .lp-roles,
    .lp-reasons {
      padding-block: 112px;
    }

    .lp-client-card {
      max-width: 320px;
      width: 100%;
    }

    .lp-role-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 32px;
      margin-top: 80px;
    }

    .lp-role-grid li {
      min-height: 344px;
      padding: 48px 32px;
      gap: 32px;
      font-size: 20px;
      line-height: 2;
      font-weight: 500;
    }

    .lp-role-grid img {
      width: 160px;
      height: 160px;
    }

    .lp-reason-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 40px;
      margin-top: 101px;
    }

    .lp-reason-card {
      min-height: 712px;
    }

    .lp-reason-card h3 {
      font-size: 24px;
      line-height: 2;
    }

    .lp-reason-card h4 {
      font-size: 13.5px;
    }

    .lp-reason-card p {
      font-size: 18px;
    }

    .lp-cta {
      position: relative;
      min-height: 501px;
      padding-block: 60px;
      overflow: hidden;
      z-index: 1;
    }

    .lp-cta__waves {
      display: block;
      height: auto;
      z-index: -1;
    }

    .lp-cta__group {
      position: relative;
      max-width: 1400px;
      margin-inline: auto;
      height: 100%;
    }

    .lp-cta__inner {
      min-height: 341px;
    }

    .lp-cta__content {
      display: flex;
      width: min(705px, 139vw);
      margin-inline: 0 auto;
      min-height: 341px;
      flex-direction: column;
      justify-content: center;
    }

    .lp-cta__person {
      position: absolute;
      right: min(5.5vw, 160px);
      bottom: -100px;
      display: block;
      width: min(30vw, 370px);
      height: auto;
    }

    .lp-cta__actions {
      flex-direction: row;
      justify-content: center;
    }

    .lp-achievements__heading {
      padding-block: 128px;
    }

    .lp-achievements__body {
      padding-block: 145px;
      border-bottom-right-radius: 240px;
    }

    .lp-achievement-grid {
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 40px;
    }

    .lp-achievement-card {
      display: flex;
      min-height: 520px;
      padding: 40px 32px;
      flex-direction: column;
      gap: 16px;
      grid-column: span 2;
      justify-content: center;
    }

    .lp-achievement-card:nth-child(4),
    .lp-achievement-card:nth-child(5) {
      min-height: 320px;
      flex-direction: row;
      grid-column: span 3;
    }

    .lp-achievement-card > img {
      width: 240px;
      height: 240px;
    }

    .lp-achievement-card:nth-child(4) > img,
    .lp-achievement-card:nth-child(5) > img {
      width: 180px;
      height: 180px;
    }

    .lp-achievement-card dt {
      font-size: 28px;
    }

    .lp-achievement-card dt small {
      font-size: 16px;
    }

    .lp-achievement-card dd {
      font-size: 20px;
    }

    .lp-achievement-card dd strong {
      font-size: 2.5rem;
    }

    .lp-achievement-card__ratio {
      flex-direction: row;
      align-items: baseline;
      justify-content: center;
    }

    .lp-case-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 64px 48px;
      width: 100%;
      margin-top: 80px;
    }

    .lp-case-card__body {
      padding: 28px 32px 32px;
      gap: 16px;
    }

    .lp-case-card__body p {
      line-height: 1.8;
    }

    .lp-case-card:last-child {
      grid-column: 1 / -1;
      width: calc(50% - 24px);
      margin-inline: auto;
    }

    .lp-contact__form-embed {
      margin-top: 80px;
      padding-block: clamp(24px, 4vw, 48px);
    }

    .lp-footer {
      padding-block: 80px 40px;
      padding-inline: 56px;
    }

    .lp-footer__inner {
      gap: 64px;
      align-items: center;
    }

    .lp-footer__logo {
      width: 265px;
    }

    .lp-footer nav h2 {
      text-align: center;
    }

    .lp-footer nav ul {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 16px 32px;
      justify-content: center;
    }

    .lp-footer nav a {
      font-size: 14px;
    }

    .lp-only-mobile {
      display: none;
    }

    .lp-only-desktop {
      display: initial;
    }
  }

  @media (min-width: 1110px) {
    .lp-cta__person {
      right: min(11.5vw, 160px);
    }
  }

  @media (max-width: 599px) {
    .lp-cta__actions {
      margin-top: 184px;
    }

    .lp-cta__person {
      right: auto;
      left: 50%;
      max-width: none;
      transform: translateX(-50%);
      width: min(90vw, 321px);
    }

    .lp-cta-service {
      max-width: 287px;
      text-align: left;
    }
  }

  @media (max-width: 390px) {
    .lp-break-tiny {
      display: inline;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    :where(.lp-2026-07, .lp-2026-07 *) {
      scroll-behavior: auto;
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
}
