:root {
    --font-olympic-headline: 'Barlow Semi Condensed', 'Inter', sans-serif;
    --font-olympic-sans: 'Inter', sans-serif;
    --font-olympic-serif: 'Source Serif 4', Georgia, serif;
    --bg: #f4f6fa;
    --surface: #ffffff;
    --surface-soft: #eef3fb;
    --text: #10131a;
    --muted: #5a6270;
    --line: #d7e0ed;
    --blue: #0384c6;
    --blue-dark: #056ba0;
    --navy: #0a1f3e;
    --red: #db0032;
    --yellow: #f3c000;
    --green: #07934d;
    --black: #000000;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --shadow-sm: 0 8px 24px rgba(8, 18, 33, 0.08);
    --shadow-md: 0 18px 44px rgba(8, 18, 33, 0.16);
    --container: 1160px;
    --container-wide: 1320px;
    --transition: 220ms ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-olympic-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

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

ul {
    list-style: none;
}

.container {
    width: min(var(--container), 92vw);
    margin: 0 auto;
}

.container-wide {
    width: min(var(--container-wide), 95vw);
    margin: 0 auto;
}

.section {
    padding: 78px 0;
}

.section-soft {
    background: linear-gradient(180deg, #f8faff, #f0f5fd);
}

.legal-wrap {
    max-width: 920px;
    margin: 0 auto;
}

.legal-wrap .panel section + section {
    margin-top: 18px;
}

.eyebrow {
    font-family: var(--font-olympic-headline);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.13em;
    color: var(--blue);
    margin-bottom: 12px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-olympic-headline);
    text-transform: uppercase;
    line-height: 1.12;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4.8rem);
}

h2 {
    font-size: clamp(1.5rem, 2.2vw, 3rem);
}

h3 {
    font-size: clamp(1.02rem, 1.3vw, 1.55rem);
}

p {
    color: var(--muted);
}

.btn {
    font-family: var(--font-olympic-headline);
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 12px 22px;
    font-size: 0.92rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform var(--transition), background var(--transition), color var(--transition), border var(--transition);
}

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

.btn-solid {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 12px 28px rgba(3, 132, 198, 0.24);
}

.btn-solid:hover {
    background: var(--blue-dark);
}

.btn-light {
    color: var(--text);
    background: #fff;
    border-color: #d8e0ea;
}

.btn-light:hover {
    background: #f2f6fb;
}

.btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
}

.top-strip {
    background: linear-gradient(90deg, var(--black), #141923 30%, #0a1f3e 75%);
    color: #dce8fb;
}

.top-strip-inner {
    min-height: 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 0.78rem;
    overflow: hidden;
}

.top-strip .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff214c;
    display: inline-block;
    box-shadow: 0 0 0 6px rgba(255, 33, 76, 0.15);
}

.top-strip strong {
    color: #fff;
}

.top-strip-ticker {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 11px;
}

.top-strip-start {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.top-strip-marquee {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.top-strip-track {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: max-content;
    white-space: nowrap;
    padding-right: 11px;
    animation: top-strip-scroll var(--top-strip-duration, 38s) linear infinite;
    will-change: transform;
}

.top-strip:hover .top-strip-track {
    animation-play-state: paused;
}

.top-strip-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #dce8fb;
}

.top-strip-item i {
    color: #a9d2ff;
    font-size: 0.75em;
}

.top-strip-item a {
    color: #9ed5ff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.top-strip-item a:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.top-strip-sep {
    color: rgba(220, 232, 251, 0.45);
    font-size: 0.45rem;
}

.top-strip-right {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.top-strip-right p {
    margin: 0;
    white-space: nowrap;
}

.top-strip-social {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-strip-social a {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: #dbe7fb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.top-strip-social .social-link-disabled {
    width: 24px;
    height: 24px;
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: #dbe7fb;
    font-size: 0.7rem;
}

.top-strip-social a:hover {
    transform: translateY(-1px);
}

@keyframes top-strip-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .top-strip-track {
        animation: none;
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(2, 10, 24, 0.08);
}

.nav-shell {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(9, 20, 37, 0.09);
}

.navbar {
    min-height: 82px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-olympic-headline);
    letter-spacing: 0.04em;
}

.brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.navbar .brand img {
    width: 250px;
    height: 50px;
}

.brand span {
    font-size: 1.15rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    font-family: var(--font-olympic-headline);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 700;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
    width: 100%;
}

.nav-links a.footer-link-btn.footer-join-btn {
    width: auto;
    height: 38px;
    padding: 0 14px;
    justify-content: center;
    border-radius: 999px;
    border-color: rgba(3, 132, 198, 0.88);
    background: var(--blue);
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 0.07em;
}

.nav-links a.footer-link-btn.footer-join-btn::after {
    display: none;
}

.nav-links a.footer-link-btn.footer-join-btn:hover {
    border-color: rgba(5, 107, 160, 0.95);
    background: var(--blue-dark);
    box-shadow: 0 8px 18px rgba(3, 132, 198, 0.28);
    transform: translateY(-1px);
}

.menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid #ced8e7;
    display: none;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.menu-toggle span {
    width: 16px;
    height: 2px;
    background: #182030;
}

.hero-slider {
    position: relative;
    min-height: clamp(540px, 82vh, 760px);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 460ms ease;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.34) 35%, rgba(0, 0, 0, 0.78)),
        radial-gradient(circle at 12% 20%, rgba(3, 132, 198, 0.3), transparent 34%);
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 84px 0 76px;
    display: grid;
    align-content: end;
    min-height: clamp(540px, 82vh, 760px);
}

.hero-content h1 {
    max-width: 900px;
    margin-bottom: 16px;
}

.hero-content p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-size: 1.06rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-controls {
    position: absolute;
    z-index: 4;
    right: 3vw;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
    cursor: pointer;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}

.slider-dots {
    display: flex;
    gap: 7px;
    margin: 0 6px;
}

.slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.slider-dot.is-active {
    width: 22px;
    border-radius: 99px;
    background: #fff;
}

.rings-strip {
    height: 6px;
    display: flex;
}

.rings-strip span {
    flex: 1;
}

.rings-strip .b { background: var(--blue); }
.rings-strip .k { background: var(--black); }
.rings-strip .r { background: var(--red); }
.rings-strip .y { background: var(--yellow); }
.rings-strip .g { background: var(--green); }

.home-gained {
    margin-top: 14px;
    position: relative;
    z-index: 6;
}

.home-gained-inner {
    padding: 0;
}

.home-gained-head {
    margin-bottom: 14px;
}

.home-gained-head .eyebrow {
    margin-bottom: 8px;
}

.home-gained-head h2 {
    margin-bottom: 8px;
}

.home-gained-head p {
    margin: 0;
    font-size: 0.9rem;
    color: #455d79;
    max-width: 900px;
}

.home-gained-summary {
    line-height: 1.72;
}

.home-gained-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 6px 6px 0;
    padding: 4px 10px;
    border: 1px solid #d4e1f1;
    border-radius: 999px;
    background: #eef5ff;
    color: #2d4d6f;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.home-gained-pill i {
    color: var(--blue);
    font-size: 0.72rem;
    width: 14px;
    text-align: center;
}

.home-gained-ticker {
    position: relative;
    overflow: hidden;
    border: 1px solid #d9e4f2;
    border-radius: 14px;
    background: linear-gradient(180deg, #fafdff, #f3f8ff);
    padding: 10px;
}

.home-gained-ticker::before,
.home-gained-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 56px;
    pointer-events: none;
    z-index: 2;
}

.home-gained-ticker::before {
    left: 0;
    background: linear-gradient(90deg, #f6faff 0%, rgba(246, 250, 255, 0));
}

.home-gained-ticker::after {
    right: 0;
    background: linear-gradient(270deg, #f6faff 0%, rgba(246, 250, 255, 0));
}

.home-gained-track {
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    animation: home-gained-marquee 52s linear infinite;
    will-change: transform;
}

.home-gained-ticker:hover .home-gained-track {
    animation-play-state: paused;
}

@keyframes home-gained-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-gained-track {
        animation: none;
    }
}

.home-gained-logo {
    border: 1px solid #d7e3f2;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    min-width: 152px;
    min-height: 92px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    flex-shrink: 0;
}

.home-gained-logo:hover {
    transform: translateY(-2px);
    border-color: #9ec3e8;
    box-shadow: 0 10px 20px rgba(12, 35, 67, 0.12);
}

.home-gained-logo img {
    width: 92%;
    max-height: 58px;
    object-fit: contain;
}

.home-gained-tooltip {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1300;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.98);
    transition: opacity 120ms ease, transform 120ms ease;
    border: 1px solid #d2e0f1;
    border-radius: 10px;
    background: rgba(13, 31, 58, 0.95);
    color: #f3f8ff;
    box-shadow: 0 10px 22px rgba(8, 18, 35, 0.28);
    padding: 7px 10px;
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.35;
    max-width: 280px;
    white-space: nowrap;
}

.home-gained-tooltip.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.section-head {
    margin-bottom: 24px;
}

.section-head h2 {
    margin-bottom: 9px;
}

.section-head p {
    max-width: 860px;
}

.section-head.center {
    text-align: center;
}

.section-head.center p {
    margin: 0 auto;
}

body[data-page='home'] .section-head {
    text-align: center;
}

body[data-page='home'] .section-head p {
    margin: 0 auto;
}

body[data-page='home'] .section-head .eyebrow {
    justify-content: center;
}

body[data-page='home'] .filter-tabs {
    justify-content: center;
}

body:not([data-page='home']) .section-head.center {
    text-align: left;
}

body:not([data-page='home']) .section-head.center p {
    margin: 0;
}

body:not([data-page='home']) .section-head.center .eyebrow {
    justify-content: flex-start;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.filter-tabs button {
    border: 1px solid #cad6e7;
    background: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
}

.filter-tabs button.is-active,
.filter-tabs button:hover {
    background: #0f2649;
    color: #fff;
    border-color: #0f2649;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.story-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.story-card.is-hidden {
    display: none;
}

.story-media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.story-media.mobile-ui {
    background:
        radial-gradient(circle at 16% 12%, rgba(3, 132, 198, 0.22), transparent 38%),
        radial-gradient(circle at 88% 88%, rgba(219, 0, 50, 0.16), transparent 34%),
        linear-gradient(145deg, #0a1325, #162a4a);
    display: grid;
    place-items: center;
    padding: 10px;
}

.story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.story-media.mobile-ui img {
    object-fit: contain;
    max-width: 74%;
    max-height: 100%;
    filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.4));
}

.story-card:hover img {
    transform: scale(1.06);
}

.story-body {
    padding: 16px;
}

.story-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--blue);
    letter-spacing: 0.11em;
    margin-bottom: 7px;
}

.story-body h3 {
    margin-bottom: 8px;
}

.story-body p {
    font-size: 0.93rem;
    margin-bottom: 10px;
}

.story-link {
    font-weight: 700;
    color: var(--blue-dark);
    font-size: 0.88rem;
}

.home-command {
    background:
        radial-gradient(circle at 9% 16%, rgba(3, 132, 198, 0.14), transparent 30%),
        radial-gradient(circle at 88% 84%, rgba(7, 147, 77, 0.12), transparent 32%),
        linear-gradient(180deg, #f8fbff, #eef5ff);
}

.home-command-grid {
    align-items: stretch;
}

.home-command .list-card,
.home-command .panel {
    border-radius: 18px;
    padding: 22px;
}

.home-module-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

.home-module-list li {
    border: 1px solid #d8e4f2;
    border-radius: 11px;
    background: #fff;
    min-height: 62px;
    padding: 10px 12px 10px 32px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #355170;
}

.home-module-list li::before {
    left: 11px;
    top: 10px;
    color: var(--blue);
}

.home-module-note {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #c8d8ec;
    color: #425f7f;
    font-size: 0.9rem;
}

.home-command-media {
    margin: 0 0 12px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d8e3f1;
    box-shadow: var(--shadow-sm);
}

.home-command-media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.home-command-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.home-command-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    border: 1px solid #d5e2f1;
    background: #f1f6ff;
    color: #2c4a69;
    padding: 6px 11px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-command-badges span i {
    color: var(--blue);
}

.home-engagement .section-head p {
    max-width: 760px;
    margin-inline: auto;
}

.home-institutions {
    background: #fff;
}

.home-institutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
}

.home-institution-card {
    border: 1px solid #d7e3f2;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    box-shadow: var(--shadow-sm);
    padding: 12px 12px 11px;
    display: grid;
    gap: 8px;
    text-align: center;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.home-institution-card:hover {
    transform: translateY(-4px);
    border-color: #9ec3e8;
    box-shadow: 0 16px 28px rgba(12, 35, 67, 0.14);
}

.home-institution-card img {
    width: 100%;
    height: 74px;
    object-fit: contain;
}

.home-institution-card p {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    color: #2f4f70;
    line-height: 1.35;
}

.services-architecture {
    background:
        radial-gradient(circle at 10% 16%, rgba(3, 132, 198, 0.18), transparent 30%),
        radial-gradient(circle at 90% 18%, rgba(219, 0, 50, 0.14), transparent 28%),
        radial-gradient(circle at 50% 88%, rgba(7, 147, 77, 0.14), transparent 32%),
        linear-gradient(180deg, #f9fbff, #eef5ff);
    position: relative;
    overflow: hidden;
}

.services-architecture::before {
    content: none;
}

.services-arch-chips {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.services-arch-chips span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #28466c;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid #cedced;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.services-arch-chips span:hover {
    transform: translateY(-2px);
    border-color: #9fc1e6;
    box-shadow: 0 10px 18px rgba(13, 39, 69, 0.1);
}

.services-arch-chips i {
    color: var(--blue);
}

.services-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.services-pillar-card {
    --pillar: var(--blue);
    --pillar-dark: #0f4f96;
    --pillar-soft: #eef5ff;
    background: linear-gradient(165deg, #fbfdff, var(--pillar-soft));
    border: 1px solid #d7e2ef;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    padding: 18px;
    display: grid;
    grid-template-rows: auto auto auto auto 1fr auto;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.services-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pillar), var(--pillar-dark));
}

.services-pillar-card::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    right: -52px;
    top: -54px;
    background: rgba(255, 255, 255, 0.45);
    pointer-events: none;
}

