:root {
    --bg: #d7e1e9;
    --bg-soft: #c8d5df;
    --panel: rgba(255, 255, 255, 0.82);
    --panel-strong: rgba(255, 255, 255, 0.96);
    --text: #101114;
    --muted: rgba(16, 17, 20, 0.64);
    --ink: #101114;
    --line: rgba(16, 17, 20, 0.09);
    --accent: #6e98b8;
    --accent-deep: #52738d;
    --accent-pale: #e3edf4;
    --shadow: 0 22px 50px rgba(15, 20, 27, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.75), transparent 0 22%),
    radial-gradient(circle at 82% 12%, rgba(113, 151, 179, 0.22), transparent 0 24%),
    linear-gradient(132deg, #eef4f8 0%, #d2dde6 18%, #c0ced9 34%, #edf3f7 52%, #b9c9d5 70%, #dbe6ee 100%);
}

body.is-splash-open,
body.is-contact-modal-open {
    overflow: hidden;
}

.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 260ms ease, visibility 260ms ease;
}

.splash-screen.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.splash-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.28), transparent 0 24%),
        linear-gradient(135deg, rgba(12, 16, 22, 0.78), rgba(55, 83, 105, 0.72));
    backdrop-filter: blur(14px);
}

.splash-card {
    position: relative;
    width: min(560px, calc((100vh - 68px) * 0.706), 94vw);
    padding: clamp(10px, 1.8vw, 18px);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: clamp(26px, 4vw, 44px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(234, 243, 249, 0.9));
    box-shadow: 0 34px 90px rgba(8, 15, 24, 0.38);
    transform: translateY(14px) scale(0.985);
    transition: transform 320ms ease;
}

.splash-screen.is-visible .splash-card {
    transform: translateY(0) scale(1);
}

.splash-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: clamp(18px, 3vw, 32px);
}

.splash-close {
    position: absolute;
    right: clamp(14px, 2.4vw, 26px);
    top: clamp(14px, 2.4vw, 26px);
    z-index: 2;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(16, 17, 20, 0.1);
    border-radius: 50%;
    color: #101114;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 24px rgba(15, 20, 27, 0.12);
    font: inherit;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease;
}

.splash-language {
    position: absolute;
    left: clamp(14px, 2.4vw, 26px);
    top: clamp(14px, 2.4vw, 26px);
    z-index: 2;
    display: inline-flex;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(16, 17, 20, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 24px rgba(15, 20, 27, 0.12);
    opacity: 0;
    transform: translateY(-3px);
    transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.splash-card:hover .splash-language,
.splash-card:focus-within .splash-language {
    opacity: 1;
    transform: translateY(0);
}

.splash-language-button {
    min-width: 38px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    color: rgba(16, 17, 20, 0.58);
    background: transparent;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease;
}

.splash-language-button:hover,
.splash-language-button:focus-visible {
    color: #101114;
    background: rgba(16, 17, 20, 0.06);
}

.splash-language-button.is-active {
    color: #ffffff;
    background: #101114;
}

.splash-close:hover,
.splash-close:focus-visible {
    transform: translateY(-1px);
    background: #ffffff;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 20;
    padding: 12px 16px;
    border-radius: 999px;
    color: #ffffff;
    background: #101114;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(115deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.08) 18%, transparent 34%, rgba(82, 115, 141, 0.14) 54%, transparent 70%, rgba(255, 255, 255, 0.34) 86%, transparent 100%),
        repeating-linear-gradient(102deg, rgba(255, 255, 255, 0.06) 0 2px, rgba(110, 152, 184, 0.035) 2px 8px, rgba(255, 255, 255, 0) 8px 20px);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 92%);
    opacity: 0.9;
    pointer-events: none;
}

.page-shell {
    position: relative;
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    padding: 24px 0 56px;
}

.site-header,
.site-footer,
.hero,
.content-grid,
.process-grid,
.digital-banner,
.contact-strip {
    position: relative;
    z-index: 1;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 24px;
    margin-bottom: 28px;
    border: 1px solid rgba(16, 17, 20, 0.08);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 40px rgba(15, 20, 27, 0.06);
    backdrop-filter: blur(10px);
}

.brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
}

