﻿:root {
    --ak-primary: #0F52BA;
    --ak-primary-dark: #0A3D8F;
    --ak-primary-light: #3B73CC;
    --ak-bg-base: #080E1A;
    --ak-bg-card: #111827;
    --ak-bg-alt: #0D1829;
    --ak-bg-light: #F0F4FA;
    --ak-border: #1E2D47;
    --ak-text-heading: #E8EDF5;
    --ak-text-body: #A8B8CC;
    --ak-text-muted: #5C7A9C;
    --ak-text-dark: #0F1C2E;
    --ak-text-mid: #4A5568;
    --ak-white: #FFFFFF;
    --ak-gold: #C4962A;
    --ak-radius: 4px;
    --ak-shadow: 0 2px 16px rgba(0,0,0,0.4);
    --ak-shadow-lg: 0 8px 40px rgba(15,82,186,0.15);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #080E1A;
    color: #A8B8CC;
    margin: 0;
    padding: 0;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}

body.body-light {
    background: #F0F4FA;
    color: #4A5568;
}

a { color: #3B73CC; text-decoration: none; }
a:hover { color: #0F52BA; }

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

h1, h2, h3, h4, h5, h6 { color: #E8EDF5; }

.ak-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.ak-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    background: rgba(8,14,26,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #1E2D47;
    display: flex;
    align-items: center;
}

.ak-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ak-nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.ak-nav__brand-mark {
    width: 32px;
    height: 32px;
    background: #0F52BA;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.ak-nav__brand-name {
    font-size: 17px;
    font-weight: 700;
    color: #E8EDF5;
    letter-spacing: -0.01em;
}

.ak-nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ak-nav__links li a,
.ak-nav__links li a:visited {
    font-size: 14px;
    font-weight: 500;
    color: #A8B8CC;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.ak-nav__links li a:hover {
    color: #E8EDF5;
}

.ak-nav__links li a.active {
    color: #E8EDF5;
}

.ak-nav__cta {
    font-size: 14px;
    font-weight: 600;
    color: #0F52BA;
    border: 1.5px solid #0F52BA;
    padding: 9px 22px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.2s, color 0.2s;
}

.ak-nav__cta:hover {
    background: #0F52BA;
    color: #FFFFFF;
}

.ak-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.ak-nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #A8B8CC;
    border-radius: 2px;
    transition: all 0.2s;
}

@media (max-width: 991px) {
    .ak-nav__toggle { display: flex; }

    .ak-nav__links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(8,14,26,0.97);
        border-bottom: 1px solid #1E2D47;
        padding: 16px 24px 24px;
    }

    .ak-nav__links.open { display: flex; }

    .ak-nav__links li a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #1E2D47;
    }

    .ak-nav__links li:last-child a { border-bottom: none; }

    .ak-nav__cta {
        display: inline-block;
        margin-top: 8px;
        border: 1.5px solid #0F52BA;
    }
}

.ak-page-pad { padding-top: 72px; }

.ak-hero {
    background: #080E1A;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.ak-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(30,45,71,0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30,45,71,0.4) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.ak-hero--short {
    padding: 80px 0 60px;
    text-align: center;
}

.ak-hero__eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: #3B73CC;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.ak-hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: #E8EDF5;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.ak-hero--short h1 {
    font-size: 42px;
    letter-spacing: -0.02em;
}

.ak-hero__sub {
    font-size: 18px;
    color: #A8B8CC;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 580px;
}

.ak-hero--short .ak-hero__sub {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.ak-hero__ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.ak-hero--short .ak-hero__ctas {
    justify-content: center;
}

.ak-hero__img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ak-hero-img {
    width: 100%;
    max-width: 560px;
    border-radius: 4px;
    border: 1px solid #1E2D47;
    box-shadow: 0 8px 40px rgba(15,82,186,0.15);
    background: #111827;
    min-height: 320px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .ak-hero { padding: 100px 0 64px; }
    .ak-hero h1 { font-size: 36px; }
    .ak-hero--short h1 { font-size: 30px; }
    .ak-hero__img-wrap { display: none; }
    .ak-hero__sub { font-size: 16px; }
}

.ak-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    border: 1.5px solid transparent;
}