.services-pillar-card:hover {
    transform: translateY(-6px);
    border-color: var(--pillar);
    box-shadow: 0 18px 34px rgba(12, 34, 62, 0.16);
}

.services-pillar-card.is-blue {
    --pillar: var(--blue);
    --pillar-dark: #0f4f96;
    --pillar-soft: #eef5ff;
}

.services-pillar-card.is-red {
    --pillar: var(--red);
    --pillar-dark: #8d1739;
    --pillar-soft: #fff0f4;
}

.services-pillar-card.is-green {
    --pillar: var(--green);
    --pillar-dark: #146847;
    --pillar-soft: #ebfbf1;
}

.services-pillar-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    border-radius: 999px;
    width: fit-content;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #d7e2ef;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #27476d;
}

.services-pillar-eyebrow i {
    color: var(--pillar);
}

.services-pillar-card h3 {
    margin: 0;
}

.services-pillar-media {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #d8e3ef;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.services-pillar-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 17, 33, 0.04), rgba(5, 17, 33, 0));
    pointer-events: none;
}

.services-pillar-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 340ms ease;
}

.services-pillar-card:hover .services-pillar-media img {
    transform: scale(1.06);
}

.services-pillar-note {
    margin: 0;
    font-size: 0.9rem;
    color: #3d526d;
}

.services-pillar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.services-pillar-list li {
    color: #30455f;
    font-size: 0.9rem;
    position: relative;
    padding-left: 22px;
}

.services-pillar-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1em;
    color: var(--pillar);
    font-size: 0.82rem;
}

.services-pillar-tagline {
    margin: 2px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--pillar-dark);
}

.services-pillar-tagline i {
    color: var(--pillar);
}

.services-value-add {
    background:
        radial-gradient(circle at 88% 10%, rgba(243, 192, 0, 0.22), transparent 30%),
        radial-gradient(circle at 12% 82%, rgba(3, 132, 198, 0.16), transparent 30%),
        linear-gradient(180deg, #f7fbff, #eef6ff);
    position: relative;
    overflow: hidden;
}

.services-value-chips {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.services-value-chips span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #28466c;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #cedced;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.services-value-chips span:hover {
    transform: translateY(-2px);
    border-color: #9fc1e6;
    box-shadow: 0 10px 18px rgba(13, 39, 69, 0.1);
}

.services-value-chips i {
    color: var(--blue);
}

.services-value-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.services-value-card {
    --value: var(--blue);
    --value-dark: #0f4f96;
    --value-soft: #eef5ff;
    background: linear-gradient(165deg, #ffffff, var(--value-soft));
    border: 1px solid #d6e2ef;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    padding: 16px;
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.services-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--value), var(--value-dark));
}

.services-value-card:hover {
    transform: translateY(-6px);
    border-color: var(--value);
    box-shadow: 0 18px 34px rgba(12, 34, 62, 0.16);
}

.services-value-card.is-blue {
    --value: var(--blue);
    --value-dark: #0f4f96;
    --value-soft: #eef5ff;
}

.services-value-card.is-red {
    --value: var(--red);
    --value-dark: #8d1739;
    --value-soft: #fff0f4;
}

.services-value-card.is-green {
    --value: var(--green);
    --value-dark: #146847;
    --value-soft: #ebfbf1;
}

.services-value-card.is-yellow {
    --value: #d39a00;
    --value-dark: #8f6800;
    --value-soft: #fff7df;
}

.services-value-kicker {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--value-dark);
}

.services-value-card h3 {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
}

.services-value-card h3 i {
    color: var(--value);
    font-size: 0.94rem;
}

.services-value-card p {
    margin: 0;
}

.services-value-foot {
    margin-top: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--value-dark);
}

.services-value-media {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #d8e3ef;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.services-value-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 17, 33, 0.04), rgba(5, 17, 33, 0));
    pointer-events: none;
}

.services-value-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 340ms ease;
}

.services-value-card:hover .services-value-media img {
    transform: scale(1.06);
}

body[data-page='services'] .services-architecture .container,
body[data-page='services'] .services-value-add .container {
    display: grid;
    gap: 24px;
}

body[data-page='services'] .services-architecture .section-head,
body[data-page='services'] .services-value-add .section-head {
    margin-bottom: 0;
}

body[data-page='services'] .services-architecture .section-head p,
body[data-page='services'] .services-value-add .section-head p {
    max-width: 780px;
}

body[data-page='services'] .services-value-chips {
    justify-content: flex-start;
}

body[data-page='services'] .services-pillar-grid,
body[data-page='services'] .services-value-grid {
    margin-top: 0;
}

body[data-page='services'] .services-value-card {
    border-radius: 18px;
}

body[data-page='services'] .services-pillar-card h3,
body[data-page='services'] .services-value-card h3 {
    min-height: 2.4em;
}

body[data-page='services'] .services-value-add .cta-band {
    margin-top: 24px;
}


body[data-page='functional-areas'] .functional-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(122deg, rgba(6, 18, 46, 0.9), rgba(10, 31, 70, 0.74) 42%, rgba(6, 18, 46, 0.92)),
        url('../../img/photo-1559526324-593bc073d938.jpg') center/cover no-repeat;
    padding: 74px 0 62px;
}

body[data-page='functional-areas'] .functional-hero::before {
    content: none;
}

.functional-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(3, 132, 198, 0.3), transparent 32%),
        radial-gradient(circle at 84% 78%, rgba(219, 0, 50, 0.2), transparent 34%);
    pointer-events: none;
}

.functional-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
    align-items: stretch;
}

.functional-hero .breadcrumb,
.functional-hero .breadcrumb a,
.functional-hero-copy h1,
.functional-hero-copy p {
    color: #fff;
}

.functional-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-weight: 700;
    color: var(--blue);
}

.functional-hero .eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
}

.functional-hero-copy h1 {
    margin-bottom: 10px;
}

.functional-hero-copy p {
    max-width: 740px;
    color: rgba(255, 255, 255, 0.92);
}

.functional-hero-chips {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.functional-hero-chips span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.36);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.functional-hero-chips span:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.62);
    box-shadow: 0 12px 22px rgba(2, 10, 24, 0.3);
}

.functional-hero-chips i {
    color: #f3c000;
}

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

.functional-hero-actions .btn {
    margin-top: 0;
}

.functional-hero-stats {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.functional-hero-stats article {
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 20px rgba(4, 12, 28, 0.22);
    padding: 11px 12px;
    display: grid;
    gap: 2px;
    backdrop-filter: blur(4px);
}

.functional-hero-stats strong {
    color: #fff;
    font-family: var(--font-olympic-headline);
    font-size: 1.2rem;
    line-height: 1;
}

.functional-hero-stats span {
    color: rgba(228, 239, 255, 0.9);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
}

.functional-hero-panel {
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    box-shadow: 0 18px 32px rgba(4, 12, 28, 0.3);
    padding: 14px;
    display: grid;
    gap: 12px;
    backdrop-filter: blur(6px);
}

.functional-hero-panel figure {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.functional-hero-panel img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.functional-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.functional-hero-badges span {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    padding: 6px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.functional-hero-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.functional-hero-panel li {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    padding: 9px 10px;
    color: rgba(241, 247, 255, 0.94);
    font-size: 0.82rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.functional-hero-panel li i {
    margin-top: 2px;
    color: #7fc8ff;
}

.functional-clusters {
    background:
        radial-gradient(circle at 90% 88%, rgba(3, 132, 198, 0.09), transparent 32%),
        radial-gradient(circle at 8% 14%, rgba(7, 147, 77, 0.09), transparent 28%),
        #ffffff;
}

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

.functional-cluster-card {
    --domain-accent: #0d78d3;
    --domain-soft: #e7f2ff;
    --domain-dark: #0c4d8b;
    border: 1px solid #d7e3f2;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    box-shadow: var(--shadow-sm);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.functional-cluster-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: var(--domain-accent);
}

.functional-cluster-card:hover {
    transform: translateY(-4px);
    border-color: var(--domain-accent);
    box-shadow: 0 18px 32px rgba(12, 35, 67, 0.14);
}

.functional-cluster-card.is-blue {
    --domain-accent: #0d78d3;
    --domain-soft: #e8f3ff;
    --domain-dark: #0c4d8b;
}

.functional-cluster-card.is-red {
    --domain-accent: #d30b45;
    --domain-soft: #ffeaf0;
    --domain-dark: #8d1638;
}

.functional-cluster-card.is-green {
    --domain-accent: #0f8c56;
    --domain-soft: #e5f7ee;
    --domain-dark: #146340;
}

.functional-cluster-card.is-yellow {
    --domain-accent: #d39a00;
    --domain-soft: #fff5dc;
    --domain-dark: #8f6800;
}

.functional-cluster-head {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    align-items: start;
    min-height: 62px;
}

.functional-cluster-head span {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--domain-accent), var(--domain-dark));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 18px rgba(8, 30, 57, 0.18);
}

.functional-cluster-head i {
    font-size: 1.05rem;
    line-height: 1;
}

.functional-cluster-head>div {
    display: grid;
    align-content: center;
}

.functional-cluster-head h3 {
    margin: 0;
    line-height: 1.2;
}

.functional-cluster-head p {
    margin: 3px 0 0;
    font-size: 0.8rem;
    color: #4e6580;
}

.functional-cluster-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 7px;
    align-content: start;
}

.functional-cluster-card li {
    position: relative;
    border: 1px solid #d7e3f2;
    background: var(--domain-soft);
    border-radius: 10px;
    padding: 8px 10px 8px 28px;
    color: #2e4b6b;
    font-size: 0.8rem;
    line-height: 1.45;
}

.functional-cluster-card li::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--domain-accent);
}

.functional-catalog {
    background:
        radial-gradient(circle at 18% 10%, rgba(3, 132, 198, 0.12), transparent 28%),
        radial-gradient(circle at 86% 88%, rgba(211, 11, 69, 0.1), transparent 30%),
        linear-gradient(180deg, #f8fbff, #f0f6ff);
}

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

.functional-chip {
    border: 1px solid #d2e0f1;
    border-radius: 12px;
    background: #fff;
    padding: 9px 11px;
    color: #315172;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.4;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.functional-chip:hover {
    transform: translateY(-2px);
    border-color: #9fc2e8;
    box-shadow: 0 12px 22px rgba(10, 24, 46, 0.1);
}

.functional-process {
    background:
        radial-gradient(circle at 10% 16%, rgba(3, 132, 198, 0.14), transparent 32%),
        radial-gradient(circle at 88% 84%, rgba(7, 147, 77, 0.12), transparent 32%),
        linear-gradient(180deg, #f8fbff, #eef5ff);
}

.functional-process .section-head p {
    max-width: 700px;
    margin-inline: auto;
}

.functional-flow-progress {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.functional-flow-progress span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid #d8e3f2;
    background: #fff;
    color: #274665;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.functional-flow-progress span i {
    font-size: 0.78rem;
}

.functional-flow-progress span.is-blue {
    border-color: #c6def4;
    background: #eef6ff;
    color: #0d5f99;
}

.functional-flow-progress span.is-red {
    border-color: #f0c4d2;
    background: #fff0f4;
    color: #9f1e45;
}

.functional-flow-progress span.is-green {
    border-color: #c8e4d5;
    background: #edf8f2;
    color: #146943;
}

.functional-flow-progress span.is-yellow {
    border-color: #f1deaf;
    background: #fff7e6;
    color: #8a6400;
}

.functional-flow-progress span:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(10, 24, 46, 0.1);
}

.functional-flow-shell {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.functional-flow-stage {
    --flow-accent: #0d78d3;
    --flow-dark: #0c4d8b;
    --flow-soft: #eef6ff;
    --flow-edge: #d4e5f6;
    --flow-shadow: rgba(13, 120, 211, 0.22);
    position: relative;
    border: 1px solid #d7e3f2;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 12px 24px rgba(10, 24, 46, 0.08);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    overflow: hidden;
}

.functional-flow-stage::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    border-radius: 18px 18px 0 0;
    background: var(--flow-accent);
}

.functional-flow-stage:hover {
    transform: translateY(-6px);
    border-color: var(--flow-accent);
    box-shadow: 0 20px 34px rgba(12, 35, 67, 0.16);
}

.functional-flow-stage.stage-blue {
    --flow-accent: #0d78d3;
    --flow-dark: #0c4d8b;
    --flow-soft: #eef6ff;
    --flow-edge: #c8dff5;
    --flow-shadow: rgba(13, 120, 211, 0.24);
}

.functional-flow-stage.stage-red {
    --flow-accent: #d30b45;
    --flow-dark: #8d1739;
    --flow-soft: #fff0f4;
    --flow-edge: #f0c4d2;
    --flow-shadow: rgba(211, 11, 69, 0.24);
}

.functional-flow-stage.stage-green {
    --flow-accent: #0f8c56;
    --flow-dark: #146340;
    --flow-soft: #edf8f2;
    --flow-edge: #c8e4d5;
    --flow-shadow: rgba(15, 140, 86, 0.24);
}

.functional-flow-stage.stage-yellow {
    --flow-accent: #d39a00;
    --flow-dark: #8f6800;
    --flow-soft: #fff7e6;
    --flow-edge: #f1deaf;
    --flow-shadow: rgba(211, 154, 0, 0.24);
}

.functional-flow-headline {
    display: grid;
    grid-template-columns: 1fr 40px;
    align-items: start;
    gap: 9px;
}

.functional-flow-count {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--flow-edge);
    background: var(--flow-soft);
    color: var(--flow-dark);
    padding: 3px 10px;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.functional-flow-headline h3 {
    margin: 7px 0 0;
    text-transform: none;
    color: #102b4d;
    line-height: 1.25;
    font-size: 0.98rem;
}

.functional-flow-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--flow-accent), var(--flow-dark));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    box-shadow: 0 10px 18px var(--flow-shadow);
}

