/* Split from ui-refresh.css: service common (part 1) */

body.site-home-live,
body.service-page-live {
    margin: 0;
    background: #fffaf5;
    color: #18202b;
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    --live-hero-gradient: linear-gradient(135deg, #f6aa37 0%, #f28a16 100%);
    --live-nav-active-color: #13264a;
    --live-nav-active-scrolled-color: #f59a23;
    --services-wave-progress: 0;
}

body.nav-menu-open {
    overflow: hidden;
}

.site-home-live *,
.site-home-live *::before,
.site-home-live *::after,
.service-page-live *,
.service-page-live *::before,
.service-page-live *::after {
    box-sizing: border-box;
}

.site-home-live img,
.service-page-live img {
    display: block;
    max-width: 100%;
    height: auto;
}

.site-home-live a,
.service-page-live a {
    color: inherit;
    text-decoration: none;
}

body.site-home-live,
.service-page-live,
.site-home-live button,
.site-home-live input,
.site-home-live textarea,
.service-page-live button,
.service-page-live input,
.service-page-live textarea {
    font-family: inherit;
}

.live-shell {
    width: min(1600px, calc(100% - 32px));
    margin: 0 auto;
}

.live-shell--services {
    width: min(1600px, calc(100% - 32px));
}

.live-shell--wide {
    width: min(1600px, calc(100% - 32px));
}

.live-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 30;
    backdrop-filter: blur(0);
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background-color 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, backdrop-filter 0.28s ease;
}

.live-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 82px;
}

.live-header.is-scrolled {
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.72);
    border-bottom-color: rgba(24, 32, 43, 0.1);
    box-shadow: 0 12px 30px rgba(24, 32, 43, 0.08);
}

.live-brand {
    display: inline-flex;
    align-items: center;
}

.live-brand img {
    width: 172px;
    filter: brightness(0) invert(1);
    transition: filter 0.28s ease;
}

.live-nav {
    display: flex;
    align-items: center;
    gap: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.28s ease;
}

.live-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
}

.live-nav__item {
    position: relative;
}

.live-nav__item > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.live-nav__item.has-children > a i {
    font-size: 14px;
    opacity: 0.72;
}

@media (min-width: 981px) {
    .live-nav__item.has-children {
        padding-bottom: 12px;
        margin-bottom: -12px;
    }
}

.live-nav a {
    position: relative;
    padding: 6px 0;
    transition: color 0.28s ease, opacity 0.28s ease;
}

.live-nav__dropdown {
    position: absolute;
    left: 50%;
    top: calc(100% + 12px);
    transform: translateX(-50%);
    z-index: 45;
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(255, 250, 245, 0.98);
    border: 1px solid rgba(24, 32, 43, 0.1);
    box-shadow: 0 18px 38px rgba(24, 32, 43, 0.12);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.live-nav__dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
    background: transparent;
}

.live-nav__item.has-children:hover .live-nav__dropdown,
.live-nav__item.has-children:focus-within .live-nav__dropdown {
    display: flex;
}

.live-nav__dropdown a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    color: rgba(24, 32, 43, 0.88);
    border-radius: 999px;
    padding: 9px 14px;
    line-height: 1;
    font-weight: 600;
    transition: color 0.24s ease, background-color 0.24s ease, transform 0.24s ease;
}

