:root {
    --syt-bg: #f6f2ea;
    --syt-paper: #fffaf0;
    --syt-ink: #14221f;
    --syt-muted: #66736d;
    --syt-line: rgba(20, 34, 31, 0.14);
    --syt-accent: #d66a2c;
    --syt-accent-dark: #9f3f1e;
    --syt-green: #1f4f43;
    --syt-green-dark: #102d28;
    --syt-gold: #c49a4a;
    --syt-sand: #f3dfb8;
    --syt-cream: #fff7e9;
    --syt-soft-gradient: linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(243, 223, 184, 0.82));
    --syt-accent-gradient: linear-gradient(135deg, #f7d3a0 0%, #e6aa59 100%);
    --syt-radius: 24px;
    --syt-shadow: 0 24px 70px rgba(16, 45, 40, 0.16);
}

* {
    box-sizing: border-box;
}

body.syt-site {
    margin: 0;
    color: var(--syt-ink);
    background:
        radial-gradient(circle at 10% 0%, rgba(214, 106, 44, 0.14), transparent 32rem),
        linear-gradient(135deg, #f8f1e2 0%, #eef2e8 42%, #f7efe2 100%);
    font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
    line-height: 1.65;
}

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

a:hover,
a:focus {
    color: var(--syt-accent);
    text-decoration: none;
}

.syt-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.syt-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(246, 242, 234, 0.82);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.syt-header.is-scrolled {
    background: rgba(255, 250, 240, 0.94);
    box-shadow: 0 12px 40px rgba(16, 45, 40, 0.12);
}

.syt-header__inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.syt-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.syt-brand__mark {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--syt-green), var(--syt-accent));
    font-weight: 800;
    letter-spacing: 0.08em;
}

.syt-brand__text {
    display: grid;
    line-height: 1.2;
}

.syt-brand__text strong {
    font-size: 20px;
    letter-spacing: 0.08em;
}

.syt-brand__text small {
    color: var(--syt-muted);
    font-size: 12px;
    letter-spacing: 0.04em;
}

.syt-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
}

.syt-nav a {
    padding: 10px 13px;
    border-radius: 999px;
    color: var(--syt-green-dark);
    font-size: 14px;
    font-weight: 600;
}

.syt-nav a.is-active,
.syt-nav a:hover {
    background: rgba(31, 79, 67, 0.09);
}

.syt-nav .syt-nav__cta {
    margin-left: 8px;
    color: #fff;
    background: var(--syt-green);
}

.syt-nav .syt-nav__cta:hover {
    color: #fff;
    background: var(--syt-accent-dark);
}

.syt-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: var(--syt-green);
    padding: 11px;
}

.syt-nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff;
}

.syt-main {
    overflow: hidden;
}

.syt-hero {
    position: relative;
    padding: 94px 0 74px;
}

.syt-hero:before {
    content: "";
    position: absolute;
    inset: 9% -18% auto auto;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: repeating-linear-gradient(135deg, rgba(31, 79, 67, 0.13) 0 2px, transparent 2px 18px);
    opacity: 0.55;
}

.syt-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    gap: 54px;
    align-items: center;
}

.syt-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--syt-accent-dark);
    font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.syt-kicker:before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--syt-accent);
}

.syt-hero h1,
.syt-section h2,
.syt-page-hero h1 {
    margin: 18px 0;
    color: var(--syt-green-dark);
    font-family: "Georgia", "Times New Roman", serif;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.04;
}

.syt-hero h1 {
    max-width: 760px;
    font-size: clamp(42px, 6vw, 76px);
}

.syt-hero p,
.syt-section__head p,
.syt-cta p,
.syt-page-hero p {
    max-width: 720px;
    color: var(--syt-muted);
    font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.72;
}

.syt-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 34px 0 28px;
}

.syt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid var(--syt-accent);
    border-radius: 999px;
    color: #fff;
    background: var(--syt-accent);
    font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(214, 106, 44, 0.26);
}

.syt-button:hover {
    color: #fff;
    background: var(--syt-accent-dark);
    border-color: var(--syt-accent-dark);
}

.syt-button--ghost {
    color: var(--syt-green);
    background: rgba(255, 255, 255, 0.36);
    border-color: rgba(31, 79, 67, 0.24);
    box-shadow: none;
}

.syt-button--ghost:hover {
    color: #fff;
    background: var(--syt-green);
    border-color: var(--syt-green);
}

.syt-button--ghost-dark,
.syt-button--light {
    color: var(--syt-green-dark);
    background: #fff;
    border-color: transparent;
    box-shadow: none;
}

.syt-button--ghost-dark:hover,
.syt-button--light:hover {
    color: var(--syt-green-dark);
    background: var(--syt-soft-gradient);
    border-color: rgba(159, 63, 30, 0.18);
}

.syt-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.syt-hero__meta span,
.syt-risk-grid span {
    padding: 8px 12px;
    border: 1px solid var(--syt-line);
    border-radius: 999px;
    color: var(--syt-green);
    background: rgba(255, 255, 255, 0.38);
    font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
    font-size: 13px;
}

.syt-hero-note {
    margin-top: 18px;
    padding: 16px 18px;
    border-left: 3px solid var(--syt-accent);
    border-radius: 0 18px 18px 0;
    background: rgba(255, 255, 255, 0.38);
}

.syt-hero-note strong {
    display: block;
    margin-bottom: 6px;
    color: var(--syt-green-dark);
    font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.syt-hero-note p {
    margin: 0;
    color: var(--syt-muted);
    font-size: 14px;
    line-height: 1.68;
}

.syt-hero__panel {
    display: grid;
    gap: 16px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255, 250, 240, 0.92), rgba(237, 229, 211, 0.72));
    box-shadow: var(--syt-shadow);
    transform: rotate(-2deg);
}

.syt-visual-card {
    display: grid;
    gap: 18px;
}

.syt-hero-illustration,
.syt-card-illustration {
    overflow: hidden;
    border-radius: 30px;
}

.syt-asset-shell {
    position: relative;
}

.syt-placeholder-media.syt-asset-shell {
    padding: 0;
}

.syt-placeholder-media.syt-asset-shell:before {
    display: none;
}

.syt-hero-illustration img,
.syt-card-illustration img {
    display: block;
    width: 100%;
    height: auto;
}

.syt-asset-shell.has-real-asset:before {
    display: none;
}

.syt-asset-shell__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.syt-placeholder-fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    min-height: inherit;
    padding: 22px;
    border-radius: inherit;
    text-align: center;
    color: #fff;
}

.syt-placeholder-fallback span {
    display: block;
    font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
    font-size: clamp(26px, 5vw, 64px);
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1;
}

.syt-placeholder-fallback--blue {
    background: #8398ea;
}

.syt-placeholder-fallback--green {
    background: #5fdc9a;
}

.syt-placeholder-fallback--gray {
    color: #1f1f1f;
    background: #cfcfcf;
}

.syt-placeholder-fallback--gold {
    background: #f4c37b;
}

.syt-hero-illustration .syt-placeholder-fallback {
    min-height: 340px;
}

.syt-card-illustration .syt-placeholder-fallback {
    min-height: 176px;
}

.syt-visual-card__metrics {
    display: grid;
    gap: 14px;
}

.syt-hero-card {
    padding: 26px;
    border-radius: 24px;
    background: #fffaf0;
    box-shadow: inset 0 0 0 1px var(--syt-line);
}

.syt-hero-card--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--syt-green-dark), var(--syt-green));
}

.syt-hero-card strong {
    display: block;
    margin-bottom: 6px;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 30px;
    line-height: 1.05;
}

.syt-hero-card span {
    font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
}

.syt-section {
    padding: 84px 0;
}

.syt-section--compact {
    padding-top: 28px;
}

.syt-section--muted {
    background: rgba(255, 250, 240, 0.58);
}

.syt-section--dark {
    color: #fff;
    background:
        radial-gradient(circle at 82% 10%, rgba(214, 106, 44, 0.22), transparent 26rem),
        linear-gradient(135deg, #102d28, #173f37);
}

.syt-section--dark h2,
.syt-section--dark .syt-kicker,
.syt-section--dark p {
    color: #fff;
}

.syt-section--cta {
    padding-top: 30px;
}

.syt-section__head {
    margin-bottom: 34px;
}

.syt-section h2,
.syt-page-hero h1 {
    max-width: 780px;
    font-size: clamp(32px, 4vw, 52px);
}

.syt-risk-grid,
.syt-card-grid {
    display: grid;
    gap: 18px;
}

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

.syt-trust-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1fr);
    gap: 28px;
    align-items: stretch;
    padding: 34px;
    border: 1px solid rgba(31, 79, 67, 0.13);
    border-radius: 34px;
    background:
        radial-gradient(circle at 8% 8%, rgba(214, 106, 44, 0.12), transparent 24rem),
        rgba(255, 250, 240, 0.82);
    box-shadow: var(--syt-shadow);
}

.syt-trust-panel__intro h2 {
    margin-bottom: 14px;
    font-size: clamp(30px, 4vw, 46px);
}

.syt-trust-panel__intro p {
    margin: 0;
}

.syt-trust-panel__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.syt-trust-panel__stats div,
.syt-proof-card,
.syt-deliverables-panel {
    border: 1px solid rgba(31, 79, 67, 0.12);
    background: rgba(255, 255, 255, 0.72);
}

.syt-trust-panel__stats div {
    display: grid;
    align-content: start;
    gap: 12px;
    min-height: 210px;
    padding: 24px;
    border-radius: 26px;
}

.syt-trust-panel__stats strong {
    color: var(--syt-accent-dark);
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 42px;
    line-height: 1;
}

.syt-trust-panel__stats span {
    color: var(--syt-muted);
    font-size: 14px;
    line-height: 1.62;
}

.syt-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.syt-capability-grid {
    align-items: stretch;
}

.syt-capability-card,
.syt-industry-card,
.syt-list-card,
.syt-detail-panel {
    display: block;
    min-height: 230px;
    padding: 28px;
    border: 1px solid var(--syt-line);
    border-radius: var(--syt-radius);
    background: rgba(255, 250, 240, 0.78);
    box-shadow: 0 14px 42px rgba(16, 45, 40, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.syt-capability-card:hover,
.syt-industry-card:hover,
.syt-list-card:hover {
    transform: translateY(-6px);
    border-color: rgba(214, 106, 44, 0.5);
    box-shadow: var(--syt-shadow);
}

.syt-capability-card--visual,
.syt-list-card--visual,
.syt-industry-card--visual {
    overflow: hidden;
}

.syt-capability-card span {
    color: var(--syt-gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.syt-capability-card h3,
.syt-industry-card h3,
.syt-list-card h3,
.syt-detail-panel h2 {
    margin: 12px 0 10px;
    color: var(--syt-green-dark);
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.18;
}

.syt-capability-card p,
.syt-industry-card p,
.syt-list-card p,
.syt-detail-panel p,
.syt-footer p {
    color: var(--syt-muted);
    font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
    line-height: 1.65;
}

.syt-industry-card {
    min-height: 260px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.syt-industry-card h3,
.syt-industry-card p {
    color: #fff;
}

.syt-industry-card small {
    display: block;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.58;
}

.syt-split {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
    gap: 42px;
    align-items: start;
}

.syt-timeline {
    display: grid;
    gap: 14px;
}

.syt-process-showcase {
    display: grid;
    align-content: start;
}

.syt-timeline div {
    position: relative;
    padding: 22px 24px 22px 78px;
    border-radius: 22px;
    background: rgba(255, 250, 240, 0.78);
    border: 1px solid var(--syt-line);
}

.syt-timeline span {
    position: absolute;
    left: 22px;
    top: 22px;
    color: var(--syt-accent);
    font-weight: 900;
}

.syt-timeline strong {
    display: block;
    color: var(--syt-green-dark);
    font-size: 18px;
}

.syt-timeline p {
    margin: 5px 0 0;
    color: var(--syt-muted);
    font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
}

.syt-text-link {
    display: inline-flex;
    margin-top: 16px;
    color: var(--syt-accent-dark);
    font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
    font-weight: 800;
}

.syt-quality-band,
.syt-cta {
    border-radius: 34px;
    background:
        var(--syt-soft-gradient),
        repeating-linear-gradient(45deg, transparent 0 12px, rgba(31, 79, 67, 0.06) 12px 14px);
    box-shadow: var(--syt-shadow);
}

.syt-quality-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 40px;
}

.syt-quality-band__visual {
    min-width: 0;
    flex: 0 0 min(340px, 32%);
}

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

.syt-proof-card {
    min-height: 220px;
    padding: 26px;
    border-radius: 26px;
    box-shadow: 0 14px 40px rgba(16, 45, 40, 0.08);
}

.syt-proof-card strong {
    display: block;
    margin-bottom: 12px;
    color: var(--syt-green-dark);
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.12;
}

.syt-proof-card p {
    margin: 0;
    color: var(--syt-muted);
}

.syt-deliverables-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1fr);
    gap: 32px;
    align-items: center;
    padding: 42px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(242, 224, 191, 0.72)),
        repeating-linear-gradient(135deg, rgba(31, 79, 67, 0.05) 0 2px, transparent 2px 18px);
    box-shadow: var(--syt-shadow);
}

.syt-deliverables-panel h2 {
    margin-bottom: 14px;
}

.syt-deliverables-panel p {
    margin: 0;
    color: var(--syt-muted);
}

.syt-deliverables-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.syt-deliverables-list span {
    display: flex;
    align-items: center;
    min-height: 62px;
    padding: 14px 16px;
    border: 1px solid rgba(31, 79, 67, 0.12);
    border-radius: 18px;
    color: var(--syt-green-dark);
    background: rgba(255, 255, 255, 0.78);
    font-weight: 800;
    line-height: 1.35;
}

.syt-cta {
    padding: 56px;
    text-align: center;
}

.syt-cta h2,
.syt-cta p {
    margin-left: auto;
    margin-right: auto;
}

.syt-page-hero {
    padding: 74px 0 44px;
}

.syt-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--syt-muted);
    font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
    font-size: 13px;
}

.syt-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    padding-bottom: 80px;
}

.syt-list-card {
    min-height: 210px;
}

.syt-list-grid--visual {
    gap: 28px;
}

.syt-list-card--visual .syt-card-illustration {
    margin: -28px -28px 18px;
    border-radius: 28px 28px 20px 20px;
    background: #d9ddd8;
}

.syt-list-card__meta {
    color: var(--syt-accent-dark);
    font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.syt-detail {
    padding-bottom: 84px;
}

.syt-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
}

.syt-detail-panel {
    min-height: auto;
}

.syt-richtext {
    color: var(--syt-muted);
    font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
    font-size: 16px;
}

.syt-richtext p {
    margin: 0 0 16px;
}

.syt-richtext > *:first-child {
    margin-top: 0;
}

.syt-spec-list {
    display: grid;
    gap: 14px;
}

.syt-spec-list div {
    padding: 16px;
    border-radius: 16px;
    background: rgba(31, 79, 67, 0.06);
}

.syt-spec-list strong {
    display: block;
    margin-bottom: 6px;
    color: var(--syt-green-dark);
    font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
}

.syt-placeholder-media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 180px;
    padding: 26px;
    border-radius: 26px;
    overflow: hidden;
    text-align: center;
    color: rgba(255, 255, 255, 0.96);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, #8f949b 0%, #676c73 100%);
}

.syt-placeholder-media:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 22px 22px,
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 22px 22px;
    opacity: 0.35;
}

.syt-placeholder-media span,
.syt-placeholder-media small {
    position: relative;
    z-index: 1;
}

.syt-placeholder-media span {
    display: block;
    font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.syt-placeholder-media small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.syt-placeholder-media--hero {
    min-height: 340px;
    background:
        radial-gradient(circle at 18% 20%, rgba(214, 106, 44, 0.32), transparent 26%),
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.14), transparent 22%),
        linear-gradient(145deg, #324846 0%, #162a2b 42%, #56615f 100%);
}

.syt-placeholder-media--process,
.syt-placeholder-media--quality,
.syt-placeholder-media--article {
    min-height: 260px;
}

.syt-placeholder-media--card {
    min-height: 176px;
    margin: -28px -28px 18px;
    border-radius: 28px 28px 20px 20px;
}

.syt-placeholder-media--tile {
    min-height: 180px;
    margin: -28px -28px 20px;
    border-radius: 28px 28px 20px 20px;
}

.syt-placeholder-media--aside {
    min-height: 180px;
    margin-top: 18px;
}

.syt-placeholder-media .syt-placeholder-fallback {
    min-height: inherit;
}

.syt-placeholder-media .syt-placeholder-fallback span,
.syt-hero-illustration .syt-placeholder-fallback span,
.syt-card-illustration .syt-placeholder-fallback span {
    font-size: clamp(26px, 5vw, 64px);
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: none;
}

.syt-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    color: #fff !important;
    background: linear-gradient(135deg, var(--syt-green), var(--syt-accent));
    font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    box-shadow: 0 16px 40px rgba(16, 45, 40, 0.18);
}

.syt-icon-badge--image {
    width: 74px;
    height: 74px;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.syt-icon-badge--image img,
.syt-service-entry-card__icon img {
    display: block;
    width: 100%;
    height: auto;
}

.syt-icon-badge--index {
    background: linear-gradient(135deg, var(--syt-green), var(--syt-accent));
}

.syt-capability-card--visual {
    display: grid;
    gap: 16px;
}

.syt-capability-card--visual .syt-placeholder-media--card {
    order: -1;
}

.syt-industry-card--visual {
    display: block;
}

.syt-article-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.88fr);
    gap: 28px;
    align-items: center;
    padding: 28px;
    border: 1px solid rgba(31, 79, 67, 0.12);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--syt-shadow);
}

.syt-article-hero__content h2 {
    margin: 18px 0 14px;
    color: var(--syt-green-dark);
    font-family: "Georgia", "Times New Roman", serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.08;
}

.syt-article-hero__content {
    min-width: 0;
}

.syt-article-hero__content p:last-child {
    margin-bottom: 0;
}

.syt-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.syt-feature-pills span {
    padding: 10px 14px;
    border: 1px solid rgba(31, 79, 67, 0.14);
    border-radius: 999px;
    color: var(--syt-green-dark) !important;
    background: rgba(255, 255, 255, 0.9);
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase;
}

.syt-signal-grid,
.syt-story-grid {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

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

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

.syt-signal-card,
.syt-story-card {
    padding: 20px 22px;
    border: 1px solid rgba(31, 79, 67, 0.12);
    border-radius: 24px;
    background: rgba(255, 250, 240, 0.72);
}

.syt-signal-card strong,
.syt-story-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--syt-green-dark);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.syt-signal-card p,
.syt-story-card p {
    margin: 0;
    color: var(--syt-muted);
}

.syt-process-diagram {
    display: grid;
    grid-template-columns: repeat(7, auto);
    align-items: center;
    gap: 12px;
    padding: 30px 24px;
    border: 1px solid rgba(31, 79, 67, 0.12);
    border-radius: 30px;
    background:
        radial-gradient(circle at top left, rgba(214, 106, 44, 0.12), transparent 28%),
        rgba(255, 250, 240, 0.78);
    box-shadow: var(--syt-shadow);
}

.syt-process-diagram__step {
    display: grid;
    place-items: center;
    gap: 6px;
    min-width: 96px;
    min-height: 96px;
    padding: 16px 12px;
    border-radius: 24px;
    color: var(--syt-green-dark);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 0 0 1px rgba(31, 79, 67, 0.08);
}

.syt-process-diagram__step strong {
    color: var(--syt-accent-dark);
    font-size: 20px;
    line-height: 1;
}

.syt-process-diagram__step span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}

.syt-process-diagram__line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--syt-accent), rgba(31, 79, 67, 0.22));
}

.syt-service-entry-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.syt-service-entry-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 24px;
    border: 1px solid rgba(31, 79, 67, 0.12);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--syt-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.syt-service-entry-card:hover {
    transform: translateY(-5px);
    border-color: rgba(214, 106, 44, 0.42);
}

.syt-service-entry-card__icon {
    width: 72px;
    height: 72px;
}

.syt-service-entry-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--syt-green-dark);
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.15;
}

.syt-service-entry-card p {
    margin: 0;
    color: var(--syt-muted);
}

.syt-page-content,
.syt-form-shell {
    padding-bottom: 84px;
}

.syt-page-content__inner,
.syt-form-card {
    padding: 38px;
    border-radius: 30px;
    background: rgba(255, 250, 240, 0.84);
    box-shadow: var(--syt-shadow);
}

.syt-page-content__inner .syt-signal-grid {
    margin-top: 28px;
}

.syt-form-card .form-control {
    min-height: 46px;
    border-color: rgba(31, 79, 67, 0.18);
    border-radius: 14px;
    box-shadow: none;
}

.syt-form-card .syt-file-field,
.syt-form-card .syt-captcha-field {
    display: grid;
    align-items: center;
    width: 100%;
}

.syt-form-card .syt-file-field {
    grid-template-columns: minmax(0, calc(100% - 118px)) 118px;
}

.syt-form-card .syt-captcha-field {
    grid-template-columns: minmax(0, calc(100% - 108px)) 108px;
}

.syt-form-card .syt-file-field::before,
.syt-form-card .syt-file-field::after,
.syt-form-card .syt-captcha-field::before,
.syt-form-card .syt-captcha-field::after {
    display: none;
}

.syt-form-card .syt-file-field .form-control,
.syt-form-card .syt-captcha-field .form-control {
    display: block;
    float: none;
    width: 100%;
    height: 46px;
}

.syt-form-card .syt-file-field .form-control {
    border-radius: 14px 0 0 14px;
}

.syt-form-card .syt-file-field__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 118px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(31, 79, 67, 0.18);
    border-left: 0;
    border-radius: 0 14px 14px 0;
    background: rgba(255, 255, 255, 0.78);
}

.syt-form-card .syt-file-field__actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 34px;
    margin: 0;
    padding: 0 10px;
    border-radius: 7px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.syt-form-card .syt-captcha-field .form-control {
    border-radius: 14px 0 0 14px;
}

.syt-form-card .syt-captcha-box {
    display: block;
    width: 108px;
    height: 46px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(31, 79, 67, 0.18);
    border-left: 0;
    border-radius: 0 14px 14px 0;
    background: #fff;
}

.syt-form-card .syt-captcha-box img {
    display: block;
    width: 108px;
    height: 46px;
    object-fit: cover;
    cursor: pointer;
}

.syt-form-card textarea.form-control {
    min-height: 128px;
}

.syt-form-card .control-label {
    color: var(--syt-green-dark);
    font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
}

.syt-form-card .btn-primary {
    border-color: var(--syt-accent);
    border-radius: 999px;
    background: var(--syt-accent);
}

.syt-form-card .normal-footer .col-sm-8 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.syt-form-card .normal-footer .btn {
    min-width: 132px;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: none;
    transition: background 0.24s ease, border-color 0.24s ease, color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease;
}

