:root {
    --ws-bg: #131314;
    --ws-bg-soft: #181a1e;
    --ws-bg-strong: #0f1012;
    --ws-surface: #1f2228;
    --ws-line: rgba(255, 255, 255, 0.14);
    --ws-line-soft: rgba(255, 255, 255, 0.08);
    --ws-text: #eef0f3;
    --ws-text-soft: #b3bac4;
    --ws-accent: #ff6b00;
    --ws-accent-dark: #cc5300;
    --ws-secondary: #0055a4;
    --ws-radius: 14px;
    --ws-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body.ws-body {
    background:
        radial-gradient(1100px 550px at 85% -10%, rgba(0, 85, 164, 0.2), transparent 60%),
        radial-gradient(850px 500px at 0% 0%, rgba(255, 107, 0, 0.12), transparent 60%),
        var(--ws-bg);
    color: var(--ws-text);
    font-family: "Inter", system-ui, sans-serif;
    line-height: 1.6;
}

body.ws-nav-open {
    overflow: hidden;
}

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

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

.ws-container {
    width: min(1220px, calc(100% - 3rem));
    margin: 0 auto;
}

.ws-main {
    min-height: 60vh;
}

.ws-section {
    padding: 4.75rem 0;
    position: relative;
}

.ws-section-dark {
    background: linear-gradient(180deg, rgba(13, 14, 16, 0.96), rgba(19, 20, 22, 0.96));
}

.ws-section-accent {
    background: linear-gradient(130deg, rgba(255, 107, 0, 0.16), rgba(0, 85, 164, 0.18));
}

.ws-kicker,
.ws-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid var(--ws-line);
    border-radius: 999px;
    padding: 0.4rem 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.7rem;
    color: #d2d8e0;
    margin-bottom: 1rem;
}

.ws-kicker::before,
.ws-pill::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 99px;
    background: var(--ws-accent);
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.15;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 4.3rem);
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
}

h3 {
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
}

p {
    margin: 0;
}

.ws-section-intro {
    color: var(--ws-text-soft);
    max-width: 65ch;
    margin-top: 0.85rem;
}

.ws-blueprint-line {
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.7), transparent);
    opacity: 0.5;
}

.ws-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(14px);
    background: rgba(10, 11, 13, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ws-header-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 82px;
}

.ws-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.ws-brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.ws-brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.ws-brand-text strong {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ws-brand-text em {
    font-size: 0.73rem;
    color: var(--ws-text-soft);
    font-style: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ws-nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    margin-left: auto;
}

.ws-nav-link {
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #cfd6de;
    padding: 0.55rem 0.75rem;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.ws-nav-link:hover {
    border-color: var(--ws-line);
    background: rgba(255, 255, 255, 0.04);
}

.ws-nav-link.is-active {
    color: #fff;
    border-color: rgba(255, 107, 0, 0.5);
    background: rgba(255, 107, 0, 0.12);
}

.ws-header-cta {
    margin-left: 0.25rem;
}

.ws-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 12px;
    border: 1px solid var(--ws-line);
    padding: 0.78rem 1.15rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.ws-btn:hover {
    transform: translateY(-1px);
}

.ws-btn:active {
    transform: translateY(0);
}

.ws-btn-small {
    padding: 0.62rem 0.9rem;
    font-size: 0.82rem;
}

.ws-btn-accent {
    background: linear-gradient(135deg, var(--ws-accent), #ff8f42);
    color: #1a120b;
    border-color: rgba(255, 183, 145, 0.9);
}

.ws-btn-accent:hover {
    background: linear-gradient(135deg, #ff7a1f, #ff9c57);
}

.ws-btn-ghost {
    background: rgba(255, 255, 255, 0.02);
    color: #f3f6fa;
}

.ws-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #ffd2b5;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.ws-inline-link::after {
    content: "→";
    transform: translateX(0);
    transition: transform 0.2s ease;
}

.ws-inline-link:hover::after {
    transform: translateX(2px);
}

.ws-nav-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--ws-line);
    background: rgba(255, 255, 255, 0.02);
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.ws-nav-toggle span {
    width: 18px;
    height: 2px;
    background: #edf0f4;
    border-radius: 10px;
    transition: transform 0.26s ease, opacity 0.2s ease;
}

.ws-nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ws-nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.ws-nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.ws-mobile-nav {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.32s ease, opacity 0.24s ease;
    border-top: 1px solid transparent;
}

.ws-mobile-nav.is-open {
    max-height: 520px;
    opacity: 1;
    border-top-color: var(--ws-line-soft);
}

.ws-mobile-nav-inner {
    width: min(1220px, calc(100% - 3rem));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.9rem 0 1.2rem;
}

.ws-mobile-link {
    border-radius: 10px;
    border: 1px solid transparent;
    padding: 0.8rem 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.82rem;
    color: #d0d6dd;
}

.ws-mobile-link.is-active {
    border-color: rgba(255, 107, 0, 0.5);
    background: rgba(255, 107, 0, 0.12);
    color: #fff;
}

.ws-mobile-cta {
    padding-top: 0.65rem;
}

.ws-hero {
    border: 1px solid var(--ws-line-soft);
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(25, 27, 32, 0.96), rgba(13, 14, 16, 0.96));
    padding: clamp(1.5rem, 5vw, 4rem);
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: end;
}

.ws-blueprint-layer {
    position: absolute;
    inset: 0;
    opacity: 0.85;
    pointer-events: none;
}

.ws-blueprint-layer svg {
    width: 100%;
    height: 100%;
}

.ws-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.ws-hero h1 {
    display: grid;
    gap: 0.35rem;
}

.ws-hero h1 strong {
    color: #ffc6a0;
}

.ws-hero p {
    color: #d1d8e1;
    margin-top: 1rem;
    max-width: 62ch;
}

.ws-hero-actions,
.ws-page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.45rem;
}