.ak-btn--primary {
    background: #0F52BA;
    color: #FFFFFF;
    border-color: #0F52BA;
}

.ak-btn--primary:hover {
    background: #0A3D8F;
    border-color: #0A3D8F;
    color: #FFFFFF;
}

.ak-btn--outline {
    background: transparent;
    color: #0F52BA;
    border-color: #0F52BA;
}

.ak-btn--outline:hover {
    background: #0F52BA;
    color: #FFFFFF;
}

.ak-btn--ghost {
    background: transparent;
    color: #A8B8CC;
    border-color: transparent;
}

.ak-btn--ghost:hover {
    color: #E8EDF5;
}

.ak-btn--white {
    background: #FFFFFF;
    color: #0F52BA;
    border-color: #FFFFFF;
}

.ak-btn--white:hover {
    background: #F0F4FA;
    color: #0A3D8F;
}

.ak-btn--white-outline {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255,255,255,0.5);
}

.ak-btn--white-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #FFFFFF;
}

.ak-section {
    padding: 96px 0;
}

.ak-section--sm {
    padding: 64px 0;
}

.ak-section--dark { background: #080E1A; }
.ak-section--card { background: #111827; }
.ak-section--alt { background: #0D1829; }
.ak-section--light { background: #F0F4FA; }

.ak-section__eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: #3B73CC;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.ak-section__title {
    font-size: 32px;
    font-weight: 600;
    color: #E8EDF5;
    letter-spacing: -0.01em;
    line-height: 1.25;
    margin-bottom: 16px;
}

.ak-section__title--dark {
    color: #0F1C2E;
}

.ak-section__sub {
    font-size: 16px;
    color: #A8B8CC;
    line-height: 1.65;
    max-width: 600px;
}

.ak-section__sub--dark {
    color: #4A5568;
}

.ak-section-header {
    margin-bottom: 56px;
}

.ak-section-header--center {
    text-align: center;
}

.ak-section-header--center .ak-section__sub {
    margin-left: auto;
    margin-right: auto;
}

.ak-stats {
    background: #0D1829;
    padding: 64px 0;
    border-top: 1px solid #1E2D47;
    border-bottom: 1px solid #1E2D47;
}

.ak-stat {
    text-align: center;
    padding: 24px 16px;
}

.ak-stat__num {
    font-size: 42px;
    font-weight: 700;
    color: #E8EDF5;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    letter-spacing: -0.02em;
}

.ak-stat__label {
    font-size: 13px;
    font-weight: 600;
    color: #5C7A9C;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ak-stat__icon {
    font-size: 20px;
    color: #0F52BA;
    margin-bottom: 12px;
}

.ak-stats--cards .ak-stat {
    background: #111827;
    border: 1px solid #1E2D47;
    border-radius: 4px;
    padding: 32px;
}

.ak-card {
    background: #111827;
    border: 1px solid #1E2D47;
    border-radius: 4px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 16px rgba(0,0,0,0.4);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ak-card:hover {
    border-color: #3B73CC;
    box-shadow: 0 8px 40px rgba(15,82,186,0.15);
}

.ak-card__icon {
    font-size: 22px;
    color: #0F52BA;
    margin-bottom: 20px;
    width: 48px;
    height: 48px;
    background: rgba(15,82,186,0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ak-card__tag {
    font-size: 12px;
    font-weight: 600;
    color: #C4962A;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.ak-card__tag--blue {
    color: #3B73CC;
}

.ak-card__tag--stage {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 2px;
    font-size: 11px;
    background: rgba(15,82,186,0.15);
    color: #3B73CC;
    border: 1px solid rgba(59,115,204,0.3);
}

.ak-card h3, .ak-card__title {
    font-size: 22px;
    font-weight: 600;
    color: #E8EDF5;
    margin-bottom: 12px;
    line-height: 1.3;
}

.ak-card p, .ak-card__body {
    font-size: 16px;
    color: #A8B8CC;
    line-height: 1.65;
    flex: 1;
}

.ak-card__footer {
    margin-top: auto;
    padding-top: 20px;
}

.ak-portfolio-card {
    background: #111827;
    border: 1px solid #1E2D47;
    border-radius: 4px;
    padding: 28px 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ak-portfolio-card:hover {
    border-color: #3B73CC;
    box-shadow: 0 8px 40px rgba(15,82,186,0.15);
}

.ak-portfolio-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 12px;
}

.ak-portfolio-logo {
    width: 192px;
    height: 64px;
    object-fit: contain;
    background: rgba(255,255,255,0.04);
    border-radius: 2px;
    padding: 8px;
}

.ak-portfolio-logo-placeholder {
    width: 192px;
    height: 64px;
    background: rgba(15,82,186,0.1);
    border: 1px solid #1E2D47;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #3B73CC;
    letter-spacing: -0.01em;
}

.ak-portfolio-card__name {
    font-size: 20px;
    font-weight: 600;
    color: #E8EDF5;
    margin-bottom: 8px;
    line-height: 1.25;
}

.ak-portfolio-card__desc {
    font-size: 14px;
    color: #A8B8CC;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.ak-portfolio-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.ak-filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.ak-filter-btn {
    font-size: 13px;
    font-weight: 600;
    color: #A8B8CC;
    background: #111827;
    border: 1px solid #1E2D47;
    border-radius: 4px;
    padding: 8px 18px;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: all 0.2s;
}

.ak-filter-btn:hover,
.ak-filter-btn.active {
    background: #0F52BA;
    border-color: #0F52BA;
    color: #FFFFFF;
}

.ak-alt-row {
    display: flex;
    align-items: center;
    gap: 64px;
    margin-bottom: 80px;
}

.ak-alt-row:last-child { margin-bottom: 0; }

.ak-alt-row--flip { flex-direction: row-reverse; }

.ak-alt-row__text { flex: 1; }

.ak-alt-row__visual {
    flex: 1;
    max-width: 480px;
}

.ak-alt-row__visual-box {
    background: #111827;
    border: 1px solid #1E2D47;
    border-radius: 4px;
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ak-alt-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #1E2D47;
    background: #111827;
}

.ak-alt-row__text h3 {
    font-size: 26px;
    font-weight: 600;
    color: #E8EDF5;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.ak-alt-row__text p {
    font-size: 16px;
    color: #A8B8CC;
    line-height: 1.65;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .ak-alt-row { flex-direction: column; gap: 32px; }
    .ak-alt-row--flip { flex-direction: column; }
    .ak-alt-row__visual { max-width: 100%; width: 100%; }
}

.ak-team-card {
    background: #111827;
    border: 1px solid #1E2D47;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s;
}

.ak-team-card:hover {
    border-color: #3B73CC;
}

.ak-team-avatar {
    width: 50%;
    max-width: 240px;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    object-position: center top;
    display: block;
    margin: 32px auto 16px;
    border-radius: 8px;
    background: #0D1829;
    border: 1px solid #1E2D47;
}

.ak-team-avatar-placeholder {
    width: 50%;
    max-width: 240px;
    aspect-ratio: 1 / 1;
    height: auto;
    margin: 32px auto 16px;
    border-radius: 8px;
    background: #0D1829;
    border: 1px solid #1E2D47;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #1E2D47;
}

.ak-team-card__body {
    padding: 20px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.ak-team-card__name {
    font-size: 20px;
    font-weight: 600;
    color: #E8EDF5;
    margin-bottom: 4px;
    line-height: 1.25;
}

.ak-team-card__title {
    font-size: 13px;
    font-weight: 700;
    color: #3B73CC;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ak-team-card__bio {
    font-size: 14px;
    color: #A8B8CC;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.ak-team-card__focus {
    font-size: 12px;
    color: #5C7A9C;
    letter-spacing: 0.02em;
    border-top: 1px solid #1E2D47;
    padding-top: 12px;
    margin-top: auto;
}

.ak-team-grid--simple .ak-team-mini {
    text-align: center;
    padding: 16px;
}

.ak-team-avatar--sm {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    background: #0D1829;
    margin: 0 auto 12px;
    display: block;
}

.ak-team-avatar--sm-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #0D1829;
    border: 2px solid #1E2D47;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1E2D47;
    margin: 0 auto 12px;
}

.ak-team-mini__name {
    font-size: 16px;
    font-weight: 600;
    color: #E8EDF5;
    margin-bottom: 4px;
}

.ak-team-mini__title {
    font-size: 13px;
    color: #5C7A9C;
}

.ak-advisor-card {
    background: #111827;
    border: 1px solid #1E2D47;
    border-radius: 4px;
    padding: 24px;
    height: 100%;
}

.ak-advisor-card__name {
    font-size: 16px;
    font-weight: 600;
    color: #E8EDF5;
    margin-bottom: 4px;
}

.ak-advisor-card__title {
    font-size: 13px;
    color: #5C7A9C;
    margin-bottom: 2px;
}

.ak-advisor-card__company {
    font-size: 12px;
    color: #3B73CC;
    font-weight: 600;
}

.ak-blog-card {
    background: #111827;
    border: 1px solid #1E2D47;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s;
}

.ak-blog-card:hover {
    border-color: #3B73CC;
}

.ak-blog-card__img-wrap a {
    display: block;
}

.ak-blog-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: #0D1829;
}

.ak-blog-card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ak-blog-card__date {
    font-size: 12px;
    color: #5C7A9C;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ak-blog-card__title {
    font-size: 17px;
    font-weight: 600;
    color: #E8EDF5;
    line-height: 1.4;
    margin-bottom: 10px;
}

.ak-blog-card__title a {
    color: #E8EDF5;
    text-decoration: none;
}

.ak-blog-card__title a:hover {
    color: #3B73CC;
}

.ak-blog-card__excerpt {
    font-size: 14px;
    color: #A8B8CC;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.ak-blog-card__link {
    font-size: 13px;
    font-weight: 600;
    color: #3B73CC;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.ak-blog-card__link:hover {
    color: #0F52BA;
}

.ak-cta-banner {
    background: #0F52BA;
    padding: 64px 0;
    text-align: center;
}

.ak-cta-banner h2 {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.ak-cta-banner p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.ak-cta-card {
    background: #111827;
    border: 1px solid #1E2D47;
    border-radius: 4px;
    padding: 56px 48px;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.ak-cta-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: #E8EDF5;
    margin-bottom: 12px;
}

.ak-cta-card p {
    font-size: 16px;
    color: #A8B8CC;
    margin-bottom: 28px;
    line-height: 1.65;
}

.ak-cta-card--light {
    background: #FFFFFF;
    border-color: #E2E8F0;
}

.ak-cta-card--light h2 { color: #0F1C2E; }
.ak-cta-card--light p { color: #4A5568; }

.ak-contact-section {
    background: #F0F4FA;
    padding: 96px 0;
}

.ak-contact-form-col {
    padding-right: 32px;
}

.ak-contact-info-col {
    padding-left: 32px;
    border-left: 1px solid #CBD5E0;
}

.ak-form-group {
    margin-bottom: 20px;
}

.ak-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0F1C2E;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.ak-form-control {
    width: 100%;
    padding: 11px 16px;
    font-size: 15px;
    color: #0F1C2E;
    background: #FFFFFF;
    border: 1.5px solid #CBD5E0;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
    line-height: 1.5;
}

.ak-form-control:focus {
    border-color: #0F52BA;
}

.ak-form-control::placeholder {
    color: #A0AEC0;
}

textarea.ak-form-control {
    resize: vertical;
    min-height: 120px;
}

.ak-contact-info-title {
    font-size: 18px;
    font-weight: 700;
    color: #0F1C2E;
    margin-bottom: 8px;
}

.ak-contact-info-sub {
    font-size: 14px;
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 32px;
}

.ak-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.ak-contact-info-item__icon {
    width: 40px;
    height: 40px;
    background: rgba(15,82,186,0.08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #0F52BA;
    flex-shrink: 0;
    margin-top: 2px;
}

.ak-contact-info-item__text {
    font-size: 15px;
    color: #0F1C2E;
    line-height: 1.5;
}

.ak-contact-info-item__label {
    font-size: 12px;
    font-weight: 600;
    color: #A0AEC0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.ak-map-placeholder {
    background: #E2E8F0;
    border-radius: 4px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #A0AEC0;
    margin-top: 24px;
    border: 1px solid #CBD5E0;
    letter-spacing: 0.02em;
}

@media (max-width: 767px) {
    .ak-contact-form-col { padding-right: 0; margin-bottom: 40px; }
    .ak-contact-info-col { padding-left: 0; border-left: none; border-top: 1px solid #CBD5E0; padding-top: 32px; }
}

.ak-mission {
    padding: 80px 0;
    background: #0D1829;
}

.ak-mission__text {
    font-size: 22px;
    color: #A8B8CC;
    line-height: 1.7;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    font-weight: 400;
}

.ak-value-block {
    padding: 40px 0 24px;
    border-top: 1px solid #1E2D47;
}

.ak-value-block:first-child { border-top: none; }

.ak-value-block__title {
    font-size: 18px;
    font-weight: 600;
    color: #E8EDF5;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ak-value-block__title i {
    color: #0F52BA;
    font-size: 16px;
}

.ak-value-block__text {
    font-size: 16px;
    color: #A8B8CC;
    line-height: 1.7;
}

.ak-footer {
    background: #040810;
    border-top: 1px solid #1E2D47;
    padding: 72px 0 0;
}

.ak-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid #1E2D47;
}

.ak-footer__brand-mark {
    width: 36px;
    height: 36px;
    background: #0F52BA;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.ak-footer__brand-name {
    font-size: 17px;
    font-weight: 700;
    color: #E8EDF5;
    display: block;
    margin-bottom: 12px;
    text-decoration: none;
}

.ak-footer__tagline {
    font-size: 14px;
    color: #5C7A9C;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ak-footer__col h4 {
    font-size: 12px;
    font-weight: 700;
    color: #5C7A9C;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ak-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ak-footer__col ul li {
    margin-bottom: 10px;
}

.ak-footer__col ul li a {
    font-size: 14px;
    color: #A8B8CC;
    text-decoration: none;
    transition: color 0.2s;
}

.ak-footer__col ul li a:hover {
    color: #E8EDF5;
}

.ak-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #A8B8CC;
    line-height: 1.5;
}

.ak-footer__contact-item i {
    color: #3B73CC;
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
}

.ak-footer__contact-item a {
    color: #A8B8CC;
    text-decoration: none;
}

.ak-footer__contact-item a:hover {
    color: #E8EDF5;
}

.ak-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.ak-footer__copyright {
    font-size: 13px;
    color: #5C7A9C;
}

.ak-footer__legal {
    display: flex;
    gap: 24px;
}

.ak-footer__legal a {
    font-size: 13px;
    color: #5C7A9C;
    text-decoration: none;
    transition: color 0.2s;
}

.ak-footer__legal a:hover {
    color: #A8B8CC;
}

@media (max-width: 991px) {
    .ak-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 575px) {
    .ak-footer__grid {
        grid-template-columns: 1fr;
    }
    .ak-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

#ak-cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111827;
    border-top: 1px solid #1E2D47;
    padding: 20px 24px;
    z-index: 9999;
    font-size: 14px;
    color: #A8B8CC;
}

.ak-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.ak-cookie-text {
    flex: 1;
    min-width: 240px;
}

.ak-cookie-text a {
    color: #3B73CC;
    text-decoration: underline;
}

.ak-cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.ak-cookie-accept {
    padding: 9px 20px;
    background: #0F52BA;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.ak-cookie-optout {
    padding: 9px 20px;
    background: transparent;
    color: #A8B8CC;
    border: 1px solid #1E2D47;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.ak-cookie-accept:hover { background: #0A3D8F; }
.ak-cookie-optout:hover { color: #E8EDF5; border-color: #5C7A9C; }

.ak-legal {
    background: #F0F4FA;
    padding: 96px 0;
}

.ak-legal__content {
    max-width: 780px;
    margin: 0 auto;
}

.ak-legal__content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #0F1C2E;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.ak-legal__content .ak-legal__date {
    font-size: 13px;
    color: #A0AEC0;
    margin-bottom: 40px;
    display: block;
}

.ak-legal__content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0F1C2E;
    margin-top: 40px;
    margin-bottom: 12px;
}

.ak-legal__content p,
.ak-legal__content li {
    font-size: 15px;
    color: #4A5568;
    line-height: 1.75;
}

.ak-legal__content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.ak-legal__content a {
    color: #0F52BA;
}

.ak-page-hero {
    background: #080E1A;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ak-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 50% 0%, rgba(15,82,186,0.12) 0%, transparent 60%),
        linear-gradient(rgba(30,45,71,0.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30,45,71,0.25) 1px, transparent 1px);
    background-size: 100% 100%, 48px 48px, 48px 48px;
    pointer-events: none;
}

.ak-page-hero__inner {
    position: relative;
    z-index: 1;
}

.ak-page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #E8EDF5;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.2;
}

.ak-page-hero__sub {
    font-size: 18px;
    color: #A8B8CC;
    line-height: 1.65;
    max-width: 640px;
    margin: 0 auto;
}

.ak-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #080E1A;
    padding: 60px 24px;
}

.ak-404__num {
    font-size: 120px;
    font-weight: 700;
    color: #0F52BA;
    line-height: 1;
    margin-bottom: 16px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -0.04em;
}

.ak-404 h1 {
    font-size: 28px;
    font-weight: 600;
    color: #E8EDF5;
    margin-bottom: 16px;
}

.ak-404 p {
    font-size: 16px;
    color: #A8B8CC;
    margin-bottom: 36px;
}

.ak-404__ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.ak-divider {
    border: none;
    border-top: 1px solid #1E2D47;
    margin: 0;
}

.ak-text-accent { color: #3B73CC; }
.ak-text-muted { color: #5C7A9C; }
.ak-text-heading { color: #E8EDF5; }

.ak-link-arrow {
    font-size: 15px;
    font-weight: 600;
    color: #3B73CC;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ak-link-arrow:hover {
    color: #0F52BA;
}

.ak-badge-sector {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ak-badge-sector--cloud { background: rgba(15,82,186,0.15); color: #3B73CC; }
.ak-badge-sector--security { background: rgba(196,150,42,0.15); color: #C4962A; }
.ak-badge-sector--devops { background: rgba(16,185,129,0.12); color: #10B981; }
.ak-badge-sector--data { background: rgba(139,92,246,0.12); color: #A78BFA; }
.ak-badge-sector--enterprise { background: rgba(236,72,153,0.1); color: #F472B6; }

.ak-year-tag {
    font-size: 11px;
    color: #5C7A9C;
    font-weight: 600;
    letter-spacing: 0.04em;
}