.brand-logo {
    width: min(360px, 58vw);
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(108, 145, 173, 0.08));
}

.nav-toggle {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid rgba(16, 17, 20, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--text);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.nav-toggle-box {
    display: grid;
    gap: 4px;
}

.nav-toggle-line {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-text {
    font-size: 0.92rem;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.site-nav a,
.site-footer p {
    color: var(--muted);
}

.site-header .site-nav a {
    color: rgba(16, 17, 20, 0.68);
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-nav a {
    position: relative;
    padding-bottom: 3px;
    transition: color 180ms ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #161a20;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

a:focus-visible,
.button:focus-visible,
.nav-toggle:focus-visible {
    outline: 2px solid rgba(16, 17, 20, 0.9);
    outline-offset: 3px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.78fr);
    gap: 24px;
    align-items: stretch;
    padding: 10px 0 36px;
}

.hero-copy,
.hero-panel,
.content-card,
.digital-banner,
.contact-strip,
.process-card {
    border: 1px solid var(--line);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 72px 68px;
    border-radius: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(251, 251, 249, 0.92) 100%);
}

.eyebrow,
.section-label {
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(16, 17, 20, 0.42);
}

h1,
h2 {
    margin: 0;
    font-family: "Source Serif 4", serif;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
}

h1 {
    max-width: 13ch;
    font-size: clamp(2.7rem, 5.4vw, 4.6rem);
    line-height: 1.08;
}

h1 span {
    display: block;
    color: rgba(16, 17, 20, 0.52);
}

.hero-text,
.content-card p,
.metric-card p,
.process-card p,
.contact-strip p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

.hero-text {
    max-width: 38rem;
    margin: 28px 0 0;
    font-size: 1.12rem;
}

.hero-points {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.hero-points li {
    position: relative;
    padding-left: 24px;
    color: var(--muted);
    font-weight: 500;
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f3f5f7 0%, var(--accent) 100%);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.contact-copy {
    min-width: 0;
}

.contact-card {
    display: grid;
    gap: 18px;
    width: min(100%, 520px);
    padding: 24px;
    border: 1px solid rgba(16, 17, 20, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 34px rgba(15, 20, 27, 0.06);
}

.contact-mail {
    width: fit-content;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.contact-form-open,
.contact-mail {
    flex: 0 1 auto;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: clamp(16px, 3vw, 40px);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.contact-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 15, 18, 0.5);
    backdrop-filter: blur(10px);
}

.contact-modal-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 1120px);
    overflow: visible;
    padding: clamp(24px, 3vw, 40px);
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 32px;
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.94), transparent 0 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 252, 0.98));
    box-shadow: 0 30px 80px rgba(15, 20, 27, 0.24);
    transform: translateY(14px) scale(0.98);
    transition: transform 180ms ease;
}

.contact-modal.is-visible .contact-modal-panel {
    transform: translateY(0) scale(1);
}

.contact-modal-panel:focus {
    outline: none;
}

.contact-modal-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-modal-header h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.1rem);
}

.contact-modal-header .section-label {
    margin-bottom: 8px;
}

.contact-modal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border: 1px solid rgba(16, 17, 20, 0.1);
    border-radius: 50%;
    color: var(--text);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 22px rgba(15, 20, 27, 0.08);
    cursor: pointer;
    font-size: 1.55rem;
    line-height: 1;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-modal-close:hover,
.contact-modal-close:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(82, 115, 141, 0.24);
    box-shadow: 0 14px 26px rgba(15, 20, 27, 0.12);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-style: normal;
    padding: 16px 18px;
    border: 1px solid rgba(16, 17, 20, 0.1);
    border-radius: 22px;
    background: rgba(251, 252, 248, 0.98);
}

.contact-detail-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(16, 17, 20, 0.42);
}

.contact-details span {
    display: block;
    line-height: 1.55;
    color: var(--muted);
}

.contact-details strong {
    color: var(--text);
}