.ws-hero-metric {
    position: relative;
    z-index: 1;
    border: 1px solid var(--ws-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.25rem;
}

.ws-hero-metric span {
    display: block;
    color: #b6bdc8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.73rem;
}

.ws-hero-metric strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.5rem;
    margin-top: 0.4rem;
    display: block;
}

.ws-page-hero {
    border: 1px solid var(--ws-line-soft);
    border-radius: 18px;
    background: linear-gradient(150deg, rgba(29, 32, 39, 0.86), rgba(16, 17, 20, 0.86));
    padding: clamp(1.4rem, 3vw, 2.8rem);
}

.ws-page-hero p {
    color: var(--ws-text-soft);
    margin-top: 0.8rem;
    max-width: 72ch;
}

.ws-section-hero {
    padding-top: 2rem;
    padding-bottom: 3.2rem;
}

.ws-section-hero-small {
    padding-top: 2.2rem;
    padding-bottom: 1.4rem;
}

.ws-trust h2 {
    margin-bottom: 1.35rem;
}

.ws-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.ws-trust-item {
    border: 1px solid var(--ws-line-soft);
    border-radius: 14px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
}

.ws-trust-icon {
    width: 2rem;
    height: 2rem;
    color: #ffb785;
    display: inline-flex;
}

.ws-trust-icon svg {
    width: 100%;
    height: 100%;
}

.ws-trust-item h3 {
    margin-top: 0.6rem;
    font-size: 1.02rem;
}

.ws-trust-item p {
    margin-top: 0.35rem;
    color: var(--ws-text-soft);
}

.ws-services h2,
.ws-stats h2,
.ws-references h2,
.ws-process h2,
.ws-qualifications h2 {
    margin-bottom: 0.35rem;
}

.ws-services-grid,
.ws-stats-grid,
.ws-process-grid,
.ws-qualifications-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.4rem;
}

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

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

.ws-service-card,
.ws-stat-item,
.ws-process-item,
.ws-qualification-item,
.ws-about-point {
    border: 1px solid var(--ws-line-soft);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
}

.ws-service-card {
    padding: 1.1rem;
    display: grid;
    gap: 0.6rem;
}

.ws-service-card header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.ws-service-code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    color: #d5af92;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.ws-service-icon {
    width: 1.7rem;
    height: 1.7rem;
    color: #ffd2b6;
}

.ws-service-icon svg {
    width: 100%;
    height: 100%;
}

.ws-service-card p {
    color: var(--ws-text-soft);
}

.ws-service-card small {
    color: #9ba4b1;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.7rem;
}

.ws-stat-item {
    padding: 1.25rem;
}

.ws-stat-item strong {
    font-family: "Space Grotesk", sans-serif;
    color: #ffc59d;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    display: block;
}

.ws-stat-item h3 {
    margin-top: 0.35rem;
}

.ws-stat-item p {
    margin-top: 0.4rem;
    color: var(--ws-text-soft);
}

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

.ws-references-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.4rem;
}