.functional-flow-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.functional-flow-days,
.functional-flow-window {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    border: 1px solid var(--flow-edge);
    background: var(--flow-soft);
    color: var(--flow-dark);
    padding: 5px 10px;
    font-size: 0.69rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
}

.functional-flow-days i {
    font-size: 0.75rem;
}

.functional-flow-desc {
    margin: 0;
    color: #3f5772;
    font-size: 0.84rem;
    line-height: 1.5;
}

.functional-flow-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.functional-flow-list li {
    position: relative;
    color: #30455f;
    font-size: 0.82rem;
    line-height: 1.45;
    padding-left: 18px;
}

.functional-flow-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1em;
    color: var(--flow-accent);
    font-size: 0.75rem;
}

.functional-flow-cta {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.functional-flow-cta p {
    margin: 0;
    border: 1px solid #cfe0f2;
    border-radius: 999px;
    background: #fff;
    padding: 8px 12px;
    color: #26486e;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.functional-flow-cta p i {
    color: #0b76bd;
}

.functional-flow-cta .btn {
    margin-top: 0;
}

.functional-outcomes {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 12%, rgba(3, 132, 198, 0.12), transparent 28%),
        radial-gradient(circle at 12% 88%, rgba(243, 192, 0, 0.11), transparent 30%),
        linear-gradient(180deg, #f8fbff, #eef5ff);
}

.functional-outcomes::before {
    content: none;
}

.functional-outcomes .section-head p {
    max-width: 720px;
    margin-inline: auto;
}

.functional-outcomes-meta {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 9px;
}

.functional-outcomes-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    padding: 7px 12px;
    border: 1px solid #d3dfef;
    background: #fff;
    color: #24456e;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.functional-outcomes-meta span i {
    color: #0b76bd;
}

.functional-outcomes-meta span:hover {
    transform: translateY(-2px);
    border-color: #9fc1e6;
    box-shadow: 0 10px 18px rgba(13, 39, 69, 0.1);
}

.functional-outcomes-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.functional-outcome-card {
    --outcome-accent: #0d78d3;
    --outcome-dark: #0c4d8b;
    --outcome-soft: #eef5ff;
    border: 1px solid #d7e2ef;
    border-radius: 16px;
    background: linear-gradient(165deg, #fbfdff, var(--outcome-soft));
    box-shadow: var(--shadow-sm);
    padding: 18px;
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 8px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.functional-outcome-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--outcome-accent), var(--outcome-dark));
}

.functional-outcome-card::after {
    content: '';
    position: absolute;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    right: -52px;
    top: -58px;
    background: rgba(255, 255, 255, 0.44);
    pointer-events: none;
}

.functional-outcome-card:hover {
    transform: translateY(-5px);
    border-color: var(--outcome-accent);
    box-shadow: 0 16px 28px rgba(10, 24, 46, 0.14);
}

.functional-outcome-card.is-blue {
    --outcome-accent: #0d78d3;
    --outcome-dark: #0c4d8b;
    --outcome-soft: #eef5ff;
}

.functional-outcome-card.is-green {
    --outcome-accent: #0f8c56;
    --outcome-dark: #146340;
    --outcome-soft: #ebfbf1;
}

.functional-outcome-card.is-yellow {
    --outcome-accent: #d39a00;
    --outcome-dark: #8f6800;
    --outcome-soft: #fff7e6;
}

.functional-outcome-kicker {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    width: fit-content;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #d7e2ef;
    font-size: 0.71rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #27476d;
}

.functional-outcome-kicker i {
    color: var(--outcome-accent);
}

.functional-outcome-card h3 {
    margin: 0;
    color: #102b4d;
    line-height: 1.25;
}

.functional-outcome-text {
    margin: 0;
    color: #3f5772;
    font-size: 0.88rem;
    line-height: 1.5;
}

.functional-outcome-foot {
    margin: 2px 0 0;
    border: 1px solid #d7e2ef;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.88);
    padding: 8px 10px;
    color: #2a4b6f;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.45;
}

body[data-page='functional-areas'] .functional-outcomes .cta-band {
    margin-top: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.stat-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
    box-shadow: var(--shadow-sm);
}

.stat-box h3 {
    color: var(--navy);
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 0.86rem;
}

.rail-wrap {
    position: relative;
}

.rail-controls {
    position: absolute;
    right: 0;
    top: -52px;
    display: flex;
    gap: 8px;
}

.rail-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #cdd8e9;
    background: #fff;
    cursor: pointer;
}

.event-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 320px);
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
}

.event-rail::-webkit-scrollbar {
    height: 8px;
}

.event-rail::-webkit-scrollbar-thumb {
    background: #c4d2e7;
    border-radius: 999px;
}

.event-card {
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
}

.event-date {
    color: var(--blue);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 6px;
}

.event-card h3 {
    margin-bottom: 7px;
}

.event-meta {
    font-size: 0.86rem;
    color: #4f5c70;
    margin-bottom: 9px;
}

.event-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #145327;
    background: #e8f8ee;
    border: 1px solid #bde2c9;
    border-radius: 999px;
    padding: 5px 9px;
}

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

.video-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.play-btn:hover {
    background: rgba(0, 0, 0, 0.72);
}

.video-body {
    padding: 14px;
}

.video-body h3 {
    margin-bottom: 6px;
}

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

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

.home-instagram-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ig-showcase {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% -10%, rgba(3, 132, 198, 0.2), transparent 45%),
        radial-gradient(circle at 88% 8%, rgba(219, 0, 50, 0.15), transparent 38%),
        linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.ig-showcase::before {
    content: '';
    position: absolute;
    inset: auto -12% -180px -12%;
    height: 320px;
    background: linear-gradient(90deg, rgba(243, 192, 0, 0.16), rgba(3, 132, 198, 0.12), rgba(7, 147, 77, 0.12));
    filter: blur(42px);
    pointer-events: none;
}

.ig-showcase .container {
    position: relative;
    z-index: 1;
}

.ig-head {
    max-width: 980px;
    margin-inline: auto;
    text-align: center;
}

body[data-page='media'] .ig-showcase .ig-head {
    margin-inline: 0;
    text-align: left;
}

body[data-page='media'] .ig-showcase .ig-head .eyebrow {
    justify-content: flex-start;
}

.ig-head h2 {
    margin-bottom: 10px;
}

.ig-badges {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

body[data-page='media'] .ig-showcase .ig-badges {
    justify-content: flex-start;
}

.ig-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #cfdaea;
    color: #243246;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    backdrop-filter: blur(4px);
}

.ig-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ec214f;
    box-shadow: 0 0 0 0 rgba(236, 33, 79, 0.45);
    animation: igPulse 1.8s infinite;
}

@keyframes igPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(236, 33, 79, 0.45);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(236, 33, 79, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(236, 33, 79, 0);
    }
}

.ig-impressive-grid {
    margin-top: 20px;
    padding: 14px;
    border-radius: 20px;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.84), rgba(245, 250, 255, 0.96));
    border: 1px solid #d2dceb;
    box-shadow: 0 18px 42px rgba(7, 28, 54, 0.08);
    gap: 16px;
}

.ig-impressive-grid .instagram-media {
    border: 1px solid #cfdbec !important;
    box-shadow: 0 12px 30px rgba(6, 20, 39, 0.1) !important;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    background: #fff !important;
}

.ig-impressive-grid .instagram-media:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(6, 20, 39, 0.16) !important;
    border-color: #9dc3e1 !important;
}

.ig-impressive-grid .instagram-media:focus-within {
    outline: 2px solid rgba(3, 132, 198, 0.3);
    outline-offset: 2px;
}

.instagram-live-grid .instagram-media {
    margin: 0 !important;
    min-width: 100% !important;
    width: 100% !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: var(--shadow-sm) !important;
}

.ig-note {
    margin-top: 10px;
    font-size: 0.86rem;
    color: #56647a;
}

.ig-showcase .ig-note {
    margin-top: 14px;
    padding: 11px 14px;
    border: 1px dashed #bfd2e8;
    background: #fff;
    border-radius: 12px;
}

.social-proof-wall {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}

.proof-column {
    display: grid;
    gap: 14px;
    align-content: start;
}

.proof-review-card,
.proof-post-card {
    background: #fff;
    border: 1px solid #d7deea;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(10, 23, 40, 0.08);
    overflow: hidden;
}

.proof-review-card {
    padding: 14px;
}

.proof-review-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.proof-review-head .fa-google {
    font-size: 1.36rem;
    color: #b4bdc8;
    margin-top: 4px;
}

.proof-person {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.proof-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #fff;
    flex-shrink: 0;
}

