/*
 * AK Legal modern refresh
 * Preserves the original serif identity with restrained military-green accents.
 */

:root {
    --ak-green: #355846;
    --ak-green-deep: #243d32;
    --ak-green-soft: #e9efeb;
    --ak-ink: #171717;
    --ak-text: #303030;
    --ak-muted: #6c6c6c;
    --ak-line: rgba(23, 23, 23, 0.14);
    --ak-soft: #f2f4f1;
    --ak-white: #ffffff;
    --ak-radius-sm: 0.25rem;
    --ak-radius: 0.4rem;
    --ak-shadow: 0 18px 48px rgba(17, 17, 17, 0.08);
    --ak-header-height: 8.75rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-padding-top: calc(var(--ak-header-height) + 2rem);
}

body.ak-modern-refresh {
    background: var(--ak-white);
    color: var(--ak-text);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.ak-menu-open {
    overflow: hidden;
}

body.ak-modern-refresh p {
    color: inherit;
}

body.ak-modern-refresh h1,
body.ak-modern-refresh h2,
body.ak-modern-refresh h3,
body.ak-modern-refresh h4 {
    letter-spacing: -0.025em;
}

body.ak-modern-refresh h1 {
    font-size: clamp(2.75rem, 4.15vw, 4.75rem);
    line-height: 1.02;
}

body.ak-modern-refresh h2 {
    font-size: clamp(2rem, 3.15vw, 3.6rem);
    line-height: 1.08;
}

body.ak-modern-refresh h3 {
    font-size: clamp(1.3rem, 1.65vw, 1.8rem);
    line-height: 1.18;
}

body.ak-modern-refresh .content-container {
    max-width: 92rem;
    padding-left: clamp(1.25rem, 4vw, 4rem);
    padding-right: clamp(1.25rem, 4vw, 4rem);
}

::selection {
    background: var(--ak-green);
    color: var(--ak-white);
}

:focus-visible {
    outline: 3px solid rgba(53, 88, 70, 0.48);
    outline-offset: 4px;
}

.ak-skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 9999;
    transform: translateY(-180%);
    border-radius: 0.5rem;
    background: var(--ak-white);
    padding: 0.75rem 1rem;
    color: var(--ak-ink);
    box-shadow: var(--ak-shadow);
}

.ak-skip-link:focus {
    transform: translateY(0);
}

.ak-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--ak-green);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.ak-eyebrow::before {
    width: 2rem;
    height: 1px;
    background: currentColor;
    content: "";
}

.ak-section {
    padding: clamp(4.5rem, 7.5vw, 7.5rem) 0;
}

.ak-section-heading {
    max-width: 43rem;
}

.ak-section-heading h2,
.ak-section-head-row h2 {
    margin-top: 1rem;
}

.ak-section-heading > p {
    margin-top: 2rem;
    color: var(--ak-muted);
    font-size: clamp(1.05rem, 1.4vw, 1.3rem);
    line-height: 1.75;
}

.ak-section-head-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: clamp(3rem, 6vw, 6rem);
}

