:root {
    --black: #090909;
    --ink: #1c1d20;
    --grey-900: #2a2c30;
    --grey-700: #565a62;
    --grey-200: #e7e8ea;
    --grey-100: #f5f5f6;
    --white: #ffffff;
    --red: #c91421;
    --red-dark: #9f0f19;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

main {
    animation: pageContentIn 420ms ease-out both;
}

@keyframes pageContentIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.site-header {
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--grey-200);
    display: flex;
    gap: 32px;
    justify-content: space-between;
    min-height: 98px;
    overflow: visible;
    padding: 22px clamp(28px, 5vw, 76px) 0;
    position: sticky;
    top: 0;
    z-index: 20;
}

.brand {
    display: block;
    margin-bottom: -72px;
    position: relative;
    z-index: 24;
}

.brand img {
    display: block;
    height: clamp(118px, 9vw, 150px);
    max-width: 280px;
    object-fit: contain;
}

.site-nav {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 4px;
}

.site-nav a {
    border-radius: 4px;
    color: var(--grey-700);
    font-size: 14px;
    font-weight: 700;
    padding: 9px 12px;
}


.language-switcher {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    margin-left: 8px;
}

.site-nav a.language-flag {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 999px;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    padding: 0;
    width: 40px;
}

.site-nav a.language-flag:hover,
.site-nav a.language-flag.is-active {
    background: var(--black);
    border-color: var(--black);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.flag-icon {
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.14);
    display: block;
    height: 24px;
    overflow: hidden;
    position: relative;
    width: 24px;
}