.contact-success {
    display: flex;
    gap: 14px;
    align-items: center;
    width: min(100%, 680px);
    margin: 22px auto 0;
    padding: 18px 20px;
    border: 1px solid rgba(55, 120, 84, 0.18);
    border-radius: 24px;
    color: #244535;
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.88), transparent 0 36%),
        linear-gradient(135deg, rgba(230, 246, 237, 0.98), rgba(248, 252, 246, 0.98));
    box-shadow: 0 18px 42px rgba(55, 120, 84, 0.12);
    opacity: 0;
    transform: translateY(14px) scale(0.98);
    transition: opacity 240ms ease, transform 240ms ease;
}

.contact-success[hidden] {
    display: none;
}

.contact-success.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.contact-success:focus {
    outline: none;
}

.contact-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #ffffff;
    background: #244535;
    box-shadow: 0 10px 24px rgba(55, 120, 84, 0.22);
}

.contact-success-icon svg {
    width: 24px;
    height: 24px;
    overflow: visible;
}

.contact-success-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 24;
    stroke-dashoffset: 24;
}

.contact-success.is-visible .contact-success-icon path {
    animation: contact-success-check 520ms 120ms ease forwards;
}

.contact-success strong,
.contact-success span {
    display: block;
}

.contact-success strong {
    margin-bottom: 2px;
    color: #244535;
    font-size: 1rem;
}

.contact-success span {
    color: rgba(36, 69, 53, 0.76);
    font-weight: 600;
    line-height: 1.5;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
    padding: clamp(20px, 2.4vw, 30px);
    border: 1px solid rgba(16, 17, 20, 0.1);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(244, 249, 252, 0.98), rgba(251, 252, 248, 0.98));
}

.contact-form > .contact-form-title,
.contact-form > .form-grid-two,
.contact-form > .form-row:has(select),
.contact-form > .form-row:has(textarea),
.contact-form > .form-honeypot,
.contact-form > .form-consent,
.contact-form > .cf-turnstile,
.contact-form > .form-status,
.contact-form > .contact-submit {
    grid-column: 1 / -1;
}

.contact-form-title {
    margin: 0;
    color: var(--text) !important;
    font-size: 1rem !important;
    font-weight: 800;
    line-height: 1.35 !important;
}

.form-grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
}

.form-row {
    display: grid;
    gap: 7px;
}

.form-row label,
.form-consent {
    color: rgba(16, 17, 20, 0.72);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.45;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    border: 1px solid rgba(16, 17, 20, 0.12);
    border-radius: 14px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.9);
    font: inherit;
    font-size: 0.95rem;
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.form-row input,
.form-row select {
    min-height: 44px;
    padding: 0 14px;
}

.form-row textarea {
    min-height: 92px;
    padding: 12px 14px;
    resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: rgba(82, 115, 141, 0.5);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(110, 152, 184, 0.14);
}

.form-consent {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
}

.form-consent input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: #101114;
}

.form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    display: none;
    margin: 0;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 0.92rem !important;
    font-weight: 700;
    line-height: 1.5 !important;
}

.form-status.is-visible {
    display: block;
}

.form-status.is-success {
    color: #244535 !important;
    background: rgba(128, 181, 154, 0.2);
    border: 1px solid rgba(55, 120, 84, 0.18);
}

.form-status.is-error {
    color: #6e2d2d !important;
    background: rgba(190, 96, 96, 0.14);
    border: 1px solid rgba(150, 52, 52, 0.16);
}

.contact-submit {
    width: fit-content;
    justify-self: end;
    cursor: pointer;
}

@keyframes contact-success-check {
    to {
        stroke-dashoffset: 0;
    }
}

.contact-submit:disabled {
    cursor: wait;
    opacity: 0.68;
    transform: none;
}


.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: #fff;
    background: linear-gradient(180deg, #15171a 0%, #101114 100%);
    box-shadow: 0 12px 24px rgba(16, 17, 20, 0.16);
}

.button-secondary {
    color: var(--text);
    border-color: rgba(16, 17, 20, 0.12);
    background: rgba(255, 255, 255, 0.82);
}