.ak-section-head-row > p {
    max-width: 32rem;
    color: var(--ak-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.ak-split {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(4rem, 9vw, 10rem);
    align-items: start;
}

.ak-button {
    display: inline-flex;
    min-height: 3.5rem;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 1px solid transparent;
    border-radius: var(--ak-radius-sm);
    padding: 0.95rem 1.65rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.ak-button:hover {
    transform: translateY(-2px);
}

.ak-button-primary {
    background: var(--ak-ink);
    color: var(--ak-white);
    box-shadow: none;
}

.ak-button-primary:hover {
    background: var(--ak-green-deep);
    color: var(--ak-white);
    box-shadow: none;
}

.ak-button-ghost,
.ak-button-outline {
    border-color: rgba(23, 23, 23, 0.45);
    background: rgba(255, 255, 255, 0.48);
    color: var(--ak-ink);
    backdrop-filter: blur(10px);
}

.ak-button-ghost:hover,
.ak-button-outline:hover {
    border-color: var(--ak-ink);
    background: var(--ak-ink);
    color: var(--ak-white);
}

.ak-button-light {
    background: var(--ak-white);
    color: var(--ak-ink);
}

.ak-button-light:hover {
    background: #f2f2f0;
    color: var(--ak-green);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

.ak-button-dark-ghost {
    border-color: rgba(255, 255, 255, 0.42);
    color: var(--ak-white);
}

.ak-button-dark-ghost:hover {
    border-color: var(--ak-white);
    background: rgba(255, 255, 255, 0.12);
    color: var(--ak-white);
}

.ak-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid currentColor;
    padding-bottom: 0.35rem;
    color: var(--ak-ink);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.ak-text-link span {
    transition: transform 180ms ease;
}

.ak-text-link:hover span {
    transform: translateX(0.25rem);
}

/* Header */
.ak-header-shell {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--ak-ink);
    transition: background 240ms ease, box-shadow 240ms ease, color 240ms ease;
}

.ak-site-header {
    width: 100%;
}

.ak-header-inner {
    padding-top: 0.75rem;
    padding-bottom: 0.8rem;
}

.ak-header-top {
    display: flex;
    min-height: 2.1rem;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(23, 23, 23, 0.12);
    padding-bottom: 0.7rem;
    color: inherit;
}

.ak-header-trust,
.ak-opening-hours {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.ak-opening-hours {
    white-space: nowrap;
}

.ak-opening-hours p {
    margin: 0;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
}

.ak-header-contacts {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.ak-header-contacts a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: inherit;
    font-size: 0.78rem;
    line-height: 1;
}

.ak-header-contacts .iconify {
    width: 1rem;
    height: 1rem;
    color: currentColor;
}

.ak-main-nav {
    display: flex;
    min-height: 4.8rem;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.ak-brand {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.ak-brand img {
    width: auto;
    height: clamp(2.8rem, 4.2vw, 4rem);
    transition: opacity 220ms ease;
}

.ak-brand-logo--scrolled {
    position: absolute;
    top: 50%;
    left: 0;
    opacity: 0;
    transform: translateY(-50%);
}

.ak-nav-list {
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, 2.5vw, 2.75rem);
}

.ak-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: inherit;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.2;
}

.ak-nav-link:not(.ak-nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: -0.55rem;
    left: 0;
    height: 2px;
    background: var(--ak-green);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 200ms ease;
}

.ak-nav-link:not(.ak-nav-cta):hover::after,
.ak-nav-link.is-current::after {
    transform: scaleX(1);
    transform-origin: left;
}

.ak-nav-cta {
    border: 1px solid rgba(23, 23, 23, 0.48);
    border-radius: var(--ak-radius-sm);
    background: transparent;
    padding: 0.8rem 1.3rem;
    color: inherit;
}

.ak-nav-cta:hover {
    border-color: var(--ak-ink);
    background: var(--ak-ink);
    color: var(--ak-white);
}

.ak-header-dark:not(.is-scrolled) .ak-nav-cta {
    border-color: rgba(255, 255, 255, 0.56);
}

.ak-header-dark:not(.is-scrolled) .ak-nav-cta:hover {
    border-color: var(--ak-white);
    background: var(--ak-white);
    color: var(--ak-ink);
}

body.ak-route-kontakt .ak-header-dark:not(.is-scrolled) .ak-nav-link:not(.ak-nav-cta):hover {
    color: var(--ak-white);
}

body.ak-route-kontakt .ak-header-dark:not(.is-scrolled) .ak-nav-link:not(.ak-nav-cta)::after {
    background: rgba(255, 255, 255, 0.9);
}

body.ak-route-kontakt .ak-header-dark:not(.is-scrolled) .ak-header-contacts a:hover {
    color: var(--ak-white);
    opacity: 0.72;
}

.ak-mobile-actions {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.ak-mobile-actions > a,
.ak-menu-toggle {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(23, 23, 23, 0.16);
    border-radius: 999px;
    color: inherit;
}

.ak-mobile-actions .iconify {
    width: 1.35rem;
    height: 1.35rem;
    color: currentColor;
}

.ak-menu-toggle svg,
.ak-mobile-menu-head svg {
    width: 1.4rem;
    height: 1.4rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.7;
}

.ak-header-dark {
    color: var(--ak-white);
}

.ak-header-dark .ak-header-top,
.ak-header-dark .ak-mobile-actions > a,
.ak-header-dark .ak-menu-toggle {
    border-color: rgba(255, 255, 255, 0.2);
}

.ak-header-shell.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    color: var(--ak-ink);
    box-shadow: 0 12px 40px rgba(20, 43, 32, 0.08);
    backdrop-filter: blur(18px);
}

.ak-header-shell.is-scrolled .ak-header-top {
    border-color: rgba(23, 23, 23, 0.1);
}

.ak-header-dark.is-scrolled .ak-brand-logo--default {
    opacity: 0;
}

.ak-header-dark.is-scrolled .ak-brand-logo--scrolled {
    opacity: 1;
}

.ak-header-dark.is-scrolled .ak-mobile-actions > a,
.ak-header-dark.is-scrolled .ak-menu-toggle {
    border-color: rgba(23, 23, 23, 0.16);
}

.ak-mobile-menu {
    position: fixed;
    z-index: 1100;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease;
}

.ak-mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.ak-mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(15, 32, 24, 0.62);
    backdrop-filter: blur(4px);
}

.ak-mobile-menu-panel {
    position: relative;
    width: min(100%, 28rem);
    height: 100%;
    overflow-y: auto;
    background: var(--ak-white);
    padding: 1.5rem;
    color: var(--ak-ink);
    transform: translateX(100%);
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ak-mobile-menu.is-open .ak-mobile-menu-panel {
    transform: translateX(0);
}

.ak-mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--ak-line);
    padding-bottom: 1.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ak-mobile-menu-head button {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ak-line);
    border-radius: 999px;
}

.ak-mobile-menu-panel > ul {
    margin-top: 2rem;
}

.ak-mobile-menu-panel > ul a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--ak-line);
    padding: 1.25rem 0;
    color: var(--ak-ink);
    font-size: 1.55rem;
}

.ak-mobile-contact-card {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 3rem;
    border-radius: var(--ak-radius);
    background: var(--ak-ink);
    padding: 1.5rem;
    color: var(--ak-white);
}

.ak-mobile-contact-card > span {
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ak-mobile-contact-card a {
    color: var(--ak-white);
    font-size: 1.15rem;
}

/* Homepage hero */
.ak-hero {
    position: relative;
    display: flex;
    min-height: min(58rem, 100svh);
    align-items: center;
    overflow: hidden;
    padding-top: var(--ak-header-height);
}

.ak-hero-background,
.ak-hero-overlay {
    position: absolute;
    inset: 0;
}

.ak-hero-background {
    background-position: center;
    background-size: cover;
    transform-origin: center;
    will-change: transform;
}

.ak-hero-overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.36) 72%, rgba(255, 255, 255, 0.08) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.04));
}

.ak-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 4rem;
    padding-top: clamp(3rem, 9vh, 8rem);
    padding-bottom: clamp(6rem, 12vh, 9rem);
}

.ak-hero-copy {
    max-width: 60rem;
}

.ak-hero-copy h1 {
    max-width: 58rem;
    margin-top: 1.2rem;
    color: var(--ak-ink);
}

.ak-hero-copy h1 span {
    border-bottom: 2px solid var(--ak-green);
    color: var(--ak-ink);
    font-style: normal;
    font-weight: 400;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.ak-hero-copy > p {
    max-width: 46rem;
    margin-top: 2rem;
    color: #4d4d4d;
    font-size: clamp(1.08rem, 1.35vw, 1.3rem);
    line-height: 1.65;
}

.ak-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

.ak-hero-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 1px solid rgba(23, 23, 23, 0.24);
    padding-left: 1.5rem;
    color: var(--ak-ink);
}

.ak-proof-number {
    color: var(--ak-green);
    font-size: clamp(2.8rem, 4vw, 4.25rem);
    font-weight: 300;
    line-height: 1;
}

.ak-hero-proof > span:last-child {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.45;
    text-transform: uppercase;
}

.ak-scroll-cue {
    position: absolute;
    z-index: 3;
    right: clamp(6rem, 8vw, 8rem);
    bottom: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--ak-ink);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ak-scroll-cue svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.ak-trust-strip {
    border-top: 1px solid var(--ak-line);
    border-bottom: 1px solid var(--ak-line);
    background: var(--ak-white);
}

