:root {
    --bg: #ffffff;
    --text: #1d2430;
    --muted: #4f5e73;
    --line: rgba(198, 0, 0, 0.14);
    --navy: #c60000;
    --navy-strong: #c60000;
    --sky: #c60000;
    --pale: rgba(246, 253, 255, 0.86);
    --header-bg: rgb(246 253 255 / 86%);
    --shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
    --container: 1180px;
    --radius: 26px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    color: var(--text);
    background: var(--bg);
}

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

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 88px;
}

.brand img {
    width: 206px;
}

.brand__title,
.brand__sub {
    display: block;
    color: #fff;
    line-height: 0.95;
}

.brand__title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.brand__sub {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-align: center;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.main-nav a {
    position: relative;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--navy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.24s ease;
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--pale);
}

.hero-slider {
    position: relative;
    height: min(74vw, 680px);
    min-height: 320px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-nav {
    position: absolute;
    right: 34px;
    bottom: 18px;
    display: flex;
    gap: 10px;
}

.hero-arrow,
.round-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: var(--navy);
    box-shadow: var(--shadow);
    cursor: pointer;
}

.sector-section {
    padding: 34px 0 52px;
    background: #fff;
}

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

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

.section-head h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
}

.sector-tabs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.sector-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 110px;
    padding: 18px 14px;
    border: 0;
    border-radius: 18px;
    background: #fff;
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(30, 44, 57, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.sector-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(30, 44, 57, 0.08);
}

.sector-tab__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(198, 0, 0, 0.08);
}

.sector-tab__icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(12%) sepia(98%) saturate(6674%) hue-rotate(2deg) brightness(88%) contrast(119%);
}

.sector-tab__icon--text {
    color: var(--navy);
    font-size: 1.35rem;
    font-weight: 800;
}

.sector-tab span:last-child {
    text-align: center;
    line-height: 1.35;
}

.sector-tab.is-active {
    color: var(--navy);
    background: rgba(246, 253, 255, 0.86);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.sector-panels {
    text-align: center;
}

.sector-panel {
    display: none;
}

.sector-panel.is-active {
    display: block;
}

.sector-copy {
    max-width: 980px;
    margin: 0 auto 26px;
    color: var(--muted);
    line-height: 1.8;
    font-size: 0.93rem;
}

.brand-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    align-items: stretch;
}

.brand-grid--single {
    justify-content: center;
}

.brand-grid--double {
    justify-content: center;
}

.brand-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 0 1 calc((100% - 36px) / 3);
    max-width: 360px;
    min-height: 100%;
    padding: 24px 22px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(246, 253, 255, 0.86) 0%, #ffffff 100%);
    text-align: center;
    box-shadow: var(--shadow);
}

.brand-grid--single .brand-card {
    flex-basis: min(420px, 100%);
    max-width: 420px;
}

.brand-grid--double .brand-card {
    flex-basis: min(320px, 100%);
    max-width: 320px;
}

.brand-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    margin-bottom: 14px;
}

.brand-card__logo img {
    max-width: 167px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

.timeline-item__logo {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 54px;
    margin-bottom: 14px;
}

.timeline-item__logo img {
    max-width: 167px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0;
}

.brand-card strong {
    display: block;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.brand-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.chairman-head,
.history-head {
    padding: 26px 0 0;
    background: #fff;
}

.script-title {
    margin: 0;
    text-align: center;
    color: var(--text);
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    font-style: normal;
    font-weight: 700;
}

.chairman-section {
    padding: 30px 0 54px;
    background: var(--pale);
}

.chairman-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
    align-items: stretch;
    gap: 42px;
}

.chairman-copy h3 {
    margin: 0 0 24px;
    color: var(--text);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: 0.01em;
}

.chairman-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.chairman-copy p {
    margin: 0 0 18px;
    color: #233043;
    font-size: 0.95rem;
    line-height: 1.9;
}

.chairman-visual {
    display: flex;
    align-self: stretch;
    min-height: 100%;
}

.ecosystem-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    max-height: 100%;
    padding: 30px 28px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
}

.ecosystem-card h4 {
    margin: 0 0 18px;
    color: var(--text);
    font-size: 1.6rem;
}

.ecosystem-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

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

.ecosystem-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 98px;
    padding: 14px 10px;
    border-radius: 18px;
    background: rgba(198, 0, 0, 0.05);
    text-align: center;
}

.ecosystem-tag img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(12%) sepia(98%) saturate(6674%) hue-rotate(2deg) brightness(88%) contrast(119%);
}

.ecosystem-tag em {
    font-style: normal;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
}

.history-section {
    position: relative;
    padding: 30px 0 64px;
    background:
        radial-gradient(circle at 10% 90%, rgba(198, 0, 0, 0.06), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, rgba(246, 253, 255, 0.86) 100%);
}

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

.architecture-card {
    padding: 26px 22px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
}

