:root {
    --green: #8dc63f;
    --green-dark: #6fa72b;
    --navy: #12314b;
    --blue: #1b75bb;
    --cyan: #00a7c8;
    --ink: #182b3a;
    --muted: #66798a;
    --line: #dfe8ef;
    --soft: #f4f8fb;
    --white: #ffffff;
    --shadow: 0 22px 58px rgba(18, 49, 75, 0.1);
    --shadow-hover: 0 30px 72px rgba(18, 49, 75, 0.15);
    --page-pad: clamp(18px, 5vw, 72px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection {
    color: var(--navy);
    background: rgba(141, 198, 63, 0.28);
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(141, 198, 63, 0.45);
    outline-offset: 3px;
}

img {
    display: block;
    max-width: 100%;
}

.scroll-meter {
    position: fixed;
    inset: 0 0 auto;
    z-index: 120;
    height: 3px;
    background: transparent;
}

.scroll-meter span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
}

.cx-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px var(--page-pad);
    color: #f6fbff;
    background: var(--navy);
    font-size: 0.92rem;
    font-weight: 750;
}

.cx-topbar div,
.cx-logo,
.cx-actions,
.cx-language,
.cx-hero-actions,
.cx-footer {
    display: flex;
    align-items: center;
}

.cx-topbar div {
    gap: 18px;
}

.cx-topbar a:hover,
.cx-footer a:hover,
.cx-text-link:hover {
    color: var(--green);
}

.cx-header {
    position: sticky;
    top: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    min-height: 84px;
    padding: 16px var(--page-pad);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(223, 232, 239, 0.9);
    box-shadow: 0 12px 36px rgba(18, 49, 75, 0.08);
    backdrop-filter: blur(16px);
    transition: min-height 0.24s ease, padding 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

body.is-scrolled .cx-header {
    min-height: 72px;
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(223, 232, 239, 1);
    box-shadow: 0 18px 46px rgba(18, 49, 75, 0.12);
}

.cx-logo {
    gap: 12px;
    color: var(--navy);
}

.cx-logo span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 6px;
    font-weight: 950;
}

.cx-logo strong {
    font-size: 1.08rem;
    line-height: 1.12;
}

.cx-menu-toggle {
    display: none;
}

.cx-nav {
    display: flex;
    justify-content: center;
    gap: clamp(12px, 2.2vw, 30px);
}

.cx-nav a {
    position: relative;
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 850;
    padding: 8px 0;
}

.cx-nav a::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 3px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.cx-nav a:hover,
.cx-nav a.is-active {
    color: var(--green-dark);
}

.cx-nav a:hover::after,
.cx-nav a.is-active::after {
    transform: scaleX(1);
}

.cx-actions {
    justify-content: flex-end;
    gap: 12px;
}

.cx-language {
    gap: 4px;
    padding: 4px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.cx-language a {
    display: grid;
    place-items: center;
    min-width: 38px;
    min-height: 32px;
    color: var(--muted);
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 900;
}

.cx-language a.is-current {
    color: #fff;
    background: var(--green);
}

.cx-header-cta,
.cx-button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-weight: 900;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cx-ripple-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    transform: translate(-50%, -50%) scale(0);
    animation: cx-ripple 0.55s ease-out forwards;
}

.cx-header-cta,
.cx-button-primary {
    color: #fff;
    background: var(--green);
    border-color: var(--green);
    box-shadow: 0 12px 26px rgba(111, 167, 43, 0.2);
}

.cx-header-cta:hover,
.cx-button:hover {
    transform: translateY(-2px);
}

.cx-button-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    box-shadow: 0 18px 34px rgba(111, 167, 43, 0.28);
}

.cx-button-secondary {
    color: var(--navy);
    background: #fff;
    border-color: var(--line);
}

.cx-button-secondary:hover {
    border-color: var(--green);
}

.cx-header-cta:active,
.cx-button:active {
    transform: translateY(0) scale(0.98);
}

.cx-kicker {
    margin: 0 0 14px;
    color: var(--green-dark);
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cx-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
    align-items: center;
    gap: clamp(34px, 6vw, 86px);
    padding: clamp(72px, 9vw, 132px) var(--page-pad) clamp(58px, 7vw, 94px);
    background: linear-gradient(90deg, #f7fbfd 0%, #fff 58%, #eef8e8 100%);
    isolation: isolate;
}

.cx-hero::before,
.cx-package-hero::before,
.cx-sub-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(27, 117, 187, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 117, 187, 0.07) 1px, transparent 1px),
        linear-gradient(120deg, rgba(141, 198, 63, 0.18), transparent 42%);
    background-size: 46px 46px, 46px 46px, 100% 100%;
    opacity: 0.65;
}

.cx-hero > *,
.cx-package-hero > *,
.cx-sub-hero > * {
    position: relative;
    z-index: 1;
}

.cx-hero-copy,
.cx-showcase-copy {
    max-width: 710px;
}