.ak-trust-strip .content-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.ak-trust-strip .content-container > div {
    display: flex;
    min-height: 8.5rem;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
    border-right: 1px solid var(--ak-line);
    padding: 1.5rem 2.25rem;
}

.ak-trust-strip .content-container > div:first-child {
    border-left: 1px solid var(--ak-line);
}

.ak-trust-strip strong {
    color: var(--ak-ink);
    font-size: 1.2rem;
}

.ak-trust-strip .ak-trust-confidential {
    max-width: 30rem;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.5;
}

.ak-trust-strip span {
    color: var(--ak-muted);
    font-size: 0.95rem;
    line-height: 1.45;
}

/* Home sections */
.ak-defence-feature {
    overflow: hidden;
    background: var(--ak-green-deep);
    color: var(--ak-white);
}

.ak-defence-feature .ak-eyebrow,
.ak-contact-cta .ak-eyebrow,
.ak-defence-hero .ak-eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.ak-defence-feature .ak-section-heading h2,
.ak-defence-feature .ak-section-heading > p {
    color: var(--ak-white);
}

.ak-defence-feature .ak-section-heading > p {
    color: rgba(255, 255, 255, 0.78);
}

.ak-defence-feature .ak-text-link {
    margin-top: 2rem;
    color: var(--ak-white);
}

.ak-defence-list {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.ak-defence-list > div {
    display: grid;
    grid-template-columns: 3rem 1fr;
    align-items: center;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    padding: 1.35rem 0;
}

.ak-defence-list span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.ak-defence-list p {
    font-size: clamp(1.05rem, 1.4vw, 1.3rem);
    line-height: 1.45;
}

.ak-services-section {
    background: var(--ak-soft);
}

.ak-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--ak-line);
    background: var(--ak-line);
}

.ak-service-card {
    position: relative;
    display: flex;
    min-height: 23rem;
    flex-direction: column;
    overflow: hidden;
    background: var(--ak-white);
    padding: clamp(1.5rem, 2.6vw, 2.5rem);
    color: var(--ak-ink);
    transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.ak-service-card::before {
    position: absolute;
    inset: auto 0 0;
    height: 0.28rem;
    background: var(--ak-green);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease;
}

.ak-service-card:hover {
    z-index: 1;
    background: #fafafa;
    transform: translateY(-0.35rem);
    box-shadow: var(--ak-shadow);
}

.ak-service-card:hover::before {
    transform: scaleX(1);
}

.ak-service-card.is-featured {
    background: var(--ak-green-soft);
    color: var(--ak-ink);
    box-shadow: inset 0 3px 0 var(--ak-green);
}

.ak-service-card.is-featured::before {
    background: var(--ak-green);
    transform: scaleX(1);
}

.ak-service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ak-service-index {
    color: var(--ak-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.ak-service-card.is-featured .ak-service-index {
    color: var(--ak-green);
}

.ak-service-card .iconify {
    width: 2.2rem;
    height: 2.2rem;
    color: var(--ak-green);
}

.ak-service-card.is-featured .iconify {
    color: var(--ak-green);
}

.ak-service-card h3 {
    margin-top: 4rem;
    color: inherit;
}

.ak-service-card > p {
    margin-top: 1.25rem;
    color: var(--ak-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.ak-service-card.is-featured > p {
    color: var(--ak-muted);
}

.ak-service-card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    border-top: 1px solid var(--ak-line);
    padding-top: 1.25rem;
    color: inherit;
    font-size: 0.95rem;
    font-weight: 700;
}

.ak-service-card.is-featured .ak-service-card-action {
    border-color: var(--ak-line);
    color: var(--ak-ink);
}

.ak-service-card:focus-visible {
    z-index: 2;
}

.ak-about-section {
    overflow: hidden;
}

.ak-about-grid {
    display: grid;
    grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: clamp(3rem, 9vw, 10rem);
}

.ak-about-brandmark {
    display: flex;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ak-line);
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.96), rgba(241, 241, 238, 0.82)),
        var(--ak-soft);
    padding: clamp(2rem, 4vw, 4rem);
}

.ak-about-brandmark img {
    display: block;
    width: min(84%, 25rem);
    height: auto;
}

.ak-about-copy h2 {
    margin-top: 1rem;
}

.ak-about-copy > p {
    margin-top: 2rem;
    color: var(--ak-muted);
    font-size: 1.15rem;
    line-height: 1.8;
}

.ak-inline-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.ak-partners-section {
    border-top: 1px solid var(--ak-line);
    background: #fbfbfa;
}

.ak-partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.ak-partner-card {
    display: flex;
    min-height: 12.5rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    border: 1px solid var(--ak-line);
    border-radius: var(--ak-radius);
    background: var(--ak-white);
    padding: 2rem;
    text-align: center;
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.ak-partner-card:hover {
    border-color: rgba(53, 88, 70, 0.34);
    transform: translateY(-0.25rem);
    box-shadow: var(--ak-shadow);
}

.ak-partner-card img {
    display: block;
    width: auto;
    max-width: min(100%, 19rem);
    height: 5.25rem;
    object-fit: contain;
}

.ak-partner-card.is-suchy img {
    height: 6.4rem;
}

.ak-partner-card span {
    color: var(--ak-muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

.ak-contact-cta {
    background: var(--ak-green-deep);
    padding: clamp(4.5rem, 7vw, 7rem) 0;
    color: var(--ak-white);
}

.ak-contact-cta .content-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: end;
    gap: clamp(3rem, 8vw, 8rem);
}

.ak-contact-cta--home .content-container {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
}

.ak-contact-cta--home .content-container > div:last-child {
    justify-self: end;
}

.ak-contact-cta h2 {
    max-width: 48rem;
    margin-top: 1rem;
    color: var(--ak-white);
}

.ak-contact-cta p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Defence landing page */
.ak-defence-hero {
    position: relative;
    display: flex;
    min-height: min(58rem, 100svh);
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 32%, rgba(82, 128, 103, 0.3), transparent 34%),
        linear-gradient(135deg, #17261f 0%, #243d32 62%, #2e4b3d 100%);
    padding-top: var(--ak-header-height);
    color: var(--ak-white);
}

.ak-defence-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.11;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.32) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.32) 1px, transparent 1px);
    background-size: 4rem 4rem;
    mask-image: linear-gradient(to right, transparent 0%, black 45%, black 100%);
}