.syt-form-card .normal-footer .btn-primary {
    color: #fff;
    border-color: var(--syt-accent);
    background: var(--syt-accent);
    box-shadow: 0 14px 30px rgba(214, 106, 44, 0.22);
}

.syt-form-card .normal-footer .btn-primary:hover,
.syt-form-card .normal-footer .btn-primary:focus {
    color: #fff;
    border-color: var(--syt-accent-dark);
    background: var(--syt-accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(214, 106, 44, 0.26);
}

.syt-form-card .normal-footer .btn.disabled,
.syt-form-card .normal-footer .btn[disabled] {
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
}

.syt-form-card .normal-footer .btn.is-submitting,
.syt-form-card .normal-footer .btn.is-submitting:hover,
.syt-form-card .normal-footer .btn.is-submitting:focus {
    color: rgba(255, 255, 255, 0.92);
    border-color: #c95a24;
    background: #c95a24;
    transform: none;
    box-shadow: 0 12px 24px rgba(201, 90, 36, 0.18);
    cursor: wait;
    pointer-events: none;
}

.syt-form-card .normal-footer .btn-default {
    color: var(--syt-green-dark);
    border-color: rgba(31, 79, 67, 0.18);
    background: rgba(255, 255, 255, 0.76);
}

.syt-form-card .normal-footer .btn-default:hover {
    border-color: rgba(31, 79, 67, 0.34);
    background: #fff;
}

.syt-empty {
    padding: 36px;
    border: 1px dashed var(--syt-line);
    border-radius: 22px;
    color: var(--syt-muted);
    text-align: center;
}

.syt-footer {
    color: rgba(255, 255, 255, 0.78);
    background: var(--syt-green-dark);
    font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
}

.syt-footer__grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.3fr) minmax(150px, 0.7fr) minmax(210px, 0.9fr) minmax(260px, 1fr);
    gap: clamp(28px, 4vw, 58px);
    padding: 62px 0 42px;
}

.syt-footer__brand,
.syt-footer h3 {
    color: #fff;
    font-weight: 800;
}

.syt-footer__brand {
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.syt-footer h3 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.2;
}

.syt-footer p {
    max-width: 330px;
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.62);
}

.syt-footer a {
    display: block;
    width: fit-content;
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
}

.syt-footer a:hover {
    color: #fff;
}

.syt-footer__cta {
    display: inline-flex !important;
    width: auto !important;
    min-width: 190px;
    margin-top: 8px !important;
    color: var(--syt-green-dark) !important;
    border: 1px solid rgba(255, 247, 234, 0.22);
    background: linear-gradient(135deg, #fffef9 0%, #f3ddc4 100%);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
    transition: background 0.24s ease, border-color 0.24s ease, color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.syt-footer__cta:hover,
.syt-footer__cta:focus {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.18);
    background: linear-gradient(135deg, #1f4f43 0%, #183e35 100%);
    box-shadow: 0 20px 46px rgba(7, 24, 19, 0.28);
    transform: translateY(-2px);
}

.syt-footer__cta:active {
    transform: translateY(0);
    box-shadow: 0 12px 28px rgba(7, 24, 19, 0.22);
}

.syt-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.syt-float-inquiry {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 900;
    padding: 13px 18px;
    border-radius: 999px;
    color: #fff;
    background: var(--syt-accent);
    font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
    font-weight: 800;
    box-shadow: 0 16px 34px rgba(214, 106, 44, 0.34);
}

.syt-float-inquiry:hover {
    color: #fff;
    background: var(--syt-accent-dark);
}

.syt-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 980px) {
    .syt-header__inner {
        min-height: 72px;
    }

    .syt-nav-toggle {
        display: block;
    }

    .syt-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 76px;
        display: none;
        padding: 18px;
        border-radius: 22px;
        background: rgba(255, 250, 240, 0.98);
        box-shadow: var(--syt-shadow);
    }

    .syt-nav.is-open {
        display: grid;
        gap: 4px;
    }

    .syt-nav a {
        border-radius: 14px;
    }

    .syt-hero__grid,
    .syt-split,
    .syt-detail__grid,
    .syt-footer__grid,
    .syt-article-hero,
    .syt-trust-panel,
    .syt-deliverables-panel {
        grid-template-columns: 1fr;
    }

    .syt-footer__grid {
        gap: 28px;
    }

    .syt-hero__panel {
        transform: none;
    }

    .syt-hero__meta {
        gap: 8px;
    }

    .syt-hero__meta span,
    .syt-risk-grid span {
        padding: 7px 10px;
        font-size: 12px;
    }

    .syt-hero-note {
        margin-top: 16px;
        padding: 14px 16px;
    }

    .syt-hero-card {
        padding: 22px;
    }

    .syt-hero-card strong {
        font-size: 26px;
    }

    .syt-hero-illustration {
        border-radius: 24px;
    }

    .syt-card-grid--three,
    .syt-risk-grid,
    .syt-proof-grid,
    .syt-list-grid,
    .syt-signal-grid,
    .syt-story-grid,
    .syt-service-entry-grid {
        grid-template-columns: 1fr;
    }

    .syt-quality-band {
        display: grid;
    }

    .syt-quality-band__visual {
        flex-basis: auto;
    }

    .syt-process-diagram {
        grid-template-columns: 1fr;
        justify-items: stretch;
        gap: 10px;
        padding: 24px 18px;
    }

    .syt-process-diagram__line {
        width: 2px;
        height: 24px;
        margin: 0 auto;
        background: linear-gradient(180deg, var(--syt-accent), rgba(31, 79, 67, 0.22));
    }

    .syt-process-diagram__step {
        min-width: 0;
        min-height: 84px;
        padding: 14px 10px;
        border-radius: 20px;
    }

    .syt-service-entry-card {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 16px;
        padding: 20px;
        border-radius: 22px;
    }

    .syt-service-entry-card__icon {
        width: 64px;
        height: 64px;
    }

    .syt-service-entry-card strong {
        font-size: 20px;
    }

    .syt-list-card--visual .syt-card-illustration {
        border-radius: 24px 24px 18px 18px;
    }
}

@media (max-width: 640px) {
    .syt-container {
        width: min(100% - 28px, 1180px);
    }

    .syt-hero,
    .syt-section,
    .syt-page-hero {
        padding: 54px 0;
    }

    .syt-brand__text small {
        display: none;
    }

    .syt-hero h1 {
        font-size: 40px;
    }

    .syt-hero__actions {
        gap: 10px;
        margin: 28px 0 22px;
    }

    .syt-hero__meta {
        gap: 8px;
    }

    .syt-hero__meta span,
    .syt-risk-grid span {
        width: fit-content;
        max-width: 100%;
        padding: 6px 10px;
        font-size: 11px;
        line-height: 1.4;
    }

    .syt-hero-note {
        padding: 12px 14px;
        border-radius: 0 16px 16px 0;
    }

    .syt-hero-note p {
        font-size: 13px;
        line-height: 1.6;
    }

    .syt-hero-card {
        padding: 18px;
        border-radius: 20px;
    }

    .syt-hero-card strong {
        font-size: 22px;
    }

    .syt-quality-band,
    .syt-cta,
    .syt-trust-panel,
    .syt-deliverables-panel,
    .syt-page-content__inner,
    .syt-form-card,
    .syt-article-hero {
        padding: 26px;
        border-radius: 24px;
    }

    .syt-hero-illustration,
    .syt-card-illustration,
    .syt-placeholder-media--article,
    .syt-placeholder-media--aside {
        border-radius: 22px;
    }

    .syt-placeholder-media--card,
    .syt-placeholder-media--tile {
        margin-left: -26px;
        margin-right: -26px;
        border-radius: 24px 24px 18px 18px;
    }

    .syt-list-card--visual .syt-card-illustration {
        margin-left: -26px;
        margin-right: -26px;
        border-radius: 24px 24px 18px 18px;
    }

    .syt-list-grid--visual {
        gap: 22px;
    }

    .syt-list-card,
    .syt-detail-panel,
    .syt-capability-card,
    .syt-industry-card {
        padding: 22px;
        border-radius: 22px;
    }

    .syt-process-diagram {
        padding: 20px 16px;
        border-radius: 24px;
    }

    .syt-process-diagram__step {
        min-height: 74px;
        padding: 12px 10px;
        border-radius: 18px;
    }

    .syt-process-diagram__step strong {
        font-size: 18px;
    }

    .syt-process-diagram__step span {
        font-size: 11px;
    }

    .syt-service-entry-grid {
        gap: 16px;
    }

    .syt-service-entry-card {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 14px;
        padding: 18px;
        border-radius: 20px;
    }

    .syt-service-entry-card__icon {
        width: 56px;
        height: 56px;
    }

    .syt-service-entry-card strong {
        font-size: 18px;
    }

    .syt-service-entry-card p {
        font-size: 14px;
        line-height: 1.55;
    }

    .syt-trust-panel__stats,
    .syt-deliverables-list {
        grid-template-columns: 1fr;
    }

    .syt-trust-panel__stats div,
    .syt-proof-card {
        min-height: auto;
        padding: 20px;
        border-radius: 20px;
    }

    .syt-footer__bottom {
        display: grid;
    }

    .syt-footer__cta {
        justify-content: center;
        width: 100% !important;
        max-width: 280px;
    }

    .syt-form-card .syt-file-field,
    .syt-form-card .syt-captcha-field {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .syt-form-card .syt-file-field .form-control,
    .syt-form-card .syt-captcha-field .form-control,
    .syt-form-card .syt-file-field__actions,
    .syt-form-card .syt-captcha-box {
        width: 100%;
        border-radius: 14px;
        border-left: 1px solid rgba(31, 79, 67, 0.18);
    }

    .syt-form-card .syt-file-field__actions .btn {
        width: calc(100% - 20px);
    }
}

/* 2026-06-18 最终改版覆盖层：保留内容结构，重做品牌视觉 */
@font-face {
    font-family: "SytEuclid";
    src:
        url("../fonts/EuclidFlexB-Regular.ttf") format("truetype"),
        local("Euclid Flex B Regular"),
        local("EuclidFlexB-Regular"),
        local("Euclid Flex"),
        local("EuclidFlex");
    font-display: swap;
}

@font-face {
    font-family: "SytBody";
    src: url("../../../fonts/lato/lato-regular.ttf") format("truetype");
    font-display: swap;
}

:root {
    --syt-bg: #eef2f6;
    --syt-paper: #ffffff;
    --syt-ink: #10233d;
    --syt-muted: #68788d;
    --syt-line: rgba(16, 35, 61, 0.12);
    --syt-accent: #f9423a;
    --syt-accent-dark: #cf2d2a;
    --syt-green: #10233d;
    --syt-green-dark: #081a31;
    --syt-gold: #e95743;
    --syt-sand: #f2f4f7;
    --syt-cream: #ffffff;
    --syt-soft-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 244, 248, 0.92));
    --syt-accent-gradient: linear-gradient(135deg, #ff5c4f 0%, #f9423a 45%, #c9252f 100%);
    --syt-radius: 26px;
    --syt-shadow: 0 22px 60px rgba(8, 26, 49, 0.12);
}

body.syt-site {
    color: var(--syt-ink);
    background:
        radial-gradient(circle at 15% 0%, rgba(249, 66, 58, 0.12), transparent 26rem),
        radial-gradient(circle at 100% 8%, rgba(16, 35, 61, 0.06), transparent 28rem),
        #f4f6f9;
    font-family: "SytBody", "Segoe UI", "Helvetica Neue", sans-serif;
}

.syt-utility-bar {
    border-top: 3px solid var(--syt-accent);
    background: #061427;
    color: rgba(255, 255, 255, 0.72);
}

.syt-utility-bar__inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: "SytEuclid", "SytBody", "Segoe UI", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.syt-container {
    width: min(1240px, calc(100% - 48px));
}

.syt-header {
    top: 42px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(6, 20, 39, 0.82);
    backdrop-filter: blur(18px);
}

.syt-header.is-scrolled {
    background: rgba(8, 26, 49, 0.96);
    box-shadow: 0 16px 42px rgba(8, 26, 49, 0.24);
}

.syt-header__inner {
    min-height: 92px;
    gap: 36px;
}

.syt-brand {
    gap: 18px;
}

.syt-brand__mark {
    display: none;
}

.syt-brand__logo {
    display: block;
    width: clamp(112px, 10vw, 152px);
    color: #ffffff;
}

.syt-brand__text {
    gap: 2px;
}

.syt-brand__text strong,
.syt-footer__brand {
    font-family: "SytEuclid", "SytBody", "Segoe UI", sans-serif;
}

.syt-brand__text strong {
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.syt-brand__text small {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.syt-nav {
    gap: 8px;
    font-family: "SytEuclid", "SytBody", "Segoe UI", sans-serif;
}

.syt-nav a {
    padding: 11px 14px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.syt-nav a.is-active,
.syt-nav a:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

.syt-nav .syt-nav__cta {
    margin-left: 12px;
    border-color: rgba(249, 66, 58, 0.5);
    background: var(--syt-accent-gradient);
    box-shadow: 0 18px 36px rgba(249, 66, 58, 0.24);
}

.syt-nav .syt-nav__cta:hover {
    background: linear-gradient(135deg, #ff7661 0%, #e23431 100%);
}

.syt-nav-toggle {
    background: var(--syt-accent);
}

.syt-main {
    background:
        linear-gradient(180deg, rgba(8, 26, 49, 0.02) 0, rgba(8, 26, 49, 0) 240px),
        transparent;
}

.syt-hero {
    position: relative;
    padding: 132px 0 94px;
    color: #ffffff;
    background:
        linear-gradient(120deg, rgba(8, 26, 49, 0.98) 0%, rgba(10, 31, 59, 0.96) 44%, rgba(15, 45, 82, 0.92) 100%);
}

.syt-hero:before {
    inset: auto auto -140px -130px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(249, 66, 58, 0.38) 0%, rgba(249, 66, 58, 0) 72%);
    opacity: 1;
}

.syt-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.16;
    pointer-events: none;
}

.syt-hero__grid,
.syt-split,
.syt-detail__grid,
.syt-article-hero,
.syt-quality-band,
.syt-deliverables-panel,
.syt-trust-panel {
    position: relative;
    z-index: 1;
}

.syt-hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.8fr);
    gap: 56px;
    align-items: end;
}

