/*
Theme Name: JCoreSun
Theme URI: https://jcoresun.com
Author: JCoreSun
Description: Custom multilingual product theme for JCoreSun.
Version: 1.2.3
Requires at least: 6.7
Requires PHP: 8.1
Text Domain: jcoresun
*/

:root {
    --jcs-bg: #f5f7fa;
    --jcs-surface: #ffffff;
    --jcs-ink: #101820;
    --jcs-muted: #65707c;
    --jcs-line: #dfe4e8;
    --jcs-night: #101820;
    --jcs-night-soft: #18232e;
    --jcs-sun: #ffbf19;
    --jcs-sun-deep: #f29a00;
    --jcs-mint: #85d7c3;
    --jcs-blue: #4588ff;
    --jcs-radius: 24px;
    --jcs-shadow: 0 24px 70px rgba(16, 24, 32, .1);
    --jcs-shell: min(1200px, calc(100vw - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--jcs-bg);
    color: var(--jcs-ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
    top: 32px;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.jcs-shell {
    width: var(--jcs-shell);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid rgba(16, 24, 32, .08);
    background: rgba(245, 247, 250, .9);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -.04em;
}

.brand__mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: var(--jcs-sun);
    color: var(--jcs-night);
    box-shadow: 0 0 0 7px rgba(255, 191, 25, .18);
    font-size: 18px;
    font-weight: 950;
}

.brand__sun {
    color: var(--jcs-sun-deep);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.site-nav a {
    color: #36414c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 750;
}

.site-nav a:hover {
    color: var(--jcs-ink);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--jcs-line);
    border-radius: 999px;
    background: var(--jcs-surface);
}

.language-switcher a {
    min-width: 36px;
    padding: 8px 9px;
    border-radius: 999px;
    color: var(--jcs-muted);
    text-align: center;
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
}

.language-switcher a.is-active {
    background: var(--jcs-night);
    color: #fff;
}

.language-switcher--mobile {
    display: none;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--jcs-line);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
}

.menu-toggle::before,
.menu-toggle::after {
    display: block;
    width: 19px;
    height: 2px;
    margin: 5px auto;
    background: var(--jcs-ink);
    content: "";
}

.jcs-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 24px;
    border: 0;
    border-radius: 15px;
    background: var(--jcs-night);
    color: #fff;
    box-shadow: 0 14px 30px rgba(16, 24, 32, .18);
    text-decoration: none;
    font-size: 14px;
    font-weight: 850;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.jcs-button:hover {
    transform: translateY(-2px);
    background: #000;
    box-shadow: 0 18px 38px rgba(16, 24, 32, .24);
}

.jcs-button--sun {
    background: var(--jcs-sun);
    color: var(--jcs-night);
    box-shadow: 0 14px 30px rgba(242, 154, 0, .22);
}

.jcs-button--sun:hover {
    background: #ffc933;
}

.jcs-button--ghost {
    border: 1px solid var(--jcs-line);
    background: #fff;
    color: var(--jcs-ink);
    box-shadow: none;
}

.jcs-button--small {
    min-height: 42px;
    padding-inline: 17px;
    border-radius: 13px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 90px;
}

.hero::before {
    position: absolute;
    top: -260px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 191, 25, .26), rgba(255, 191, 25, 0) 68%);
    content: "";
}

.hero__grid {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: 1.08fr .92fr;
    gap: 70px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 8px 13px;
    border: 1px solid #d8dee4;
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: #48535f;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--jcs-sun);
    box-shadow: 0 0 0 4px rgba(255, 191, 25, .2);
    content: "";
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(48px, 6.5vw, 88px);
    font-weight: 920;
    letter-spacing: -.065em;
    line-height: .98;
}

