
:root {
  --t-headline-font: "Manrope", Arial, sans-serif;
  --t-text-font: "Manrope", Arial, sans-serif;
  --site-bg: #f5f0e7;
  --site-text: #3f3f3f;
  --site-coral: #efa7a0;
  --site-sage: #8fc9b6;
}
html { scroll-behavior: smooth; background: var(--site-bg); }
body { margin: 0; color: var(--site-text); background: var(--site-bg); font-family: var(--t-text-font); }
body, button, input, textarea, select { font-family: var(--t-text-font); }
img { max-width: 100%; }
[hidden] { display: none !important; }
.site-noscript {
  margin: 0; padding: 12px 20px; color: #3f3f3f; background: #fff2d7;
  font: 14px/1.45 Arial, sans-serif; text-align: center;
}

  :root {
    --np-site-header-height: 82px;
    --np-work-pin-top: 94px;
    scroll-padding-top: 104px;
  }

  .np-site-header,
  .np-site-header * { box-sizing: border-box; }

  .np-site-header {
    --nh-bg: #F5F0E7;
    --nh-coral: #EFA7A0;
    --nh-coral-dark: #D9827A;
    --nh-sage: #8FC9B6;
    --nh-sage-dark: #4F8575;
    --nh-text: #3F3F3F;
    --nh-muted: rgba(63,63,63,.62);
    --nh-white: #FFFFFF;
    --nh-line: rgba(63,63,63,.09);
    --nh-shadow: 0 15px 42px rgba(63,63,63,.09);
    --nh-container: 1260px;

    position: fixed;
    z-index: 99990;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    color: var(--nh-text);
    font-family: var(--t-text-font, Arial, sans-serif);
  }

  .np-site-header__bar {
    position: relative;
    z-index: 4;
    height: var(--np-site-header-height);
    border-bottom: 1px solid transparent;
    background: rgba(245,240,231,.84);
    -webkit-backdrop-filter: blur(18px) saturate(1.1);
    backdrop-filter: blur(18px) saturate(1.1);
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
  }

  .np-site-header.is-scrolled .np-site-header__bar,
  .np-site-header.is-open .np-site-header__bar {
    border-color: var(--nh-line);
    background: rgba(245,240,231,.96);
    box-shadow: var(--nh-shadow);
  }

  .np-site-header__inner {
    display: grid;
    grid-template-columns: minmax(250px, auto) minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(24px, 3.2vw, 52px);
    width: 100%;
    max-width: var(--nh-container);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
  }

  .np-site-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
    color: var(--nh-text) !important;
    text-decoration: none !important;
  }

  .np-site-header__logo {
    position: relative;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    overflow: visible;
    background: transparent;
  }

  .np-site-header__logo img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: contain;
    object-position: center;
  }

  .np-site-header__logo.is-fallback {
    overflow: hidden;
    border-radius: 50%;
    background:
      radial-gradient(circle at 30% 25%, rgba(255,255,255,.92), transparent 38%),
      linear-gradient(145deg, rgba(239,167,160,.22), rgba(143,201,182,.27));
    box-shadow: inset 0 0 0 1px rgba(63,63,63,.07);
  }

  .np-site-header__logo.is-fallback img { display: none; }

  .np-site-header__monogram {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: none;
    place-items: center;
    color: var(--nh-coral-dark);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.04em;
  }

  .np-site-header__logo.is-fallback .np-site-header__monogram { display: grid; }

  .np-site-header__identity {
    min-width: 0;
  }

  .np-site-header__role,
  .np-site-header__name {
    display: block;
    margin: 0;
  }

  .np-site-header__role {
    margin-bottom: 4px;
    color: var(--nh-sage-dark);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: .095em;
    text-transform: uppercase;
  }

  .np-site-header__name {
    overflow: hidden;
    color: var(--nh-text);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.025em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .np-site-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 1.9vw, 30px);
    min-width: 0;
  }

  .np-site-header__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 4px 0;
    color: rgba(63,63,63,.78) !important;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    transition: color .2s ease;
  }

  .np-site-header__link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--nh-coral) 0 68%, var(--nh-sage) 68% 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
  }

  .np-site-header__link:hover,
  .np-site-header__link:focus-visible,
  .np-site-header__link.is-active {
    color: var(--nh-text) !important;
    outline: none;
  }

  .np-site-header__link:hover::after,
  .np-site-header__link:focus-visible::after,
  .np-site-header__link.is-active::after { transform: scaleX(1); }

  .np-site-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border: 0;
    border-radius: 999px;
    color: #FFFFFF !important;
    background: var(--nh-coral);
    box-shadow: 0 10px 24px rgba(217,130,122,.20);
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
    white-space: nowrap;
    transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
  }

  .np-site-header__cta:hover,
  .np-site-header__cta:focus-visible {
    background: var(--nh-coral-dark);
    box-shadow: 0 13px 28px rgba(217,130,122,.26);
    transform: translateY(-2px);
    outline: none;
  }

  .np-site-header__burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--nh-line);
    border-radius: 50%;
    color: var(--nh-text);
    background: rgba(255,255,255,.62);
    cursor: pointer;
  }

  .np-site-header__burger-lines,
  .np-site-header__burger-lines::before,
  .np-site-header__burger-lines::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .25s ease, opacity .2s ease;
  }

  .np-site-header__burger-lines {
    position: relative;
  }

  .np-site-header__burger-lines::before,
  .np-site-header__burger-lines::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .np-site-header__burger-lines::before { top: -6px; }
  .np-site-header__burger-lines::after { top: 6px; }

  .np-site-header.is-open .np-site-header__burger-lines { background: transparent; }
  .np-site-header.is-open .np-site-header__burger-lines::before { top: 0; transform: rotate(45deg); }
  .np-site-header.is-open .np-site-header__burger-lines::after { top: 0; transform: rotate(-45deg); }

  .np-site-header__drawer,
  .np-site-header__backdrop { display: none; }

  .np-site-header__spacer {
    width: 100%;
    height: var(--np-site-header-height);
    background: var(--nh-bg);
  }

  @media (max-width: 1080px) {
    :root {
      --np-site-header-height: 72px;
      --np-work-pin-top: 84px;
      scroll-padding-top: 94px;
    }

    .np-site-header__inner {
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 16px;
      padding: 0 20px;
    }

    .np-site-header__nav,
    .np-site-header__inner > .np-site-header__cta { display: none; }
    .np-site-header__burger { display: inline-flex; }

    .np-site-header__logo {
      width: 46px;
      height: 46px;
      flex-basis: 46px;
    }

    .np-site-header__name { font-size: 18px; }

    .np-site-header__backdrop {
      position: fixed;
      z-index: 1;
      top: var(--np-site-header-height);
      right: 0;
      bottom: 0;
      left: 0;
      display: block;
      visibility: hidden;
      background: rgba(63,63,63,.18);
      opacity: 0;
      pointer-events: none;
      transition: opacity .25s ease, visibility .25s ease;
    }

    .np-site-header__drawer {
      position: fixed;
      z-index: 3;
      top: var(--np-site-header-height);
      right: 0;
      left: 0;
      display: block;
      max-height: calc(100dvh - var(--np-site-header-height));
      overflow-y: auto;
      border-bottom: 1px solid var(--nh-line);
      background: rgba(245,240,231,.985);
      box-shadow: var(--nh-shadow);
      opacity: 0;
      transform: translateY(-14px);
      visibility: hidden;
      pointer-events: none;
      transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    }

    .np-site-header.is-open .np-site-header__drawer,
    .np-site-header.is-open .np-site-header__backdrop {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .np-site-header.is-open .np-site-header__drawer { transform: translateY(0); }

    .np-site-header__drawer-inner {
      width: 100%;
      max-width: var(--nh-container);
      margin: 0 auto;
      padding: 22px 20px 28px;
    }

    .np-site-header__mobile-nav {
      display: grid;
      border-top: 1px solid var(--nh-line);
    }

    .np-site-header__mobile-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 54px;
      padding: 11px 2px;
      border-bottom: 1px solid var(--nh-line);
      color: var(--nh-text) !important;
      text-decoration: none !important;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.3;
    }

    .np-site-header__mobile-link::after {
      content: "→";
      color: var(--nh-coral-dark);
      font-size: 17px;
      font-weight: 500;
    }

    .np-site-header__mobile-link.is-active { color: var(--nh-coral-dark) !important; }

    .np-site-header__mobile-cta {
      width: 100%;
      min-height: 52px;
      margin-top: 20px;
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    :root {
      --np-site-header-height: 68px;
      --np-work-pin-top: 80px;
      scroll-padding-top: 88px;
    }

    .np-site-header__inner { padding: 0 16px; }
    .np-site-header__brand { gap: 10px; }

    .np-site-header__logo {
      width: 48px;
      height: 48px;
      flex-basis: 48px;
    }

    .np-site-header__role {
      margin-bottom: 3px;
      font-size: 8px;
      letter-spacing: .075em;
    }

    .np-site-header__name { font-size: 16px; }
    .np-site-header__burger { width: 44px; height: 44px; }
  }

  @media (max-width: 350px) {
    .np-site-header__role { display: none; }
    .np-site-header__name { font-size: 15px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .np-site-header *,
    .np-site-header *::before,
    .np-site-header *::after { transition: none !important; scroll-behavior: auto !important; }
  }


  

  .np-hero2,
  .np-hero2 * { box-sizing: border-box; }

  .np-hero2 {
    --h-bg: #F5F0E7;
    --h-coral: #EFA7A0;
    --h-coral-dark: #D9827A;
    --h-sage: #8FC9B6;
    --h-sage-dark: #4F8575;
    --h-text: #3F3F3F;
    --h-white: #FFFFFF;
    --h-line: rgba(63,63,63,.11);
    --h-shadow: 0 20px 55px rgba(63,63,63,.10);
    --np-container: 1260px;
    --np-title-size: clamp(44px, 4.45vw, 64px);
    --np-corner-size: clamp(310px, 31vw, 430px);

    position: relative;
    width: 100%;
    min-height: clamp(760px, 100svh, 920px);
    padding: clamp(68px, 8vh, 92px) 24px clamp(64px, 7vw, 88px);
    overflow: hidden;
    color: var(--h-text);
    background: var(--h-bg);
    font-family: var(--t-text-font, Arial, sans-serif);
  }

  
  .np-hero2::before {
    content: "";
    position: absolute;
    width: var(--np-corner-size);
    aspect-ratio: 1;
    top: calc(var(--np-corner-size) * -.60);
    left: calc(var(--np-corner-size) * -.36);
    border-radius: 50%;
    background: rgba(239,167,160,.14);
    pointer-events: none;
  }

  .np-hero2__corner-accent {
    position: absolute;
    z-index: 0;
    right: calc(var(--np-corner-size) * -.32);
    bottom: calc(var(--np-corner-size) * -.43);
    width: var(--np-corner-size);
    aspect-ratio: 1;
    pointer-events: none;
  }

  .np-hero2__corner-accent::before,
  .np-hero2__corner-accent::after {
    content: "";
    position: absolute;
    border-radius: 50%;
  }

  .np-hero2__corner-accent::before {
    inset: 0;
    background: rgba(143,201,182,.19);
  }

  .np-hero2__corner-accent::after {
    width: 78%;
    aspect-ratio: 1;
    right: -2%;
    top: -24%;
    background: rgba(239,167,160,.13);
  }

  .np-hero2__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--np-container);
    margin: 0 auto;
  }

  .np-hero2__main {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
    align-items: center;
    gap: clamp(48px, 6.5vw, 92px);
  }

  
  .np-hero2__content {
    min-width: 0;
    padding: 10px 0;
  }

  .np-hero2__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 21px;
    color: var(--h-sage-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .np-hero2__eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    border-radius: 100px;
    background: var(--h-sage);
  }

  .np-hero2__title {
    max-width: 740px;
    margin: 0 0 26px;
    color: var(--h-coral);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: var(--np-title-size);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.036em;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
  }

  .np-hero2__lead {
    max-width: 710px;
    margin: 0;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(21px, 2.25vw, 30px);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -.022em;
    text-wrap: balance;
  }

  .np-hero2__support {
    max-width: 610px;
    margin: 20px 0 0;
    font-size: 15px;
    line-height: 1.65;
    opacity: .72;
  }

  .np-hero2__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin-top: 33px;
  }

  .np-hero2__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 16px 27px;
    border-radius: 999px;
    background: var(--h-coral);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(217,130,122,.27);
    transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
  }

  .np-hero2__button:hover {
    transform: translateY(-2px);
    background: var(--h-coral-dark);
    box-shadow: 0 14px 30px rgba(217,130,122,.32);
  }

  .np-hero2__button svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
  }

  .np-hero2__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    color: var(--h-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    border-bottom: 1px solid rgba(63,63,63,.32);
    transition: color .2s ease, border-color .2s ease, transform .2s ease;
  }

  .np-hero2__link:hover {
    color: var(--h-coral-dark);
    border-color: var(--h-coral-dark);
    transform: translateY(-1px);
  }

  .np-hero2__link svg {
    width: 17px;
    height: 17px;
  }

  
  .np-hero2__visual {
    position: relative;
    min-width: 0;
  }

  .np-hero2__visual::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: 72%;
    height: 66%;
    right: -28px;
    bottom: -28px;
    border-radius: 36px;
    background: rgba(143,201,182,.42);
  }

  .np-hero2__visual::after {
    content: "";
    position: absolute;
    z-index: 0;
    width: 118px;
    height: 118px;
    left: -47px;
    top: -34px;
    border: 2px solid rgba(239,167,160,.43);
    border-radius: 50%;
  }

  .np-hero2__photo {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
    border-radius: 30px;
    background:
      radial-gradient(circle at 30% 18%, rgba(255,255,255,.5), transparent 34%),
      linear-gradient(155deg, #EBC9C4 0%, #DCEBE5 100%);
    box-shadow: var(--h-shadow);
  }

  .np-hero2__photo-img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 24%;
  }

  .np-hero2__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30,30,30,0) 55%, rgba(30,30,30,.60) 100%);
    pointer-events: none;
  }

  .np-hero2__photo-placeholder {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    place-items: center;
    padding: 34px;
    text-align: center;
    color: #fff;
  }

  .np-hero2__photo-placeholder span {
    display: grid;
    place-items: center;
    width: 84px;
    height: 84px;
    margin: 0 auto 14px;
    border: 1px solid rgba(255,255,255,.58);
    border-radius: 50%;
    background: rgba(255,255,255,.22);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 36px;
    font-weight: 700;
    backdrop-filter: blur(8px);
  }

  .np-hero2__photo-placeholder strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 17px;
  }

  .np-hero2__photo-placeholder small {
    display: block;
    max-width: 250px;
    font-size: 12px;
    line-height: 1.45;
    opacity: .85;
  }

  .np-hero2__caption {
    position: absolute;
    z-index: 2;
    right: 26px;
    bottom: 23px;
    left: 26px;
    color: #fff;
  }

  .np-hero2__caption-name {
    display: block;
    margin-bottom: 4px;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
  }

  .np-hero2__caption-role {
    display: block;
    font-size: 13px;
    line-height: 1.35;
    opacity: .9;
  }

  .np-hero2__photo-label {
    position: absolute;
    z-index: 3;
    top: 24px;
    left: -34px;
    max-width: 210px;
    padding: 13px 17px;
    border-radius: 18px;
    background: rgba(255,255,255,.90);
    box-shadow: 0 12px 32px rgba(63,63,63,.10);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.42;
  }

  .np-hero2__photo-label::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--h-sage);
  }

  
  .np-hero2__advantages {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 16px;
    margin-top: 46px;
  }

  .np-hero2__advantage {
    min-width: 0;
    min-height: 148px;
    height: 100%;
    padding: 24px 24px 22px;
    border: 1px solid rgba(63,63,63,.07);
    border-radius: 24px;
    background: rgba(255,255,255,.67);
    box-shadow: 0 9px 25px rgba(63,63,63,.045);
  }

  .np-hero2__advantage:nth-child(2) {
    background: rgba(143,201,182,.17);
  }

  .np-hero2__advantage:nth-child(3) {
    background: rgba(239,167,160,.14);
  }

  .np-hero2__advantage-num {
    display: block;
    margin-bottom: 17px;
    color: var(--h-coral);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
  }

  .np-hero2__advantage-title {
    display: block;
    margin-bottom: 8px;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
  }

  .np-hero2__advantage-text {
    display: block;
    max-width: 320px;
    font-size: 13px;
    line-height: 1.55;
    opacity: .70;
  }

  
  .np-hero2__reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .65s ease, transform .65s ease;
  }

  .np-hero2__reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  
  @media (max-width: 1080px) {
    .np-hero2 {
      min-height: auto;
      padding: 70px 22px 68px;
    }

    .np-hero2__main {
      grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
      gap: 46px;
    }

    .np-hero2__title { font-size: var(--np-title-size); }
    .np-hero2__photo-label { left: -22px; }
  }

  @media (max-width: 860px) {
    .np-hero2 { padding: 62px 20px 54px; }

    .np-hero2__main {
      grid-template-columns: 1fr;
      gap: 45px;
    }

    .np-hero2__content {
      max-width: 780px;
      padding: 0;
    }

    .np-hero2__title {
      max-width: 760px;
      font-size: clamp(42px, 7.2vw, 60px);
    }

    .np-hero2__lead { max-width: 720px; }
    .np-hero2__visual { width: 100%; }

    .np-hero2__photo {
      width: min(100%, 700px);
      margin: 0 auto;
    }

    .np-hero2__visual::before {
      width: min(520px, 75%);
      right: calc(50% - 370px);
    }

    .np-hero2__visual::after {
      left: calc(50% - 390px);
    }

    .np-hero2__photo-label {
      left: calc(50% - 380px);
    }
  }

  @media (max-width: 720px) {
    .np-hero2__advantages {
      grid-template-columns: 1fr;
      gap: 12px;
      margin-top: 36px;
    }

    .np-hero2__advantage {
      min-height: 0;
      padding: 21px 22px 20px;
    }
  }

  @media (max-width: 620px) {
    .np-hero2 { padding: 48px 16px 56px; }

    .np-hero2__eyebrow {
      margin-bottom: 16px;
      font-size: 10.5px;
    }

    .np-hero2__eyebrow::before { width: 28px; }

    .np-hero2__title {
      margin-bottom: 22px;
      font-size: clamp(34px, 10.4vw, 44px);
      line-height: 1.04;
      letter-spacing: -.03em;
    }

    .np-hero2__lead {
      font-size: 20px;
      line-height: 1.32;
    }

    .np-hero2__support {
      margin-top: 16px;
      font-size: 14px;
      line-height: 1.6;
    }

    .np-hero2__actions {
      align-items: stretch;
      flex-direction: column;
      gap: 10px;
      margin-top: 27px;
    }

    .np-hero2__button { width: 100%; }

    .np-hero2__link {
      align-self: center;
      min-height: 40px;
    }

    .np-hero2__photo {
      border-radius: 25px;
    }

    .np-hero2__visual::before {
      right: -15px;
      bottom: -17px;
      border-radius: 28px;
    }

    .np-hero2__visual::after,
    .np-hero2__photo-label {
      display: none;
    }

    .np-hero2__corner-accent {
      right: -78px;
      bottom: -108px;
      width: 230px;
    }

    .np-hero2__caption {
      right: 20px;
      bottom: 18px;
      left: 20px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .np-hero2__reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }

    .np-hero2__button,
    .np-hero2__link { transition: none; }
  }


  

  .np-diff,
  .np-diff * { box-sizing: border-box; }

  .np-diff {
    --d-bg: #F5F0E7;
    --d-coral: #EFA7A0;
    --d-coral-dark: #D9827A;
    --d-sage: #8FC9B6;
    --d-sage-dark: #4F8575;
    --d-text: #3F3F3F;
    --d-white: #FFFFFF;
    --d-line: rgba(63,63,63,.11);
    --d-shadow: 0 20px 55px rgba(63,63,63,.08);
    --d-sticky-top: 0px; 
    --np-container: 1260px;
    --np-title-size: clamp(44px, 4.45vw, 64px);
    --np-corner-size: clamp(310px, 31vw, 430px);

    position: relative;
    width: 100%;
    padding: clamp(76px, 9vw, 122px) 24px;
    overflow: visible;
    color: var(--d-text);
    background: var(--d-bg);
    font-family: var(--t-text-font, Arial, sans-serif);
  }

  .np-diff::before,
  .np-diff::after { display: none; }

  
  .np-diff__decor-clip {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .np-diff__corner-accent {
    position: absolute;
    right: calc(var(--np-corner-size) * -.32);
    bottom: calc(var(--np-corner-size) * -.43);
    width: var(--np-corner-size);
    aspect-ratio: 1;
  }

  .np-diff__corner-accent::before,
  .np-diff__corner-accent::after {
    content: "";
    position: absolute;
    border-radius: 50%;
  }

  .np-diff__corner-accent::before {
    inset: 0;
    background: rgba(143,201,182,.19);
  }

  .np-diff__corner-accent::after {
    width: 78%;
    aspect-ratio: 1;
    right: -2%;
    top: -24%;
    background: rgba(239,167,160,.13);
  }

  .np-diff__stage {
    position: relative;
    width: 100%;
  }

  .np-diff__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--np-container);
    margin: 0 auto;
  }

  .np-diff__layout {
    display: grid;
    grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
    gap: clamp(52px, 7vw, 104px);
    align-items: start;
  }

  
  .np-diff__viewport,
  .np-diff__track {
    position: relative;
    min-width: 0;
  }

  .np-diff.is-scroll-mode {
    padding: 0 24px;
  }

  .np-diff.is-scroll-mode .np-diff__stage {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: calc(100svh - var(--d-sticky-top));
    min-height: 650px;
    overflow: hidden;
    transform: none;
  }

  .np-diff.is-scroll-mode .np-diff__stage.is-fixed {
    position: fixed;
    z-index: 30;
  }

  .np-diff.is-scroll-mode .np-diff__layout {
    align-items: center;
  }

  .np-diff.is-scroll-mode .np-diff__viewport {
    height: min(76svh, 760px);
    overflow: hidden;
    border-radius: 32px;
  }

  .np-diff.is-scroll-mode .np-diff__track {
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
  }

  
  .np-diff__intro {
    position: relative;
    padding-top: 8px;
  }

  .np-diff__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 20px;
    color: var(--d-sage-dark);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .np-diff__eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    border-radius: 100px;
    background: var(--d-sage);
  }

  .np-diff__title {
    max-width: 560px;
    margin: 0;
    color: var(--d-coral);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: var(--np-title-size);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.036em;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
  }

  .np-diff__lead {
    max-width: 440px;
    margin: 27px 0 0;
    font-size: 16px;
    line-height: 1.68;
    opacity: .74;
  }

  .np-diff__note {
    max-width: 420px;
    margin-top: 34px;
    padding: 23px 25px;
    border-left: 3px solid var(--d-sage);
    border-radius: 0 20px 20px 0;
    background: rgba(255,255,255,.46);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
  }

  
  .np-diff__panel {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: rgba(255,255,255,.82);
    box-shadow: var(--d-shadow);
  }

  .np-diff__panel::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -88px;
    bottom: -92px;
    border-radius: 50%;
    background: rgba(143,201,182,.20);
    pointer-events: none;
  }

  .np-diff__item {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    padding: 31px clamp(26px, 4vw, 46px);
    border-bottom: 1px solid var(--d-line);
    transition: background .25s ease, padding-left .25s ease;
  }

  .np-diff__item:last-child { border-bottom: 0; }

  .np-diff__item:hover {
    background: rgba(245,240,231,.62);
    padding-left: calc(clamp(26px, 4vw, 46px) + 5px);
  }

  .np-diff__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: var(--d-coral-dark);
    background: rgba(239,167,160,.16);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
  }

  .np-diff__item:nth-child(even) .np-diff__number {
    color: var(--d-sage-dark);
    background: rgba(143,201,182,.19);
  }

  .np-diff__item-title {
    margin: 1px 0 8px;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(19px, 2vw, 24px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.018em;
  }

  .np-diff__item-text {
    max-width: 650px;
    margin: 0;
    font-size: 15px;
    line-height: 1.58;
    opacity: .72;
  }

  
  .np-diff__bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    margin-top: 30px;
    padding: 26px 30px;
    border-radius: 24px;
    background: var(--d-sage);
    color: #fff;
  }

  .np-diff__bottom-text {
    margin: 0;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(17px, 1.8vw, 22px);
    font-weight: 600;
    line-height: 1.4;
  }

  .np-diff__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 15px 23px;
    border-radius: 999px;
    color: var(--d-text);
    background: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: transform .22s ease, box-shadow .22s ease;
  }

  .np-diff__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(63,63,63,.15);
  }

  .np-diff__button svg {
    width: 17px;
    height: 17px;
  }

  
  .np-diff__reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s ease;
  }

  .np-diff__reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  
  @media (max-width: 980px) {
    .np-diff,
    .np-diff.is-scroll-mode {
      height: auto !important;
      padding: clamp(72px, 9vw, 104px) 20px;
    }

    .np-diff__stage,
    .np-diff.is-scroll-mode .np-diff__stage {
      position: relative;
      top: auto;
      display: block;
      height: auto;
      min-height: 0;
      overflow: visible;
    }

    .np-diff__viewport,
    .np-diff.is-scroll-mode .np-diff__viewport {
      height: auto;
      overflow: visible;
      border-radius: 0;
    }

    .np-diff__track,
    .np-diff.is-scroll-mode .np-diff__track {
      transform: none !important;
    }

    .np-diff__layout {
      grid-template-columns: 1fr;
      gap: 42px;
    }

    .np-diff__intro {
      position: relative;
    }

    .np-diff__title,
    .np-diff__lead,
    .np-diff__note {
      max-width: 760px;
    }

    .np-diff__title {
      font-size: clamp(42px, 7.2vw, 60px);
    }
  }

  @media (max-width: 680px) {
    .np-diff {
      padding: 66px 16px;
    }

    .np-diff__title {
      font-size: clamp(34px, 10.4vw, 44px);
      line-height: 1.04;
      letter-spacing: -.03em;
    }

    .np-diff__corner-accent {
      right: -78px;
      bottom: -108px;
      width: 230px;
    }

    .np-diff__panel {
      border-radius: 24px;
    }

    .np-diff__item {
      grid-template-columns: 44px minmax(0, 1fr);
      gap: 15px;
      padding: 24px 20px;
    }

    .np-diff__item:hover {
      padding-left: 20px;
    }

    .np-diff__number {
      width: 38px;
      height: 38px;
      font-size: 12px;
    }

    .np-diff__item-title {
      font-size: 18px;
    }

    .np-diff__item-text {
      font-size: 14px;
    }

    .np-diff__bottom {
      grid-template-columns: 1fr;
      align-items: start;
      padding: 24px 22px;
    }

    .np-diff__button {
      width: 100%;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .np-diff__reveal,
    .np-diff__item,
    .np-diff__button {
      transition: none !important;
    }
  }


  

  .np-trust3,
  .np-trust3 * { box-sizing: border-box; }

  .np-trust3 {
    --tp-bg: #F5F0E7;
    --tp-coral: #EFA7A0;
    --tp-coral-dark: #D9827A;
    --tp-sage: #8FC9B6;
    --tp-sage-dark: #4F8575;
    --tp-text: #3F3F3F;
    --tp-muted: rgba(63,63,63,.70);
    --tp-white: rgba(255,255,255,.84);
    --tp-shadow: 0 20px 55px rgba(63,63,63,.08);
    --np-container: 1260px;
    --np-title-size: clamp(44px, 4.45vw, 64px);
    --np-corner-size: clamp(310px, 31vw, 430px);
    --np-card-radius: 32px;

    position: relative;
    width: 100%;
    padding: clamp(76px, 9vw, 122px) 24px;
    overflow: hidden;
    color: var(--tp-text);
    background: var(--tp-bg);
    font-family: var(--t-text-font, Arial, sans-serif);
  }

  
  .np-trust3__decor-clip {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .np-trust3__corner-accent {
    position: absolute;
    left: calc(var(--np-corner-size) * -.38);
    bottom: calc(var(--np-corner-size) * -.62);
    width: var(--np-corner-size);
    aspect-ratio: 1;
  }

  .np-trust3__corner-accent::before,
  .np-trust3__corner-accent::after {
    content: "";
    position: absolute;
    border-radius: 50%;
  }

  .np-trust3__corner-accent::before {
    inset: 0;
    background: rgba(143,201,182,.19);
  }

  .np-trust3__corner-accent::after {
    width: 78%;
    aspect-ratio: 1;
    left: -2%;
    top: -24%;
    background: rgba(239,167,160,.13);
  }

  .np-trust3__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--np-container);
    margin: 0 auto;
  }

  .np-trust3__head {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .62fr);
    gap: clamp(34px, 5vw, 74px);
    align-items: end;
    margin-bottom: clamp(28px, 3.5vw, 42px);
  }

  .np-trust3__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 15px;
    color: var(--tp-sage-dark);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .np-trust3__eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    border-radius: 100px;
    background: var(--tp-sage);
  }

  .np-trust3__title {
    max-width: 790px;
    margin: 0;
    color: var(--tp-coral);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: var(--np-title-size);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.036em;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
  }

  .np-trust3__lead {
    max-width: 430px;
    margin: 0 0 4px;
    color: var(--tp-muted);
    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 1.62;
  }

  .np-trust3__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(280px, .72fr);
    grid-template-areas:
      "quote rating"
      "mini mini";
    gap: 16px;
  }

  .np-trust3__featured {
    grid-area: quote;
    position: relative;
    min-height: 340px;
    overflow: hidden;
    padding: clamp(34px, 4vw, 54px);
    border: 1px solid rgba(255,255,255,.84);
    border-radius: var(--np-card-radius);
    background:
      radial-gradient(circle at 95% 5%, rgba(143,201,182,.26), transparent 31%),
      var(--tp-white);
    box-shadow: var(--tp-shadow);
  }

  .np-trust3__featured::before {
    content: "“";
    position: absolute;
    right: 34px;
    top: -36px;
    color: rgba(239,167,160,.17);
    font-family: Georgia, serif;
    font-size: 190px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
  }

  .np-trust3__featured-inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: space-between;
  }

  .np-trust3__featured-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 30px;
    padding: 9px 13px;
    border-radius: 999px;
    color: var(--tp-sage-dark);
    background: rgba(143,201,182,.18);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .055em;
    text-transform: uppercase;
  }

  .np-trust3__featured-quote {
    max-width: 810px;
    margin: 0;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(24px, 2.65vw, 38px);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -.03em;
  }

  .np-trust3__person,
  .np-trust3__mini-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
  }

  .np-trust3__avatar {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    background: var(--tp-coral);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 13px;
    font-weight: 700;
  }

  .np-trust3__person-name,
  .np-trust3__mini-name {
    margin: 0;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
  }

  .np-trust3__person-meta {
    margin: 4px 0 0;
    color: var(--tp-muted);
    font-size: 12px;
    line-height: 1.35;
  }

  .np-trust3__rating {
    grid-area: rating;
    position: relative;
    display: flex;
    min-height: 340px;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(30px, 3.2vw, 42px);
    border-radius: var(--np-card-radius);
    color: var(--tp-text);
    background:
      radial-gradient(circle at 88% 10%, rgba(255,255,255,.34), transparent 30%),
      linear-gradient(150deg, rgba(239,167,160,.94), rgba(239,167,160,.76));
    box-shadow: 0 22px 52px rgba(217,130,122,.16);
  }

  .np-trust3__rating-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .np-trust3__yandex {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--tp-coral-dark);
    background: rgba(255,255,255,.78);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 17px;
    font-weight: 700;
  }

  .np-trust3__rating-source {
    color: rgba(63,63,63,.72);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    text-align: right;
  }

  .np-trust3__score {
    margin: 20px 0 0;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(70px, 7.3vw, 104px);
    font-weight: 700;
    line-height: .8;
    letter-spacing: -.07em;
  }

  .np-trust3__stars {
    display: flex;
    gap: 3px;
    margin-top: 22px;
    color: #fff;
  }

  .np-trust3__stars svg {
    width: 19px;
    height: 19px;
  }

  .np-trust3__rating-copy {
    margin: 16px 0 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.42;
  }

  .np-trust3__link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin-top: 24px;
    padding: 15px 17px;
    border-radius: 18px;
    color: var(--tp-text);
    background: rgba(255,255,255,.72);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition: transform .22s ease, background .22s ease;
  }

  .np-trust3__link:hover {
    transform: translateY(-2px);
    background: #fff;
  }

  .np-trust3__link svg {
    width: 17px;
    height: 17px;
  }

  .np-trust3__mini-grid {
    grid-area: mini;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .np-trust3__mini {
    position: relative;
    min-width: 0;
    overflow: hidden;
    padding: 24px 26px;
    border-radius: 24px;
    background: rgba(255,255,255,.70);
  }

  .np-trust3__mini:nth-child(2) {
    background: rgba(143,201,182,.18);
  }

  .np-trust3__mini::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 3px;
    border-radius: 999px;
    background: var(--tp-coral);
  }

  .np-trust3__mini:nth-child(2)::before {
    background: var(--tp-sage);
  }

  .np-trust3__mini-quote {
    margin: 0;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(16px, 1.45vw, 20px);
    font-weight: 600;
    line-height: 1.42;
    letter-spacing: -.015em;
  }

  .np-trust3__mini-person {
    margin-top: 17px;
  }

  .np-trust3__mini .np-trust3__avatar {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    color: var(--tp-coral-dark);
    background: rgba(255,255,255,.82);
    font-size: 10px;
  }

  .np-trust3__mini:nth-child(2) .np-trust3__avatar {
    color: var(--tp-sage-dark);
  }

  .np-trust3__reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s ease;
  }

  .np-trust3__reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .np-trust3__reveal--delay {
    transition-delay: .06s;
  }

  @media (max-width: 980px) {
    .np-trust3 {
      padding: clamp(72px, 9vw, 104px) 20px;
    }

    .np-trust3__head {
      grid-template-columns: 1fr;
      gap: 20px;
      align-items: start;
    }

    .np-trust3__title {
      max-width: 860px;
      font-size: clamp(42px, 7.2vw, 60px);
    }

    .np-trust3__lead {
      max-width: 690px;
    }

    .np-trust3__grid {
      grid-template-columns: 1fr 1fr;
      grid-template-areas:
        "quote quote"
        "rating mini";
      align-items: stretch;
    }

    .np-trust3__rating {
      min-height: 100%;
    }

    .np-trust3__mini-grid {
      grid-template-columns: 1fr;
      height: 100%;
    }
  }

  @media (max-width: 680px) {
    .np-trust3 {
      padding: 66px 16px 70px;
    }

    .np-trust3__head {
      margin-bottom: 24px;
    }

    .np-trust3__title {
      font-size: clamp(34px, 10.4vw, 44px);
      line-height: 1.04;
      letter-spacing: -.03em;
    }

    .np-trust3__corner-accent {
      left: -88px;
      bottom: -156px;
      width: 230px;
    }

    .np-trust3__lead {
      font-size: 14.5px;
    }

    .np-trust3__grid {
      grid-template-columns: 1fr;
      grid-template-areas:
        "rating"
        "quote"
        "mini";
      gap: 13px;
    }

    .np-trust3__featured,
    .np-trust3__rating {
      min-height: 0;
      border-radius: 26px;
    }

    .np-trust3__featured {
      padding: 28px 22px;
    }

    .np-trust3__featured::before {
      right: 3px;
      top: -15px;
      font-size: 130px;
    }

    .np-trust3__featured-label {
      margin-bottom: 22px;
    }

    .np-trust3__featured-quote {
      font-size: 23px;
    }

    .np-trust3__rating {
      padding: 27px 22px;
    }

    .np-trust3__score {
      font-size: 78px;
    }

    .np-trust3__mini-grid {
      gap: 12px;
    }

    .np-trust3__mini {
      padding: 23px 21px 22px 25px;
      border-radius: 21px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .np-trust3__reveal,
    .np-trust3__link { transition: none !important; }
  }


  
  .np-trust3__featured {
    display: grid;
    grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
    min-height: 0;
    padding: 0;
    background: rgba(255,255,255,.84);
  }

  .np-trust3__featured::before { display: none; }

  .np-trust3__video {
    position: relative;
    width: calc(100% - 20px);
    min-height: 0;
    aspect-ratio: 9 / 16;
    align-self: center;
    overflow: hidden;
    margin: 10px;
    border-radius: 27px;
    background:
      linear-gradient(180deg, rgba(63,63,63,.02), rgba(63,63,63,.26)),
      linear-gradient(145deg, rgba(143,201,182,.50), rgba(239,167,160,.38));
  }

  .np-trust3__video-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .55s ease;
  }

  .np-trust3__video.is-placeholder .np-trust3__video-image { display: none; }
  .np-trust3__video:not(.is-placeholder) .np-trust3__video-placeholder { display: none; }

  .np-trust3__video-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 28px;
    color: rgba(63,63,63,.64);
    text-align: center;
  }

  .np-trust3__video-placeholder svg {
    width: 86px;
    height: 86px;
    opacity: .56;
  }

  .np-trust3__video-badge {
    position: absolute;
    z-index: 2;
    left: 18px;
    top: 18px;
    padding: 8px 11px;
    border-radius: 999px;
    color: var(--tp-text);
    background: rgba(255,255,255,.84);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .055em;
    text-transform: uppercase;
  }

  .np-trust3__video-button {
    position: absolute;
    z-index: 3;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 10px 15px 10px 10px;
    border: 0;
    border-radius: 20px;
    color: var(--tp-text);
    background: rgba(255,255,255,.91);
    box-shadow: 0 16px 38px rgba(63,63,63,.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    font: inherit;
    text-align: left;
    transition: transform .24s ease, background .24s ease;
  }

  .np-trust3__video-button:hover {
    transform: translateY(-2px);
    background: #fff;
  }

  .np-trust3__play {
    display: grid;
    place-items: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    background: var(--tp-coral);
  }

  .np-trust3__play svg { width: 16px; height: 16px; margin-left: 2px; }

  .np-trust3__video-button-text {
    display: block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
  }

  .np-trust3__video-button-meta {
    display: block;
    margin-top: 2px;
    color: var(--tp-muted);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.25;
  }

  .np-trust3__featured-content {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(32px, 3.6vw, 48px);
  }

  .np-trust3__featured-content::before {
    content: "“";
    position: absolute;
    right: 22px;
    top: -24px;
    color: rgba(239,167,160,.14);
    font-family: Georgia, serif;
    font-size: 150px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
  }

  .np-trust3__featured-inner { min-height: auto; }
  .np-trust3__featured-label { margin-bottom: 22px; }
  .np-trust3__featured-quote {
    position: relative;
    z-index: 1;
    font-size: clamp(21px, 2.05vw, 31px);
  }
  .np-trust3__person { position: relative; z-index: 1; margin-top: 26px; }

  .np-trust3__modal {
    position: fixed;
    z-index: 999999;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    background: rgba(42,42,42,.70);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: opacity .26s ease, visibility .26s ease;
  }

  .np-trust3__modal.is-open { visibility: visible; opacity: 1; }

  .np-trust3__modal-dialog {
    position: relative;
    width: min(920px, 100%);
    max-height: calc(100vh - 48px);
    overflow: hidden;
    border-radius: 28px;
    background: #111;
    box-shadow: 0 30px 90px rgba(0,0,0,.30);
    transform: translateY(14px) scale(.985);
    transition: transform .26s ease;
  }

  .np-trust3__modal.is-open .np-trust3__modal-dialog { transform: translateY(0) scale(1); }

  .np-trust3__modal-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111;
  }

  .np-trust3__modal-frame iframe,
  .np-trust3__modal-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .np-trust3__modal-message {
    display: none;
    min-height: 320px;
    padding: 58px 26px 34px;
    place-items: center;
    color: #fff;
    text-align: center;
    background: linear-gradient(145deg, #5f8478, #c8847d);
  }

  .np-trust3__modal-message.is-visible { display: grid; }

  .np-trust3__modal-close {
    position: absolute;
    z-index: 4;
    right: 14px;
    top: 14px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: var(--tp-text);
    background: rgba(255,255,255,.92);
    cursor: pointer;
  }

  .np-trust3__modal-close svg { width: 18px; height: 18px; }

  @media (max-width: 980px) {
    .np-trust3__featured { grid-template-columns: minmax(220px, 280px) minmax(0, 1fr); }
  }

  @media (max-width: 680px) {
    .np-trust3__featured {
      grid-template-columns: 1fr;
      padding: 0;
    }
    .np-trust3__video {
      width: calc(100% - 16px);
      min-height: 0;
      aspect-ratio: 9 / 16;
      margin: 8px 8px 0;
      border-radius: 21px;
    }
    .np-trust3__featured-content { padding: 27px 22px 29px; }
    .np-trust3__featured-content::before { font-size: 112px; top: -8px; }
    .np-trust3__featured-quote { font-size: 22px; }
    .np-trust3__modal { padding: 12px; }
    .np-trust3__modal-dialog { border-radius: 21px; }
    .np-trust3__modal-frame { aspect-ratio: 9 / 16; max-height: calc(100vh - 24px); }
  }



  

  .np-quiz,
  .np-quiz * { box-sizing: border-box; }

  .np-quiz {
    --q-bg: #F5F0E7;
    --q-coral: #EFA7A0;
    --q-coral-dark: #D9827A;
    --q-sage: #8FC9B6;
    --q-sage-dark: #4F8575;
    --q-text: #3F3F3F;
    --q-white: #FFFFFF;
    --q-line: rgba(63,63,63,.11);
    --q-muted: rgba(63,63,63,.66);
    --q-shadow: 0 24px 68px rgba(63,63,63,.10);
    --q-decor-size: clamp(230px, 30vw, 430px);

    position: relative;
    width: 100%;
    min-height: min(900px, 100svh);
    padding: clamp(76px, 8.5vw, 118px) 24px;
    overflow: hidden;
    color: var(--q-text);
    background: var(--q-bg);
    font-family: var(--t-text-font, Arial, sans-serif);
  }

  .np-quiz::before {
    content: "";
    position: absolute;
    width: var(--q-decor-size);
    aspect-ratio: 1;
    left: calc(var(--q-decor-size) * -.52);
    bottom: calc(var(--q-decor-size) * -.58);
    border-radius: 50%;
    background: rgba(143,201,182,.21);
    pointer-events: none;
  }

  .np-quiz::after {
    content: "";
    position: absolute;
    width: var(--q-decor-size);
    aspect-ratio: 1;
    right: calc(var(--q-decor-size) * -.47);
    top: calc(var(--q-decor-size) * -.55);
    border-radius: 50%;
    background: rgba(239,167,160,.15);
    pointer-events: none;
  }

  .np-quiz__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
  }

  .np-quiz__layout {
    display: grid;
    grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
    gap: clamp(48px, 7vw, 100px);
    align-items: center;
  }

  
  .np-quiz__intro {
    min-width: 0;
    padding: 8px 0;
  }

  .np-quiz__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 20px;
    color: var(--q-sage-dark);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .np-quiz__eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    border-radius: 100px;
    background: var(--q-sage);
  }

  .np-quiz__title {
    max-width: 570px;
    margin: 0;
    color: var(--q-coral);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(40px, 4.6vw, 64px);
    font-weight: 700;
    line-height: 1.01;
    letter-spacing: -.043em;
    text-wrap: balance;
  }

  .np-quiz__lead {
    max-width: 485px;
    margin: 27px 0 0;
    font-size: 16px;
    line-height: 1.68;
    color: var(--q-muted);
  }

  .np-quiz__trust {
    display: grid;
    gap: 16px;
    max-width: 480px;
    margin-top: 38px;
    padding-top: 28px;
    border-top: 1px solid var(--q-line);
  }

  .np-quiz__trust-row {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .np-quiz__trust-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--q-sage-dark);
    background: rgba(143,201,182,.18);
  }

  .np-quiz__trust-icon svg {
    width: 16px;
    height: 16px;
  }

  .np-quiz__trust-text {
    margin: 4px 0 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--q-muted);
  }

  
  .np-quiz__shell {
    position: relative;
    min-width: 0;
    min-height: 680px;
    padding: clamp(28px, 4vw, 48px);
    overflow: hidden;
    border-radius: 34px;
    background: rgba(255,255,255,.90);
    box-shadow: var(--q-shadow);
  }

  .np-quiz__shell::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: -82px;
    bottom: -88px;
    border-radius: 50%;
    background: rgba(143,201,182,.16);
    pointer-events: none;
  }

  .np-quiz__top {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    margin-bottom: 38px;
  }

  .np-quiz__progress-wrap { min-width: 0; }

  .np-quiz__progress-label {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
    color: var(--q-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
  }

  .np-quiz__progress {
    width: 100%;
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(63,63,63,.08);
  }

  .np-quiz__progress-bar {
    display: block;
    width: 20%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--q-coral), var(--q-sage));
    transition: width .35s ease;
  }

  .np-quiz__time {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--q-sage-dark);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
  }

  .np-quiz__time svg {
    width: 16px;
    height: 16px;
  }

  .np-quiz__form {
    position: relative;
    z-index: 2;
  }

  .np-quiz__step {
    display: none;
    min-height: 440px;
    animation: npQuizIn .34s ease both;
  }

  .np-quiz__step.is-active {
    display: flex;
    flex-direction: column;
  }

  @keyframes npQuizIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .np-quiz__question {
    max-width: 650px;
    margin: 0;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(25px, 2.8vw, 36px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -.025em;
    text-wrap: balance;
  }

  .np-quiz__question:focus { outline: none; }

  .np-quiz__hint {
    margin: 13px 0 0;
    color: var(--q-muted);
    font-size: 14px;
    line-height: 1.55;
  }

  .np-quiz__options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
  }

  .np-quiz__options--single { grid-template-columns: 1fr; }

  .np-quiz__option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 66px;
    padding: 16px 18px;
    border: 1px solid rgba(63,63,63,.12);
    border-radius: 18px;
    background: rgba(245,240,231,.34);
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
  }

  .np-quiz__option:hover {
    transform: translateY(-1px);
    border-color: rgba(143,201,182,.70);
    background: rgba(143,201,182,.08);
  }

  .np-quiz__option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .np-quiz__mark {
    position: relative;
    flex: 0 0 auto;
    width: 25px;
    height: 25px;
    border: 1.5px solid rgba(63,63,63,.25);
    border-radius: 50%;
    background: #fff;
    transition: border-color .2s ease, background .2s ease;
  }

  input[type="checkbox"] + .np-quiz__mark { border-radius: 8px; }

  .np-quiz__mark::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: inherit;
    background: #fff;
    opacity: 0;
    transform: scale(.5);
    transition: opacity .18s ease, transform .18s ease;
  }

  .np-quiz__option:has(input:checked) {
    border-color: var(--q-sage);
    background: rgba(143,201,182,.14);
    box-shadow: 0 10px 24px rgba(79,133,117,.08);
  }

  .np-quiz__option input:checked + .np-quiz__mark {
    border-color: var(--q-sage-dark);
    background: var(--q-sage);
  }

  .np-quiz__option input:checked + .np-quiz__mark::after {
    opacity: 1;
    transform: scale(1);
  }

  .np-quiz__option input[type="checkbox"]:checked + .np-quiz__mark::after {
    inset: auto;
    width: 9px;
    height: 5px;
    left: 7px;
    top: 7px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    border-radius: 0;
    background: transparent;
    transform: rotate(-45deg);
  }

  .np-quiz__option-text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.38;
  }

  .np-quiz__other {
    display: none;
    margin-top: 14px;
  }

  .np-quiz__other.is-visible { display: block; }

  .np-quiz__field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 30px;
  }

  .np-quiz__field { min-width: 0; }

  .np-quiz__field--wide { grid-column: 1 / -1; }

  .np-quiz__label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--q-muted);
  }

  .np-quiz__input,
  .np-quiz__textarea {
    display: block;
    width: 100%;
    border: 1px solid rgba(63,63,63,.14);
    border-radius: 16px;
    background: rgba(245,240,231,.40);
    color: var(--q-text);
    font: inherit;
    font-size: 15px;
    line-height: 1.4;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  }

  .np-quiz__input {
    min-height: 56px;
    padding: 15px 17px;
  }

  .np-quiz__textarea {
    min-height: 90px;
    padding: 15px 17px;
    resize: vertical;
  }

  .np-quiz__input:focus,
  .np-quiz__textarea:focus {
    border-color: var(--q-sage);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(143,201,182,.12);
  }

  .np-quiz__privacy {
    margin: 14px 0 0;
    color: var(--q-muted);
    font-size: 11px;
    line-height: 1.5;
  }



  
  .np-quiz__final-title {
    max-width: 650px;
  }

  .np-quiz__final-copy {
    max-width: 650px;
    margin: 15px 0 0;
    color: var(--q-muted);
    font-size: 14px;
    line-height: 1.62;
  }

  .np-quiz__final-copy + .np-quiz__final-copy {
    margin-top: 10px;
  }

  .np-quiz__consent {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin-top: 18px;
    padding: 16px 17px;
    border: 1px solid rgba(63,63,63,.12);
    border-radius: 16px;
    background: rgba(245,240,231,.42);
  }

  .np-quiz__consent input {
    width: 21px;
    height: 21px;
    margin: 1px 0 0;
    accent-color: var(--q-sage-dark);
    cursor: pointer;
  }

  .np-quiz__consent-text {
    margin: 0;
    color: var(--q-muted);
    font-size: 11px;
    line-height: 1.55;
  }

  .np-quiz__consent-text label {
    cursor: pointer;
  }

  .np-quiz__consent-text a {
    color: var(--q-sage-dark);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
  }

  .np-quiz__submit-wrap {
    display: grid;
    justify-items: end;
    gap: 10px;
    max-width: 360px;
  }

  .np-quiz__response-time {
    margin: 0;
    color: var(--q-muted);
    font-size: 11px;
    line-height: 1.5;
    text-align: right;
  }

  .np-quiz__shell.is-final-step {
    min-height: 620px;
  }

  .np-quiz__shell.is-final-step .np-quiz__step {
    min-height: 0;
  }

  .np-quiz__shell.is-final-step .np-quiz__nav--final {
    margin-top: 24px;
    padding-top: 0;
  }

  
  .np-quiz__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 30px;
  }

  .np-quiz__back,
  .np-quiz__next,
  .np-quiz__submit,
  .np-quiz__success-button,
  .np-quiz__copy {
    border: 0;
    font-family: inherit;
    cursor: pointer;
  }

  .np-quiz__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 10px 2px;
    color: var(--q-muted);
    background: transparent;
    font-size: 13px;
    font-weight: 700;
  }

  .np-quiz__back[hidden] { display: none; }

  .np-quiz__back svg {
    width: 17px;
    height: 17px;
  }

  .np-quiz__next,
  .np-quiz__submit,
  .np-quiz__success-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 15px 24px;
    border-radius: 999px;
    background: var(--q-coral);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 11px 25px rgba(217,130,122,.24);
    transition: transform .2s ease, background .2s ease, opacity .2s ease, box-shadow .2s ease;
  }

  .np-quiz__next:hover,
  .np-quiz__submit:hover,
  .np-quiz__success-button:hover {
    transform: translateY(-2px);
    background: var(--q-coral-dark);
    box-shadow: 0 15px 30px rgba(217,130,122,.29);
  }

  .np-quiz__next:disabled,
  .np-quiz__submit:disabled {
    opacity: .42;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }

  .np-quiz__next svg,
  .np-quiz__submit svg,
  .np-quiz__success-button svg {
    width: 17px;
    height: 17px;
  }

  .np-quiz__error {
    min-height: 20px;
    margin: 12px 0 0;
    color: #B45D57;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
  }

  
  .np-quiz__success {
    display: none;
    min-height: 510px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .np-quiz__success.is-active { display: flex; }

  .np-quiz__success-inner {
    width: 100%;
    max-width: 560px;
  }

  .np-quiz__success-icon {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    border-radius: 50%;
    color: var(--q-sage-dark);
    background: rgba(143,201,182,.20);
  }

  .np-quiz__success-icon svg {
    width: 31px;
    height: 31px;
  }

  .np-quiz__success-title {
    margin: 0;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.025em;
  }

  .np-quiz__success-text {
    max-width: 500px;
    margin: 17px auto 0;
    color: var(--q-muted);
    font-size: 15px;
    line-height: 1.65;
  }

  .np-quiz__success-text + .np-quiz__success-text {
    margin-top: 9px;
  }

  .np-quiz__summary {
    margin: 26px 0 0;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(245,240,231,.62);
    color: var(--q-muted);
    font-size: 12px;
    line-height: 1.55;
    text-align: left;
    white-space: pre-wrap;
  }

  .np-quiz__success-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
  }

  .np-quiz__copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 14px 20px;
    border: 1px solid rgba(63,63,63,.15);
    border-radius: 999px;
    background: #fff;
    color: var(--q-text);
    font-size: 13px;
    font-weight: 700;
  }

  .np-quiz__copy svg {
    width: 16px;
    height: 16px;
  }

  
  @media (max-width: 980px) {
    .np-quiz {
      min-height: 0;
      padding: clamp(72px, 9vw, 104px) 20px;
    }

    .np-quiz__layout {
      grid-template-columns: 1fr;
      gap: 42px;
    }

    .np-quiz__title,
    .np-quiz__lead { max-width: 760px; }

    .np-quiz__trust {
      max-width: 760px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px 28px;
    }

    .np-quiz__shell { min-height: 620px; }
  }

  @media (max-width: 680px) {
    .np-quiz { padding: 66px 16px; }

    .np-quiz__trust { grid-template-columns: 1fr; }

    .np-quiz__shell {
      min-height: 0;
      padding: 25px 20px;
      border-radius: 25px;
    }

    .np-quiz__top {
      grid-template-columns: 1fr;
      gap: 13px;
      margin-bottom: 30px;
    }

    .np-quiz__time { justify-self: start; }

    .np-quiz__step { min-height: 500px; }

    .np-quiz__options,
    .np-quiz__field-grid {
      grid-template-columns: 1fr;
    }

    .np-quiz__field--wide { grid-column: auto; }

    .np-quiz__option {
      min-height: 60px;
      padding: 14px 15px;
      border-radius: 16px;
    }

    .np-quiz__nav {
      align-items: flex-end;
      gap: 10px;
    }

    .np-quiz__next,
    .np-quiz__submit {
      min-width: 148px;
      padding-left: 19px;
      padding-right: 19px;
    }
  }

  @media (max-width: 430px) {
    .np-quiz__nav { align-items: stretch; }

    .np-quiz__back { flex: 0 0 auto; }

    .np-quiz__next,
    .np-quiz__submit {
      flex: 1 1 auto;
      min-width: 0;
    }

    .np-quiz__success-actions {
      flex-direction: column;
    }

    .np-quiz__success-button,
    .np-quiz__copy { width: 100%; }
  }



  @media (max-width: 680px) {
    .np-quiz__shell.is-final-step { min-height: 0; }

    .np-quiz__final-copy { font-size: 13px; }

    .np-quiz__consent {
      grid-template-columns: 22px minmax(0, 1fr);
      padding: 14px;
    }

    .np-quiz__submit-wrap {
      width: 100%;
      max-width: none;
      justify-items: stretch;
    }

    .np-quiz__response-time { text-align: left; }
  }

  @media (max-width: 430px) {
    .np-quiz__nav--final {
      flex-direction: column-reverse;
      align-items: stretch;
    }

    .np-quiz__nav--final .np-quiz__back {
      justify-content: center;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .np-quiz__step,
    .np-quiz__progress-bar,
    .np-quiz__option,
    .np-quiz__next,
    .np-quiz__submit,
    .np-quiz__success-button {
      animation: none !important;
      transition: none !important;
    }
  }


  

  .aboutn,
  .aboutn * { box-sizing: border-box; }

  .aboutn {
    --about-bg: #F5F0E7;
    --about-coral: #EFA7A0;
    --about-coral-dark: #D9827A;
    --about-sage: #8FC9B6;
    --about-sage-dark: #4F8575;
    --about-text: #3F3F3F;
    --about-white: #FFFFFF;
    --about-line: rgba(63, 63, 63, 0.12);
    --about-radius: 32px;
    --np-container: 1260px;
    --np-title-size: clamp(44px, 4.45vw, 64px);
    --np-corner-size: clamp(310px, 31vw, 430px);

    position: relative;
    width: 100%;
    padding: clamp(76px, 9vw, 122px) 24px;
    overflow: hidden;
    color: var(--about-text);
    background: var(--about-bg);
    font-family: var(--t-text-font, Arial, sans-serif);
  }

  
  .aboutn__decor-clip {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .aboutn__corner-accent {
    position: absolute;
    right: calc(var(--np-corner-size) * -.40);
    bottom: calc(var(--np-corner-size) * -.62);
    width: var(--np-corner-size);
    aspect-ratio: 1;
  }

  .aboutn__corner-accent::before,
  .aboutn__corner-accent::after {
    content: "";
    position: absolute;
    border-radius: 50%;
  }

  .aboutn__corner-accent::before {
    inset: 0;
    background: rgba(143,201,182,.19);
  }

  .aboutn__corner-accent::after {
    width: 78%;
    aspect-ratio: 1;
    right: -2%;
    top: -24%;
    background: rgba(239,167,160,.13);
  }

  .aboutn__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--np-container);
    margin: 0 auto;
  }

  .aboutn__layout {
    display: grid;
    grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(52px, 7vw, 100px);
  }

  
  .aboutn__photo-wrap {
    position: relative;
    width: 100%;
    max-width: 390px;
    justify-self: start;
  }

  .aboutn__photo-wrap::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: 76%;
    height: 54%;
    right: -26px;
    bottom: -26px;
    border-radius: 34px;
    background: rgba(143, 201, 182, 0.42);
  }

  .aboutn__photo {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 9 / 16;
    margin: 0;
    overflow: hidden;
    border-radius: var(--about-radius);
    background:
      radial-gradient(circle at 30% 18%, rgba(255,255,255,.50), transparent 34%),
      linear-gradient(155deg, #EBC9C4 0%, #DCEBE5 100%);
    box-shadow: 0 22px 56px rgba(63, 63, 63, 0.11);
  }

  .aboutn__photo-img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
  }

  .aboutn__photo-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 36px;
    text-align: center;
    color: #fff;
  }

  .aboutn__photo-placeholder span {
    display: grid;
    place-items: center;
    width: 96px;
    height: 96px;
    margin: 0 auto 16px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;
    background: rgba(255,255,255,.24);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 42px;
    font-weight: 700;
    backdrop-filter: blur(8px);
  }

  .aboutn__photo-placeholder strong {
    display: block;
    margin-bottom: 7px;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 18px;
  }

  .aboutn__photo-placeholder small {
    display: block;
    max-width: 235px;
    font-size: 12px;
    line-height: 1.45;
    opacity: .84;
  }

  .aboutn__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(32,32,32,0) 57%, rgba(32,32,32,.66) 100%);
    pointer-events: none;
  }

  .aboutn__photo-caption {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 27px;
    left: 28px;
    color: #fff;
  }

  .aboutn__photo-name {
    margin: 0 0 5px;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(27px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.02em;
  }

  .aboutn__photo-role {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
    opacity: .9;
  }

  
  .aboutn__content {
    min-width: 0;
    padding: 12px 0;
  }

  .aboutn__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 18px;
    color: var(--about-sage-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
  }

  .aboutn__eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    border-radius: 999px;
    background: var(--about-sage);
  }

  .aboutn__title {
    max-width: 790px;
    margin: 0 0 30px;
    color: var(--about-coral);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: var(--np-title-size);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.036em;
    text-transform: uppercase;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
  }

  .aboutn__lead {
    max-width: 760px;
    margin: 0 0 25px;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(22px, 2.5vw, 31px);
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: -0.018em;
  }

  .aboutn__text {
    max-width: 690px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    opacity: .80;
  }

  
  .aboutn__note {
    position: relative;
    max-width: 760px;
    margin-top: 38px;
    padding: 27px 34px 28px 38px;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 18px 48px rgba(63,63,63,.055);
  }

  .aboutn__note::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 6px;
    background: var(--about-sage);
  }

  .aboutn__note-label {
    display: block;
    margin-bottom: 9px;
    color: var(--about-sage-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  .aboutn__note-text {
    max-width: 640px;
    margin: 0;
    font-size: 16px;
    line-height: 1.62;
  }

  
  .aboutn__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 760px;
    margin: 36px 0 0;
    padding: 25px 0 0;
    border-top: 1px solid var(--about-line);
  }

  .aboutn__fact {
    min-width: 0;
    padding: 0 24px;
  }

  .aboutn__fact:first-child { padding-left: 0; }
  .aboutn__fact + .aboutn__fact { border-left: 1px solid var(--about-line); }

  .aboutn__fact-strong {
    display: block;
    margin-bottom: 6px;
    color: var(--about-text);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
  }

  .aboutn__fact-small {
    display: block;
    font-size: 12.5px;
    line-height: 1.45;
    opacity: .66;
  }



  
  .aboutn__education {
    max-width: 760px;
    margin-top: 36px;
    padding: 0;
    border-top: 1px solid var(--about-line);
    border-bottom: 1px solid var(--about-line);
  }

  .aboutn__education-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0 18px;
  }

  .aboutn__education-title {
    margin: 0;
    color: var(--about-text);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
  }

  .aboutn__diplomas-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--about-coral-dark);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color .2s ease, transform .2s ease;
  }

  .aboutn__diplomas-button:hover {
    color: var(--about-coral);
    transform: translateY(-1px);
  }

  .aboutn__diplomas-button svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
  }

  .aboutn__education-list {
    margin: 0;
    padding: 0 0 22px;
    list-style: none;
  }

  .aboutn__education-item {
    display: grid;
    grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
    gap: 28px;
    padding: 15px 0;
    border-top: 1px solid rgba(63,63,63,.075);
  }

  .aboutn__education-name {
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.42;
  }

  .aboutn__education-detail {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    opacity: .73;
  }

  
  .aboutn__diploma-modal {
    --about-coral: #EFA7A0;
    --about-coral-dark: #D9827A;
    --about-text: #3F3F3F;
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(43,43,43,.86);
    backdrop-filter: blur(9px);
    opacity: 0;
    transition: opacity .25s ease;
    color: var(--about-text);
    font-family: var(--t-text-font, Arial, sans-serif);
  }

  .aboutn__diploma-modal.is-open {
    display: flex;
    opacity: 1;
  }

  .aboutn__diploma-dialog {
    position: relative;
    width: min(920px, 100%);
    max-height: 92vh;
    padding: 30px;
    overflow: hidden;
    border-radius: 28px;
    background: #FBF8F3;
    box-shadow: 0 28px 80px rgba(0,0,0,.28);
  }

  .aboutn__diploma-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    padding-right: 48px;
  }

  .aboutn__diploma-heading {
    margin: 0 0 5px;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
  }

  .aboutn__diploma-caption {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    opacity: .67;
  }

  .aboutn__diploma-close {
    position: absolute;
    top: 22px;
    right: 22px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(63,63,63,.08);
    color: var(--about-text);
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
  }

  .aboutn__diploma-close:hover {
    background: rgba(63,63,63,.14);
    transform: rotate(90deg);
  }

  .aboutn__diploma-close svg { width: 21px; height: 21px; }

  .aboutn__diploma-stage {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 430px;
    max-height: calc(92vh - 190px);
    overflow: auto;
    padding: 18px;
    border-radius: 20px;
    background: #EFEAE2;
  }

  .aboutn__diploma-image {
    display: block;
    max-width: 100%;
    max-height: calc(92vh - 230px);
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 34px rgba(63,63,63,.15);
  }

  .aboutn__diploma-empty {
    max-width: 440px;
    padding: 44px 28px;
    text-align: center;
    color: var(--about-text);
  }

  .aboutn__diploma-empty strong {
    display: block;
    margin-bottom: 8px;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 18px;
  }

  .aboutn__diploma-empty span {
    display: block;
    font-size: 13px;
    line-height: 1.55;
    opacity: .65;
  }

  .aboutn__diploma-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
  }

  .aboutn__diploma-arrow {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(63,63,63,.12);
    border-radius: 50%;
    background: #fff;
    color: var(--about-text);
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease;
  }

  .aboutn__diploma-arrow:hover {
    transform: translateY(-1px);
    border-color: rgba(239,167,160,.8);
  }

  .aboutn__diploma-arrow svg { width: 18px; height: 18px; }

  .aboutn__diploma-counter {
    min-width: 64px;
    text-align: center;
    font-size: 13px;
    opacity: .68;
  }

  .aboutn__diploma-sources { display: none; }

  
  .aboutn__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 760px;
    margin-top: 34px;
  }

  .aboutn__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 16px 27px;
    border-radius: 999px;
    background: var(--about-coral);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 9px 24px rgba(217, 130, 122, .25);
    transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
  }

  .aboutn__button:hover {
    transform: translateY(-2px);
    background: var(--about-coral-dark);
    box-shadow: 0 13px 28px rgba(217, 130, 122, .30);
  }

  .aboutn__button svg {
    width: 17px;
    height: 17px;
  }

  .aboutn__location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    line-height: 1.35;
    opacity: .68;
  }

  .aboutn__location svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: var(--about-sage-dark);
  }

  
  .aboutn__reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .65s ease, transform .65s ease;
  }

  .aboutn__reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  
  @media (max-width: 980px) {
    .aboutn {
      --np-title-size: clamp(42px, 7.2vw, 60px);
      --np-corner-size: clamp(280px, 40vw, 380px);
      padding: clamp(72px, 9vw, 104px) 20px;
    }

    .aboutn__layout {
      grid-template-columns: minmax(280px, 350px) minmax(0, 1fr);
      gap: 46px;
      align-items: start;
    }

    .aboutn__lead { font-size: 23px; }
    .aboutn__facts { grid-template-columns: 1fr; gap: 17px; }
    .aboutn__fact,
    .aboutn__fact:first-child { padding: 0; }
    .aboutn__fact + .aboutn__fact {
      padding-top: 17px;
      border-top: 1px solid var(--about-line);
      border-left: 0;
    }
  }

  @media (max-width: 920px) {
    .aboutn {
      --np-title-size: clamp(34px, 10.4vw, 44px);
      --np-corner-size: 230px;
      padding: 66px 16px 70px;
    }

    .aboutn__layout {
      grid-template-columns: 1fr;
      gap: 46px;
    }

    .aboutn__photo-wrap {
      width: min(82vw, 360px);
      justify-self: center;
    }

    .aboutn__photo-wrap::before {
      right: -17px;
      bottom: -17px;
    }

    .aboutn__content { padding: 0; }
    .aboutn__title { margin-bottom: 24px; }
    .aboutn__lead { font-size: 22px; }
    .aboutn__text { font-size: 15px; }
    .aboutn__note { margin-top: 30px; padding: 24px 24px 24px 29px; }
    .aboutn__note-text { font-size: 15px; }


    .aboutn__education-head {
      align-items: flex-start;
      flex-direction: column;
      gap: 10px;
    }

    .aboutn__education-item {
      grid-template-columns: 1fr;
      gap: 5px;
    }

    .aboutn__diploma-dialog {
      padding: 24px 18px 18px;
      border-radius: 22px;
    }

    .aboutn__diploma-top { padding-right: 42px; }
    .aboutn__diploma-heading { font-size: 21px; }
    .aboutn__diploma-stage { min-height: 360px; padding: 12px; }

    .aboutn__actions { align-items: stretch; flex-direction: column; }
    .aboutn__button {
      width: 100%;
      padding-right: 18px;
      padding-left: 18px;
      font-size: 13.5px;
    }
  }

  @media (max-width: 430px) {
    .aboutn__corner-accent {
      right: calc(var(--np-corner-size) * -.48);
      bottom: calc(var(--np-corner-size) * -.64);
    }

    .aboutn__photo-wrap { width: min(88vw, 330px); }
    .aboutn__photo-caption { right: 22px; bottom: 22px; left: 22px; }
    .aboutn__photo-name { font-size: 29px; }
    .aboutn__lead { font-size: 20px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .aboutn__button,
    .aboutn__reveal { transition: none !important; }
  }


  

  .np-work,
  .np-work *,
  .np-work__shell,
  .np-work__shell * { box-sizing: border-box; }

  .np-work {
    --w-bg: #F5F0E7;
    --w-coral: #EFA7A0;
    --w-coral-dark: #D9827A;
    --w-sage: #8FC9B6;
    --w-sage-dark: #4F8575;
    --w-text: #3F3F3F;
    --w-muted: rgba(63,63,63,.70);
    --w-white: #FFFFFF;
    --w-line: rgba(63,63,63,.10);
    --w-shadow: 0 24px 68px rgba(63,63,63,.085);
    --np-container: 1260px;
    --np-title-size: clamp(44px, 4.45vw, 64px);
    --np-corner-size: clamp(310px, 31vw, 430px);
    --np-radius: 32px;

    position: relative;
    width: 100%;
    padding: clamp(76px, 9vw, 122px) 24px clamp(34px, 4vw, 56px);
    overflow: visible;
    overflow-x: clip;
    overflow-y: visible;
    color: var(--w-text);
    background: var(--w-bg);
    font-family: var(--t-text-font, Arial, sans-serif);
  }

  
  .np-work__decor-clip {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .np-work__corner-accent {
    position: absolute;
    left: calc(var(--np-corner-size) * -.40);
    bottom: calc(var(--np-corner-size) * -.62);
    width: var(--np-corner-size);
    aspect-ratio: 1;
  }

  .np-work__corner-accent::before,
  .np-work__corner-accent::after {
    content: "";
    position: absolute;
    border-radius: 50%;
  }

  .np-work__corner-accent::before {
    inset: 0;
    background: rgba(143,201,182,.19);
  }

  .np-work__corner-accent::after {
    width: 78%;
    aspect-ratio: 1;
    left: -2%;
    top: -24%;
    background: rgba(239,167,160,.13);
  }

  .np-work__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--np-container);
    margin: 0 auto;
  }

  .np-work__header {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(310px, .72fr);
    gap: clamp(38px, 7vw, 92px);
    align-items: end;
    margin-bottom: clamp(42px, 5.2vw, 66px);
  }

  .np-work__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 18px;
    color: var(--w-sage-dark);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .np-work__eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    border-radius: 999px;
    background: var(--w-sage);
  }

  .np-work__title {
    max-width: 850px;
    margin: 0;
    color: var(--w-coral);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: var(--np-title-size);
    font-weight: 700;
    line-height: 1.01;
    letter-spacing: -.042em;
    text-wrap: balance;
  }

  .np-work__intro {
    max-width: 485px;
    margin: 0 0 5px;
    color: var(--w-muted);
    font-size: 16px;
    line-height: 1.7;
  }

  .np-work__story {
    position: relative;
  }

  .np-work__shell {
    display: grid;
    grid-template-columns: minmax(330px, .76fr) minmax(0, 1.24fr);
    min-height: 620px;
    overflow: hidden;
    border-radius: var(--np-radius);
    background: var(--w-white);
    box-shadow: var(--w-shadow);
  }

  @media (min-width: 981px) {
    .np-work__shell {
      position: sticky;
      top: var(--np-work-pin-top, 88px);
    }
  }

  
  .np-work__nav {
    position: relative;
    padding: clamp(30px, 4vw, 52px);
    background:
      radial-gradient(circle at 15% 8%, rgba(143,201,182,.22), transparent 34%),
      linear-gradient(180deg, rgba(245,240,231,.96), rgba(245,240,231,.62));
  }

  .np-work__nav::after {
    content: "";
    position: absolute;
    top: 54px;
    bottom: 54px;
    left: clamp(55px, 6.2vw, 78px);
    width: 1px;
    background: rgba(79,133,117,.18);
  }

  .np-work__nav-kicker {
    margin: 0 0 24px;
    padding-left: clamp(55px, 6.2vw, 78px);
    color: var(--w-sage-dark);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .np-work__tabs {
    display: grid;
    gap: 11px;
  }

  .np-work__mobile-pane { display: none; }

  .np-work__tab {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 24px;
    gap: 20px;
    align-items: center;
    width: 100%;
    min-height: 102px;
    padding: 17px 16px 17px 0;
    border: 0;
    border-radius: 24px;
    color: inherit;
    background: transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: transform .42s cubic-bezier(.22,.61,.36,1);
  }

  .np-work__tab::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 6px;
    right: 0;
    bottom: 6px;
    left: 64px;
    border: 1px solid transparent;
    border-radius: 22px;
    background: transparent;
    box-shadow: none;
    transition: background .42s ease, border-color .42s ease, box-shadow .42s ease, transform .42s cubic-bezier(.22,.61,.36,1);
  }

  .np-work__tab:hover::before {
    background: rgba(255,255,255,.58);
  }

  .np-work__tab.is-active {
    transform: translateX(3px);
  }

  .np-work__tab.is-active::before {
    background: var(--w-white);
    border-color: rgba(239,167,160,.13);
    box-shadow: 0 14px 38px rgba(63,63,63,.08);
    transform: translateX(2px);
  }

  .np-work__tab-number {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 5px solid rgba(245,240,231,.96);
    border-radius: 50%;
    color: var(--w-sage-dark);
    background: rgba(255,255,255,.82);
    box-shadow: 0 0 0 1px rgba(143,201,182,.24);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    transition: color .42s ease, background .42s ease, box-shadow .42s ease, transform .42s cubic-bezier(.22,.61,.36,1);
  }


  .np-work__tab.is-active .np-work__tab-number {
    color: #FFFFFF;
    background: var(--w-coral);
    box-shadow: 0 8px 22px rgba(217,130,122,.24);
    transform: scale(1.035);
  }

  .np-work__tab-copy {
    min-width: 0;
    padding-left: 12px;
  }

  .np-work__tab-label {
    display: block;
    margin-bottom: 5px;
    color: var(--w-sage-dark);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: .07em;
    text-transform: uppercase;
  }

  .np-work__tab-title {
    display: block;
    max-width: 260px;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.018em;
  }

  .np-work__tab-arrow {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: rgba(63,63,63,.34);
    transition: transform .42s cubic-bezier(.22,.61,.36,1), color .42s ease;
  }

  .np-work__tab-arrow svg { width: 17px; height: 17px; }

  .np-work__tab.is-active .np-work__tab-arrow {
    color: var(--w-coral-dark);
    transform: translateX(3px);
  }

  
  .np-work__content {
    position: relative;
    display: grid;
    min-width: 0;
    padding: clamp(38px, 5.2vw, 70px);
  }

  .np-work__content::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(143,201,182,.12);
    pointer-events: none;
  }

  .np-work__pane {
    position: relative;
    z-index: 1;
    grid-area: 1 / 1;
    align-self: start;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(7px);
    transition:
      opacity .16s ease,
      transform .18s cubic-bezier(.22,.61,.36,1),
      visibility 0s linear .18s;
  }

  .np-work__pane.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  @keyframes npWorkFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .np-work__pane-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
  }

  .np-work__pane-step {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 11px;
    border-radius: 999px;
    color: var(--w-sage-dark);
    background: rgba(143,201,182,.14);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .07em;
    text-transform: uppercase;
  }

  .np-work__pane-line {
    width: 38px;
    height: 1px;
    background: rgba(143,201,182,.55);
  }

  .np-work__pane-title {
    max-width: 650px;
    margin: 0 0 20px;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(31px, 3.2vw, 45px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.035em;
    text-wrap: balance;
  }

  .np-work__pane-copy {
    max-width: 710px;
    margin: 0;
    color: var(--w-muted);
    font-size: 17px;
    line-height: 1.72;
  }

  .np-work__pane-copy strong {
    color: var(--w-text);
    font-weight: 700;
  }

  .np-work__visual-note {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    max-width: 680px;
    margin-top: 30px;
    padding: 21px 22px;
    border-radius: 22px;
    color: var(--w-sage-dark);
    background: rgba(143,201,182,.13);
  }

  .np-work__visual-note-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--w-sage-dark);
    background: rgba(255,255,255,.72);
  }

  .np-work__visual-note-icon svg { width: 21px; height: 21px; }

  .np-work__visual-note strong {
    display: block;
    margin-bottom: 3px;
    font-size: 15px;
    line-height: 1.35;
  }

  .np-work__visual-note span {
    display: block;
    font-size: 14px;
    line-height: 1.5;
  }

  .np-work__visual-note--plain {
    display: block;
    max-width: 640px;
    padding: 20px 22px 20px 25px;
    border-left: 3px solid var(--w-coral);
    color: var(--w-text);
    background: linear-gradient(90deg, rgba(239,167,160,.13), rgba(245,240,231,.64));
  }

  .np-work__visual-note--plain strong {
    color: var(--w-coral-dark);
  }

  .np-work__scroll-hint {
    position: absolute;
    left: clamp(30px, 4vw, 52px);
    right: clamp(30px, 4vw, 52px);
    bottom: 24px;
    display: none;
    align-items: center;
    gap: 10px;
    color: rgba(79,133,117,.72);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .02em;
  }

  .np-work__scroll-hint::before {
    content: "";
    width: 28px;
    height: 1px;
    background: rgba(143,201,182,.65);
  }

  
  .np-work__outcome {
    margin-top: 30px;
    padding: clamp(24px, 3vw, 32px);
    border-radius: 26px;
    background: rgba(245,240,231,.72);
    border: 1px solid rgba(143,201,182,.23);
  }

  .np-work__outcome-title {
    margin: 0 0 19px;
    color: var(--w-sage-dark);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.018em;
  }

  .np-work__outcome-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .np-work__outcome-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 48px;
    padding: 11px 13px;
    border-radius: 15px;
    color: var(--w-text);
    background: rgba(255,255,255,.72);
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.42;
  }

  .np-work__dot {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--w-sage);
  }

  
  .np-work__results {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
  }

  .np-work__result {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 66px;
    padding: 14px 16px;
    border-radius: 18px;
    color: var(--w-text);
    background: rgba(245,240,231,.64);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.42;
  }

  .np-work__check {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--w-sage-dark);
    background: rgba(143,201,182,.17);
  }

  .np-work__check svg { width: 14px; height: 14px; }

  .np-work__reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
  }

  .np-work__reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (min-width: 981px) {
    .np-work {
      overflow: visible;
    }


    .np-work__story {
      position: relative;
      min-height: 0;
    }

    .np-work__shell {
      position: sticky;
      top: var(--np-work-pin-top, 88px);
      left: auto;
      width: 100%;
      min-height: min(650px, calc(100vh - 40px));
    }


    .np-work__shell.np-work__shell--fixed {
      position: fixed !important;
      z-index: 10000;
      margin: 0 !important;
    }

    .np-work__shell.np-work__shell--ended {
      position: absolute !important;
      top: auto !important;
      right: 0 !important;
      bottom: 0 !important;
      left: 0 !important;
      width: 100% !important;
      margin: 0 !important;
    }

    .np-work__scroll-hint {
      display: flex;
    }

    .np-work__nav {
      padding-bottom: 66px;
    }
  }

  @media (min-width: 981px) and (max-height: 780px) {
    .np-work__shell {
      min-height: 610px;
    }

    .np-work__nav {
      padding: 28px 36px 54px;
    }

    .np-work__nav::after {
      top: 42px;
      bottom: 42px;
      left: 62px;
    }

    .np-work__nav-kicker {
      margin-bottom: 14px;
      padding-left: 62px;
    }

    .np-work__tab {
      min-height: 88px;
    }

    .np-work__content {
      padding: 34px 48px;
    }

    .np-work__pane-top {
      margin-bottom: 15px;
    }

    .np-work__pane-title {
      margin-bottom: 14px;
      font-size: clamp(32px, 3vw, 39px);
    }

    .np-work__pane-copy {
      font-size: 16px;
      line-height: 1.58;
    }

    .np-work__visual-note {
      margin-top: 20px;
      padding: 17px 19px;
    }

    .np-work__outcome {
      margin-top: 20px;
      padding: 20px;
    }

    .np-work__outcome-title {
      margin-bottom: 13px;
      font-size: 18px;
    }

    .np-work__outcome-list {
      gap: 8px;
    }

    .np-work__outcome-list li {
      min-height: 42px;
      padding: 8px 11px;
      font-size: 13px;
    }

    .np-work__results {
      margin-top: 20px;
      gap: 9px;
    }

    .np-work__result {
      min-height: 56px;
      padding: 11px 13px;
      font-size: 13.5px;
    }

    .np-work__scroll-hint {
      bottom: 14px;
    }
  }

  @media (max-width: 980px) {
    .np-work__header {
      grid-template-columns: 1fr;
      gap: 26px;
    }

    .np-work__intro { max-width: 680px; }

    .np-work__shell {
      grid-template-columns: minmax(280px, .88fr) minmax(0, 1.12fr);
    }

    .np-work__nav,
    .np-work__content { padding: 34px; }

    .np-work__nav::after { left: 58px; }
    .np-work__nav-kicker { padding-left: 58px; }
    .np-work__tab { grid-template-columns: 48px minmax(0, 1fr) 18px; gap: 16px; }
    .np-work__tab-title { font-size: 17px; }
    .np-work__pane-copy { font-size: 16px; }
  }

  @media (max-width: 860px) {
    .np-work {
      padding: 68px 16px 76px;
    }

    .np-work__header { margin-bottom: 36px; }

    .np-work__title {
      font-size: clamp(34px, 10.7vw, 44px);
      line-height: 1.03;
    }

    .np-work__intro {
      font-size: 15px;
      line-height: 1.62;
    }

    .np-work__shell {
      display: block;
      min-height: 0;
      margin: 0 -2px;
      border-radius: 26px;
      overflow: hidden;
    }

    .np-work__nav {
      padding: 24px 18px;
      background: var(--w-white);
    }

    .np-work__nav::after,
    .np-work__nav-kicker,
    .np-work__content { display: none; }

    .np-work__tabs { gap: 0; }

    .np-work__tab {
      grid-template-columns: 42px minmax(0, 1fr) 26px;
      gap: 13px;
      min-height: 0;
      padding: 22px 2px;
      border-radius: 0;
      border-bottom: 1px solid var(--w-line);
      background: transparent !important;
      box-shadow: none !important;
      transform: none !important;
    }

    .np-work__tab::before { display: none; }

    .np-work__tab:last-of-type { border-bottom: 0; }

    .np-work__tab-number {
      width: 42px;
      height: 42px;
      border-width: 4px;
    }

    .np-work__tab-copy { padding-left: 0; }

    .np-work__tab-title {
      max-width: none;
      font-size: 18px;
    }

    .np-work__tab-arrow {
      width: 26px;
      height: 26px;
      transform: rotate(90deg);
    }

    .np-work__tab.is-active .np-work__tab-arrow {
      transform: rotate(-90deg);
      color: var(--w-coral-dark);
    }

    .np-work__mobile-pane {
      grid-column: 1 / -1;
      display: none;
      padding: 4px 0 26px 55px;
      animation: npWorkFade .3s ease both;
    }

    .np-work__tab.is-active + .np-work__mobile-pane { display: block; }

    .np-work__mobile-pane .np-work__pane-top { display: none; }
    .np-work__mobile-pane .np-work__pane-title { display: none; }
    .np-work__mobile-pane .np-work__pane-copy {
      font-size: 15px;
      line-height: 1.62;
    }

    .np-work__mobile-pane .np-work__visual-note {
      grid-template-columns: 36px minmax(0, 1fr);
      gap: 12px;
      margin-top: 20px;
      padding: 17px;
      border-radius: 18px;
    }

    .np-work__mobile-pane .np-work__visual-note-icon {
      width: 36px;
      height: 36px;
    }

    .np-work__mobile-pane .np-work__visual-note--plain {
      display: block;
      padding: 16px 17px 16px 19px;
    }

    .np-work__mobile-pane .np-work__outcome {
      margin-top: 20px;
      padding: 18px;
      border-radius: 20px;
    }

    .np-work__mobile-pane .np-work__outcome-list,
    .np-work__mobile-pane .np-work__results {
      grid-template-columns: 1fr;
    }

    .np-work__mobile-pane .np-work__outcome-list li {
      min-height: 0;
      padding: 10px 11px;
    }

    .np-work__mobile-pane .np-work__results { margin-top: 20px; }
    .np-work__mobile-pane .np-work__result { min-height: 58px; }
  }

  @media (max-width: 480px) {
    .np-work {
      --np-corner-size: 230px;
    }

    .np-work__eyebrow {
      font-size: 11px;
    }

    .np-work__mobile-pane {
      padding-left: 50px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .np-work__reveal,
    .np-work__pane,
    .np-work__mobile-pane {
      opacity: 1;
      transform: none;
      animation: none;
      transition: none;
    }

    .np-work__tab { transition: none; }
  }


  .np-services2,
  .np-services2 * { box-sizing: border-box; }

  .np-services2 {
    --s-bg: #F5F0E7;
    --s-coral: #EFA7A0;
    --s-coral-dark: #D9827A;
    --s-sage: #8FC9B6;
    --s-sage-dark: #4F8575;
    --s-text: #3F3F3F;
    --s-white: #FFFFFF;
    --s-muted: rgba(63,63,63,.70);
    --s-line: rgba(63,63,63,.11);
    --s-shadow: 0 24px 68px rgba(63,63,63,.085);
    --np-container: 1260px;
    --np-title-size: clamp(44px, 4.45vw, 64px);
    --np-corner-size: clamp(310px, 31vw, 430px);
    --np-radius: 32px;

    position: relative;
    width: 100%;
    padding: clamp(76px, 9vw, 122px) 24px;
    overflow: visible;
    overflow-x: clip;
    overflow-y: visible;
    color: var(--s-text);
    background: var(--s-bg);
    font-family: var(--t-text-font, Arial, sans-serif);
  }

  
  .np-services2__decor-clip {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .np-services2__corner-accent {
    position: absolute;
    right: calc(var(--np-corner-size) * -.40);
    bottom: calc(var(--np-corner-size) * -.62);
    width: var(--np-corner-size);
    aspect-ratio: 1;
  }

  .np-services2__corner-accent::before,
  .np-services2__corner-accent::after {
    content: "";
    position: absolute;
    border-radius: 50%;
  }

  
  .np-services2__corner-accent::before {
    inset: 0;
    background: rgba(143,201,182,.19);
  }

  .np-services2__corner-accent::after {
    width: 78%;
    aspect-ratio: 1;
    right: -2%;
    top: -24%;
    background: rgba(239,167,160,.13);
  }

  .np-services2__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--np-container);
    margin: 0 auto;
  }

  .np-services2__header {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(310px, .72fr);
    gap: clamp(38px, 7vw, 92px);
    align-items: end;
    margin-bottom: clamp(44px, 5.5vw, 70px);
  }

  .np-services2__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 18px;
    color: var(--s-sage-dark);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .np-services2__eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    border-radius: 999px;
    background: var(--s-sage);
  }

  .np-services2__title {
    max-width: 830px;
    margin: 0;
    color: var(--s-coral);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: var(--np-title-size);
    font-weight: 700;
    line-height: 1.01;
    letter-spacing: -.042em;
    text-wrap: balance;
  }

  .np-services2__intro {
    max-width: 485px;
    margin: 0 0 5px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--s-muted);
  }

  
  .np-services2__main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
  }

  .np-services2__service {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 710px;
    padding: clamp(34px, 4.5vw, 56px);
    overflow: hidden;
    border-radius: var(--np-radius);
    transition: transform .25s ease, box-shadow .25s ease;
  }

  .np-services2__service:hover {
    transform: translateY(-3px);
    box-shadow: var(--s-shadow);
  }

  .np-services2__service--diagnostics {
    background:
      radial-gradient(circle at 88% 10%, rgba(255,255,255,.47), transparent 29%),
      linear-gradient(145deg, rgba(239,167,160,.92), rgba(239,167,160,.72));
  }

  .np-services2__service--sessions {
    background:
      radial-gradient(circle at 85% 10%, rgba(255,255,255,.70), transparent 30%),
      linear-gradient(145deg, rgba(143,201,182,.38), rgba(255,255,255,.86));
    border: 1px solid rgba(255,255,255,.74);
  }


  .np-services2__photo {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255,255,255,.28);
    border: 1px solid rgba(255,255,255,.42);
    isolation: isolate;
  }

  .np-services2__service--sessions .np-services2__photo {
    background: rgba(255,255,255,.56);
    border-color: rgba(255,255,255,.74);
  }

  .np-services2__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 54%, rgba(35,35,35,.16));
    opacity: 0;
    transition: opacity .25s ease;
  }

  .np-services2__photo.has-image::after {
    opacity: 1;
  }

  .np-services2__photo img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity .35s ease, transform .45s ease;
  }

  .np-services2__photo.has-image img {
    opacity: 1;
  }

  .np-services2__service:hover .np-services2__photo.has-image img {
    transform: scale(1.035);
  }

  .np-services2__photo-placeholder {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: flex-end;
    padding: 22px 24px;
    overflow: hidden;
    color: rgba(63,63,63,.67);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: .065em;
    text-transform: uppercase;
    transition: opacity .25s ease;
  }

  .np-services2__photo-placeholder::before,
  .np-services2__photo-placeholder::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }

  .np-services2__photo-placeholder::before {
    width: 170px;
    height: 170px;
    right: -36px;
    top: -62px;
    background: rgba(255,255,255,.30);
  }

  .np-services2__photo-placeholder::after {
    width: 96px;
    height: 96px;
    right: 76px;
    bottom: -54px;
    background: rgba(143,201,182,.18);
  }

  .np-services2__service--sessions .np-services2__photo-placeholder::after {
    background: rgba(239,167,160,.17);
  }

  .np-services2__photo.has-image .np-services2__photo-placeholder {
    opacity: 0;
  }

  .np-services2__service-title {
    width: 100%;
    max-width: 590px;
    margin: 26px 0 0;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(32px, 3.25vw, 46px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -.034em;
    text-wrap: balance;
    hyphens: manual;
    overflow-wrap: normal;
  }

  .np-services2__description {
    max-width: 565px;
    margin: 22px 0 0;
    color: rgba(63,63,63,.76);
    font-size: 16px;
    line-height: 1.68;
  }


  .np-services2__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
  }

  .np-services2__meta-item {
    min-width: 0;
    padding: 15px 17px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.39);
    border: 1px solid rgba(255,255,255,.40);
  }

  .np-services2__service--sessions .np-services2__meta-item {
    background: rgba(255,255,255,.64);
    border-color: rgba(255,255,255,.76);
  }

  .np-services2__meta-label {
    display: block;
    margin-bottom: 7px;
    color: rgba(63,63,63,.58);
    font-size: 9.5px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .07em;
    text-transform: uppercase;
  }

  .np-services2__service--diagnostics .np-services2__meta-label {
    color: rgba(63,63,63,.62);
  }

  .np-services2__meta-value {
    display: block;
    color: var(--s-text);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(19px, 1.75vw, 24px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.02em;
  }

  .np-services2__meta-note {
    display: block;
    margin-top: 5px;
    color: rgba(63,63,63,.61);
    font-size: 10.5px;
    line-height: 1.35;
  }

  .np-services2__service-bottom {
    margin-top: auto;
    padding-top: 40px;
  }

  .np-services2__points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .np-services2__points li {
    min-width: 0;
    padding-top: 13px;
    border-top: 1px solid rgba(63,63,63,.18);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.48;
  }

  .np-services2__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
  }

  .np-services2__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 14px 20px;
    border-radius: 999px;
    color: var(--s-text);
    background: rgba(255,255,255,.75);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .2s ease, background .2s ease;
  }

  .np-services2__button:hover {
    transform: translateY(-2px);
    background: #fff;
  }

  .np-services2__button svg,
  .np-services2__quiz-link svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
  }



  
  .np-services2__secondary {
    display: grid;
    grid-template-columns: minmax(320px, .88fr) minmax(280px, 1.12fr) auto;
    gap: clamp(24px, 3.7vw, 48px);
    align-items: center;
    margin-top: 18px;
    padding: clamp(28px, 3.3vw, 40px) clamp(28px, 4vw, 48px);
    border-radius: var(--np-radius);
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(255,255,255,.72);
  }

  .np-services2__secondary > * {
    min-width: 0;
  }

  .np-services2__secondary-label {
    margin: 0;
    color: var(--s-coral-dark);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .075em;
    text-transform: uppercase;
  }

  .np-services2__secondary-title {
    max-width: 560px;
    margin: 8px 0 0;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(23px, 2.2vw, 32px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.026em;
    text-wrap: balance;
    hyphens: manual;
    overflow-wrap: anywhere;
  }

  .np-services2__secondary-text {
    min-width: 0;
    max-width: 620px;
    margin: 0;
    color: var(--s-muted);
    font-size: 14px;
    line-height: 1.62;
  }

  .np-services2__secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 13px 18px;
    border-radius: 999px;
    color: var(--s-text);
    background: rgba(143,201,182,.25);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .2s ease, background .2s ease;
  }

  .np-services2__secondary-link:hover {
    transform: translateY(-2px);
    background: rgba(143,201,182,.38);
  }

  .np-services2__secondary-link svg {
    width: 17px;
    height: 17px;
  }

  .np-services2__bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: center;
    margin-top: 18px;
    padding: 25px 30px 0;
    border-top: 1px solid var(--s-line);
  }

  .np-services2__bottom-text {
    margin: 0;
    color: var(--s-muted);
    font-size: 14px;
    line-height: 1.55;
  }

  .np-services2__bottom-text strong {
    color: var(--s-text);
    font-weight: 700;
  }

  .np-services2__quiz-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--s-sage-dark);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    border-bottom: 1px solid rgba(79,133,117,.38);
    transition: transform .2s ease, border-color .2s ease;
  }

  .np-services2__quiz-link:hover {
    transform: translateX(2px);
    border-color: var(--s-sage-dark);
  }


  @media (max-width: 1180px) {
    .np-services2__secondary {
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 18px 28px;
      align-items: start;
    }

    .np-services2__secondary > div,
    .np-services2__secondary-text {
      grid-column: 1 / 2;
    }

    .np-services2__secondary-link {
      grid-column: 2 / 3;
      grid-row: 1 / 3;
      align-self: center;
    }

    .np-services2__secondary-title {
      max-width: 680px;
      font-size: clamp(23px, 2.7vw, 31px);
    }
  }

  @media (max-width: 1120px) {
    .np-services2__service {
      padding: 38px;
    }

    .np-services2__service-title {
      margin-top: 28px;
      font-size: clamp(31px, 3.65vw, 40px);
    }

    .np-services2__description {
      font-size: 15px;
    }
  }

  @media (max-width: 980px) {
    .np-services2__main-grid {
      grid-template-columns: 1fr;
    }

    .np-services2__service {
      min-height: 0;
    }

    .np-services2__service-title {
      max-width: 690px;
      font-size: clamp(34px, 6vw, 47px);
    }
  }

  @media (max-width: 980px) {
    .np-services2__header {
      grid-template-columns: 1fr;
      gap: 24px;
      align-items: start;
    }

    .np-services2__intro { max-width: 700px; }

    .np-services2__service {
      min-height: 0;
    }

    .np-services2__points {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .np-services2__points li {
      padding-top: 10px;
    }

  }

  @media (max-width: 760px) {
    .np-services2 {
      --np-title-size: clamp(36px, 10.4vw, 44px);
      --np-corner-size: 230px;
      padding: 68px 16px 76px;
    }

    .np-services2__header {
      margin-bottom: 36px;
    }

    .np-services2__main-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .np-services2__service {
      min-height: 0;
      padding: 30px 24px 28px;
      border-radius: 24px;
    }

    .np-services2__photo {
      aspect-ratio: 3 / 2;
      min-height: 0;
      margin-top: 0;
      border-radius: 20px;
    }

    .np-services2__photo-placeholder {
      padding: 18px 19px;
      font-size: 10px;
    }

    .np-services2__service-title {
      margin-top: 24px;
      font-size: clamp(32px, 9vw, 43px);
    }

    .np-services2__meta {
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-top: 24px;
    }

    .np-services2__meta-item {
      padding: 14px 14px 13px;
      border-radius: 16px;
    }

    .np-services2__meta-value {
      font-size: clamp(18px, 5.4vw, 22px);
    }

    .np-services2__description {
      font-size: 15px;
    }

    .np-services2__service-bottom {
      padding-top: 34px;
    }

    .np-services2__actions {
      align-items: stretch;
      flex-direction: column;
    }

    .np-services2__button {
      width: 100%;
    }

    .np-services2__secondary {
      grid-template-columns: 1fr;
      gap: 16px;
      padding: 26px 24px;
      border-radius: 24px;
    }

    .np-services2__secondary-title {
      max-width: none;
      font-size: clamp(25px, 7vw, 32px);
      line-height: 1.13;
    }

    .np-services2__secondary-text,
    .np-services2__secondary-link {
      grid-column: auto;
      grid-row: auto;
    }

    .np-services2__secondary-link {
      width: 100%;
    }

    .np-services2__bottom {
      grid-template-columns: 1fr;
      gap: 13px;
      padding: 24px 4px 0;
    }
  }

  @media (max-width: 430px) {
    .np-services2__meta {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 390px) {
    .np-services2__secondary {
      padding: 24px 20px;
    }

    .np-services2__secondary-title {
      font-size: 24px;
    }

    .np-services2__secondary-text {
      font-size: 13.5px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .np-services2__service,
    .np-services2__button,
    .np-services2__secondary-link,
    .np-services2__quiz-link,
    .np-services2__photo img,
    .np-services2__photo-placeholder {
      transition: none !important;
    }
  }


  
  .np-smodal,
  .np-smodal * { box-sizing: border-box; }

  .np-smodal {
    --m-bg: #F5F0E7;
    --m-coral: #EFA7A0;
    --m-coral-dark: #D9827A;
    --m-sage: #8FC9B6;
    --m-sage-dark: #4F8575;
    --m-text: #3F3F3F;
    --m-muted: rgba(63,63,63,.70);
    --m-line: rgba(63,63,63,.12);

    position: fixed;
    inset: 0;
    z-index: 999999;
    display: grid;
    place-items: center;
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease, visibility .24s ease;
    font-family: var(--t-text-font, Arial, sans-serif);
  }

  .np-smodal.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .np-smodal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(42,40,38,.52);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .np-smodal__panel {
    position: relative;
    width: min(1040px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    overscroll-behavior: contain;
    border-radius: 32px;
    color: var(--m-text);
    background: var(--m-bg);
    box-shadow: 0 32px 100px rgba(25,25,25,.24);
    transform: translateY(18px) scale(.985);
    transition: transform .28s ease;
    scrollbar-width: thin;
    scrollbar-color: rgba(63,63,63,.24) transparent;
  }

  .np-smodal.is-open .np-smodal__panel {
    transform: translateY(0) scale(1);
  }

  .np-smodal__close {
    position: sticky;
    z-index: 4;
    top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 18px 18px -62px auto;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: var(--m-text);
    background: rgba(255,255,255,.84);
    box-shadow: 0 8px 25px rgba(63,63,63,.10);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
  }

  .np-smodal__close:hover {
    transform: rotate(4deg) scale(1.04);
    background: #fff;
  }

  .np-smodal__close svg {
    width: 20px;
    height: 20px;
  }

  .np-smodal__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(260px, .65fr);
    gap: clamp(32px, 5vw, 70px);
    align-items: end;
    padding: clamp(42px, 6vw, 72px);
    padding-top: clamp(68px, 7vw, 86px);
  }

  .np-smodal--diagnostics .np-smodal__hero {
    background:
      radial-gradient(circle at 92% 12%, rgba(255,255,255,.62), transparent 29%),
      linear-gradient(145deg, rgba(239,167,160,.88), rgba(239,167,160,.64));
  }

  .np-smodal--sessions .np-smodal__hero {
    background:
      radial-gradient(circle at 90% 8%, rgba(255,255,255,.82), transparent 31%),
      linear-gradient(145deg, rgba(143,201,182,.40), rgba(255,255,255,.84));
  }

  .np-smodal__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .075em;
    text-transform: uppercase;
    color: rgba(63,63,63,.68);
  }

  .np-smodal__eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    opacity: .55;
  }

  .np-smodal__title {
    max-width: 700px;
    margin: 0;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(38px, 5.1vw, 64px);
    font-weight: 700;
    line-height: 1.01;
    letter-spacing: -.043em;
    text-wrap: balance;
    hyphens: manual;
  }

  .np-smodal__lead {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(63,63,63,.77);
    font-size: 16px;
    line-height: 1.68;
  }

  .np-smodal__facts {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .np-smodal__facts li {
    padding: 15px 0 0;
    border-top: 1px solid rgba(63,63,63,.18);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
  }

  .np-smodal__body {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
    gap: clamp(38px, 6vw, 82px);
    padding: clamp(42px, 6vw, 72px);
  }

  .np-smodal__body-title {
    position: sticky;
    top: 32px;
    margin: 0;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(28px, 3.1vw, 40px);
    font-weight: 700;
    line-height: 1.09;
    letter-spacing: -.03em;
    text-wrap: balance;
  }

  .np-smodal__body-note {
    max-width: 330px;
    margin: 18px 0 0;
    color: var(--m-muted);
    font-size: 14px;
    line-height: 1.62;
  }

  .np-smodal__sections {
    display: grid;
  }

  .np-smodal__section {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 19px;
    padding: 0 0 30px;
  }

  .np-smodal__section + .np-smodal__section {
    padding-top: 30px;
    border-top: 1px solid var(--m-line);
  }

  .np-smodal__section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--m-sage-dark);
    background: rgba(143,201,182,.22);
    font-size: 11px;
    font-weight: 700;
  }

  .np-smodal--diagnostics .np-smodal__section-num {
    color: var(--m-coral-dark);
    background: rgba(239,167,160,.20);
  }

  .np-smodal__section h4 {
    margin: 2px 0 9px;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.015em;
  }

  .np-smodal__section p {
    margin: 0;
    color: var(--m-muted);
    font-size: 14.5px;
    line-height: 1.67;
  }

  .np-smodal__cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    margin: 0 clamp(28px, 5vw, 58px) clamp(28px, 5vw, 58px);
    padding: clamp(25px, 3.5vw, 36px);
    border-radius: 24px;
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(255,255,255,.82);
  }

  .np-smodal__cta p {
    margin: 0;
    color: var(--m-muted);
    font-size: 14px;
    line-height: 1.55;
  }

  .np-smodal__cta p strong {
    display: block;
    margin-bottom: 5px;
    color: var(--m-text);
    font-size: 16px;
    font-weight: 700;
  }

  .np-smodal__cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 15px 21px;
    border-radius: 999px;
    color: #fff;
    background: var(--m-coral-dark);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .2s ease, filter .2s ease;
  }

  .np-smodal--sessions .np-smodal__cta-link {
    background: var(--m-sage-dark);
  }

  .np-smodal__cta-link:hover {
    transform: translateY(-2px);
    filter: brightness(.97);
  }

  .np-smodal__cta-link svg {
    width: 17px;
    height: 17px;
  }

  html.np-smodal-lock,
  body.np-smodal-lock {
    overflow: hidden !important;
  }

  @media (max-width: 820px) {
    .np-smodal {
      padding: 12px;
    }

    .np-smodal__panel {
      max-height: calc(100vh - 24px);
      border-radius: 25px;
    }

    .np-smodal__hero,
    .np-smodal__body {
      grid-template-columns: 1fr;
    }

    .np-smodal__hero {
      gap: 34px;
      padding: 60px 28px 38px;
    }

    .np-smodal__title {
      font-size: clamp(35px, 9vw, 50px);
    }

    .np-smodal__body {
      gap: 32px;
      padding: 38px 28px;
    }

    .np-smodal__body-title {
      position: static;
    }

    .np-smodal__cta {
      grid-template-columns: 1fr;
      margin: 0 18px 18px;
      padding: 25px;
    }

    .np-smodal__cta-link {
      width: 100%;
    }
  }

  @media (max-width: 480px) {
    .np-smodal__close {
      top: 12px;
      width: 40px;
      height: 40px;
      margin: 12px 12px -52px auto;
    }

    .np-smodal__hero {
      padding: 58px 22px 32px;
    }

    .np-smodal__body {
      padding: 32px 22px;
    }

    .np-smodal__section {
      grid-template-columns: 29px minmax(0, 1fr);
      gap: 14px;
    }

    .np-smodal__section-num {
      width: 28px;
      height: 28px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .np-smodal,
    .np-smodal__panel,
    .np-smodal__close,
    .np-smodal__cta-link {
      transition: none !important;
    }
  }


html,body{margin:0;background:#F5F0E7}body{font-family:Arial,sans-serif}

  

  .rev,
  .rev * { box-sizing: border-box; }

  .rev {
    --rev-bg: #F5F0E7;
    --rev-coral: #EFA7A0;
    --rev-coral-dark: #D9827A;
    --rev-sage: #8FC9B6;
    --rev-text: #3F3F3F;
    --rev-card: #FFFFFF;
    --rev-card-soft: #FBF8F3;
    --rev-star: #F5B83D;
    --rev-gap: 18px;
    --rev-radius: 24px;
    --rev-radius-lg: 28px;
    --rev-surface-radius: 32px;
    --rev-shadow: 0 8px 26px rgba(63,63,63,.055), 0 2px 8px rgba(63,63,63,.03);
    --rev-shadow-hover: 0 16px 42px rgba(239,167,160,.16), 0 5px 14px rgba(63,63,63,.06);
    --rev-surface-shadow: 0 24px 68px rgba(63,63,63,.075);
    --np-container: 1260px;
    --np-title-size: clamp(44px, 4.45vw, 64px);
    --np-corner-size: clamp(310px, 31vw, 430px);

    position: relative;
    width: 100%;
    padding: clamp(76px, 9vw, 122px) 24px;
    overflow: visible;
    overflow-x: clip;
    overflow-y: visible;
    color: var(--rev-text);
    background: var(--rev-bg);
    font-family: var(--t-text-font, Arial, sans-serif);
  }

  .rev__decor-clip {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .rev__corner-accent {
    position: absolute;
    left: calc(var(--np-corner-size) * -.40);
    bottom: calc(var(--np-corner-size) * -.62);
    width: var(--np-corner-size);
    aspect-ratio: 1;
  }

  .rev__corner-accent::before,
  .rev__corner-accent::after {
    content: "";
    position: absolute;
    border-radius: 50%;
  }

  .rev__corner-accent::before {
    inset: 0;
    background: rgba(143,201,182,.19);
  }

  .rev__corner-accent::after {
    width: 78%;
    aspect-ratio: 1;
    left: -2%;
    top: -24%;
    background: rgba(239,167,160,.13);
  }

  .rev__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--np-container);
    margin: 0 auto;
  }

  
  .rev__header {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(310px, .72fr);
    align-items: end;
    gap: clamp(38px, 7vw, 92px);
    margin-bottom: clamp(44px, 5.5vw, 70px);
  }

  .rev__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 18px;
    color: #4F8575;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .rev__eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    border-radius: 999px;
    background: var(--rev-sage);
  }

  .rev__title {
    max-width: 830px;
    margin: 0;
    color: var(--rev-coral);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: var(--np-title-size);
    font-weight: 700;
    line-height: 1.01;
    letter-spacing: -.042em;
    text-wrap: balance;
  }

  .rev__header-side {
    display: grid;
    justify-items: start;
    gap: 20px;
  }

  .rev__subtitle {
    max-width: 485px;
    margin: 0;
    color: rgba(63,63,63,.70);
    font-size: 16px;
    line-height: 1.7;
  }

  
  .rev__rating {
    display: flex;
    align-items: center;
    gap: 15px;
    width: min(100%, 350px);
    min-width: 0;
    padding: 17px 21px;
    border: 1px solid rgba(239,167,160,.14);
    border-radius: 24px;
    background: var(--rev-card);
    box-shadow: var(--rev-shadow);
    color: inherit;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
  }

  .rev__rating:hover {
    transform: translateY(-3px);
    box-shadow: var(--rev-shadow-hover);
  }

  .rev__rating-icon {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #FF3B30;
    color: #fff;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 17px;
    font-weight: 700;
  }

  .rev__rating-body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
  }

  .rev__rating-top {
    display: flex;
    align-items: center;
    gap: 9px;
  }

  .rev__rating-score {
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
  }

  .rev__rating-stars {
    display: flex;
    gap: 2px;
  }

  .rev__rating-stars svg {
    width: 14px;
    height: 14px;
    color: var(--rev-star);
  }

  .rev__rating-count {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
  }

  .rev__rating-link {
    color: var(--rev-coral-dark);
    font-size: 12px;
    line-height: 1.2;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .rev__surface {
    position: relative;
    padding: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.78);
    border-radius: var(--rev-surface-radius);
    background: rgba(255,255,255,.48);
    box-shadow: var(--rev-surface-shadow);
  }

  
  .rev__mosaic {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 79px; 
    gap: var(--rev-gap);
    width: 100%;
  }

  .rev__item {
    min-width: 0;
    min-height: 0;
    border-radius: var(--rev-radius);
    box-shadow: var(--rev-shadow);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  }

  .rev__item:hover,
  .rev__item:focus-visible {
    transform: translateY(-3px);
    box-shadow: var(--rev-shadow-hover);
    outline: none;
  }

  
  .rev__video {
    position: relative;
    overflow: hidden;
    border-radius: var(--rev-radius-lg);
    background: #202020;
    cursor: pointer;
  }

  
  .rev__video--1 { grid-column: 1 / 4;  grid-row: 1 / 7; }
  .rev__video--2 { grid-column: 7 / 10; grid-row: 1 / 7; }
  .rev__video--3 { grid-column: 4 / 7;  grid-row: 7 / 13; }
  .rev__video--4 { grid-column: 10 / 13; grid-row: 9 / 15; }

  .rev__video-poster,
  .rev__video-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .rev__video-poster {
    display: block;
    object-fit: cover;
  }

  .rev__video-overlay {
    background: linear-gradient(180deg, rgba(35,35,35,0.04) 8%, rgba(35,35,35,0.18) 45%, rgba(35,35,35,0.82) 100%);
    transition: background .25s ease;
  }

  .rev__video:hover .rev__video-overlay {
    background: linear-gradient(180deg, rgba(35,35,35,0.10) 8%, rgba(35,35,35,0.25) 45%, rgba(35,35,35,0.88) 100%);
  }

  .rev__video-play {
    position: absolute;
    z-index: 2;
    top: 42%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--rev-coral);
    color: #fff;
    box-shadow: 0 9px 28px rgba(0,0,0,0.24);
    transform: translate(-50%, -50%);
    transition: transform .25s ease, background .25s ease;
    pointer-events: none;
  }

  .rev__video:hover .rev__video-play {
    transform: translate(-50%, -50%) scale(1.07);
    background: var(--rev-coral-dark);
  }

  .rev__video-play svg {
    width: 27px;
    height: 27px;
    margin-left: 4px;
  }

  .rev__video-meta {
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: 18px;
    left: 18px;
    color: #fff;
  }

  .rev__video-name {
    margin: 0 0 5px;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
  }

  .rev__video-topic {
    margin: 0 0 11px;
    font-size: 12px;
    line-height: 1.35;
    opacity: .9;
  }

  .rev__video-quote {
    margin: 0 0 10px;
    padding: 9px 11px;
    border-left: 2px solid var(--rev-coral);
    border-radius: 0 10px 10px 0;
    background: rgba(255,255,255,.13);
    backdrop-filter: blur(7px);
    font-size: 13px;
    line-height: 1.38;
  }

  .rev__video-duration {
    display: inline-flex;
    align-items: center;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(0,0,0,.30);
    font-size: 11px;
    line-height: 1;
  }

  
  .rev__text {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 19px 19px 16px;
    border: 1px solid rgba(239, 167, 160, 0.10);
    background: var(--rev-card);
    cursor: pointer;
  }

  .rev__text--soft { background: var(--rev-card-soft); }
  .rev__text--sage { border-color: rgba(143, 201, 182, .24); }
  .rev__text--coral { border-color: rgba(239, 167, 160, .28); }

  
  .rev__text--1  { grid-column: 4 / 7;  grid-row: 1 / 4; }
  .rev__text--2  { grid-column: 4 / 7;  grid-row: 4 / 7; }

  .rev__text--3  { grid-column: 10 / 13; grid-row: 1 / 5; }
  .rev__text--4  { grid-column: 10 / 13; grid-row: 5 / 9; }

  .rev__text--5  { grid-column: 1 / 4;  grid-row: 7 / 11; }
  .rev__text--6  { grid-column: 1 / 4;  grid-row: 11 / 15; }

  .rev__text--7  { grid-column: 7 / 10; grid-row: 7 / 10; }
  .rev__text--8  { grid-column: 7 / 10; grid-row: 10 / 13; }

  .rev__text--9  { grid-column: 4 / 7;  grid-row: 13 / 15; }
  .rev__text--10 { grid-column: 7 / 10; grid-row: 13 / 15; }
  .rev__text--11 { grid-column: 1 / 5;  grid-row: 15 / 19; }
  .rev__text--12 { grid-column: 5 / 9;  grid-row: 15 / 19; }
  .rev__text--13 { grid-column: 9 / 13; grid-row: 15 / 19; }

  .rev__text-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 9px;
  }

  .rev__text-person {
    min-width: 0;
  }

  .rev__text-name {
    margin: 0 0 3px;
    overflow: hidden;
    color: var(--rev-text);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.22;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .rev__text-age {
    margin: 0;
    overflow: hidden;
    font-size: 11.5px;
    line-height: 1.25;
    opacity: .64;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .rev__text-topic {
    flex: 0 0 auto;
    max-width: 44%;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(143, 201, 182, .16);
    color: #5A9583;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
  }

  .rev__text-body {
    display: -webkit-box;
    flex: 1;
    margin: 0;
    overflow: hidden;
    color: var(--rev-text);
    font-size: 14px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  
  .rev__text--3,
  .rev__text--4,
  .rev__text--5,
  .rev__text--6,
  .rev__text--11,
  .rev__text--12,
  .rev__text--13 {
    padding: 23px 22px 18px;
  }

  .rev__text--3 .rev__text-name,
  .rev__text--4 .rev__text-name,
  .rev__text--5 .rev__text-name,
  .rev__text--6 .rev__text-name,
  .rev__text--11 .rev__text-name,
  .rev__text--12 .rev__text-name,
  .rev__text--13 .rev__text-name {
    font-size: 16px;
  }

  .rev__text--3 .rev__text-body,
  .rev__text--4 .rev__text-body,
  .rev__text--5 .rev__text-body,
  .rev__text--6 .rev__text-body,
  .rev__text--11 .rev__text-body,
  .rev__text--12 .rev__text-body,
  .rev__text--13 .rev__text-body {
    font-size: 14.5px;
    -webkit-line-clamp: 7;
  }


  .rev__text--1 .rev__text-body,
  .rev__text--2 .rev__text-body,
  .rev__text--7 .rev__text-body,
  .rev__text--8 .rev__text-body {
    -webkit-line-clamp: 5;
  }

  .rev__text-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 9px;
    padding-top: 9px;
    border-top: 1px solid rgba(63,63,63,.075);
  }

  .rev__text-source {
    overflow: hidden;
    font-size: 10px;
    line-height: 1.2;
    opacity: .58;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .rev__text-open {
    flex: 0 0 auto;
    color: var(--rev-coral-dark);
    font-size: 11px;
    line-height: 1.2;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  
  .rev__modal {
    position: fixed;
    z-index: 999999;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(42,42,42,.88);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity .25s ease;
  }

  .rev__modal.is-open {
    display: flex;
    opacity: 1;
  }

  .rev__modal-box {
    position: relative;
    display: flex;
    width: min(540px, 100%);
    max-height: 90vh;
    flex-direction: column;
    align-items: center;
  }

  .rev__modal-close {
    position: absolute;
    z-index: 5;
    top: -52px;
    right: 0;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    color: #fff;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
  }

  .rev__modal-close:hover {
    background: rgba(255,255,255,.26);
    transform: rotate(90deg);
  }

  .rev__modal-close svg { width: 21px; height: 21px; }

  .rev__modal-video {
    width: min(420px, 100%);
    max-height: 86vh;
    overflow: hidden;
    border-radius: var(--rev-radius-lg);
    background: #111;
    aspect-ratio: 9 / 16;
  }

  .rev__modal-video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
  }

  .rev__modal-screenshot {
    width: 100%;
    max-height: 86vh;
    overflow: auto;
    padding: 16px;
    border-radius: var(--rev-radius-lg);
    background: var(--rev-card);
  }

  .rev__modal-screenshot img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    cursor: zoom-in;
    transform-origin: top center;
    transition: transform .2s ease;
  }

  .rev__modal-screenshot img.is-zoomed {
    cursor: zoom-out;
    transform: scale(1.45);
  }

  .rev__modal-placeholder {
    display: grid;
    min-height: 320px;
    place-items: center;
    padding: 32px;
    border-radius: var(--rev-radius-lg);
    background: var(--rev-card);
    text-align: center;
  }

  .rev__modal-placeholder strong {
    display: block;
    margin-bottom: 10px;
    color: var(--rev-coral-dark);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 20px;
  }

  .rev__modal-placeholder span {
    font-size: 14px;
    line-height: 1.45;
    opacity: .68;
  }

  
  .rev__reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease;
  }

  .rev__reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  
  @media (max-width: 1100px) {
    .rev { padding: clamp(68px, 8vw, 94px) 20px; }

    .rev__header {
      grid-template-columns: 1fr;
      align-items: start;
      gap: 28px;
      margin-bottom: 38px;
    }

    .rev__header-side { max-width: 680px; }
    .rev__rating { width: min(100%, 350px); }
    .rev__surface { padding: 16px; }

    .rev__mosaic {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-auto-rows: auto !important;
      gap: 18px;
    }

    .rev__video,
    .rev__text {
      grid-column: auto;
      grid-row: auto;
    }

    .rev__video { aspect-ratio: 4 / 5; }
    .rev__text { min-height: 240px; }
    .rev__text--1 { grid-column: 1 / -1; min-height: 290px; }

    .rev__text-body,
    .rev__text--1 .rev__text-body,
    .rev__text--4 .rev__text-body,
    .rev__text--5 .rev__text-body,
    .rev__text--6 .rev__text-body,
    .rev__text--9 .rev__text-body,
    .rev__text--10 .rev__text-body,
    .rev__text--11 .rev__text-body,
    .rev__text--12 .rev__text-body,
    .rev__text--13 .rev__text-body { -webkit-line-clamp: 8; }
  }

  @media (max-width: 680px) {
    .rev {
      --np-title-size: clamp(34px, 10vw, 42px);
      --np-corner-size: 230px;
      padding: 64px 16px 70px;
    }

    .rev__header { gap: 24px; margin-bottom: 30px; }
    .rev__subtitle { font-size: 15px; line-height: 1.65; }
    .rev__rating { width: 100%; min-width: 0; }
    .rev__surface { padding: 10px; border-radius: 26px; }

    .rev__mosaic { grid-template-columns: 1fr; gap: 14px; }
    .rev__text--1 { grid-column: auto; }

    
    .rev__video--1 { order: 1; }
    .rev__text--1  { order: 2; }
    .rev__text--2  { order: 3; }
    .rev__video--2 { order: 4; }
    .rev__text--3  { order: 5; }
    .rev__text--4  { order: 6; }
    .rev__video--3 { order: 7; }
    .rev__text--5  { order: 8; }
    .rev__text--6  { order: 9; }
    .rev__video--4 { order: 10; }
    .rev__text--7  { order: 11; }
    .rev__text--8  { order: 12; }
    .rev__text--9  { order: 13; }
    .rev__text--10 { order: 14; }
    .rev__text--11 { order: 15; }
    .rev__text--12 { order: 16; }
    .rev__text--13 { order: 17; }

    .rev__video {
      width: min(100%, 390px);
      margin: 0 auto;
    }

    .rev__text,
    .rev__text--1 {
      min-height: 0;
      padding: 22px 20px 18px;
    }

    .rev__text--1 .rev__text-body {
      font-size: 16px;
      -webkit-line-clamp: 7;
    }

    .rev__video-meta { right: 16px; bottom: 16px; left: 16px; }
    .rev__video-play { width: 62px; height: 62px; }
    .rev__modal { padding: 18px; }
  }


  @media (max-width: 360px) {
    .rev { padding-right: 12px; padding-left: 12px; }
    .rev__surface { padding: 8px; border-radius: 24px; }
    .rev__rating { padding: 15px 16px; }
    .rev__rating-icon { flex-basis: 38px; width: 38px; height: 38px; }
    .rev__text,
    .rev__text--1 { padding: 20px 17px 17px; }
    .rev__text-head { flex-direction: column; }
    .rev__text-topic { max-width: 100%; }
  }

  @media (prefers-reduced-motion: reduce) {
    .rev__item,
    .rev__rating,
    .rev__reveal,
    .rev__video-play,
    .rev__modal,
    .rev__modal-screenshot img { transition: none !important; }
  }


  .np-room,
  .np-room * { box-sizing: border-box; }

  .np-room {
    --r-bg: #F5F0E7;
    --r-coral: #EFA7A0;
    --r-coral-dark: #D9827A;
    --r-sage: #8FC9B6;
    --r-sage-dark: #4F8575;
    --r-text: #3F3F3F;
    --r-white: #FFFFFF;
    --r-muted: rgba(63,63,63,.70);
    --r-line: rgba(63,63,63,.10);
    --r-shadow: 0 24px 68px rgba(63,63,63,.075);
    --np-container: 1260px;
    --np-title-size: clamp(44px, 4.45vw, 64px);
    --np-corner-size: clamp(310px, 31vw, 430px);
    --np-radius: 32px;

    position: relative;
    width: 100%;
    padding: clamp(76px, 9vw, 122px) 24px;
    overflow: visible;
    overflow-x: clip;
    overflow-y: visible;
    color: var(--r-text);
    background: var(--r-bg);
    font-family: var(--t-text-font, Arial, sans-serif);
  }

  .np-room__decor-clip {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }

  
  .np-room__corner-accent {
    position: absolute;
    right: calc(var(--np-corner-size) * -.40);
    bottom: calc(var(--np-corner-size) * -.62);
    width: var(--np-corner-size);
    aspect-ratio: 1;
  }

  .np-room__corner-accent::before,
  .np-room__corner-accent::after {
    content: "";
    position: absolute;
    border-radius: 50%;
  }

  .np-room__corner-accent::before {
    inset: 0;
    background: rgba(143,201,182,.19);
  }

  .np-room__corner-accent::after {
    width: 78%;
    aspect-ratio: 1;
    right: -2%;
    top: -24%;
    background: rgba(239,167,160,.13);
  }

  .np-room__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--np-container);
    margin: 0 auto;
  }

  .np-room__header {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(310px, .72fr);
    gap: clamp(38px, 7vw, 92px);
    align-items: end;
    margin-bottom: clamp(44px, 5.5vw, 70px);
  }

  .np-room__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 18px;
    color: var(--r-sage-dark);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .np-room__eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    border-radius: 999px;
    background: var(--r-sage);
  }

  .np-room__title {
    max-width: 850px;
    margin: 0;
    color: var(--r-coral);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: var(--np-title-size);
    font-weight: 700;
    line-height: 1.01;
    letter-spacing: -.042em;
    text-wrap: balance;
  }

  .np-room__intro {
    max-width: 485px;
    margin: 0 0 5px;
    color: var(--r-muted);
    font-size: 16px;
    line-height: 1.7;
  }

  .np-room__surface {
    position: relative;
    padding: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.78);
    border-radius: var(--np-radius);
    background: rgba(255,255,255,.50);
    box-shadow: var(--r-shadow);
  }

  .np-room__gallery {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(290px, .55fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 16px;
    min-height: 640px;
  }

  .np-room__photo {
    position: relative;
    display: block;
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 24px;
    background: rgba(255,255,255,.66);
    box-shadow: none;
    cursor: zoom-in;
    isolation: isolate;
  }

  .np-room__photo--main { grid-row: 1 / 3; }

  .np-room__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.2,.7,.2,1);
  }

  .np-room__photo.is-empty img { opacity: 0; }
  .np-room__photo:hover img { transform: scale(1.025); }
  .np-room__photo.is-empty { cursor: default; }

  .np-room__photo.is-empty::after,
  .np-room__photo.is-empty .np-room__photo-label { display: none; }

  .np-room__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(35,35,35,.40), transparent 39%);
    pointer-events: none;
  }

  .np-room__photo-label {
    position: absolute;
    z-index: 2;
    left: clamp(20px, 2.6vw, 32px);
    bottom: clamp(18px, 2.4vw, 30px);
    max-width: calc(100% - 48px);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.42;
    text-align: left;
    text-shadow: 0 2px 18px rgba(0,0,0,.26);
  }

  .np-room__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 28px;
    color: rgba(63,63,63,.58);
    background:
      radial-gradient(circle at 78% 18%, rgba(255,255,255,.82), transparent 28%),
      linear-gradient(145deg, rgba(143,201,182,.28), rgba(255,255,255,.72));
    text-align: center;
  }

  .np-room__photo--main .np-room__placeholder {
    background:
      radial-gradient(circle at 82% 14%, rgba(255,255,255,.68), transparent 27%),
      linear-gradient(145deg, rgba(239,167,160,.32), rgba(255,255,255,.74));
  }

  .np-room__placeholder-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(63,63,63,.15);
    border-radius: 50%;
    background: rgba(255,255,255,.38);
    font-size: 20px;
  }

  .np-room__placeholder-text {
    max-width: 210px;
    font-size: 12px;
    line-height: 1.55;
  }

  .np-room__details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
  }

  .np-room__detail {
    min-width: 0;
    min-height: 154px;
    padding: 25px clamp(22px, 2.4vw, 30px) 27px;
    border: 1px solid rgba(255,255,255,.76);
    border-radius: 22px;
    background: rgba(255,255,255,.72);
  }

  .np-room__detail:nth-child(2) {
    background: rgba(143,201,182,.13);
  }

  .np-room__detail:nth-child(3) {
    background: rgba(239,167,160,.10);
  }

  .np-room__detail-title {
    margin: 0 0 8px;
    color: var(--r-text);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -.015em;
  }

  .np-room__detail-text {
    margin: 0;
    color: var(--r-muted);
    font-size: 13.5px;
    line-height: 1.62;
  }

  
  .np-room-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 26px;
    background: rgba(30,30,30,.84);
    backdrop-filter: blur(8px);
  }

  .np-room-modal.is-open { display: flex; }

  .np-room-modal__stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(1120px, 100%);
    height: min(82vh, 820px);
  }

  .np-room-modal__image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 22px;
    box-shadow: 0 28px 90px rgba(0,0,0,.30);
  }

  .np-room-modal__close,
  .np-room-modal__arrow {
    position: absolute;
    z-index: 3;
    display: grid;
    place-items: center;
    border: 0;
    color: var(--r-text);
    background: rgba(255,255,255,.88);
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0,0,0,.16);
  }

  .np-room-modal__close {
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
  }

  .np-room-modal__arrow {
    top: 50%;
    width: 46px;
    height: 60px;
    border-radius: 18px;
    transform: translateY(-50%);
    font-size: 24px;
  }

  .np-room-modal__arrow--prev { left: 0; }
  .np-room-modal__arrow--next { right: 0; }

  .np-room-modal__caption {
    position: absolute;
    left: 50%;
    bottom: 10px;
    max-width: 75%;
    padding: 9px 14px;
    border-radius: 999px;
    color: #fff;
    background: rgba(30,30,30,.54);
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    transform: translateX(-50%);
  }

  body.np-room-modal-open { overflow: hidden !important; }

  @media (max-width: 980px) {
    .np-room__header {
      grid-template-columns: 1fr;
      gap: 24px;
      align-items: start;
    }

    .np-room__intro { max-width: 680px; }

    .np-room__gallery {
      grid-template-columns: minmax(0, 1.22fr) minmax(250px, .78fr);
      min-height: 560px;
    }
  }

  @media (max-width: 720px) {
    .np-room {
      --np-title-size: clamp(34px, 10.4vw, 44px);
      --np-corner-size: 230px;
      padding: 68px 16px;
    }

    .np-room__header { margin-bottom: 38px; }
    .np-room__eyebrow { font-size: 10px; }

    .np-room__title {
      line-height: 1.035;
      letter-spacing: -.034em;
      overflow-wrap: anywhere;
    }

    .np-room__surface {
      padding: 10px;
      border-radius: 26px;
    }

    .np-room__gallery {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-template-rows: auto;
      min-height: 0;
      gap: 10px;
    }

    .np-room__photo--main {
      grid-column: 1 / 3;
      grid-row: auto;
      aspect-ratio: 4 / 3;
    }

    .np-room__photo:not(.np-room__photo--main) {
      aspect-ratio: 1 / 1;
      border-radius: 19px;
    }

    .np-room__photo { border-radius: 21px; }

    .np-room__details {
      grid-template-columns: 1fr;
      gap: 9px;
      margin-top: 9px;
    }

    .np-room__detail {
      min-height: 0;
      padding: 21px 20px 22px;
      border-radius: 19px;
    }

    .np-room-modal { padding: 16px; }
    .np-room-modal__stage { height: 78vh; }
    .np-room-modal__arrow { width: 42px; height: 52px; }
    .np-room-modal__caption { max-width: 88%; bottom: 4px; }
  }

  @media (max-width: 430px) {
    .np-room__intro { font-size: 15px; }
    .np-room__photo-label { left: 17px; bottom: 16px; max-width: calc(100% - 34px); font-size: 12px; }
    .np-room-modal__arrow--prev { left: -4px; }
    .np-room-modal__arrow--next { right: -4px; }
  }

  @media (max-width: 340px) {
    .np-room { padding-left: 12px; padding-right: 12px; }
    .np-room__surface { padding: 8px; }
    .np-room__gallery { gap: 8px; }
    .np-room__details { gap: 8px; margin-top: 8px; }
  }

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


  .np-faq,
  .np-faq * { box-sizing: border-box; }

  .np-faq {
    --faq-bg: #F5F0E7;
    --faq-coral: #EFA7A0;
    --faq-coral-soft: rgba(239,167,160,.16);
    --faq-sage: #8FC9B6;
    --faq-sage-dark: #4F8575;
    --faq-text: #3F3F3F;
    --faq-muted: rgba(63,63,63,.69);
    --faq-white: #FFFFFF;
    --faq-line: rgba(63,63,63,.12);
    --faq-shadow: 0 24px 68px rgba(63,63,63,.075);
    --np-container: 1260px;
    --np-title-size: clamp(44px, 4.45vw, 64px);
    --np-corner-size: clamp(310px, 31vw, 430px);
    --np-radius: 32px;

    position: relative;
    width: 100%;
    padding: clamp(76px, 9vw, 122px) 24px;
    overflow: visible;
    overflow-x: clip;
    overflow-y: visible;
    color: var(--faq-text);
    background: var(--faq-bg);
    font-family: var(--t-text-font, Arial, sans-serif);
  }

  .np-faq__decor-clip {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }

  
  .np-faq__corner-accent {
    position: absolute;
    left: calc(var(--np-corner-size) * -.40);
    bottom: calc(var(--np-corner-size) * -.62);
    width: var(--np-corner-size);
    aspect-ratio: 1;
  }

  .np-faq__corner-accent::before,
  .np-faq__corner-accent::after {
    content: "";
    position: absolute;
    border-radius: 50%;
  }

  .np-faq__corner-accent::before {
    inset: 0;
    background: rgba(143,201,182,.19);
  }

  .np-faq__corner-accent::after {
    width: 78%;
    aspect-ratio: 1;
    left: -2%;
    top: -24%;
    background: rgba(239,167,160,.13);
  }

  .np-faq__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--np-container);
    margin: 0 auto;
  }

  .np-faq__layout {
    display: grid;
    grid-template-columns: minmax(310px, .78fr) minmax(0, 1.22fr);
    gap: clamp(48px, 7vw, 104px);
    align-items: start;
  }

  .np-faq__intro {
    position: sticky;
    top: 42px;
    padding-top: 8px;
  }

  .np-faq__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 18px;
    color: var(--faq-sage-dark);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .np-faq__eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    border-radius: 999px;
    background: var(--faq-sage);
  }

  .np-faq__title {
    max-width: 560px;
    margin: 0;
    color: var(--faq-coral);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: var(--np-title-size);
    font-weight: 700;
    line-height: 1.01;
    letter-spacing: -.042em;
    text-wrap: balance;
  }

  .np-faq__lead {
    max-width: 480px;
    margin: 28px 0 0;
    color: var(--faq-muted);
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.63;
  }

  .np-faq__note {
    max-width: 410px;
    margin-top: clamp(30px, 4vw, 48px);
    padding: 23px 25px 24px;
    border-left: 3px solid var(--faq-sage);
    border-radius: 0 20px 20px 0;
    background: rgba(255,255,255,.48);
  }

  .np-faq__note-label {
    display: block;
    margin-bottom: 7px;
    color: var(--faq-sage-dark);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .075em;
    text-transform: uppercase;
  }

  .np-faq__note-text {
    margin: 0;
    color: var(--faq-text);
    font-size: 15px;
    line-height: 1.55;
  }

  .np-faq__panel {
    min-width: 0;
    padding: clamp(16px, 2vw, 24px) clamp(28px, 3.5vw, 48px);
    border: 1px solid rgba(255,255,255,.78);
    border-radius: var(--np-radius);
    background: rgba(255,255,255,.78);
    box-shadow: var(--faq-shadow);
  }

  .np-faq__item {
    border-bottom: 1px solid var(--faq-line);
  }

  .np-faq__item:last-child { border-bottom: 0; }

  .np-faq__question {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 20px;
    align-items: center;
    min-height: 94px;
    padding: 22px 0;
    border: 0;
    outline: 0;
    color: var(--faq-text);
    background: transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }



  .np-faq__question-text {
    min-width: 0;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(19px, 1.65vw, 24px);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -.02em;
    overflow-wrap: anywhere;
  }

  .np-faq__plus {
    position: relative;
    width: 34px;
    height: 34px;
    justify-self: end;
    border-radius: 50%;
    background: var(--faq-coral-soft);
    transition: background .25s ease, transform .32s ease;
  }

  .np-faq__plus::before,
  .np-faq__plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: var(--faq-coral);
    transform: translate(-50%, -50%);
    transition: transform .32s ease, opacity .24s ease;
  }

  .np-faq__plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .np-faq__item.is-open .np-faq__plus {
    background: rgba(143,201,182,.20);
    transform: rotate(180deg);
  }

  .np-faq__item.is-open .np-faq__plus::before,
  .np-faq__item.is-open .np-faq__plus::after {
    background: var(--faq-sage-dark);
  }

  .np-faq__item.is-open .np-faq__plus::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .np-faq__answer-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .38s cubic-bezier(.22,.61,.36,1);
  }

  .np-faq__item.is-open .np-faq__answer-wrap {
    grid-template-rows: 1fr;
  }

  .np-faq__answer-inner {
    min-height: 0;
    overflow: hidden;
  }

  .np-faq__answer {
    max-width: 690px;
    margin: 0;
    padding: 0 50px 27px 0;
    color: var(--faq-muted);
    font-size: 16px;
    line-height: 1.68;
  }

  .np-faq__answer strong {
    color: var(--faq-text);
    font-weight: 700;
  }

  .np-faq__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 22px;
    padding: 20px 0 2px;
    color: var(--faq-muted);
    font-size: 14px;
    line-height: 1.5;
  }

  .np-faq__footer-link {
    flex: 0 0 auto;
    color: var(--faq-sage-dark);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(79,133,117,.35);
    transition: color .2s ease, border-color .2s ease;
  }

  .np-faq__footer-link:hover {
    color: var(--faq-coral);
    border-color: rgba(239,167,160,.55);
  }

  .np-faq__question:focus-visible,
  .np-faq__footer-link:focus-visible {
    outline: 3px solid rgba(143,201,182,.38);
    outline-offset: 5px;
    border-radius: 8px;
  }

  @media (max-width: 980px) {
    .np-faq__layout {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .np-faq__intro {
      position: static;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, .68fr);
      gap: 34px;
      align-items: end;
      padding-top: 0;
    }

    .np-faq__lead { margin-top: 22px; }

    .np-faq__note {
      margin: 0;
      max-width: none;
    }
  }

  @media (max-width: 680px) {
    .np-faq {
      padding: 68px 16px 78px;
    }

    .np-faq__intro {
      display: block;
    }

    .np-faq__title {
      font-size: clamp(34px, 10.8vw, 44px);
      line-height: 1.02;
      letter-spacing: -.035em;
    }

    .np-faq__lead {
      font-size: 16px;
      line-height: 1.58;
    }

    .np-faq__note {
      margin-top: 28px;
      padding: 20px 21px 21px;
    }

    .np-faq__panel {
      padding: 10px 20px 14px;
      border-radius: 27px;
    }

    .np-faq__question {
      grid-template-columns: minmax(0, 1fr) 30px;
      gap: 15px;
      min-height: 84px;
      padding: 20px 0;
    }

    .np-faq__question-text {
      font-size: 19px;
      line-height: 1.25;
    }

    .np-faq__plus {
      width: 30px;
      height: 30px;
    }

    .np-faq__answer {
      padding: 0 0 24px 0;
      font-size: 15px;
      line-height: 1.63;
    }

    .np-faq__footer {
      align-items: flex-start;
      flex-direction: column;
      gap: 10px;
      padding-top: 18px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .np-faq__answer-wrap,
    .np-faq__plus,
    .np-faq__plus::before,
    .np-faq__plus::after { transition: none !important; }
  }


  .np-consult-warm,
  .np-consult-warm * { box-sizing: border-box; }

  .np-consult-warm {
    --cw-bg: #F5F0E7;
    --cw-white: #FFFFFF;
    --cw-coral: #EFA7A0;
    --cw-coral-dark: #D9827A;
    --cw-sage: #8FC9B6;
    --cw-sage-dark: #4F8575;
    --cw-text: #3F3F3F;
    --cw-muted: rgba(63,63,63,.67);
    --cw-line: rgba(63,63,63,.12);
    --cw-soft: #FBF8F2;
    --cw-shadow: 0 24px 68px rgba(63,63,63,.09);

    position: relative;
    width: 100%;
    padding: clamp(76px, 8.5vw, 126px) 24px;
    overflow: hidden;
    color: var(--cw-text);
    background: var(--cw-bg);
    font-family: var(--t-text-font, Arial, sans-serif);
  }

  .np-consult-warm::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -250px;
    top: -250px;
    border-radius: 50%;
    background: rgba(239,167,160,.11);
    pointer-events: none;
  }

  .np-consult-warm::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    right: -190px;
    bottom: -235px;
    border-radius: 45% 55% 62% 38% / 48% 42% 58% 52%;
    background: rgba(143,201,182,.13);
    transform: rotate(12deg);
    pointer-events: none;
  }

  .np-consult-warm__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
  }

  .np-consult-warm__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .65fr);
    gap: clamp(36px, 6vw, 90px);
    align-items: end;
    margin-bottom: clamp(42px, 5vw, 68px);
  }

  .np-consult-warm__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    width: fit-content;
    margin: 0 0 18px;
    color: var(--cw-coral-dark);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .085em;
    text-transform: uppercase;
  }

  .np-consult-warm__eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--cw-coral);
  }

  .np-consult-warm__title {
    max-width: 760px;
    margin: 0;
    color: var(--cw-coral-dark);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 700;
    line-height: .98;
    letter-spacing: -.05em;
    text-wrap: balance;
  }

  .np-consult-warm__intro {
    max-width: 430px;
    margin: 0 0 4px;
    color: var(--cw-muted);
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.68;
  }

  .np-consult-warm__layout {
    display: grid;
    grid-template-columns: minmax(320px, .78fr) minmax(520px, 1.22fr);
    gap: clamp(28px, 4.5vw, 62px);
    align-items: stretch;
  }

  .np-consult-warm__visual {
    position: relative;
    min-height: 680px;
  }

  .np-consult-warm__photo {
    position: absolute;
    inset: 0 34px 38px 0;
    overflow: hidden;
    border-radius: 34px 34px 88px 34px;
    background:
      linear-gradient(145deg, rgba(239,167,160,.38), rgba(143,201,182,.28)),
      var(--cw-soft);
    box-shadow: var(--cw-shadow);
  }

  .np-consult-warm__photo::before {
    content: "Н";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.86);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 112px;
    font-weight: 700;
    z-index: 0;
  }

  .np-consult-warm__photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 18%;
  }

  .np-consult-warm__photo.is-fallback img { display: none; }

  .np-consult-warm__quote {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    width: min(86%, 360px);
    padding: 26px 28px 25px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 26px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 20px 52px rgba(63,63,63,.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .np-consult-warm__quote-mark {
    display: block;
    margin-bottom: 10px;
    color: var(--cw-coral);
    font-family: Georgia, serif;
    font-size: 42px;
    line-height: .7;
  }

  .np-consult-warm__quote-text {
    margin: 0;
    color: var(--cw-text);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.58;
  }

  .np-consult-warm__quote-name {
    display: block;
    margin-top: 13px;
    color: var(--cw-sage-dark);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .035em;
  }

  .np-consult-warm__form-card {
    position: relative;
    min-width: 0;
    padding: clamp(38px, 4.8vw, 66px);
    border-radius: 34px;
    background: var(--cw-white);
    box-shadow: var(--cw-shadow);
  }

  .np-consult-warm__form-card::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    right: 22px;
    top: 22px;
    border: 1px solid rgba(143,201,182,.23);
    border-radius: 50%;
    box-shadow:
      0 0 0 15px rgba(143,201,182,.055),
      0 0 0 30px rgba(143,201,182,.035);
    pointer-events: none;
  }

  .np-consult-warm__form-head {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin-bottom: 30px;
  }

  .np-consult-warm__form-kicker {
    margin: 0 0 10px;
    color: var(--cw-sage-dark);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .np-consult-warm__form-title {
    max-width: 560px;
    margin: 0;
    color: var(--cw-text);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(28px, 3.2vw, 43px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -.038em;
    text-wrap: balance;
  }

  .np-consult-warm__form-note {
    max-width: 560px;
    margin: 14px 0 0;
    color: var(--cw-muted);
    font-size: 14px;
    line-height: 1.62;
  }

  .np-consult-warm__form-slot,
  .np-consult-warm__form-slot > * { min-width: 0; }

  .np-consult-warm__fallback-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
  }

  .np-consult-warm__field { min-width: 0; }
  .np-consult-warm__field--full { grid-column: 1 / -1; }

  .np-consult-warm__label {
    display: block;
    margin: 0 0 8px;
    color: rgba(63,63,63,.78);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
  }

  .np-consult-warm__input,
  .np-consult-warm__select,
  .np-consult-warm__textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--cw-line);
    outline: 0;
    border-radius: 16px;
    color: var(--cw-text);
    background: var(--cw-soft);
    font: inherit;
    font-size: 16px;
    line-height: 1.4;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  }

  .np-consult-warm__input,
  .np-consult-warm__select {
    height: 58px;
    padding: 0 18px;
  }

  .np-consult-warm__select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 48px;
    cursor: pointer;
    background-image:
      linear-gradient(45deg, transparent 50%, rgba(63,63,63,.52) 50%),
      linear-gradient(135deg, rgba(63,63,63,.52) 50%, transparent 50%);
    background-position:
      calc(100% - 22px) 25px,
      calc(100% - 16px) 25px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
  }

  .np-consult-warm__select:invalid { color: rgba(63,63,63,.42); }
  .np-consult-warm__select option { color: var(--cw-text); }

  .np-consult-warm__textarea {
    min-height: 120px;
    padding: 16px 18px;
    resize: vertical;
  }

  .np-consult-warm__input::placeholder,
  .np-consult-warm__textarea::placeholder { color: rgba(63,63,63,.42); }

  .np-consult-warm__input:focus,
  .np-consult-warm__select:focus,
  .np-consult-warm__textarea:focus {
    border-color: var(--cw-sage);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(143,201,182,.15);
  }

  .np-consult-warm__field.is-error .np-consult-warm__input,
  .np-consult-warm__field.is-error .np-consult-warm__select,
  .np-consult-warm__field.is-error .np-consult-warm__textarea {
    border-color: var(--cw-coral-dark);
    box-shadow: 0 0 0 4px rgba(239,167,160,.13);
  }

  .np-consult-warm__error {
    display: none;
    margin: 6px 0 0;
    color: #B85F59;
    font-size: 11px;
    line-height: 1.35;
  }

  .np-consult-warm__field.is-error .np-consult-warm__error { display: block; }

  .np-consult-warm__privacy {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 19px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin-top: 2px;
    color: var(--cw-muted);
    font-size: 11.5px;
    line-height: 1.5;
    cursor: pointer;
  }

  .np-consult-warm__privacy input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--cw-sage-dark);
  }

  .np-consult-warm__privacy a {
    color: inherit;
    text-decoration-color: rgba(63,63,63,.35);
    text-underline-offset: 3px;
  }

  .np-consult-warm__submit-row {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 5px;
  }

  .np-consult-warm__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 18px 27px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--cw-coral);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 12px 28px rgba(217,130,122,.22);
    transition: transform .2s ease, background .2s ease, opacity .2s ease;
  }

  .np-consult-warm__submit:hover {
    background: var(--cw-coral-dark);
    transform: translateY(-2px);
  }

  .np-consult-warm__submit:disabled {
    opacity: .58;
    cursor: wait;
    transform: none;
  }

  .np-consult-warm__submit-note {
    max-width: 210px;
    color: var(--cw-muted);
    font-size: 11px;
    line-height: 1.45;
  }

  .np-consult-warm__success {
    display: none;
    min-height: 330px;
    align-content: center;
    padding: 42px;
    border-radius: 24px;
    background: rgba(143,201,182,.15);
    text-align: center;
  }

  .np-consult-warm__success.is-visible { display: grid; }

  .np-consult-warm__success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    border-radius: 50%;
    color: #fff;
    background: var(--cw-sage);
    font-size: 24px;
    font-weight: 700;
  }

  .np-consult-warm__success-title {
    margin: 0;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(27px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.03em;
  }

  .np-consult-warm__success-text {
    max-width: 470px;
    margin: 14px auto 0;
    color: var(--cw-muted);
    font-size: 15px;
    line-height: 1.6;
  }

  .np-consult-warm__honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  @media (max-width: 1040px) {
    .np-consult-warm__heading {
      grid-template-columns: minmax(0, 1fr) minmax(280px, .65fr);
      gap: 42px;
    }

    .np-consult-warm__layout {
      grid-template-columns: minmax(300px, .72fr) minmax(460px, 1.28fr);
      gap: 32px;
    }

    .np-consult-warm__visual { min-height: 650px; }
    .np-consult-warm__form-card { padding: 42px 38px; }
  }

  @media (max-width: 860px) {
    .np-consult-warm { padding-left: 18px; padding-right: 18px; }

    .np-consult-warm__heading {
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 38px;
    }

    .np-consult-warm__intro { max-width: 650px; }

    .np-consult-warm__layout {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .np-consult-warm__visual {
      min-height: 560px;
      max-width: 680px;
      width: 100%;
      margin: 0 auto;
    }

    .np-consult-warm__photo { inset: 0 50px 36px 0; }
    .np-consult-warm__quote { width: min(78%, 370px); }
    .np-consult-warm__form-card { padding: 46px 44px 50px; }
  }

  @media (max-width: 620px) {
    .np-consult-warm { padding: 62px 12px; }

    .np-consult-warm__title {
      font-size: clamp(37px, 11.5vw, 51px);
      line-height: 1;
    }

    .np-consult-warm__intro { font-size: 16px; }

    .np-consult-warm__visual {
      min-height: 465px;
    }

    .np-consult-warm__photo {
      inset: 0 18px 54px 0;
      border-radius: 26px 26px 58px 26px;
    }

    .np-consult-warm__quote {
      right: 0;
      bottom: 0;
      width: calc(100% - 34px);
      padding: 21px 22px 20px;
      border-radius: 22px;
    }

    .np-consult-warm__quote-text { font-size: 14px; }

    .np-consult-warm__form-card {
      padding: 34px 22px 38px;
      border-radius: 26px;
    }

    .np-consult-warm__form-card::before { display: none; }
    .np-consult-warm__form-head { margin-bottom: 25px; }
    .np-consult-warm__fallback-form { grid-template-columns: 1fr; gap: 15px; }
    .np-consult-warm__field--full,
    .np-consult-warm__privacy,
    .np-consult-warm__submit-row { grid-column: auto; }

    .np-consult-warm__textarea { min-height: 112px; }

    .np-consult-warm__submit-row {
      display: grid;
      gap: 11px;
    }

    .np-consult-warm__submit {
      width: 100%;
      min-height: 58px;
      white-space: normal;
      line-height: 1.25;
    }

    .np-consult-warm__submit-note {
      max-width: none;
      text-align: center;
    }

  }



  @media (prefers-reduced-motion: reduce) {
    .np-consult-warm *,
    .np-consult-warm *::before,
    .np-consult-warm *::after {
      scroll-behavior: auto !important;
      transition-duration: .01ms !important;
      animation-duration: .01ms !important;
      animation-iteration-count: 1 !important;
    }
  }


  
  .np-consult-warm {
    --np-container: 1260px;
    --np-title-size: clamp(44px, 4.45vw, 64px);
    --np-corner-size: clamp(310px, 31vw, 430px);
    --np-radius: 32px;
    padding: clamp(76px, 9vw, 122px) 24px;
    overflow: visible;
    overflow-x: clip;
    overflow-y: visible;
  }

  .np-consult-warm::before,
  .np-consult-warm::after { display: none; }

  .np-consult-warm__decor-clip {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }

  
  .np-consult-warm__corner-accent {
    position: absolute;
    right: calc(var(--np-corner-size) * -.40);
    bottom: calc(var(--np-corner-size) * -.62);
    width: var(--np-corner-size);
    aspect-ratio: 1;
  }

  .np-consult-warm__corner-accent::before,
  .np-consult-warm__corner-accent::after {
    content: "";
    position: absolute;
    border-radius: 50%;
  }

  .np-consult-warm__corner-accent::before {
    inset: 0;
    background: rgba(143,201,182,.19);
  }

  .np-consult-warm__corner-accent::after {
    width: 78%;
    aspect-ratio: 1;
    right: -2%;
    top: -24%;
    background: rgba(239,167,160,.13);
  }

  .np-consult-warm__container { max-width: var(--np-container); }

  .np-consult-warm__heading {
    grid-template-columns: minmax(0, 1.05fr) minmax(310px, .72fr);
    gap: clamp(38px, 7vw, 92px);
    margin-bottom: clamp(44px, 5.5vw, 70px);
  }

  .np-consult-warm__eyebrow {
    color: var(--cw-sage-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
  }

  .np-consult-warm__eyebrow::before {
    width: 36px;
    background: var(--cw-sage);
  }

  .np-consult-warm__title {
    max-width: 830px;
    color: var(--cw-coral);
    font-size: var(--np-title-size);
    font-weight: 700;
    line-height: 1.01;
    letter-spacing: -.042em;
  }

  .np-consult-warm__intro {
    max-width: 485px;
    font-size: 16px;
    line-height: 1.7;
  }

  .np-consult-warm__layout {
    grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
    gap: 0;
    padding: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.78);
    border-radius: var(--np-radius);
    background: rgba(255,255,255,.78);
    box-shadow: var(--cw-shadow);
  }

  .np-consult-warm__visual { min-height: 710px; }

  .np-consult-warm__photo {
    inset: 0;
    border-radius: 24px;
    box-shadow: none;
  }

  .np-consult-warm__quote {
    right: 20px;
    bottom: 20px;
    width: min(84%, 365px);
    border-radius: 22px;
  }

  .np-consult-warm__form-card {
    align-self: stretch;
    padding: clamp(42px, 5vw, 68px);
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    box-shadow: none;
  }

  .np-consult-warm__form-card::before { display: none; }

  .np-consult-warm__form-title {
    font-size: clamp(30px, 3.1vw, 43px);
    line-height: 1.08;
  }

  .np-consult-warm__input,
  .np-consult-warm__select,
  .np-consult-warm__textarea {
    border-radius: 15px;
    background: #FBF8F2;
  }

  .np-consult-warm__privacy { font-size: 11.5px; }

  .np-consult-warm__submit-note {
    max-width: 300px;
    font-size: 11.5px;
  }

  @media (max-width: 980px) {
    .np-consult-warm { padding-left: 18px; padding-right: 18px; }

    .np-consult-warm__heading {
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 40px;
    }

    .np-consult-warm__intro { max-width: 680px; }

    .np-consult-warm__layout {
      grid-template-columns: 1fr;
      gap: 14px;
      padding: 14px;
    }

    .np-consult-warm__visual {
      width: 100%;
      max-width: none;
      min-height: 560px;
      margin: 0;
    }

    .np-consult-warm__form-card { padding: 48px 44px 52px; }
  }

  @media (max-width: 620px) {
    .np-consult-warm {
      --np-title-size: clamp(34px, 10.8vw, 44px);
      --np-corner-size: 230px;
      padding: 66px 12px;
    }

    .np-consult-warm__title {
      font-size: var(--np-title-size);
      line-height: 1.03;
      letter-spacing: -.038em;
    }

    .np-consult-warm__layout {
      gap: 10px;
      padding: 10px;
      border-radius: 26px;
    }

    .np-consult-warm__visual {
      display: grid;
      gap: 10px;
      min-height: 0;
    }

    .np-consult-warm__photo {
      position: relative;
      inset: auto;
      aspect-ratio: 4 / 5;
      border-radius: 20px;
    }

    .np-consult-warm__quote {
      position: relative;
      right: auto;
      bottom: auto;
      width: 100%;
      padding: 21px 22px 20px;
      border-radius: 20px;
      box-shadow: none;
      background: rgba(245,240,231,.76);
    }

    .np-consult-warm__form-card {
      padding: 32px 18px 36px;
      border-radius: 20px;
    }

    .np-consult-warm__fallback-form {
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .np-consult-warm__field--full,
    .np-consult-warm__privacy,
    .np-consult-warm__submit-row { grid-column: auto; }

    .np-consult-warm__submit-row {
      display: grid;
      gap: 12px;
    }

    .np-consult-warm__submit {
      width: 100% !important;
      min-width: 0 !important;
      white-space: normal;
      line-height: 1.25;
    }

    .np-consult-warm__submit-note {
      max-width: none;
      text-align: center;
    }
  }



  .np-contacts,
  .np-contacts * { box-sizing: border-box; }

  .np-contacts {
    --nc-bg: #F5F0E7;
    --nc-coral: #EFA7A0;
    --nc-coral-dark: #D9827A;
    --nc-sage: #8FC9B6;
    --nc-sage-dark: #4F8575;
    --nc-text: #3F3F3F;
    --nc-muted: rgba(63,63,63,.69);
    --nc-white: #FFFFFF;
    --nc-line: rgba(63,63,63,.12);
    --nc-shadow: 0 24px 68px rgba(63,63,63,.085);
    --np-container: 1260px;
    --np-title-size: clamp(44px, 4.45vw, 64px);
    --np-corner-size: clamp(310px, 31vw, 430px);
    --np-radius: 32px;

    position: relative;
    width: 100%;
    padding: clamp(76px, 9vw, 122px) 24px;
    overflow: visible;
    overflow-x: clip;
    overflow-y: visible;
    color: var(--nc-text);
    background: var(--nc-bg);
    font-family: var(--t-text-font, Arial, sans-serif);
  }

  .np-contacts__decor-clip {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }

  
  .np-contacts__corner-accent {
    position: absolute;
    left: calc(var(--np-corner-size) * -.40);
    bottom: calc(var(--np-corner-size) * -.62);
    width: var(--np-corner-size);
    aspect-ratio: 1;
  }

  .np-contacts__corner-accent::before,
  .np-contacts__corner-accent::after {
    content: "";
    position: absolute;
    border-radius: 50%;
  }

  .np-contacts__corner-accent::before {
    inset: 0;
    background: rgba(143,201,182,.19);
  }

  .np-contacts__corner-accent::after {
    width: 78%;
    aspect-ratio: 1;
    left: -2%;
    top: -24%;
    background: rgba(239,167,160,.13);
  }

  .np-contacts__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--np-container);
    margin: 0 auto;
  }

  .np-contacts__head {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(310px, .72fr);
    gap: clamp(38px, 7vw, 92px);
    align-items: end;
    margin-bottom: clamp(44px, 5.5vw, 70px);
  }

  .np-contacts__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 18px;
    color: var(--nc-sage-dark);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .np-contacts__eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    border-radius: 999px;
    background: var(--nc-sage);
  }

  .np-contacts__title {
    max-width: 850px;
    margin: 0;
    color: var(--nc-coral);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: var(--np-title-size);
    font-weight: 700;
    line-height: 1.01;
    letter-spacing: -.042em;
    text-wrap: balance;
    overflow-wrap: normal;
  }

  .np-contacts__intro {
    max-width: 485px;
    margin: 0 0 5px;
    color: var(--nc-muted);
    font-size: 16px;
    line-height: 1.7;
  }

  .np-contacts__stage {
    position: relative;
    width: 100%;
    min-width: 0;
    padding: 16px;
    border-radius: var(--np-radius);
    background: rgba(255,255,255,.93);
    box-shadow: var(--nc-shadow);
  }

  .np-contacts__map-shell {
    position: relative;
    width: 100%;
    height: clamp(590px, 57vw, 720px);
    min-height: 590px;
    overflow: hidden;
    border-radius: 24px;
    background: #E7E2D8;
    isolation: isolate;
  }

  .np-contacts__map-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(63,63,63,.15) 0%, rgba(63,63,63,.03) 31%, transparent 52%);
  }

  .np-contacts__map,
  .np-contacts__map iframe {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
  }

  .np-contacts__map { overflow: hidden; }
  .np-contacts__map iframe { display: block; max-width: none !important; border: 0; }

  .np-contacts__card {
    position: absolute;
    z-index: 4;
    left: clamp(36px, 4.7vw, 66px);
    top: 50%;
    width: min(430px, calc(100% - 72px));
    padding: clamp(30px, 3.6vw, 42px);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 28px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 22px 62px rgba(63,63,63,.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateY(-50%);
  }

  .np-contacts__card::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: -96px;
    top: -96px;
    border-radius: 50%;
    background: rgba(239,167,160,.20);
    pointer-events: none;
  }

  .np-contacts__person {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
  }

  .np-contacts__avatar {
    position: relative;
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    overflow: hidden;
    border: 4px solid var(--nc-white);
    border-radius: 50%;
    background: var(--nc-coral);
    box-shadow: 0 10px 25px rgba(63,63,63,.12);
  }

  .np-contacts__avatar img {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .np-contacts__avatar-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    place-items: center;
    color: var(--nc-white);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 27px;
    font-weight: 700;
    line-height: 1;
  }

  .np-contacts__person-text { min-width: 0; }

  .np-contacts__person-name {
    display: block;
    margin: 0 0 3px;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -.018em;
  }

  .np-contacts__person-role {
    display: block;
    color: var(--nc-muted);
    font-size: 12px;
    line-height: 1.4;
  }

  .np-contacts__label {
    position: relative;
    z-index: 2;
    margin: 0 0 9px;
    color: var(--nc-sage-dark);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: .09em;
    text-transform: uppercase;
  }

  .np-contacts__address {
    position: relative;
    z-index: 2;
    margin: 0;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(26px, 2.7vw, 36px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.038em;
    text-wrap: balance;
  }

  .np-contacts__area {
    position: relative;
    z-index: 2;
    margin: 11px 0 0;
    color: var(--nc-muted);
    font-size: 13px;
    line-height: 1.5;
  }

  .np-contacts__divider {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 1px;
    margin: 24px 0 21px;
    background: var(--nc-line);
  }

  .np-contacts__phone {
    position: relative;
    z-index: 2;
    display: inline-flex;
    max-width: 100%;
    color: var(--nc-text);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(24px, 2.45vw, 31px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.03em;
    text-decoration: none;
    transition: opacity .2s ease;
  }

  .np-contacts__phone:hover { opacity: .66; }

  .np-contacts__actions {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
  }

  .np-contacts__route,
  .np-contacts__messenger {
    min-height: 50px;
    border: 0;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  }

  .np-contacts__route {
    display: inline-flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 0;
    padding: 13px 18px;
    border-radius: 999px;
    color: var(--nc-white);
    background: var(--nc-coral-dark);
    box-shadow: 0 10px 24px rgba(217,130,122,.23);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }

  .np-contacts__route:hover {
    transform: translateY(-2px);
    background: #C8746D;
    box-shadow: 0 13px 28px rgba(217,130,122,.28);
  }

  .np-contacts__route svg { flex: 0 0 auto; width: 18px; height: 18px; }

  .np-contacts__messenger {
    display: inline-grid;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    place-items: center;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(63,63,63,.08);
    border-radius: 50%;
    color: var(--nc-text);
    background: var(--nc-white);
    box-shadow: 0 8px 18px rgba(63,63,63,.07);
  }

  .np-contacts__messenger--max,
  .np-contacts__messenger--telegram { color: var(--nc-text); }

  .np-contacts__messenger--max {
    background: #F0F2F3;
  }

  .np-contacts__messenger--telegram {
    background: #2AABEE;
  }

  .np-contacts__messenger:hover {
    transform: translateY(-2px);
    box-shadow: 0 11px 22px rgba(63,63,63,.11);
  }

  .np-contacts__messenger img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .np-contacts__sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  .np-contacts__appointment {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 19px 0 0;
    color: var(--nc-muted);
    font-size: 12px;
    line-height: 1.45;
  }

  .np-contacts__appointment::before {
    content: "";
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--nc-sage);
    box-shadow: 0 0 0 5px rgba(143,201,182,.18);
  }

  @media (max-width: 1040px) {
    .np-contacts__head {
      grid-template-columns: 1fr;
      align-items: start;
      gap: 18px;
    }

    .np-contacts__intro { max-width: 690px; }
    .np-contacts__map-shell { height: 650px; min-height: 650px; }
    .np-contacts__card { width: min(420px, calc(100% - 64px)); }
  }

  @media (max-width: 780px) {
    .np-contacts { padding-left: 18px; padding-right: 18px; }
    .np-contacts__stage { display: flex; flex-direction: column; padding: 12px; }
    .np-contacts__map-shell { height: clamp(390px, 78vw, 500px); min-height: 390px; border-radius: 22px; }
    .np-contacts__map-shell::after { background: linear-gradient(180deg, transparent 58%, rgba(63,63,63,.08) 100%); }
    .np-contacts__card {
      position: relative;
      left: auto;
      top: auto;
      width: calc(100% - 28px);
      margin: -54px auto 2px;
      border-radius: 26px;
      transform: none;
    }
  }

  @media (max-width: 560px) {
    .np-contacts {
      --np-title-size: clamp(34px, 10.7vw, 44px);
      --np-corner-size: 230px;
      padding: 64px 14px 64px;
    }

    .np-contacts__head { margin-bottom: 30px; }
    .np-contacts__title { line-height: 1.02; letter-spacing: -.04em; }
    .np-contacts__map-shell { height: 350px; min-height: 350px; border-radius: 20px; }
    .np-contacts__card {
      width: calc(100% - 12px);
      margin-top: -42px;
      padding: 27px 21px 24px;
      border-radius: 24px;
    }

    .np-contacts__avatar { width: 58px; height: 58px; }
    .np-contacts__address { font-size: clamp(25px, 8.1vw, 33px); }
    .np-contacts__phone { font-size: 25px; }
    .np-contacts__actions { display: grid; grid-template-columns: minmax(0, 1fr) 48px 48px; gap: 9px; }
    .np-contacts__route { min-height: 48px; padding-left: 14px; padding-right: 14px; font-size: 11.5px; }
    .np-contacts__messenger { width: 48px; height: 48px; min-height: 48px; }
  }

  @media (max-width: 390px) {
    .np-contacts__actions { grid-template-columns: 1fr 48px 48px; }
    .np-contacts__route { grid-column: 1 / -1; width: 100%; font-size: 12px; }
    .np-contacts__messenger--max { justify-self: end; }
    .np-contacts__messenger--telegram { justify-self: start; }
  }

  @media (max-width: 350px) {
    .np-contacts__phone {
      font-size: 22px;
      white-space: nowrap;
      letter-spacing: -.035em;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .np-contacts__phone,
    .np-contacts__route,
    .np-contacts__messenger { transition: none; }
  }


  .np-footer,
  .np-footer * { box-sizing: border-box; }

  .np-footer {
    --nf-bg: #F5F0E7;
    --nf-text: #3F3F3F;
    --nf-muted: rgba(63,63,63,.60);
    --nf-coral: #EFA7A0;
    --nf-sage: #8FC9B6;
    --nf-soft: rgba(255,255,255,.48);

    position: relative;
    width: 100%;
    overflow: hidden;
    color: var(--nf-text);
    background: var(--nf-bg);
    font-family: var(--t-text-font, Arial, sans-serif);
  }

  .np-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(154px, 30vw);
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--nf-coral) 0 68%, var(--nf-sage) 68% 100%);
    transform: translateX(-50%);
  }

  .np-footer__inner {
    width: min(100%, 1320px);
    margin: 0 auto;
    padding: clamp(34px, 4vw, 48px) 24px clamp(24px, 3vw, 32px);
  }

  .np-footer__main {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(420px, 1.35fr);
    align-items: center;
    gap: clamp(34px, 5vw, 78px);
  }

  .np-footer__brand {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
  }

  .np-footer__logo {
    position: relative;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    overflow: hidden;
    border-radius: 50%;
    background: rgba(255,255,255,.58);
    box-shadow: inset 0 0 0 1px rgba(63,63,63,.07);
  }

  .np-footer__logo img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 7px;
  }

  .np-footer__identity { min-width: 0; }

  .np-footer__role {
    margin: 0 0 5px;
    color: var(--nf-muted);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: .09em;
    text-transform: uppercase;
  }

  .np-footer__name {
    margin: 0;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(21px, 2vw, 28px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.025em;
  }

  .np-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 24px;
    min-width: 0;
  }

  .np-footer__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--nf-text) !important;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
    transition: color .2s ease;
  }

  .np-footer__link svg {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: .72;
    transition: transform .2s ease, opacity .2s ease;
  }

  .np-footer__link:hover,
  .np-footer__link:focus-visible {
    color: #D47D75 !important;
    outline: none;
  }

  .np-footer__link:hover svg,
  .np-footer__link:focus-visible svg {
    transform: translate(2px,-2px);
    opacity: 1;
  }

  .np-footer__meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    margin-top: clamp(24px, 3vw, 32px);
  }

  .np-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 18px;
    color: var(--nf-muted);
    font-size: 11px;
    line-height: 1.55;
  }

  .np-footer__legal p { margin: 0; }

  .np-footer__copyright {
    color: var(--nf-text);
    font-weight: 600;
  }

  .np-footer__top {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(63,63,63,.10);
    border-radius: 999px;
    color: var(--nf-muted) !important;
    background: var(--nf-soft);
    text-decoration: none !important;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transition: transform .2s ease, color .2s ease, background .2s ease;
  }

  .np-footer__top svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .np-footer__top:hover,
  .np-footer__top:focus-visible {
    color: var(--nf-text) !important;
    background: rgba(255,255,255,.72);
    transform: translateY(-2px);
    outline: none;
  }

  @media (max-width: 900px) {
    .np-footer__main {
      grid-template-columns: 1fr;
      gap: 26px;
    }

    .np-footer__links { justify-content: flex-start; }
  }

  @media (max-width: 620px) {
    .np-footer__inner {
      padding-left: 20px;
      padding-right: 20px;
    }

    .np-footer__logo {
      width: 50px;
      height: 50px;
      flex-basis: 50px;
    }

    .np-footer__links {
      display: grid;
      gap: 12px;
    }

    .np-footer__link {
      width: fit-content;
      max-width: 100%;
    }

    .np-footer__meta {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .np-footer__legal {
      display: grid;
      gap: 4px;
    }

    .np-footer__top { justify-self: start; }
  }

  @media (prefers-reduced-motion: reduce) {
    .np-footer__link,
    .np-footer__link svg,
    .np-footer__top { transition: none; }
  }


  .np-cookie-notice,
  .np-cookie-notice * {
    box-sizing: border-box;
  }

  .np-cookie-notice {
    --cn-bg: rgba(255,255,255,.96);
    --cn-page: #F5F0E7;
    --cn-coral: #EFA7A0;
    --cn-coral-dark: #D9827A;
    --cn-sage: #8FC9B6;
    --cn-sage-dark: #4F8575;
    --cn-text: #3F3F3F;
    --cn-muted: rgba(63,63,63,.72);
    --cn-line: rgba(63,63,63,.10);
    --cn-shadow: 0 22px 65px rgba(63,63,63,.16);

    position: fixed;
    z-index: 2147483000;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 18px 24px 24px;
    pointer-events: none;
    font-family: var(--t-text-font, Arial, sans-serif);
    opacity: 0;
    visibility: hidden;
    transform: translateY(22px);
    transition:
      opacity .32s ease,
      visibility .32s ease,
      transform .42s cubic-bezier(.22,.61,.36,1);
  }

  .np-cookie-notice.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .np-cookie-notice.is-hiding {
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
  }

  .np-cookie-notice__card {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 18px 18px 18px 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.84);
    border-radius: 26px;
    background: var(--cn-bg);
    box-shadow: var(--cn-shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    pointer-events: auto;
  }

  .np-cookie-notice__card::before,
  .np-cookie-notice__card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }

  .np-cookie-notice__card::before {
    width: 112px;
    height: 112px;
    right: 126px;
    bottom: -76px;
    background: rgba(143,201,182,.18);
  }

  .np-cookie-notice__card::after {
    width: 86px;
    height: 86px;
    right: 86px;
    top: -66px;
    background: rgba(239,167,160,.14);
  }

  .np-cookie-notice__mark {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    border-radius: 17px;
    background: rgba(143,201,182,.20);
    color: var(--cn-sage-dark);
  }

  .np-cookie-notice__mark svg {
    width: 27px;
    height: 27px;
    display: block;
  }

  .np-cookie-notice__content {
    position: relative;
    z-index: 1;
    min-width: 0;
  }

  .np-cookie-notice__label {
    margin: 0 0 5px;
    color: var(--cn-sage-dark);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: .075em;
    text-transform: uppercase;
  }

  .np-cookie-notice__text {
    max-width: 920px;
    margin: 0;
    color: var(--cn-muted);
    font-size: 14px;
    line-height: 1.55;
  }

  .np-cookie-notice__text a {
    color: var(--cn-text);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(79,133,117,.42);
    text-underline-offset: 3px;
    transition: color .2s ease, text-decoration-color .2s ease;
  }

  .np-cookie-notice__text a:hover {
    color: var(--cn-sage-dark);
    text-decoration-color: var(--cn-sage-dark);
  }

  .np-cookie-notice__actions {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .np-cookie-notice__accept {
    min-width: 126px;
    min-height: 48px;
    padding: 13px 25px;
    border: 0;
    border-radius: 16px;
    background: var(--cn-coral);
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(217,130,122,.20);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  }

  .np-cookie-notice__accept:hover {
    background: var(--cn-coral-dark);
    transform: translateY(-1px);
    box-shadow: 0 13px 28px rgba(217,130,122,.25);
  }

  .np-cookie-notice__accept:active {
    transform: translateY(0);
  }

  .np-cookie-notice__accept:focus-visible,
  .np-cookie-notice__text a:focus-visible {
    outline: 3px solid rgba(79,133,117,.30);
    outline-offset: 3px;
  }

  @media (max-width: 900px) {
    .np-cookie-notice {
      padding: 14px 18px 18px;
    }

    .np-cookie-notice__card {
      grid-template-columns: auto minmax(0, 1fr);
      gap: 15px 17px;
      padding: 17px;
      border-radius: 24px;
    }

    .np-cookie-notice__actions {
      grid-column: 2;
      justify-content: flex-start;
    }

    .np-cookie-notice__accept {
      min-width: 118px;
      min-height: 46px;
    }
  }

  @media (max-width: 600px) {
    .np-cookie-notice {
      padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
    }

    .np-cookie-notice__card {
      display: block;
      padding: 18px;
      border-radius: 22px;
    }

    .np-cookie-notice__mark {
      width: 44px;
      height: 44px;
      margin-bottom: 13px;
      border-radius: 15px;
    }

    .np-cookie-notice__mark svg {
      width: 24px;
      height: 24px;
    }

    .np-cookie-notice__label {
      margin-bottom: 7px;
      font-size: 10px;
    }

    .np-cookie-notice__text {
      font-size: 13px;
      line-height: 1.52;
    }

    .np-cookie-notice__actions {
      display: block;
      margin-top: 15px;
    }

    .np-cookie-notice__accept {
      width: 100%;
      min-height: 49px;
      border-radius: 15px;
    }

    .np-cookie-notice__card::before {
      width: 92px;
      height: 92px;
      right: -26px;
      bottom: -58px;
    }

    .np-cookie-notice__card::after {
      width: 72px;
      height: 72px;
      right: -18px;
      top: -52px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .np-cookie-notice,
    .np-cookie-notice__accept {
      transition: none !important;
    }
  }


  .np-quiz-capture,
  .np-quiz-capture * { box-sizing: border-box; }

  .np-quiz-capture {
    --nqc-bg: #F5F0E7;
    --nqc-white: #FFFFFF;
    --nqc-text: #3F3F3F;
    --nqc-muted: rgba(63,63,63,.68);
    --nqc-coral: #EFA7A0;
    --nqc-coral-dark: #D9827A;
    --nqc-sage: #8FC9B6;
    --nqc-sage-dark: #4F8575;

    position: fixed;
    z-index: 2147482000;
    right: max(22px, env(safe-area-inset-right));
    bottom: max(22px, env(safe-area-inset-bottom));
    width: min(460px, calc(100vw - 44px));
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 22px, 0) scale(.985);
    transition: opacity .28s ease, transform .38s cubic-bezier(.22,.61,.36,1), visibility 0s linear .38s;
    color: var(--nqc-text);
    font-family: var(--t-text-font, Arial, sans-serif);
  }

  .np-quiz-capture.is-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
    transition-delay: 0s;
  }

  .np-quiz-capture__card {
    position: relative;
    overflow: hidden;
    padding: 28px 28px 24px;
    border: 1px solid rgba(255,255,255,.82);
    border-radius: 30px;
    background:
      radial-gradient(circle at 100% 0, rgba(143,201,182,.21), transparent 34%),
      linear-gradient(145deg, rgba(255,255,255,.98), rgba(245,240,231,.96));
    box-shadow: 0 26px 72px rgba(63,63,63,.18);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .np-quiz-capture__card::after {
    content: "";
    position: absolute;
    right: -82px;
    bottom: -94px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(239,167,160,.16);
    pointer-events: none;
  }

  .np-quiz-capture__close {
    position: absolute;
    z-index: 5;
    top: 15px;
    right: 15px;
    display: grid;
    width: 38px;
    height: 38px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(63,63,63,.08);
    border-radius: 50%;
    color: rgba(63,63,63,.65);
    background: rgba(255,255,255,.72);
    cursor: pointer;
    transition: transform .2s ease, color .2s ease, background .2s ease;
  }

  .np-quiz-capture__close:hover,
  .np-quiz-capture__close:focus-visible {
    color: var(--nqc-text);
    background: var(--nqc-white);
    transform: rotate(5deg);
    outline: none;
  }

  .np-quiz-capture__close svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
  }

  .np-quiz-capture__person {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 46px 20px 0;
  }

  .np-quiz-capture__avatar {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,.96);
    border-radius: 50%;
    background: var(--nqc-coral);
    box-shadow: 0 9px 22px rgba(63,63,63,.12);
  }

  .np-quiz-capture__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .np-quiz-capture__person-text { min-width: 0; }

  .np-quiz-capture__name {
    display: block;
    margin: 0 0 2px;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
  }

  .np-quiz-capture__role {
    display: block;
    color: var(--nqc-muted);
    font-size: 11px;
    line-height: 1.35;
  }

  .np-quiz-capture__eyebrow {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 12px;
    color: var(--nqc-sage-dark);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .085em;
    text-transform: uppercase;
  }

  .np-quiz-capture__eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: var(--nqc-sage);
  }

  .np-quiz-capture__title {
    position: relative;
    z-index: 2;
    max-width: 380px;
    margin: 0;
    color: var(--nqc-coral-dark);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(27px, 2.5vw, 34px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.038em;
    text-wrap: balance;
  }

  .np-quiz-capture__offer {
    position: relative;
    z-index: 2;
    max-width: 390px;
    margin: 13px 0 0;
    color: var(--nqc-sage-dark);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .045em;
    text-transform: uppercase;
  }

  .np-quiz-capture__text {
    position: relative;
    z-index: 2;
    max-width: 390px;
    margin: 15px 0 0;
    color: var(--nqc-muted);
    font-size: 14px;
    line-height: 1.6;
  }

  .np-quiz-capture__text + .np-quiz-capture__text {
    margin-top: 7px;
  }

  .np-quiz-capture__actions {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 10px;
    margin-top: 22px;
  }

  .np-quiz-capture__primary {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 22px;
    border: 0;
    border-radius: 999px;
    color: #FFFFFF !important;
    background: var(--nqc-coral-dark);
    box-shadow: 0 12px 28px rgba(217,130,122,.25);
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .025em;
    text-align: center;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  }

  .np-quiz-capture__primary:hover,
  .np-quiz-capture__primary:focus-visible {
    color: #FFFFFF !important;
    background: #C8746D;
    box-shadow: 0 15px 32px rgba(217,130,122,.31);
    transform: translateY(-2px);
    outline: none;
  }

  .np-quiz-capture__primary svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .np-quiz-capture__secondary {
    justify-self: center;
    padding: 5px 8px;
    border: 0;
    color: var(--nqc-muted);
    background: transparent;
    font: inherit;
    font-size: 11px;
    line-height: 1.4;
    text-decoration: underline;
    text-decoration-color: rgba(63,63,63,.22);
    text-underline-offset: 4px;
    cursor: pointer;
    transition: color .2s ease;
  }

  .np-quiz-capture__secondary:hover,
  .np-quiz-capture__secondary:focus-visible {
    color: var(--nqc-text);
    outline: none;
  }

  @media (max-width: 780px) {
    .np-quiz-capture {
      right: max(12px, env(safe-area-inset-right));
      bottom: max(12px, env(safe-area-inset-bottom));
      left: max(12px, env(safe-area-inset-left));
      width: auto;
      transform: translate3d(0, 36px, 0);
    }

    .np-quiz-capture__card {
      max-height: min(68vh, 560px);
      overflow-y: auto;
      padding: 24px 22px 20px;
      border-radius: 26px;
      overscroll-behavior: contain;
    }

    .np-quiz-capture__person { margin-bottom: 16px; }
    .np-quiz-capture__title { font-size: clamp(27px, 8vw, 34px); }
    .np-quiz-capture__offer { font-size: 11.5px; }
    .np-quiz-capture__text { font-size: 13.5px; }
  }

  @media (max-width: 390px) {
    .np-quiz-capture__card { padding: 21px 18px 18px; border-radius: 24px; }
    .np-quiz-capture__close { top: 12px; right: 12px; width: 36px; height: 36px; }
    .np-quiz-capture__person { margin-right: 42px; }
    .np-quiz-capture__avatar { width: 46px; height: 46px; flex-basis: 46px; }
    .np-quiz-capture__title { font-size: clamp(25px, 7.6vw, 30px); }
    .np-quiz-capture__actions { margin-top: 19px; }
    .np-quiz-capture__primary { min-height: 50px; padding: 13px 17px; font-size: 11px; }
  }

  @media (max-height: 620px) and (max-width: 780px) {
    .np-quiz-capture__card { max-height: calc(100vh - 24px); }
    .np-quiz-capture__person { display: none; }
  }

  @media (prefers-reduced-motion: reduce) {
    .np-quiz-capture,
    .np-quiz-capture__close,
    .np-quiz-capture__primary,
    .np-quiz-capture__secondary { transition: none; }
  }


  .np-mini-popup,
  .np-mini-popup * { box-sizing: border-box; }

  .np-mini-popup {
    --nmp-bg: #F5F0E7;
    --nmp-white: #FFFFFF;
    --nmp-coral: #EFA7A0;
    --nmp-coral-dark: #D9827A;
    --nmp-sage: #8FC9B6;
    --nmp-sage-dark: #4F8575;
    --nmp-text: #3F3F3F;
    --nmp-muted: rgba(63,63,63,.66);
    --nmp-line: rgba(63,63,63,.12);
    --nmp-shadow: 0 30px 90px rgba(63,63,63,.20);

    position: fixed;
    z-index: 2147483000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    font-family: var(--t-text-font, Arial, sans-serif);
    transition: opacity .24s ease, visibility .24s ease;
  }

  .np-mini-popup.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .np-mini-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(63,63,63,.28);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  .np-mini-popup__dialog {
    position: relative;
    z-index: 2;
    width: min(100%, 990px);
    max-height: calc(100vh - 48px);
    overflow: auto;
    border: 1px solid rgba(255,255,255,.76);
    border-radius: 34px;
    background: var(--nmp-white);
    box-shadow: var(--nmp-shadow);
    transform: translateY(16px) scale(.985);
    transition: transform .26s ease;
    scrollbar-width: thin;
    scrollbar-color: rgba(79,133,117,.35) transparent;
  }

  .np-mini-popup.is-open .np-mini-popup__dialog {
    transform: translateY(0) scale(1);
  }

  .np-mini-popup__close {
    position: absolute;
    z-index: 8;
    top: 18px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(63,63,63,.09);
    border-radius: 50%;
    color: var(--nmp-text);
    background: rgba(255,255,255,.86);
    box-shadow: 0 8px 24px rgba(63,63,63,.09);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
  }

  .np-mini-popup__close:hover,
  .np-mini-popup__close:focus-visible {
    transform: rotate(6deg);
    background: var(--nmp-bg);
    outline: none;
  }

  .np-mini-popup__close svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
  }

  .np-mini-popup__layout {
    display: grid;
    grid-template-columns: minmax(300px, .84fr) minmax(470px, 1.16fr);
    min-height: 610px;
  }

  .np-mini-popup__visual {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: 33px 0 0 33px;
    background:
      radial-gradient(circle at 18% 13%, rgba(239,167,160,.30), transparent 32%),
      radial-gradient(circle at 85% 80%, rgba(143,201,182,.30), transparent 38%),
      var(--nmp-bg);
  }

  .np-mini-popup__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
  }

  .np-mini-popup__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(63,63,63,.03) 35%, rgba(63,63,63,.58) 100%);
    pointer-events: none;
  }

  .np-mini-popup__visual-copy {
    position: absolute;
    z-index: 3;
    left: 32px;
    right: 32px;
    bottom: 32px;
    color: #fff;
  }

  .np-mini-popup__visual-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 12px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .085em;
    text-transform: uppercase;
  }

  .np-mini-popup__visual-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: var(--nmp-coral);
  }

  .np-mini-popup__visual-title {
    max-width: 330px;
    margin: 0;
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(28px, 3.1vw, 41px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.04em;
    text-wrap: balance;
  }

  .np-mini-popup__visual-note {
    max-width: 330px;
    margin: 15px 0 0;
    color: rgba(255,255,255,.84);
    font-size: 13px;
    line-height: 1.58;
  }

  .np-mini-popup__content {
    position: relative;
    min-width: 0;
    padding: 50px clamp(36px, 4.6vw, 62px) 38px;
    background: var(--nmp-white);
  }

  .np-mini-popup__eyebrow {
    margin: 0 0 9px;
    color: var(--nmp-sage-dark);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: .09em;
    text-transform: uppercase;
  }

  .np-mini-popup__title {
    max-width: 560px;
    margin: 0;
    color: var(--nmp-coral-dark);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 700;
    line-height: .99;
    letter-spacing: -.045em;
    text-wrap: balance;
  }

  .np-mini-popup__intro {
    max-width: 590px;
    margin: 17px 0 24px;
    color: var(--nmp-muted);
    font-size: 14px;
    line-height: 1.62;
  }

  .np-mini-popup__form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .np-mini-popup__field {
    min-width: 0;
  }

  .np-mini-popup__field--full,
  .np-mini-popup__privacy,
  .np-mini-popup__submit-row { grid-column: 1 / -1; }

  .np-mini-popup__label {
    display: block;
    margin: 0 0 7px;
    color: var(--nmp-text);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
  }

  .np-mini-popup__input,
  .np-mini-popup__textarea {
    width: 100%;
    border: 1px solid rgba(63,63,63,.13);
    border-radius: 15px;
    color: var(--nmp-text);
    background: #FBF8F2;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  }

  .np-mini-popup__input {
    height: 53px;
    padding: 0 15px;
  }

  .np-mini-popup__textarea {
    min-height: 94px;
    resize: vertical;
    padding: 13px 15px;
    line-height: 1.5;
  }

  .np-mini-popup__input::placeholder,
  .np-mini-popup__textarea::placeholder { color: rgba(63,63,63,.42); }

  .np-mini-popup__input:focus,
  .np-mini-popup__textarea:focus {
    border-color: var(--nmp-sage);
    background: var(--nmp-white);
    box-shadow: 0 0 0 4px rgba(143,201,182,.14);
  }

  .np-mini-popup__field.is-error .np-mini-popup__input,
  .np-mini-popup__field.is-error .np-mini-popup__textarea {
    border-color: var(--nmp-coral-dark);
  }

  .np-mini-popup__error {
    display: none;
    margin: 6px 0 0;
    color: var(--nmp-coral-dark);
    font-size: 10px;
    line-height: 1.35;
  }

  .np-mini-popup__field.is-error .np-mini-popup__error { display: block; }

  .np-mini-popup__privacy {
    display: grid;
    grid-template-columns: 17px minmax(0, 1fr);
    gap: 9px;
    align-items: start;
    margin-top: 2px;
    color: var(--nmp-muted);
    font-size: 9.5px;
    line-height: 1.5;
    cursor: pointer;
  }

  .np-mini-popup__privacy input {
    width: 16px;
    height: 16px;
    margin: 1px 0 0;
    accent-color: var(--nmp-sage-dark);
  }

  .np-mini-popup__privacy a {
    color: var(--nmp-sage-dark) !important;
    text-decoration: underline !important;
    text-underline-offset: 2px;
  }

  .np-mini-popup__submit-row {
    display: grid;
    grid-template-columns: minmax(300px, auto) minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin-top: 2px;
  }

  .np-mini-popup__submit {
    min-height: 60px;
    padding: 17px 30px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--nmp-coral-dark);
    box-shadow: 0 12px 28px rgba(217,130,122,.25);
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  }

  .np-mini-popup__submit:hover,
  .np-mini-popup__submit:focus-visible {
    transform: translateY(-2px);
    background: #C8746D;
    box-shadow: 0 15px 32px rgba(217,130,122,.31);
    outline: none;
  }

  .np-mini-popup__submit:disabled {
    cursor: wait;
    opacity: .66;
    transform: none;
  }

  .np-mini-popup__submit-note {
    color: var(--nmp-muted);
    font-size: 10px;
    line-height: 1.48;
  }

  .np-mini-popup__success {
    display: none;
    min-height: 390px;
    align-content: center;
    justify-items: start;
    text-align: left;
  }

  .np-mini-popup__success.is-visible { display: grid; }

  .np-mini-popup__success-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 21px;
    border-radius: 50%;
    color: var(--nmp-white);
    background: var(--nmp-sage-dark);
    font-size: 25px;
    font-weight: 700;
  }

  .np-mini-popup__success-title {
    max-width: 520px;
    margin: 0;
    color: var(--nmp-coral-dark);
    font-family: var(--t-headline-font, Arial, sans-serif);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.04em;
  }

  .np-mini-popup__success-text {
    max-width: 500px;
    margin: 16px 0 0;
    color: var(--nmp-muted);
    font-size: 14px;
    line-height: 1.65;
  }

  .np-mini-popup__honeypot {
    position: absolute !important;
    left: -99999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .np-mini-popup__editor-marker {
    width: min(100%, 720px);
    margin: 18px auto;
    padding: 18px 22px;
    border: 1px dashed rgba(79,133,117,.32);
    border-radius: 18px;
    color: var(--nmp-muted);
    background: rgba(245,240,231,.78);
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
  }

  .np-mini-popup__editor-marker strong {
    color: var(--nmp-sage-dark);
  }

  html.np-mini-popup-lock,
  html.np-mini-popup-lock body { overflow: hidden !important; }

  @media (max-width: 860px) {
    .np-mini-popup { padding: 14px; align-items: end; }
    .np-mini-popup__dialog {
      width: min(100%, 680px);
      max-height: calc(100dvh - 14px);
      border-radius: 28px 28px 0 0;
    }
    .np-mini-popup__layout { display: block; min-height: 0; }
    .np-mini-popup__visual {
      display: flex;
      align-items: center;
      gap: 18px;
      min-height: 126px;
      padding: 22px 76px 22px 24px;
      border-radius: 27px 27px 0 0;
      background:
        radial-gradient(circle at 10% 0%, rgba(239,167,160,.24), transparent 42%),
        radial-gradient(circle at 100% 100%, rgba(143,201,182,.26), transparent 46%),
        var(--nmp-bg);
    }
    .np-mini-popup__photo {
      position: relative;
      inset: auto;
      width: 88px;
      height: 88px;
      flex: 0 0 88px;
      border: 4px solid rgba(255,255,255,.82);
      border-radius: 50%;
      object-fit: cover;
      object-position: center 18%;
      box-shadow: 0 12px 30px rgba(63,63,63,.13);
    }
    .np-mini-popup__visual::after { display: none; }
    .np-mini-popup__visual-copy {
      position: relative;
      left: auto;
      right: auto;
      bottom: auto;
      color: var(--nmp-text);
    }
    .np-mini-popup__visual-kicker {
      margin-bottom: 7px;
      color: var(--nmp-sage-dark);
    }
    .np-mini-popup__visual-title {
      max-width: 430px;
      color: var(--nmp-coral-dark);
      font-size: clamp(21px, 4.5vw, 27px);
      line-height: 1.05;
    }
    .np-mini-popup__visual-note { display: none; }
    .np-mini-popup__content { padding: 28px 24px 28px; }
    .np-mini-popup__title { font-size: clamp(32px, 8vw, 44px); }
  }

  @media (max-width: 560px) {
    .np-mini-popup { padding: 0; }
    .np-mini-popup__dialog {
      width: 100%;
      max-height: 94dvh;
      border-radius: 25px 25px 0 0;
    }
    .np-mini-popup__close { top: 13px; right: 13px; width: 40px; height: 40px; }
    .np-mini-popup__visual {
      min-height: 96px;
      gap: 12px;
      padding: 14px 58px 14px 18px;
    }
    .np-mini-popup__photo {
      width: 64px;
      height: 64px;
      flex-basis: 64px;
      border-width: 3px;
    }
    .np-mini-popup__visual-kicker { margin-bottom: 4px; font-size: 8px; }
    .np-mini-popup__visual-title { font-size: clamp(18px, 5.3vw, 21px); max-width: 235px; }
    .np-mini-popup__content { padding: 20px 18px 18px; }
    .np-mini-popup__eyebrow { margin-bottom: 6px; font-size: 8.5px; }
    .np-mini-popup__title { font-size: clamp(27px, 8.8vw, 35px); line-height: 1; }
    .np-mini-popup__intro { margin: 10px 0 16px; font-size: 12.5px; line-height: 1.55; }
    .np-mini-popup__form { grid-template-columns: 1fr; gap: 10px; }
    .np-mini-popup__label { margin-bottom: 5px; }
    .np-mini-popup__field--full,
    .np-mini-popup__privacy,
    .np-mini-popup__submit-row { grid-column: auto; }
    .np-mini-popup__input { height: 48px; }
    .np-mini-popup__textarea { min-height: 72px; }
    .np-mini-popup__privacy { font-size: 9px; line-height: 1.42; }
    .np-mini-popup__submit-row { grid-template-columns: 1fr; gap: 10px; }
    .np-mini-popup__submit { width: 100%; }
    .np-mini-popup__submit-note { display: none; }
    .np-mini-popup__success { min-height: 360px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .np-mini-popup,
    .np-mini-popup__dialog,
    .np-mini-popup__close,
    .np-mini-popup__submit { transition: none; }
  }