.cx-hero h1,
.cx-success h2,
.cx-section-head h2,
.cx-showcase-copy h2,
.cx-product-teaser h2,
.cx-contact h2,
.cx-package-hero h1,
.cx-sub-hero h1,
.cx-about-hero h1,
.cx-contact-page h1,
.legal-section h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(2.6rem, 5vw, 5.8rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.cx-hero h1 {
    font-size: clamp(3.1rem, 7vw, 6.3rem);
    line-height: 0.98;
}

.cx-hero-copy > p:not(.cx-kicker),
.cx-success p:not(.cx-kicker),
.cx-showcase-copy p,
.cx-product-teaser p,
.cx-contact p,
.cx-package-hero p,
.cx-sub-hero p:not(.cx-kicker),
.cx-about-hero p,
.cx-contact-page p,
.cx-section-head p,
.legal-intro {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.76;
}

.cx-hero-actions {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.cx-hero-badges,
.cx-package-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.cx-hero-badges span,
.cx-package-metrics span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 12px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(223, 232, 239, 0.9);
    border-radius: 4px;
    font-size: 0.84rem;
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(18, 49, 75, 0.06);
}

.cx-package-metrics span {
    gap: 7px;
    min-height: 44px;
}

.cx-package-metrics strong {
    color: var(--green-dark);
    font-size: 1.24rem;
}

.cx-hero-media,
.cx-showcase-media {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: var(--navy);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.cx-hero-media::before,
.cx-showcase-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.28) 45%, transparent 58%);
    transform: translateX(-120%);
    animation: cx-sheen 7.5s ease-in-out infinite;
}

.cx-hero-media picture,
.cx-hero-media img,
.cx-showcase-media picture,
.cx-showcase-media img {
    width: 100%;
    height: 100%;
}

.cx-hero-media img,
.cx-showcase-media img {
    object-fit: cover;
}

.cx-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(18, 49, 75, 0.68));
    z-index: 1;
}

.cx-media-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 3;
    padding: 20px;
    color: #fff;
    background: rgba(18, 49, 75, 0.86);
    border-left: 6px solid var(--green);
    border-radius: 6px;
    backdrop-filter: blur(12px);
}

.cx-media-card span {
    display: block;
    margin-bottom: 6px;
    color: #d8f2be;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.cx-signal-stack {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 3;
    display: grid;
    gap: 8px;
}

.cx-signal-stack span {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 11px;
    color: #fff;
    background: rgba(18, 49, 75, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 900;
    backdrop-filter: blur(12px);
}

.cx-signal-stack span::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 999px;
    box-shadow: 0 0 0 5px rgba(141, 198, 63, 0.16);
}

.cx-field-strip {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 34px var(--page-pad);
    background: #fff;
    border-block: 1px solid var(--line);
}

.cx-field-strip p {
    margin: 0;
    color: var(--navy);
    font-size: 1.35rem;
    font-weight: 950;
    line-height: 1.25;
}

.cx-field-strip div {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.cx-field-strip span {
    display: grid;
    place-items: center;
    min-height: 56px;
    padding: 10px;
    color: var(--navy);
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 4px;
    text-align: center;
    font-weight: 900;
}

.cx-components,
.cx-hub,
.cx-case-section,
.cx-blog-section,
.cx-about-section,
.cx-section,
.cx-trust-panel,
.cx-growth-panel,
.cx-core-services,
.cx-service-outcomes {
    padding: clamp(76px, 10vw, 128px) var(--page-pad);
    background: #fff;
}

.cx-components,
.cx-success,
.cx-faq,
.cx-package-hero,
.cx-sub-hero,
.cx-about-hero,
.cx-contact-page {
    background: linear-gradient(135deg, #fff 0%, #f4f8fb 68%, #eef8e8 100%);
}

.cx-section-head {
    max-width: 920px;
    margin-bottom: 38px;
}

.cx-component-grid,
.cx-service-grid,
.cx-process-grid,
.cx-product-grid,
.cx-hub-grid,
.cx-case-grid,
.cx-blog-grid,
.cx-value-grid,
.cx-stat-grid,
.cx-trust-grid,
.cx-package-highlights,
.cx-value-list,
.cx-core-link-grid,
.cx-service-detail-grid,
.cx-outcome-grid {
    display: grid;
    gap: 16px;
}

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

.cx-service-grid,
.cx-process-grid,
.cx-product-grid,
.cx-hub-grid,
.cx-trust-grid,
.cx-service-detail-grid,
.cx-outcome-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cx-case-grid,
.cx-blog-grid,
.cx-value-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cx-value-grid,
.cx-stat-grid,
.cx-core-link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cx-component-grid article,
.cx-service-grid article,
.cx-process-grid article,
.cx-product-card,
.cx-hub-grid a,
.cx-case-grid article,
.cx-blog-grid article,
.cx-value-grid article,
.cx-stat-grid article,
.cx-trust-grid article,
.cx-package-highlights a,
.cx-value-list article,
.cx-core-link-grid a,
.cx-service-detail-grid article,
.cx-outcome-grid article,
.legal-card > div {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.cx-trust-panel {
    background:
        linear-gradient(135deg, rgba(244, 248, 251, 0.92), rgba(255, 255, 255, 0.96)),
        linear-gradient(90deg, rgba(27, 117, 187, 0.08) 1px, transparent 1px);
    background-size: auto, 42px 42px;
}

.cx-trust-grid article {
    min-height: 250px;
}

.cx-trust-grid article > span {
    display: block;
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    background:
        linear-gradient(var(--green), var(--green)) 50% 50% / 20px 4px no-repeat,
        linear-gradient(90deg, var(--green), var(--blue));
    border-radius: 5px;
}

.cx-trust-grid h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 1.35rem;
}

.cx-trust-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.cx-growth-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
    gap: clamp(30px, 5vw, 72px);
    align-items: start;
    background: linear-gradient(90deg, #fff 0%, #fff 50%, #f4f8fb 50%, #f4f8fb 100%);
}

.cx-growth-panel h2,
.cx-core-services h2,
.cx-service-outcomes h2,
.cx-fit-strip h2,
.cx-service-cta h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.06;
}

.cx-growth-panel p,
.cx-core-services .cx-section-head p,
.cx-service-outcomes .cx-section-head p,
.cx-service-cta p {
    color: var(--muted);
    line-height: 1.72;
}

.cx-value-list article {
    min-height: 190px;
    border-left: 5px solid var(--green);
    box-shadow: none;
}

.cx-value-list strong {
    display: block;
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 1.22rem;
}

.cx-value-list p {
    margin: 0;
}

.cx-core-services {
    background: linear-gradient(135deg, #f7fbfd 0%, #fff 100%);
}

.cx-core-link-grid a {
    min-height: 230px;
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--green);
}

.cx-core-link-grid a::after {
    content: ">";
    position: absolute;
    right: 22px;
    bottom: 18px;
    color: var(--green-dark);
    font-size: 1.4rem;
    font-weight: 950;
    transition: transform 0.2s ease;
}

.cx-core-link-grid span {
    display: block;
    margin-bottom: 14px;
    color: var(--navy);
    font-size: 1.3rem;
    font-weight: 950;
}

.cx-core-link-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.cx-service-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: start;
}