.hero h1 span {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.hero h1 span::after {
    position: absolute;
    z-index: -1;
    right: -7px;
    bottom: 7px;
    left: -7px;
    height: .23em;
    border-radius: 999px;
    background: var(--jcs-sun);
    content: "";
}

.hero__lead {
    max-width: 660px;
    margin: 28px 0 0;
    color: #5a6672;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.58;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
    margin-top: 34px;
    color: #5a6570;
    font-size: 13px;
    font-weight: 750;
}

.hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero__trust span::before {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    background: #ddf5ec;
    color: #087555;
    content: "✓";
    font-size: 11px;
    font-weight: 950;
}

.system-card {
    position: relative;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 32px;
    background:
        linear-gradient(140deg, rgba(255,255,255,.07), transparent 45%),
        var(--jcs-night);
    color: #fff;
    box-shadow: 0 38px 90px rgba(16, 24, 32, .24);
}

.system-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
    color: #93a0ad;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.system-card__status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.system-card__status::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #63d7a5;
    box-shadow: 0 0 0 4px rgba(99, 215, 165, .12);
    content: "";
}

.system-module {
    display: grid;
    align-items: center;
    grid-template-columns: 46px 1fr auto;
    gap: 14px;
    padding: 17px 0;
    border-top: 1px solid rgba(255,255,255,.1);
}

.system-module__number {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    color: var(--jcs-sun);
    font-size: 12px;
    font-weight: 900;
}

.system-module strong,
.system-module div span {
    display: block;
}

.system-module strong {
    margin-bottom: 4px;
    font-size: 15px;
}

.system-module span {
    color: #8f9aa6;
    font-size: 12px;
}

.system-module .system-module__number {
    display: grid;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.system-module em {
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #cfd6dc;
    font-size: 10px;
    font-style: normal;
    font-weight: 850;
}

.section {
    padding: 100px 0;
}

.section--white {
    background: #fff;
}

.section--night {
    overflow: hidden;
    background: var(--jcs-night);
    color: #fff;
}

.section-heading {
    display: grid;
    align-items: end;
    grid-template-columns: 1fr .82fr;
    gap: 60px;
    margin-bottom: 46px;
}

.section-heading h2 {
    max-width: 770px;
    margin: 0;
    font-size: clamp(38px, 5vw, 66px);
    font-weight: 900;
    letter-spacing: -.055em;
    line-height: 1.02;
}

.section-heading p {
    margin: 0;
    color: var(--jcs-muted);
    font-size: 17px;
    line-height: 1.7;
}

.section--night .section-heading p {
    color: #9ea9b4;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    position: relative;
    display: flex;
    min-height: 420px;
    flex-direction: column;
    overflow: hidden;
    padding: 32px;
    border: 1px solid var(--jcs-line);
    border-radius: var(--jcs-radius);
    background: var(--jcs-surface);
    transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--jcs-shadow);
}

.product-card--dental {
    background:
        radial-gradient(circle at 100% 0, rgba(133, 215, 195, .42), transparent 42%),
        #f7fffc;
}

.product-card--parser {
    background:
        radial-gradient(circle at 100% 0, rgba(69, 136, 255, .25), transparent 42%),
        #f7faff;
}

.product-card--free {
    background:
        radial-gradient(circle at 100% 0, rgba(255, 191, 25, .35), transparent 42%),
        #fffcf4;
}

.product-card__tag {
    align-self: flex-start;
    margin-bottom: auto;
    padding: 7px 10px;
    border: 1px solid rgba(16,24,32,.1);
    border-radius: 999px;
    background: rgba(255,255,255,.65);
    color: #4c5864;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-card__glyph {
    position: absolute;
    top: 24px;
    right: 24px;
    display: grid;
    width: 74px;
    height: 74px;
    place-items: center;
    border: 1px solid rgba(16,24,32,.09);
    border-radius: 22px;
    background: rgba(255,255,255,.74);
    font-size: 30px;
}

.product-card h3 {
    max-width: 90%;
    margin: 70px 0 14px;
    font-size: clamp(28px, 3.4vw, 42px);
    letter-spacing: -.05em;
    line-height: 1;
}

.product-card p {
    margin: 0;
    color: #5c6772;
    line-height: 1.65;
}

.product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 26px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
}

.product-card__link::after {
    content: "↗";
    transition: transform .2s ease;
}

.product-card__link:hover::after {
    transform: translate(3px, -3px);
}

.principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 26px;
    background: rgba(255,255,255,.1);
}

.principle {
    padding: 34px;
    background: var(--jcs-night);
}

.principle span {
    color: var(--jcs-sun);
    font-size: 12px;
    font-weight: 900;
}

.principle h3 {
    margin: 50px 0 12px;
    font-size: 25px;
    letter-spacing: -.04em;
}

.principle p {
    margin: 0;
    color: #9ca7b2;
    line-height: 1.65;
}

.payment-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.payment-strip span {
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    color: #dce2e7;
    font-size: 12px;
    font-weight: 850;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.step {
    min-height: 230px;
    padding: 27px;
    border: 1px solid var(--jcs-line);
    border-radius: 22px;
    background: #fff;
}

.step__number {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--jcs-sun);
    font-size: 12px;
    font-weight: 950;
}

.step h3 {
    margin: 47px 0 10px;
    font-size: 21px;
    letter-spacing: -.03em;
}

.step p {
    margin: 0;
    color: var(--jcs-muted);
    line-height: 1.6;
}

.cta-card {
    position: relative;
    overflow: hidden;
    padding: 70px;
    border-radius: 34px;
    background: var(--jcs-sun);
}

.cta-card::after {
    position: absolute;
    top: -180px;
    right: -90px;
    width: 430px;
    height: 430px;
    border: 70px solid rgba(255,255,255,.28);
    border-radius: 50%;
    content: "";
}

.cta-card h2 {
    position: relative;
    z-index: 1;
    max-width: 790px;
    margin: 0 0 18px;
    font-size: clamp(40px, 5vw, 68px);
    letter-spacing: -.06em;
    line-height: 1;
}

.cta-card p {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 0 30px;
    color: #4a3810;
    font-size: 18px;
    line-height: 1.65;
}

.product-hero {
    padding: 70px 0 58px;
}

.product-hero__back {
    display: inline-flex;
    margin-bottom: 40px;
    color: var(--jcs-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
}

.product-hero__grid {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr .74fr;
    gap: 70px;
}

.product-hero h1 {
    margin: 0;
    font-size: clamp(50px, 7vw, 92px);
    letter-spacing: -.07em;
    line-height: .95;
}

.product-hero__lead {
    margin: 24px 0 0;
    color: var(--jcs-muted);
    font-size: 21px;
    line-height: 1.65;
}

.product-hero__proof {
    margin: 20px 0 0;
    color: #66717c;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.7;
    text-transform: uppercase;
}

.product-visual {
    min-height: 360px;
    padding: 28px;
    border: 1px solid var(--jcs-line);
    border-radius: 32px;
    background: #fff;
    box-shadow: var(--jcs-shadow);
}

.product-visual__window {
    height: 100%;
    min-height: 302px;
    padding: 18px;
    border-radius: 20px;
    background: var(--jcs-night);
    color: #fff;
}

.product-visual__dots {
    display: flex;
    gap: 6px;
    margin-bottom: 28px;
}

.product-visual__dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #53606c;
}

.product-visual__dots i:first-child {
    background: var(--jcs-sun);
}

.visual-row {
    display: grid;
    align-items: center;
    grid-template-columns: 46px 1fr auto;
    gap: 13px;
    margin-bottom: 11px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: rgba(255,255,255,.04);
}

.visual-row b {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    background: rgba(255,191,25,.12);
    color: var(--jcs-sun);
    font-size: 12px;
}

.visual-row strong,
.visual-row span {
    display: block;
}

.visual-row strong {
    margin-bottom: 3px;
    font-size: 13px;
}

.visual-row span {
    color: #8995a1;
    font-size: 11px;
}