.ak-defence-hero .content-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.5fr);
    align-items: end;
    gap: clamp(3rem, 7vw, 7rem);
    padding-top: 5rem;
    padding-bottom: 6rem;
}

.ak-defence-hero-copy {
    max-width: 58rem;
}

.ak-defence-hero h1 {
    margin-top: 1rem;
    color: var(--ak-white);
}

.ak-defence-hero-copy > p {
    max-width: 46rem;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(1.08rem, 1.35vw, 1.3rem);
    line-height: 1.65;
}

.ak-defence-hero-aside {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 1.2rem;
}

.ak-defence-hero-aside > span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.ak-defence-hero-aside ul {
    margin-top: 1.2rem;
}

.ak-defence-hero-aside li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.9rem 0;
    font-size: 0.98rem;
    line-height: 1.35;
}

.ak-rich-copy p {
    color: var(--ak-muted);
    font-size: clamp(1.08rem, 1.5vw, 1.3rem);
    line-height: 1.8;
}

.ak-rich-copy p + p {
    margin-top: 1.5rem;
}

.ak-defence-services {
    background: var(--ak-soft);
}

.ak-section-head-row--services {
    display: grid;
    grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: clamp(3rem, 7vw, 7rem);
}

.ak-section-head-row--services .ak-services-intro-copy {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 3rem);
    border-top: 1px solid var(--ak-line);
    padding-top: 1.35rem;
}

.ak-section-head-row--services .ak-services-intro-copy p {
    max-width: none;
    color: var(--ak-muted);
    font-size: 1rem;
    line-height: 1.72;
}

.ak-defence-service-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}

.ak-defence-service-grid article {
    position: relative;
    grid-column: span 2;
    min-height: 19rem;
    border-radius: var(--ak-radius);
    background: var(--ak-white);
    padding: 2rem;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.ak-defence-service-grid article:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--ak-shadow);
}

.ak-defence-service-grid .iconify {
    width: 2.4rem;
    height: 2.4rem;
    color: var(--ak-green);
}

.ak-defence-service-grid .ak-service-index {
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.ak-defence-service-grid h3 {
    margin-top: 4.5rem;
}

.ak-defence-service-grid p {
    margin-top: 1rem;
    color: var(--ak-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.ak-defence-service-grid article.has-details {
    grid-column: 1 / -1;
    display: grid;
    min-height: auto;
    grid-template-columns: minmax(15rem, 0.58fr) minmax(0, 1.42fr);
    grid-template-rows: auto 1fr;
    align-items: start;
    column-gap: clamp(2rem, 4vw, 4rem);
    padding: clamp(2rem, 4vw, 3.5rem);
}

.ak-defence-service-grid article.has-details h3 {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    max-width: 12rem;
    margin-top: 2.5rem;
}

.ak-service-detail-list {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: stretch;
    column-gap: clamp(1.5rem, 4vw, 3.5rem);
    border-left: 1px solid var(--ak-line);
    padding-left: clamp(2rem, 4vw, 4rem);
}

.ak-service-detail-list li {
    position: relative;
    border-top: 1px solid var(--ak-line);
    padding: 1.25rem 0 1.25rem 1.5rem;
    color: var(--ak-text);
    font-size: 1rem;
    line-height: 1.55;
}

.ak-service-detail-list li::before {
    position: absolute;
    top: 1.8rem;
    left: 0;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--ak-green);
    content: "";
}

.ak-defence-service-grid article:nth-child(5),
.ak-defence-service-grid article:nth-child(6) {
    grid-column: span 3;
}

.ak-defence-proof {
    background: var(--ak-green-deep);
    color: var(--ak-white);
}

.ak-proof-statement {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    gap: clamp(2rem, 6vw, 6rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-bottom: clamp(3rem, 6vw, 6rem);
}

.ak-proof-statement .ak-proof-number {
    color: #a9bdb2;
    font-size: clamp(3.5rem, 6vw, 6rem);
    white-space: nowrap;
}

.ak-proof-statement h2 {
    max-width: 58rem;
    color: var(--ak-white);
    font-size: clamp(1.9rem, 2.8vw, 3rem);
}

.ak-proof-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(3rem, 8vw, 8rem);
    padding-top: 0;
}

.ak-proof-columns article + article {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    padding-left: clamp(3rem, 8vw, 8rem);
}

.ak-proof-columns h3 {
    max-width: 34rem;
    margin-top: 1.25rem;
    color: var(--ak-white);
    font-size: clamp(1.4rem, 2vw, 1.85rem);
    font-weight: 600;
    line-height: 1.28;
    text-wrap: balance;
}

.ak-defence-proof .ak-eyebrow {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.ak-proof-columns p {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.75;
}

.ak-process-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(53, 88, 70, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(53, 88, 70, 0.035) 1px, transparent 1px),
        var(--ak-soft);
    background-size: 4rem 4rem;
}

.ak-process-manifest {
    display: grid;
    grid-template-columns: minmax(13rem, 0.32fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(2.5rem, 6vw, 7rem);
    border-top: 1px solid var(--ak-line);
    padding-top: clamp(2rem, 4vw, 3.5rem);
}

body.ak-modern-refresh .ak-process-manifest h2 {
    max-width: 66rem;
    margin: 0;
    font-size: clamp(1.4rem, 1.65vw, 1.85rem);
    line-height: 1.36;
}

.ak-process-route {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) minmax(5rem, 0.3fr);
    align-items: center;
    gap: 1.25rem;
    margin-top: clamp(3rem, 6vw, 5.5rem);
    border-radius: var(--ak-radius);
    background: var(--ak-green-deep);
    padding: 1.35rem clamp(1.5rem, 3vw, 2.5rem);
    color: var(--ak-white);
}

.ak-process-route .iconify {
    width: 1.65rem;
    height: 1.65rem;
    color: rgba(255, 255, 255, 0.72);
}

.ak-process-route p {
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    font-weight: 600;
    line-height: 1.45;
}

.ak-process-route-line {
    position: relative;
    display: block;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
}

.ak-process-route-line::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 0.55rem;
    height: 0.55rem;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--ak-white);
    content: "";
}