.ws-reference-card {
    border: 1px solid var(--ws-line-soft);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.ws-reference-media {
    display: block;
    aspect-ratio: 16/11;
    background: #0f1013;
    overflow: hidden;
}

.ws-reference-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ws-reference-content {
    padding: 1rem;
    display: grid;
    gap: 0.45rem;
}

.ws-reference-category {
    color: #f0b68e;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ws-reference-content p,
.ws-reference-content blockquote {
    color: var(--ws-text-soft);
    margin: 0;
}

.ws-reference-result {
    color: #fff2e6;
    font-size: 0.9rem;
}

.ws-reference-content cite {
    color: #9ba4b0;
    font-style: normal;
    font-size: 0.78rem;
}

.ws-empty-note {
    margin-top: 1.2rem;
    padding: 0.95rem 1rem;
    border-radius: 12px;
    border: 1px dashed var(--ws-line);
    color: var(--ws-text-soft);
}

.ws-cta {
    border: 1px solid var(--ws-line-soft);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    padding: clamp(1.2rem, 3vw, 2rem);
    display: grid;
    gap: 0.75rem;
    justify-items: start;
}

.ws-cta.is-accent {
    background: linear-gradient(130deg, rgba(255, 107, 0, 0.24), rgba(0, 85, 164, 0.24));
    border-color: rgba(255, 187, 146, 0.45);
}

.ws-cta p {
    color: #dce2ea;
    max-width: 70ch;
}

.ws-about {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.2rem;
    align-items: stretch;
}

.ws-about-media {
    border-radius: 16px;
    border: 1px solid var(--ws-line-soft);
    overflow: hidden;
    min-height: 100%;
}

.ws-about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ws-about-content {
    border: 1px solid var(--ws-line-soft);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.25rem;
}

.ws-about-lead {
    margin-top: 0.65rem;
    color: #dce2eb;
}

.ws-about-content > p:last-of-type {
    margin-top: 0.7rem;
    color: var(--ws-text-soft);
}

.ws-about-points {
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
}

.ws-about-point {
    padding: 0.85rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
}

.ws-about-point-icon {
    width: 1.4rem;
    height: 1.4rem;
    color: #ffba8d;
}

.ws-about-point-icon svg {
    width: 100%;
    height: 100%;
}

.ws-about-point p {
    color: var(--ws-text-soft);
    margin-top: 0.25rem;
}

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

.ws-process-item {
    padding: 1rem;
}

.ws-process-step {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    color: #ffd3b7;
    letter-spacing: 0.09em;
    font-size: 0.78rem;
}

.ws-process-item h3 {
    margin-top: 0.45rem;
}

.ws-process-item p {
    margin-top: 0.35rem;
    color: var(--ws-text-soft);
}

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

.ws-qualification-item {
    padding: 1rem;
}

.ws-qualification-icon {
    width: 1.65rem;
    height: 1.65rem;
    color: #ffd3b8;
    display: inline-flex;
}

.ws-qualification-icon svg {
    width: 100%;
    height: 100%;
}

.ws-qualification-item p {
    margin-top: 0.5rem;
    color: var(--ws-text-soft);
}

.ws-qualification-item small {
    display: block;
    margin-top: 0.55rem;
    color: #9ba5b2;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.ws-contact {
    display: grid;
    gap: 1.1rem;
}

.ws-contact-head p {
    margin-top: 0.5rem;
    color: var(--ws-text-soft);
}

.ws-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1rem;
}

.ws-contact-col {
    min-width: 0;
}

.ws-contact-info,
.ws-form-wrap {
    border: 1px solid var(--ws-line-soft);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.15rem;
}

.ws-contact-info h3 {
    margin-bottom: 0.45rem;
}

.ws-contact-info > p {
    color: var(--ws-text-soft);
    margin-bottom: 1rem;
}

.ws-contact-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.6rem;
    align-items: start;
    margin-top: 0.75rem;
}

.ws-contact-icon {
    width: 1.2rem;
    height: 1.2rem;
    color: #ffd2b8;
    margin-top: 0.15rem;
}

.ws-contact-icon svg {
    width: 100%;
    height: 100%;
}

.ws-contact-map-link {
    margin-top: 1rem;
}

.ws-form {
    display: grid;
    gap: 0.9rem;
}

.ws-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.ws-form label {
    display: grid;
    gap: 0.35rem;
    font-size: 0.86rem;
}

.ws-form label > span {
    color: #d5dce6;
    font-weight: 600;
}

.ws-field-full {
    grid-column: 1 / -1;
}

.ws-form input[type="text"],
.ws-form input[type="email"],
.ws-form input[type="tel"],
.ws-form textarea,
.ws-form select {
    width: 100%;
    border-radius: 11px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(13, 14, 17, 0.85);
    color: #f1f3f7;
    font-size: 0.95rem;
    padding: 0.72rem 0.82rem;
    font-family: inherit;
}