.architecture-card strong {
    display: block;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 1.25rem;
}

.architecture-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.timeline-section {
    padding: 18px 0 72px;
    background: #fff;
}

.timeline-intro {
    max-width: 760px;
    margin: 0 0 30px;
    color: var(--muted);
    line-height: 1.8;
}

.timeline-shell {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px 0 20px;
}

.timeline-shell::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, rgba(198, 0, 0, 0.08) 0%, rgba(198, 0, 0, 0.28) 50%, rgba(198, 0, 0, 0.08) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(50% - 38px);
    padding: 26px 22px 24px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(246, 253, 255, 0.86) 0%, #ffffff 100%);
    box-shadow: var(--shadow);
    text-align: left;
}

.timeline-item + .timeline-item {
    margin-top: -110px;
}

.timeline-item:nth-child(odd) {
    margin-right: auto;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-item__year {
    align-self: flex-end;
}

.timeline-item:nth-child(odd) .timeline-item__logo {
    justify-content: flex-end;
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: 40px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--navy);
    box-shadow: 0 0 0 6px rgba(198, 0, 0, 0.09);
}

.timeline-item:nth-child(odd)::before {
    right: -46px;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-item__year {
    align-self: flex-start;
}

.timeline-item:nth-child(even) .timeline-item__logo {
    justify-content: flex-start;
}

.timeline-item:nth-child(even)::before {
    left: -46px;
}

.timeline-item__year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-width: 70px;
    min-height: 34px;
    padding: 0 12px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(198, 0, 0, 0.08);
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.timeline-item strong {
    display: block;
    margin-bottom: 10px;
    color: var(--text);
    font-size: 1.08rem;
    font-weight: 800;
}

.timeline-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.award-section {
    position: relative;
    padding: 48px 0 58px;
    background:
        radial-gradient(circle at 78% 26%, rgba(198, 0, 0, 0.05), transparent 18%),
        radial-gradient(circle at 18% 85%, rgba(198, 0, 0, 0.04), transparent 20%),
        linear-gradient(180deg, #ffffff 0%, rgba(246, 253, 255, 0.86) 100%);
}

.award-shell {
    display: block;
}

.award-stage {
    display: grid;
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}

.award-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 36px 34px;
    border-radius: 10px;
    background: var(--navy-strong);
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.award-copy h3 {
    margin: 0 0 18px;
    font-size: 2rem;
    line-height: 1.2;
}

.award-copy p {
    margin: 0 0 24px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.84);
}

.award-link {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 12px;
    background: #fff;
    color: var(--navy);
    font-weight: 700;
}

.strategy-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    height: 100%;
}

.strategy-panel article {
    height: 100%;
    padding: 24px 22px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
}

.strategy-panel h4 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 1.2rem;
}

.strategy-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.stats-band {
    padding: 26px 0;
    background: var(--navy);
}

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

.stat-card {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #fff;
}

.stat-card img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(162deg) brightness(104%) contrast(101%);
}

.stat-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 2rem;
    font-weight: 800;
}

.stat-card span {
    display: block;
    font-size: 0.92rem;
    line-height: 1.4;
}

.contact-section {
    padding: 52px 0;
    background: var(--pale);
}

.contact-section__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: 24px;
    align-items: stretch;
}

.contact-section__info,
.contact-form-card {
    padding: 32px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
}

.contact-section__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-section__info h2 {
    margin: 0 0 16px;
    color: var(--text);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
}

.contact-section__info p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.8;
}

.contact-section__info a {
    color: var(--navy);
    font-weight: 700;
}

.contact-form-card {
    display: grid;
    gap: 16px;
}

.form-alert {
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.6;
}

.form-alert--success {
    background: rgba(26, 127, 55, 0.1);
    color: #166534;
}

.form-alert--error {
    background: rgba(198, 0, 0, 0.08);
    color: var(--navy);
}

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

.contact-form-card label {
    display: grid;
    gap: 8px;
}