.ak-ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.ak-ecosystem-card {
    border: 1px solid var(--ak-line);
    border-radius: var(--ak-radius);
    background: rgba(255, 255, 255, 0.92);
    padding: clamp(2rem, 4vw, 3.5rem);
}

.ak-ecosystem-card--network {
    grid-column: span 7;
}

.ak-ecosystem-card--knowhow {
    grid-column: span 5;
    background: var(--ak-green);
    color: var(--ak-white);
}

.ak-ecosystem-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 2rem;
}

.ak-ecosystem-card-head > span:first-child {
    color: var(--ak-green);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.ak-ecosystem-card-head .iconify {
    width: 2rem;
    height: 2rem;
    color: var(--ak-green);
}

.ak-ecosystem-card h3 {
    max-width: 28rem;
}

.ak-ecosystem-card p {
    max-width: 48rem;
    margin-top: 1.5rem;
    color: var(--ak-muted);
    font-size: clamp(0.98rem, 1.1vw, 1.08rem);
    line-height: 1.75;
}

.ak-ecosystem-card--knowhow .ak-ecosystem-card-head > span:first-child,
.ak-ecosystem-card--knowhow .ak-ecosystem-card-head .iconify,
.ak-ecosystem-card--knowhow h3,
.ak-ecosystem-card--knowhow p {
    color: rgba(255, 255, 255, 0.76);
}

.ak-ecosystem-card--knowhow h3 {
    color: var(--ak-white);
}

.ak-ecosystem-card--capacities {
    position: relative;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.6fr);
    align-items: end;
    gap: clamp(3rem, 8vw, 8rem);
}

.ak-ecosystem-card--capacities .ak-ecosystem-card-head .iconify {
    position: absolute;
    top: clamp(2rem, 4vw, 3.5rem);
    right: clamp(2rem, 4vw, 3.5rem);
}

.ak-capability-list {
    border-top: 1px solid var(--ak-line);
}

.ak-capability-list li {
    position: relative;
    border-bottom: 1px solid var(--ak-line);
    padding: 1rem 2rem 1rem 0;
    color: var(--ak-text);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.ak-capability-list li::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 0.4rem;
    height: 0.4rem;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--ak-green);
    content: "";
}

.ak-network-section {
    background: var(--ak-soft);
}

.ak-network-section .ak-split {
    grid-template-columns: 1fr;
    gap: clamp(3rem, 6vw, 6rem);
}

.ak-network-section .ak-section-heading {
    display: grid;
    width: 100%;
    max-width: none;
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.68fr);
    align-items: end;
    column-gap: clamp(5rem, 9vw, 9rem);
}

.ak-network-section .ak-section-heading .ak-eyebrow,
.ak-network-section .ak-section-heading h2 {
    grid-column: 1;
}

.ak-network-section .ak-section-heading > p {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    max-width: 36rem;
    margin-top: 0;
}

.ak-network-list {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1rem;
}

.ak-network-list > div {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.75rem;
    min-height: 18rem;
    border: 1px solid var(--ak-line);
    border-radius: var(--ak-radius);
    background: rgba(255, 255, 255, 0.72);
    padding: clamp(2rem, 4vw, 3rem);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ak-network-list > div:first-child {
    grid-column: span 7;
}

.ak-network-list > div:nth-child(2) {
    grid-column: span 5;
    align-content: center;
    justify-items: center;
    text-align: center;
}

.ak-network-list > div:nth-child(3) {
    grid-column: 1 / -1;
    grid-template-columns: minmax(12rem, 0.35fr) minmax(0, 1fr);
    align-items: center;
    min-height: auto;
}

@media (hover: hover) and (pointer: fine) {
    .ak-network-list > div:hover {
        border-color: rgba(53, 88, 70, 0.32);
        transform: translateY(-0.2rem);
        box-shadow: 0 18px 42px rgba(20, 57, 42, 0.08);
    }
}

.ak-network-logo {
    display: flex;
    min-height: 4.5rem;
    align-items: center;
}

.ak-network-logo img {
    display: block;
    width: auto;
    max-width: min(100%, 11rem);
    max-height: 4.5rem;
    object-fit: contain;
    object-position: left center;
}

.ak-network-logo.is-suchy img {
    max-height: 5.25rem;
    object-position: center;
}

.ak-network-list p {
    color: var(--ak-muted);
    font-size: 1rem;
    line-height: 1.72;
}

.ak-faq-list {
    border-top: 1px solid var(--ak-line);
}

.ak-faq-list details {
    border-bottom: 1px solid var(--ak-line);
}

.ak-faq-list summary {
    display: flex;
    cursor: pointer;
    list-style: none;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem 0;
    color: var(--ak-ink);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
}

.ak-faq-list summary::-webkit-details-marker {
    display: none;
}

.ak-faq-list summary > span:last-child {
    position: relative;
    flex: 0 0 auto;
    width: 1.25rem;
    height: 1.25rem;
}

.ak-faq-list summary > span:last-child::before,
.ak-faq-list summary > span:last-child::after {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    content: "";
}

.ak-faq-list summary > span:last-child::after {
    transform: rotate(90deg);
    transition: transform 180ms ease;
}

.ak-faq-list details[open] summary > span:last-child::after {
    transform: rotate(0);
}

.ak-faq-list details p {
    max-width: 45rem;
    padding: 0 3rem 1.75rem 0;
    color: var(--ak-muted);
    font-size: 1rem;
    line-height: 1.75;
}

/* Existing page refresh */
.ak-services-page-intro {
    position: relative;
    overflow: hidden;
    background: var(--ak-soft);
    padding: calc(var(--ak-header-height) + 4.5rem) 0 5.5rem;
}

.ak-services-page-intro::after {
    position: absolute;
    right: -2rem;
    bottom: -8rem;
    color: rgba(23, 23, 23, 0.045);
    content: "AK";
    font-size: 19rem;
    font-weight: 700;
    letter-spacing: -0.15em;
    line-height: 0.8;
}

.ak-services-page-intro .content-container {
    position: relative;
    z-index: 1;
}

.ak-services-page-intro h1 {
    max-width: 70rem;
    margin-top: 1rem;
    font-size: clamp(2.75rem, 3.8vw, 4.4rem);
}

.ak-services-page-intro p {
    max-width: 48rem;
    margin-top: 2rem;
    color: var(--ak-muted);
    font-size: 1.2rem;
    line-height: 1.7;
}

.ak-services-page #services {
    margin-bottom: 8rem !important;
    background: var(--ak-soft);
}

