: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;
}

.floating-tour {
    position: fixed;
    right: 22px;
    top: 50%;
    z-index: 38;
    display: grid;
    gap: 4px;
    min-width: 190px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(198, 0, 0, 0.12);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-50%);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.floating-tour:hover {
    transform: translateY(-50%) translateX(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.floating-tour__eyebrow {
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.floating-tour strong {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.35;
}

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

.translate-source {
    position: absolute;
    left: -9999px;
    top: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.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 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 88px;
}

.brand img {
    width: 317px;
}

.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: 24px;
    bottom: 24px;
    display: flex;
    gap: 12px;
    z-index: 2;
}

.hero-arrow {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--navy);
    font-size: 1.2rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    cursor: pointer;
}

.hero-copy__eyebrow,
.award-copy__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.sector-section,
.chairman-section,
.award-section,
.contact-section {
    padding: 52px 0;
}

.sector-section,
.chairman-section,
.contact-section {
    background: var(--pale);
}

.award-section {
    background: linear-gradient(180deg, #ffffff 0%, rgba(246, 253, 255, 0.86) 100%);
}

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

.service-head {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 24px;
    align-items: end;
    margin-bottom: 30px;
}

.service-head__eyebrow {
    margin-bottom: 14px;
    background: rgba(198, 0, 0, 0.08);
    color: var(--navy);
}

.service-head__copy .section-head {
    margin-bottom: 16px;
}

.service-head__copy .sector-copy {
    max-width: 700px;
    margin: 0;
}

.service-head__note {
    padding: 24px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
}

.service-head__note strong {
    display: block;
    margin-bottom: 10px;
    color: var(--text);
    font-size: 1.15rem;
}

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

.service-head__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.service-head__facts span {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(198, 0, 0, 0.06);
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 700;
}

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

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 26px 24px 24px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 88px;
    background: linear-gradient(180deg, rgba(198, 0, 0, 0.06) 0%, rgba(198, 0, 0, 0) 100%);
    pointer-events: none;
}

.service-card__top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.service-card__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: var(--navy);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.10);
}

.service-card__logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.service-card__tag {
    display: inline-flex;
    align-self: flex-start;
    margin: 0 0 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(198, 0, 0, 0.08);
    color: var(--navy);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

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

.service-card__meta {
    display: block;
    margin-top: 16px;
    padding-top: 16px;
    color: #405066;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.7;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.05);
}

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

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

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

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

.chairman-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 10px;
}

.chairman-facts article {
    padding: 18px 18px 16px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
}

.chairman-facts strong {
    display: block;
    margin-bottom: 6px;
    color: var(--navy);
    font-size: 1.18rem;
    font-weight: 800;
}

.chairman-facts span {
    display: block;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

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

.ecosystem-card {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
}

.ecosystem-card--soft {
    align-items: stretch;
    justify-content: center;
    padding: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}

.ecosystem-card__stack {
    display: grid;
    gap: 18px;
    width: 100%;
    min-height: 100%;
}

.ecosystem-card__image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.ecosystem-card__image--contain {
    min-height: 0;
    object-fit: contain;
}

.ecosystem-card__caption {
    padding: 20px 22px;
    border-radius: 18px;
    background: rgba(198, 0, 0, 0.05);
}

.ecosystem-card__caption strong {
    display: block;
    margin-bottom: 10px;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.5;
}

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

.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: 18px;
    background: var(--navy-strong);
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.award-copy__eyebrow {
    align-self: flex-start;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
}

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

.award-copy__meta {
    display: grid;
    gap: 12px;
    margin: 0 0 24px;
}

.award-copy__meta article {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.award-copy__meta strong {
    color: #fff;
    font-size: 0.98rem;
}

.award-copy__meta span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.6;
}

.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__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(198, 0, 0, 0.08);
    color: var(--navy);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

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

.strategy-panel p:last-child {
    margin-bottom: 0;
}

.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,
.contact-section__info a {
    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(22, 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;
}

.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;
}

.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-wordmark {
    margin-bottom: 20px;
}

.brand__title--dark {
    color: #1d2430;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.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-brand__logo-wrap {
    margin-top: 26px;
}

.footer-brand__logo {
    display: block;
    width: auto;
    height: auto;
    max-width: none;
}

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

@media (max-width: 1080px) {
    .strategy-panel,
    .contact-form-card__row,
    .stats-grid,
    .service-grid,
    .service-head,
    .chairman-grid,
    .award-stage,
    .contact-section__grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .floating-tour {
        right: 14px;
        bottom: 14px;
        top: auto;
        min-width: 0;
        max-width: calc(100vw - 28px);
        padding: 12px 14px;
        transform: none;
    }

    .floating-tour:hover {
        transform: translateX(-4px);
    }

    .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;
    }

    .brand img {
        width: 230px;
    }

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

    .chairman-facts,
    .service-head__facts,
    .strategy-panel,
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

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

    .brand img {
        width: 190px;
    }

    .hero-slider {
        min-height: 240px;
    }

    .hero-arrow {
        width: 42px;
        height: 42px;
    }

    .service-head__facts,
    .chairman-facts,
    .strategy-panel,
    .contact-form-card__row,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-section__info,
    .contact-form-card,
    .award-copy,
    .service-card,
    .service-head__note {
        padding-left: 22px;
        padding-right: 22px;
    }

    .award-copy h3,
    .chairman-copy h3,
    .section-head h2 {
        font-size: 1.8rem;
    }
}