.live-nav__dropdown a:hover,
.live-nav__dropdown a:focus-visible {
    color: var(--live-nav-active-scrolled-color, var(--live-nav-active-color, #f59a23));
    background: rgba(24, 32, 43, 0.08);
    transform: translateY(-1px);
}

.live-nav__list > .live-nav__item > a.is-active {
    color: var(--live-nav-active-scrolled-color, var(--live-nav-active-color, #f59a23));
}

.live-nav__dropdown a.is-active {
    color: var(--live-nav-active-scrolled-color, var(--live-nav-active-color, #f59a23));
    background: rgba(24, 32, 43, 0.1);
}

.site-home-live .live-header:not(.is-scrolled) .live-nav a.is-active {
    color: #ffffff;
}

.site-home-live .live-header:not(.is-scrolled) .live-nav a.is-active::after {
    background: currentColor;
    transform: scaleX(1);
}

.service-page-live .live-header:not(.is-scrolled) .live-nav__list > .live-nav__item > a.is-active {
    color: #ffffff;
}

.service-page-live .live-header:not(.is-scrolled) .live-nav__list > .live-nav__item > a.is-active::after {
    background: currentColor;
    transform: scaleX(1);
}

.site-home-live .live-header:not(.is-scrolled) .live-nav a::after,
.service-page-live .live-header:not(.is-scrolled) .live-nav a::after {
    background: rgba(255, 255, 255, 0.92);
}

.service-page-live .live-header:not(.is-scrolled) .live-nav__dropdown a.is-active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

.site-home-live .live-header:not(.is-scrolled) .live-nav__dropdown,
.service-page-live .live-header:not(.is-scrolled) .live-nav__dropdown {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: 0 16px 34px rgba(24, 32, 43, 0.16);
}

.site-home-live .live-header:not(.is-scrolled) .live-nav__dropdown a,
.service-page-live .live-header:not(.is-scrolled) .live-nav__dropdown a {
    color: rgba(255, 255, 255, 0.95);
}

.site-home-live .live-header:not(.is-scrolled) .live-nav__dropdown a:hover,
.site-home-live .live-header:not(.is-scrolled) .live-nav__dropdown a:focus-visible,
.service-page-live .live-header:not(.is-scrolled) .live-nav__dropdown a:hover,
.service-page-live .live-header:not(.is-scrolled) .live-nav__dropdown a:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

.site-home-live .live-header:not(.is-scrolled) .live-nav__dropdown a.is-active,
.service-page-live .live-header:not(.is-scrolled) .live-nav__dropdown a.is-active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

.live-nav__dropdown-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.live-nav__dropdown-icon img {
    width: 16px;
    height: 16px;
    opacity: 0.86;
}

.site-home-live .live-header:not(.is-scrolled) .live-nav__dropdown-icon img,
.service-page-live .live-header:not(.is-scrolled) .live-nav__dropdown-icon img {
    filter: brightness(0) invert(1);
    opacity: 0.94;
}

.live-nav__dropdown a::after {
    display: none;
}

.live-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: var(--live-nav-active-scrolled-color, var(--live-nav-active-color, #f59a23));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.2s ease;
}

.live-nav a:hover::after,
.live-nav a:focus-visible::after {
    transform: scaleX(1);
}

.live-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: border-color 0.28s ease, background-color 0.28s ease;
}

.live-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: #ffffff;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.live-header.is-scrolled .live-brand img {
    filter: none;
}

.live-header.is-scrolled .live-nav {
    color: rgba(24, 32, 43, 0.84);
}

.live-header.is-scrolled .live-nav__list > .live-nav__item > a.is-active,
.live-header.is-scrolled .live-nav__dropdown a.is-active {
    color: var(--live-nav-active-scrolled-color, var(--live-nav-active-color, #13264a));
}

.live-header.is-scrolled .live-nav__list > .live-nav__item > a:hover,
.live-header.is-scrolled .live-nav__list > .live-nav__item > a:focus-visible {
    color: var(--live-nav-active-scrolled-color, var(--live-nav-active-color, #13264a));
}

.live-header.is-scrolled .live-nav__list > .live-nav__item > a.is-active::after {
    background: currentColor;
    transform: scaleX(1);
}

.live-header.is-scrolled .live-nav a::after {
    background: var(--live-nav-active-scrolled-color, var(--live-nav-active-color, #f59a23));
}

.live-header.is-scrolled .live-nav__dropdown a:hover,
.live-header.is-scrolled .live-nav__dropdown a:focus-visible {
    color: var(--live-nav-active-scrolled-color, var(--live-nav-active-color, #f59a23));
}

.live-header.is-scrolled .live-nav-toggle {
    border-color: rgba(24, 32, 43, 0.12);
    background: rgba(255, 255, 255, 0.9);
}

.live-header.is-scrolled .live-nav-toggle span {
    background: #18202b;
}

.live-header.is-open .live-nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.live-header.is-open .live-nav-toggle span:nth-child(2) {
    opacity: 0;
}

.live-header.is-open .live-nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.live-hero {
    position: relative;
    overflow: hidden;
    padding: 132px 0 104px;
    background:
        radial-gradient(circle at 84% 20%, rgba(255, 220, 168, 0.32), transparent 32%),
        var(--live-hero-gradient);
}

.site-home-live section[id] {
    scroll-margin-top: 110px;
}

.live-hero::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 52%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 58%);
    pointer-events: none;
}

.live-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
    align-items: center;
    gap: 44px;
}

.live-hero__copy {
    color: #ffffff;
}

.live-eyebrow,
.live-small-title,
.live-title span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.live-eyebrow {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.76);
}

.live-hero h1 {
    margin: 0;
    max-width: 12ch;
    color: #13264a;
    font-size: clamp(40px, 4.45vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.live-hero__prefix {
    display: block;
    color: #13264a;
    white-space: nowrap;
}

.live-hero__typing-line {
    display: block;
    margin-top: 0.08em;
    color: #2f67e8;
    white-space: nowrap;
}

.live-hero__typing {
    display: inline;
    color: inherit;
    white-space: inherit;
}

.live-hero__caret {
    display: inline-block;
    width: 0.08em;
    height: 0.88em;
    margin-left: 0.08em;
    background: #2f67e8;
    vertical-align: 0.03em;
    animation: liveCaretBlink 1s steps(1, end) infinite;
}

.live-hero__lead {
    margin: 24px 0 0;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.42;
}

.live-hero__desc {
    margin: 18px 0 0;
    max-width: 580px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.82;
}

.live-hero__actions {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.live-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.live-button:hover,
.live-button:focus-visible {
    transform: translateY(-2px);
}

.live-button--primary {
    background: #0178ff;
    border-color: #ffffff;
    color: #ffffff !important;
    box-shadow: 0 12px 28px rgba(1, 120, 255, 0.22);
}

.live-hero__visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.live-hero__panel {
    width: min(100%, 620px);
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.live-hero__panel img {
    width: 100%;
}

.live-hero__wave {
    position: absolute;
    right: -2%;
    bottom: -1px;
    left: -2%;
    height: 120px;
    width: 104%;
    display: block;
    overflow: visible;
    transform: translateY(0);
}

.live-hero__wave path {
    fill: #fffaf5;
}

.live-section {
    padding: 76px 0;
}

.live-section--services {
    --services-open-progress: 0;
    --services-title-push: 0px;
    position: relative;
    z-index: 3;
    margin-top: -112px;
    padding-top: 0;
    padding-bottom: calc(8px + 10px * var(--services-open-progress, 0));
}

.live-shell--services {
    position: relative;
    z-index: 2;
}

.live-section--services .live-title--centered {
    position: relative;
    left: auto;
    width: min(100% - 32px, 760px);
    z-index: 1;
    margin: 0 auto;
    padding-top: calc(18px + 10px * var(--services-open-progress, 0) + var(--services-title-push, 0px));
    margin-bottom: calc(-72px + 56px * var(--services-open-progress, 0) + (var(--services-title-push, 0px) * 0.12));
    opacity: calc(0.2 + 0.8 * var(--services-open-progress, 0));
    transform: translateY(calc(18px * (1 - var(--services-open-progress, 0))));
    pointer-events: none;
}

.live-section--services.is-spread .live-title--centered {
    z-index: 6;
    margin-bottom: 10px;
    opacity: 1;
    transform: translateY(0);
}

.live-section--services.is-spread .live-service-grid-shell {
    margin-top: 0;
}

.live-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.live-title--centered {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 34px;
    text-align: center;
}

.live-title h2,
.live-about__copy h2,
.live-why__copy h2,
.live-contact__intro h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.16;
    letter-spacing: -0.04em;
}

.live-title span,
.live-small-title {
    color: rgba(24, 32, 43, 0.5);
}

.live-service-grid-shell {
    position: relative;
    z-index: 2;
    height: auto;
    margin-top: calc(-74px + 74px * var(--services-open-progress, 0));
    overflow: visible;
}

.live-service-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    border-radius: 0;
    overflow: visible;
}

.live-service-card {
    position: relative;
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 430px;
    overflow: hidden;
    border: 0;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(var(--service-rgb), 0.96) 0%, rgba(var(--service-rgb), 0.86) 100%);
    transform-origin: center bottom;
    box-shadow: 0 18px 34px rgba(24, 32, 43, 0.12);
    will-change: transform;
    transform:
        translate3d(
            calc(var(--service-peek-x, 0) * 1px * (1 - var(--services-open-progress, 0))),
            calc(var(--service-peek-shift, 84) * 1px * (1 - var(--services-open-progress, 0))),
            0
        )
        rotate(calc(var(--service-peek-rotate, 0) * 1deg * (1 - var(--services-open-progress, 0))));
    transition: box-shadow 0.24s ease-out;
}

.live-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 26%, rgba(15, 23, 42, 0.14) 100%);
    pointer-events: none;
}

.live-service-card::after {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: rgba(255, 255, 255, 0.26);
    pointer-events: none;
}

.live-service-card__body {
    display: grid;
    gap: 16px;
    align-content: center;
    justify-items: center;
    text-align: center;
    padding: 38px 28px 0;
    position: relative;
    z-index: 1;
}

.live-service-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.22;
    text-align: center;
}

.live-service-card p,
.live-about__copy p,
.live-why__item p,
.live-process__item p,
.live-contact__intro p {
    margin: 0;
    color: rgba(24, 32, 43, 0.72);
    font-size: 15px;
    line-height: 1.9;
}

.live-service-card p {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.82;
    opacity: calc(0.62 + 0.38 * var(--services-open-progress, 0));
    transform: translateY(calc(12px * (1 - var(--services-open-progress, 0))));
    text-align: center;
}

.live-about__copy p,
.live-contact__intro p {
    font-size: 16px;
    line-height: 1.92;
}

.live-service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: rgba(255, 255, 255, 0.98);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    opacity: calc(0.78 + 0.22 * var(--services-open-progress, 0));
    transform: translateY(calc(10px * (1 - var(--services-open-progress, 0))));
}

.live-service-card a i {
    transition: transform 0.24s ease;
}

.live-service-card:hover a i,
.live-service-card:focus-within a i {
    transform: translateX(4px);
}

.live-service-card__media {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 10px 18px 20px;
    position: relative;
    z-index: 1;
    opacity: calc(0.3 + 0.7 * var(--services-open-progress, 0));
    transform: translateY(calc(16px * (1 - var(--services-open-progress, 0))));
}

.live-service-card__media img {
    width: auto;
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
    object-position: center bottom;
    transition: transform 0.45s ease;
}

.live-service-card:hover .live-service-card__media img,
.live-service-card:focus-within .live-service-card__media img {
    transform: translateY(-4px);
}

.live-service-card:nth-child(1) {
    --service-peek-x: 96;
    --service-peek-shift: 12;
    --service-peek-rotate: -2.2;
    z-index: 1;
}

.live-service-card:nth-child(2) {
    --service-peek-x: 48;
    --service-peek-shift: 6;
    --service-peek-rotate: -0.9;
    z-index: 2;
}

.live-service-card:nth-child(3) {
    --service-peek-x: 0;
    --service-peek-shift: 0;
    --service-peek-rotate: 0;
    z-index: 4;
}

.live-service-card:nth-child(4) {
    --service-peek-x: -48;
    --service-peek-shift: 6;
    --service-peek-rotate: 0.9;
    z-index: 2;
}

.live-service-card:nth-child(5) {
    --service-peek-x: -96;
    --service-peek-shift: 12;
    --service-peek-rotate: 2.2;
    z-index: 1;
}

.live-section--about {
    padding-top: 44px;
    padding-bottom: 44px;
    background:
        radial-gradient(circle at 14% 18%, rgba(245, 154, 35, 0.08), transparent 28%),
        linear-gradient(180deg, #fffdf9 0%, #fffaf4 100%);
}

.live-about {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.88fr) minmax(360px, 0.9fr);
    align-items: stretch;
    gap: 28px;
}

.live-about__media {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
}

.live-about__media img {
    width: 100%;
    display: block;
    transform-origin: 50% 62%;
    will-change: transform;
}

.live-about__copy {
    display: grid;
    align-content: center;
    gap: 22px;
    padding: 10px 12px 10px 0;
    max-width: 100%;
}

.live-about__copy .live-small-title {
    color: #9a6a1a;
}

.live-about__copy h2 {
    font-size: clamp(44px, 4.2vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.07em;
}

.live-about__copy p {
    max-width: 100%;
}

.live-about__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-content: stretch;
    align-self: stretch;
    grid-auto-rows: minmax(0, 1fr);
}

.live-stat {
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 0;
    height: 100%;
    padding: 28px 24px 24px;
    border: 1px solid rgba(24, 32, 43, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 40px rgba(24, 32, 43, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.live-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(24, 32, 43, 0.1);
}

.live-stat strong {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    color: #111827;
    font-size: 44px;
    line-height: 1;
    letter-spacing: -0.05em;
    text-align: center;
}

.live-stat strong span {
    margin-left: 6px;
    font-size: 17px;
    letter-spacing: 0;
}

.live-stat p {
    margin: 14px 0 0;
    color: rgba(24, 32, 43, 0.68);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
}

.live-section--why {
    position: relative;
    background: linear-gradient(135deg, #f59a23 0%, #f28a16 100%);
}

.live-section--why::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: 0.15;
    pointer-events: none;
}

.live-why {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    align-items: center;
    gap: 42px;
}

.live-section--why .live-small-title,
.live-section--why .live-why__copy h2,
.live-section--why .live-why__item h3,
.live-section--why .live-why__item p,
.live-section--why .live-why__item i {
    color: #ffffff;
}

.live-section--why .live-small-title {
    color: rgba(255, 255, 255, 0.72);
}

.live-why__copy {
    display: grid;
    gap: 22px;
}

.live-why__list {
    display: grid;
    gap: 16px;
}

.live-why__item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.live-why__item:first-child {
    border-top: 0;
    padding-top: 0;
}

.live-why__item:hover {
    transform: translateX(4px);
}

.live-why__item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 24px;
}

.live-why__item h3 {
    margin: 0 0 8px;
    font-size: 21px;
}

.live-why__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.live-why__visual img {
    width: 100%;
    display: block;
    transform-origin: 52% 58%;
    will-change: transform;
}

.live-section--process {
    background:
        radial-gradient(circle at 8% 16%, rgba(245, 154, 35, 0.08), transparent 22%),
        linear-gradient(180deg, #fffefb 0%, #fffaf4 100%);
}

.live-process-layout {
    display: grid;
    gap: 28px;
}

.live-process__intro {
    display: grid;
    gap: 14px;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    justify-items: center;
}

.live-process__intro .live-small-title {
    order: 2;
    justify-self: center;
}

.live-process__intro h2 {
    order: 1;
    margin: 0;
    color: #111827;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.live-process__intro p {
    order: 3;
    margin: 0;
    max-width: 60ch;
    margin-inline: auto;
    color: rgba(24, 32, 43, 0.72);
    font-size: 16px;
    line-height: 1.9;
}

.live-section--clients .live-title {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
    text-align: center;
}

.live-process {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    padding-top: 34px;
}

.live-process::before {
    content: "";
    position: absolute;
    top: 19px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: linear-gradient(90deg, rgba(245, 154, 35, 0.22) 0%, rgba(245, 154, 35, 0.78) 48%, rgba(245, 154, 35, 0.22) 100%);
    transform-origin: left center;
    z-index: 0;
}

body.motion-enabled .live-process.motion-reveal::before {
    transform: scaleX(0);
    transition: transform 0.86s cubic-bezier(0.22, 1, 0.36, 1);
}

body.motion-enabled .live-process.motion-reveal.is-visible::before {
    transform: scaleX(1);
}

.live-process__item {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: start;
    gap: 14px;
    min-height: 250px;
    padding: 68px 22px 24px;
    border: 1px solid rgba(24, 32, 43, 0.08);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 253, 249, 0.96) 0%, rgba(255, 248, 238, 1) 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.72) inset,
        0 18px 40px rgba(24, 32, 43, 0.07);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease, background-color 0.32s ease;
}

.live-process__item:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 154, 35, 0.2);
    box-shadow: 0 22px 44px rgba(24, 32, 43, 0.1);
}

.live-process__item:nth-child(2n) {
    transform: translateY(10px);
}

.live-process__item:nth-child(2n):hover {
    transform: translateY(4px);
}

.live-process__marker {
    position: absolute;
    top: 19px;
    left: 22px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(245, 154, 35, 0.24);
    border-radius: 999px;
    background: #fffaf4;
    box-shadow: 0 10px 24px rgba(24, 32, 43, 0.06);
    color: #c97710;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1;
}

.live-process__item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(245, 154, 35, 0.08);
    color: #f59a23;
    font-size: 24px;
}

.live-process__item h3 {
    margin: 0;
    color: #111827;
    font-size: 22px;
    line-height: 1.15;
}

.live-process__item p {
    margin: 0;
    color: rgba(24, 32, 43, 0.7);
    font-size: 15px;
    line-height: 1.85;
}

@media (min-width: 981px) {
    .service-page-live .live-process__item {
        justify-items: center;
    }

    .service-page-live .live-process__item i,
    .service-page-live .live-process__item h3 {
        justify-self: center;
        text-align: center;
    }

    .service-page-live .live-process__item p {
        justify-self: stretch;
        text-align: left;
    }
}

.live-section--clients {
    padding-top: 58px;
    background:
        radial-gradient(circle at 12% 14%, rgba(245, 154, 35, 0.06), transparent 24%),
        linear-gradient(180deg, #fffefb 0%, #fffaf4 100%);
}

.live-clients {
    display: grid;
    gap: 14px;
}

.live-client-row {
    position: relative;
    display: flex;
    gap: 14px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 1) 6%, rgba(0, 0, 0, 1) 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 1) 6%, rgba(0, 0, 0, 1) 94%, transparent 100%);
}

.live-client-track {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    min-width: max-content;
    animation: liveClientsMarquee 48s linear infinite;
}

.live-client-row--reverse .live-client-track {
    animation-name: liveClientsMarqueeReverse;
}

.live-client {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: clamp(210px, 16vw, 268px);
    min-height: 104px;
    margin: 0;
    padding: 18px 24px;
    border: 1px solid rgba(24, 32, 43, 0.06);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(24, 32, 43, 0.05);
    transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.live-client:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(24, 32, 43, 0.08);
}

.live-client img {
    max-width: 100%;
    max-height: 44px;
    object-fit: contain;
    filter: saturate(0.96) contrast(0.98);
}

.live-client:hover img {
    filter: none;
}

@keyframes liveClientsMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(calc(-100% - 14px), 0, 0);
    }
}