.ak-services-page #services > div:first-child {
    opacity: 0.35;
}

.ak-services-page #services .content-container {
    transform: none !important;
    padding-top: 6rem !important;
}

.ak-services-page #services .bg-background {
    border-radius: var(--ak-radius) 0 0 var(--ak-radius);
    background: var(--ak-green-deep) !important;
}

.ak-services-page #services .bg-white {
    border-radius: 0 var(--ak-radius) var(--ak-radius) 0;
    box-shadow: var(--ak-shadow);
}

.ak-services-page #services .tab {
    border-radius: var(--ak-radius-sm) 0 0 var(--ak-radius-sm);
    order: 90;
    transition: background 180ms ease, transform 180ms ease;
}

.ak-services-page #services .tab.active {
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: inset 3px 0 0 var(--ak-green);
}

.ak-services-page #services .tab:hover {
    background: rgba(255, 255, 255, 0.07) !important;
    transform: translateX(-0.25rem);
}

.ak-services-page #services .tab[data-service-id="62"] { order: 1; }
.ak-services-page #services .tab[data-service-id="55"] { order: 2; }
.ak-services-page #services .tab[data-service-id="60"] { order: 3; }
.ak-services-page #services .tab[data-service-id="149"] { order: 4; }
.ak-services-page #services .tab[data-service-id="58"] { order: 5; }
.ak-services-page #services .tab[data-service-id="59"] { order: 6; }
.ak-services-page #services .tab[data-service-id="57"] { order: 7; }
.ak-services-page #services .tab[data-service-id="56"] { order: 8; }
.ak-services-page #services .tab[data-service-id="61"] { order: 9; }
.ak-services-page #services .tab[data-service-id="151"] { order: 10; }

.ak-services-page #services .tab-content h2 {
    margin-bottom: 2rem !important;
}

.ak-services-page #services .tab-content {
    scroll-margin-top: calc(var(--ak-header-height) + 1.5rem);
}

.ak-services-page #services .tab-content ul {
    margin-bottom: 2.5rem;
    padding-left: 1.25rem;
    list-style: disc;
}

.ak-services-page #services .tab-content li {
    margin-bottom: 1rem;
    color: var(--ak-muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.ak-about-page {
    padding-top: var(--ak-header-height);
}

.ak-about-page > div:first-child {
    margin-bottom: 8rem !important;
    background: var(--ak-soft);
}

.ak-about-page .ak-about-hero-shell {
    position: relative;
    min-height: auto !important;
    margin-bottom: 0 !important;
    overflow: hidden;
    padding: clamp(4rem, 7vw, 7rem) 0;
    background: var(--ak-green-deep) !important;
}

.ak-about-page .ak-about-hero-shell::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(115deg, rgba(20, 57, 42, 0.78) 0%, rgba(28, 66, 50, 0.6) 48%, rgba(28, 66, 50, 0.34) 100%),
        radial-gradient(circle at 80% 20%, rgba(111, 143, 118, 0.16), transparent 35%);
    content: "";
    pointer-events: none;
}

.ak-about-page > .ak-about-hero-shell .ak-about-hero-content {
    z-index: 2;
    transform: none !important;
    padding-top: 0 !important;
}

.ak-about-page .ak-about-hero-backdrop {
    opacity: 0.56;
    filter: contrast(1.08);
}

.ak-about-page .ak-about-intro-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-top: 0.3rem solid var(--ak-green);
    border-radius: var(--ak-radius);
    background: rgba(251, 252, 249, 0.97) !important;
    box-shadow: 0 32px 80px rgba(7, 27, 19, 0.24);
    padding: clamp(2rem, 6vw, 6.5rem) !important;
}

.ak-about-page .ak-about-intro-card::after {
    position: absolute;
    top: -7rem;
    right: -5rem;
    width: 22rem;
    aspect-ratio: 1;
    border: 1px solid rgba(53, 88, 70, 0.12);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.ak-about-page .ak-about-intro-card > .ak-eyebrow {
    color: var(--ak-green);
}

.ak-about-page .ak-about-intro-card h1 {
    margin-top: 1rem;
    color: var(--ak-ink);
}

.ak-about-page .ak-about-lead {
    max-width: 44rem;
    color: var(--ak-green-deep);
}

.ak-about-page .ak-about-justice-image {
    height: clamp(12rem, 22vw, 20rem) !important;
    border-radius: calc(var(--ak-radius) - 0.2rem);
    object-fit: cover;
    object-position: center;
    box-shadow: inset 0 0 0 1px rgba(20, 57, 42, 0.08);
}

.ak-about-page .ak-about-story {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 6vw, 6rem);
}

.ak-about-page .ak-about-story-column {
    max-width: none;
    margin: 0 !important;
    padding: 0 0 0 1.5rem;
    border-left: 2px solid rgba(53, 88, 70, 0.3);
}

.ak-about-page .ak-about-story-column p {
    color: var(--ak-text);
    line-height: 1.75;
}

.ak-about-page .ak-about-story-column .button-outline {
    width: fit-content;
    border-color: var(--ak-green);
    color: var(--ak-green-deep);
}

.ak-about-page .ak-about-story-column .button-outline:hover {
    background: var(--ak-green-deep);
    color: var(--ak-white);
}

.ak-about-page .ak-about-story-column .button-outline:hover .icon-svg {
    fill: var(--ak-white);
}

.ak-about-page > div:first-child .content-container {
    transform: none !important;
    padding-top: 5rem !important;
}

.ak-about-page > div:first-child .bg-white {
    border-radius: var(--ak-radius);
    box-shadow: var(--ak-shadow);
}