.flag-icon-pl {
    background: linear-gradient(to bottom, #ffffff 0 50%, #dc143c 50% 100%);
}

.flag-icon-gb {
    background: #012169;
}

.flag-icon-gb::before {
    background:
        linear-gradient(27deg, transparent 0 42%, #ffffff 42% 49%, #c8102e 49% 55%, #ffffff 55% 62%, transparent 62% 100%),
        linear-gradient(153deg, transparent 0 42%, #ffffff 42% 49%, #c8102e 49% 55%, #ffffff 55% 62%, transparent 62% 100%);
    content: "";
    inset: 0;
    position: absolute;
}

.flag-icon-gb::after {
    background:
        linear-gradient(to right, transparent 0 38%, #ffffff 38% 45%, #c8102e 45% 55%, #ffffff 55% 62%, transparent 62% 100%),
        linear-gradient(to bottom, transparent 0 38%, #ffffff 38% 45%, #c8102e 45% 55%, #ffffff 55% 62%, transparent 62% 100%);
    content: "";
    inset: 0;
    position: absolute;
}

.visually-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}
.site-nav a:hover,
.site-nav a.is-active {
    background: var(--black);
    color: var(--white);
}

.hero {
    background:
        linear-gradient(115deg, rgba(9, 9, 9, 0.94), rgba(42, 44, 48, 0.88)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 92px);
    color: var(--white);
    display: grid;
    gap: clamp(28px, 6vw, 80px);
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
    min-height: 620px;
    padding: clamp(64px, 9vw, 132px) clamp(20px, 5vw, 72px) 72px;
}

.hero-home {
    background:
        linear-gradient(90deg, rgba(9, 9, 9, 0.92) 0%, rgba(9, 9, 9, 0.78) 42%, rgba(9, 9, 9, 0.22) 74%, rgba(9, 9, 9, 0.08) 100%),
        var(--hero-image) center / cover no-repeat;
}

.hero-services {
    background:
        linear-gradient(90deg, rgba(9, 9, 9, 0.94) 0%, rgba(9, 9, 9, 0.76) 44%, rgba(9, 9, 9, 0.28) 78%, rgba(9, 9, 9, 0.14) 100%),
        var(--hero-image) center / cover no-repeat;
}

.hero-image-page {
    background:
        linear-gradient(90deg, rgba(9, 9, 9, 0.94) 0%, rgba(9, 9, 9, 0.74) 44%, rgba(9, 9, 9, 0.28) 78%, rgba(9, 9, 9, 0.12) 100%),
        var(--hero-image) center / cover no-repeat;
}

.hero-home,
.hero-services,
.hero-image-page {
    overflow: hidden;
    position: relative;
}

.hero-home .hero-copy,
.hero-services .hero-copy,
.hero-image-page .hero-copy,
.hero-panel {
    position: relative;
    z-index: 2;
}

.hero-image-card {
    align-self: end;
    aspect-ratio: 4 / 3;
    background: var(--hero-image) center / cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
    display: none;
    min-height: 260px;
}

.hero-edge-glow {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.42)) drop-shadow(0 0 18px rgba(255, 255, 255, 0.22));
    height: 100%;
    inset: 0;
    opacity: 0.76;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.hero-edge-glow path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-edge-glow-track {
    animation: terminalScreenBreath 4.8s ease-in-out infinite;
    opacity: 0.12;
    stroke: rgba(255, 255, 255, 0.45);
    stroke-width: 1.1;
}

.hero-edge-glow-soft {
    animation: terminalEdgeTrace 5.6s cubic-bezier(0.66, 0, 0.2, 1) 1.2s infinite;
    filter: blur(4px);
    opacity: 0.64;
    stroke: rgba(255, 255, 255, 0.72);
    stroke-dasharray: 120 1540;
    stroke-dashoffset: 1540;
    stroke-width: 8;
}

.hero-edge-glow-line {
    animation: terminalEdgeTrace 5.6s cubic-bezier(0.66, 0, 0.2, 1) 1.2s infinite;
    opacity: 0.82;
    stroke: rgba(255, 255, 255, 0.9);
    stroke-dasharray: 92 1540;
    stroke-dashoffset: 1540;
    stroke-width: 2.1;
}

html[data-turbo-preview] .hero-edge-glow {
    display: none;
}

@keyframes terminalEdgeTrace {
    0% {
        opacity: 0;
        stroke-dashoffset: 1540;
    }

    12% {
        opacity: 1;
    }

    58% {
        opacity: 1;
        stroke-dashoffset: 0;
    }

    78%,
    100% {
        opacity: 0;
        stroke-dashoffset: -300;
    }
}

@keyframes terminalScreenBreath {
    0%,
    100% {
        opacity: 0.08;
    }

    50% {
        opacity: 0.18;
    }
}

@keyframes terminalEdgeSpark {
    0%,
    18% {
        opacity: 0;
        stroke-dashoffset: 420;
    }

    32% {
        opacity: 1;
    }

    58% {
        opacity: 1;
        stroke-dashoffset: 0;
    }

    72%,
    100% {
        opacity: 0;
        stroke-dashoffset: -90;
    }
}

@media (prefers-reduced-motion: reduce) {
    main,
    .hero-edge-glow-track,
    .hero-edge-glow-soft,
    .hero-edge-glow-line {
        animation: none;
    }

    .hero-edge-glow {
        display: none;
    }
}

.hero-copy {
    max-width: 840px;
}

.eyebrow,
.section-label,
.panel-kicker,
.feature-block span {
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(44px, 7vw, 92px);
    line-height: 0.98;
    margin: 0;
    max-width: 980px;
}

.hero-compact {
    align-items: center;
    height: 690px;
    min-height: 0;
    overflow: hidden;
    padding-bottom: 56px;
    padding-top: clamp(52px, 7vw, 96px);
}

.hero-compact h1 {
    font-size: clamp(40px, 5.8vw, 76px);
    max-width: 900px;
}

.hero-subtitle {
    color: #d8dadd;
    font-size: clamp(18px, 2vw, 23px);
    margin: 28px 0 0;
    max-width: 720px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.button {
    align-items: center;
    border: 2px solid transparent;
    border-radius: 4px;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    min-height: 50px;
    padding: 13px 20px;
}

.button-primary {
    background: var(--red);
    color: var(--white);
}

.button-primary:hover {
    background: var(--red-dark);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.32);
    color: var(--white);
}

.hero-panel {
    align-self: center;
    background: var(--white);
    border-radius: 8px;
    color: var(--black);
    padding: 28px;
}

.hero-panel strong {
    display: block;
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 24px;
}

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

.panel-grid span {
    background: var(--grey-100);
    border-left: 4px solid var(--red);
    border-radius: 4px;
    font-weight: 700;
    padding: 14px;
}

.metrics {
    background: var(--grey-100);
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metrics div {
    background: var(--white);
    padding: 34px clamp(20px, 5vw, 72px);
}

.metrics strong {
    color: var(--red);
    display: block;
    font-size: 28px;
    margin-bottom: 8px;
}

.metrics span {
    color: var(--grey-900);
    font-weight: 800;
}

.content-band {
    display: grid;
    gap: clamp(24px, 6vw, 96px);
    grid-template-columns: 180px minmax(0, 820px);
    padding: clamp(58px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.rich-content p {
    color: var(--grey-700);
    font-size: clamp(19px, 2vw, 25px);
    margin: 0 0 24px;
}


.contact-overview .rich-content p:nth-child(n+4):nth-child(-n+7),
.contact-overview .rich-content p:nth-child(n+8):nth-child(-n+9) {
    line-height: 1.25;
    margin-bottom: 8px;
}

.contact-overview .rich-content p:nth-child(3) {
    margin-bottom: 12px;
}

.contact-overview .rich-content p:nth-child(7) {
    margin-bottom: 28px;
}

.contact-overview .rich-content p:nth-child(9) {
    margin-bottom: 0;
}
.feature-band {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-gallery {
    background: var(--grey-100);
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: clamp(46px, 7vw, 86px) clamp(20px, 5vw, 72px);
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(9, 9, 9, 0.08);
    min-height: 100%;
    overflow: hidden;
}

.service-card img {
    aspect-ratio: 4 / 3;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.service-card div {
    padding: 24px;
}

.service-card span,
.about-stack span,
.contact-card span {
    color: var(--red);
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.service-card h2 {
    font-size: 24px;
    line-height: 1.15;
    margin: 0 0 12px;
}

.service-card p,
.about-stack p {
    color: var(--grey-700);
    margin: 0;
}

.service-card ul {
    border-top: 1px solid var(--grey-200);
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 20px 0 0;
    padding: 18px 0 0;
}

.service-card li {
    color: var(--grey-900);
    font-size: 14px;
    font-weight: 800;
    padding-left: 18px;
    position: relative;
}

.service-card li::before {
    background: var(--red);
    border-radius: 999px;
    content: "";
    height: 7px;
    left: 0;
    position: absolute;
    top: 9px;
    width: 7px;
}

.service-process {
    display: grid;
    gap: clamp(24px, 6vw, 88px);
    grid-template-columns: 180px minmax(0, 1fr);
    padding: clamp(54px, 8vw, 98px) clamp(20px, 5vw, 72px);
}

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

.process-grid article {
    background: var(--black);
    color: var(--white);
    min-height: 300px;
    padding: clamp(28px, 4vw, 46px);
}

.process-grid span {
    color: var(--red);
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}

.process-grid h2 {
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.08;
    margin: 0 0 18px;
}

.process-grid p {
    color: #d8dadd;
    margin: 0;
}

.portal-band {
    background: var(--grey-100);
    display: grid;
    gap: clamp(28px, 6vw, 88px);
    grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
    padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.portal-band span {
    color: var(--red);
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.portal-band h2 {
    font-size: clamp(32px, 4.2vw, 58px);
    line-height: 1.04;
    margin: 0;
}

.portal-band p {
    color: var(--grey-700);
    font-size: 19px;
    margin: 0 0 18px;
}

.portal-band ul {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
}

.portal-band li {
    background: var(--white);
    border-left: 4px solid var(--red);
    border-radius: 4px;
    font-weight: 800;
    padding: 14px;
}

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

.about-stack article {
    background: var(--grey-100);
    min-height: 380px;
    padding: clamp(34px, 5vw, 64px);
}

.about-stack h2 {
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.08;
    margin: 0 0 18px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.55fr);
    min-height: 560px;
}

.map-panel iframe {
    border: 0;
    display: block;
    height: 100%;
    min-height: 420px;
    width: 100%;
}

.contact-card {
    background: var(--black);
    color: var(--white);
    padding: clamp(34px, 5vw, 64px);
}

.contact-card p {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px;
}

.contact-card strong {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    display: block;
    line-height: 1.35;
    margin-top: 24px;
    padding-top: 24px;
}


.contact-details {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.contact-details a {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 4px;
    color: var(--white);
    display: flex;
    font-weight: 800;
    gap: 12px;
    padding: 12px 14px;
    word-break: break-word;
}

.contact-details svg {
    background: var(--red);
    border-radius: 4px;
    flex: 0 0 34px;
    height: 34px;
    padding: 8px;
    stroke: var(--white);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 34px;
}

.contact-details svg path {
    fill: none;
}
.contact-form {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.contact-status {
    scroll-margin-top: 140px;
}

.form-alert {
    border-radius: 4px;
    font-weight: 800;
    margin-top: 22px;
    padding: 12px 14px;
}

.form-alert-success {
    background: rgba(17, 145, 90, 0.18);
    color: #9ef0c7;
}

.form-alert-error {
    background: rgba(201, 20, 33, 0.22);
    color: #ffd6d9;
}

.contact-form label {
    color: #d8dadd;
    display: grid;
    font-size: 13px;
    font-weight: 800;
    gap: 6px;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 4px;
    color: var(--white);
    font: inherit;
    padding: 12px;
    resize: vertical;
    text-transform: none;
}

.feature-block {
    background: var(--grey-100);
    min-height: 330px;
    padding: clamp(40px, 7vw, 86px);
}

.feature-block.dark {
    background: var(--black);
    color: var(--white);
}

.feature-block h2 {
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.05;
    margin: 0 0 22px;
}

.feature-block p {
    color: var(--grey-700);
    font-size: 18px;
    margin: 0;
    max-width: 560px;
}

.feature-block.dark p {
    color: #d8dadd;
}

.contact-band {
    align-items: center;
    background: var(--red);
    color: var(--white);
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding: 34px clamp(20px, 5vw, 72px);
}

.contact-band p {
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

.contact-band .button-primary {
    background: var(--black);
    min-width: 136px;
    white-space: nowrap;
}

@media (max-width: 860px) {
    .site-header,
    .contact-band {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-header {
        min-height: 0;
        padding-bottom: 18px;
    }

    .brand {
        margin-bottom: 0;
    }

    .brand img {
        height: 84px;
        max-width: 220px;
    }

    .site-nav {
        justify-content: flex-start;
        margin-top: 0;
    }

    .hero,
    .content-band,
    .feature-band,
    .metrics,
    .service-gallery,
    .service-process,
    .process-grid,
    .about-stack,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        height: auto;
        min-height: 0;
    }

    .hero-home {
        background:
            linear-gradient(180deg, rgba(9, 9, 9, 0.86), rgba(9, 9, 9, 0.92)),
            var(--hero-image) center / cover no-repeat;
    }

    .hero-services {
        background:
            linear-gradient(180deg, rgba(9, 9, 9, 0.86), rgba(9, 9, 9, 0.92)),
            var(--hero-image) center / cover no-repeat;
    }

    .hero-image-page {
        background:
            linear-gradient(180deg, rgba(9, 9, 9, 0.86), rgba(9, 9, 9, 0.92)),
            var(--hero-image) center / cover no-repeat;
    }

    .hero-image-card {
        display: block;
        width: 100%;
    }

    .hero-edge-glow {
        display: none;
    }

    .portal-band,
    .portal-band ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .brand img {
        height: 68px;
        max-width: 190px;
    }

    .site-nav a {
        padding-inline: 8px;
    }

    .hero-actions,
    .button {
        width: 100%;
    }
}
.form-honeypot {
    height: 0;
    left: -9999px;
    overflow: hidden;
    position: absolute;
    width: 0;
}

.site-footer {
    align-items: center;
    background: var(--black);
    color: var(--white);
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: space-between;
    padding: 22px clamp(20px, 5vw, 72px);
}

.site-footer a {
    color: var(--white);
    font-weight: 800;
}

.legal-page {
    background: var(--white);
}

.legal-hero {
    background: var(--black);
    color: var(--white);
    padding: clamp(58px, 8vw, 110px) clamp(20px, 5vw, 72px);
}

.legal-hero h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1;
    margin: 0;
}

.legal-hero p:not(.eyebrow) {
    color: #d8dadd;
    font-size: clamp(18px, 2vw, 23px);
    max-width: 760px;
}

.legal-content {
    color: var(--grey-700);
    font-size: clamp(18px, 2vw, 22px);
    max-width: 900px;
    padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.legal-content p {
    margin: 0 0 24px;
}

.cookie-consent {
    align-items: center;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.16);
    bottom: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
    color: var(--white);
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr auto;
    left: clamp(16px, 4vw, 40px);
    max-width: 980px;
    padding: 20px;
    position: fixed;
    right: clamp(16px, 4vw, 40px);
    z-index: 50;
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
}

.cookie-consent p {
    color: #d8dadd;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-consent-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-consent a,
.cookie-consent button {
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.cookie-consent a {
    color: var(--white);
}

.cookie-consent button {
    background: var(--white);
    border: 0;
    color: var(--black);
    cursor: pointer;
    padding: 12px 14px;
}

.cookie-consent button[data-cookie-choice="analytics"] {
    background: var(--red);
    color: var(--white);
}

@media (max-width: 760px) {
    .cookie-consent {
        grid-template-columns: 1fr;
    }

    .cookie-consent-actions {
        justify-content: flex-start;
    }
}
