.cx-service-hero .cx-button {
    margin-top: 26px;
}

.cx-service-brief {
    padding: 28px;
    color: #fff;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-left: 6px solid var(--green);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.cx-service-brief span {
    display: block;
    margin-bottom: 12px;
    color: #d8f2be;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cx-service-brief strong {
    display: block;
    margin-bottom: 14px;
    font-size: clamp(1.4rem, 2.4vw, 2.1rem);
    line-height: 1.12;
}

.cx-service-brief p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

.cx-service-detail-grid article {
    min-height: 280px;
}

.cx-service-detail-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.cx-service-outcomes {
    background:
        linear-gradient(135deg, rgba(244, 248, 251, 0.94), rgba(255, 255, 255, 0.98)),
        linear-gradient(90deg, rgba(27, 117, 187, 0.08) 1px, transparent 1px);
    background-size: auto, 42px 42px;
}

.cx-outcome-grid article {
    display: flex;
    align-items: center;
    min-height: 112px;
    color: var(--navy);
    border-left: 5px solid var(--green);
    font-size: 1.08rem;
    font-weight: 950;
    box-shadow: none;
}

.cx-fit-strip,
.cx-service-cta {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: center;
    padding: clamp(52px, 7vw, 92px) var(--page-pad);
}

.cx-fit-strip {
    background: var(--navy);
}

.cx-fit-strip .cx-kicker,
.cx-fit-strip h2 {
    color: #fff;
}

.cx-fit-strip > div:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cx-fit-strip span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 13px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 4px solid var(--green);
    border-radius: 4px;
    font-weight: 900;
}

.cx-service-cta {
    margin: 0 var(--page-pad) clamp(58px, 8vw, 90px);
    color: #fff;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: 8px;
}

.cx-service-cta .cx-kicker,
.cx-service-cta h2,
.cx-service-cta p {
    color: #fff;
}

.cx-service-cta .cx-button {
    justify-self: end;
}

.cx-component-grid article,
.cx-product-card {
    border-top: 5px solid var(--green);
}

.cx-product-card.is-featured {
    border-color: rgba(141, 198, 63, 0.8);
    background: linear-gradient(180deg, #fff 0%, #fbfef8 100%);
}

.cx-product-card em {
    align-self: flex-start;
    margin-bottom: 12px;
    padding: 6px 9px;
    color: #fff;
    background: var(--green);
    border-radius: 4px;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 950;
    text-transform: uppercase;
}

.cx-product-card.is-hidden {
    display: none;
}

.cx-product-card.is-visible {
    animation: cx-card-in 0.28s ease both;
}

.cx-service-grid article {
    min-height: 340px;
}

.cx-component-icon,
.cx-service-grid article > span,
.cx-process-grid article > span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: #fff;
    background: var(--navy);
    border-radius: 5px;
    font-weight: 950;
}

.cx-component-grid h3,
.cx-service-grid h3,
.cx-process-grid h3,
.cx-product-card h3,
.cx-case-grid h2,
.cx-blog-grid h2,
.cx-value-grid h2,
.cx-method-panel h2,
.legal-card h2 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: clamp(1.28rem, 2.4vw, 2rem);
    line-height: 1.18;
}