.syt-kicker {
    color: #ff9384;
    font-family: "SytEuclid", "SytBody", "Segoe UI", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.syt-kicker:before {
    width: 42px;
    background: var(--syt-accent);
}

.syt-hero h1,
.syt-section h2,
.syt-page-hero h1 {
    color: inherit;
    font-family: "SytEuclid", "SytBody", "Segoe UI", sans-serif;
    font-weight: 700;
    letter-spacing: -0.045em;
}

.syt-hero h1 {
    max-width: 860px;
    font-size: clamp(54px, 7vw, 94px);
    line-height: 0.96;
}

.syt-hero p,
.syt-section__head p,
.syt-cta p,
.syt-page-hero p {
    color: rgba(255, 255, 255, 0.72);
    font-family: "SytBody", "Segoe UI", "Helvetica Neue", sans-serif;
    font-size: 17px;
    line-height: 1.72;
}

.syt-section__head p,
.syt-page-hero p,
.syt-detail-panel p,
.syt-list-card p,
.syt-capability-card p,
.syt-industry-card p,
.syt-richtext,
.syt-footer p {
    color: var(--syt-muted);
}

.syt-hero__actions {
    margin: 34px 0 26px;
    gap: 16px;
}

.syt-button {
    min-height: 52px;
    padding: 0 26px;
    border-color: transparent;
    background: var(--syt-accent-gradient);
    font-family: "SytEuclid", "SytBody", "Segoe UI", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 18px 40px rgba(249, 66, 58, 0.3);
}

.syt-button:hover {
    background: linear-gradient(135deg, #ff6f61 0%, #dd3531 100%);
}

.syt-button--ghost {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.syt-button--ghost:hover {
    border-color: rgba(255, 255, 255, 0.34);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.syt-button--ghost-dark,
.syt-button--light {
    color: #ffffff;
    background: #0c2443;
}

.syt-button--ghost-dark:hover,
.syt-button--light:hover {
    color: #ffffff;
    background: #16335a;
}

.syt-hero__meta span,
.syt-risk-grid span,
.syt-feature-pills span,
.syt-global span {
    border-color: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.05);
    font-family: "SytEuclid", "SytBody", "Segoe UI", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.syt-hero-note {
    border-left-color: var(--syt-accent);
    background: rgba(255, 255, 255, 0.08);
}

.syt-hero-note strong {
    color: #ffffff;
    font-family: "SytEuclid", "SytBody", "Segoe UI", sans-serif;
}

.syt-hero-note p {
    color: rgba(255, 255, 255, 0.72);
}

.syt-hero__panel,
.syt-trust-panel,
.syt-deliverables-panel,
.syt-quality-band,
.syt-cta,
.syt-page-content__inner,
.syt-form-card,
.syt-article-hero,
.syt-detail-panel,
.syt-list-card,
.syt-capability-card,
.syt-industry-card {
    border: 1px solid rgba(16, 35, 61, 0.08);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: var(--syt-shadow);
}

.syt-hero__panel {
    padding: 22px;
    transform: none;
    border-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(12, 31, 58, 0.94), rgba(8, 24, 46, 0.94));
    box-shadow: 0 28px 70px rgba(2, 12, 23, 0.32);
}

.syt-hero-illustration,
.syt-card-illustration,
.syt-placeholder-media,
.syt-placeholder-media--article,
.syt-placeholder-media--aside {
    border-radius: 24px;
}

.syt-placeholder-fallback {
    font-family: "SytEuclid", "SytBody", "Segoe UI", sans-serif;
    font-weight: 600;
}

.syt-placeholder-fallback--blue {
    background: linear-gradient(135deg, #152c4b 0%, #0f3967 100%);
}

.syt-placeholder-fallback--green {
    background: linear-gradient(135deg, #193451 0%, #1f4d7d 100%);
}

.syt-placeholder-fallback--gray {
    color: #ffffff;
    background: linear-gradient(135deg, #556274 0%, #79879a 100%);
}

.syt-placeholder-fallback--gold {
    background: linear-gradient(135deg, #ff6b58 0%, #e93e36 100%);
}

.syt-section,
.syt-page-hero {
    padding: 96px 0;
}

.syt-section {
    background: transparent;
}

.syt-section--muted {
    background: linear-gradient(180deg, #eef2f6 0%, #f5f7fa 100%);
}

.syt-section--dark,
.syt-page-hero {
    color: #ffffff;
    background:
        radial-gradient(circle at 85% 25%, rgba(249, 66, 58, 0.18), transparent 24rem),
        linear-gradient(135deg, #07182d 0%, #10233d 100%);
}

.syt-page-hero {
    padding-top: 120px;
    padding-bottom: 104px;
}

.syt-page-hero p,
.syt-section--dark .syt-section__head p,
.syt-footer p {
    color: rgba(255, 255, 255, 0.72);
}

.syt-section--dark .syt-section__head h2 {
    color: #ffffff;
}

.syt-page-hero + .syt-section {
    margin-top: -58px;
    position: relative;
    z-index: 2;
}

.syt-breadcrumb a,
.syt-page-hero .syt-kicker,
.syt-page-hero p {
    color: rgba(255, 255, 255, 0.72);
}

.syt-page-hero h1 {
    max-width: 900px;
    font-size: clamp(40px, 5vw, 74px);
}

.syt-section__head {
    max-width: 760px;
    margin-bottom: 34px;
}

.syt-section__head h2,
.syt-detail-panel h2,
.syt-article-hero__content h2 {
    color: var(--syt-green-dark);
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.03;
}

.syt-card-grid,
.syt-list-grid,
.syt-story-grid,
.syt-signal-grid {
    gap: 24px;
}

.syt-capability-card,
.syt-list-card,
.syt-industry-card,
.syt-story-card,
.syt-signal-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.syt-capability-card:before,
.syt-list-card:before,
.syt-industry-card:before,
.syt-story-card:before,
.syt-signal-card:before,
.syt-detail-panel:before,
.syt-page-content__inner:before,
.syt-form-card:before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: var(--syt-accent-gradient);
}

.syt-capability-card:hover,
.syt-list-card:hover,
.syt-industry-card:hover,
.syt-story-card:hover,
.syt-signal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 62px rgba(8, 26, 49, 0.16);
}

.syt-capability-card h3,
.syt-list-card h3,
.syt-industry-card h3,
.syt-story-card strong,
.syt-signal-card strong,
.syt-detail-panel h2,
.syt-footer h3 {
    color: var(--syt-green-dark);
    font-family: "SytEuclid", "SytBody", "Segoe UI", sans-serif;
    font-weight: 700;
}

.syt-icon-badge,
.syt-service-entry-card__icon {
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(249, 66, 58, 0.14), rgba(16, 35, 61, 0.08));
}

.syt-text-link {
    color: var(--syt-accent-dark);
    font-family: "SytEuclid", "SytBody", "Segoe UI", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.syt-text-link:hover {
    color: var(--syt-accent);
}

.syt-trust-panel,
.syt-deliverables-panel,
.syt-quality-band,
.syt-cta {
    overflow: hidden;
    padding: 40px;
}

.syt-trust-panel,
.syt-quality-band {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 0% 100%, rgba(249, 66, 58, 0.25), transparent 22rem),
        linear-gradient(135deg, #07182d 0%, #112746 100%);
}

.syt-trust-panel h2,
.syt-quality-band h2,
.syt-cta h2 {
    color: #ffffff;
}

.syt-trust-panel p,
.syt-quality-band p,
.syt-cta p {
    color: rgba(255, 255, 255, 0.76);
}

.syt-deliverables-panel {
    border-color: rgba(249, 66, 58, 0.12);
    background:
        radial-gradient(circle at 90% 0%, rgba(249, 66, 58, 0.12), transparent 20rem),
        #ffffff;
}

.syt-cta {
    text-align: left;
    border-color: rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.16), transparent 26rem),
        linear-gradient(135deg, #f9423a 0%, #cf2d2a 100%);
}

.syt-cta .syt-kicker,
.syt-cta p {
    color: rgba(255, 255, 255, 0.84);
}

.syt-detail-panel,
.syt-page-content__inner,
.syt-form-card {
    padding: 34px;
}

.syt-detail-panel h2 {
    margin-top: 0;
    font-size: 28px;
}

.syt-spec-list div,
.syt-richtext blockquote,
.syt-form-shell,
.syt-empty {
    border-radius: 22px;
}

.syt-spec-list div,
.syt-empty {
    border: 1px solid var(--syt-line);
    background: #f7f9fb;
}

.syt-empty {
    color: var(--syt-muted);
    padding: 24px;
}

.syt-story-card,
.syt-signal-card {
    background: #f8fafc;
}

.syt-form-shell {
    padding-bottom: 96px;
}

.syt-form-card .form-control,
.syt-form-card .form-control:focus,
.syt-form-card .selectpicker,
.syt-form-card .bootstrap-select .dropdown-toggle {
    border-radius: 16px;
    border-color: rgba(16, 35, 61, 0.12);
    box-shadow: none;
}

.syt-form-card label,
.syt-form-card .control-label {
    color: var(--syt-green-dark);
    font-family: "SytEuclid", "SytBody", "Segoe UI", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.syt-footer {
    padding-top: 84px;
    color: rgba(255, 255, 255, 0.72);
    background: linear-gradient(180deg, #081a31 0%, #061224 100%);
}

.syt-footer__grid {
    gap: 32px;
}

.syt-footer__brand {
    margin-bottom: 18px;
}

.syt-footer__logo {
    width: 146px;
    color: #ffffff;
}

.syt-global {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.syt-footer h3,
.syt-footer a {
    color: #ffffff;
}

.syt-footer a:hover {
    color: #ff9384;
}

.syt-footer__bottom {
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.syt-float-inquiry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    right: 24px;
    bottom: 24px;
    padding: 0 20px;
    min-height: 52px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--syt-accent-gradient);
    font-family: "SytEuclid", "SytBody", "Segoe UI", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 18px 40px rgba(249, 66, 58, 0.28);
}

.syt-float-inquiry:hover {
    color: #ffffff;
}

.syt-reveal {
    transform: translateY(28px);
}

@media (max-width: 991px) {
    .syt-utility-bar__inner {
        justify-content: center;
        text-align: center;
    }

    .syt-utility-bar__inner span:last-child {
        display: none;
    }

    .syt-header {
        top: 42px;
    }

    .syt-header__inner {
        min-height: 84px;
    }

    .syt-nav {
        padding: 18px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        background: rgba(8, 26, 49, 0.96);
        box-shadow: 0 24px 44px rgba(0, 0, 0, 0.25);
    }

    .syt-nav a {
        width: 100%;
    }

    .syt-nav .syt-nav__cta {
        margin-left: 0;
        margin-top: 8px;
    }

    .syt-page-hero + .syt-section {
        margin-top: -40px;
    }
}

@media (max-width: 767px) {
    .syt-container {
        width: min(100% - 28px, 1240px);
    }

    .syt-brand__text small,
    .syt-utility-bar {
        display: none;
    }

    .syt-header {
        top: 0;
    }

    .syt-hero,
    .syt-section,
    .syt-page-hero {
        padding: 72px 0;
    }

    .syt-page-hero {
        padding-top: 96px;
    }

    .syt-hero h1 {
        font-size: 44px;
        line-height: 1.02;
    }

    .syt-hero__grid,
    .syt-split,
    .syt-detail__grid,
    .syt-article-hero {
        gap: 24px;
    }

    .syt-hero__panel,
    .syt-trust-panel,
    .syt-deliverables-panel,
    .syt-quality-band,
    .syt-cta,
    .syt-page-content__inner,
    .syt-form-card,
    .syt-article-hero,
    .syt-detail-panel,
    .syt-list-card,
    .syt-capability-card,
    .syt-industry-card {
        border-radius: 24px;
    }

    .syt-trust-panel,
    .syt-deliverables-panel,
    .syt-quality-band,
    .syt-cta,
    .syt-page-content__inner,
    .syt-form-card,
    .syt-article-hero,
    .syt-detail-panel {
        padding: 26px;
    }

    .syt-list-card,
    .syt-capability-card,
    .syt-industry-card {
        padding: 24px;
    }

    .syt-footer {
        padding-top: 62px;
    }
}

/* 2026-06-18 浅色工业风回调覆盖 */
body.syt-site {
    background:
        radial-gradient(circle at 12% 0%, rgba(249, 66, 58, 0.08), transparent 22rem),
        radial-gradient(circle at 100% 5%, rgba(16, 35, 61, 0.03), transparent 24rem),
        linear-gradient(180deg, #fbfcfe 0%, #f4f6f9 100%);
}

.syt-utility-bar {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(16, 35, 61, 0.08);
    background: rgba(255, 255, 255, 0.96);
    color: #6e7d8f;
}

.syt-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(16, 35, 61, 0.08);
    background: rgba(255, 255, 255, 0.94);
}

.syt-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 36px rgba(8, 26, 49, 0.08);
}

.syt-brand {
    gap: 0;
    align-items: center;
    flex: 0 0 auto;
}

.syt-brand__logo {
    width: clamp(112px, 9vw, 164px);
    height: auto;
    max-height: 56px;
    object-fit: contain;
}

.syt-nav a {
    white-space: nowrap;
    color: #556476;
}

.syt-header__inner {
    gap: 22px;
}

.syt-nav {
    flex: 1 1 auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 2px;
}

.syt-nav a {
    padding: 10px 11px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.syt-nav a.is-active,
.syt-nav a:hover {
    color: var(--syt-green-dark);
    border-color: rgba(16, 35, 61, 0.08);
    background: rgba(16, 35, 61, 0.04);
}

.syt-nav .syt-nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-left: 10px;
    padding: 0 18px;
    min-height: 48px;
    font-size: 12px;
    line-height: 1;
    text-align: center;
}

.syt-hero {
    color: var(--syt-green-dark);
    background:
        linear-gradient(135deg, #f8fafc 0%, #eef3f8 54%, #f9fbfd 100%);
}

.syt-hero:before {
    inset: auto auto -120px -90px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(249, 66, 58, 0.15) 0%, rgba(249, 66, 58, 0) 72%);
}

.syt-hero:after {
    background:
        linear-gradient(0deg, rgba(16, 35, 61, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 35, 61, 0.025) 1px, transparent 1px);
    opacity: 1;
}

.syt-kicker {
    color: var(--syt-accent-dark);
}

.syt-hero p,
.syt-page-hero p,
.syt-section--dark .syt-section__head p,
.syt-trust-panel p,
.syt-quality-band p,
.syt-cta p,
.syt-footer p {
    color: var(--syt-muted);
}

.syt-button--ghost {
    border: 1px solid rgba(16, 35, 61, 0.12);
    color: var(--syt-green-dark);
    background: rgba(255, 255, 255, 0.92);
}

.syt-button--ghost:hover {
    border-color: rgba(249, 66, 58, 0.18);
    color: var(--syt-accent-dark);
    background: #ffffff;
}

.syt-button--ghost-dark,
.syt-button--light {
    color: var(--syt-green-dark);
    background: #ffffff;
    border: 1px solid rgba(16, 35, 61, 0.08);
}

.syt-button--ghost-dark:hover,
.syt-button--light:hover {
    color: var(--syt-green-dark);
    background: #f5f8fb;
}

.syt-hero__meta span,
.syt-risk-grid span,
.syt-feature-pills span,
.syt-global span {
    border-color: rgba(16, 35, 61, 0.1);
    color: #536274;
    background: rgba(255, 255, 255, 0.94);
}

.syt-hero-note {
    background: rgba(255, 255, 255, 0.84);
}

.syt-hero-note strong {
    color: var(--syt-green-dark);
}

.syt-hero-note p {
    color: var(--syt-muted);
}

.syt-hero__panel {
    border-color: rgba(16, 35, 61, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.98));
    box-shadow: 0 28px 70px rgba(8, 26, 49, 0.08);
}

.syt-placeholder-fallback--blue,
.syt-placeholder-fallback--green,
.syt-placeholder-fallback--gray {
    color: #98a3b0;
    background: linear-gradient(135deg, #f3f5f8 0%, #eceff3 100%);
}

.syt-placeholder-fallback--gold {
    color: #98a3b0;
    background: linear-gradient(135deg, #f8f2ef 0%, #f2ebe8 100%);
}

.syt-section--muted {
    background: linear-gradient(180deg, #f6f8fb 0%, #f1f4f8 100%);
}

.syt-section--dark,
.syt-page-hero {
    color: var(--syt-green-dark);
    background:
        radial-gradient(circle at 85% 25%, rgba(249, 66, 58, 0.08), transparent 20rem),
        linear-gradient(135deg, #f8fafc 0%, #eef3f8 100%);
}

.syt-section--dark .syt-section__head h2,
.syt-page-hero h1 {
    color: var(--syt-green-dark);
}

.syt-breadcrumb a,
.syt-page-hero .syt-kicker {
    color: var(--syt-muted);
}

.syt-trust-panel,
.syt-quality-band {
    color: var(--syt-green-dark);
    border-color: rgba(16, 35, 61, 0.08);
    background:
        radial-gradient(circle at 0% 100%, rgba(249, 66, 58, 0.1), transparent 20rem),
        linear-gradient(135deg, #ffffff 0%, #f5f8fb 100%);
}

.syt-trust-panel h2,
.syt-quality-band h2,
.syt-cta h2 {
    color: var(--syt-green-dark);
}

.syt-cta {
    border-color: rgba(249, 66, 58, 0.14);
    background:
        radial-gradient(circle at 100% 0%, rgba(249, 66, 58, 0.08), transparent 22rem),
        linear-gradient(135deg, #fff7f6 0%, #ffe7e2 100%);
}

.syt-cta .syt-kicker {
    color: var(--syt-accent-dark);
}

.syt-footer {
    color: var(--syt-muted);
    background: linear-gradient(180deg, #f5f7fa 0%, #eef2f6 100%);
    border-top: 1px solid rgba(16, 35, 61, 0.08);
}

.syt-footer__logo {
    width: 148px;
    height: auto;
    object-fit: contain;
}

.syt-footer h3,
.syt-footer a {
    color: var(--syt-green-dark);
}

.syt-footer a:hover {
    color: var(--syt-accent-dark);
}

.syt-footer__bottom {
    border-top: 1px solid rgba(16, 35, 61, 0.08);
    color: #7a8695;
}

@media (max-width: 991px) {
    .syt-nav {
        border: 1px solid rgba(16, 35, 61, 0.08);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 24px 44px rgba(8, 26, 49, 0.08);
        flex-wrap: wrap;
    }

    .syt-header {
        top: 0;
    }
}

@media (max-width: 767px) {
    .syt-brand__logo {
        width: 132px;
        max-height: 52px;
    }

    .syt-header__inner {
        gap: 14px;
    }

    .syt-header {
        top: 0;
    }
}

/* 2026-06-18 圆角收紧试验（可回退）
 * 影响范围：
 * 1. 主要按钮：头部 CTA、通用按钮、右下角 Inquiry
 * 2. 容器面板：Hero 面板、卡片、详情面板、CTA、页脚卡片
 * 3. 图片与占位图：文章图、卡片图、占位图容器
 * 4. 表单与标签：输入框、胶囊标签、说明条
 * 如需撤回，优先移除本段覆盖即可。
 */
:root {
    --syt-radius: 16px;
}

.syt-button,
.syt-nav .syt-nav__cta,
.syt-float-inquiry,
.syt-footer__cta {
    border-radius: 14px;
}

.syt-hero__meta span,
.syt-risk-grid span,
.syt-feature-pills span,
.syt-global span,
.syt-service-entry-card__icon,
.syt-icon-badge {
    border-radius: 12px;
}

.syt-hero-note {
    border-radius: 0 12px 12px 0;
}

.syt-hero__panel,
.syt-trust-panel,
.syt-deliverables-panel,
.syt-quality-band,
.syt-cta,
.syt-page-content__inner,
.syt-form-card,
.syt-article-hero,
.syt-detail-panel,
.syt-list-card,
.syt-capability-card,
.syt-industry-card,
.syt-story-card,
.syt-signal-card,
.syt-empty,
.syt-spec-list div {
    border-radius: 16px;
}

.syt-hero-illustration,
.syt-card-illustration,
.syt-placeholder-media,
.syt-placeholder-media--article,
.syt-placeholder-media--aside,
.syt-placeholder-fallback {
    border-radius: 14px;
}

.syt-list-card--visual .syt-card-illustration,
.syt-placeholder-media--card,
.syt-placeholder-media--tile {
    border-radius: 14px 14px 10px 10px;
}

.syt-form-card .form-control,
.syt-form-card .form-control:focus,
.syt-form-card .selectpicker,
.syt-form-card .bootstrap-select .dropdown-toggle {
    border-radius: 10px;
}

@media (max-width: 767px) {
    .syt-hero__panel,
    .syt-trust-panel,
    .syt-deliverables-panel,
    .syt-quality-band,
    .syt-cta,
    .syt-page-content__inner,
    .syt-form-card,
    .syt-article-hero,
    .syt-detail-panel,
    .syt-list-card,
    .syt-capability-card,
    .syt-industry-card {
        border-radius: 14px;
    }
}

/* 2026-06-18 点击黑框清理
 * 仅移除鼠标点击时的默认黑色焦点框，避免 Logo 和按钮出现突兀描边。
 * 键盘 focus-visible 仍保留轻量提示，尽量兼顾可访问性。
 */
a:focus,
button:focus,
[role="button"]:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
[role="button"]:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
    box-shadow: none;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid rgba(249, 66, 58, 0.28);
    outline-offset: 2px;
}

/* 2026-06-18 首页首屏标题比例回调
 * 仅调整首页 Hero 标题和左右布局比例，避免首屏标题过大压缩整体留白。
 */
.syt-hero__grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.84fr);
    gap: 48px;
}

.syt-hero h1 {
    max-width: 760px;
    font-size: clamp(40px, 5.05vw, 47px);
    line-height: 1.01;
    white-space: pre-line;
}

@media (max-width: 1199px) {
    .syt-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
        gap: 40px;
    }

    .syt-hero h1 {
        max-width: 100%;
        font-size: clamp(38px, 4.7vw, 56px);
    }
}

/* 2026-06-18 首页首屏留白与移动端适配修正
 * 仅针对首页 Hero：
 * 1. 压缩顶部空白
 * 2. 优化桌面端首屏垂直起点
 * 3. 修正手机端按钮、标签、图卡、浮动按钮的叠放关系
 */
.syt-hero {
    padding-top: 72px;
    padding-bottom: 64px;
}

.syt-hero__grid {
    align-items: center;
}

.syt-hero__content {
    padding-top: 0;
}

.syt-hero__actions {
    align-items: center;
}

@media (max-width: 991px) {
    .syt-hero {
        padding-top: 56px;
        padding-bottom: 48px;
    }

    .syt-hero__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: start;
    }

    .syt-hero__content,
    .syt-hero__panel {
        width: 100%;
        max-width: none;
    }

    .syt-hero__content {
        order: 1;
    }

    .syt-hero__panel {
        order: 2;
    }

    .syt-hero h1 {
        max-width: 100%;
        font-size: clamp(34px, 7vw, 48px);
        line-height: 1.04;
    }

    .syt-hero p {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.68;
    }

    .syt-hero__actions {
        gap: 12px;
        margin: 24px 0 18px;
    }

    .syt-hero__actions .syt-button,
    .syt-hero__actions .syt-button--ghost {
        min-width: 0;
    }

    .syt-hero__meta {
        gap: 8px;
    }

    .syt-hero__meta span {
        width: auto;
        max-width: 100%;
    }

    .syt-hero__panel {
        padding: 18px;
    }
}

@media (max-width: 767px) {
    .syt-hero {
        padding-top: 32px;
        padding-bottom: 36px;
    }

    .syt-hero__grid {
        gap: 20px;
    }

    .syt-kicker {
        display: inline-flex;
        flex-wrap: wrap;
        row-gap: 6px;
        max-width: 180px;
    }

    .syt-hero h1 {
        max-width: 100%;
        font-size: clamp(30px, 9.4vw, 40px);
        line-height: 1.06;
        letter-spacing: -0.04em;
    }

    .syt-hero p {
        display: block;
        max-width: 100%;
        font-size: 15px;
        line-height: 1.7;
        word-break: break-word;
    }

    .syt-hero__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin: 22px 0 16px;
    }

    .syt-hero__actions .syt-button,
    .syt-hero__actions .syt-button--ghost {
        width: 100%;
        justify-content: center;
    }

    .syt-hero__meta {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .syt-hero__meta span {
        padding: 8px 10px;
        font-size: 11px;
        line-height: 1.4;
    }

    .syt-hero__panel {
        padding: 14px;
    }

    .syt-hero-illustration,
    .syt-card-illustration,
    .syt-placeholder-media--article,
    .syt-placeholder-media--aside {
        border-radius: 12px;
    }

    .syt-float-inquiry {
        display: none;
    }
}

/* 2026-06-18 首页首屏二次收口
 * 仅继续收口首页 Hero：
 * 1. 取消桌面端因左右高度不一致带来的顶部空白感
 * 2. 强化移动端内容列宽与上下堆叠，避免标题正文被压成窄列
 * 3. 继续保证修正只作用于首屏，不影响后续模块
 */
.syt-hero {
    padding-top: 52px;
    padding-bottom: 56px;
}

.syt-hero__grid {
    align-items: start;
}

.syt-hero__content,
.syt-hero__panel {
    width: 100%;
    min-width: 0;
    align-self: start;
}

@media (max-width: 991px) {
    .syt-hero {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .syt-hero__grid {
        gap: 24px;
    }

    .syt-hero h1 {
        font-size: clamp(32px, 6.8vw, 48px);
        line-height: 1.02;
    }

    .syt-hero p {
        max-width: 100%;
        line-height: 1.66;
    }

    .syt-hero__panel {
        padding: 16px;
    }

    .syt-float-inquiry {
        display: none;
    }
}

@media (max-width: 767px) {
    .syt-hero {
        padding-top: 18px;
        padding-bottom: 28px;
    }

    .syt-hero__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .syt-kicker {
        max-width: none;
    }

    .syt-hero__content,
    .syt-hero__content > *,
    .syt-hero__panel {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .syt-hero h1 {
        font-size: clamp(26px, 8.4vw, 36px);
        line-height: 1.04;
        letter-spacing: -0.03em;
    }

    .syt-hero p {
        font-size: 16px;
        line-height: 1.78;
        word-break: normal;
        overflow-wrap: break-word;
    }

    .syt-hero__actions,
    .syt-hero__meta {
        width: 100%;
    }

    .syt-hero__panel {
        margin-top: 2px;
        padding: 12px;
    }
}

/* 2026-06-22 Service Card Refresh */
.syt-service-card-grid {
    align-items: stretch;
}

.syt-service-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
}

.syt-service-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.syt-service-card--no-meta .syt-service-card__icon,
.syt-service-card--no-meta .syt-service-card__serial {
    display: none;
}

.syt-page-hero--workflow-tight {
    min-height: clamp(380px, 48vw, 560px);
    padding-top: 92px;
    padding-bottom: 66px;
}

.syt-page-hero--quality-tight {
    padding-top: 96px;
    padding-bottom: 72px;
}

.syt-article-hero--about-tight {
    gap: 28px;
    padding: 18px 20px;
}

.syt-article-hero--about-tight .syt-placeholder-media--article,
.syt-article-hero--about-tight .syt-asset-shell__image,
.syt-article-hero--about-tight .syt-placeholder-fallback {
    min-height: 300px;
}

.syt-article-hero--about-tight .syt-article-hero__content--about h1 {
    margin-top: 10px;
    margin-bottom: 14px;
}

.syt-service-card__icon.syt-icon-badge--image {
    width: 64px;
    height: 64px;
    padding: 0;
    border-radius: 18px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 24px rgba(26, 26, 26, 0.06);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.syt-service-card__glyph {
    display: block;
    width: 24px;
    height: 24px;
    background-color: #1a1a1a;
    transition: background-color 0.22s ease;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

.syt-service-card__glyph--product-development {
    -webkit-mask-image: url("../img/syt/icon_product_development.svg");
    mask-image: url("../img/syt/icon_product_development.svg");
}

.syt-service-card__glyph--supplier-development {
    -webkit-mask-image: url("../img/syt/icon_supplier_development.svg");
    mask-image: url("../img/syt/icon_supplier_development.svg");
}

.syt-service-card__glyph--manufacturing-coordination {
    -webkit-mask-image: url("../img/syt/icon_manufacturing_coordination.svg");
    mask-image: url("../img/syt/icon_manufacturing_coordination.svg");
}

.syt-service-card__glyph--quality-control {
    -webkit-mask-image: url("../img/syt/icon_quality_control.svg");
    mask-image: url("../img/syt/icon_quality_control.svg");
}

.syt-service-card__glyph--supply-chain {
    -webkit-mask-image: url("../img/syt/icon_supply_chain.svg");
    mask-image: url("../img/syt/icon_supply_chain.svg");
}

.syt-service-card__glyph--project-management {
    -webkit-mask-image: url("../img/syt/icon_project_management.svg");
    mask-image: url("../img/syt/icon_project_management.svg");
}

.syt-service-card:hover .syt-service-card__icon.syt-icon-badge--image,
.syt-service-card:focus-visible .syt-service-card__icon.syt-icon-badge--image {
    border-color: rgba(214, 106, 44, 0.28);
    box-shadow: 0 16px 28px rgba(214, 106, 44, 0.12);
}

.syt-service-card:hover .syt-service-card__glyph,
.syt-service-card:focus-visible .syt-service-card__glyph {
    background-color: var(--syt-accent-dark);
}

.syt-service-card__serial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(159, 63, 30, 0.14);
    background: rgba(255, 247, 233, 0.92);
    color: var(--syt-accent-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.syt-service-card h3 {
    margin: 0;
}

.syt-service-card__details {
    display: grid;
    gap: 14px;
}

.syt-service-card__details--compact {
    gap: 0;
}

.syt-service-card__item {
    padding-top: 14px;
    border-top: 1px solid rgba(20, 34, 31, 0.1);
}

.syt-service-card__item--compact {
    padding-top: 14px;
}

.syt-service-card__item--compact p {
    display: -webkit-box;
    margin-top: 0;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.7;
    min-height: calc(1.7em * 3);
}

.syt-service-card__item strong {
    display: block;
    color: var(--syt-accent-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.syt-service-card__item p {
    margin: 8px 0 0;
    color: var(--syt-muted);
    font-size: 14px;
    line-height: 1.72;
}

.syt-service-card__cta {
    margin-top: auto;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .syt-service-card__icon.syt-icon-badge--image {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 767px) {
    .syt-service-card {
        gap: 16px;
    }

    .syt-service-card__serial {
        min-width: 46px;
        padding: 7px 10px;
        font-size: 11px;
    }

    .syt-service-card__icon.syt-icon-badge--image {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }

.syt-service-card__item {
        padding-top: 12px;
    }
}

/* 2026-06-22 Customer document alignment */
:root {
    --syt-bg: #f7f7f5;
    --syt-paper: #ffffff;
    --syt-ink: #1a1a1a;
    --syt-muted: #5f6b76;
    --syt-line: #e5e5e5;
    --syt-accent: #f9423a;
    --syt-accent-dark: #cf2c23;
    --syt-green: #183046;
    --syt-green-dark: #12233d;
    --syt-shadow: 0 18px 36px rgba(18, 35, 61, 0.06);
}

body.syt-site,
.syt-nav,
.syt-hero p,
.syt-section__head p,
.syt-page-hero p,
.syt-richtext,
.syt-footer p,
.syt-button,
.syt-float-inquiry {
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

body.syt-site {
    background:
        radial-gradient(circle at 12% 0%, rgba(249, 66, 58, 0.06), transparent 22rem),
        linear-gradient(180deg, #fcfcfb 0%, #f5f6f7 100%);
    color: var(--syt-ink);
}

.syt-utility-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.syt-breadcrumb {
    gap: 0;
}

.syt-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.syt-breadcrumb a + a::before {
    content: "/";
    margin: 0 8px;
    color: #9aa3ad;
}

.syt-page-hero h1,
.syt-section h2,
.syt-service-card h3,
.syt-list-card h3,
.syt-nav a,
.syt-button,
.syt-float-inquiry {
    word-break: normal;
    overflow-wrap: anywhere;
}

.syt-capability-card,
.syt-industry-card,
.syt-list-card,
.syt-detail-panel,
.syt-trust-panel,
.syt-deliverables-panel,
.syt-quality-band,
.syt-cta,
.syt-page-content__inner,
.syt-form-card,
.syt-article-hero {
    border-color: var(--syt-line);
    box-shadow: 0 12px 28px rgba(18, 35, 61, 0.04);
}

.syt-capability-card:hover,
.syt-industry-card:hover,
.syt-list-card:hover {
    box-shadow: 0 16px 32px rgba(18, 35, 61, 0.08);
}

.syt-placeholder-fallback {
    background:
        linear-gradient(135deg, rgba(249, 66, 58, 0.08), rgba(18, 35, 61, 0.06)),
        linear-gradient(135deg, #f8f9fb 0%, #eef2f6 100%);
    color: transparent;
}

.syt-placeholder-fallback span {
    display: none;
}

.syt-form-card .form-control,
.syt-form-card .bootstrap-select .dropdown-toggle,
.syt-form-card .input-group-addon {
    border-color: var(--syt-line);
}

.syt-form-card .form-control::placeholder {
    color: #8b96a3;
}

.syt-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1fr);
    gap: 28px;
    align-items: start;
}

.syt-contact-panel {
    display: grid;
    gap: 18px;
}

.syt-contact-block {
    padding: 20px 22px;
    border: 1px solid var(--syt-line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
}

.syt-contact-block strong {
    display: block;
    margin-bottom: 10px;
    color: var(--syt-green-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.syt-contact-block p,
.syt-form-note {
    margin: 0 0 8px;
}

.syt-contact-inline-note {
    color: var(--syt-muted);
}

.syt-form-note {
    margin-top: 18px;
    color: var(--syt-muted);
    font-size: 14px;
    line-height: 1.7;
}

.syt-float-inquiry {
    min-width: 148px;
    padding: 0 18px;
    font-size: 11px;
    letter-spacing: 0.14em;
}

.syt-section--about-lead {
    padding-top: 0;
}

.syt-page-hero + .syt-section--about-lead {
    margin-top: -28px;
}

.syt-article-hero--about {
    display: flex;
    align-items: center;
    gap: 44px;
    padding: 26px 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.84);
}

.syt-article-hero--about > .syt-placeholder-media--article,
.syt-article-hero--about > .syt-article-hero__content--about {
    flex: 0 0 calc(50% - 22px);
    max-width: calc(50% - 22px);
}

.syt-article-hero--about .syt-placeholder-media--article {
    min-height: 360px;
    border-radius: 24px;
    overflow: hidden;
}

.syt-article-hero--about .syt-asset-shell__image,
.syt-article-hero--about .syt-placeholder-fallback {
    min-height: 360px;
}

.syt-article-hero__content--about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6px 8px 6px 0;
}

.syt-article-hero__content--about .syt-kicker {
    color: #627184;
}

.syt-article-hero__content--about .syt-kicker:before {
    background: #ef3f34;
}

.syt-article-hero__content--about h1 {
    margin: 18px 0 20px;
    color: #16294b;
    font-size: clamp(44px, 5vw, 66px);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.syt-article-hero__content--about p {
    max-width: 520px;
    margin: 0;
    color: #1f2b3d;
    font-size: clamp(16px, 1.65vw, 21px);
    line-height: 1.58;
}

.syt-section--quality-visual {
    padding-top: 8px;
    padding-bottom: 10px;
}

.syt-section--quality-visual .syt-container {
    max-width: 1240px;
}

.syt-article-hero--quality {
    display: block;
    padding: 8px;
    border-radius: 24px;
}

.syt-article-hero--quality .syt-placeholder-media--article {
    width: 100%;
    min-height: clamp(250px, 31vw, 390px);
    border-radius: 18px;
    overflow: hidden;
}

.syt-article-hero--quality .syt-asset-shell__image,
.syt-article-hero--quality .syt-placeholder-fallback {
    width: 100%;
    min-height: clamp(250px, 31vw, 390px);
    object-fit: cover;
}

.syt-page-hero--workflow {
    position: relative;
    min-height: clamp(460px, 58vw, 680px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 118px;
    padding-bottom: 92px;
    background: #07182d;
}

.syt-page-hero--workflow:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(7, 24, 45, 0.88) 0%, rgba(7, 24, 45, 0.62) 42%, rgba(7, 24, 45, 0.18) 100%),
        linear-gradient(180deg, rgba(7, 24, 45, 0.18), rgba(7, 24, 45, 0.36));
}

.syt-workflow-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.syt-workflow-hero-bg .syt-asset-shell__image,
.syt-workflow-hero-bg .syt-placeholder-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.syt-page-hero--workflow .syt-page-hero__content {
    position: relative;
    z-index: 2;
}

.syt-page-hero--workflow .syt-breadcrumb,
.syt-page-hero--workflow .syt-breadcrumb a,
.syt-page-hero--workflow .syt-kicker,
.syt-page-hero--workflow h1,
.syt-page-hero--workflow p {
    color: #ffffff !important;
}

.syt-page-hero--workflow .syt-breadcrumb,
.syt-page-hero--workflow p {
    color: rgba(255, 255, 255, 0.86) !important;
}

.syt-page-hero--workflow .syt-kicker {
    opacity: 0.94;
}

.syt-page-hero--workflow h1,
.syt-page-hero--workflow p {
    text-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.syt-page-hero--workflow + .syt-section {
    margin-top: 0;
}

.syt-page-hero--quality {
    padding-top: 72px;
    padding-bottom: 18px;
}

.syt-page-hero--quality + .syt-section--quality-visual {
    margin-top: -34px;
}

.syt-support-faq {
    min-height: 100vh;
    background: #f6f5ef;
}

.syt-support-faq__hero {
    padding: 54px 0 48px;
    background:
        linear-gradient(135deg, rgba(18, 35, 61, 0.96), rgba(239, 63, 52, 0.88)),
        radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.18), transparent 24rem);
}

.syt-support-faq__hero-inner {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(220px, 360px);
    gap: 34px;
    align-items: center;
}

.syt-support-faq__hero-copy {
    margin-bottom: 22px;
}

.syt-support-faq__hero-copy h1 {
    margin: 14px 0 12px;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 0.98;
}

.syt-support-faq__hero-copy p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.syt-support-faq__search {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 72px;
    padding: 0 24px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.18);
}

.syt-support-faq__search .fa {
    color: #8b96a5;
    font-size: 28px;
}

.syt-support-faq__search input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--syt-green-dark);
    background: transparent;
    font-size: 24px;
}

.syt-support-faq__brand {
    display: grid;
    gap: 10px;
    justify-items: end;
    color: #ffffff;
    text-align: right;
    font-weight: 800;
}

.syt-support-faq__brand:hover {
    color: #ffffff;
    opacity: 0.9;
}

.syt-support-faq__brand img {
    width: 150px;
    max-width: 100%;
    filter: brightness(0) invert(1);
}

.syt-support-faq__layout {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 62px;
    padding: 66px 0 96px;
}

.syt-support-faq__nav h1 {
    margin: 0 0 42px;
    color: #8f0715;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
}

.syt-support-faq__nav h2 {
    margin: 0 0 28px;
    color: #8f0715;
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.1;
}

.syt-support-faq__nav a {
    display: block;
    margin-bottom: 28px;
    color: #182236;
    font-size: 22px;
    font-weight: 800;
}

.syt-support-faq__nav a.is-active,
.syt-support-faq__nav a:hover {
    color: #8f0715;
}

.syt-support-faq__group {
    margin-bottom: 58px;
    scroll-margin-top: 110px;
}

.syt-support-faq__group h2 {
    margin: 0 0 20px;
    color: #8f0715;
    font-size: clamp(28px, 3vw, 38px);
}

.syt-support-faq__item {
    border-top: 1px solid rgba(18, 35, 61, 0.18);
}

.syt-support-faq__item:last-child {
    border-bottom: 1px solid rgba(18, 35, 61, 0.18);
}

.syt-support-faq__item summary {
    position: relative;
    display: block;
    padding: 24px 42px 24px 0;
    color: #182236;
    cursor: pointer;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}

.syt-support-faq__item summary::-webkit-details-marker {
    display: none;
}

.syt-support-faq__item summary:after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 22px;
    color: #8f0715;
    font-size: 28px;
    line-height: 1;
}

.syt-support-faq__item[open] summary:after {
    content: "-";
}

.syt-support-faq__item p {
    max-width: 780px;
    margin: 0;
    padding: 0 0 26px;
    color: #4e5968;
    font-size: 17px;
    line-height: 1.7;
}

.syt-support-faq__summary {
    display: block;
    margin-top: 10px;
    color: #5d6673;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
}

.syt-support-faq__answer {
    padding: 0 0 26px;
    color: #4e5968;
}

.syt-support-faq__answer p:last-child,
.syt-support-faq__answer ul:last-child,
.syt-support-faq__answer ol:last-child {
    margin-bottom: 0;
}

.syt-support-faq__empty {
    margin-top: 8px;
}

.syt-footer-support-link {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    font-weight: 800;
}

.syt-float-inquiry {
    min-width: 154px;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: linear-gradient(135deg, #ff6d5d 0%, #ef3f34 100%);
    box-shadow: 0 18px 42px rgba(239, 63, 52, 0.28), 0 0 0 0 rgba(255, 109, 93, 0.22);
    animation: sytFloatInquiryPulse 3.2s ease-in-out infinite;
}

.syt-float-inquiry:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ff7968 0%, #db342c 100%);
    box-shadow: 0 22px 48px rgba(239, 63, 52, 0.34), 0 0 0 10px rgba(255, 109, 93, 0.08);
}

@keyframes sytFloatInquiryPulse {
    0%,
    100% {
        box-shadow: 0 18px 42px rgba(239, 63, 52, 0.28), 0 0 0 0 rgba(255, 109, 93, 0.22);
    }
    50% {
        box-shadow: 0 22px 50px rgba(239, 63, 52, 0.34), 0 0 0 12px rgba(255, 109, 93, 0.06);
    }
}

@media (max-width: 991px) {
    .syt-contact-grid {
        grid-template-columns: 1fr;
    }

    .syt-section--quality-visual {
        padding-top: 4px;
    }

    .syt-page-hero--workflow {
        min-height: 520px;
        padding-top: 96px;
        padding-bottom: 72px;
    }

    .syt-page-hero--quality {
        padding-top: 74px;
        padding-bottom: 16px;
    }

    .syt-support-faq__hero-inner,
    .syt-support-faq__layout {
        grid-template-columns: 1fr;
    }

    .syt-support-faq__hero-inner {
        gap: 24px;
    }

    .syt-support-faq__brand {
        justify-items: start;
        text-align: left;
    }

    .syt-support-faq__layout {
        gap: 30px;
        padding: 46px 0 72px;
    }

    .syt-support-faq__nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .syt-support-faq__nav h1 {
        width: 100%;
        margin-bottom: 18px;
    }

    .syt-support-faq__nav a {
        margin: 0;
        padding: 10px 13px;
        border: 1px solid rgba(18, 35, 61, 0.12);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.72);
        font-size: 14px;
    }

    .syt-utility-bar__inner {
        justify-content: center;
        text-align: center;
    }

    .syt-section--about-lead {
        padding-top: 8px;
    }

    .syt-article-hero--about {
        gap: 26px;
        padding: 24px;
    }

    .syt-article-hero--about > .syt-placeholder-media--article,
    .syt-article-hero--about > .syt-article-hero__content--about {
        flex-basis: calc(50% - 13px);
        max-width: calc(50% - 13px);
    }

    .syt-article-hero--about .syt-placeholder-media--article,
    .syt-article-hero--about .syt-asset-shell__image,
    .syt-article-hero--about .syt-placeholder-fallback {
        min-height: 300px;
    }

    .syt-article-hero__content--about h1 {
        font-size: clamp(38px, 6vw, 54px);
    }

    .syt-article-hero__content--about p {
        font-size: 18px;
    }
}

/* 2026-06-22 客户文档剩余页面收口：How We Work / Quality & Manufacturing */
.syt-page-module {
    margin-top: 28px;
}

.syt-page-module__head {
    margin-bottom: 20px;
}

.syt-page-module__head h2 {
    margin: 14px 0 10px;
    color: var(--syt-green-dark);
    font-family: "Georgia", "Times New Roman", serif;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.08;
}

.syt-page-module__head p {
    max-width: 760px;
    margin: 0;
    color: var(--syt-muted);
}

.syt-section--dark .syt-kicker,
.syt-section--dark .syt-section__head h2,
.syt-section--dark .syt-section__head p,
.syt-section--dark .syt-industry-card h3,
.syt-section--dark .syt-industry-card p,
.syt-section--dark .syt-industry-card small {
    color: var(--syt-green-dark);
}

.syt-section--dark .syt-industry-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(16, 35, 61, 0.08);
}

.syt-section--dark .syt-industry-card small {
    border-top-color: rgba(16, 35, 61, 0.08);
}

.syt-connected-timeline {
    position: relative;
    display: grid;
    gap: 16px;
    padding: 12px 0 12px 22px;
}

.syt-connected-timeline:before {
    content: "";
    position: absolute;
    left: 11px;
    top: 18px;
    bottom: 18px;
    width: 2px;
    background: linear-gradient(180deg, rgba(214, 106, 44, 0.7), rgba(31, 79, 67, 0.18));
}

.syt-connected-timeline__item {
    position: relative;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.syt-connected-timeline__badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-top: 4px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--syt-accent), var(--syt-accent-dark));
    font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.syt-connected-timeline__body {
    padding: 18px 20px;
    border: 1px solid rgba(31, 79, 67, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--syt-shadow);
}

.syt-connected-timeline__body:before,
.syt-phase-card:before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-bottom: 14px;
    background-color: #1a1a1a;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

.syt-connected-timeline__item:nth-child(1) .syt-connected-timeline__body:before {
    -webkit-mask-image: url("../img/syt/icon_workflow_requirement_alignment.svg");
    mask-image: url("../img/syt/icon_workflow_requirement_alignment.svg");
}

.syt-connected-timeline__item:nth-child(2) .syt-connected-timeline__body:before {
    -webkit-mask-image: url("../img/syt/icon_workflow_supplier_fit.svg");
    mask-image: url("../img/syt/icon_workflow_supplier_fit.svg");
}

.syt-connected-timeline__item:nth-child(3) .syt-connected-timeline__body:before {
    -webkit-mask-image: url("../img/syt/icon_workflow_engineering_dfm.svg");
    mask-image: url("../img/syt/icon_workflow_engineering_dfm.svg");
}

.syt-connected-timeline__item:nth-child(4) .syt-connected-timeline__body:before {
    -webkit-mask-image: url("../img/syt/icon_workflow_sample_build.svg");
    mask-image: url("../img/syt/icon_workflow_sample_build.svg");
}

.syt-connected-timeline__item:nth-child(5) .syt-connected-timeline__body:before {
    -webkit-mask-image: url("../img/syt/icon_workflow_delivery_readiness.svg");
    mask-image: url("../img/syt/icon_workflow_delivery_readiness.svg");
}

.syt-connected-timeline__body strong {
    display: block;
    margin-bottom: 8px;
    color: var(--syt-green-dark);
    font-size: 16px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.syt-connected-timeline__body p,
.syt-deliverable-matrix__cell p,
.syt-transparency-note p,
.syt-partner-banner p,
.syt-phase-card p {
    margin: 0;
    color: var(--syt-muted);
}

.syt-connected-timeline--vertical {
    padding-left: 0;
}

.syt-connected-timeline--vertical:before {
    display: none;
}

.syt-transparency-note,
.syt-partner-banner {
    padding: 28px;
    border: 1px solid rgba(31, 79, 67, 0.12);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(214, 106, 44, 0.16), transparent 30%),
        rgba(255, 250, 240, 0.78);
    box-shadow: var(--syt-shadow);
}

.syt-transparency-note h2,
.syt-partner-banner h2 {
    margin: 14px 0 10px;
    color: var(--syt-green-dark);
    font-family: "Georgia", "Times New Roman", serif;
    font-size: clamp(26px, 3.5vw, 36px);
    line-height: 1.08;
}

.syt-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}

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

.syt-phase-grid--stacked {
    grid-template-columns: 1fr;
}

.syt-phase-grid--stacked .syt-phase-card {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.syt-phase-card {
    position: relative;
    padding: 22px;
    border: 1px solid rgba(31, 79, 67, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--syt-shadow);
}

.syt-phase-card:nth-child(1):before {
    -webkit-mask-image: url("../img/syt/icon_quality_pre_production.svg");
    mask-image: url("../img/syt/icon_quality_pre_production.svg");
}

.syt-phase-card:nth-child(2):before {
    -webkit-mask-image: url("../img/syt/icon_quality_in_process.svg");
    mask-image: url("../img/syt/icon_quality_in_process.svg");
}

.syt-phase-card:nth-child(3):before {
    -webkit-mask-image: url("../img/syt/icon_quality_final_release.svg");
    mask-image: url("../img/syt/icon_quality_final_release.svg");
}

.syt-phase-card__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--syt-accent-dark);
    background: rgba(214, 106, 44, 0.14);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.syt-phase-card h3 {
    margin: 16px 0 14px;
    color: var(--syt-green-dark);
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.14;
}

.syt-phase-card .syt-spec-list div {
    background: rgba(31, 79, 67, 0.045);
}

.syt-deliverable-matrix {
    display: grid;
    grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
    border: 1px solid rgba(31, 79, 67, 0.12);
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--syt-shadow);
}

.syt-deliverable-matrix__head,
.syt-deliverable-matrix__cell {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(31, 79, 67, 0.1);
}

.syt-deliverable-matrix__head {
    color: var(--syt-green-dark);
    background: rgba(31, 79, 67, 0.06);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.syt-deliverable-matrix__head:nth-child(2),
.syt-deliverable-matrix__cell:nth-child(2n) {
    border-left: 1px solid rgba(31, 79, 67, 0.1);
}

.syt-deliverable-matrix__cell strong {
    display: block;
    color: var(--syt-green-dark);
    font-size: 15px;
    line-height: 1.35;
}

.syt-page-module--stacked .syt-signal-grid {
    grid-template-columns: 1fr;
}

.syt-partner-banner {
    display: grid;
    gap: 18px;
}

.syt-partner-banner__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.syt-partner-banner__tags span {
    padding: 10px 14px;
    border: 1px solid rgba(31, 79, 67, 0.12);
    border-radius: 999px;
    color: var(--syt-green-dark);
    background: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

@media (max-width: 991px) {
    .syt-phase-grid,
    .syt-deliverable-matrix {
        grid-template-columns: 1fr;
    }

    .syt-deliverable-matrix__head:nth-child(2),
    .syt-deliverable-matrix__cell:nth-child(2n) {
        border-left: 0;
    }
}

@media (max-width: 767px) {
    .syt-connected-timeline {
        padding-left: 18px;
    }

    .syt-connected-timeline:before {
        left: 8px;
    }

    .syt-connected-timeline__item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .syt-connected-timeline__badge {
        width: 40px;
        height: 40px;
        margin-top: 0;
    }

    .syt-transparency-note,
    .syt-partner-banner,
    .syt-phase-card,
    .syt-connected-timeline__body {
        padding: 20px;
    }

    .syt-article-hero--about {
        display: block;
        padding: 18px;
    }

    .syt-article-hero--about > .syt-placeholder-media--article,
    .syt-article-hero--about > .syt-article-hero__content--about {
        max-width: 100%;
    }

    .syt-article-hero--about .syt-placeholder-media--article,
    .syt-article-hero--about .syt-asset-shell__image,
    .syt-article-hero--about .syt-placeholder-fallback {
        min-height: 240px;
    }

    .syt-article-hero__content--about {
        padding: 20px 4px 4px;
    }

    .syt-article-hero__content--about h1 {
        margin: 16px 0 14px;
        font-size: clamp(34px, 11vw, 46px);
    }

    .syt-article-hero__content--about p {
        font-size: 16px;
        line-height: 1.66;
    }
}

/* 2026-06-26 Quality visual and workflow hero acceptance tuning */
.syt-article-hero--quality .syt-placeholder-media--article {
    min-height: clamp(210px, 24vw, 300px);
}

.syt-article-hero--quality .syt-asset-shell__image,
.syt-article-hero--quality .syt-placeholder-fallback {
    min-height: clamp(210px, 24vw, 300px);
    max-height: 300px;
}

.syt-page-hero--workflow {
    border-bottom: 1px solid rgba(239, 63, 52, 0.22);
}

.syt-page-hero--workflow:before {
    background:
        linear-gradient(90deg, rgba(7, 24, 45, 0.82) 0%, rgba(7, 24, 45, 0.5) 42%, rgba(7, 24, 45, 0.08) 100%),
        linear-gradient(180deg, rgba(7, 24, 45, 0.1), rgba(7, 24, 45, 0.22));
}

.syt-page-hero--workflow h1,
.syt-page-hero--workflow p {
    text-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

@media (max-width: 767px) {
    .syt-article-hero--quality .syt-placeholder-media--article,
    .syt-article-hero--quality .syt-asset-shell__image,
    .syt-article-hero--quality .syt-placeholder-fallback {
        min-height: 220px;
        max-height: 260px;
    }

    .syt-page-hero--workflow:before {
        background:
            linear-gradient(90deg, rgba(7, 24, 45, 0.86) 0%, rgba(7, 24, 45, 0.64) 62%, rgba(7, 24, 45, 0.22) 100%),
            linear-gradient(180deg, rgba(7, 24, 45, 0.14), rgba(7, 24, 45, 0.28));
    }
}

/* 2026-06-30 0630 文档二次收口 */
.syt-page-hero--about-tight {
    padding-top: 44px;
    padding-bottom: 10px;
}

.syt-section--about-overlap {
    padding-top: 0;
}

.syt-section--about-overlap .syt-article-hero--about-tight {
    gap: 20px;
    padding: 14px 16px;
}

.syt-section--about-overlap .syt-article-hero--about-tight .syt-placeholder-media--article,
.syt-section--about-overlap .syt-article-hero--about-tight .syt-asset-shell__image,
.syt-section--about-overlap .syt-article-hero--about-tight .syt-placeholder-fallback {
    min-height: 260px;
}

.syt-section--about-overlap .syt-article-hero__content--about {
    padding-top: 0;
}

.syt-section--about-overlap .syt-article-hero__content--about h1 {
    margin-top: 6px;
    margin-bottom: 12px;
}

.syt-page-content__inner .syt-story-grid--stacked,
.syt-page-content__inner .syt-page-module--stacked .syt-signal-grid {
    grid-template-columns: 1fr;
}

.syt-page-content__inner .syt-story-card,
.syt-page-content__inner .syt-signal-card {
    min-height: auto;
}

.syt-page-content__inner .syt-page-module--stacked + .syt-page-module--stacked {
    margin-top: 26px;
}

.syt-section .syt-split {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.syt-process-showcase {
    display: none;
}

.syt-timeline {
    gap: 16px;
}

.syt-timeline div {
    min-height: 136px;
    padding-top: 18px;
    padding-bottom: 18px;
}

.syt-timeline span {
    top: 50%;
    transform: translateY(-50%);
}

.syt-page-hero--workflow-tight {
    min-height: clamp(360px, 42vw, 520px);
    padding-top: 86px;
    padding-bottom: 54px;
}

.syt-connected-timeline__item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
}

.syt-connected-timeline__badge {
    align-self: center;
    margin-top: 0;
}

.syt-connected-timeline__body:before,
.syt-phase-card:before {
    display: none;
}

.syt-page-hero--quality-tight {
    padding-top: 82px;
    padding-bottom: 44px;
}

.syt-phase-card__label {
    min-width: 0;
    padding: 0;
    border-radius: 0;
    color: var(--syt-accent-dark);
    background: transparent;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.syt-phase-grid--stacked .syt-phase-card {
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    align-items: center;
}

@media (max-width: 991px) {
    .syt-section .syt-split {
        grid-template-columns: 1fr;
    }

    .syt-page-hero--about-tight {
        padding-top: 34px;
    }

    .syt-connected-timeline__item,
    .syt-phase-grid--stacked .syt-phase-card {
        grid-template-columns: 1fr;
    }
}

/* 2026-06-30 0630-1 文档问题收尾 */
.syt-split--workflow-home {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
}

.syt-section__head h2 {
    overflow-wrap: anywhere;
}

.syt-section--why-syt .syt-section__head {
    max-width: 1080px;
}

.syt-section--why-syt .syt-section__head h2 {
    max-width: 1060px;
    overflow-wrap: normal;
    word-break: normal;
}

.syt-section--about-overlap .syt-article-hero__content--about p {
    color: var(--syt-green-dark);
    font-family: "Georgia", "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.025em;
    max-width: 16ch;
}

.syt-section--about-overlap .syt-article-hero__content--about p {
    margin-top: 14px;
}

.syt-section--about-overlap .syt-article-hero--about-full {
    display: block;
    padding: 0;
    overflow: hidden;
    border-radius: 34px;
}

.syt-section--about-overlap .syt-article-hero--about-full > .syt-placeholder-media--article {
    max-width: none;
    width: 100%;
    border-radius: 34px 34px 0 0 !important;
}

.syt-section--about-overlap .syt-article-hero--about-full .syt-placeholder-media--article,
.syt-section--about-overlap .syt-article-hero--about-full .syt-asset-shell__image,
.syt-section--about-overlap .syt-article-hero--about-full .syt-placeholder-fallback {
    min-height: clamp(360px, 42vw, 620px);
    max-height: none;
    border-radius: 34px 34px 0 0 !important;
}

.syt-section--about-overlap .syt-article-hero--about-full .syt-article-hero__content--about {
    max-width: none;
    padding: 16px 28px 18px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0 0 34px 34px;
}

.syt-section--about-overlap .syt-article-hero--about-full .syt-article-hero__content--about p {
    max-width: 36ch;
    margin: 0 auto;
    font-size: clamp(26px, 2.8vw, 40px);
    line-height: 1.08;
}

.syt-page-hero--service-lead > .syt-container > p,
.syt-page-hero--contact-lead > .syt-container > p,
.syt-page-hero--lead-title > .syt-container > p,
.syt-page-hero--lead-title .syt-page-hero__content > p {
    color: var(--syt-green-dark);
    font-family: "Georgia", "Times New Roman", serif;
    font-size: clamp(34px, 4.2vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.syt-page-hero--service-lead,
.syt-page-hero--contact-lead {
    padding-top: 70px;
    padding-bottom: 62px;
}

.syt-page-hero--service-visual {
    padding-top: 42px;
    padding-bottom: 50px;
}

.syt-service-hero-grid {
    display: grid;
    grid-template-columns: minmax(540px, 0.88fr) minmax(0, 1.12fr);
    gap: 44px;
    align-items: center;
}

.syt-service-hero-copy {
    min-width: 0;
}

.syt-page-hero--service-lead > .syt-container > p {
    max-width: 1000px;
    font-size: clamp(30px, 3.1vw, 44px);
    line-height: 1.12;
}

.syt-service-hero-message {
    font-weight: 800;
    letter-spacing: -0.025em;
    max-width: none;
    margin: 0;
}

.syt-page-hero--service-visual .syt-service-hero-message {
    color: var(--syt-green-dark) !important;
    font-family: "Georgia", "Times New Roman", serif !important;
}

.syt-service-hero-message span {
    display: block;
    white-space: nowrap;
}

.syt-service-hero-message__intro,
.syt-service-hero-message__outro {
    font-size: clamp(11px, 0.82vw, 12px);
    line-height: 1.42;
    letter-spacing: -0.035em;
}

.syt-service-hero-message__focus {
    font-size: clamp(18px, 1.28vw, 20px);
    line-height: 1.48;
    letter-spacing: -0.02em;
}

.syt-service-hero-message__intro {
    margin-bottom: 4px;
}

.syt-service-hero-message__outro {
    margin-top: 4px;
}

.syt-service-hero-media {
    min-height: clamp(330px, 32vw, 500px);
    overflow: hidden;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(239, 63, 52, 0.12), transparent 34%),
        rgba(255, 255, 255, 0.82);
    box-shadow: var(--syt-shadow);
}

.syt-service-hero-media .syt-asset-shell__image,
.syt-service-hero-media .syt-placeholder-fallback {
    width: 100%;
    min-height: clamp(330px, 32vw, 500px);
    height: 100%;
    object-fit: cover;
}

.syt-page-hero--contact-lead > .syt-container > p {
    max-width: 980px;
    font-size: clamp(30px, 3.1vw, 44px);
    line-height: 1.12;
}

.syt-page-hero--workflow.syt-page-hero--lead-title .syt-page-hero__content > p {
    color: #fff !important;
    max-width: 1040px;
}

.syt-page-hero--quality.syt-page-hero--lead-title > .syt-container > p {
    max-width: 960px;
}

.syt-section--quality-visual {
    display: none;
}

.syt-section--about-content .syt-about-grid--company {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.syt-section--industry-index {
    padding-top: 64px;
}

.syt-section__head--industry-index {
    max-width: 980px;
    margin-bottom: 26px;
}

.syt-section__head--industry-index p {
    max-width: 940px;
    margin-bottom: 12px;
    color: var(--syt-muted);
}

.syt-section__head--industry-index h2 {
    max-width: 980px;
    margin-top: 22px;
    margin-bottom: 0;
}

.syt-section--about-content .syt-about-grid--supplier {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 12px;
}

.syt-section--about-content .syt-about-grid--selected {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 12px;
}

.syt-page-hero + .syt-section .syt-page-content__inner .syt-page-module--stacked + .syt-page-module--stacked {
    margin-top: 22px;
}

.syt-page-content__inner .syt-page-module--stacked .syt-signal-card,
.syt-page-content__inner .syt-story-card {
    min-height: 100%;
}

.syt-section--about-content .syt-about-grid--supplier .syt-signal-card,
.syt-section--about-content .syt-about-grid--selected .syt-signal-card {
    padding: 18px 16px;
}

.syt-section--about-content .syt-about-grid--supplier .syt-signal-card strong,
.syt-section--about-content .syt-about-grid--selected .syt-signal-card strong {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 1.55;
    letter-spacing: 0.05em;
}

.syt-connected-timeline--vertical + .syt-page-module--milestones .syt-signal-grid,
.syt-page-module--milestones .syt-signal-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.syt-page-module--workflow .syt-connected-timeline--vertical {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
}

.syt-page-module--workflow .syt-connected-timeline__item {
    display: block;
}

.syt-page-module--workflow .syt-connected-timeline__body {
    min-height: 100%;
    padding: 20px 18px;
}

.syt-page-module--workflow .syt-connected-timeline__body strong {
    min-height: 2.8em;
}

.syt-phase-grid--stacked .syt-phase-card {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
    min-height: 0;
    padding: 24px 28px;
}

.syt-phase-grid--stacked .syt-phase-card > .syt-phase-card__label {
    align-self: center;
    justify-self: start;
    letter-spacing: 0;
    line-height: 1.35;
}

.syt-phase-grid--stacked .syt-phase-card h3 {
    display: none;
}

.syt-phase-grid--stacked .syt-phase-card .syt-spec-list {
    display: grid;
    grid-column: span 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 0;
}

.syt-phase-grid--stacked .syt-phase-card .syt-spec-list div {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
}

.syt-deliverable-matrix__cell:nth-child(2n + 1) {
    display: flex;
    align-items: center;
}

.syt-service-entry-card__icon,
.syt-icon-badge--index {
    display: none !important;
}

.syt-quality-band {
    grid-template-columns: 1fr auto;
}

.syt-quality-band__visual {
    display: none;
}

.syt-nav a.is-active,
.syt-nav a:hover,
.syt-nav a:focus-visible {
    color: #fff;
    background: #0f1720;
}

a[href*="linkedin.com"],
.icon-linkedin,
[class*="linkedin"] {
    display: none !important;
}

.syt-contact-inline-note,
option[value="linkedin"] {
    display: none !important;
}

@media (max-width: 991px) {
    .syt-split--workflow-home,
    .syt-section--about-content .syt-about-grid--company,
    .syt-section--about-content .syt-about-grid--supplier,
    .syt-section--about-content .syt-about-grid--selected,
    .syt-service-hero-grid,
    .syt-page-module--milestones .syt-signal-grid,
    .syt-page-module--workflow .syt-connected-timeline--vertical,
    .syt-phase-grid--stacked .syt-phase-card {
        grid-template-columns: 1fr;
    }

    .syt-phase-grid--stacked .syt-phase-card .syt-spec-list {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .syt-section--about-overlap .syt-article-hero__content--about p,
    .syt-page-hero--service-lead > .syt-container > p,
    .syt-page-hero--contact-lead > .syt-container > p,
    .syt-page-hero--lead-title > .syt-container > p,
    .syt-page-hero--lead-title .syt-page-hero__content > p {
        max-width: none;
        font-size: clamp(30px, 10vw, 44px);
    }

    .syt-page-hero--service-lead > .syt-container > p,
    .syt-page-hero--contact-lead > .syt-container > p {
        font-size: clamp(26px, 8vw, 36px);
    }
}

/* 2026-07-01 7-1 document issue fixes */
.syt-section {
    padding-top: 58px;
    padding-bottom: 58px;
}

.syt-section--cta {
    padding-top: 26px;
    padding-bottom: 48px;
}

.syt-page-hero + .syt-section,
.syt-section--about-lead,
.syt-section--industry-index {
    padding-top: 38px;
}

.syt-section--about-lead {
    padding-bottom: 26px;
}

.syt-section--about-content {
    padding-top: 30px;
}

.syt-section__head {
    margin-bottom: 24px;
}

.syt-section--about-overlap > .syt-container {
    width: min(100% - 56px, 1480px);
    max-width: none;
}

.syt-section--about-overlap .syt-article-hero--about-full {
    border-radius: 26px;
}

.syt-section--about-overlap .syt-article-hero--about-full > .syt-placeholder-media--article,
.syt-section--about-overlap .syt-article-hero--about-full .syt-placeholder-media--article,
.syt-section--about-overlap .syt-article-hero--about-full .syt-asset-shell__image,
.syt-section--about-overlap .syt-article-hero--about-full .syt-placeholder-fallback {
    min-height: clamp(220px, 24vw, 340px);
    border-radius: 26px 26px 0 0 !important;
}

.syt-section--about-overlap .syt-article-hero--about-full .syt-article-hero__content--about {
    padding: 12px 24px 14px;
    border-radius: 0 0 26px 26px;
}

.syt-section--about-overlap .syt-article-hero--about-full .syt-article-hero__content--about p {
    max-width: 48ch;
    font-size: clamp(20px, 2.05vw, 30px);
    line-height: 1.08;
}

.syt-page-hero--service-visual {
    padding-top: 30px;
    padding-bottom: 38px;
}

.syt-service-hero-grid {
    grid-template-columns: minmax(350px, 0.94fr) minmax(0, 1.86fr);
    gap: clamp(28px, 4vw, 54px);
    align-items: center;
}

.syt-service-hero-message__intro,
.syt-service-hero-message__outro {
    font-size: clamp(14px, 1.05vw, 17px);
    line-height: 1.42;
    letter-spacing: -0.025em;
}

.syt-service-hero-message__focus {
    font-size: clamp(21px, 1.48vw, 24px);
    line-height: 1.38;
}

.syt-service-hero-message .syt-service-hero-message__outro {
    max-width: 23em;
    font-size: clamp(12px, 0.92vw, 14px);
    white-space: normal;
}

.syt-service-hero-message .syt-service-hero-message__outro span {
    white-space: normal;
}

.syt-service-hero-media,
.syt-service-hero-media .syt-asset-shell__image,
.syt-service-hero-media .syt-placeholder-fallback {
    min-height: clamp(240px, 21vw, 340px);
}

.syt-section__head--industry-index {
    max-width: 1240px;
    margin-bottom: 22px;
}

.syt-section__head--industry-index .syt-industry-index-title {
    max-width: 1240px;
    margin-top: 18px;
    font-size: clamp(36px, 3.75vw, 52px);
    line-height: 0.98;
}

.syt-industry-index-title span {
    display: block;
}

.syt-industry-index-title span + span {
    padding-left: clamp(34px, 4vw, 64px);
}

.syt-section--industry-index .syt-card-grid--three {
    align-items: start;
    gap: 22px;
}

.syt-section--industry-index .syt-industry-card:nth-child(3) {
    margin-top: 34px;
}

.syt-phase-grid--stacked .syt-phase-card {
    grid-template-columns: minmax(112px, 0.34fr) minmax(0, 0.92fr) minmax(0, 1.74fr);
    gap: 16px;
    padding: 22px 22px;
}

.syt-phase-grid--stacked .syt-phase-card > .syt-phase-card__label {
    max-width: 11em;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    font-size: 14px;
}

.syt-phase-grid--stacked .syt-phase-card .syt-spec-list {
    grid-column: span 2;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 16px;
}

@media (max-width: 991px) {
    .syt-section {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .syt-section--about-overlap > .syt-container {
        width: min(100% - 28px, 1480px);
    }

    .syt-service-hero-grid,
    .syt-phase-grid--stacked .syt-phase-card,
    .syt-phase-grid--stacked .syt-phase-card .syt-spec-list {
        grid-template-columns: 1fr;
    }

    .syt-service-hero-message span {
        white-space: normal;
    }

    .syt-industry-index-title {
        font-size: clamp(34px, 10vw, 54px);
    }

    .syt-industry-index-title span + span {
        padding-left: 0;
    }

    .syt-section--industry-index .syt-industry-card:nth-child(3) {
        margin-top: 0;
    }
}

/* 2026-07-01 page detail second pass */
.syt-section--about-overlap > .syt-container {
    width: min(100% - 16px, 1880px);
}

.syt-section--about-overlap .syt-article-hero--about-full > .syt-placeholder-media--article,
.syt-section--about-overlap .syt-article-hero--about-full .syt-placeholder-media--article,
.syt-section--about-overlap .syt-article-hero--about-full .syt-asset-shell__image,
.syt-section--about-overlap .syt-article-hero--about-full .syt-placeholder-fallback {
    height: clamp(240px, 24vw, 420px);
    min-height: 0;
    max-height: 420px;
    object-fit: cover;
}

.syt-service-hero-media,
.syt-service-hero-media .syt-asset-shell__image,
.syt-service-hero-media .syt-placeholder-fallback {
    height: clamp(238px, 19vw, 300px);
    min-height: 0;
    max-height: 300px;
    object-fit: cover;
}

.syt-phase-grid--stacked .syt-phase-card {
    grid-template-columns: minmax(112px, 0.34fr) minmax(0, 1fr) minmax(0, 1fr);
}

.syt-phase-grid--stacked .syt-phase-card .syt-spec-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.syt-contact-panel .syt-story-grid .syt-story-card p,
.syt-contact-panel .syt-signal-grid .syt-signal-card p {
    color: #737373;
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.65;
    font-weight: 400;
}

@media (max-width: 991px) {
    .syt-section--about-overlap > .syt-container {
        width: min(100% - 16px, 1880px);
    }

    .syt-section--about-overlap .syt-article-hero--about-full > .syt-placeholder-media--article,
    .syt-section--about-overlap .syt-article-hero--about-full .syt-placeholder-media--article,
    .syt-section--about-overlap .syt-article-hero--about-full .syt-asset-shell__image,
    .syt-section--about-overlap .syt-article-hero--about-full .syt-placeholder-fallback,
    .syt-service-hero-media,
    .syt-service-hero-media .syt-asset-shell__image,
    .syt-service-hero-media .syt-placeholder-fallback {
        height: auto;
        min-height: 220px;
        max-height: none;
    }
}

/* 2026-07-01 full-width hero preview adjustments */
.syt-page-hero--about-tight {
    display: none;
}

.syt-section--about-overlap {
    padding-top: 0;
}

.syt-section--about-overlap > .syt-container {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 0;
    padding-right: 0;
}

.syt-section--about-overlap .syt-article-hero--about-full {
    border-radius: 0;
    box-shadow: none;
}

.syt-section--about-overlap .syt-article-hero--about-full > .syt-placeholder-media--article,
.syt-section--about-overlap .syt-article-hero--about-full .syt-placeholder-media--article {
    width: 100%;
    border-radius: 0 !important;
    background: #ffffff;
}

.syt-section--about-overlap .syt-article-hero--about-full > .syt-placeholder-media--article,
.syt-section--about-overlap .syt-article-hero--about-full .syt-placeholder-media--article,
.syt-section--about-overlap .syt-article-hero--about-full .syt-asset-shell__image,
.syt-section--about-overlap .syt-article-hero--about-full .syt-placeholder-fallback {
    height: clamp(360px, 31vw, 560px);
    min-height: 0;
    max-height: none;
    border-radius: 0 !important;
    object-fit: contain;
}

.syt-section--about-overlap .syt-article-hero--about-full .syt-article-hero__content--about {
    border-radius: 0;
}

.syt-page-hero--workflow {
    min-height: 0;
    aspect-ratio: 1798 / 737;
    display: block;
    padding: 0;
    background: #ffffff;
    border-bottom: 0;
}

.syt-page-hero--workflow:before {
    display: none;
}

.syt-page-hero--workflow .syt-page-hero__content {
    display: none;
}

.syt-workflow-hero-bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
}

.syt-workflow-hero-bg .syt-asset-shell__image,
.syt-workflow-hero-bg .syt-placeholder-fallback {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 991px) {
    .syt-section--about-overlap > .syt-container {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-left: 0;
        padding-right: 0;
    }

    .syt-section--about-overlap .syt-article-hero--about-full > .syt-placeholder-media--article,
    .syt-section--about-overlap .syt-article-hero--about-full .syt-placeholder-media--article,
    .syt-section--about-overlap .syt-article-hero--about-full .syt-asset-shell__image,
    .syt-section--about-overlap .syt-article-hero--about-full .syt-placeholder-fallback {
        height: auto;
        min-height: 260px;
        max-height: none;
        object-fit: contain;
    }

    .syt-page-hero--workflow {
        aspect-ratio: 1798 / 737;
    }
}

/* 2026-07-01 1920x600 hero image ratio adjustment */
.syt-section--about-overlap .syt-article-hero--about-full > .syt-placeholder-media--article,
.syt-section--about-overlap .syt-article-hero--about-full .syt-placeholder-media--article {
    aspect-ratio: 1920 / 600;
    height: auto;
    min-height: 0;
    max-height: none;
}

.syt-section--about-overlap .syt-article-hero--about-full .syt-asset-shell__image {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
}

.syt-section--about-overlap .syt-article-hero--about-full .syt-placeholder-fallback {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 1920 / 600;
    object-fit: contain;
}

.syt-page-hero--workflow {
    aspect-ratio: auto;
    height: auto;
    min-height: 0;
}

.syt-workflow-hero-bg {
    height: auto;
}

.syt-workflow-hero-bg .syt-asset-shell__image {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
}

.syt-workflow-hero-bg .syt-placeholder-fallback {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 1920 / 600;
    object-fit: contain;
}

@media (max-width: 991px) {
    .syt-section--about-overlap .syt-article-hero--about-full > .syt-placeholder-media--article,
    .syt-section--about-overlap .syt-article-hero--about-full .syt-placeholder-media--article,
    .syt-section--about-overlap .syt-article-hero--about-full .syt-placeholder-fallback {
        aspect-ratio: 1920 / 600;
        height: auto;
        min-height: 0;
    }

    .syt-page-hero--workflow {
        aspect-ratio: auto;
        height: auto;
        min-height: 0;
    }
}

/* 2026-07-01 about duplicate title cleanup */
.syt-section--about-overlap .syt-article-hero--about-full .syt-article-hero__content--about {
    display: none;
}

@media (min-width: 992px) {
    .syt-section--about-content .syt-richtext > .syt-page-module__head:first-of-type h2 {
        width: 100%;
        max-width: none;
        white-space: nowrap;
        font-size: clamp(30px, 2.15vw, 40px);
    }
}

/* 2026-07-01 service entry moved to services page */
.syt-section--service-entry-moved {
    padding-top: 36px;
    padding-bottom: 54px;
}

.syt-section--service-entry-moved .syt-section__head {
    max-width: 1120px;
    margin-bottom: 26px;
}

.syt-section--service-entry-moved .syt-section__head h2 {
    max-width: none;
}

.syt-section--service-entry-moved .syt-section__head p {
    max-width: 860px;
}

.syt-section--service-entry-moved .syt-service-entry-grid {
    gap: 30px;
}

.syt-section--service-entry-moved .syt-service-entry-card {
    display: block;
    min-height: 190px;
    padding: 30px 34px;
}

.syt-section--service-entry-moved .syt-service-entry-card strong {
    margin-bottom: 12px;
    font-size: clamp(26px, 2.1vw, 34px);
    line-height: 1.05;
    white-space: nowrap;
}

.syt-section--service-entry-moved .syt-service-entry-card p {
    max-width: 31ch;
    font-size: 15px;
    line-height: 1.55;
}

@media (min-width: 992px) {
    .syt-section--service-entry-moved .syt-section__head h2 {
        white-space: nowrap;
        font-size: clamp(34px, 3.05vw, 56px);
        line-height: 1.08;
    }

    .syt-section--service-entry-moved .syt-service-entry-card:nth-child(2) {
        order: 3;
    }

    .syt-section--service-entry-moved .syt-service-entry-card:nth-child(3) {
        order: 2;
    }
}

@media (max-width: 991px) {
    .syt-section--service-entry-moved .syt-service-entry-card strong {
        white-space: normal;
    }
}

/* 2026-07-01 why syt moved to about page */
.syt-section--about-why-syt {
    padding-top: 48px;
    padding-bottom: 58px;
}

.syt-section--about-content + .syt-section--about-why-syt {
    margin-top: 0;
}

/* 2026-07-01 home hero copy and service detail sidebar tuning */
.syt-hero-note p + p {
    margin-top: 8px;
}

.syt-detail__grid > aside.syt-detail-panel {
    align-self: start;
    padding: 24px;
}

.syt-detail__grid > aside.syt-detail-panel h2 {
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 1.12;
}

.syt-detail__grid > aside.syt-detail-panel .syt-spec-list {
    gap: 9px;
}

.syt-detail__grid > aside.syt-detail-panel .syt-spec-list div {
    padding: 11px 13px;
    border-radius: 15px;
}

.syt-detail__grid > aside.syt-detail-panel .syt-spec-list strong {
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 1.28;
}

.syt-detail__grid > aside.syt-detail-panel .syt-spec-list p {
    font-size: 12px;
    line-height: 1.48;
}

.syt-detail__grid > aside.syt-detail-panel .syt-placeholder-media--aside {
    min-height: 118px;
    max-height: 128px;
    margin-top: 10px;
}

/* 2026-07-01 71-1 final copy and line tuning */
.syt-section--about-content .syt-about-grid--supplier .syt-signal-card:before {
    height: 1px;
}

.syt-section--about-content .syt-about-grid--selected .syt-signal-card:before {
    inset: auto auto 0 0;
    height: 1px;
}

.syt-page-hero--service-visual .syt-service-hero-message__focus,
.syt-page-hero--service-visual .syt-service-hero-message__outro {
    max-width: 34em;
    white-space: normal;
}

.syt-page-hero--service-visual .syt-service-hero-message__intro {
    color: var(--syt-accent);
    font-family: "SytEuclid", "SytBody", "Segoe UI", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.syt-page-hero--service-visual .syt-service-hero-message__focus {
    font-size: clamp(28px, 2.7vw, 44px);
    line-height: 1.08;
}

.syt-page-hero--service-visual .syt-service-hero-message__outro {
    margin-top: 14px;
    color: var(--syt-muted);
    font-family: "SytBody", "Segoe UI", "Helvetica Neue", sans-serif;
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.58;
}

@media (min-width: 992px) {
    .syt-service-card h3 {
        white-space: nowrap;
    }
}

/* 2026-07-01 footer, services menu, service hero and industries final fixes */
.syt-nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.syt-nav-dropdown > a {
    display: inline-flex;
    align-items: center;
}

.syt-nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    z-index: 1100;
    display: grid;
    width: 280px;
    padding: 10px;
    border: 1px solid rgba(15, 23, 32, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 48px rgba(15, 23, 32, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.syt-nav-dropdown__menu:before {
    content: "";
    position: absolute;
    inset: -14px 0 auto;
    height: 14px;
}

.syt-nav-dropdown:hover .syt-nav-dropdown__menu,
.syt-nav-dropdown:focus-within .syt-nav-dropdown__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.syt-nav .syt-nav-dropdown__menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: #425064;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    white-space: normal;
}

.syt-nav .syt-nav-dropdown__menu a:hover,
.syt-nav .syt-nav-dropdown__menu a:focus-visible {
    color: #0f1720;
    background: rgba(239, 63, 52, 0.08);
}

.syt-page-hero--service-visual {
    padding-top: 24px;
    padding-bottom: 34px;
}

.syt-page-hero--service-visual .syt-service-hero-grid {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(28px, 4vw, 58px);
    align-items: end;
}

.syt-service-hero-copy {
    align-self: end;
    padding-bottom: 8px;
}

.syt-service-hero-copy .syt-breadcrumb {
    margin-bottom: 22px;
}

.syt-service-hero-summary {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.syt-service-hero-summary p {
    max-width: 34em;
    margin: 0;
    color: var(--syt-muted);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.62;
}

.syt-service-hero-visual-stack {
    min-width: 0;
}

.syt-service-hero-title {
    max-width: 880px;
    margin: 0 0 18px;
    color: var(--syt-green-dark);
    font-family: "SytEuclid", "SytBody", "Segoe UI", sans-serif;
    font-size: clamp(34px, 4.1vw, 66px);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.03;
}

.syt-page-hero--service-visual .syt-service-hero-media {
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(15, 23, 32, 0.12);
}

.syt-page-hero--service-visual .syt-service-hero-media,
.syt-page-hero--service-visual .syt-service-hero-media .syt-asset-shell__image,
.syt-page-hero--service-visual .syt-service-hero-media .syt-placeholder-fallback {
    height: clamp(250px, 24vw, 360px);
    min-height: 0;
    max-height: 360px;
}

.syt-page-hero--service-detail {
    padding-top: 40px;
    padding-bottom: 38px;
}

.syt-page-hero--service-detail > .syt-container {
    max-width: 980px;
}

.syt-page-hero--service-detail h1 {
    max-width: 860px;
    margin-top: 14px;
    margin-bottom: 14px;
    font-size: clamp(38px, 4.2vw, 64px);
    line-height: 1.02;
}

.syt-page-hero--service-detail p {
    max-width: 760px;
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.58;
}

.syt-page-hero--service-detail + .syt-detail {
    padding-top: 36px;
}

.syt-section__head--industry-index {
    max-width: 1200px;
    margin-bottom: 28px;
}

.syt-section__head--industry-index .syt-industry-index-title {
    max-width: 1160px;
    margin: 18px 0 14px;
    font-family: "SytEuclid", "SytBody", "Segoe UI", sans-serif;
    font-size: clamp(38px, 4.2vw, 62px);
    letter-spacing: 0;
    line-height: 1.04;
}

.syt-section__head--industry-index p {
    max-width: 1040px;
    margin: 0;
    color: #425064;
    font-size: clamp(17px, 1.26vw, 21px);
    line-height: 1.7;
}

.syt-section--industry-index .syt-card-grid--three {
    align-items: stretch;
    gap: 24px;
    grid-auto-rows: 1fr;
}

.syt-section--industry-index .syt-industry-card:nth-child(3) {
    margin-top: 0;
}

.syt-section--industry-index .syt-industry-card--visual {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding-bottom: 26px;
}

.syt-section--industry-index .syt-industry-card--visual .syt-placeholder-media--tile,
.syt-section--industry-index .syt-industry-card--visual .syt-asset-shell__image,
.syt-section--industry-index .syt-industry-card--visual .syt-placeholder-fallback {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: cover;
}

.syt-section--industry-index .syt-industry-card h3 {
    min-height: 2.1em;
    margin: 24px 26px 10px;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.05;
}

.syt-section--industry-index .syt-industry-card p {
    margin: 0 26px;
}

.syt-section--industry-index .syt-industry-card small {
    display: block;
    margin: 10px 26px 0;
}

@media (max-width: 991px) {
    .syt-nav-dropdown {
        display: grid;
        width: 100%;
    }

    .syt-nav-dropdown__menu {
        position: static;
        width: 100%;
        margin-top: 6px;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .syt-page-hero--service-visual .syt-service-hero-grid {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .syt-service-hero-copy {
        padding-bottom: 0;
    }

    .syt-service-hero-title {
        font-size: clamp(34px, 10vw, 48px);
    }

    .syt-section__head--industry-index .syt-industry-index-title {
        font-size: clamp(34px, 10vw, 48px);
    }

    .syt-section--industry-index .syt-industry-card h3 {
        min-height: 0;
    }

    .syt-section--industry-index .syt-industry-card--visual {
        min-height: clamp(535px, 138vw, 590px);
    }
}

/* 2026-07-01 hero structure follow-up fixes */
.syt-page-hero--service-visual {
    padding-top: 34px;
    padding-bottom: 42px;
}

.syt-service-hero-stack {
    display: grid;
    gap: 24px;
}

.syt-service-hero-top {
    display: grid;
    gap: 16px;
}

.syt-service-hero-top .syt-breadcrumb {
    margin-bottom: 0;
}

.syt-page-hero--service-visual .syt-service-hero-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(28px, 4vw, 58px);
    align-items: stretch;
}

.syt-page-hero--service-visual .syt-service-hero-title {
    max-width: none;
    margin: 0;
    font-size: clamp(38px, 4.25vw, 56px);
    line-height: 1.04;
    white-space: nowrap;
}

.syt-page-hero--service-visual .syt-service-hero-summary {
    align-self: center;
    margin-top: 0;
    gap: 12px;
}

.syt-page-hero--service-visual .syt-service-hero-summary p {
    max-width: 39em;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.62;
}

.syt-page-hero--service-visual .syt-service-hero-media,
.syt-page-hero--service-visual .syt-service-hero-media .syt-asset-shell__image,
.syt-page-hero--service-visual .syt-service-hero-media .syt-placeholder-fallback {
    height: clamp(230px, 20vw, 320px);
    min-height: 0;
    max-height: 320px;
}

.syt-page-hero--service-detail > .syt-container {
    width: min(1180px, calc(100% - 40px));
    max-width: none;
}

.syt-page-hero--service-detail h1 {
    max-width: 980px;
}

.syt-page-hero--quality-tight,
.syt-page-hero--contact-lead {
    padding-top: 42px;
    padding-bottom: 44px;
}

.syt-page-hero--quality-tight > .syt-container,
.syt-page-hero--contact-lead > .syt-container {
    width: min(1180px, calc(100% - 40px));
}

.syt-page-hero--quality.syt-page-hero--lead-title > .syt-container > p,
.syt-page-hero--contact-lead > .syt-container > p {
    color: #425064;
    font-family: "SytBody", "Segoe UI", "Helvetica Neue", sans-serif;
    font-size: clamp(16px, 1.25vw, 19px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.65;
}

.syt-page-hero--quality.syt-page-hero--lead-title > .syt-container > p {
    max-width: 980px;
    margin-top: 18px;
}

.syt-page-hero--contact-lead h1 {
    max-width: 930px;
    margin-bottom: 18px;
    font-size: clamp(42px, 5.1vw, 76px);
    line-height: 1.04;
}

.syt-page-hero--contact-lead > .syt-container > p {
    max-width: 780px;
    margin: 0;
}

.syt-page-hero--contact-lead + .syt-section,
.syt-page-hero--quality-tight + .syt-section {
    padding-top: 38px;
}

@media (max-width: 1240px) and (min-width: 992px) {
    .syt-page-hero--service-visual .syt-service-hero-title {
        font-size: clamp(34px, 3.85vw, 48px);
    }
}

@media (max-width: 991px) {
    .syt-page-hero--service-visual .syt-service-hero-grid {
        grid-template-columns: 1fr;
    }

    .syt-page-hero--service-visual .syt-service-hero-title {
        white-space: normal;
        font-size: clamp(34px, 9vw, 46px);
    }

    .syt-page-hero--quality-tight,
    .syt-page-hero--contact-lead {
        padding-top: 34px;
        padding-bottom: 36px;
    }

    .syt-page-hero--contact-lead h1 {
        font-size: clamp(36px, 10vw, 52px);
    }
}

/* 2026-07-01 final alignment guard */
.syt-page-hero--service-visual .syt-service-hero-stack {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    overflow: hidden;
}

.syt-page-hero--service-visual .syt-service-hero-top,
.syt-page-hero--service-visual .syt-service-hero-title,
.syt-page-hero--service-visual .syt-service-hero-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.syt-page-hero--service-visual .syt-service-hero-title {
    font-size: clamp(28px, 3.15vw, 40px);
    letter-spacing: 0;
}

.syt-page-hero--service-detail > .syt-container {
    width: calc(100% - 48px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.syt-page-hero--service-detail h1 {
    max-width: 1000px;
}

@media (max-width: 991px) {
    .syt-page-hero--service-visual .syt-service-hero-stack,
    .syt-page-hero--service-detail > .syt-container {
        width: min(100% - 28px, 1180px);
    }

    .syt-page-hero--service-visual .syt-service-hero-title {
        white-space: normal;
        font-size: clamp(32px, 9vw, 44px);
    }
}

/* 2026-07-01 second-pass corrections from annotated screenshots */
.syt-page-hero--contact-lead {
    padding-bottom: 82px;
    overflow: visible;
}

.syt-page-hero--contact-lead h1 {
    max-width: 930px;
    margin-bottom: 28px;
}

.syt-page-hero--contact-lead > .syt-container > p {
    display: block;
    max-width: 940px;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 8px;
}

.syt-page-hero--contact-lead + .syt-section {
    padding-top: 42px;
}

.syt-page-hero--quality-tight {
    padding-bottom: 96px;
}

.syt-page-hero--quality.syt-page-hero--lead-title > .syt-container > p {
    color: var(--syt-green-dark);
    font-family: "Georgia", "Times New Roman", serif;
    font-size: clamp(48px, 5vw, 78px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.05;
    max-width: 980px;
    margin: 18px 0 0;
}

.syt-page-hero--quality-tight + .syt-section {
    margin-top: -72px;
    padding-top: 0;
}

.syt-page-hero--quality-tight + .syt-section .syt-page-content__inner {
    position: relative;
    z-index: 2;
}

.syt-page-hero--service-visual .syt-service-hero-title {
    max-width: 1120px;
    font-size: clamp(34px, 3.55vw, 46px);
    line-height: 1.12;
    white-space: normal;
    overflow-wrap: normal;
}

.syt-page-hero--service-visual .syt-service-hero-grid {
    margin-top: 4px;
}

.syt-page-hero--service-detail > .syt-container {
    width: min(1180px, calc(100% - 48px));
    max-width: none;
}

.syt-page-hero--service-detail {
    padding-top: 42px;
    padding-bottom: 42px;
}

.syt-page-hero--service-detail h1 {
    max-width: 920px;
    font-size: clamp(42px, 4.5vw, 70px);
}

.syt-page-hero--service-detail p {
    max-width: 820px;
}

@media (max-width: 991px) {
    .syt-page-hero--contact-lead {
        padding-bottom: 46px;
    }

    .syt-page-hero--quality.syt-page-hero--lead-title > .syt-container > p {
        font-size: clamp(36px, 10vw, 54px);
    }

    .syt-page-hero--quality-tight + .syt-section {
        margin-top: -36px;
    }

    .syt-page-hero--service-detail > .syt-container {
        width: min(100% - 28px, 1180px);
    }
}

/* 2026-07-01 quality banner lead merge */
.syt-page-hero--quality-tight {
    padding-top: 42px;
    padding-bottom: 54px;
}

.syt-page-hero--quality.syt-page-hero--lead-title > .syt-container > p {
    max-width: 900px;
    font-size: clamp(36px, 4.2vw, 60px);
    line-height: 1.05;
}

.syt-quality-hero-lead {
    max-width: 1120px;
    margin-top: 26px;
    padding: 0;
    color: #425064;
    font-family: "SytBody", "Segoe UI", "Helvetica Neue", sans-serif;
    font-size: clamp(15px, 1.05vw, 17px);
    font-weight: 500;
    line-height: 1.62;
}

.syt-quality-hero-lead .syt-richtext {
    color: inherit;
    font: inherit;
}

.syt-quality-hero-lead p {
    max-width: 1040px;
    margin: 0;
}

.syt-quality-hero-lead p + p {
    margin-top: 12px;
}

.syt-page-hero--quality-tight + .syt-section {
    margin-top: 0;
    padding-top: 36px;
}

@media (max-width: 991px) {
    .syt-page-hero--quality.syt-page-hero--lead-title > .syt-container > p {
        font-size: clamp(34px, 9vw, 48px);
    }
}

/* 2026-07-01 71-3 final small-issue polish */
.syt-section__head {
    max-width: min(1120px, 100%);
}

.syt-section__head p,
.syt-page-hero p,
.syt-page-module__head p,
.syt-richtext p,
.syt-story-card p,
.syt-spec-list p {
    overflow-wrap: normal;
    word-break: normal;
}

.syt-section__head h2,
.syt-page-module__head h2,
.syt-page-hero h1 {
    overflow-wrap: normal;
}

.syt-trust-panel {
    grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
    gap: clamp(28px, 4vw, 58px);
    align-items: stretch;
}

.syt-trust-panel__intro h2 {
    font-size: clamp(34px, 3.4vw, 52px);
    line-height: 1.04;
}

.syt-trust-panel__intro p {
    max-width: 620px;
    font-size: clamp(17px, 1.2vw, 20px);
    line-height: 1.55;
}

.syt-trust-panel__stats {
    grid-template-columns: minmax(88px, 0.72fr) minmax(135px, 1fr) minmax(112px, 0.92fr);
    gap: 12px;
}

.syt-trust-panel__stats div {
    min-width: 0;
    padding: 18px 14px;
}

.syt-trust-panel__stats strong {
    font-size: clamp(20px, 1.6vw, 29px);
    line-height: 1.02;
    white-space: normal;
}

.syt-trust-panel__stats span {
    font-size: clamp(12px, 0.9vw, 14px);
    line-height: 1.45;
}

.syt-split--workflow-home {
    grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
    align-items: start;
}

.syt-split--workflow-home .syt-section__head h2 {
    max-width: 620px;
    font-size: clamp(33px, 3.4vw, 50px);
}

.syt-split--workflow-home .syt-section__head p {
    max-width: 620px;
    font-size: clamp(16px, 1.1vw, 18px);
    line-height: 1.58;
}

.syt-split--workflow-home .syt-spec-list {
    gap: 10px;
}

.syt-split--workflow-home .syt-spec-list div {
    padding: 15px 18px;
}

.syt-split--workflow-home .syt-spec-list strong {
    font-size: 15px;
}

.syt-split--workflow-home .syt-spec-list p {
    font-size: 13px;
    line-height: 1.45;
}

.syt-quality-band {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
}

.syt-quality-band h2 {
    max-width: 900px;
    font-size: clamp(30px, 2.8vw, 44px);
    line-height: 1.04;
}

.syt-quality-band p {
    max-width: 980px;
    font-size: clamp(16px, 1.18vw, 19px);
    line-height: 1.55;
}

.syt-section--cta .syt-cta h2 {
    max-width: 1000px;
    font-size: clamp(30px, 3.1vw, 48px);
    line-height: 1.05;
}

.syt-section--cta .syt-cta p {
    max-width: 1040px;
    font-size: clamp(16px, 1.14vw, 19px);
}

.syt-section__head--industry-index {
    max-width: 1140px;
    margin-bottom: 28px;
}

.syt-section__head--industry-index .syt-industry-index-title {
    max-width: 1120px;
    font-size: clamp(35px, 3.5vw, 54px);
    line-height: 1.05;
}

.syt-section__head--industry-index p {
    max-width: 1120px;
    font-size: clamp(16px, 1.16vw, 19px);
    line-height: 1.55;
}

.syt-section--industry-index .syt-card-grid--three {
    gap: 22px;
}

.syt-section--industry-index .syt-industry-card--visual {
    padding-bottom: 18px;
}

.syt-section--industry-index .syt-industry-card--visual .syt-placeholder-media--tile,
.syt-section--industry-index .syt-industry-card--visual .syt-asset-shell__image,
.syt-section--industry-index .syt-industry-card--visual .syt-placeholder-fallback {
    aspect-ratio: 16 / 10;
    object-position: center;
}

.syt-section--industry-index .syt-industry-card h3 {
    min-height: 0;
    margin: 18px 22px 8px;
    font-size: clamp(26px, 2vw, 34px);
}

.syt-section--industry-index .syt-industry-card p,
.syt-section--industry-index .syt-industry-card small {
    margin-left: 22px;
    margin-right: 22px;
}

.syt-section--industry-index .syt-industry-card p {
    font-size: 14px;
    line-height: 1.5;
}

.syt-detail--industry,
.syt-detail {
    padding-top: 42px;
    padding-bottom: 58px;
}

.syt-detail--industry .syt-detail__grid,
.syt-detail .syt-detail__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 24px;
}

.syt-detail--industry .syt-detail-panel,
.syt-detail .syt-detail-panel {
    padding: clamp(24px, 2.4vw, 34px);
}

.syt-detail--industry .syt-richtext,
.syt-detail .syt-richtext {
    max-width: none;
}

.syt-detail--industry .syt-story-grid,
.syt-detail .syt-signal-grid {
    gap: 14px;
}

.syt-detail--industry + .syt-section,
.syt-page-hero--service-detail + .syt-detail {
    padding-top: 34px;
}

.syt-page-hero:not(.syt-hero):not(.syt-page-hero--workflow):not(.syt-page-hero--service-visual) {
    padding-top: 36px;
    padding-bottom: 40px;
}

.syt-page-hero:not(.syt-hero):not(.syt-page-hero--workflow):not(.syt-page-hero--service-visual) > .syt-container {
    width: min(1180px, calc(100% - 48px));
}

.syt-page-hero:not(.syt-hero):not(.syt-page-hero--workflow):not(.syt-page-hero--service-visual) h1 {
    max-width: 1080px;
    font-size: clamp(38px, 4vw, 62px);
}

.syt-page-hero:not(.syt-hero):not(.syt-page-hero--workflow):not(.syt-page-hero--service-visual) p {
    max-width: 1040px;
    font-size: clamp(16px, 1.12vw, 18px);
    line-height: 1.55;
}

.syt-page-hero--quality-tight {
    padding-bottom: 38px;
}

.syt-page-hero--quality.syt-page-hero--lead-title > .syt-container > p {
    max-width: 1120px;
    font-size: clamp(32px, 3.5vw, 50px);
    line-height: 1.05;
}

.syt-quality-hero-lead {
    display: grid;
    max-width: 1120px;
    grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
    gap: 20px;
    align-items: start;
}

.syt-quality-hero-lead p {
    max-width: none;
    font-size: clamp(14px, 0.95vw, 16px);
    line-height: 1.48;
}

.syt-section--quality-visual {
    padding-top: 24px;
    padding-bottom: 34px;
}

.syt-article-hero--quality {
    max-width: 880px;
}

.syt-article-hero--quality .syt-placeholder-media--article,
.syt-article-hero--quality .syt-asset-shell__image,
.syt-article-hero--quality .syt-placeholder-fallback {
    height: clamp(210px, 20vw, 280px);
}

.syt-page-hero--contact-lead {
    padding-top: 34px;
    padding-bottom: 36px;
}

.syt-page-hero--contact-lead h1 {
    max-width: 1180px;
    margin-bottom: 14px;
    font-size: clamp(34px, 3.25vw, 52px);
    line-height: 1.05;
}

.syt-page-hero--contact-lead > .syt-container > p {
    max-width: 1120px;
    font-size: clamp(18px, 1.45vw, 24px);
    line-height: 1.38;
}

.syt-page-hero--contact-lead + .syt-section {
    padding-top: 30px;
}

.syt-contact-grid {
    align-items: start;
}

.syt-section--service-entry-moved .syt-section__head {
    max-width: 1120px;
}

.syt-section--service-entry-moved .syt-section__head h2 {
    max-width: 1080px;
    font-size: clamp(32px, 3vw, 48px);
}

.syt-section--service-entry-moved .syt-section__head p {
    max-width: 1080px;
}

.syt-section--service-entry-moved .syt-service-entry-grid {
    grid-template-columns: minmax(220px, 0.95fr) minmax(300px, 1.2fr) minmax(210px, 0.85fr);
    align-items: stretch;
}

.syt-section--service-entry-moved .syt-service-entry-card {
    min-width: 0;
    padding: 24px 22px;
}

.syt-section--service-entry-moved .syt-service-entry-card p {
    font-size: clamp(14px, 0.95vw, 16px);
    line-height: 1.5;
}

.syt-page-hero--service-detail {
    padding-top: 34px;
    padding-bottom: 34px;
}

.syt-page-hero--service-detail h1 {
    max-width: 1120px;
    font-size: clamp(36px, 3.8vw, 58px);
}

.syt-page-hero--service-detail p {
    max-width: 1040px;
}

@media (max-width: 991px) {
    .syt-trust-panel,
    .syt-split--workflow-home,
    .syt-quality-hero-lead,
    .syt-detail--industry .syt-detail__grid,
    .syt-detail .syt-detail__grid,
    .syt-section--service-entry-moved .syt-service-entry-grid {
        grid-template-columns: 1fr;
    }

    .syt-trust-panel__stats {
        grid-template-columns: 1fr;
    }

    .syt-page-hero--contact-lead h1,
    .syt-page-hero--service-detail h1,
    .syt-page-hero--quality.syt-page-hero--lead-title > .syt-container > p {
        font-size: clamp(32px, 8.5vw, 44px);
    }

    .syt-page-hero--contact-lead > .syt-container > p {
        font-size: clamp(16px, 4.8vw, 20px);
    }

    .syt-detail--industry,
    .syt-detail {
        padding-top: 28px;
        padding-bottom: 38px;
    }
}

/* 2026-07-01 71-3 contact and quality precision pass */
.syt-page-hero--contact-lead {
    padding-bottom: 58px;
}

.syt-page-hero--contact-lead h1 {
    max-width: 1140px;
    margin-bottom: 18px;
}

.syt-page-hero--contact-lead > .syt-container > p {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    margin-bottom: 0;
    padding-bottom: 0;
    overflow: visible;
}

.syt-page-hero--contact-lead + .syt-section {
    margin-top: 0;
    padding-top: 58px;
}

.syt-quality-hero-lead {
    display: block;
}

.syt-quality-hero-lead .syt-richtext {
    display: grid;
    grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
    gap: 28px;
    align-items: start;
}

.syt-quality-hero-lead .syt-richtext p {
    max-width: none;
    margin: 0;
    font-size: clamp(15px, 1vw, 17px);
    line-height: 1.5;
}

.syt-page-hero--quality-tight {
    padding-bottom: 44px;
}

@media (max-width: 991px) {
    .syt-page-hero--contact-lead {
        padding-bottom: 40px;
    }

    .syt-page-hero--contact-lead + .syt-section {
        padding-top: 34px;
    }

    .syt-quality-hero-lead .syt-richtext {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* 2026-07-01 71-3 actual screenshot pass */
.syt-section__head h2,
.syt-page-module__head h2 {
    max-width: 1120px;
    font-size: clamp(32px, 3.25vw, 46px);
    line-height: 1.06;
}

.syt-section__head p,
.syt-page-module__head p {
    max-width: 1120px;
}

.syt-split--workflow-home {
    grid-template-columns: minmax(560px, 0.95fr) minmax(0, 1.05fr);
}

.syt-split--workflow-home .syt-section__head h2 {
    max-width: 720px;
    font-size: clamp(30px, 3vw, 42px);
}

.syt-split--workflow-home .syt-section__head p {
    max-width: 720px;
}

.syt-section--cta .syt-cta h2 {
    max-width: 1120px;
    font-size: clamp(28px, 2.75vw, 38px);
}

.syt-section--cta .syt-cta p {
    max-width: 1120px;
}

.syt-section--industry-index .syt-card-grid--three {
    align-items: start;
    grid-auto-rows: auto;
}

.syt-section--industry-index .syt-industry-card--visual {
    min-height: 0;
    height: auto;
    padding-bottom: 20px;
}

.syt-section--industry-index .syt-industry-card--visual .syt-placeholder-media--tile {
    display: grid;
    width: calc(100% - 56px);
    margin: 28px auto 0;
    place-items: center;
}

.syt-section--industry-index .syt-industry-card--visual .syt-asset-shell__image,
.syt-section--industry-index .syt-industry-card--visual .syt-placeholder-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.syt-section--industry-index .syt-industry-card h3 {
    margin-top: 22px;
    font-size: clamp(25px, 1.9vw, 31px);
}

.syt-section--industry-index .syt-industry-card p {
    margin-bottom: 0;
}

.syt-section--industry-index .syt-industry-card small {
    display: none;
}

.syt-contact-panel .syt-page-module__head h2 {
    max-width: none;
    font-size: clamp(30px, 2.7vw, 34px);
    line-height: 1.08;
}

.syt-contact-panel .syt-page-module__head p {
    max-width: none;
    font-size: 17px;
    line-height: 1.45;
}

.syt-page-content__inner .syt-story-grid--stacked .syt-story-card {
    padding: 24px 28px;
}

.syt-page-hero--quality-tight + .syt-section .syt-page-content__inner {
    max-width: 1180px;
}

.syt-page-hero--quality-tight + .syt-section .syt-richtext h2 {
    max-width: 1080px;
    font-size: clamp(32px, 3.05vw, 44px);
}

.syt-richtext .syt-output-table,
.syt-richtext table {
    width: 100%;
}

.syt-richtext table th:first-child,
.syt-richtext table td:first-child {
    width: 28%;
}

.syt-richtext table th:nth-child(2),
.syt-richtext table td:nth-child(2) {
    width: 72%;
}

@media (max-width: 991px) {
    .syt-split--workflow-home,
    .syt-section--industry-index .syt-card-grid--three {
        grid-template-columns: 1fr;
    }

    .syt-section--industry-index .syt-industry-card--visual .syt-placeholder-media--tile {
        width: calc(100% - 36px);
        margin-top: 18px;
    }

    .syt-contact-panel .syt-page-module__head h2 {
        font-size: clamp(28px, 8vw, 36px);
    }
}

/* 2026-07-01 71-3 actual screenshot pass 2 */
.syt-section__head h2,
.syt-page-module__head h2,
.syt-cta h2 {
    max-width: 1180px;
    font-size: clamp(30px, 2.8vw, 40px);
    line-height: 1.08;
}

.syt-section__head p,
.syt-page-module__head p,
.syt-cta p {
    max-width: 1180px;
}

.syt-section__head--industry-index .syt-industry-index-title {
    max-width: 1180px;
    font-size: clamp(30px, 2.35vw, 34px);
    line-height: 1.08;
}

.syt-section--industry-index .syt-industry-card--visual .syt-placeholder-media--tile {
    width: calc(100% - 34px);
    margin-top: 18px;
}

.syt-section--industry-index .syt-industry-card h3 {
    margin: 20px 24px 8px;
    font-size: clamp(25px, 1.95vw, 32px);
}

.syt-section--industry-index .syt-industry-card p {
    margin-left: 24px;
    margin-right: 24px;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.48;
}

.syt-contact-panel .syt-page-module__head h2 {
    font-size: clamp(26px, 2.35vw, 30px);
    line-height: 1.06;
}

.syt-contact-panel .syt-page-module__head p {
    font-size: 16px;
    line-height: 1.45;
}

.syt-page-hero:not(.syt-hero):not(.syt-page-hero--workflow):not(.syt-page-hero--service-visual) {
    padding-bottom: 28px;
}

.syt-detail--industry,
.syt-detail {
    padding-top: 24px;
}

.syt-page-hero--service-detail {
    padding-bottom: 24px;
}

.syt-page-hero--service-detail + .syt-detail,
.syt-page-hero + .syt-detail--industry {
    padding-top: 24px;
}

.syt-page-hero--contact-lead {
    padding-bottom: 42px;
}

.syt-page-hero--contact-lead + .syt-section {
    padding-top: 44px;
}

.syt-page-hero--quality-tight + .syt-section .syt-richtext h2,
.syt-page-module__head h2 {
    font-size: clamp(30px, 2.75vw, 40px);
}

@media (max-width: 991px) {
    .syt-section__head h2,
    .syt-page-module__head h2,
    .syt-cta h2,
    .syt-section__head--industry-index .syt-industry-index-title {
        font-size: clamp(30px, 8vw, 40px);
    }

    .syt-section--industry-index .syt-industry-card--visual .syt-placeholder-media--tile {
        width: calc(100% - 28px);
    }
}

/* 2026-07-02 final screenshot fixes */
.syt-visual-card--hero {
    padding: 18px;
}

.syt-visual-card--hero .syt-hero-illustration,
.syt-visual-card--hero .syt-hero-illustration .syt-asset-shell__image,
.syt-visual-card--hero .syt-hero-illustration .syt-placeholder-fallback {
    height: clamp(210px, 17vw, 275px);
}

.syt-visual-card--hero .syt-hero-metric,
.syt-visual-card--hero [class*="metric"],
.syt-visual-card--hero [class*="Metric"] {
    min-height: 0;
    padding: 18px 24px;
}

.syt-visual-card--hero h3,
.syt-visual-card--hero strong {
    font-size: clamp(26px, 2.25vw, 36px);
    line-height: 1.05;
}

.syt-visual-card--hero p,
.syt-visual-card--hero span {
    font-size: clamp(12px, 0.86vw, 14px);
    line-height: 1.35;
    overflow-wrap: normal;
}

.syt-trust-panel {
    grid-template-columns: minmax(520px, 0.94fr) minmax(520px, 1.06fr);
}

.syt-trust-panel__intro h2 {
    font-size: clamp(42px, 4.2vw, 60px);
    line-height: 1.02;
}

.syt-trust-panel__stats {
    grid-template-columns: 0.72fr 1fr 0.92fr;
    gap: 12px;
}

.syt-trust-panel__stats div {
    padding: 16px 14px;
}

.syt-trust-panel__stats strong {
    display: block;
    max-width: 100%;
    font-size: clamp(19px, 1.32vw, 24px);
    line-height: 1.06;
    overflow-wrap: normal;
}

.syt-trust-panel__stats span {
    display: block;
    font-size: clamp(12px, 0.86vw, 14px);
    line-height: 1.45;
}

.syt-split--workflow-home {
    grid-template-columns: minmax(470px, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
}

.syt-split--workflow-home .syt-spec-list {
    gap: 12px;
}

.syt-split--workflow-home .syt-spec-list div {
    min-height: 0;
    padding: 18px 22px;
}

.syt-split--workflow-home .syt-spec-list strong {
    font-size: clamp(16px, 1.1vw, 19px);
    line-height: 1.15;
}

.syt-split--workflow-home .syt-spec-list p {
    font-size: clamp(12px, 0.82vw, 14px);
    line-height: 1.42;
}

.syt-page-hero--service-detail {
    padding-bottom: 40px;
}

.syt-page-hero--service-detail + .syt-detail {
    padding-top: 26px;
}

.syt-detail__grid > aside.syt-detail-panel {
    padding: 22px 26px;
}

.syt-detail__grid > aside.syt-detail-panel h2 {
    font-size: clamp(25px, 2.1vw, 34px);
}

.syt-detail__grid > aside.syt-detail-panel .syt-spec-list {
    gap: 10px;
}

.syt-detail__grid > aside.syt-detail-panel .syt-spec-list div {
    padding: 14px 16px;
}

.syt-detail__grid > aside.syt-detail-panel .syt-spec-list strong {
    font-size: 13px;
}

.syt-detail__grid > aside.syt-detail-panel .syt-spec-list p {
    font-size: 12px;
    line-height: 1.42;
}

.syt-page-hero:has(+ .syt-section) > .syt-container {
    width: min(1180px, calc(100% - 48px));
}

body:has(.syt-list-grid--visual) .syt-page-hero > .syt-container,
body:has(.syt-list-grid--visual) .syt-section > .syt-container {
    width: min(1180px, calc(100% - 48px));
}

.syt-page-hero--quality-tight {
    padding-bottom: 38px;
}

.syt-quality-hero-lead .syt-richtext {
    display: block;
    max-width: 1080px;
}

.syt-quality-hero-lead .syt-richtext p {
    max-width: 1080px;
    margin: 0;
    font-size: clamp(17px, 1.25vw, 20px);
    line-height: 1.48;
}

.syt-quality-hero-lead .syt-richtext p + p {
    margin-top: 8px;
}

.syt-page-hero--quality.syt-page-hero--lead-title > .syt-container > p {
    max-width: 1080px;
}

.syt-page-hero--quality-tight + .syt-section .syt-richtext table th:first-child,
.syt-page-hero--quality-tight + .syt-section .syt-richtext table td:first-child {
    width: 22%;
}

.syt-page-hero--quality-tight + .syt-section .syt-richtext table th:nth-child(2),
.syt-page-hero--quality-tight + .syt-section .syt-richtext table td:nth-child(2) {
    width: 78%;
}

.syt-page-hero--quality-tight + .syt-section .syt-richtext table th,
.syt-page-hero--quality-tight + .syt-section .syt-richtext table td {
    padding: 16px 20px;
}

.syt-page-hero--quality-tight + .syt-section .syt-richtext table td {
    font-size: clamp(14px, 0.98vw, 16px);
    line-height: 1.42;
}

@media (max-width: 991px) {
    .syt-trust-panel,
    .syt-split--workflow-home {
        grid-template-columns: 1fr;
    }

    .syt-trust-panel__stats {
        grid-template-columns: 1fr;
    }

    .syt-quality-hero-lead .syt-richtext p {
        font-size: 16px;
    }
}

/* 2026-07-02 final screenshot fixes pass 2 */
.syt-visual-card--hero {
    padding: 16px;
}

.syt-visual-card--hero .syt-hero-illustration,
.syt-visual-card--hero .syt-hero-illustration .syt-asset-shell__image,
.syt-visual-card--hero .syt-hero-illustration .syt-placeholder-fallback {
    height: clamp(190px, 15vw, 235px);
}

.syt-visual-card__metrics {
    gap: 10px;
}

.syt-hero-card {
    min-height: 0;
    padding: 14px 20px;
}

.syt-hero-card strong {
    font-size: clamp(22px, 1.65vw, 28px);
    line-height: 1.02;
}

.syt-hero-card span {
    max-width: 100%;
    font-size: clamp(12px, 0.82vw, 13px);
    line-height: 1.32;
    overflow-wrap: normal;
}

.syt-trust-panel__stats {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.02fr) minmax(0, 0.88fr);
}

.syt-trust-panel__stats div {
    min-width: 0;
    padding: 14px 12px;
}

.syt-trust-panel__stats strong {
    font-size: clamp(18px, 1.18vw, 22px);
    line-height: 1.08;
}

.syt-split--workflow-home {
    grid-template-columns: minmax(480px, 0.9fr) minmax(0, 1.1fr);
}

.syt-split--workflow-home .syt-timeline {
    gap: 12px;
}

.syt-split--workflow-home .syt-timeline > div {
    min-height: 0;
    padding: 15px 18px;
}

.syt-split--workflow-home .syt-timeline span {
    width: 32px;
    height: 32px;
    font-size: 12px;
}

.syt-split--workflow-home .syt-timeline strong {
    font-size: clamp(16px, 1.06vw, 18px);
    line-height: 1.14;
}

.syt-split--workflow-home .syt-timeline p {
    margin-top: 4px;
    font-size: clamp(12px, 0.82vw, 13px);
    line-height: 1.36;
}

.syt-detail__grid > aside.syt-detail-panel {
    padding: 18px 22px;
}

.syt-detail__grid > aside.syt-detail-panel h2 {
    margin-bottom: 14px;
    font-size: clamp(24px, 1.8vw, 30px);
    line-height: 1.06;
}

.syt-detail__grid > aside.syt-detail-panel .syt-spec-list div {
    padding: 12px 14px;
}

.syt-detail__grid > aside.syt-detail-panel .syt-spec-list p {
    margin-top: 4px;
    line-height: 1.34;
}

.syt-page-hero--quality-tight {
    padding-bottom: 28px;
}

.syt-page-hero--quality.syt-page-hero--lead-title > .syt-container {
    display: block;
}

.syt-page-hero--quality.syt-page-hero--lead-title > .syt-container > p {
    display: block;
    max-width: 1140px;
    margin: 16px 0 0;
    font-size: clamp(18px, 1.35vw, 22px);
    line-height: 1.38;
}

.syt-quality-hero-lead {
    margin-top: 10px;
}

.syt-quality-hero-lead .syt-richtext {
    display: block;
    max-width: 1140px;
}

.syt-quality-hero-lead .syt-richtext p {
    max-width: 1140px;
    font-size: clamp(16px, 1.08vw, 18px);
    line-height: 1.4;
}

.syt-quality-hero-lead .syt-richtext p + p {
    margin-top: 6px;
}

.syt-page-module--deliverables .syt-deliverable-matrix {
    grid-template-columns: minmax(170px, 0.23fr) minmax(0, 0.77fr);
}

.syt-page-module--deliverables .syt-deliverable-matrix__head,
.syt-page-module--deliverables .syt-deliverable-matrix__cell {
    padding: 13px 16px;
}

.syt-page-module--deliverables .syt-deliverable-matrix__cell strong {
    font-size: clamp(15px, 1vw, 17px);
    line-height: 1.15;
}

.syt-page-module--deliverables .syt-deliverable-matrix__cell p {
    font-size: clamp(13px, 0.9vw, 15px);
    line-height: 1.32;
}

@media (max-width: 991px) {
    .syt-visual-card--hero .syt-hero-illustration,
    .syt-visual-card--hero .syt-hero-illustration .syt-asset-shell__image,
    .syt-visual-card--hero .syt-hero-illustration .syt-placeholder-fallback {
        height: clamp(190px, 48vw, 260px);
    }

    .syt-split--workflow-home {
        grid-template-columns: 1fr;
    }

    .syt-page-hero--quality.syt-page-hero--lead-title > .syt-container > p,
    .syt-quality-hero-lead .syt-richtext p {
        font-size: 16px;
    }

    .syt-page-module--deliverables .syt-deliverable-matrix {
        grid-template-columns: 1fr;
    }
}

/* 2026-07-02 final screenshot fixes pass 3 */
.syt-split--workflow-home .syt-timeline {
    gap: 10px;
}

.syt-split--workflow-home .syt-timeline > div {
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    padding: 12px 18px;
}

.syt-split--workflow-home .syt-timeline span {
    width: 30px;
    height: 30px;
}

.syt-split--workflow-home .syt-timeline strong {
    font-size: clamp(15px, 0.98vw, 17px);
}

.syt-split--workflow-home .syt-timeline p {
    font-size: clamp(11px, 0.76vw, 12px);
    line-height: 1.3;
}

.syt-page-hero--service-detail {
    padding-bottom: 34px;
}

.syt-page-hero--service-detail + .syt-detail {
    padding-top: 34px;
}

.syt-detail__grid > aside.syt-detail-panel {
    padding: 16px 20px;
}

.syt-detail__grid > aside.syt-detail-panel .syt-spec-list {
    gap: 8px;
}

.syt-detail__grid > aside.syt-detail-panel .syt-spec-list div {
    padding: 10px 13px;
}

.syt-detail__grid > aside.syt-detail-panel .syt-spec-list strong {
    font-size: 12px;
}

.syt-detail__grid > aside.syt-detail-panel .syt-spec-list p {
    font-size: 11px;
    line-height: 1.3;
}

.syt-quality-hero-lead .syt-richtext,
.syt-quality-hero-lead .syt-quality-hero-lines {
    display: block;
    max-width: 1200px;
}

.syt-quality-hero-lead .syt-richtext p,
.syt-quality-hero-lead .syt-quality-hero-lines p {
    max-width: 1200px;
    margin: 0;
    font-size: clamp(15px, 0.94vw, 17px);
    line-height: 1.34;
}

.syt-quality-hero-lead .syt-richtext p + p,
.syt-quality-hero-lead .syt-quality-hero-lines p + p {
    margin-top: 6px;
}

.syt-page-hero--quality.syt-page-hero--lead-title > .syt-container > p {
    max-width: 1200px;
    font-size: clamp(16px, 1.1vw, 19px);
    line-height: 1.32;
}

.syt-page-module--deliverables .syt-deliverable-matrix {
    grid-template-columns: minmax(150px, 0.2fr) minmax(0, 0.8fr);
}

.syt-page-module--deliverables .syt-deliverable-matrix__head,
.syt-page-module--deliverables .syt-deliverable-matrix__cell {
    padding: 11px 14px;
}

.syt-page-module--deliverables .syt-deliverable-matrix__cell p {
    line-height: 1.24;
}

@media (max-width: 991px) {
    .syt-split--workflow-home .syt-timeline > div {
        grid-template-columns: 40px minmax(0, 1fr);
        align-items: start;
        padding: 14px 16px;
    }

    .syt-page-hero--service-detail + .syt-detail {
        padding-top: 26px;
    }

    .syt-quality-hero-lead .syt-richtext p,
    .syt-quality-hero-lead .syt-quality-hero-lines p,
    .syt-page-hero--quality.syt-page-hero--lead-title > .syt-container > p {
        font-size: 15px;
        line-height: 1.42;
    }

    .syt-page-module--deliverables .syt-deliverable-matrix {
        grid-template-columns: 1fr;
    }
}

/* 2026-07-02 final screenshot fixes pass 4 */
.syt-split--workflow-home .syt-timeline {
    gap: 8px;
}

.syt-split--workflow-home .syt-timeline > div {
    padding: 10px 16px;
}

.syt-split--workflow-home .syt-timeline strong {
    font-size: clamp(14px, 0.92vw, 16px);
    line-height: 1.08;
}

.syt-split--workflow-home .syt-timeline p {
    margin-top: 3px;
    font-size: clamp(10px, 0.72vw, 11px);
    line-height: 1.24;
}

.syt-quality-hero-lead {
    width: 100%;
    max-width: none;
}

.syt-quality-hero-lead .syt-quality-hero-lines,
.syt-quality-hero-lead .syt-quality-hero-lines p {
    width: 100%;
    max-width: none !important;
}

.syt-quality-hero-lead .syt-quality-hero-lines p {
    font-size: clamp(13px, 0.86vw, 15px);
    line-height: 1.28;
}

.syt-page-hero--quality.syt-page-hero--lead-title > .syt-container > p {
    width: 100%;
    max-width: none !important;
    font-size: clamp(15px, 1vw, 17px);
}

@media (max-width: 991px) {
    .syt-split--workflow-home .syt-timeline {
        gap: 10px;
    }

    .syt-split--workflow-home .syt-timeline > div {
        padding: 14px 16px;
    }

    .syt-split--workflow-home .syt-timeline p {
        font-size: 12px;
        line-height: 1.36;
    }

    .syt-quality-hero-lead .syt-quality-hero-lines p,
    .syt-page-hero--quality.syt-page-hero--lead-title > .syt-container > p {
        font-size: 15px;
        line-height: 1.42;
    }
}

/* 2026-07-02 final screenshot closeout adjustment */
.syt-visual-card--hero {
    padding: 18px;
}

.syt-visual-card--hero .syt-hero-illustration,
.syt-visual-card--hero .syt-hero-illustration .syt-asset-shell__image,
.syt-visual-card--hero .syt-hero-illustration .syt-placeholder-fallback {
    height: clamp(220px, 16.5vw, 255px);
}

.syt-visual-card__metrics {
    gap: 12px;
}

.syt-hero-card {
    padding: 18px 22px;
}

.syt-hero-card strong {
    font-size: clamp(24px, 1.8vw, 31px);
    line-height: 1.04;
}

.syt-hero-card span {
    font-size: clamp(12px, 0.86vw, 14px);
    line-height: 1.36;
}

.syt-trust-panel__intro h2 {
    font-size: clamp(34px, 3.45vw, 50px);
    line-height: 1.05;
}

.syt-trust-panel__intro p {
    font-size: clamp(16px, 1.15vw, 18px);
    line-height: 1.5;
}

.syt-split--workflow-home .syt-timeline {
    gap: 12px;
}

.syt-split--workflow-home .syt-timeline > div {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
    min-height: 74px;
    padding: 14px 20px;
}

.syt-split--workflow-home .syt-timeline span {
    position: static;
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    font-size: 12px;
    line-height: 1;
}

.syt-split--workflow-home .syt-timeline strong {
    font-size: clamp(16px, 1.05vw, 18px);
    line-height: 1.16;
}

.syt-split--workflow-home .syt-timeline p {
    margin-top: 5px;
    font-size: clamp(12px, 0.82vw, 13px);
    line-height: 1.38;
}

.syt-page-hero--service-detail {
    padding-bottom: 44px;
}

.syt-page-hero--service-detail + .syt-detail,
.syt-page-hero + .syt-detail--industry {
    padding-top: 54px;
}

.syt-detail__grid {
    align-items: start;
}

.syt-detail__grid > aside.syt-detail-panel,
.syt-detail--industry .syt-detail__grid > aside.syt-detail-panel {
    padding: 14px 18px;
}

.syt-detail__grid > aside.syt-detail-panel h2,
.syt-detail--industry .syt-detail__grid > aside.syt-detail-panel h2 {
    margin-bottom: 12px;
    font-size: clamp(22px, 1.6vw, 28px);
    line-height: 1.04;
}

.syt-detail__grid > aside.syt-detail-panel .syt-spec-list,
.syt-detail--industry .syt-detail__grid > aside.syt-detail-panel .syt-spec-list {
    gap: 7px;
}

.syt-detail__grid > aside.syt-detail-panel .syt-spec-list div,
.syt-detail--industry .syt-detail__grid > aside.syt-detail-panel .syt-spec-list div {
    padding: 9px 12px;
}

.syt-detail__grid > aside.syt-detail-panel .syt-spec-list strong,
.syt-detail--industry .syt-detail__grid > aside.syt-detail-panel .syt-spec-list strong {
    font-size: 12px;
    line-height: 1.2;
}

.syt-detail__grid > aside.syt-detail-panel .syt-spec-list p,
.syt-detail--industry .syt-detail__grid > aside.syt-detail-panel .syt-spec-list p {
    margin-top: 3px;
    font-size: 11px;
    line-height: 1.28;
}

.syt-detail__grid > aside.syt-detail-panel .syt-placeholder-media--aside,
.syt-detail--industry .syt-detail__grid > aside.syt-detail-panel .syt-placeholder-media--aside {
    margin-top: 12px;
    max-height: 240px;
}

.syt-section--industry-index .syt-card-grid--three {
    align-items: stretch;
}

.syt-section--industry-index .syt-industry-card--visual {
    display: grid;
    grid-template-rows: auto auto 1fr;
    height: 100%;
    min-height: 440px;
    padding-bottom: 26px;
}

.syt-section--industry-index .syt-industry-card--visual .syt-placeholder-media--tile {
    width: calc(100% - 52px);
    height: 192px;
    margin: 28px auto 0;
}

.syt-section--industry-index .syt-industry-card h3 {
    margin: 22px 28px 10px;
    min-height: 68px;
    font-size: clamp(27px, 2vw, 34px);
    line-height: 1.04;
}

.syt-section--industry-index .syt-industry-card p {
    margin: 0 28px;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.5;
}

@media (max-width: 991px) {
    .syt-visual-card--hero .syt-hero-illustration,
    .syt-visual-card--hero .syt-hero-illustration .syt-asset-shell__image,
    .syt-visual-card--hero .syt-hero-illustration .syt-placeholder-fallback {
        height: clamp(210px, 56vw, 285px);
    }

    .syt-trust-panel__intro h2 {
        font-size: clamp(32px, 9vw, 42px);
    }

    .syt-split--workflow-home .syt-timeline > div {
        grid-template-columns: 40px minmax(0, 1fr);
        min-height: 0;
        padding: 15px 16px;
    }

    .syt-page-hero--service-detail + .syt-detail,
    .syt-page-hero + .syt-detail--industry {
        padding-top: 36px;
    }

    .syt-section--industry-index .syt-industry-card--visual {
        min-height: 0;
    }
}

/* 2026-07-02 final screenshot closeout adjustment pass 2 */
.syt-trust-panel__intro h2 {
    font-size: clamp(32px, 3.1vw, 44px);
    line-height: 1.06;
}

.syt-split--workflow-home .syt-timeline span {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    margin-top: 2px;
}

.syt-split--workflow-home .syt-timeline strong,
.syt-split--workflow-home .syt-timeline p {
    grid-column: 2;
}

.syt-split--workflow-home .syt-timeline p {
    width: auto;
    max-width: none;
}

.syt-detail--industry .syt-detail__grid > aside.syt-detail-panel .syt-placeholder-media--aside {
    height: 130px;
    max-height: 130px;
}

@media (max-width: 991px) {
    .syt-trust-panel__intro h2 {
        font-size: clamp(30px, 8vw, 38px);
    }

    .syt-split--workflow-home .syt-timeline span {
        grid-row: 1 / span 2;
    }

    .syt-section--industry-index .syt-industry-card--visual {
        min-height: 456px;
    }

    .syt-section--industry-index .syt-industry-card--visual:nth-child(3) {
        min-height: 456px;
    }
}

/* 2026-07-02 final screenshot closeout adjustment pass 3 */
.syt-detail--industry .syt-detail__grid > aside.syt-detail-panel {
    padding: 12px 16px;
}

.syt-detail--industry .syt-detail__grid > aside.syt-detail-panel h2 {
    margin-bottom: 10px;
    font-size: clamp(20px, 1.45vw, 25px);
}

.syt-detail--industry .syt-detail__grid > aside.syt-detail-panel .syt-spec-list {
    gap: 6px;
}

.syt-detail--industry .syt-detail__grid > aside.syt-detail-panel .syt-spec-list div {
    padding: 8px 11px;
}

.syt-detail--industry .syt-detail__grid > aside.syt-detail-panel .syt-spec-list p {
    font-size: 10.5px;
    line-height: 1.24;
}

.syt-detail--industry .syt-detail__grid > aside.syt-detail-panel .syt-placeholder-media--aside {
    height: 92px;
    max-height: 92px;
}

@media (max-width: 991px) {
    .syt-section--industry-index .syt-industry-card--visual,
    .syt-section--industry-index .syt-industry-card--visual:nth-child(3) {
        min-height: 477px;
    }

    .syt-detail--industry .syt-detail__grid > aside.syt-detail-panel .syt-placeholder-media--aside {
        height: 100px;
        max-height: 100px;
    }
}

/* 2026-07-02 service detail red line spacing adjustment */
.syt-page-hero--service-detail + .syt-detail,
.syt-page-hero + .syt-detail--industry {
    padding-top: 30px;
}

.syt-detail .syt-detail__grid > .syt-detail-panel,
.syt-detail--industry .syt-detail__grid > .syt-detail-panel {
    padding-top: 38px;
}

.syt-detail .syt-detail__grid > .syt-detail-panel h2,
.syt-detail--industry .syt-detail__grid > .syt-detail-panel h2 {
    margin-top: 0;
}

@media (max-width: 991px) {
    .syt-page-hero--service-detail + .syt-detail,
    .syt-page-hero + .syt-detail--industry {
        padding-top: 24px;
    }

    .syt-detail .syt-detail__grid > .syt-detail-panel,
    .syt-detail--industry .syt-detail__grid > .syt-detail-panel {
        padding-top: 34px;
    }
}

/* 2026-07-02 industry detail red line spacing alignment */
.syt-detail--industry .syt-detail__grid > aside.syt-detail-panel {
    padding-top: 34px;
}

/* 2026-07-02 detail panel red line visual closeout */
.syt-detail .syt-detail__grid > .syt-detail-panel,
.syt-detail--industry .syt-detail__grid > .syt-detail-panel {
    position: relative;
    overflow: hidden;
}

.syt-detail .syt-detail__grid > .syt-detail-panel:before,
.syt-detail--industry .syt-detail__grid > .syt-detail-panel:before {
    inset: 0 auto auto 28px;
    left: 28px;
    right: auto;
    width: calc(100% - 56px);
    height: 4px;
    border-radius: 999px;
}

@media (max-width: 991px) {
    .syt-detail .syt-detail__grid > .syt-detail-panel:before,
    .syt-detail--industry .syt-detail__grid > .syt-detail-panel:before {
        inset: 0 auto auto 20px;
        left: 20px;
        right: auto;
        width: calc(100% - 40px);
    }
}

/* 2026-07-02 multi-page final detail adjustments */
.syt-section .syt-section__head + .syt-section-copy p {
    font-size: clamp(17px, 1.18vw, 19px);
    line-height: 1.45;
}

.syt-section--why-syt .syt-section__head {
    max-width: none;
}

.syt-section--why-syt .syt-section__head h2 {
    max-width: none;
    font-size: clamp(34px, 3vw, 44px);
    line-height: 1.08;
}

.syt-page-hero--service-visual .syt-service-hero-title {
    max-width: 1180px;
    font-size: clamp(42px, 3.8vw, 58px);
    line-height: 1.08;
}

.syt-section--service-entry-moved .syt-service-entry-card strong,
.syt-section--service-entry-moved .syt-story-card strong {
    font-size: clamp(26px, 2.15vw, 34px);
    line-height: 1.08;
}

.syt-section--service-entry-moved .syt-service-entry-card p,
.syt-section--service-entry-moved .syt-story-card p {
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.45;
}

.syt-detail--industry .syt-detail__grid > aside.syt-detail-panel {
    display: flex;
    flex-direction: column;
}

.syt-detail--industry .syt-detail__grid > aside.syt-detail-panel .syt-placeholder-media--aside {
    flex: 1 1 auto;
    min-height: 210px;
    height: auto;
    max-height: none;
}

.syt-detail--industry .syt-detail__grid > aside.syt-detail-panel .syt-placeholder-media--aside .syt-asset-shell__image,
.syt-detail--industry .syt-detail__grid > aside.syt-detail-panel .syt-placeholder-media--aside .syt-placeholder-fallback {
    height: 100%;
    object-fit: cover;
}

.syt-page-module--milestones .syt-signal-card strong,
.syt-page-module--milestones .syt-story-card strong {
    display: block;
    text-align: center;
}

.syt-phase-grid--stacked .syt-phase-card > strong:first-child,
.syt-phase-grid--stacked .syt-phase-card > .syt-phase-card__label {
    display: block;
    text-align: center;
}

.syt-richtext h2 {
    max-width: none;
}

.syt-richtext h2:has(+ p) {
    font-size: clamp(34px, 3.35vw, 52px);
    line-height: 1.08;
}

.syt-page-hero--quality-tight + .syt-section .syt-richtext h2,
.syt-section--about-content .syt-richtext h2 {
    max-width: none;
}

.syt-page-hero--quality-tight + .syt-section .syt-richtext h2 {
    font-size: clamp(34px, 3.15vw, 48px);
    line-height: 1.08;
}

.syt-section--about-content .syt-richtext h2 {
    font-size: clamp(34px, 3.2vw, 48px);
    line-height: 1.08;
}

@media (max-width: 991px) {
    .syt-section .syt-section__head + .syt-section-copy p {
        font-size: 16px;
    }

    .syt-page-hero--service-visual .syt-service-hero-title,
    .syt-section--why-syt .syt-section__head h2,
    .syt-richtext h2:has(+ p),
    .syt-page-hero--quality-tight + .syt-section .syt-richtext h2,
    .syt-section--about-content .syt-richtext h2 {
        font-size: clamp(30px, 8vw, 40px);
        line-height: 1.12;
    }

    .syt-section--service-entry-moved .syt-service-entry-card strong,
    .syt-section--service-entry-moved .syt-story-card strong {
        font-size: clamp(24px, 7vw, 30px);
    }

    .syt-detail--industry .syt-detail__grid > aside.syt-detail-panel .syt-placeholder-media--aside {
        min-height: 220px;
    }
}

/* 2026-07-02 final screenshot detail adjustment pass 4 */
.syt-page-hero--service-visual .syt-service-hero-title {
    font-size: clamp(40px, 3.25vw, 50px);
    line-height: 1.08;
}

.syt-section--service-entry-moved .syt-service-entry-card strong,
.syt-section--service-entry-moved .syt-story-card strong {
    font-size: clamp(22px, 1.72vw, 28px);
    line-height: 1.08;
}

.syt-section--why-syt .syt-section__head h2 {
    font-size: clamp(30px, 2.45vw, 38px);
    line-height: 1.08;
}

.syt-richtext h2.syt-richtext-title-nowrap {
    max-width: none;
}

@media (min-width: 992px) {
    .syt-section--why-syt .syt-section__head h2,
    .syt-richtext h2.syt-richtext-title-nowrap {
        white-space: nowrap;
    }

    .syt-richtext h2.syt-richtext-title-nowrap {
        font-size: clamp(30px, 2.72vw, 42px);
        line-height: 1.08;
    }

    .syt-detail--industry .syt-detail__grid {
        align-items: stretch;
    }

    .syt-detail--industry .syt-detail__grid > aside.syt-detail-panel {
        align-self: stretch;
        height: auto;
    }

    .syt-detail--industry .syt-detail__grid > aside.syt-detail-panel .syt-placeholder-media--aside {
        flex: 0 0 210px;
        height: 210px;
        min-height: 210px;
        max-height: 210px;
        margin-top: auto;
    }
}

@media (max-width: 991px) {
    .syt-page-hero--service-visual .syt-service-hero-title {
        font-size: clamp(31px, 8.2vw, 38px);
    }

    .syt-section--service-entry-moved .syt-service-entry-card strong,
    .syt-section--service-entry-moved .syt-story-card strong {
        font-size: clamp(22px, 6.2vw, 27px);
        white-space: normal;
    }

    .syt-section--why-syt .syt-section__head h2,
    .syt-richtext h2.syt-richtext-title-nowrap {
        white-space: normal;
    }
}

/* 2026-07-02 final screenshot detail adjustment pass 5 */
.syt-page-hero--service-visual .syt-service-hero-title {
    font-size: clamp(38px, 2.85vw, 44px);
}

@media (min-width: 992px) {
    .syt-detail--industry .syt-detail__grid > aside.syt-detail-panel {
        padding-bottom: 0;
    }

    .syt-detail--industry .syt-detail__grid > aside.syt-detail-panel .syt-placeholder-media--aside {
        flex-basis: 214px;
        height: 214px;
        min-height: 214px;
        max-height: 214px;
    }
}

@media (max-width: 991px) {
    .syt-page-hero--service-visual .syt-service-hero-title {
        font-size: clamp(30px, 7.6vw, 36px);
    }
}

/* 2026-07-02 contact and inquiry hero text closeout */
.syt-page-hero--contact-lead h1 {
    max-width: 1120px;
    font-size: clamp(32px, 3.1vw, 42px);
    line-height: 1.08;
}

.syt-page-hero--contact-lead > .syt-container > p {
    max-width: 1180px;
    font-size: clamp(16px, 1.15vw, 18px);
    line-height: 1.5;
}

.syt-page-hero--inquiry-lead {
    padding-top: 46px;
    padding-bottom: 34px;
}

.syt-page-hero--inquiry-lead > .syt-container {
    width: min(1180px, calc(100% - 48px));
}

.syt-page-hero--inquiry-lead h1 {
    max-width: 1120px;
    font-size: clamp(40px, 4.2vw, 58px);
    line-height: 1.05;
}

.syt-page-hero--inquiry-lead > .syt-container > p {
    max-width: 1180px;
    font-size: clamp(15px, 1.02vw, 18px);
    line-height: 1.45;
}

.syt-page-hero--inquiry-lead + .syt-form-shell {
    margin-top: 0;
}

@media (min-width: 992px) {
    .syt-page-hero--inquiry-lead > .syt-container > p {
        white-space: nowrap;
    }
}

@media (max-width: 991px) {
    .syt-page-hero--contact-lead h1 {
        font-size: clamp(30px, 8vw, 38px);
    }

    .syt-page-hero--contact-lead > .syt-container > p,
    .syt-page-hero--inquiry-lead > .syt-container > p {
        white-space: normal;
    }

    .syt-page-hero--inquiry-lead {
        padding-top: 34px;
        padding-bottom: 30px;
    }

    .syt-page-hero--inquiry-lead > .syt-container {
        width: min(100% - 28px, 1180px);
    }

    .syt-page-hero--inquiry-lead h1 {
        font-size: clamp(32px, 9vw, 42px);
    }
}

/* 2026-07-02 contact and inquiry hero text priority patch */
.syt-page-hero.syt-page-hero--contact-lead:not(.syt-hero):not(.syt-page-hero--workflow):not(.syt-page-hero--service-visual) h1 {
    max-width: 1120px;
    font-size: clamp(32px, 3.1vw, 42px);
    line-height: 1.08;
}

.syt-page-hero.syt-page-hero--contact-lead:not(.syt-hero):not(.syt-page-hero--workflow):not(.syt-page-hero--service-visual) > .syt-container > p {
    max-width: 1180px;
    font-size: clamp(16px, 1.15vw, 18px);
    line-height: 1.5;
}

.syt-page-hero.syt-page-hero--inquiry-lead:not(.syt-hero):not(.syt-page-hero--workflow):not(.syt-page-hero--service-visual) > .syt-container {
    width: min(1360px, calc(100% - 160px));
}

.syt-page-hero.syt-page-hero--inquiry-lead:not(.syt-hero):not(.syt-page-hero--workflow):not(.syt-page-hero--service-visual) h1 {
    max-width: 1120px;
    font-size: clamp(38px, 3.8vw, 56px);
    line-height: 1.05;
}

.syt-page-hero.syt-page-hero--inquiry-lead:not(.syt-hero):not(.syt-page-hero--workflow):not(.syt-page-hero--service-visual) > .syt-container > p {
    max-width: 1360px;
    font-size: clamp(14px, 0.92vw, 16px);
    line-height: 1.45;
}

@media (min-width: 992px) {
    .syt-page-hero.syt-page-hero--inquiry-lead:not(.syt-hero):not(.syt-page-hero--workflow):not(.syt-page-hero--service-visual) > .syt-container > p {
        white-space: nowrap;
    }
}

@media (max-width: 991px) {
    .syt-page-hero.syt-page-hero--contact-lead:not(.syt-hero):not(.syt-page-hero--workflow):not(.syt-page-hero--service-visual) h1,
    .syt-page-hero.syt-page-hero--inquiry-lead:not(.syt-hero):not(.syt-page-hero--workflow):not(.syt-page-hero--service-visual) h1 {
        font-size: clamp(30px, 8vw, 38px);
    }

    .syt-page-hero.syt-page-hero--inquiry-lead:not(.syt-hero):not(.syt-page-hero--workflow):not(.syt-page-hero--service-visual) > .syt-container {
        width: min(100% - 28px, 1180px);
    }
}

/* 2026-07-02 contact and home copy consistency closeout */
.syt-page-hero.syt-page-hero--contact-lead:not(.syt-hero):not(.syt-page-hero--workflow):not(.syt-page-hero--service-visual) h1 {
    max-width: 1180px;
    color: var(--syt-green-dark);
    font-family: "Georgia", "Times New Roman", serif;
    font-size: clamp(17px, 1.12vw, 18px);
    font-weight: 800;
    line-height: 1.55;
    letter-spacing: 0;
}

.syt-section--home-problem .syt-section__head {
    max-width: 1240px;
}

.syt-section--home-problem .syt-section__head p,
.syt-section--home-problem .syt-section-copy p {
    max-width: 1240px;
    color: #425064;
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.72;
}

.syt-section--home-problem .syt-section-copy {
    max-width: 1240px;
}

.syt-section.syt-section--home-problem .syt-section__head + .syt-section-copy p {
    font-size: 17px;
    line-height: 1.72;
}

@media (max-width: 991px) {
    .syt-page-hero.syt-page-hero--contact-lead:not(.syt-hero):not(.syt-page-hero--workflow):not(.syt-page-hero--service-visual) h1 {
        font-size: 16px;
        line-height: 1.55;
    }

    .syt-section--home-problem .syt-section__head p,
    .syt-section--home-problem .syt-section-copy p {
        font-size: 16px;
        line-height: 1.65;
    }

    .syt-section.syt-section--home-problem .syt-section__head + .syt-section-copy p {
        font-size: 16px;
        line-height: 1.65;
    }
}

/* 2026-07-02 CMS frontend unified Euclid font */
body.syt-site,
body.syt-site *:not(.fa):not([class^="fa-"]):not([class*=" fa-"]):not(.glyphicon):not([class^="glyphicon-"]):not([class*=" glyphicon-"]):not(.iconfont):not([class^="icon-"]):not([class*=" icon-"]):not(.social-share):not(.social-share *) {
    font-family: "SytEuclid", "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
}

body.syt-site input,
body.syt-site textarea,
body.syt-site select,
body.syt-site button,
body.syt-site option,
body.syt-site ::placeholder {
    font-family: "SytEuclid", "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
}