:is(.ak-about-page, body.ak-route-o-nas) #tim {
    position: relative;
    isolation: isolate;
    padding-top: clamp(5rem, 8vw, 8rem);
    padding-bottom: clamp(5rem, 8vw, 8rem);
}

:is(.ak-about-page, body.ak-route-o-nas) #tim::before {
    position: absolute;
    inset: 0 50%;
    z-index: -1;
    width: 100vw;
    background:
        linear-gradient(180deg, rgba(226, 235, 229, 0.72), rgba(251, 251, 250, 0.96) 42%, var(--ak-white));
    content: "";
    transform: translateX(-50%);
}

:is(.ak-about-page, body.ak-route-o-nas) #tim .ak-team-heading .ak-eyebrow {
    justify-content: center;
    color: var(--ak-green);
}

:is(.ak-about-page, body.ak-route-o-nas) #tim .ak-team-heading h2 {
    margin-top: 1rem;
    color: var(--ak-ink);
}

:is(.ak-about-page, body.ak-route-o-nas) #tim .item {
    min-height: 9rem;
    border: 1px solid rgba(53, 88, 70, 0.22);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.88);
    opacity: 1;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

:is(.ak-about-page, body.ak-route-o-nas) #tim .item h4,
:is(.ak-about-page, body.ak-route-o-nas) #tim .item h6 {
    transition: color 135ms ease-in, opacity 135ms ease-in;
}

:is(.ak-about-page, body.ak-route-o-nas) #tim .item.active {
    border-color: var(--ak-green-deep);
    background: var(--ak-green-deep);
    box-shadow: 0 18px 45px rgba(20, 57, 42, 0.17);
}

@media (hover: hover) and (pointer: fine) {
    :is(.ak-about-page, body.ak-route-o-nas) #tim .item:hover {
        border-color: var(--ak-green-deep);
        background: var(--ak-green-deep);
        color: var(--ak-white);
        transform: translateY(-0.2rem);
        box-shadow: 0 16px 40px rgba(20, 43, 32, 0.09);
    }

    :is(.ak-about-page, body.ak-route-o-nas) #tim .item:hover h4,
    :is(.ak-about-page, body.ak-route-o-nas) #tim .item:hover h6 {
        color: var(--ak-white);
    }
}

:is(.ak-about-page, body.ak-route-o-nas) #tim .tab-content.active {
    border: 1px solid rgba(53, 88, 70, 0.18);
    border-top: 0.25rem solid var(--ak-green);
    border-radius: var(--ak-radius);
    background: var(--ak-white);
    padding: clamp(1.5rem, 4vw, 4rem);
    box-shadow: 0 24px 64px rgba(20, 57, 42, 0.1);
}

:is(.ak-about-page, body.ak-route-o-nas) #tim .tab-content h2 {
    color: var(--ak-green-deep);
}

:is(.ak-about-page, body.ak-route-o-nas) #tim .tab-content h5 {
    color: var(--ak-green);
}

:is(.ak-about-page, body.ak-route-o-nas) #tim .tab-content a {
    color: var(--ak-green-deep);
    text-decoration-color: rgba(53, 88, 70, 0.45);
}

.ak-contact-page #contact-header {
    min-height: 50rem !important;
    background:
        radial-gradient(circle at 82% 20%, rgba(82, 128, 103, 0.22), transparent 32%),
        var(--ak-green-deep) !important;
}

.ak-contact-page #contact-header .content-container {
    padding-top: var(--ak-header-height);
}

.ak-contact-page .ak-contact-legal-details {
    display: grid;
    max-width: 38rem;
    gap: 1.5rem;
    color: var(--ak-white);
}

.ak-contact-page .ak-contact-address {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.7;
}

.ak-contact-page .ak-contact-registration {
    display: grid;
    gap: 0.65rem;
    border-left: 2px solid rgba(255, 255, 255, 0.56);
    padding-left: 1.25rem;
}

.ak-contact-page .ak-contact-registration > span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ak-contact-page .ak-contact-registration p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.95rem;
    line-height: 1.6;
}

.ak-contact-page #contact-header > div:last-child {
    opacity: 0.08 !important;
}

.ak-contact-page #contact-header h2 {
    color: var(--ak-white);
}

.ak-contact-page #contact-header p {
    color: rgba(255, 255, 255, 0.76);
}

.ak-contact-page #contact-header a {
    color: var(--ak-white);
}

.ak-contact-page > section {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.ak-contact-page .map {
    overflow: hidden;
    border-radius: var(--ak-radius);
}

/* Footer */
.ak-footer {
    overflow: hidden;
    border-top: 1px solid var(--ak-line);
    background: var(--ak-white);
}

.ak-footer > .content-container {
    padding-top: 2rem;
}

.ak-footer img {
    display: block;
    max-width: 15rem;
    height: auto;
}

.ak-footer h5 {
    color: var(--ak-ink);
}

.ak-footer-legal-details {
    display: grid;
    max-width: 30rem;
    gap: 1.25rem;
}

.ak-footer-legal-details p {
    color: var(--ak-text);
    line-height: 1.65;
}

.ak-footer a:hover {
    color: var(--ak-green);
}

.ak-footer > div:last-child {
    top: 0;
    bottom: auto;
    width: min(52vw, 58rem);
    opacity: 1;
    pointer-events: none;
}

.ak-footer > div:last-child svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 1180px) {
    :root {
        --ak-header-height: 6.25rem;
    }

    .ak-header-top {
        display: none;
    }

    .ak-nav-list {
        display: none;
    }

    .ak-mobile-actions {
        display: flex;
    }

    .ak-main-nav {
        min-height: 4.7rem;
    }

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

}