@keyframes liveClientsMarqueeReverse {
    0% {
        transform: translate3d(calc(-100% - 14px), 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

.live-section--contact {
    background:
        radial-gradient(circle at 14% 18%, rgba(245, 154, 35, 0.1), transparent 26%),
        linear-gradient(180deg, #fff8ec 0%, #fffaf5 100%);
}

.live-contact {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(540px, 1.16fr);
    gap: 18px 22px;
    align-items: stretch;
}

.live-contact__intro {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 14px;
    align-self: stretch;
    min-height: 100%;
    height: 100%;
}

.live-contact__heading {
    display: grid;
    grid-template-columns: minmax(0, 0.56fr) minmax(220px, 0.44fr);
    align-items: end;
    gap: 10px 24px;
    max-width: none;
    text-align: left;
    margin: 0;
}

.live-contact__heading .live-small-title {
    grid-column: 1 / -1;
    justify-self: start;
}

.live-contact__heading h2 {
    margin: 0;
    color: #111827;
    max-width: none;
    font-size: clamp(34px, 3vw, 50px);
    line-height: 1.02;
    letter-spacing: -0.06em;
    white-space: nowrap;
}

.live-contact__heading p {
    margin: 0;
    max-width: none;
    justify-self: end;
    color: rgba(24, 32, 43, 0.7);
    font-size: 17px;
    line-height: 1.9;
}

.live-contact__signals {
    display: grid;
    counter-reset: contact-step;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: none;
    margin-top: 2px;
    align-self: stretch;
    align-content: stretch;
    grid-auto-rows: minmax(176px, 1fr);
    min-height: 100%;
    height: 100%;
}

.live-contact__signal {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    text-align: center;
    gap: 12px;
    padding: 20px 18px;
    border: 1px solid rgba(24, 32, 43, 0.08);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 251, 244, 0.84) 100%);
    box-shadow: 0 12px 30px rgba(24, 32, 43, 0.04);
    min-height: 0;
    height: 100%;
}

.live-contact__signal:first-child {
    padding-top: 18px;
    border-top: 1px solid rgba(24, 32, 43, 0.08);
}

.live-contact__signal::before {
    content: counter(contact-step, decimal-leading-zero);
    counter-increment: contact-step;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(245, 154, 35, 0.2);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    color: #c97710;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1;
    align-self: start;
}

.live-contact__signal strong,
.live-contact__signal p {
    grid-column: auto;
}

.live-contact__signal strong {
    color: #111827;
    font-size: 20px;
    line-height: 1.4;
    max-width: 16ch;
}

.live-contact__signal p {
    margin: 0;
    color: rgba(24, 32, 43, 0.64);
    font-size: 16px;
    line-height: 1.78;
    max-width: 22ch;
}

.live-contact__form {
    align-self: stretch;
    padding: 22px;
    border: 1px solid rgba(24, 32, 43, 0.08);
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 251, 247, 0.98) 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.82) inset,
        0 18px 42px rgba(24, 32, 43, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.live-contact__form:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 154, 35, 0.14);
    box-shadow: 0 24px 50px rgba(24, 32, 43, 0.09);
}