.cx-component-grid p,
.cx-service-grid p,
.cx-service-grid small,
.cx-process-grid p,
.cx-product-card p,
.cx-product-card li,
.cx-case-grid p,
.cx-blog-grid p,
.cx-value-grid p,
.cx-method-panel li,
.faq-list p,
.legal-card p {
    color: var(--muted);
    line-height: 1.7;
}

.cx-component-grid article > div:last-child,
.cx-case-grid article > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.cx-component-grid article > div:last-child span,
.cx-case-grid small,
.cx-contact-facts span {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 6px 10px;
    color: var(--green-dark);
    background: #eff8e7;
    border: 1px solid #d8edc7;
    border-radius: 4px;
    box-shadow: 0 8px 18px rgba(18, 49, 75, 0.06);
    font-size: 0.8rem;
    font-weight: 900;
}

.cx-contact-facts span::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 999px;
    box-shadow: 0 0 0 4px rgba(141, 198, 63, 0.16);
}

.cx-success,
.cx-showcase,
.cx-contact,
.cx-product-teaser {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
    gap: clamp(30px, 5vw, 72px);
    align-items: center;
    padding: clamp(76px, 10vw, 128px) var(--page-pad);
}

.cx-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: 0 var(--page-pad) clamp(58px, 8vw, 90px);
    background: linear-gradient(135deg, #fff 0%, #f4f8fb 68%, #eef8e8 100%);
}

.cx-proof-strip article {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-left: 5px solid var(--green);
    border-radius: 8px;
}

.cx-proof-strip strong {
    display: block;
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 1.15rem;
}

.cx-proof-strip p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.cx-stat-grid strong {
    display: block;
    color: var(--green-dark);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
}

.cx-stat-grid span {
    display: block;
    margin-top: 12px;
    color: var(--navy);
    font-weight: 900;
}

.cx-showcase {
    background: linear-gradient(90deg, #fff 0%, #fff 48%, #f4f8fb 48%, #f4f8fb 100%);
}

.cx-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green-dark);
    font-weight: 950;
}

.cx-text-link::after {
    content: ">";
}

.cx-product-teaser {
    margin: 0 var(--page-pad);
    padding: clamp(42px, 6vw, 72px);
    color: #fff;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: 8px;
}

.cx-product-teaser .cx-kicker,
.cx-product-teaser h2,
.cx-product-teaser p {
    color: #fff;
}

.cx-hub-grid a {
    min-height: 210px;
    border-left: 6px solid var(--green);
    box-shadow: none;
}

.cx-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 410px;
    overflow: hidden;
}

.cx-product-card::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 18px;
    width: 76px;
    height: 46px;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(27, 117, 187, 0.22) 1px, transparent 1px),
        linear-gradient(rgba(141, 198, 63, 0.26) 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: 0.35;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 28%, #000 72%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 28%, #000 72%, transparent);
}

.cx-product-card > span,
.cx-case-grid article > span,
.cx-blog-grid article span {
    color: var(--green-dark);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cx-product-card strong {
    display: block;
    color: var(--navy);
    font-size: 2rem;
}

.cx-product-card small {
    color: var(--muted);
    font-weight: 800;
}

.cx-product-card ul {
    flex: 1;
    margin: 16px 0 22px;
    padding: 0;
    list-style: none;
}

.cx-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cx-product-card li {
    position: relative;
    padding-left: 20px;
}

.cx-product-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.78em;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 2px;
}

.cx-package-hero,
.cx-sub-hero,
.cx-about-hero,
.cx-contact-page,
.legal-section {
    padding: clamp(72px, 10vw, 132px) var(--page-pad) clamp(48px, 7vw, 84px);
}

.cx-package-hero,
.cx-sub-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f7fbfd 0%, #fff 58%, #eef8e8 100%);
    isolation: isolate;
}

.cx-package-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0 var(--page-pad) clamp(42px, 6vw, 72px);
    background: linear-gradient(135deg, #f7fbfd 0%, #fff 100%);
}

.cx-package-highlights a {
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--green);
}

.cx-package-highlights a::after {
    content: "";
    position: absolute;
    inset: auto 18px 18px auto;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, rgba(141, 198, 63, 0.22), rgba(27, 117, 187, 0.16));
    border-radius: 6px;
}

.cx-package-highlights span,
.cx-product-toolbar .cx-kicker {
    color: var(--green-dark);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cx-package-highlights strong {
    display: block;
    margin: 10px 0;
    color: var(--navy);
    font-size: 1.45rem;
}

.cx-package-highlights p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.cx-product-toolbar {
    display: grid;
    grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr);
    gap: 22px;
    align-items: end;
    margin-bottom: 24px;
}

.cx-product-toolbar h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.08;
}