.proof-avatar-amber {
    background: linear-gradient(135deg, #8f5a1f, #d38e38);
}

.proof-avatar-green {
    background: linear-gradient(135deg, #0b6b4a, #17a176);
}

.proof-avatar-brand {
    background: linear-gradient(135deg, #13315a, #0f6ec7);
}

.proof-person > div h3 {
    margin: 0;
    font-size: 0.99rem;
    line-height: 1.2;
}

.proof-person > div strong {
    display: block;
    font-size: 0.99rem;
    line-height: 1.2;
    color: #0e2038;
}

.proof-person > div span {
    display: block;
    font-size: 0.84rem;
    color: #5e6f84;
}

.proof-rating {
    margin: 2px 0 0;
    display: inline-flex;
    gap: 2px;
    color: #f2bf27;
    font-size: 0.82rem;
}

.proof-quote {
    margin: 12px 0 14px;
    color: #15263c;
    font-size: 1rem;
    line-height: 1.45;
}

.proof-stamp {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #627288;
    font-size: 0.86rem;
}

.proof-post-card {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.proof-embed-card {
    background: #fff;
    border: 1px solid #d7deea;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(10, 23, 40, 0.08);
    overflow: hidden;
    position: relative;
}

.proof-embed-card .instagram-media {
    margin: 0 !important;
    min-width: 100% !important;
    width: 100% !important;
    max-width: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.proof-embed-card-tall .instagram-media {
    min-height: 560px;
}

.proof-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(10, 23, 40, 0.14);
    border-color: #b8c8df;
}

.proof-post-head {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid #e2e9f3;
}

.proof-post-head .fa-instagram {
    color: #b4bdc8;
    font-size: 1.22rem;
}

.proof-media {
    position: relative;
    aspect-ratio: 16 / 12;
    background: #d5dfec;
}

.proof-post-card-tall .proof-media {
    aspect-ratio: 3 / 4.4;
}

.proof-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.proof-post-foot {
    border-top: 1px solid #e2e9f3;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #607188;
    font-size: 0.84rem;
}

.proof-post-foot span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.proof-media-video .proof-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.78);
    color: #1b2f49;
    font-size: 1.2rem;
    backdrop-filter: blur(2px);
}

.ig-actions {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ig-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.ig-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.ig-thumb {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.ig-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.ig-card:hover .ig-thumb img {
    transform: scale(1.05);
}

.ig-body {
    padding: 12px;
}

.ig-handle {
    font-size: 0.77rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #2b3a52;
    margin-bottom: 7px;
}

.ig-caption {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.ig-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #a60f45;
    font-weight: 700;
    font-size: 0.86rem;
}

.media-kit-bulletin {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 9% 12%, rgba(3, 132, 198, 0.1), transparent 32%),
        radial-gradient(circle at 90% 88%, rgba(7, 147, 77, 0.09), transparent 30%),
        linear-gradient(180deg, #f9fcff, #eff5ff);
}

.media-news-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
}

.media-kit-bulletin-grid {
    align-items: stretch;
}

.media-kit-panel,
.news-bulletin-panel {
    position: relative;
    border: 1px solid #cfdeef;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    box-shadow: 0 12px 24px rgba(10, 24, 46, 0.08);
    padding: 16px;
    overflow: hidden;
}

.media-kit-panel::before,
.news-bulletin-panel::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, #0b76bd, #db0032, #e0b100, #07934d);
    opacity: 0.94;
}

.media-kit-head,
.news-bulletin-head {
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
}

.media-kit-head h3,
.news-bulletin-head h3 {
    margin: 0;
    text-transform: none;
    color: #102b4d;
}

.media-kit-head p,
.news-bulletin-head p {
    margin: 0;
    color: #48617c;
}

.media-kit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.media-kit-tags span {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccddf1;
    background: #eef6ff;
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1f4c74;
}

.media-kit-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}

.media-kit-list li {
    border: 1px solid #d6e3f1;
    background: #fff;
    border-radius: 12px;
    padding: 10px 11px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #1f3f62;
    font-size: 0.86rem;
    line-height: 1.4;
    font-weight: 600;
}

.media-kit-list i {
    color: #0d8f50;
    margin-top: 1px;
}

.media-kit-actions {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.news-list {
    display: grid;
    gap: 10px;
}

.news-item {
    background: #fff;
    border: 1px solid #d3e0ee;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 7px 14px rgba(10, 24, 46, 0.06);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.news-item:hover {
    transform: translateY(-3px);
    border-color: #abc6e5;
    box-shadow: 0 12px 22px rgba(10, 24, 46, 0.12);
}

.news-item-feature {
    border-color: #a9c7e6;
    background: linear-gradient(180deg, #ffffff, #f3f9ff);
}

.news-item h3 {
    margin: 0 0 5px;
    font-size: clamp(1rem, 1.12vw, 1.2rem);
    text-transform: none;
    color: #102b4d;
}

.news-item p {
    margin: 0;
    color: #4d657f;
    font-size: 0.84rem;
    line-height: 1.45;
}

.news-item time {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue);
    margin-bottom: 5px;
    font-weight: 700;
}

.media-news-hub {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 16%, rgba(3, 132, 198, 0.14), transparent 30%),
        radial-gradient(circle at 92% 86%, rgba(219, 0, 50, 0.12), transparent 28%),
        linear-gradient(180deg, #f8fbff, #edf4ff);
}

.media-news-hub .container {
    position: relative;
    z-index: 1;
}

.media-news-head {
    max-width: 920px;
    margin-bottom: 12px;
}

.media-news-tabs {
    margin-top: 12px;
}

.media-news-hub-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 16px;
    align-items: stretch;
}

.media-news-feature {
    min-height: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.media-news-feature .story-media {
    aspect-ratio: 16 / 11;
}

.media-news-feature .story-body {
    padding: 18px;
    display: grid;
    gap: 8px;
}

.media-news-side {
    display: grid;
    gap: 12px;
}

.media-news-brief {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    align-items: stretch;
    border-radius: 14px;
    overflow: hidden;
    min-height: 168px;
}

.media-news-brief .story-media {
    aspect-ratio: auto;
    height: 100%;
}

.media-news-brief .story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-news-brief .story-body {
    padding: 12px 14px;
}

.media-news-brief .story-body h3 {
    font-size: clamp(1rem, 1.12vw, 1.2rem);
}

.media-news-stream {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.media-news-stream-card .story-media {
    aspect-ratio: 16 / 10;
}

.media-news-hub .story-link {
    margin-top: 2px;
}

.media-astratv {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 8%, rgba(7, 147, 77, 0.12), transparent 30%),
        radial-gradient(circle at 86% 88%, rgba(243, 192, 0, 0.14), transparent 30%),
        linear-gradient(180deg, #f7fbff, #eff5ff);
}

.media-astratv .section-head {
    max-width: 860px;
}

.media-news-astratv {
    margin-top: 18px;
    border: 1px solid #d3e0ef;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #f4f9ff);
    box-shadow: 0 12px 24px rgba(9, 23, 42, 0.09);
    padding: 16px;
}

.media-news-astratv-head {
    margin-bottom: 12px;
    max-width: 820px;
}

.media-news-astratv-head h3 {
    margin: 2px 0 8px;
    font-size: clamp(1.25rem, 1.9vw, 1.8rem);
    color: #102b4d;
}

.media-news-astratv-head p {
    margin: 0;
    color: #49617c;
}

.media-astratv-grid .video-card {
    border-radius: 16px;
    border-color: #d2deee;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.media-astratv-grid .video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(10, 23, 40, 0.15);
    border-color: #abc6e3;
}

.media-astratv-grid .video-body {
    padding: 15px;
}

.media-press-calendar {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 14%, rgba(3, 132, 198, 0.12), transparent 32%),
        radial-gradient(circle at 88% 84%, rgba(224, 177, 0, 0.12), transparent 30%),
        linear-gradient(180deg, #f8fbff, #eef5ff);
}

.media-press-head {
    max-width: 920px;
    margin-bottom: 12px;
}

.media-press-chips {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.media-press-chips span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #cfddf1;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    padding: 6px 12px;
    color: #24486f;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.media-press-chips i {
    color: #0b76bd;
}

.media-press-rail-wrap {
    margin-top: 8px;
}

.media-press-rail {
    grid-auto-columns: minmax(300px, 380px);
    gap: 16px;
}

.media-press-card {
    border-radius: 16px;
    border-color: #cfdff2;
    background: linear-gradient(180deg, #ffffff, #f6fbff);
    box-shadow: 0 12px 24px rgba(10, 24, 46, 0.08);
    display: grid;
    gap: 8px;
}

.media-press-card h3 {
    margin: 0;
    text-transform: none;
    color: #102b4d;
    font-size: clamp(1.02rem, 1.2vw, 1.22rem);
}

.media-press-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.media-press-type {
    display: inline-flex;
    align-items: center;
    border: 1px solid #cce0f3;
    background: #eef6ff;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1f4a72;
}

.media-press-meta {
    display: grid;
    gap: 5px;
}

.media-press-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #4c647e;
    font-size: 0.8rem;
    font-weight: 600;
}

.media-press-meta i {
    color: #0b76bd;
}

.media-press-calendar .event-status.is-upcoming {
    color: #875500;
    background: #fff6df;
    border-color: #f1dc9e;
}

.media-press-calendar .event-status.is-planned {
    color: #174f8c;
    background: #eaf3ff;
    border-color: #bed7f3;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.72);
    padding: 20px;
}

.video-modal.is-open {
    display: flex;
}

.video-modal-dialog {
    width: min(1000px, 96vw);
    background: #000;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
}

.video-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.video-modal-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.page-hero {
    background:
        radial-gradient(circle at 90% 10%, rgba(3, 132, 198, 0.24), transparent 42%),
        radial-gradient(circle at 10% 85%, rgba(219, 0, 50, 0.18), transparent 38%),
        linear-gradient(145deg, #09172f, #13294d);
    color: #fff;
    padding: 66px 0 58px;
}

.page-hero h1 {
    margin-bottom: 10px;
}

.page-hero p {
    max-width: 840px;
    color: rgba(255, 255, 255, 0.88);
}

.breadcrumb {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a1d5ea;
    margin-bottom: 10px;
}

.breadcrumb a {
    color: #fff;
}

.split-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
}

.grand-prix-section {
    background:
        radial-gradient(circle at 8% 20%, rgba(3, 132, 198, 0.2), transparent 30%),
        radial-gradient(circle at 92% 12%, rgba(219, 0, 50, 0.16), transparent 30%),
        radial-gradient(circle at 24% 88%, rgba(243, 192, 0, 0.16), transparent 30%),
        radial-gradient(circle at 84% 82%, rgba(7, 147, 77, 0.14), transparent 30%),
        linear-gradient(180deg, #f9fbff, #eff5ff);
    position: relative;
    overflow: hidden;
}

.grand-prix-section::before {
    content: none;
}

.grand-prix-grid {
    align-items: stretch;
}

.grand-prix-panel {
    border-radius: 18px;
    border-color: #d5e1f2;
    box-shadow: var(--shadow-md);
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.grand-prix-pills span {
    border: 0;
    color: #1c3257;
    background: #edf3ff;
}

.grand-prix-pills span:nth-child(1) {
    background: rgba(3, 132, 198, 0.14);
    color: #0d4f86;
}

.grand-prix-pills span:nth-child(2) {
    background: rgba(219, 0, 50, 0.14);
    color: #8f1434;
}

.grand-prix-pills span:nth-child(3) {
    background: rgba(7, 147, 77, 0.14);
    color: #0f6640;
}

.grand-prix-pills span:nth-child(4) {
    background: rgba(243, 192, 0, 0.2);
    color: #7a5a00;
}

.grand-prix-countdown-title {
    margin-top: 14px;
    margin-bottom: 10px;
}

.grand-prix-countdown {
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grand-prix-countdown .stat-box {
    text-align: center;
    border-radius: 14px;
    border: 1px solid #cfe0f3;
    box-shadow: none;
    background: linear-gradient(160deg, #ffffff, #f1f6ff);
    padding: 14px 10px;
}

.grand-prix-countdown .stat-box h3 {
    margin-bottom: 4px;
    line-height: 1;
}

.grand-prix-countdown .stat-box p {
    margin: 0;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #48617f;
}

.grand-prix-countdown .stat-box:nth-child(1) {
    border-top: 4px solid var(--blue);
}

.grand-prix-countdown .stat-box:nth-child(2) {
    border-top: 4px solid var(--red);
}

.grand-prix-countdown .stat-box:nth-child(3) {
    border-top: 4px solid var(--yellow);
}

.grand-prix-countdown .stat-box:nth-child(4) {
    border-top: 4px solid var(--green);
}

.grand-prix-venue h3 {
    margin-bottom: 10px;
}

.grand-prix-venue img {
    border-radius: 12px;
    border: 1px solid #d7e3f2;
}

.grand-prix-map-link {
    margin-top: 10px;
}

.grand-prix-panel .hero-actions {
    margin-top: 14px;
}

.grand-prix-panel .hero-actions p {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.grand-prix-map-link a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-olympic-headline);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0b5f99;
}

.grand-prix-map-link a:hover {
    color: #0a4f7f;
}

.grand-prix-map-link a i {
    font-size: 0.8rem;
}

.volunteer-overview-section {
    background: transparent;
}

.volunteer-overview-stats .stat-box {
    border-radius: 16px;
    border-width: 0;
    padding: 20px 18px;
    box-shadow: 0 14px 24px rgba(13, 31, 58, 0.1);
    transition: transform var(--transition), box-shadow var(--transition);
}

.volunteer-overview-stats .stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(13, 31, 58, 0.14);
}

.volunteer-overview-stats .stat-box:nth-child(1) {
    background: linear-gradient(160deg, #ebf4ff, #dcecff);
    border-top: 4px solid var(--blue);
}

.volunteer-overview-stats .stat-box:nth-child(2) {
    background: linear-gradient(160deg, #ffeef2, #ffe0e8);
    border-top: 4px solid var(--red);
}

.volunteer-overview-stats .stat-box:nth-child(3) {
    background: linear-gradient(160deg, #fff7dd, #ffefbd);
    border-top: 4px solid var(--yellow);
}

.volunteer-overview-stats .stat-box:nth-child(4) {
    background: linear-gradient(160deg, #e8f8ef, #d8f2e5);
    border-top: 4px solid var(--green);
}

.volunteer-overview-stats .stat-box h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 7px;
}

.volunteer-overview-stats .stat-box p {
    color: #2f425f;
}

.volunteer-journey-chart {
    overflow-x: auto;
    padding-bottom: 6px;
}

.journey-process {
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 1080px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.journey-step {
    position: relative;
    background: #fff;
    border: 1px solid #d6e1f1;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    padding: 15px 14px 13px;
}

.journey-step:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 30px;
    right: -15px;
    width: 16px;
    height: 2px;
    background: #9fb5d8;
    z-index: 2;
}

.journey-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 26px;
    right: -16px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #9fb5d8;
    z-index: 2;
}

.journey-step:nth-child(1) {
    border-top: 4px solid var(--blue);
}

.journey-step:nth-child(2) {
    border-top: 4px solid var(--red);
}

.journey-step:nth-child(3) {
    border-top: 4px solid var(--yellow);
}

.journey-step:nth-child(4) {
    border-top: 4px solid var(--green);
}

.journey-step:nth-child(5) {
    border-top: 4px solid var(--blue-dark);
}

.journey-step:nth-child(6) {
    border-top: 4px solid #7a3cff;
}

.journey-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin-bottom: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #fff;
    background: linear-gradient(135deg, #0e6fef, #0a4fbd);
}

.journey-step:nth-child(2) .journey-no {
    background: linear-gradient(135deg, #d3395f, #b62345);
}

.journey-step:nth-child(3) .journey-no {
    background: linear-gradient(135deg, #d2a100, #af7f00);
}

.journey-step:nth-child(4) .journey-no {
    background: linear-gradient(135deg, #1a9f68, #148455);
}

.journey-step:nth-child(5) .journey-no {
    background: linear-gradient(135deg, #253b78, #1b2f62);
}

.journey-step:nth-child(6) .journey-no {
    background: linear-gradient(135deg, #7a3cff, #5826bd);
}

.journey-step h3 {
    margin-bottom: 6px;
    font-size: 1.04rem;
}

.journey-step p {
    font-size: 0.84rem;
    margin: 0;
}

.volunteer-benefits-section {
    background:
        radial-gradient(circle at 10% 18%, rgba(3, 132, 198, 0.12), transparent 30%),
        radial-gradient(circle at 90% 22%, rgba(219, 0, 50, 0.1), transparent 28%),
        radial-gradient(circle at 24% 84%, rgba(243, 192, 0, 0.12), transparent 30%),
        radial-gradient(circle at 82% 88%, rgba(7, 147, 77, 0.1), transparent 30%),
        linear-gradient(180deg, #f8fbff, #f1f6ff);
}

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

.volunteer-benefit-card {
    background: #fff;
    border: 1px solid #d6e2f2;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    padding: 22px;
    position: relative;
    overflow: hidden;
}

.volunteer-benefit-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
}

.volunteer-benefit-card.is-eligibility::before {
    background: linear-gradient(90deg, var(--blue), #27a1ff);
}

.volunteer-benefit-card.is-benefits::before {
    background: linear-gradient(90deg, var(--green), #34c48a);
}

.volunteer-benefit-head {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.volunteer-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.volunteer-benefit-card.is-eligibility .volunteer-benefit-icon {
    background: linear-gradient(135deg, #0d74f1, #0a57c8);
}

.volunteer-benefit-card.is-benefits .volunteer-benefit-icon {
    background: linear-gradient(135deg, #159860, #0f7a4d);
}

.volunteer-benefit-kicker {
    margin: 0 0 2px;
    font-size: 0.73rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 700;
    color: #5a6f8f;
}

.volunteer-benefit-head h3 {
    margin: 0;
}

.volunteer-benefit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.volunteer-benefit-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 0.76rem;
    font-weight: 700;
}

.volunteer-benefit-card.is-eligibility .volunteer-benefit-tags span {
    background: rgba(3, 132, 198, 0.12);
    color: #0d4f86;
}

.volunteer-benefit-card.is-benefits .volunteer-benefit-tags span {
    background: rgba(7, 147, 77, 0.12);
    color: #0f6640;
}

.volunteer-benefit-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 9px;
}

.volunteer-benefit-list li {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 10px;
    align-items: start;
    font-size: 0.92rem;
    color: #32465f;
}

.volunteer-benefit-list i {
    margin-top: 2px;
}

.volunteer-benefit-card.is-eligibility .volunteer-benefit-list i {
    color: #0d6fe6;
}

.volunteer-benefit-card.is-benefits .volunteer-benefit-list i {
    color: #148154;
}

body[data-page='about'] .about-hero {
    background:
        radial-gradient(circle at 8% 12%, rgba(3, 132, 198, 0.2), transparent 30%),
        radial-gradient(circle at 86% 84%, rgba(219, 0, 50, 0.14), transparent 32%),
        linear-gradient(165deg, #f8fbff 0%, #eef4ff 52%, #edf6ff 100%);
    color: var(--text);
    padding: 84px 0 70px;
    position: relative;
    overflow: hidden;
}

body[data-page='about'] .about-hero::before {
    content: '';
    position: absolute;
    width: clamp(260px, 34vw, 480px);
    aspect-ratio: 1 / 1;
    right: -80px;
    top: -130px;
    background: radial-gradient(circle, rgba(3, 132, 198, 0.16) 0%, rgba(3, 132, 198, 0) 68%);
    pointer-events: none;
}

body[data-page='about'] .about-hero::after {
    content: '';
    position: absolute;
    width: clamp(220px, 30vw, 420px);
    aspect-ratio: 1 / 1;
    left: -90px;
    bottom: -140px;
    background: radial-gradient(circle, rgba(7, 147, 77, 0.14) 0%, rgba(7, 147, 77, 0) 72%);
    pointer-events: none;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(18px, 2.5vw, 34px);
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-hero-copy h1 {
    margin-bottom: 12px;
    max-width: 14ch;
}

.about-hero-copy .breadcrumb {
    color: #577091;
}

.about-hero-copy .breadcrumb a {
    color: #11284b;
}

.about-hero-copy p {
    color: #3d516d;
    max-width: 660px;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.about-hero-stats {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 560px;
}

.about-hero-stats article {
    border: 1px solid #d8e3f2;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 10px 24px rgba(18, 39, 67, 0.08);
    padding: 12px 13px;
    display: grid;
    gap: 2px;
}

.about-hero-stats strong {
    font-family: var(--font-olympic-headline);
    font-size: 1.2rem;
    line-height: 1;
    color: #0f2b4c;
}

.about-hero-stats span {
    font-size: 0.78rem;
    color: #4a6180;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.about-hero-panel {
    border: 1px solid #d3e0f2;
    border-radius: 28px;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(245, 250, 255, 0.92)),
        radial-gradient(circle at 80% 20%, rgba(3, 132, 198, 0.1), transparent 45%);
    box-shadow: 0 22px 48px rgba(7, 24, 51, 0.16);
    padding: 14px;
    min-height: 410px;
    position: relative;
}

.about-hero-screen {
    border-radius: 20px;
    overflow: hidden;
    margin: 0;
    border: 1px solid #d2dfef;
    box-shadow: 0 18px 34px rgba(8, 24, 47, 0.22);
}

.about-hero-screen img {
    width: 100%;
    display: block;
    height: auto;
}

.about-hero-float {
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #d2deed;
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(7, 27, 54, 0.16);
    padding: 10px 12px;
    max-width: 236px;
}

.about-hero-float i {
    margin-top: 2px;
    color: var(--blue);
}

.about-hero-float h3 {
    margin: 0 0 3px;
    font-size: 0.82rem;
    font-family: var(--font-olympic-headline);
    color: #0f2a4a;
}

.about-hero-float p {
    margin: 0;
    font-size: 0.73rem;
    line-height: 1.35;
    color: #4c617c;
}

.about-hero-float-one {
    left: -26px;
    top: 24px;
}

.about-hero-float-two {
    right: -24px;
    top: 48%;
    transform: translateY(-50%);
}

.about-hero-float-three {
    left: 44px;
    bottom: -18px;
}

body[data-page='about'] .about-spectrum-intro,
body[data-page='about'] .about-spectrum-metric,
body[data-page='about'] .about-define-card,
body[data-page='about'] .about-client-logo,
body[data-page='about'] .about-value-card,
body[data-page='about'] .device-preview,
body[data-page='about'] .about-principle-card {
    border-radius: 20px;
    box-shadow: 0 14px 30px rgba(12, 31, 58, 0.1);
}

body[data-page='about'] .about-define-card {
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

body[data-page='about'] .about-define-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(12, 35, 67, 0.14);
    border-color: #b7cde7;
}

.about-spectrum {
    background:
        radial-gradient(circle at 8% 20%, rgba(3, 132, 198, 0.18), transparent 28%),
        radial-gradient(circle at 92% 14%, rgba(219, 0, 50, 0.16), transparent 30%),
        radial-gradient(circle at 22% 86%, rgba(243, 192, 0, 0.16), transparent 30%),
        radial-gradient(circle at 84% 82%, rgba(7, 147, 77, 0.14), transparent 28%),
        linear-gradient(180deg, #f9fbff, #f0f5ff);
    position: relative;
    overflow: hidden;
}

.about-spectrum::before {
    content: none;
}

.about-spectrum-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 20px;
    align-items: stretch;
}

.about-spectrum-intro {
    background: #fff;
    border: 1px solid #dbe5f3;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    padding: clamp(22px, 3vw, 34px);
}

.about-spectrum-intro h2 {
    margin-bottom: 12px;
}

.about-spectrum-intro p {
    color: #40526b;
}

.about-spectrum-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 16px;
}

.about-spectrum-pills span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f4f8ff;
    border: 1px solid #d6e3f4;
    color: #1f3350;
    font-size: 0.78rem;
    font-weight: 700;
}

.about-spectrum-pills i {
    color: var(--blue);
}

.about-spectrum-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.about-spectrum-metric {
    background: #fff;
    border: 1px solid #dbe4f2;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    padding: 18px;
    position: relative;
    overflow: hidden;
}

.about-spectrum-metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 0;
}

.about-spectrum-metric h3 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1;
    margin-bottom: 8px;
}

.about-spectrum-metric p {
    font-size: 0.88rem;
    color: #435874;
}

.about-spectrum-metric.is-blue::before {
    background: var(--blue);
}

.about-spectrum-metric.is-blue h3 {
    color: var(--blue);
}

.about-spectrum-metric.is-red::before {
    background: var(--red);
}

.about-spectrum-metric.is-red h3 {
    color: var(--red);
}

.about-spectrum-metric.is-yellow::before {
    background: var(--yellow);
}

.about-spectrum-metric.is-yellow h3 {
    color: #946f00;
}

.about-spectrum-metric.is-green::before {
    background: var(--green);
}

.about-spectrum-metric.is-green h3 {
    color: var(--green);
}

.about-define {
    background: #fff;
}

.about-define .section-head p {
    max-width: 740px;
}

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

.about-define-card {
    border-radius: 16px;
    border: 1px solid #d6e1ef;
    box-shadow: var(--shadow-sm);
    padding: 18px;
    min-height: 232px;
}

.about-define-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-family: var(--font-olympic-headline);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.about-define-card h3 {
    margin-bottom: 8px;
}

.about-define-card p {
    color: #3f5169;
    font-size: 0.91rem;
}

.about-define-card.is-blue {
    background: linear-gradient(165deg, #f8fbff, #eff6ff);
}

.about-define-card.is-blue .about-define-no {
    color: #fff;
    background: var(--blue);
}

.about-define-card.is-red {
    background: linear-gradient(165deg, #fff8fa, #ffeef3);
}

.about-define-card.is-red .about-define-no {
    color: #fff;
    background: var(--red);
}

.about-define-card.is-yellow {
    background: linear-gradient(165deg, #fffdf4, #fff8dc);
}

.about-define-card.is-yellow .about-define-no {
    color: #4e3b00;
    background: #ffd84d;
}

.about-define-card.is-green {
    background: linear-gradient(165deg, #f5fff9, #e9fdf2);
}

.about-define-card.is-green .about-define-no {
    color: #fff;
    background: var(--green);
}

.about-clients {
    background:
        linear-gradient(180deg, #ffffff, #f8fbff);
}

.about-clients-stack {
    display: grid;
    gap: 10px;
}

.about-clients-marquee {
    position: relative;
    overflow: hidden;
    border: 1px solid #dce5f1;
    border-radius: 16px;
    padding: 12px 0;
    background: linear-gradient(180deg, #ffffff, #f6faff);
}

.about-clients-marquee-alt {
    background: linear-gradient(180deg, #f3f9ff, #edf7ff);
}

.about-clients-marquee::before,
.about-clients-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 58px;
    z-index: 2;
    pointer-events: none;
}

.about-clients-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #fdfefe, rgba(255, 255, 255, 0));
}

.about-clients-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #f4f9ff, rgba(255, 255, 255, 0));
}

.about-client-track {
    display: flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    padding: 0 14px;
    animation: aboutClientScroll 22s linear infinite;
}

.about-client-track.is-reverse {
    animation-direction: reverse;
    animation-duration: 24s;
}

.about-clients-stack:hover .about-client-track,
.about-clients-marquee:hover .about-client-track {
    animation-play-state: paused;
}

.about-client-logo {
    --logo-accent: #8fb0d3;
    background: transparent;
    border: 1px solid rgba(168, 184, 206, 0.48);
    border-radius: 16px;
    box-shadow: none;
    width: 230px;
    min-width: 230px;
    height: 132px;
    padding: 12px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.about-client-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
    transform: translateX(-140%);
    transition: transform 420ms ease;
    pointer-events: none;
}

.about-client-logo img {
    max-width: 100%;
    max-height: 72px;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: opacity var(--transition), filter var(--transition), transform var(--transition);
}

.about-client-name {
    margin-top: 8px;
    min-height: 2.2em;
    display: block;
    text-align: center;
    font-size: 0.72rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #2f4665;
}

.about-client-logo:hover {
    transform: translateY(-4px);
    border-color: var(--logo-accent);
    box-shadow: 0 14px 28px rgba(10, 25, 46, 0.14);
}

.about-client-logo:hover::before,
.about-client-logo:focus-visible::before {
    transform: translateX(140%);
}

.about-client-logo:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.04);
}

@keyframes aboutClientScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 7px));
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-client-track {
        animation: none;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-clients-marquee {
        overflow: visible;
    }

    .about-clients-marquee::before,
    .about-clients-marquee::after {
        display: none;
    }
}

.about-values {
    background: #fff;
}

.about-clients-values-wrap {
    margin-top: 24px;
}

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

.about-value-card {
    border-radius: 16px;
    border: 1px solid #d8e2ef;
    box-shadow: var(--shadow-sm);
    padding: 20px;
    background: #fff;
}

.about-value-card:nth-child(1) {
    background: linear-gradient(165deg, #f8fbff, #edf5ff);
}

.about-value-card:nth-child(2) {
    background: linear-gradient(165deg, #fff9fa, #ffeef2);
}

.about-value-card:nth-child(3) {
    background: linear-gradient(165deg, #f8fff9, #ecfbf1);
}

.about-value-card h3 {
    margin-bottom: 10px;
}

.about-icon-list {
    display: grid;
    gap: 10px;
}

.about-icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #2e425d;
    font-size: 0.92rem;
}

.about-icon-list i {
    margin-top: 3px;
    color: var(--blue);
    min-width: 15px;
}

.about-mobile-app {
    background:
        radial-gradient(circle at 8% 12%, rgba(3, 132, 198, 0.16), transparent 30%),
        radial-gradient(circle at 92% 88%, rgba(7, 147, 77, 0.14), transparent 30%),
        linear-gradient(180deg, #f9fbff, #f0f6ff);
}

.about-mobile-app-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 18px;
    align-items: center;
}

.about-mobile-app-copy p {
    max-width: 700px;
}

.about-interface-stack {
    display: grid;
    gap: 12px;
}

.device-preview {
    margin: 0;
    border: 1px solid #d8e2ef;
    border-radius: 20px;
    background:
        radial-gradient(circle at 20% 20%, rgba(3, 132, 198, 0.17), transparent 34%),
        radial-gradient(circle at 82% 80%, rgba(219, 0, 50, 0.14), transparent 30%),
        linear-gradient(160deg, #f6f9ff, #edf3ff);
    box-shadow: var(--shadow-md);
    padding: 18px 12px 12px;
    display: grid;
    justify-items: center;
    gap: 10px;
}

.device-preview img {
    width: min(100%, 320px);
    height: auto;
    filter: drop-shadow(0 24px 28px rgba(2, 10, 24, 0.26));
}

.device-preview.is-compact {
    margin-bottom: 12px;
    padding-top: 14px;
}

.device-preview.is-compact img {
    width: min(100%, 260px);
}

.about-interface-web img {
    width: min(100%, 520px);
}

.about-interface-mobile {
    justify-self: end;
    width: min(100%, 320px);
}

.about-unified-preview img {
    width: min(100%, 760px);
    border-radius: 14px;
}

.about-unified-preview {
    overflow: hidden;
}

.device-preview figcaption {
    color: #4f6079;
    text-align: center;
    font-size: 0.84rem;
    font-weight: 600;
}

.team-structure {
    background:
        radial-gradient(circle at 12% 20%, rgba(3, 132, 198, 0.1), transparent 32%),
        linear-gradient(180deg, #ffffff, #f6faff);
}

.team-structure-head {
    margin-bottom: 20px;
}

.team-structure-head h2 {
    color: #10233f;
}

.team-structure-head p {
    max-width: 660px;
}

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

.team-member {
    background: #fff;
    border: 1px solid #d8e2ef;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    padding: 16px;
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 12px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.team-member:hover {
    transform: translateY(-2px);
    border-color: #c2d3e8;
    box-shadow: var(--shadow-md);
}

.team-member h3 {
    font-family: var(--font-olympic-headline);
    font-size: 0.96rem;
    line-height: 1.2;
    margin: 0;
    text-align: center;
    color: #0f1f36;
    letter-spacing: 0.02em;
}

.team-member-role {
    margin: 0;
    color: #4d617b;
    font-size: 0.88rem;
    text-align: center;
    line-height: 1.35;
    font-weight: 500;
}

.team-member-photo {
    width: 100%;
    border: 1px solid #dbe5f1;
    border-radius: 12px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #eef3fa;
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.02) contrast(1.01) brightness(1.01);
    transform: scale(1.01);
    transition: transform 320ms ease, filter 320ms ease;
}

.team-member:hover .team-member-photo img {
    filter: saturate(1.06) contrast(1.02);
    transform: scale(1.03);
}

.about-principles {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 8%, rgba(243, 192, 0, 0.18), transparent 30%),
        radial-gradient(circle at 10% 80%, rgba(219, 0, 50, 0.14), transparent 28%),
        linear-gradient(180deg, #f7faff, #eef5ff);
}

.about-principles .section-head p {
    max-width: 720px;
    margin-inline: auto;
}

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

.about-principle-card {
    --principle-accent: var(--blue);
    --principle-tint: #e8f3ff;
    --principle-dark: #0c4c86;
    --principle-shadow: rgba(14, 70, 124, 0.22);
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid #d7e3f2;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    padding: 18px 18px 16px;
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 9px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.about-principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--principle-accent);
}

.about-principle-card::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    right: -44px;
    top: -52px;
    border-radius: 50%;
    background: var(--principle-tint);
    opacity: 0.7;
    transition: transform var(--transition), opacity var(--transition);
}

.about-principle-card:hover {
    transform: translateY(-6px);
    border-color: var(--principle-accent);
    box-shadow: 0 18px 32px rgba(12, 35, 67, 0.16);
}

.about-principle-card:hover::after {
    transform: scale(1.08);
    opacity: 0.92;
}

.about-principle-card.is-blue {
    --principle-accent: #0d78d3;
    --principle-tint: #e4f2ff;
    --principle-dark: #0c4d8b;
    --principle-shadow: rgba(13, 120, 211, 0.24);
}

.about-principle-card.is-red {
    --principle-accent: #d30b45;
    --principle-tint: #ffe7ee;
    --principle-dark: #8d1638;
    --principle-shadow: rgba(211, 11, 69, 0.24);
}

.about-principle-card.is-yellow {
    --principle-accent: #d39a00;
    --principle-tint: #fff4d6;
    --principle-dark: #8f6800;
    --principle-shadow: rgba(211, 154, 0, 0.24);
}

.about-principle-card.is-green {
    --principle-accent: #0f8c56;
    --principle-tint: #e2f7ec;
    --principle-dark: #146340;
    --principle-shadow: rgba(15, 140, 86, 0.24);
}

.about-principle-head {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 10px;
    align-items: center;
}

.about-principle-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--principle-accent), var(--principle-dark));
    color: #fff;
    font-size: 0.95rem;
    box-shadow: 0 10px 18px var(--principle-shadow);
}

.about-principle-card h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.2;
}

.about-principle-card p {
    margin: 0;
}

.about-principle-meta {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--principle-dark);
}

.panel,
.info-card,
.kpi-card,
.list-card,
.cta-band {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    padding: 20px;
}

.panel h3,
.info-card h3,
.kpi-card h3,
.list-card h3,
.cta-band h3 {
    margin-bottom: 8px;
}

.panel ul,
.list-card ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 8px;
}

.panel li,
.list-card li {
    margin-bottom: 0;
    color: #4f5b6d;
    position: relative;
    padding-left: 22px;
}

.panel li::before,
.list-card li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1em;
    color: var(--blue);
    font-size: 0.82rem;
}

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

.kpi-card {
    border-top: 4px solid var(--blue);
}

.kpi-card.red {
    border-top-color: var(--red);
}

.kpi-card.green {
    border-top-color: var(--green);
}

.gms-intelligence {
    background:
        radial-gradient(circle at 12% 14%, rgba(3, 132, 198, 0.16), transparent 32%),
        radial-gradient(circle at 88% 86%, rgba(7, 147, 77, 0.14), transparent 32%),
        linear-gradient(180deg, #f9fbff, #eef5ff);
}

.gms-intelligence .section-head {
    max-width: 780px;
    text-align: left;
    margin-inline: 0;
}

.gms-intelligence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 22px;
}

.gms-module-card,
.gms-value-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    border: 1px solid #ccdbef;
    box-shadow: 0 16px 42px rgba(5, 22, 48, 0.14);
    background: linear-gradient(180deg, #ffffff, #f4f9ff);
    padding: 24px;
    overflow: hidden;
}

.gms-module-card {
    border-color: #cbe5d8;
    background: linear-gradient(180deg, #ffffff, #f1faf5);
}

.gms-value-card {
    border-color: #ccdbef;
    background: linear-gradient(180deg, #ffffff, #f4f9ff);
}

.gms-module-card::before,
.gms-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), #2f7ce5 58%, #47b86d);
}

.gms-module-card::before {
    background: linear-gradient(90deg, #07934d, #1ca76e 52%, #0384c6);
}

.gms-value-card::before {
    background: linear-gradient(90deg, #0c76bd, #1f93d8 58%, #6a86ff);
}

.gms-card-lead {
    margin: 0 0 12px;
    color: #425a79;
    font-size: 0.94rem;
    max-width: 58ch;
}

.gms-card-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 12px;
}

.gms-card-metrics span {
    border: 1px solid #d3e1f3;
    background: #f0f6ff;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #28486b;
}

.gms-card-metrics strong {
    font-family: var(--font-olympic-headline);
    color: #103357;
    margin-right: 4px;
}

.gms-card-metrics-value span {
    background: #eef8ff;
    border-color: #d0e2f4;
}

.gms-module-card .gms-card-metrics span {
    border-color: #cbe5d8;
    background: #ebf8f1;
    color: #245843;
}

.gms-module-card .gms-card-metrics strong {
    color: #164936;
}

.gms-value-card .gms-card-metrics span {
    border-color: #d0e2f4;
    background: #eef8ff;
    color: #264c74;
}

.gms-module-media,
.gms-module-hero {
    margin: 0 0 14px;
    border: 1px solid #d7e2ef;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.gms-module-media {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.gms-module-media figure {
    margin: 0;
}

.gms-module-media img,
.gms-module-hero img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.gms-module-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 12px;
}

.gms-module-tags span {
    background: #edf8f2;
    border: 1px solid #cde6da;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #245843;
}

.gms-subtitle {
    margin: 0 0 8px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    color: #2a4667;
}

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

.gms-module-list li {
    border: 1px solid #d8e3f1;
    background: #fff;
    border-radius: 12px;
    min-height: 62px;
    display: flex;
    align-items: flex-start;
    padding: 10px 12px 10px 34px;
    font-size: 0.86rem;
    font-weight: 600;
    color: #355170;
}

.gms-module-list li::before {
    left: 11px;
    top: 11px;
    color: #0b73c3;
}

.gms-value-media {
    margin: 0 0 12px;
    border: 1px solid #d7e2ef;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.gms-value-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.gms-value-kpis {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 12px;
}

.gms-value-kpis article {
    border: 1px solid #d3e0f1;
    border-radius: 12px;
    background: #f7fbff;
    padding: 10px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.gms-value-kpis article i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #0384c6, #056ba0);
    color: #fff;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.gms-value-kpis article div {
    display: grid;
    gap: 1px;
}

.gms-value-kpis strong {
    font-size: 0.82rem;
    font-family: var(--font-olympic-headline);
    color: #15375f;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.gms-value-kpis span {
    font-size: 0.78rem;
    color: #4e617a;
    font-weight: 600;
    line-height: 1.25;
}

.gms-value-list {
    margin: 0;
    display: grid;
    gap: 8px;
}

.gms-value-list li {
    border: 1px solid #d8e4f2;
    background: #fff;
    border-radius: 12px;
    padding: 9px 11px 9px 34px;
    font-size: 0.86rem;
    font-weight: 600;
    color: #365372;
}

.gms-value-list li::before {
    left: 11px;
    top: 10px;
    color: var(--green);
}

.gms-module-card .gms-value-list li {
    border-color: #d3e8db;
    background: #ffffff;
    color: #2f5b48;
}

.gms-module-card .gms-value-list li::before {
    color: #07934d;
}

.gms-value-card .gms-value-list li {
    border-color: #d8e4f2;
    color: #365372;
}

.gms-value-card .gms-value-list li::before {
    color: #0b73c3;
}

.gms-value-note {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #c8d8ec;
    color: #425f7f;
    font-size: 0.9rem;
}

.gms-module-note {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #bcdac8;
    color: #3f6152;
    font-size: 0.9rem;
}

.gms-kpi-media {
    margin: 0 0 10px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #d7e2ef;
}

.gms-kpi-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.pill-grid span {
    background: #fff;
    border: 1px solid #ced9e9;
    border-radius: 999px;
    padding: 9px 12px;
    font-size: 0.86rem;
    font-weight: 700;
    color: #2e3c52;
}

.cta-band {
    margin-top: 18px;
    background: linear-gradient(130deg, #0b2142, #112f59);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.85);
}

.contact-dark {
    background:
        radial-gradient(circle at 85% 20%, rgba(3, 132, 198, 0.27), transparent 38%),
        #0c1320;
    color: #f3f7ff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-points {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.contact-points li {
    color: #e2ecfb;
    display: flex;
    align-items: center;
    gap: 9px;
}

.contact-points a {
    color: #9ddfff;
}

.social-icons {
    display: flex;
    gap: 9px;
    margin-top: 15px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: #f2f7ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.social-icons .social-link-disabled,
.footer-social-icons .social-link-disabled,
.top-strip-social .social-link-disabled {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: #f2f7ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.92;
    cursor: default;
    pointer-events: auto;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.social-icons a:hover {
    transform: translateY(-1px);
    background: rgba(3, 132, 198, 0.8);
}

.social-icons a.social-link-disabled:hover,
.footer-social-icons a.social-link-disabled:hover,
.top-strip-social a.social-link-disabled:hover {
    transform: translateY(-1px);
    background: #0a66c2;
    border-color: rgba(10, 102, 194, 0.72);
    color: #fff;
}

.top-strip-social .social-link-disabled {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
}

.contact-form {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    padding: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.86rem;
    font-weight: 700;
    margin: 10px 0 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 1px solid #cfd8e6;
    border-radius: 10px;
    padding: 10px 12px;
    font: inherit;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(3, 132, 198, 0.2);
}

.contact-form .btn {
    margin-top: 13px;
}

.contact-page-hub {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 12%, rgba(3, 132, 198, 0.14), transparent 32%),
        radial-gradient(circle at 88% 86%, rgba(7, 147, 77, 0.12), transparent 30%),
        linear-gradient(180deg, #f8fbff, #eef5ff);
}

.contact-page-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
    margin-top: 6px;
}

.contact-identity-card {
    border: 1px solid #1d4f7f;
    border-radius: 18px;
    background: linear-gradient(155deg, #0c1b33 0%, #12355d 56%, #0f2a4b 100%);
    box-shadow: 0 14px 28px rgba(8, 20, 38, 0.24);
    padding: 18px;
    display: grid;
    gap: 12px;
    color: #e6f1ff;
}

.contact-identity-card h3 {
    color: #f4f8ff;
}

.contact-identity-card > p {
    margin: 0;
    color: #bdd2ec;
}

.contact-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-tags span {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(186, 214, 244, 0.42);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #d8e7fb;
}

.contact-channel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.contact-channel {
    border: 1px solid rgba(178, 206, 236, 0.28);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 11px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #e9f2ff;
    text-decoration: none;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.contact-channel:hover {
    transform: translateY(-2px);
    border-color: rgba(179, 219, 255, 0.6);
    box-shadow: 0 12px 22px rgba(7, 18, 35, 0.26);
}

.contact-channel i {
    margin-top: 2px;
    color: #7fd2ff;
}

.contact-channel strong {
    display: block;
    font-size: 0.82rem;
    color: #f0f6ff;
}

.contact-channel small {
    display: block;
    color: #c8dbf1;
    font-size: 0.78rem;
}

.contact-panel-map {
    position: relative;
    border: 1px solid rgba(180, 211, 242, 0.34);
    border-radius: 12px;
    overflow: hidden;
    min-height: 240px;
    background: #0a172d;
    box-shadow: 0 12px 24px rgba(7, 18, 35, 0.3);
}

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

.contact-map-marker {
    position: absolute;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: inline-grid;
    justify-items: center;
    gap: 10px;
    text-decoration: none;
    pointer-events: auto;
}

.contact-map-marker-ring {
    position: absolute;
    width: 66px;
    height: 66px;
    left: 50%;
    top: -5px;
    transform: translateX(-50%);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.58);
    animation: mapPulse 1.8s ease-out infinite;
}

.contact-map-marker-badge {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 0;
    background: transparent;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 1;
    overflow: visible;
    transition: transform var(--transition), box-shadow var(--transition);
}

.contact-map-marker-badge::before {
    content: none;
}

.contact-map-marker-badge::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 18px;
    height: 18px;
    border-radius: 0 2px 3px 2px;
    background: #ffffff;
    border-right: 0;
    border-bottom: 0;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: 4px 4px 10px rgba(6, 16, 31, 0.24);
    z-index: -1;
}

.contact-map-marker-badge img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
    box-shadow: 0 10px 18px rgba(6, 16, 31, 0.38);
}

.contact-map-marker-logo {
    filter: saturate(1.12) contrast(1.04);
}

.contact-map-marker-label {
    background: rgba(6, 19, 37, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.7rem;
    letter-spacing: 0.03em;
    font-weight: 700;
    white-space: nowrap;
}

.contact-map-marker:hover .contact-map-marker-badge {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 24px rgba(6, 16, 31, 0.44);
}

@keyframes mapPulse {
    0% {
        transform: translateX(-50%) scale(0.7);
        opacity: 0.7;
    }
    70% {
        transform: translateX(-50%) scale(1.28);
        opacity: 0;
    }
    100% {
        transform: translateX(-50%) scale(1.28);
        opacity: 0;
    }
}

.contact-panel-footer-logo {
    margin: 0;
    padding: 11px 12px;
    border: 1px solid rgba(180, 211, 242, 0.34);
    border-radius: 12px;
    background: linear-gradient(145deg, #0a1730, #10284b);
    box-shadow: 0 12px 24px rgba(7, 18, 35, 0.34);
    display: flex;
    justify-content: center;
}

.contact-panel-footer-logo img {
    width: min(250px, 100%);
    height: auto;
    display: block;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

.contact-social-wrap p {
    margin: 0 0 8px;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #bcd2eb;
    font-weight: 700;
}

.contact-form-pro {
    border-color: #cfdeef;
    border-radius: 18px;
    padding: 18px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.contact-form-head {
    display: grid;
    gap: 7px;
    margin-bottom: 10px;
}

.contact-form-head p {
    margin: 0;
    color: #4d647f;
}

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

.contact-field {
    min-width: 0;
}

.contact-field label {
    margin: 0 0 6px;
}

.contact-field-wide {
    grid-column: 1 / -1;
}

.contact-consent {
    margin-top: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    color: #4b627c;
    line-height: 1.45;
}

.contact-consent input[type='checkbox'] {
    width: 14px;
    height: 14px;
    margin-top: 2px;
    accent-color: var(--blue);
    flex-shrink: 0;
}

.contact-form-actions {
    margin-top: 12px;
}

.contact-form-actions .btn {
    margin-top: 0;
}

.contact-process {
    background:
        radial-gradient(circle at 10% 16%, rgba(3, 132, 198, 0.14), transparent 32%),
        radial-gradient(circle at 88% 84%, rgba(7, 147, 77, 0.12), transparent 32%),
        linear-gradient(180deg, #f8fbff, #eef5ff);
}

.contact-process .section-head p {
    max-width: 720px;
    margin: 0 auto;
}

.contact-flow-progress {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.contact-flow-progress span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid #d8e3f2;
    background: #fff;
    color: #274665;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.contact-flow-progress span i {
    font-size: 0.78rem;
}

.contact-flow-progress span.is-blue {
    border-color: #c6def4;
    background: #eef6ff;
    color: #0d5f99;
}

.contact-flow-progress span.is-green {
    border-color: #c8e4d5;
    background: #edf8f2;
    color: #146943;
}

.contact-flow-progress span.is-yellow {
    border-color: #f1deaf;
    background: #fff7e6;
    color: #8a6400;
}

.contact-flow-progress span:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(10, 24, 46, 0.1);
}

.contact-flow-shell {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.contact-flow-stage {
    --flow-accent: #0d78d3;
    --flow-dark: #0c4d8b;
    --flow-soft: #eef6ff;
    --flow-edge: #d4e5f6;
    --flow-shadow: rgba(13, 120, 211, 0.22);
    position: relative;
    border: 1px solid #d7e3f2;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 12px 24px rgba(10, 24, 46, 0.08);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    overflow: hidden;
}

.contact-flow-stage::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    border-radius: 18px 18px 0 0;
    background: var(--flow-accent);
}

.contact-flow-stage:hover {
    transform: translateY(-6px);
    border-color: var(--flow-accent);
    box-shadow: 0 20px 34px rgba(12, 35, 67, 0.16);
}

.contact-flow-stage.stage-blue {
    --flow-accent: #0d78d3;
    --flow-dark: #0c4d8b;
    --flow-soft: #eef6ff;
    --flow-edge: #c8dff5;
    --flow-shadow: rgba(13, 120, 211, 0.24);
}

.contact-flow-stage.stage-green {
    --flow-accent: #0f8c56;
    --flow-dark: #146340;
    --flow-soft: #edf8f2;
    --flow-edge: #c8e4d5;
    --flow-shadow: rgba(15, 140, 86, 0.24);
}

.contact-flow-stage.stage-yellow {
    --flow-accent: #d39a00;
    --flow-dark: #8f6800;
    --flow-soft: #fff7e6;
    --flow-edge: #f1deaf;
    --flow-shadow: rgba(211, 154, 0, 0.24);
}

.contact-flow-headline {
    display: grid;
    grid-template-columns: 1fr 42px;
    align-items: start;
    gap: 10px;
}

.contact-flow-count {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--flow-edge);
    background: var(--flow-soft);
    color: var(--flow-dark);
    padding: 3px 10px;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.contact-flow-headline h3 {
    margin: 7px 0 0;
    text-transform: none;
    color: #102b4d;
    line-height: 1.25;
    font-size: 1rem;
}

.contact-flow-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--flow-accent), var(--flow-dark));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 10px 18px var(--flow-shadow);
}

.contact-flow-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.contact-flow-days,
.contact-flow-window {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    border: 1px solid var(--flow-edge);
    background: var(--flow-soft);
    color: var(--flow-dark);
    padding: 4px 11px;
    font-size: 0.67rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-flow-days i {
    font-size: 0.74rem;
}

.contact-flow-desc {
    margin: 0;
    color: #4c647e;
    line-height: 1.5;
}

.contact-flow-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.contact-flow-list li {
    position: relative;
    border: 1px solid var(--flow-edge);
    background: var(--flow-soft);
    border-radius: 10px;
    padding: 7px 10px 7px 30px;
    color: #2f5172;
    font-size: 0.79rem;
    line-height: 1.45;
}

.contact-flow-list li::before {
    content: '\f00c';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--flow-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.5rem;
}

.contact-flow-cta {
    margin-top: 16px;
    border: 1px solid #cddff2;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    box-shadow: 0 10px 22px rgba(10, 24, 46, 0.08);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.contact-flow-cta p {
    margin: 0;
    color: #2f5278;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.contact-flow-cta p i {
    color: var(--blue);
}

.contact-flow-cta .btn {
    margin-top: 0;
}

.volunteer-form-section {
    background:
        radial-gradient(circle at 84% 12%, rgba(3, 132, 198, 0.28), transparent 34%),
        radial-gradient(circle at 10% 86%, rgba(7, 147, 77, 0.2), transparent 30%),
        radial-gradient(circle at 48% 8%, rgba(243, 192, 0, 0.14), transparent 28%),
        linear-gradient(135deg, #081022 0%, #112448 52%, #0b1a35 100%);
    position: relative;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.volunteer-form-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 26px);
    pointer-events: none;
}

.volunteer-form-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 18px;
    align-items: stretch;
}

.volunteer-desk-card {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(177, 208, 245, 0.4);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 14px 30px rgba(5, 18, 41, 0.35);
    backdrop-filter: blur(8px);
}

.volunteer-desk-card h3 {
    color: #fff;
    margin-bottom: 8px;
    font-family: var(--font-olympic-headline);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.volunteer-desk-card .eyebrow {
    color: var(--blue);
    margin-bottom: 8px;
}

.volunteer-desk-card p {
    color: rgba(233, 241, 255, 0.88);
    font-family: var(--font-olympic-sans);
    font-size: 0.9rem;
    line-height: 1.55;
}

.volunteer-desk-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}

.volunteer-desk-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 11px;
    border: 1px solid rgba(181, 205, 238, 0.45);
    background: rgba(255, 255, 255, 0.1);
    color: #e4efff;
    font-size: 0.75rem;
    font-weight: 700;
}

.volunteer-desk-points {
    display: grid;
    gap: 10px;
}

.volunteer-desk-point {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 10px;
    align-items: start;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(183, 206, 238, 0.36);
    background: rgba(255, 255, 255, 0.09);
}

.volunteer-desk-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1378ef, #0a58c7);
    color: #fff;
}

.volunteer-desk-point h4 {
    margin: 2px 0 3px;
    color: #fff;
    font-family: var(--font-olympic-headline);
    font-size: 0.86rem;
    font-weight: 600;
}

.volunteer-desk-point a {
    color: #a7dbff;
    font-size: 0.82rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.volunteer-desk-point a:hover {
    color: #fff;
    text-decoration: underline;
}

.volunteer-desk-social {
    margin-top: 12px;
}

.volunteer-desk-social a {
    border-color: rgba(181, 205, 238, 0.38);
    background: rgba(255, 255, 255, 0.08);
}

.volunteer-desk-social a:hover {
    background: rgba(3, 132, 198, 0.85);
}

.volunteer-form-card {
    border-radius: 18px;
    border-color: #d5e2f4;
    padding: 22px;
    background: linear-gradient(180deg, #ffffff, #f6f9ff);
    font-family: var(--font-olympic-sans);
    font-size: 0.88rem;
}

.volunteer-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 12px;
}

.volunteer-field {
    display: grid;
}

.volunteer-field label {
    margin-top: 0;
    display: inline-block;
    font-family: var(--font-olympic-headline);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    color: var(--blue);
}

.volunteer-form-card input,
.volunteer-form-card select,
.volunteer-form-card textarea {
    font-family: var(--font-olympic-sans);
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1.45;
    padding: 9px 11px;
}

.volunteer-form-card select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 10px;
    padding-right: 38px;
    min-height: 40px;
    background-image:
        linear-gradient(45deg, transparent 50%, #456a9a 50%),
        linear-gradient(135deg, #456a9a 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 1px),
        calc(100% - 12px) calc(50% - 1px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.volunteer-form-card ::placeholder {
    font-size: 0.8rem;
    font-weight: 400;
    color: #6f819c;
}

.volunteer-field-wide {
    grid-column: 1 / -1;
}

.volunteer-form-actions {
    margin-top: 6px;
    display: grid;
    gap: 10px;
}

.volunteer-form-actions .btn {
    margin-top: 0;
    font-family: var(--font-olympic-headline);
    font-size: 0.84rem;
    font-weight: 700;
    padding: 10px 16px;
}

.volunteer-form-card .form-note {
    font-size: 0.72rem;
    line-height: 1.45;
}

.contact-form input[type="file"] {
    padding: 8px;
    background: #f3f7ff;
    border-style: dashed;
}

.contact-form input[type="file"]::file-selector-button {
    border: 1px solid #b9cbe6;
    background: #fff;
    color: #1c2f50;
    border-radius: 9px;
    padding: 7px 10px;
    margin-right: 10px;
    cursor: pointer;
    font-weight: 700;
}

.contact-form input[type="file"]::file-selector-button:hover {
    background: #edf3ff;
}

.volunteer-upload-field .upload-hint {
    margin: 6px 0 0;
    font-size: 0.68rem;
    color: #5a6f8f;
}

.volunteer-check {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.7rem;
    line-height: 1.4;
    color: #4a5e7c;
}

.volunteer-check span {
    font-family: var(--font-olympic-headline);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    color: #3d5f90;
}

.volunteer-check input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    margin: 0;
    border: 1.2px solid #7b99c6;
    border-radius: 4px;
    background: #fff;
    display: inline-grid;
    place-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.volunteer-check input::before {
    content: '';
    width: 7px;
    height: 4px;
    border-left: 1.8px solid #fff;
    border-bottom: 1.8px solid #fff;
    transform: rotate(-45deg) scale(0);
    transition: transform var(--transition);
}

.volunteer-check input:checked {
    background: var(--blue);
    border-color: var(--blue);
}

.volunteer-check input:checked::before {
    transform: rotate(-45deg) scale(1);
}

.volunteer-check input:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(3, 132, 198, 0.24);
}

.form-note {
    margin-top: 8px;
    font-size: 0.82rem;
    color: #606c80;
}

.site-footer {
    background: #080d15;
    color: #dde7f3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr 1.1fr;
    gap: 20px;
    padding: 44px 0;
}

.footer-brand {
    margin-bottom: 10px;
}

.footer-brand img {
    width: 200px;
    height: 50px;
}

.footer-copy {
    color: #96a4b8;
    max-width: 360px;
    font-size: 0.84rem;
    line-height: 1.55;
}

.site-footer h3 {
    color: #fff;
    margin-bottom: 9px;
    font-size: 1.04rem;
}

.site-footer li {
    margin-bottom: 7px;
}

.site-footer li a {
    color: #b9c6d8;
    font-size: 0.84rem;
    line-height: 1.4;
}

.site-footer li a:hover {
    color: #fff;
}

.footer-link-btn,
.site-footer li a.footer-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #e6eef9;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.1;
    width: 100%;
    justify-content: flex-start;
    transition: background var(--transition), border var(--transition), transform var(--transition);
}

.footer-link-btn:hover,
.site-footer li a.footer-app-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.site-footer li a.footer-app-btn {
    margin-top: 2px;
}

.site-footer li a.footer-link-btn.footer-join-btn {
    width: 170px;
    height: 52px;
    padding: 0 12px;
    justify-content: center;
    border-radius: 10;
    border-color: rgba(3, 132, 198, 0.88);
    background: var(--blue);
    color: #fff;
    font-weight: 800;
}

.site-footer li a.footer-link-btn.footer-join-btn:hover {
    color: #fff;
    border-color: rgba(5, 107, 160, 0.95);
    background: var(--blue-dark);
    box-shadow: 0 10px 22px rgba(3, 132, 198, 0.34);
}

.site-footer li a.footer-app-btn.footer-store-link {
    padding: 0;
    border: 0;
    background: transparent;
    width: 152px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0;
}

.site-footer li a.footer-app-btn.footer-store-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

.site-footer li a.footer-app-btn.footer-store-link:hover {
    background: transparent;
    border-color: transparent;
    transform: translateY(-1px);
}

.site-footer li.footer-social-row {
    margin-top: 8px;
    margin-bottom: 0;
}

.footer-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: #e6eef9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.footer-social-icons .social-link-disabled {
    width: 34px;
    height: 34px;
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: #e6eef9;
}

.footer-social-icons a:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.42);
    color: #fff;
}

.social-icons a[aria-label="Instagram"]:hover,
.footer-social-icons a[aria-label="Instagram"]:hover,
.top-strip-social a[aria-label="Instagram"]:hover {
    background: linear-gradient(135deg, #f58529, #dd2a7b 58%, #8134af);
    border-color: rgba(245, 133, 41, 0.72);
}

.social-icons a[aria-label="AstraGMS Website"]:hover,
.footer-social-icons a[aria-label="AstraGMS Website"]:hover,
.top-strip-social a[aria-label="AstraGMS Website"]:hover {
    background: #0f4fa8;
    border-color: rgba(15, 79, 168, 0.78);
}

.social-icons a[aria-label="LinkedIn"]:hover,
.footer-social-icons a[aria-label="LinkedIn"]:hover,
.top-strip-social a[aria-label="LinkedIn"]:hover {
    background: #0a66c2;
    border-color: rgba(10, 102, 194, 0.72);
}

.social-icons a[aria-label="YouTube"]:hover,
.footer-social-icons a[aria-label="YouTube"]:hover,
.top-strip-social a[aria-label="YouTube"]:hover {
    background: #ff0000;
    border-color: rgba(255, 0, 0, 0.72);
}

.social-icons a[aria-label="Facebook"]:hover,
.footer-social-icons a[aria-label="Facebook"]:hover,
.top-strip-social a[aria-label="Facebook"]:hover {
    background: #1877f2;
    border-color: rgba(24, 119, 242, 0.72);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
}

.footer-bottom p {
    color: #95a4b8;
    font-size: 0.86rem;
}

.footer-bottom-social {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.footer-bottom-social span {
    color: #a8b7cb;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-bottom-social .footer-social-icons {
    gap: 7px;
}

.footer-bottom-social .footer-social-icons a {
    width: 30px;
    height: 30px;
    font-size: 0.82rem;
}

.footer-bottom-social .footer-social-icons .social-link-disabled {
    width: 30px;
    height: 30px;
    font-size: 0.82rem;
}

.to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(3, 132, 198, 0.88);
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    box-shadow: 0 10px 22px rgba(3, 132, 198, 0.34);
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.to-top::before {
    content: 'Back to top';
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    opacity: 0;
    white-space: nowrap;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(9, 23, 47, 0.92);
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
}

.to-top:hover {
    color: #fff;
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(3, 132, 198, 0.4);
}

.to-top:hover::before,
.to-top:focus-visible::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.to-top:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.reveal-up {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 460ms ease, transform 460ms ease;
}

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

@media (max-width: 1080px) {
    .story-grid,
    .card-grid-3,
    .video-grid,
    .ig-grid,
    .instagram-live-grid,
    .stats-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split-grid {
        grid-template-columns: 1fr;
    }

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

    .volunteer-benefits-grid {
        grid-template-columns: 1fr;
    }

    .grand-prix-countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .media-news-grid {
        grid-template-columns: 1fr;
    }

    .media-kit-panel,
    .news-bulletin-panel {
        padding: 14px;
    }

    .media-news-hub-grid {
        grid-template-columns: 1fr;
    }

    .media-news-stream {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .media-press-rail {
        grid-auto-columns: minmax(280px, 340px);
    }

    .contact-flow-progress {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-flow-shell {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .about-hero-copy h1 {
        max-width: none;
    }

    .about-hero-panel {
        min-height: auto;
        display: grid;
        gap: 10px;
        max-width: 760px;
    }

    .about-hero-float {
        position: static;
        max-width: none;
    }

    .about-hero-float-two {
        transform: none;
    }

    .about-define-grid,
    .about-values-grid,
    .about-principles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .services-arch-chips {
        justify-content: center;
    }

    .services-value-chips {
        justify-content: center;
    }

    .functional-hero-grid {
        grid-template-columns: 1fr;
    }

    .functional-domain-grid,
    .functional-chip-grid,
    .functional-flow-shell,
    .functional-outcomes-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .functional-flow-progress {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .functional-outcomes-meta {
        justify-content: center;
    }

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

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

    .about-interface-mobile {
        justify-self: start;
        width: min(100%, 280px);
    }

    .about-client-logo {
        width: 200px;
        min-width: 200px;
        height: 122px;
        padding: 10px;
    }

    .about-client-logo img {
        max-height: 62px;
    }

    .about-client-name {
        font-size: 0.69rem;
    }

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

    .ig-impressive-grid {
        padding: 10px;
    }

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

    .social-proof-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proof-post-card-tall .proof-media {
        aspect-ratio: 16 / 13;
    }

    .proof-embed-card-tall .instagram-media {
        min-height: 520px;
    }
}

@media (max-width: 760px) {
    .top-strip-inner {
        gap: 8px;
    }

    .top-strip-ticker {
        gap: 8px;
    }

    .top-strip-start {
        font-size: 0.72rem;
        gap: 6px;
    }

    .top-strip-track {
        gap: 8px;
        font-size: 0.72rem;
    }

    .top-strip-item {
        gap: 6px;
    }

    .top-strip-right {
        gap: 7px;
    }

    .top-strip-right #current-date {
        display: none;
    }
}

@media (max-width: 820px) {
    .section {
        padding: 64px 0;
    }

    body[data-page='about'] .about-hero {
        padding: 74px 0 58px;
    }

    .about-hero-actions {
        gap: 8px;
    }

    .about-hero-actions .btn {
        padding-left: 14px;
        padding-right: 14px;
    }

    .about-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-hero-panel {
        border-radius: 22px;
    }

    .about-hero-screen {
        border-radius: 16px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 3vw;
        right: 3vw;
        background: #fff;
        border: 1px solid #d8e1ef;
        border-radius: 16px;
        box-shadow: var(--shadow-md);
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 11px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity var(--transition), transform var(--transition);
    }

    body.nav-open .nav-links {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hero-content {
        min-height: 74vh;
        padding: 64px 0 56px;
    }

    .hero-controls {
        right: 5vw;
    }

    .story-grid,
    .card-grid-3,
    .video-grid,
    .ig-grid,
    .instagram-live-grid,
    .stats-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .grand-prix-countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .contact-field-wide {
        grid-column: auto;
    }

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

    .volunteer-field-wide {
        grid-column: auto;
    }

    .volunteer-benefit-card {
        padding: 18px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-instagram-grid {
        grid-template-columns: 1fr;
    }

    .ig-impressive-grid {
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .ig-showcase .ig-note {
        border-radius: 10px;
    }

    .social-proof-wall {
        grid-template-columns: 1fr;
    }

    .services-pillar-grid,
    .services-value-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-tags span {
        justify-content: center;
    }

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

    .contact-flow-progress span {
        justify-content: flex-start;
        font-size: 0.72rem;
    }

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

    .contact-flow-headline {
        grid-template-columns: 1fr 40px;
        gap: 9px;
    }

    .contact-flow-headline h3 {
        font-size: 0.94rem;
    }

    .contact-flow-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-flow-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-map-marker {
        top: 50%;
    }

    .contact-map-marker-badge {
        width: 54px;
        height: 54px;
    }

    .contact-map-marker-ring {
        width: 60px;
        height: 60px;
        top: -4px;
    }

    .contact-map-marker-badge::after {
        width: 16px;
        height: 16px;
        bottom: -8px;
    }

    .contact-map-marker-label {
        font-size: 0.66rem;
        padding: 4px 8px;
    }

    .media-kit-tags {
        display: grid;
        grid-template-columns: 1fr;
    }

    .media-kit-tags span {
        justify-content: center;
    }

    .media-kit-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .media-kit-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .media-news-brief {
        grid-template-columns: 1fr;
    }

    .media-news-brief .story-media {
        aspect-ratio: 16 / 9;
    }

    .media-news-stream {
        grid-template-columns: 1fr;
    }

    .media-press-chips {
        justify-content: flex-start;
    }

    .media-press-date {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-arch-chips {
        display: grid;
        grid-template-columns: 1fr;
    }

    .services-arch-chips span {
        justify-content: center;
    }

    .services-value-chips {
        display: grid;
        grid-template-columns: 1fr;
    }

    .services-value-chips span {
        justify-content: center;
    }

    .functional-hero-stats,
    .functional-domain-grid,
    .functional-chip-grid,
    .functional-flow-shell,
    .functional-outcomes-grid {
        grid-template-columns: 1fr;
    }

    .functional-flow-progress {
        grid-template-columns: 1fr;
    }

    .functional-flow-progress span {
        justify-content: flex-start;
        font-size: 0.72rem;
    }

    .functional-outcomes-meta {
        display: grid;
        grid-template-columns: 1fr;
    }

    .functional-outcomes-meta span {
        justify-content: flex-start;
    }

    .functional-flow-headline {
        grid-template-columns: 1fr 40px;
        gap: 9px;
    }

    .functional-flow-headline h3 {
        font-size: 0.94rem;
    }

    .functional-flow-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .functional-flow-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .functional-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .functional-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .functional-hero-badges {
        display: grid;
        grid-template-columns: 1fr;
    }

    .functional-hero-badges span {
        justify-content: center;
    }

    .about-spectrum-metrics,
    .about-define-grid,
    .about-values-grid,
    .about-principles-grid {
        grid-template-columns: 1fr;
    }

    .about-clients-values-wrap {
        margin-top: 18px;
    }

    .about-interface-mobile {
        justify-self: center;
    }

    .story-media.mobile-ui img {
        max-width: 82%;
    }

    .device-preview img {
        width: min(100%, 260px);
    }

    .about-client-logo {
        width: 176px;
        min-width: 176px;
        height: 112px;
    }

    .about-client-logo img {
        max-height: 54px;
    }

    .about-client-name {
        font-size: 0.66rem;
    }

    .about-clients-marquee::before,
    .about-clients-marquee::after {
        width: 34px;
    }

    .team-structure-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .proof-post-foot {
        flex-wrap: wrap;
    }

    .proof-post-card-tall .proof-media {
        aspect-ratio: 16 / 12;
    }

    .proof-embed-card-tall .instagram-media {
        min-height: auto;
    }

    .gms-card-metrics {
        flex-direction: column;
        align-items: flex-start;
    }

    .gms-module-media,
    .gms-module-list {
        grid-template-columns: 1fr;
    }

    .gms-value-kpis {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .about-hero-stats {
        grid-template-columns: 1fr;
    }

    .grand-prix-countdown {
        grid-template-columns: 1fr;
    }
}