.hero-panel {
    display: grid;
    gap: 16px;
    align-content: start;
    padding: 20px;
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(251, 251, 249, 0.88) 0%, rgba(244, 245, 241, 0.94) 100%);
}

.metric-card {
    padding: 26px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(16, 17, 20, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    border-color: rgba(82, 115, 141, 0.18);
    box-shadow: 0 18px 36px rgba(15, 20, 27, 0.08);
}

.metric-card > p:last-child {
    margin-bottom: 0;
}

.metric-label {
    margin: 0 0 10px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(16, 17, 20, 0.4);
}

.metric-value {
    display: block;
    margin-bottom: 12px;
    font-size: 1.8rem;
    font-weight: 800;
    color: #101114;
}

.metric-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.metric-heading .metric-label {
    margin-bottom: 6px;
}

.metric-heading .metric-value {
    margin-bottom: 0;
}

.metric-avatar {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 22px rgba(82, 115, 141, 0.16);
}

.metric-card-mikes {
    background:
        radial-gradient(circle at 92% 8%, rgba(110, 152, 184, 0.18), transparent 0 32%),
        linear-gradient(180deg, rgba(241, 247, 251, 0.96) 0%, rgba(233, 240, 246, 0.92) 100%);
}

.metric-card-banner {
    display: block;
    width: 100%;
    margin: 0;
    padding: 14px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 253, 0.9));
    box-shadow: 0 16px 34px rgba(15, 20, 27, 0.06);
}

.metric-card-banner img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(82, 115, 141, 0.08);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.digital-banner {
    display: block;
    margin-top: -10px;
    padding: clamp(10px, 1.4vw, 16px);
    border-radius: 36px;
    background:
        radial-gradient(circle at 14% 8%, rgba(255, 255, 255, 0.82), transparent 0 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 241, 247, 0.9));
    overflow: hidden;
}

.digital-banner-visual {
    margin: 0;
    border-radius: 26px;
    background: transparent;
}

.digital-banner-visual img {
    display: block;
    width: 100%;
    aspect-ratio: 1650 / 953;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(15, 20, 27, 0.1);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.content-card {
    padding: 42px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.82);
}

.process-card {
    padding: 32px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.84);
}

.process-card h2 {
    font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.process-card p:last-child {
    margin-bottom: 0;
}

.content-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    max-width: 14ch;
}

.accent-card {
    color: var(--ink);
    background: linear-gradient(180deg, rgba(241, 247, 251, 0.96) 0%, rgba(232, 239, 244, 0.92) 100%);
}

.accent-card .section-label,
.accent-card p {
    color: rgba(16, 17, 20, 0.68);
}

.service-list {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.service-list li {
    position: relative;
    margin-bottom: 16px;
    padding-left: 28px;
    line-height: 1.6;
    color: var(--text);
    font-weight: 500;
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-pale) 0%, var(--accent) 100%);
    box-shadow: 0 0 0 6px rgba(139, 160, 177, 0.1);
}

.contact-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
    align-items: center;
    gap: 40px;
    margin-top: 24px;
    padding: 42px 46px;
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(247, 248, 245, 0.92) 100%);
}

.contact-strip h2 {
    max-width: 12ch;
    font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.contact-copy p:last-child {
    max-width: 34rem;
    margin: 18px 0 0;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 6px 0;
    font-size: 0.95rem;
}

.reveal {
    opacity: 1;
    transform: translateY(0);
}

html.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 500ms ease, transform 500ms ease;
}

html.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 120ms;
}

.reveal-delay-2 {
    transition-delay: 220ms;
}