.cx-product-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.cx-product-tabs button {
    position: relative;
    overflow: hidden;
    min-height: 42px;
    padding: 0 14px;
    color: var(--navy);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.cx-product-tabs .cx-ripple-dot,
.cx-menu-toggle .cx-ripple-dot {
    background: rgba(141, 198, 63, 0.28);
}

.cx-product-tabs button:hover,
.cx-product-tabs button.is-active {
    color: #fff;
    background: var(--navy);
    border-color: var(--navy);
}

.cx-product-tabs button:active {
    transform: scale(0.97);
}

.cx-vps-compare {
    margin-top: clamp(36px, 6vw, 72px);
    padding: clamp(24px, 4vw, 42px);
    background: linear-gradient(135deg, #fff 0%, #f4f8fb 100%);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.cx-vps-compare .cx-section-head {
    margin-bottom: 22px;
}

.cx-compare-scroll {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.cx-compare-scroll table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    background: #fff;
}

.cx-compare-scroll th,
.cx-compare-scroll td {
    padding: 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.cx-compare-scroll tr:last-child th,
.cx-compare-scroll tr:last-child td {
    border-bottom: 0;
}

.cx-compare-scroll th {
    color: var(--navy);
    background: #f7fbfd;
    font-weight: 950;
}

.cx-compare-scroll tr:first-child th {
    color: #fff;
    background: var(--navy);
}

.cx-compare-scroll td {
    color: var(--muted);
    line-height: 1.45;
}

.cx-about-hero,
.cx-contact-page,
.cx-about-section,
.legal-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
}

.cx-about-hero aside,
.cx-method-panel {
    padding: 32px;
    color: #fff;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: 8px;
}

.cx-about-hero aside {
    display: grid;
    gap: 12px;
}

.cx-about-hero aside strong {
    font-size: 2.1rem;
}

.cx-about-hero aside span {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.12);
    border-left: 4px solid var(--green);
    border-radius: 4px;
    font-weight: 900;
}

.cx-method-panel .cx-kicker,
.cx-method-panel h2,
.cx-method-panel li {
    color: #fff;
}

.cx-method-panel ul {
    display: grid;
    gap: 14px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.cx-method-panel li {
    position: relative;
    padding-left: 28px;
}

.cx-method-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 2px;
}

.cx-contact-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.cx-form {
    position: relative;
    display: grid;
    gap: 14px;
    padding: 28px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(18, 49, 75, 0.08);
    overflow: hidden;
}

.cx-form::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--cyan), var(--blue));
}

.cx-form-pro {
    gap: 16px;
}

.cx-form-note {
    margin: 0;
    padding: 12px 14px;
    color: var(--muted);
    background: #fff;
    border: 1px solid var(--line);
    border-left: 4px solid var(--green);
    border-radius: 4px;
    font-size: 0.94rem;
    line-height: 1.5;
}

.cx-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.cx-form label {
    display: grid;
    gap: 8px;
    color: var(--navy);
    font-weight: 850;
}

.cx-form-full {
    grid-column: 1 / -1;
}

.cx-form input,
.cx-form select,
.cx-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    font: inherit;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cx-form textarea {
    min-height: 140px;
    resize: vertical;
}

.cx-form input:hover,
.cx-form select:hover,
.cx-form textarea:hover {
    border-color: #cbd9e4;
    background: #fbfdff;
}

.cx-form input:focus,
.cx-form select:focus,
.cx-form textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(141, 198, 63, 0.16);
}

.cx-checkbox {
    display: flex !important;
    align-items: flex-start;
    gap: 10px !important;
    min-height: 48px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    font-weight: 800 !important;
    line-height: 1.45;
}

.cx-checkbox input {
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
    margin-top: 2px;
    padding: 0;
    accent-color: var(--green);
}

.cx-checkbox a {
    color: var(--green-dark);
    font-weight: 950;
}