.live-contact__form-head {
    display: grid;
    gap: 8px;
    margin-bottom: 4px;
}

.live-contact__form-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    color: rgba(24, 32, 43, 0.42);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.live-contact__form-head h3 {
    margin: 0;
    color: #111827;
    font-size: clamp(28px, 2vw, 34px);
    line-height: 1.16;
    letter-spacing: -0.04em;
}

.live-contact__form-note {
    margin: 0 0 14px;
    max-width: 54ch;
    color: rgba(24, 32, 43, 0.64);
    font-size: 14px;
    line-height: 1.75;
}

.live-form {
    display: grid;
    gap: 14px;
}

.live-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.live-form label {
    display: grid;
    gap: 8px;
}

.live-form label span {
    color: rgba(24, 32, 43, 0.76);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.live-form input,
.live-form textarea {
    width: 100%;
    min-width: 0;
    padding: 15px 16px;
    border: 1px solid rgba(24, 32, 43, 0.1);
    border-radius: 16px;
    background: #fffdf9;
    color: #111827;
    font: inherit;
    transition: border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.live-form textarea {
    min-height: 176px;
    resize: vertical;
}

.live-form input:focus,
.live-form textarea:focus {
    outline: none;
    border-color: rgba(245, 154, 35, 0.7);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(245, 154, 35, 0.1);
}

.live-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    width: 100%;
    padding: 0 24px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, #f59a23 0%, #ef8e12 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.live-form button:hover,
.live-form button:focus-visible {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #f2a231 0%, #eb8608 100%);
    box-shadow: 0 16px 34px rgba(245, 154, 35, 0.24);
}

.live-form .contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.live-form__captcha {
    display: grid;
    gap: 10px;
    margin-top: 2px;
}

.live-form__captcha-title {
    color: rgba(24, 32, 43, 0.72);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.7;
}

.live-form__captcha-widget {
    min-height: 66px;
    padding: 12px 14px;
    border: 1px dashed rgba(24, 32, 43, 0.18);
    border-radius: 14px;
    background: #fff;
}

.live-form__captcha-widget--opensource {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.live-form__captcha-image {
    width: 156px;
    height: 58px;
    border-radius: 10px;
    border: 1px solid rgba(24, 32, 43, 0.12);
    background: #fff;
}

.live-form__captcha-refresh {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(24, 32, 43, 0.14);
    border-radius: 10px;
    background: #fff;
    color: rgba(24, 32, 43, 0.84);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.live-form__captcha-refresh:hover,
.live-form__captcha-refresh:focus-visible {
    border-color: rgba(245, 154, 35, 0.58);
    color: #d87d0f;
}

.live-form__captcha-input {
    display: grid;
    gap: 8px;
}

@media (max-width: 640px) {
    .live-form__captcha-widget--opensource {
        flex-direction: column;
        align-items: stretch;
    }

    .live-form__captcha-image {
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
    }

    .live-form__captcha-refresh {
        width: 100%;
    }
}

.contact-success,
.contact-errors {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-left: 4px solid #f59a23;
    background: #fff7ea;
}

.contact-errors ul {
    margin: 0;
    padding-left: 18px;
}

.lead-success-toast {
    position: fixed;
    top: 92px;
    left: 50%;
    z-index: 90;
    transform: translate(-50%, -10px);
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    background: linear-gradient(135deg, #1f8d63 0%, #2ab27b 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 18px 34px rgba(16, 185, 129, 0.32);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.lead-success-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.lead-fireworks {
    position: fixed;
    inset: 0;
    z-index: 88;
    pointer-events: none;
}

.lead-fireworks__burst {
    position: absolute;
    top: 52%;
    width: 0;
    height: 0;
}

.lead-fireworks__burst--left {
    left: clamp(24px, 8vw, 160px);
}

.lead-fireworks__burst--right {
    right: clamp(24px, 8vw, 160px);
}

.lead-fireworks__burst i {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    border-radius: 50%;
    background: var(--fc, #ffd166);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.28);
    opacity: 0;
    animation: leadFireworkBurst var(--fd, 1s) ease-out var(--fdelay, 0s) forwards;
}

@keyframes leadFireworkBurst {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(0.45);
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(var(--fx, 0), var(--fy, 0)) scale(1);
    }
}

.live-form__actions {
    display: grid;
    gap: 10px;
    margin-top: 2px;
}

.live-form__footnote {
    margin: 0;
    color: rgba(24, 32, 43, 0.58);
    font-size: 13px;
    line-height: 1.7;
    text-align: center;
}

.live-footer {
    padding: 28px 0 34px;
    background: #101826;
    color: rgba(255, 255, 255, 0.72);
}

.live-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.live-footer strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
}

.live-footer p {
    margin: 6px 0 0;
    font-size: 14px;
}

.live-footer a {
    color: #ffd08f;
}

body.motion-enabled .motion-reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
        opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--motion-delay, 0ms);
    will-change: transform, opacity;
}

body.motion-enabled .motion-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

body.motion-enabled .live-hero__copy > *:nth-child(1) {
    transition-delay: 40ms;
}

body.motion-enabled .live-hero__copy > *:nth-child(2) {
    transition-delay: 120ms;
}

body.motion-enabled .live-hero__copy > *:nth-child(3) {
    transition-delay: 210ms;
}

body.motion-enabled .live-hero__copy > *:nth-child(4) {
    transition-delay: 300ms;
}

body.motion-enabled .live-hero__copy > *:nth-child(5) {
    transition-delay: 390ms;
}

body.motion-enabled .live-hero__copy > *:nth-child(6) {
    transition-delay: 480ms;
}

body.motion-enabled .live-hero__panel.is-visible img {
    animation: liveHeroFloat 7.8s ease-in-out 1.1s infinite;
}

body.motion-enabled .live-about__media.is-visible img {
    animation: liveAboutFloat 8.8s ease-in-out 0.35s infinite;
}

body.motion-enabled .live-why__visual.is-visible img {
    animation: liveWhyFloat 9.4s ease-in-out 0.45s infinite;
}

@keyframes liveHeroFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -10px, 0);
    }
}