@media (max-width: 900px) {
    .ak-split,
    .ak-about-grid,
    .ak-contact-cta .content-container,
    .ak-defence-hero .content-container {
        grid-template-columns: 1fr;
    }

    .ak-about-page .ak-about-story {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ak-network-section .ak-section-heading {
        grid-template-columns: 1fr;
        row-gap: 1.5rem;
    }

    .ak-network-section .ak-section-heading > p {
        grid-column: 1;
        grid-row: auto;
        max-width: 42rem;
    }

    .ak-network-list {
        grid-template-columns: 1fr;
    }

    .ak-network-list > div:first-child,
    .ak-network-list > div:nth-child(2),
    .ak-network-list > div:nth-child(3) {
        grid-column: 1;
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .ak-contact-cta--home .content-container > div:last-child {
        justify-self: start;
    }

    .ak-section-head-row {
        align-items: start;
        flex-direction: column;
    }

    .ak-section-head-row--services,
    .ak-section-head-row--services .ak-services-intro-copy {
        grid-template-columns: 1fr;
    }

    .ak-process-manifest,
    .ak-ecosystem-card--capacities {
        grid-template-columns: 1fr;
    }

    .ak-process-manifest {
        gap: 1.5rem;
    }

    .ak-ecosystem-card--network,
    .ak-ecosystem-card--knowhow,
    .ak-ecosystem-card--capacities {
        grid-column: 1 / -1;
    }

    .ak-hero {
        min-height: 50rem;
    }

    .ak-hero-content {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 3rem;
    }

    .ak-hero-proof {
        justify-self: start;
    }

    .ak-trust-strip .content-container {
        grid-template-columns: 1fr;
    }

    .ak-trust-strip .content-container > div,
    .ak-trust-strip .content-container > div:first-child {
        min-height: 6.5rem;
        border-right: 0;
        border-bottom: 1px solid var(--ak-line);
        border-left: 0;
        padding-right: 0;
        padding-left: 0;
    }

    .ak-partner-grid,
    .ak-defence-service-grid {
        grid-template-columns: 1fr;
    }

    .ak-defence-service-grid article,
    .ak-defence-service-grid article.has-details,
    .ak-defence-service-grid article:nth-child(5),
    .ak-defence-service-grid article:nth-child(6) {
        grid-column: 1;
    }

    .ak-defence-service-grid article.has-details {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 2rem;
    }

    .ak-defence-service-grid article.has-details h3,
    .ak-service-detail-list {
        grid-column: 1;
        grid-row: auto;
    }

    .ak-defence-service-grid article.has-details h3 {
        margin-top: 2rem;
    }

    .ak-service-detail-list {
        grid-template-columns: 1fr;
        border-left: 0;
        padding-left: 0;
    }

    .ak-about-monogram {
        width: min(100%, 28rem);
    }

    .ak-defence-hero-aside {
        max-width: 36rem;
    }

    .ak-proof-statement,
    .ak-proof-columns {
        grid-template-columns: 1fr;
    }

    .ak-proof-statement .ak-proof-number {
        white-space: normal;
    }

    .ak-proof-columns article + article {
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        border-left: 0;
        padding-top: 3rem;
        padding-left: 0;
    }

    .ak-services-page #services .flex.lg\:flex-row {
        gap: 0 !important;
    }

    .ak-services-page #services .bg-background,
    .ak-services-page #services .bg-white {
        border-radius: var(--ak-radius) !important;
    }
}

@media (max-width: 640px) {
    body.ak-modern-refresh h1 {
        font-size: clamp(2.6rem, 11vw, 3.65rem);
    }

    body.ak-modern-refresh h2 {
        font-size: clamp(2rem, 8.5vw, 2.9rem);
    }

    .ak-section {
        padding: 4rem 0;
    }

    .ak-brand img {
        height: 2.75rem;
    }

    .ak-mobile-actions > a {
        display: none;
    }

    .ak-hero {
        min-height: 48rem;
        align-items: flex-end;
    }

    .ak-hero-overlay {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.96) 42%, #fff 100%);
    }

    .ak-hero-content {
        padding-top: 5rem;
        padding-bottom: 6rem;
    }

    .ak-hero-actions,
    .ak-inline-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .ak-button {
        width: 100%;
    }

    .ak-scroll-cue {
        display: none;
    }

    .ak-service-grid {
        grid-template-columns: 1fr;
    }

    .ak-service-card {
        min-height: 23rem;
    }

    .ak-partner-card {
        min-height: 12rem;
    }

    .ak-partner-card img,
    .ak-partner-card.is-suchy img {
        height: 4.5rem;
    }

    .ak-contact-cta .content-container {
        gap: 2rem;
    }

    .ak-defence-hero {
        min-height: auto;
        padding-top: calc(var(--ak-header-height) + 3rem);
    }

    .ak-defence-hero .content-container {
        padding-top: 2rem;
        padding-bottom: 5rem;
    }

    .ak-defence-service-grid article {
        min-height: 19rem;
    }

    .ak-process-route {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .ak-process-route-line {
        display: none;
    }

    .ak-network-list > div {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .ak-faq-list summary {
        font-size: 1rem;
    }

    .ak-services-page-intro {
        padding-top: calc(var(--ak-header-height) + 3rem);
        padding-bottom: 4rem;
    }

    .ak-services-page #services .content-container {
        padding-top: 3rem !important;
    }

    .ak-services-page #services .bg-background {
        padding: 2rem 1rem !important;
    }

    .ak-services-page #services .bg-white {
        padding: 0 !important;
    }

    .ak-services-page #services .tab {
        column-gap: 1rem;
    }

    .ak-about-page > div:first-child .content-container {
        padding-top: 3rem !important;
    }

    .ak-about-page > .ak-about-hero-shell .ak-about-hero-content {
        width: calc(100% - 2.5rem);
        max-width: 100%;
        margin-right: 1.25rem;
        margin-left: 1.25rem;
        padding-right: 0 !important;
        padding-left: 0 !important;
        padding-top: 0 !important;
    }

    .ak-about-page .ak-about-intro-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        padding: 2rem !important;
    }

    .ak-about-page .ak-about-intro-card > .ak-eyebrow {
        display: block;
        max-width: 15rem;
        white-space: normal;
        line-height: 1.55;
    }

    .ak-contact-page #contact-header .content-container,
    .ak-contact-page .ak-contact-legal-details,
    .ak-contact-page .ak-contact-registration {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .ak-contact-page #contact-header .content-container {
        width: calc(100% - 2.5rem);
        margin-right: 1.25rem;
        margin-left: 1.25rem;
        padding-right: 0;
        padding-left: 0;
    }

    .ak-contact-page .ak-contact-registration p {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .ak-footer {
        padding-top: 5rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-aos] {
        transform: none !important;
        opacity: 1 !important;
    }
}