.cx-honeypot,
.cx-honeypot-input {
    position: absolute !important;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-success,
.form-error {
    margin: 0;
    padding: 12px 14px;
    border-radius: 4px;
    font-weight: 800;
}

.form-success {
    color: #225f17;
    background: #ecf8e4;
    border: 1px solid #cfeabb;
}

.form-error {
    color: #842029;
    background: #fff1f1;
    border: 1px solid #f4c9c9;
}

.faq-list {
    display: grid;
    gap: 10px;
    max-width: 980px;
}

.faq-list details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.faq-list summary {
    cursor: pointer;
    padding: 20px 24px;
    color: var(--navy);
    font-weight: 950;
}

.faq-list p {
    margin: 0;
    padding: 0 24px 20px;
}

.cx-blog-grid article {
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.cx-blog-grid article > div:first-child {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.cx-blog-grid small {
    color: var(--muted);
    font-weight: 800;
}

.cx-blog-grid .cx-text-link {
    margin-top: auto;
}

.legal-card > div {
    box-shadow: none;
}

.legal-text {
    margin-top: 28px;
}

.legal-stack {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.legal-stack article {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-left: 5px solid var(--green);
    border-radius: 8px;
}

.legal-stack h2 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 1.28rem;
}

.legal-stack p {
    margin: 0 0 10px;
    color: var(--muted);
    line-height: 1.7;
}

.legal-stack p:last-child {
    margin-bottom: 0;
}

.legal-stack a {
    color: var(--green-dark);
    font-weight: 900;
}

.legal-card span {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 12px;
    color: var(--green-dark);
    background: #eff8e7;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cx-footer {
    justify-content: space-between;
    gap: 18px;
    padding: 26px var(--page-pad);
    color: #d6e2ec;
    background: var(--navy);
}

.cx-footer a {
    color: #fff;
    font-weight: 900;
}

.chat-consent {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 140;
    width: min(360px, calc(100vw - 36px));
    padding: 16px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-left: 5px solid var(--green);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.chat-consent p {
    margin: 0 0 12px;
    color: var(--muted);
    line-height: 1.5;
}

.chat-consent div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.chat-consent button {
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #fff;
    font-weight: 900;
    cursor: pointer;
}

.chat-consent button:first-child {
    color: #fff;
    background: var(--green);
    border-color: var(--green);
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.985);
    transition:
        opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal.reveal-from-soft {
    transform: translate3d(0, 22px, 0) scale(0.995);
}

.reveal.reveal-from-bottom {
    transform: translate3d(0, 38px, 0) scale(0.982);
}

.reveal.is-visible,
.reveal:first-child {
    opacity: 1;
    transform: none;
    will-change: auto;
}

.cx-product-card > * {
    position: relative;
    z-index: 1;
}

.cx-text-link::after {
    transition: transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .cx-component-grid article:hover,
    .cx-service-grid article:hover,
    .cx-process-grid article:hover,
    .cx-product-card:hover,
    .cx-hub-grid a:hover,
    .cx-core-link-grid a:hover,
    .cx-case-grid article:hover,
    .cx-blog-grid article:hover,
    .cx-value-grid article:hover,
    .cx-value-list article:hover,
    .cx-service-detail-grid article:hover,
    .cx-outcome-grid article:hover,
    .cx-stat-grid article:hover,
    .legal-card > div:hover {
        transform: translateY(-5px);
        border-color: rgba(141, 198, 63, 0.72);
        box-shadow: var(--shadow-hover);
    }

    .cx-component-grid article:hover .cx-component-icon,
    .cx-service-grid article:hover > span,
    .cx-process-grid article:hover > span {
        background: linear-gradient(135deg, var(--green), var(--blue));
    }

    .cx-hub-grid a:hover {
        color: var(--navy);
        background: linear-gradient(135deg, #fff 0%, #f7fbfd 100%);
    }

    .cx-product-card:hover::after {
        opacity: 0.55;
    }

    .cx-text-link:hover::after {
        transform: translateX(4px);
    }

    .cx-core-link-grid a:hover::after {
        transform: translateX(5px);
    }
}

@keyframes cx-sheen {
    0%,
    46% {
        transform: translateX(-125%);
    }

    68%,
    100% {
        transform: translateX(125%);
    }
}

@keyframes cx-ripple {
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(18);
    }
}

@keyframes cx-card-in {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.99);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1120px) {
    .cx-header {
        grid-template-columns: 1fr;
    }

    .cx-nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .cx-nav::-webkit-scrollbar {
        display: none;
    }

    .cx-hero,
    .cx-success,
    .cx-showcase,
    .cx-contact,
    .cx-product-teaser,
    .cx-growth-panel,
    .cx-service-hero,
    .cx-fit-strip,
    .cx-service-cta,
    .cx-about-hero,
    .cx-contact-page,
    .cx-about-section,
    .legal-card {
        grid-template-columns: 1fr;
    }

    .cx-field-strip {
        grid-template-columns: 1fr;
    }

    .cx-component-grid,
    .cx-service-grid,
    .cx-process-grid,
    .cx-product-grid,
    .cx-hub-grid,
    .cx-value-grid,
    .cx-stat-grid,
    .cx-value-list,
    .cx-core-link-grid,
    .cx-service-detail-grid,
    .cx-outcome-grid,
    .cx-trust-grid,
    .cx-package-highlights,
    .cx-proof-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cx-product-toolbar {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .cx-product-tabs {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    :root {
        --page-pad: 16px;
    }

    html,
    body {
        overflow-x: hidden;
    }

    .scroll-meter,
    .cx-topbar {
        display: none;
    }

    .cx-header {
        position: sticky;
        top: 0;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 10px;
        min-height: auto;
        padding: 12px var(--page-pad);
        box-shadow: 0 12px 34px rgba(18, 49, 75, 0.08);
    }

    body.is-scrolled .cx-header {
        min-height: auto;
        padding: 10px var(--page-pad);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 14px 34px rgba(18, 49, 75, 0.12);
    }

    .cx-logo span {
        width: 38px;
        height: 38px;
        font-size: 0.92rem;
    }

    .cx-logo strong {
        font-size: 1rem;
    }

    .cx-menu-toggle {
        position: relative;
        z-index: 111;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 40px;
        color: #fff;
        background: var(--navy);
        border: 0;
        border-radius: 5px;
        font-weight: 900;
        cursor: pointer;
    }

    .cx-menu-toggle::before {
        content: "";
        width: 18px;
        height: 12px;
        border-block: 2px solid currentColor;
        box-shadow: 0 5px 0 currentColor;
    }

    .cx-menu-toggle span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }

    .cx-nav {
        position: absolute;
        left: var(--page-pad);
        right: var(--page-pad);
        top: calc(100% + 8px);
        z-index: 110;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        max-height: 0;
        padding: 0 10px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(223, 232, 239, 0);
        border-radius: 8px;
        box-shadow: 0 24px 60px rgba(18, 49, 75, 0);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: max-height 0.26s ease, padding 0.26s ease, opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .cx-nav.is-open {
        max-height: 420px;
        padding: 10px;
        border-color: var(--line);
        box-shadow: 0 24px 60px rgba(18, 49, 75, 0.18);
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    body.nav-open::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 89;
        background: rgba(18, 49, 75, 0.18);
        backdrop-filter: blur(2px);
    }

    .cx-nav a {
        display: grid;
        place-items: center;
        min-height: 40px;
        padding: 8px;
        white-space: normal;
        text-align: center;
        color: var(--navy);
        background: var(--soft);
        border: 1px solid var(--line);
        border-radius: 5px;
        font-size: 0.82rem;
        line-height: 1.1;
    }

    .cx-nav a::after {
        display: none;
    }

    .cx-nav a.is-active,
    .cx-nav a:hover {
        color: #fff;
        background: var(--green);
        border-color: var(--green);
    }

    .cx-actions {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        gap: 8px;
    }

    .cx-actions > .cx-language:only-child {
        grid-column: 1 / -1;
    }

    .cx-language,
    .cx-header-cta,
    .cx-button {
        width: 100%;
        min-height: 42px;
    }

    .cx-language a {
        flex: 1;
        min-width: 0;
    }

    .cx-hero,
    .cx-package-hero,
    .cx-sub-hero,
    .cx-about-hero,
    .cx-contact-page {
        padding-top: 32px;
        padding-bottom: 36px;
        background: linear-gradient(180deg, #f7fbfd 0%, #fff 100%);
    }

    .cx-hero::before,
    .cx-package-hero::before,
    .cx-sub-hero::before {
        background-size: 34px 34px, 34px 34px, 100% 100%;
        opacity: 0.42;
    }

    .cx-components,
    .cx-success,
    .cx-section,
    .cx-showcase,
    .cx-contact,
    .cx-hub,
    .cx-product-section,
    .cx-case-section,
    .cx-blog-section,
    .cx-about-section,
    .legal-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .cx-hero {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .cx-kicker {
        margin-bottom: 10px;
        font-size: 0.72rem;
    }

    .cx-hero h1,
    .cx-success h2,
    .cx-section-head h2,
    .cx-showcase-copy h2,
    .cx-product-teaser h2,
    .cx-contact h2,
    .cx-package-hero h1,
    .cx-sub-hero h1,
    .cx-about-hero h1,
    .cx-contact-page h1,
    .legal-section h1 {
        font-size: clamp(2rem, 10vw, 2.75rem);
        line-height: 1.06;
        text-wrap: balance;
    }

    .cx-hero-copy > p:not(.cx-kicker),
    .cx-success p:not(.cx-kicker),
    .cx-showcase-copy p,
    .cx-product-teaser p,
    .cx-contact p,
    .cx-package-hero p,
    .cx-sub-hero p:not(.cx-kicker),
    .cx-about-hero p,
    .cx-contact-page p,
    .cx-section-head p,
    .legal-intro {
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .cx-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 22px;
    }

    .cx-hero-badges,
    .cx-package-metrics {
        gap: 6px;
        margin-top: 18px;
    }

    .cx-hero-badges span,
    .cx-package-metrics span {
        min-height: 32px;
        padding: 7px 9px;
        font-size: 0.76rem;
    }

    .cx-hero-media {
        min-height: 0;
        aspect-ratio: 16 / 10;
        border-radius: 7px;
        box-shadow: none;
    }

    .cx-hero-media::before,
    .cx-showcase-media::before {
        display: none;
    }

    .cx-media-card,
    .cx-showcase-media,
    .cx-signal-stack {
        display: none;
    }

    .cx-field-strip {
        display: block;
        padding: 22px var(--page-pad);
    }

    .cx-field-strip p {
        margin-bottom: 12px;
        font-size: 1rem;
    }

    .cx-field-strip div {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .cx-field-strip span {
        min-height: 38px;
        padding: 8px;
        font-size: 0.78rem;
    }

    .cx-section-head {
        margin-bottom: 20px;
    }

    .cx-component-grid,
    .cx-service-grid,
    .cx-process-grid,
    .cx-product-grid,
    .cx-hub-grid,
    .cx-case-grid,
    .cx-blog-grid,
    .cx-value-grid,
    .cx-stat-grid,
    .cx-value-list,
    .cx-core-link-grid,
    .cx-service-detail-grid,
    .cx-outcome-grid,
    .cx-trust-grid,
    .cx-package-highlights,
    .cx-proof-strip {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cx-proof-strip {
        padding: 0 var(--page-pad) 42px;
    }

    .cx-component-grid article,
    .cx-service-grid article,
    .cx-process-grid article,
    .cx-product-card,
    .cx-hub-grid a,
    .cx-case-grid article,
    .cx-blog-grid article,
    .cx-value-grid article,
    .cx-stat-grid article,
    .cx-value-list article,
    .cx-core-link-grid a,
    .cx-service-detail-grid article,
    .cx-outcome-grid article,
    .cx-trust-grid article,
    .cx-package-highlights a,
    .legal-card > div {
        min-height: auto;
        padding: 16px;
        border-left: 4px solid var(--green);
        border-top: 1px solid var(--line);
        border-radius: 6px;
        box-shadow: none;
    }

    .cx-trust-panel {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .cx-growth-panel,
    .cx-core-services,
    .cx-service-outcomes {
        padding-top: 42px;
        padding-bottom: 42px;
        background: #fff;
    }

    .cx-growth-panel h2,
    .cx-core-services h2,
    .cx-service-outcomes h2,
    .cx-fit-strip h2,
    .cx-service-cta h2 {
        font-size: clamp(1.8rem, 9vw, 2.45rem);
    }

    .cx-core-link-grid a,
    .cx-value-list article,
    .cx-service-detail-grid article {
        min-height: auto;
    }

    .cx-service-brief {
        padding: 18px;
        border-radius: 6px;
        box-shadow: none;
    }

    .cx-fit-strip,
    .cx-service-cta {
        display: block;
        padding: 34px var(--page-pad);
    }

    .cx-fit-strip > div:last-child {
        margin-top: 18px;
        gap: 7px;
    }

    .cx-fit-strip span {
        min-height: 36px;
        padding: 8px 10px;
        font-size: 0.82rem;
    }

    .cx-service-cta {
        margin: 0 0 42px;
        border-radius: 0;
    }

    .cx-service-cta .cx-button {
        justify-self: stretch;
        margin-top: 16px;
    }

    .cx-trust-grid article > span {
        width: 34px;
        height: 34px;
        margin-bottom: 14px;
    }

    .cx-component-icon,
    .cx-service-grid article > span,
    .cx-process-grid article > span {
        width: 34px;
        height: 34px;
        margin-bottom: 14px;
        font-size: 0.78rem;
    }

    .cx-component-grid h3,
    .cx-service-grid h3,
    .cx-process-grid h3,
    .cx-product-card h3,
    .cx-case-grid h2,
    .cx-blog-grid h2,
    .cx-value-grid h2,
    .cx-method-panel h2,
    .legal-card h2 {
        margin-bottom: 8px;
        font-size: 1.18rem;
    }

    .cx-component-grid p,
    .cx-service-grid p,
    .cx-service-grid small,
    .cx-process-grid p,
    .cx-product-card p,
    .cx-product-card li,
    .cx-case-grid p,
    .cx-blog-grid p,
    .cx-value-grid p,
    .cx-method-panel li,
    .faq-list p,
    .legal-card p {
        font-size: 0.94rem;
        line-height: 1.55;
    }

    .cx-showcase {
        display: block;
        background: #f7fbfd;
    }

    .cx-product-teaser {
        display: block;
        margin: 0;
        padding: 28px var(--page-pad);
        border-radius: 0;
    }

    .cx-product-teaser .cx-button {
        margin-top: 16px;
    }

    .cx-product-card strong {
        font-size: 1.55rem;
    }

    .cx-package-highlights {
        padding: 0 var(--page-pad) 28px;
    }

    .cx-product-toolbar {
        gap: 14px;
        margin-bottom: 16px;
    }

    .cx-product-toolbar h2 {
        font-size: 1.45rem;
    }

    .cx-product-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 7px;
    }

    .cx-product-tabs button {
        min-height: 38px;
        padding: 0 8px;
        font-size: 0.78rem;
    }

    .cx-vps-compare {
        margin-top: 28px;
        padding: 16px;
        border-radius: 6px;
    }

    .cx-compare-scroll {
        margin-right: -16px;
        border-radius: 6px 0 0 6px;
    }

    .cx-compare-scroll th,
    .cx-compare-scroll td {
        padding: 12px;
        font-size: 0.88rem;
    }

    .cx-product-card ul {
        margin: 12px 0 16px;
    }

    .faq-list summary {
        padding: 16px;
        font-size: 0.98rem;
        line-height: 1.25;
    }

    .faq-list p {
        padding: 0 16px 16px;
    }

    .cx-contact,
    .cx-contact-page,
    .cx-about-section {
        display: block;
    }

    .cx-form,
    .cx-method-panel,
    .cx-about-hero aside {
        margin-top: 18px;
        padding: 16px;
        border-radius: 6px;
    }

    .legal-stack article {
        padding: 16px;
        border-radius: 6px;
    }

    .cx-form input,
    .cx-form select,
    .cx-form textarea {
        min-height: 44px;
        font-size: 16px;
    }

    .cx-form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cx-form-note,
    .cx-checkbox {
        padding: 10px;
        font-size: 0.9rem;
    }

    .legal-card {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cx-footer {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 22px var(--page-pad);
        font-size: 0.92rem;
    }

    .chat-consent {
        right: 12px;
        bottom: 12px;
        width: calc(100vw - 24px);
    }

    .reveal {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
        transition:
            opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
            transform 0.52s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
    }

    .reveal.is-visible,
    .reveal:first-child {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 380px) {
    .cx-actions {
        grid-template-columns: 1fr;
    }

    .cx-nav {
        grid-template-columns: 1fr;
    }
}

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