.ws-form textarea {
    resize: vertical;
}

.ws-form input:focus,
.ws-form textarea:focus,
.ws-form select:focus {
    outline: none;
    border-color: rgba(255, 146, 83, 0.9);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.16);
}

.ws-select {
    position: relative;
}

.ws-select-trigger {
    width: 100%;
    border-radius: 11px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(13, 14, 17, 0.85);
    color: #f1f3f7;
    font-size: 0.95rem;
    padding: 0.72rem 0.82rem;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
}

.ws-select-trigger:focus {
    outline: none;
    border-color: rgba(255, 146, 83, 0.9);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.16);
}

.ws-select-trigger span:first-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ws-select-chev {
    width: 0.6rem;
    height: 0.6rem;
    border-right: 2px solid #ffc5a3;
    border-bottom: 2px solid #ffc5a3;
    transform: translateY(-20%) rotate(45deg);
    transition: transform 0.2s ease;
    flex: none;
}

.ws-select.is-open .ws-select-chev {
    transform: translateY(15%) rotate(225deg);
}

.ws-select-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.45rem);
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: #111318;
    box-shadow: var(--ws-shadow);
    padding: 0.35rem;
    display: none;
    max-height: 15rem;
    overflow: auto;
}

.ws-select.is-open .ws-select-panel {
    display: grid;
    gap: 0.2rem;
}

.ws-select-option {
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    color: #edf0f4;
    padding: 0.72rem 0.8rem;
    border-radius: 11px;
    cursor: pointer;
    font: inherit;
}

.ws-select-option:hover,
.ws-select-option:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    outline: none;
}

.ws-select-option.is-selected {
    background: rgba(255, 107, 0, 0.16);
    color: #fff;
}

.ws-checkbox {
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 0.55rem;
    color: var(--ws-text-soft);
}

.ws-checkbox input {
    margin-top: 0.18rem;
}

.ws-form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}

.ws-form-message {
    margin: 0;
    min-height: 1.35em;
    font-size: 0.86rem;
}

.ws-form-message.is-success {
    color: #9ef8c2;
}

.ws-form-message.is-error {
    color: #ffb2a8;
}

.ws-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.ws-footer {
    border-top: 1px solid var(--ws-line-soft);
    background: linear-gradient(180deg, rgba(11, 12, 14, 0.96), rgba(7, 8, 10, 0.96));
    margin-top: 2.5rem;
}

.ws-footer-inner {
    padding: 2.2rem 0 1.5rem;
    display: grid;
    gap: 1.3rem;
}

.ws-footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 1rem;
}

.ws-footer-brand p {
    margin-top: 0.7rem;
    color: var(--ws-text-soft);
    max-width: 65ch;
}

.ws-footer-contact {
    display: grid;
    gap: 0.35rem;
}

.ws-footer-bottom {
    border-top: 1px solid var(--ws-line-soft);
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: center;
}

.ws-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.85rem;
}

.ws-footer-link {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.74rem;
    color: #ccd3dd;
}

.ws-footer-link:hover {
    color: #fff;
}

.ws-footer-legal {
    color: #96a0ae;
    font-size: 0.78rem;
}

.ws-turnstile {
    margin-top: 0.2rem;
}

.ws-error-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem 1rem;
}

.ws-error-box {
    border: 1px solid var(--ws-line-soft);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    width: min(560px, 100%);
    padding: 1.5rem;
    display: grid;
    gap: 0.8rem;
}

.ws-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 1120px) {
    .ws-references-grid,
    .ws-process-grid,
    .ws-qualifications-grid,
    .ws-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ws-about {
        grid-template-columns: 1fr;
    }

    .ws-contact-grid {
        grid-template-columns: 1fr;
    }

    .ws-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .ws-hero-metric {
        max-width: 360px;
    }
}

@media (max-width: 900px) {
    .ws-nav-desktop,
    .ws-header-cta {
        display: none;
    }

    .ws-nav-toggle {
        display: inline-flex;
    }

    .ws-container {
        width: min(1220px, calc(100% - 2rem));
    }

    .ws-section {
        padding: 3.8rem 0;
    }

    .ws-trust-grid,
    .ws-services-grid-2,
    .ws-services-grid-3,
    .ws-references-grid,
    .ws-process-grid,
    .ws-qualifications-grid,
    .ws-stats-grid {
        grid-template-columns: 1fr;
    }

    .ws-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ws-header-inner {
        min-height: 74px;
    }

    .ws-brand-text em {
        display: none;
    }

    .ws-footer-main {
        grid-template-columns: 1fr;
    }
}