.visual-row em {
    color: #7be0bb;
    font-size: 10px;
    font-style: normal;
    font-weight: 850;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature {
    padding: 28px;
    border: 1px solid var(--jcs-line);
    border-radius: 21px;
    background: #fff;
}

.feature span {
    color: var(--jcs-sun-deep);
    font-size: 11px;
    font-weight: 950;
}

.feature h3 {
    margin: 34px 0 10px;
    font-size: 22px;
    letter-spacing: -.035em;
}

.feature p {
    margin: 0;
    color: var(--jcs-muted);
    line-height: 1.65;
}

.product-process {
    background:
        radial-gradient(circle at 88% 12%, rgba(255, 191, 25, .18), transparent 34%),
        var(--jcs-bg);
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.process-flow--5 {
    grid-template-columns: repeat(5, 1fr);
}

.process-node {
    position: relative;
    min-height: 220px;
    padding: 24px 20px;
    border: 1px solid var(--jcs-line);
    border-radius: 20px;
    background: rgba(255, 255, 255, .88);
}

.process-node:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 42px;
    right: -19px;
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border: 1px solid var(--jcs-line);
    border-radius: 50%;
    background: #fff;
    color: var(--jcs-muted);
    content: "→";
    font-size: 12px;
    font-weight: 900;
}

.process-node > span {
    color: var(--jcs-sun-deep);
    font-size: 12px;
    font-weight: 950;
}

.process-node h3 {
    margin: 54px 0 10px;
    font-size: 19px;
    letter-spacing: -.035em;
}

.process-node p {
    margin: 0;
    color: var(--jcs-muted);
    font-size: 14px;
    line-height: 1.55;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}

.capability {
    min-height: 245px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
    background: rgba(255,255,255,.035);
    grid-column: span 3;
}

.capability:nth-child(1),
.capability:nth-child(2),
.capability:nth-child(3) {
    grid-column: span 4;
}

.capability > span {
    color: var(--jcs-sun);
    font-size: 11px;
    font-weight: 950;
}

.capability h3 {
    margin: 54px 0 11px;
    font-size: 22px;
    letter-spacing: -.035em;
}

.capability p {
    margin: 0;
    color: #9ca7b2;
    font-size: 14px;
    line-height: 1.65;
}

.status-list {
    overflow: hidden;
    border: 1px solid var(--jcs-line);
    border-radius: 24px;
}

.status-row {
    display: grid;
    align-items: center;
    grid-template-columns: 190px 1fr;
    gap: 30px;
    padding: 22px 26px;
    background: #fff;
}

.status-row + .status-row {
    border-top: 1px solid var(--jcs-line);
}

.status-row strong {
    display: inline-flex;
    width: fit-content;
    padding: 7px 11px;
    border-radius: 999px;
    background: #ddf5ec;
    color: #087555;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.status-row--next strong {
    background: #fff1cf;
    color: #885900;
}

.status-row p {
    margin: 0;
    color: #48535f;
    line-height: 1.6;
}

.product-note {
    display: grid;
    align-items: start;
    grid-template-columns: 56px 1fr;
    gap: 22px;
    margin-top: 28px;
    padding: 28px;
    border-radius: 22px;
    background: var(--jcs-night);
    color: #fff;
}

.product-note > span {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 15px;
    background: var(--jcs-sun);
    color: var(--jcs-night);
    font-size: 11px;
    font-weight: 950;
}

.product-note h3 {
    margin: 2px 0 8px;
    font-size: 21px;
    letter-spacing: -.035em;
}

.product-note p {
    max-width: 920px;
    margin: 0;
    color: #a8b2bc;
    line-height: 1.65;
}

.pricing-grid {
    display: grid;
    align-items: stretch;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.pricing-card {
    position: relative;
    display: flex;
    min-height: 550px;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--jcs-line);
    border-radius: 24px;
    background: #fff;
}

.pricing-card--featured {
    border-color: #f3aa00;
    box-shadow: 0 24px 60px rgba(242, 154, 0, .15);
}

.pricing-card__badge {
    position: absolute;
    top: 20px;
    right: 18px;
    padding: 7px 9px;
    border-radius: 999px;
    background: var(--jcs-sun);
    color: var(--jcs-night);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.pricing-card h3 {
    margin: 0 0 24px;
    font-size: 19px;
    letter-spacing: -.03em;
}

.pricing-card__price {
    margin: 0;
    font-size: 34px;
    font-weight: 920;
    letter-spacing: -.055em;
    line-height: 1;
}

.pricing-card__price small {
    display: block;
    margin-top: 8px;
    color: var(--jcs-muted);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0;
}

.pricing-card__description {
    min-height: 47px;
    margin: 20px 0;
    color: var(--jcs-muted);
    font-size: 14px;
    line-height: 1.55;
}

.pricing-card ul {
    display: grid;
    gap: 10px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.pricing-card li {
    display: flex;
    gap: 9px;
    color: #3f4b56;
    font-size: 13px;
    line-height: 1.45;
}

.pricing-card li::before {
    color: #0b8d65;
    content: "✓";
    font-weight: 950;
}

.pricing-card .jcs-button {
    width: 100%;
    margin-top: auto;
}

.trial-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 24px;
    padding: 22px;
    border-radius: 18px;
    background: var(--jcs-sun);
}

.trial-strip strong {
    font-size: 16px;
}

.trial-strip span {
    color: #5c4510;
    font-size: 14px;
    font-weight: 750;
}

.section--company {
    background: #fff;
}

.section--company .section-heading {
    align-items: center;
}

.section--company .section-heading .eyebrow {
    margin-bottom: 24px;
}

.company-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 16px;
}

.company-card {
    min-height: 330px;
    padding: 36px;
    border: 1px solid var(--jcs-line);
    border-radius: 26px;
}

.company-card--experience {
    background:
        radial-gradient(circle at 100% 0, rgba(255, 191, 25, .38), transparent 46%),
        #fffaf0;
}

.company-card--experience > strong {
    display: block;
    color: var(--jcs-ink);
    font-size: clamp(70px, 8vw, 112px);
    font-weight: 920;
    letter-spacing: -.08em;
    line-height: .82;
}

.company-card--control {
    background:
        radial-gradient(circle at 100% 0, rgba(133, 215, 195, .22), transparent 42%),
        var(--jcs-night);
    color: #fff;
}

.company-card--control > span,
.next-product > div > span {
    color: var(--jcs-sun);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.company-card h3 {
    max-width: 680px;
    margin: 80px 0 12px;
    font-size: clamp(26px, 3vw, 42px);
    letter-spacing: -.05em;
    line-height: 1;
}

.company-card--experience h3 {
    margin-top: 36px;
}

.company-card p {
    max-width: 680px;
    margin: 0;
    color: var(--jcs-muted);
    line-height: 1.68;
}

.company-card--control p {
    color: #9da8b3;
}

.next-product {
    display: grid;
    align-items: start;
    grid-template-columns: 1.12fr .88fr;
    gap: 70px;
    margin-top: 16px;
    padding: 54px;
    border-radius: 30px;
    background: var(--jcs-sun);
}

.next-product > div > span {
    color: #6b4c00;
}

.next-product h2 {
    max-width: 690px;
    margin: 26px 0 20px;
    font-size: clamp(42px, 5vw, 70px);
    letter-spacing: -.065em;
    line-height: .98;
}

.next-product p {
    max-width: 720px;
    margin: 0;
    color: #513d0d;
    font-size: 17px;
    line-height: 1.68;
}

.next-product ol {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(16,24,32,.2);
    list-style: none;
}

.next-product li {
    display: grid;
    align-items: start;
    grid-template-columns: 44px 1fr;
    gap: 15px;
    padding: 21px 0;
    border-bottom: 1px solid rgba(16,24,32,.2);
}

.next-product li b {
    font-size: 11px;
}

.next-product li span {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
}

.pricing-extras {
    background: #edf1f4;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.extras-grid article {
    padding: 25px;
    border: 1px solid var(--jcs-line);
    border-radius: 20px;
    background: #fff;
}

.extras-grid h3 {
    margin: 0 0 18px;
    font-size: 16px;
}

.extras-grid p {
    margin: 0;
    color: var(--jcs-muted);
    font-size: 14px;
    line-height: 1.55;
}

.product-note--warning > span {
    font-size: 20px;
}

.site-footer {
    padding: 64px 0 30px;
    background: #0b1117;
    color: #fff;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.15fr .6fr .6fr 1.05fr;
    gap: 50px;
}

.site-footer__about {
    max-width: 460px;
    margin-top: 18px;
    color: #8e99a4;
    line-height: 1.65;
}

.site-footer h3 {
    margin: 0 0 18px;
    color: #78838d;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.site-footer nav {
    display: grid;
    gap: 12px;
}

.site-footer nav a {
    color: #dce2e7;
    text-decoration: none;
    font-size: 14px;
}

.site-footer__contacts {
    min-width: 0;
}

.site-footer__contacts p {
    margin: 0 0 17px;
    color: #dce2e7;
    font-size: 14px;
    line-height: 1.55;
}

.site-footer__contacts p span {
    display: block;
    margin-bottom: 4px;
    color: #68737d;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-footer__contacts p a {
    display: block;
    width: fit-content;
    color: #fff;
    text-decoration: none;
}

.site-footer__map {
    display: inline-flex;
    margin-top: 3px;
    color: var(--jcs-sun);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: #68737d;
    font-size: 12px;
}

.content-page {
    min-height: 55vh;
    padding: 70px 0 100px;
}

.content-page article {
    max-width: 820px;
}

.content-page h1 {
    font-size: clamp(42px, 6vw, 72px);
    letter-spacing: -.06em;
}

.content-page--cabinet {
    padding: 48px 0 96px;
}

.content-page--cabinet article {
    max-width: none;
}

@media (max-width: 1050px) {
    .site-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        padding: 20px;
        border-bottom: 1px solid var(--jcs-line);
        background: #fff;
        flex-direction: column;
    }

    .site-nav.is-open {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .site-header__inner > .language-switcher--desktop,
    .site-header__inner > .jcs-button {
        display: none;
    }

    .site-nav .language-switcher--mobile {
        display: flex;
        align-self: flex-start;
    }

    .hero__grid,
    .section-heading,
    .product-hero__grid {
        grid-template-columns: 1fr;
    }

    .hero__grid {
        gap: 54px;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .process-flow,
    .process-flow--5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-node:nth-child(3)::after {
        display: none;
    }

    .capability,
    .capability:nth-child(1),
    .capability:nth-child(2),
    .capability:nth-child(3) {
        grid-column: span 6;
    }

    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    :root {
        --jcs-shell: min(100% - 28px, 1200px);
        --jcs-radius: 20px;
    }

    body.admin-bar .site-header {
        top: 46px;
    }

    .site-header__inner {
        min-height: 68px;
    }

    .hero {
        padding: 56px 0 70px;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero h1 span {
        white-space: normal;
    }

    .system-card {
        padding: 18px;
        border-radius: 24px;
    }

    .system-module {
        grid-template-columns: 42px 1fr;
    }

    .system-module em {
        display: none;
    }

    .section {
        padding: 74px 0;
    }

    .section-heading {
        gap: 20px;
        margin-bottom: 34px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: 390px;
    }

    .principles,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .process-flow,
    .process-flow--5,
    .pricing-grid,
    .extras-grid,
    .company-grid,
    .next-product {
        grid-template-columns: 1fr;
    }

    .process-node {
        min-height: 180px;
    }

    .process-node:not(:last-child)::after {
        top: auto;
        right: auto;
        bottom: -19px;
        left: 24px;
        content: "↓";
    }

    .process-node:nth-child(3)::after {
        display: grid;
    }

    .capability,
    .capability:nth-child(1),
    .capability:nth-child(2),
    .capability:nth-child(3) {
        min-height: 210px;
        grid-column: span 12;
    }

    .status-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .product-note {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        min-height: 0;
    }

    .trial-strip {
        align-items: flex-start;
        flex-direction: column;
    }

    .company-card {
        min-height: 300px;
        padding: 28px;
    }

    .next-product {
        gap: 40px;
        padding: 38px 25px;
        border-radius: 24px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .step {
        min-height: 200px;
    }

    .cta-card {
        padding: 44px 24px;
        border-radius: 25px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .site-footer__bottom {
        flex-direction: column;
    }
}