@keyframes liveAboutFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    35% {
        transform: translate3d(0, -8px, 0) rotate(-0.35deg);
    }

    70% {
        transform: translate3d(0, -3px, 0) rotate(0.25deg);
    }
}

@keyframes liveWhyFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    32% {
        transform: translate3d(0, -10px, 0) rotate(-0.4deg);
    }

    68% {
        transform: translate3d(0, -4px, 0) rotate(0.32deg);
    }
}

@keyframes liveCaretBlink {
    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .live-header,
    .live-nav-toggle span,
    .live-button,
    .live-service-card,
    .live-service-card__media img,
    .live-service-card a i,
    .live-stat,
    .live-why__item,
    .live-process__item,
    .live-client,
    .live-contact__form,
    .live-form button,
    .motion-reveal,
    .live-hero__panel img,
    .live-about__media img,
    .live-why__visual img,
    .live-client-track,
    .brand-pr-platform-track {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }

    .live-process::before {
        transition: none !important;
        transform: none !important;
    }

    .live-client-row {
        overflow: auto;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .live-client-track[aria-hidden="true"] {
        display: none;
    }

    .live-hero__caret {
        animation: none !important;
    }
}

@media (max-width: 1200px) {
    .live-section--services {
        padding-bottom: 0;
    }

    .live-section--services::before {
        display: none;
    }

    .live-service-grid-shell {
        height: auto;
        max-height: none;
        margin-top: 12px;
        overflow: visible;
    }

    .live-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        border-radius: 0;
        overflow: visible;
        box-shadow: none;
    }

    .live-service-card {
        min-height: 360px;
        border: 0;
        border-radius: 24px;
        box-shadow: 0 18px 34px rgba(24, 32, 43, 0.1);
        transform: none;
    }

    .live-service-card:first-child {
        border-left: 0;
    }

    .live-client {
        width: clamp(180px, 28vw, 230px);
        min-height: 96px;
    }
}