@media (max-width: 960px) {
    .page-shell {
        width: min(100% - 24px, 1200px);
    }

    .contact-strip,
    .site-footer,
    .hero,
    .content-grid,
    .digital-banner,
    .process-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .site-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 16px;
        width: 100%;
    }

    .hero-copy,
    .hero-panel,
    .content-card,
    .digital-banner,
    .process-card,
    .contact-strip {
        width: 100%;
    }

    .site-nav {
        gap: 14px;
    }

    .site-header {
        padding: 18px 20px;
    }

    html.js .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 6px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .site-nav a {
        padding: 14px 0;
        border-top: 1px solid rgba(16, 17, 20, 0.08);
    }

    .site-nav a::after {
        display: none;
    }

    html.js .site-nav {
        max-height: 0;
        margin-top: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transition: max-height 220ms ease, opacity 180ms ease, margin-top 180ms ease;
    }

    html.js .site-header.is-menu-open .site-nav {
        max-height: 320px;
        margin-top: 6px;
        opacity: 1;
        pointer-events: auto;
    }

    html.js .site-header.is-menu-open .nav-toggle-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    html.js .site-header.is-menu-open .nav-toggle-line:nth-child(2) {
        opacity: 0;
    }

    html.js .site-header.is-menu-open .nav-toggle-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .brand {
        padding: 0;
    }

    .hero-copy {
        padding: 42px 30px;
    }

    .content-card,
    .digital-banner,
    .process-card,
    .contact-strip {
        padding: 30px 24px;
    }

    .digital-banner {
        padding: 10px;
    }

    .site-footer {
        padding-bottom: 10px;
    }

    .contact-card {
        width: 100%;
    }

    .contact-modal {
        align-items: start;
    }

    .contact-modal-panel {
        width: min(100%, 900px);
    }
}

@media (max-width: 760px) {
    .contact-form,
    .form-grid-two {
        grid-template-columns: 1fr;
    }

    .contact-submit {
        width: 100%;
        justify-self: stretch;
    }
}

@media (max-width: 640px) {
    .page-shell {
        width: min(100% - 18px, 1200px);
        padding-top: 18px;
    }

    .brand {
        padding: 0;
    }

    .brand-logo {
        width: min(290px, 78vw);
    }

    .nav-toggle {
        padding: 9px 12px;
    }

    .nav-toggle-text {
        font-size: 0.88rem;
    }

    h1 {
        max-width: none;
    }

    .hero-copy {
        padding: 34px 24px;
    }

    .contact-strip {
        padding: 34px 24px;
    }

    .contact-card,
    .contact-form {
        padding: 18px;
    }

    .contact-actions {
        align-items: stretch;
    }

    .contact-form-open,
    .contact-mail {
        width: 100%;
    }

    .contact-modal {
        align-items: stretch;
        padding: 0;
    }

    .contact-modal-panel {
        width: 100%;
        min-height: 100dvh;
        max-height: none;
        padding: 22px 18px;
        border-radius: 0;
        border-width: 0;
    }

    .contact-modal-header {
        position: sticky;
        top: 0;
        z-index: 2;
        margin: -22px -18px 16px;
        padding: 18px;
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(16, 17, 20, 0.08);
    }

    .form-grid-two {
        grid-template-columns: 1fr;
    }

    .digital-banner {
        padding: 8px;
        border-radius: 30px;
    }

    .digital-banner-visual {
        border-radius: 24px;
    }

    .digital-banner-visual img {
        border-radius: 18px;
    }

    .metric-avatar {
        width: 52px;
        height: 52px;
    }

    .site-footer {
        font-size: 0.88rem;
    }

    .splash-screen {
        padding: 14px;
    }

    .splash-close {
        width: 40px;
        height: 40px;
        font-size: 1.45rem;
    }

    .splash-language {
        opacity: 1;
        transform: none;
    }

    .splash-language-button {
        min-width: 34px;
        height: 30px;
        font-size: 0.72rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html.js .reveal {
        opacity: 1;
        transform: none;
    }

    .splash-screen,
    .splash-card {
        transition-duration: 0.01ms !important;
    }
}
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    width: 100%;
}

.lang-switch a {
    font-size: 0.85rem;
    padding: 6px 12px !important;
    border-radius: 999px;
    border: 1px solid rgba(16, 17, 20, 0.12);
    font-weight: 700;
    transition: background 180ms ease;
    padding-bottom: 6px !important; /* overriding the 3px from .site-nav a */
}

.lang-switch a::after {
    display: none;
}

.lang-switch a:hover {
    background: rgba(16, 17, 20, 0.04);
}

.lang-switch a.active {
    background: #101114;
    color: #fff !important;
    border-color: transparent;
}