.contact-form-card span {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 14px 16px;
    border: 0;
    border-radius: 14px;
    background: rgba(246, 253, 255, 0.86);
    color: var(--text);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.contact-form-card button {
    justify-self: start;
    min-width: 140px;
    min-height: 48px;
    padding: 0 20px;
    border: 0;
    border-radius: 14px;
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.cf-turnstile {
    overflow: hidden;
}

.contact-form-card.is-submitting button {
    opacity: 0.72;
    cursor: wait;
}

.site-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(13, 18, 28, 0.42);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.site-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.site-modal__panel {
    width: min(100%, 420px);
    padding: 30px 28px 26px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
    text-align: center;
    transform: translateY(16px) scale(0.98);
    transition: transform 0.24s ease;
}

.site-modal.is-open .site-modal__panel {
    transform: translateY(0) scale(1);
}

.site-modal__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    margin-bottom: 18px;
    border-radius: 24px;
    font-size: 2rem;
    font-weight: 800;
}

.site-modal__badge--success {
    background: rgba(22, 101, 52, 0.1);
    color: #166534;
}

.site-modal__badge--error {
    background: rgba(198, 0, 0, 0.08);
    color: var(--navy);
}

.site-modal__title {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 1.7rem;
    font-weight: 800;
}

.site-modal__message {
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.8;
}

.site-modal__button {
    min-width: 150px;
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 14px;
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background:
        radial-gradient(circle at top, rgba(198, 0, 0, 0.08), transparent 34%),
        rgba(255, 255, 255, 0.96);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.site-loader.is-open {
    opacity: 1;
    visibility: visible;
}

.site-loader__panel {
    width: min(100%, 420px);
    padding: 34px 30px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
    text-align: center;
    transform: translateY(16px) scale(0.98);
    transition: transform 0.24s ease;
}

.site-loader.is-open .site-loader__panel {
    transform: translateY(0) scale(1);
}

.site-loader__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    animation: loaderFloat 1.4s ease-in-out infinite;
}

.site-loader__title {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 1.7rem;
    font-weight: 800;
}

.site-loader__message {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

@keyframes loaderFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.site-footer {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.footer-shapes img {
    position: absolute;
    opacity: 0.14;
    pointer-events: none;
}

.footer-shape--left {
    left: 0;
    bottom: 12px;
    width: 210px;
}

.footer-shape--right {
    right: 0;
    top: 20px;
    width: 210px;
    transform: rotate(180deg);
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 54px 0 30px;
}

.footer-brand img {
    width: 236px;
    margin-bottom: 20px;
}

.footer-wordmark {
    margin-bottom: 20px;
}

.brand__title--dark,
.brand__sub--dark {
    color: #1d2430;
}

.footer-brand p,
.footer-contact p,
.footer-contact a {
    color: #293649;
    line-height: 1.9;
}

.footer-contact h4 {
    margin: 0 0 18px;
    color: var(--text);
    font-size: 1.5rem;
}

.footer-contact a {
    display: block;
    margin-top: 12px;
    font-weight: 600;
}

.footer-affiliates {
    margin-top: 26px;
}

.footer-affiliates h4 {
    margin: 0 0 16px;
    color: var(--text);
    font-size: 1.1rem;
}

.footer-affiliates__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    align-items: center;
}

.footer-affiliates__grid img {
    max-width: 110px;
    max-height: 34px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.footer-bottom {
    padding: 14px 20px;
    text-align: center;
    color: #273447;
    font-size: 0.84rem;
}

@media (max-width: 1080px) {
    .sector-tabs,
    .architecture-grid,
    .strategy-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-card {
        flex-basis: calc((100% - 18px) / 2);
    }

    .chairman-grid,
    .contact-section__grid,
    .footer-grid,
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .award-stage {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 18px;
        background: rgb(246 253 255 / 96%);
        border-radius: 18px;
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .header-row {
        position: relative;
    }

    .chairman-grid,
    .contact-section__grid,
    .footer-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .chairman-visual {
        min-height: auto;
    }

    .ecosystem-tags {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sector-tabs,
    .architecture-grid,
    .strategy-panel {
        grid-template-columns: 1fr 1fr;
    }

    .brand-card {
        flex-basis: calc((100% - 18px) / 2);
    }

    .timeline-shell::before {
        left: 12px;
        transform: none;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: calc(100% - 28px);
        margin-left: 28px;
        margin-right: 0;
        margin-top: 0;
        text-align: left;
    }

    .timeline-item::before,
    .timeline-item:nth-child(odd)::before,
    .timeline-item:nth-child(even)::before {
        left: -24px;
        right: auto;
    }

    .timeline-item .timeline-item__year,
    .timeline-item:nth-child(odd) .timeline-item__year,
    .timeline-item:nth-child(even) .timeline-item__year {
        align-self: flex-start;
    }

    .timeline-item .timeline-item__logo,
    .timeline-item:nth-child(odd) .timeline-item__logo,
    .timeline-item:nth-child(even) .timeline-item__logo {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .header-row {
        min-height: 76px;
    }

    .brand img {
        width: 170px;
    }

    .brand__title {
        font-size: 1.55rem;
    }

    .brand__sub {
        font-size: 0.74rem;
    }

    .hero-nav {
        right: 14px;
        bottom: 14px;
    }

    .contact-form-card__row {
        grid-template-columns: 1fr;
    }

    .award-copy {
        padding: 26px 24px;
    }

    .award-copy h3 {
        font-size: 1.6rem;
    }

    .sector-tabs,
    .architecture-grid,
    .strategy-panel {
        grid-template-columns: 1fr;
    }

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

    .brand-card,
    .brand-grid--double .brand-card,
    .brand-grid--single .brand-card {
        flex-basis: 100%;
        max-width: 100%;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: calc(100% - 22px);
        margin-left: 22px;
    }
}