@media (max-width: 980px) {
    .live-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        width: 44px;
        height: 44px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        color: #18202b;
    }

    .live-header .live-nav-toggle,
    .live-header.is-scrolled .live-nav-toggle,
    .live-header.is-open .live-nav-toggle {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    .live-nav-toggle span {
        display: none;
    }

    .live-nav-toggle::before {
        content: "";
        width: 22px;
        height: 2px;
        background: currentColor;
        box-shadow: 0 -7px 0 currentColor, 0 7px 0 currentColor;
    }

    .site-home-live .live-header:not(.is-scrolled) .live-nav-toggle,
    .service-page-live .live-header:not(.is-scrolled) .live-nav-toggle {
        color: #ffffff;
    }

    .live-header.is-scrolled .live-nav-toggle {
        color: #18202b;
    }

    .live-nav {
        position: fixed;
        top: 72px;
        right: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px 16px 22px;
        max-height: calc(100vh - 72px);
        overflow: auto;
        overscroll-behavior: contain;
        background:
            linear-gradient(180deg, rgba(255, 252, 246, 0.99) 0%, rgba(255, 248, 238, 0.985) 100%);
        border-top: 1px solid rgba(24, 32, 43, 0.08);
        border-radius: 0;
        box-shadow: 0 20px 42px rgba(24, 32, 43, 0.16);
        backdrop-filter: blur(12px);
        color: rgba(24, 32, 43, 0.86);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform-origin: calc(100% - 44px) -12px;
        transform: translateY(-18px) scale(0.96);
        transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.21, 0.94, 0.31, 1), visibility 0.28s step-end;
    }

    .site-home-live .live-header.is-open:not(.is-scrolled) .live-nav,
    .service-page-live .live-header.is-open:not(.is-scrolled) .live-nav {
        background:
            linear-gradient(180deg, rgba(17, 24, 39, 0.08) 0%, rgba(17, 24, 39, 0.14) 100%),
            var(--live-hero-gradient);
        border-top-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 20px 42px rgba(24, 32, 43, 0.2);
        color: rgba(255, 255, 255, 0.96);
    }

    .live-header.is-scrolled.is-open .live-nav {
        background:
            linear-gradient(180deg, rgba(255, 252, 246, 0.99) 0%, rgba(255, 248, 238, 0.985) 100%);
        border-top-color: rgba(24, 32, 43, 0.08);
        color: rgba(24, 32, 43, 0.86);
    }

    .live-header.is-open .live-nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
        transition: opacity 0.26s ease, transform 0.34s cubic-bezier(0.2, 0.95, 0.2, 1), visibility 0s;
    }

    .live-nav__list {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .live-nav__item {
        width: 100%;
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 0.22s ease, transform 0.26s ease;
    }

    .live-header.is-open .live-nav__item {
        opacity: 1;
        transform: translateY(0);
    }

    .live-header.is-open .live-nav__item:nth-child(1) { transition-delay: 0.03s; }
    .live-header.is-open .live-nav__item:nth-child(2) { transition-delay: 0.06s; }
    .live-header.is-open .live-nav__item:nth-child(3) { transition-delay: 0.09s; }
    .live-header.is-open .live-nav__item:nth-child(4) { transition-delay: 0.12s; }
    .live-header.is-open .live-nav__item:nth-child(5) { transition-delay: 0.15s; }
    .live-header.is-open .live-nav__item:nth-child(6) { transition-delay: 0.18s; }
    .live-header.is-open .live-nav__item:nth-child(7) { transition-delay: 0.2s; }
    .live-header.is-open .live-nav__item:nth-child(8) { transition-delay: 0.22s; }

    .live-nav__item + .live-nav__item {
        border-top: 1px solid rgba(24, 32, 43, 0.09);
    }

    .live-nav a::after {
        background: var(--live-nav-active-scrolled-color, var(--live-nav-active-color, #f59a23));
    }

    .live-header.is-open .live-nav a,
    .site-home-live .live-header.is-open:not(.is-scrolled) .live-nav a,
    .service-page-live .live-header.is-open:not(.is-scrolled) .live-nav a {
        color: rgba(24, 32, 43, 0.88);
    }

    .site-home-live .live-header.is-open:not(.is-scrolled) .live-nav a,
    .service-page-live .live-header.is-open:not(.is-scrolled) .live-nav a {
        color: rgba(255, 255, 255, 0.96);
    }

    .live-nav a {
        width: 100%;
        padding: 14px 10px;
        border-radius: 6px;
        font-size: 17px;
        font-weight: 700;
        letter-spacing: -0.01em;
    }

    .live-nav__list > .live-nav__item > a.is-active,
    .site-home-live .live-header.is-open:not(.is-scrolled) .live-nav a.is-active,
    .service-page-live .live-header.is-open:not(.is-scrolled) .live-nav a.is-active {
        color: var(--live-nav-active-scrolled-color, var(--live-nav-active-color, #f59a23));
        background: rgba(24, 32, 43, 0.08);
    }

    .site-home-live .live-header.is-open:not(.is-scrolled) .live-nav a.is-active,
    .service-page-live .live-header.is-open:not(.is-scrolled) .live-nav a.is-active {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.2);
    }

    .live-nav__list > .live-nav__item > a.is-active::after,
    .site-home-live .live-header.is-open:not(.is-scrolled) .live-nav a.is-active::after,
    .service-page-live .live-header.is-open:not(.is-scrolled) .live-nav a.is-active::after {
        transform: scaleX(1);
    }

    .live-nav__item.has-children > a {
        justify-content: space-between;
    }

    .live-nav__item.has-children > a i {
        opacity: 0.58;
        transition: transform 0.22s ease, opacity 0.22s ease;
    }

    .site-home-live .live-header.is-open:not(.is-scrolled) .live-nav__item.has-children > a i,
    .service-page-live .live-header.is-open:not(.is-scrolled) .live-nav__item.has-children > a i {
        opacity: 0.85;
    }

    .live-nav__item.is-sub-open > a i {
        transform: rotate(180deg);
        opacity: 0.76;
    }

    .live-nav__dropdown {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        z-index: auto;
        min-width: 0;
        margin: 4px 0 12px;
        padding: 8px;
        border: 1px solid rgba(24, 32, 43, 0.08);
        border-radius: 8px;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.66);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        white-space: normal;
    }

    .site-home-live .live-header.is-open:not(.is-scrolled) .live-nav__dropdown,
    .service-page-live .live-header.is-open:not(.is-scrolled) .live-nav__dropdown {
        border-color: rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.16);
    }

    .live-nav__item.has-children:hover .live-nav__dropdown,
    .live-nav__item.has-children:focus-within .live-nav__dropdown {
        display: none;
    }

    .live-nav__item.is-sub-open .live-nav__dropdown,
    .live-nav__item.is-sub-open:hover .live-nav__dropdown,
    .live-nav__item.is-sub-open:focus-within .live-nav__dropdown {
        display: flex;
    }

    .live-nav__dropdown a,
    .live-header.is-open .live-nav__dropdown a,
    .site-home-live .live-header.is-open:not(.is-scrolled) .live-nav__dropdown a,
    .service-page-live .live-header.is-open:not(.is-scrolled) .live-nav__dropdown a {
        width: 100%;
        justify-content: flex-start;
        padding: 11px 12px;
        border-radius: 6px;
        color: rgba(24, 32, 43, 0.8);
        background: rgba(24, 32, 43, 0.04);
        font-size: 15px;
        font-weight: 600;
    }

    .site-home-live .live-header.is-open:not(.is-scrolled) .live-nav__dropdown a,
    .service-page-live .live-header.is-open:not(.is-scrolled) .live-nav__dropdown a {
        color: rgba(255, 255, 255, 0.96);
        background: rgba(255, 255, 255, 0.13);
    }

    .live-nav__dropdown a.is-active {
        color: var(--live-nav-active-scrolled-color, var(--live-nav-active-color, #f59a23));
        background: rgba(24, 32, 43, 0.1);
    }

    .site-home-live .live-header.is-open:not(.is-scrolled) .live-nav__dropdown a.is-active,
    .service-page-live .live-header.is-open:not(.is-scrolled) .live-nav__dropdown a.is-active {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.2);
    }

    .live-nav__dropdown-icon {
        width: 18px;
        height: 18px;
    }

    .live-nav__dropdown-icon img,
    .live-header.is-open .live-nav__dropdown-icon img,
    .site-home-live .live-header.is-open:not(.is-scrolled) .live-nav__dropdown-icon img,
    .service-page-live .live-header.is-open:not(.is-scrolled) .live-nav__dropdown-icon img {
        width: 18px;
        height: 18px;
        filter: none;
        opacity: 0.8;
    }

    .site-home-live .live-header.is-open:not(.is-scrolled) .live-nav__dropdown-icon img,
    .service-page-live .live-header.is-open:not(.is-scrolled) .live-nav__dropdown-icon img {
        filter: brightness(0) invert(1);
        opacity: 0.92;
    }

    .live-hero__grid,
    .live-about,
    .live-why,
    .live-contact {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .live-about {
        gap: 26px;
    }

    .live-contact {
        gap: 28px;
    }

    .live-contact__intro {
        grid-template-rows: auto auto;
        min-height: 0;
    }

    .live-contact__heading {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .live-contact__heading p {
        justify-self: start;
        max-width: 38ch;
    }

    .live-contact__signals {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none;
        min-height: 0;
        height: auto;
    }

    .live-contact__form-head {
        gap: 8px;
    }

    .live-hero {
        padding-bottom: 82px;
    }

    .live-hero__copy {
        order: 1;
    }

    .live-hero__visual {
        order: 2;
        justify-content: flex-start;
    }

    .live-service-grid,
    .live-about__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .live-process {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        padding-top: 16px;
    }

    .live-process::before {
        display: none;
    }

    .live-process__item,
    .live-process__item:nth-child(2n),
    .live-process__item:nth-child(2n):hover {
        transform: none;
    }

    .live-process__item {
        min-height: 230px;
        padding: 26px 22px 24px;
    }

    .live-process__marker {
        position: static;
        transform: none;
        margin-bottom: 2px;
    }

    .live-stat {
        min-height: 200px;
        padding: 28px 24px 24px;
    }

    .live-service-card {
        min-height: 360px;
        border: 0;
        border-radius: 24px;
    }

}

@media (max-width: 767px) {
    .live-shell {
        width: min(100% - 28px, 1480px);
    }

    .live-shell--wide {
        width: min(100% - 28px, 1480px);
    }

    .live-shell--services {
        width: min(100% - 28px, 1480px);
    }

    .live-header__inner {
        min-height: 72px;
    }

    .live-brand img {
        width: 146px;
    }

    .live-hero {
        padding: 106px 0 62px;
    }

    .live-hero h1 {
        max-width: 10.1ch;
        font-size: 36px;
        line-height: 1.1;
    }

    .live-hero__prefix,
    .live-hero__typing-line,
    .live-hero__typing {
        white-space: normal;
    }

    .site-home-live .live-hero h1 {
        max-width: none;
    }

    .site-home-live .live-hero__prefix {
        white-space: nowrap;
    }

    .live-hero__lead {
        font-size: 18px;
    }

    .live-hero__desc {
        font-size: 15px;
        line-height: 1.8;
    }

    .live-hero__panel,
    .live-contact__form {
        padding: 14px;
    }

    .live-about__media {
        padding: 0;
    }

    .live-why__visual {
        padding: 0;
    }

    .live-title {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 22px;
    }

    .live-title--centered {
        align-items: center;
        text-align: center;
        margin-bottom: 24px;
    }

    .live-section {
        padding: 56px 0;
    }

    .live-about {
        gap: 18px;
    }

    .live-about__copy {
        padding: 2px 2px 2px;
        gap: 16px;
    }

    .live-about__copy h2 {
        font-size: 40px;
        line-height: 1;
    }

    .live-contact__heading h2 {
        max-width: none;
        font-size: 40px;
        line-height: 1.06;
        white-space: normal;
    }

    .live-contact__heading p {
        max-width: none;
        font-size: 15px;
        line-height: 1.82;
    }

    .live-section--stats {
        padding-top: 0;
        padding-bottom: 48px;
    }

    .live-section--services {
        margin-top: -44px;
    }

    .live-service-grid,
    .live-about__stats,
    .live-form__grid,
    .live-contact__signals {
        grid-template-columns: 1fr;
    }

    .live-clients {
        gap: 12px;
    }

    .live-client-row {
        gap: 12px;
    }

    .live-client-track {
        gap: 12px;
        animation-duration: 42s;
    }

    .live-process {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-top: 0;
    }

    .live-process::before {
        display: none;
    }

    .live-service-card,
    .live-stat,
    .live-process__item,
    .live-client {
        min-height: 0;
    }

    .live-client {
        width: clamp(168px, 58vw, 220px);
        min-height: 88px;
        padding: 16px 20px;
        border-radius: 18px;
    }

    .live-client img {
        max-height: 36px;
    }

    .live-process__item,
    .live-process__item:nth-child(2n),
    .live-process__item:nth-child(2n):hover {
        transform: none;
    }

    .live-process__item {
        padding: 24px 20px 22px;
        border-radius: 20px;
        gap: 12px;
        text-align: center;
        justify-items: center;
    }

    .live-process__marker {
        position: static;
        transform: none;
        margin-bottom: 0;
        justify-self: center;
        width: min(100%, 540px);
    }

    .service-page-live .live-process__intro,
    .service-page-live .live-process__intro .live-small-title,
    .service-page-live .live-process__intro h2,
    .service-page-live .live-process__intro p {
        text-align: center;
        justify-self: center;
    }

    .service-page-live .live-process__intro p {
        margin-inline: auto;
    }

    .service-page-live .live-process__item i,
    .service-page-live .live-process__item h3,
    .service-page-live .live-process__item p {
        justify-self: center;
        text-align: center;
    }

    .service-page-live .live-process__item p {
        max-width: 30ch;
        margin-inline: auto;
    }

    .live-contact__form {
        border-radius: 22px;
    }

    .live-contact__form-head h3 {
        font-size: 24px;
    }

    .live-contact__signal {
        grid-template-columns: 1fr;
        gap: 10px;
        justify-items: center;
        text-align: center;
        padding: 16px 16px;
    }

    .live-contact__signal strong {
        font-size: 16px;
    }

    .live-form button {
        min-height: 54px;
        border-radius: 16px;
    }

    .live-stat {
        padding: 24px 20px 22px;
        border-radius: 18px;
        min-height: 0;
    }

    .live-stat strong {
        font-size: 42px;
    }

    .live-service-grid {
        gap: 12px;
    }

    .live-service-card {
        border-radius: 22px;
    }

    .live-footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.service-page-live {
    --services-wave-progress: 0;
    margin: 0;
    background: #fffaf4;
}

.service-page-live .live-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
}

.service-page-live .live-header:not(.is-scrolled) {
    background: transparent;
    box-shadow: none;
}

.service-page-live .live-header:not(.is-scrolled) .live-brand img {
    filter: brightness(0) invert(1);
}

.service-page-live .live-header:not(.is-scrolled) .live-nav a {
    color: #ffffff;
    background: transparent;
}

.service-page-live .live-header:not(.is-scrolled) .live-nav a::after {
    background: rgba(255, 255, 255, 0.92);
}

.service-page-live .live-header:not(.is-scrolled) .live-nav__list > .live-nav__item.is-active > a {
    color: #ffffff;
}

.service-page-live .live-header:not(.is-scrolled) .live-nav__list > .live-nav__item.is-active > a::after {
    background: currentColor;
    transform: scaleX(1);
}

.service-page-live .live-header:not(.is-scrolled) .live-nav__dropdown a.is-active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

.service-page-live .live-header:not(.is-scrolled) .live-nav-toggle span {
    background: #ffffff;
}

.service-page-main {
    overflow: clip;
}

.service-page-hero {
    position: relative;
    padding: 132px 0 104px;
    background:
        radial-gradient(circle at 16% 16%, rgba(255, 238, 202, 0.34), transparent 24%),
        radial-gradient(circle at 82% 18%, rgba(255, 235, 198, 0.26), transparent 20%),
        linear-gradient(180deg, #f6a63a 0%, #ee9b28 100%);
}

.service-page-hero::after {
    display: none;
}

.service-page-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    align-items: center;
    gap: 40px;
}

.service-page-hero__copy {
    display: grid;
    gap: 20px;
    max-width: 880px;
}

.service-page-hero__copy h1 {
    margin: 0;
    color: #111827;
    max-width: none;
    font-size: clamp(40px, 4.45vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.service-page-hero__prefix,
.service-page-hero__typed-wrap {
    display: block;
}

.service-page-hero__typed-wrap {
    color: #2f61ff;
    white-space: nowrap;
    display: inline-flex;
    align-items: flex-end;
    min-height: 1.08em;
}

.service-page-hero__measure {
    position: absolute;
    visibility: hidden;
    pointer-events: none;
    white-space: nowrap;
}

.service-page-hero__copy p {
    margin: 0;
}

.service-page-hero .live-hero__lead,
.service-page-hero .live-hero__desc {
    max-width: 700px;
}

.service-page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.service-page-button--ghost {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.32);
    color: #ffffff !important;
    box-shadow: none;
}

.service-page-button--ghost:hover,
.service-page-button--ghost:focus-visible {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.44);
}

.service-page-hero__visual {
    display: flex;
    justify-content: flex-end;
}

.service-page-hero__visual-wrap img {
    display: block;
    width: min(100%, 430px);
    height: auto;
}

.service-page-section {
    padding: 88px 0;
}

.service-page-section--scope {
    padding-top: 0;
    margin-top: -112px;
}

.service-page-section--scope.live-section--services {
    background: #fffaf5;
}

.service-page-scope-card .service-scope-card__head {
    width: 100%;
}

.service-page-scope-card p {
    max-width: none;
}

.service-scope-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.service-scope-card {
    position: relative;
    display: grid;
    gap: 18px;
    min-height: 260px;
    padding: 24px 22px 22px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(var(--service-accent-rgb, 245, 154, 35), 0.9) 0%, var(--service-accent) 100%);
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(24, 32, 43, 0.1);
    overflow: hidden;
}

.service-scope-card::after {
    content: "";
    position: absolute;
    inset: auto -12% -26% auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.service-scope-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.service-scope-card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.service-scope-card__glyph {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
}

.service-scope-card h3 {
    margin: 0;
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.service-scope-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.78;
}

.service-scope-card:nth-child(1) { --service-accent-rgb: 245, 154, 35; }
.service-scope-card:nth-child(2) { --service-accent-rgb: 29, 78, 216; }
.service-scope-card:nth-child(3) { --service-accent-rgb: 15, 118, 110; }
.service-scope-card:nth-child(4) { --service-accent-rgb: 147, 51, 234; }

.service-page-section--story {
    background:
        radial-gradient(circle at 14% 18%, rgba(245, 154, 35, 0.08), transparent 24%),
        linear-gradient(180deg, #fffdf8 0%, #fff9f0 100%);
    overflow: hidden;
}

.service-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: clamp(36px, 3vw, 56px);
}

.service-story__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 560px;
    isolation: isolate;
}

.service-story__media::before {
    content: "";
    position: absolute;
    width: min(92%, 700px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at 36% 34%, rgba(245, 154, 35, 0.22) 0%, rgba(245, 154, 35, 0.11) 34%, rgba(245, 154, 35, 0) 72%);
    pointer-events: none;
    transform: translate(-14px, 18px);
}

.service-story__media::after {
    content: "";
    position: absolute;
    inset: auto auto 34px 50%;
    width: min(72%, 560px);
    height: 18px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(17, 24, 39, 0.16) 0%, rgba(17, 24, 39, 0.08) 42%, rgba(17, 24, 39, 0) 76%);
    filter: blur(18px);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}

.service-story__media img {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100%, 700px);
    height: auto;
    transform: translateX(-8px);
}

.service-story__copy {
    display: grid;
    grid-template-rows: auto auto auto minmax(0, 1fr);
    align-content: stretch;
    width: 100%;
    max-width: none;
    gap: 18px;
    min-height: 560px;
}

.service-story__copy h2 {
    margin: 0;
    color: #111827;
    max-width: none;
    font-size: clamp(34px, 2.55vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.service-story__title-line {
    display: block;
    white-space: nowrap;
}

.service-story__body {
    display: grid;
    gap: 14px;
    width: 100%;
    max-width: none;
}

.service-story__copy p {
    margin: 0;
    max-width: none;
    color: rgba(24, 32, 43, 0.72);
    font-size: 18px;
    line-height: 1.82;
}

.service-story__points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
        "lead lead"
        "left right";
    gap: 18px;
    margin-top: auto;
    align-self: stretch;
    align-content: stretch;
    grid-auto-rows: minmax(0, 1fr);
    min-height: 0;
}

.service-story__point {
    display: grid;
    align-content: center;
    gap: 12px;
    min-height: 0;
    padding: 26px 28px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.045);
}

.service-story__point:first-child {
    grid-area: lead;
    min-height: 164px;
}

.service-story__point:nth-child(2) {
    grid-area: left;
    min-height: 178px;
}

.service-story__point:nth-child(3) {
    grid-area: right;
    min-height: 178px;
}

.service-story__point strong {
    color: #111827;
    font-size: 24px;
    line-height: 1.16;
}

.service-story__point span {
    color: rgba(24, 32, 43, 0.64);
    font-size: 16px;
    line-height: 1.8;
}

.service-page-process {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-page-process .live-process__item {
    min-height: 250px;
}


.service-proof__lead {
    margin: 16px auto 0;
    max-width: 52ch;
    color: rgba(24, 32, 43, 0.7);
    font-size: 16px;
    line-height: 1.82;
    text-align: center;
}

.service-proof-wall {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.service-page-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 22px;
    padding: 30px 32px;
    border: 1px solid rgba(24, 32, 43, 0.08);
    border-radius: 28px;
    background:
        radial-gradient(circle at 10% 20%, rgba(245, 154, 35, 0.1), transparent 24%),
        linear-gradient(180deg, #fffdf8 0%, #fff8ee 100%);
    box-shadow: 0 22px 48px rgba(24, 32, 43, 0.06);
}

.service-page-cta__copy {
    display: grid;
    gap: 14px;
}

.service-page-cta__copy h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(30px, 3.4vw, 48px);
    line-height: 1.06;
    letter-spacing: -0.06em;
}

.service-page-cta__copy p {
    margin: 0;
    max-width: 48ch;
    color: rgba(24, 32, 43, 0.68);
    font-size: 16px;
    line-height: 1.82;
}

.service-page-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-page-cta__actions .service-page-button--ghost {
    background: rgba(24, 32, 43, 0.04);
    border-color: rgba(24, 32, 43, 0.12);
    color: #111827 !important;
}

.service-page-cta__actions .service-page-button--ghost:hover,
.service-page-cta__actions .service-page-button--ghost:focus-visible {
    background: rgba(24, 32, 43, 0.08);
    border-color: rgba(24, 32, 43, 0.18);
}

body.motion-enabled .service-page-hero__visual.is-visible img,
body.motion-enabled .service-story__media.is-visible img {
    animation: liveHeroFloat 8.6s ease-in-out 0.4s infinite;
}

body.motion-enabled.service-page-live .service-page-main .motion-reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

body.motion-enabled.service-page-live .service-page-main .live-process.motion-reveal::before {
    transform: scaleX(1);
    transition: none;
}


/* Split from ui-refresh.css: service common (part 2) */

@media (max-width: 1280px) {
    .service-page-hero__grid,
    .service-story {
        gap: 32px;
    }

    .service-scope-grid,
    .service-page-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .service-page-hero {
        padding-top: 126px;
        padding-bottom: 88px;
    }

    .service-page-hero__grid,
    .service-story,
    .service-page-cta {
        grid-template-columns: 1fr;
    }

    .service-page-hero__visual,
    .service-story__media {
        justify-content: center;
        min-height: 0;
    }

    .service-page-cta {
        padding: 28px 24px;
    }

    .service-page-cta__actions {
        align-items: flex-start;
    }

    .service-story__title-line {
        white-space: normal;
    }

    .service-story__copy {
        min-height: 0;
        grid-template-rows: auto auto auto auto;
    }

    .service-story__points {
        grid-template-columns: 1fr;
        grid-template-areas: none;
        grid-auto-rows: auto;
        gap: 14px;
        margin-top: 8px;
    }

    .service-story__point,
    .service-story__point:first-child,
    .service-story__point:nth-child(2),
    .service-story__point:nth-child(3) {
        grid-area: auto;
        min-height: 0;
        width: 100%;
        min-width: 0;
        align-content: start;
    }
}

@media (max-width: 767px) {
    .service-page-hero {
        padding: 112px 0 76px;
    }

    .service-page-hero::after {
        height: 48px;
    }

    .service-page-hero__copy h1 {
        max-width: 10.1ch;
        font-size: 36px;
        line-height: 1.1;
    }

    .service-page-hero__copy p,
    .service-proof__lead,
    .service-story__copy p,
    .service-page-cta__copy p,
    .service-page-title p {
        font-size: 15px;
        line-height: 1.78;
    }

    .service-page-section {
        padding: 64px 0;
    }

    .service-page-section--scope {
        padding-top: 24px;
    }

    .service-scope-grid,
    .service-page-process {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-scope-card {
        min-height: 0;
        padding: 22px 18px 20px;
        border-radius: 22px;
    }

    .service-scope-card h3 {
        font-size: 26px;
    }

    .service-story__point {
        padding: 16px 16px;
        border-radius: 18px;
    }

    .service-page-cta {
        border-radius: 22px;
    }

    .service-page-cta__actions {
        width: 100%;
    }

    .service-page-cta__actions .live-button {
        width: 100%;
    }
}
