:root {
    --blue: #2f4a99;
    --blue-dark: #17336f;
    --blue-bright: #1267df;
    --gold: #e5ad32;
    --dark: #05070b;
    --anthracite: #111827;
    --text: #1f2937;
    --muted: #667085;
    --white: #ffffff;
    --border: rgba(17, 24, 39, 0.12);
    --shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
    --radius: 18px;
    --container: 1280px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    color: var(--text);
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(14px);
}

.header-container {
    width: min(100%, var(--container));
    min-height: 96px;
    height: auto;
    margin: 0 auto;
    padding: 10px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo-img {
    display: block;
    width: auto;
    height: 86px;
    max-height: 100px;
    object-fit: contain;
}

.desktop-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    position: relative;
    border: 0;
    background: transparent;
    padding: 22px 0;
    font-size: 13px;
    font-weight: 500;
    color: #111827;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--blue);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    width: 7px;
    height: 7px;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform 0.2s ease;
}

.nav-dropdown.is-open .dropdown-arrow,
.mobile-dropdown.is-open .dropdown-arrow {
    transform: rotate(225deg);
    margin-top: 3px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    width: 290px;
    padding: 10px;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(17, 24, 39, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: 0.2s ease;
}

.nav-dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.dropdown-menu a:hover {
    background: #f3f6ff;
    color: var(--blue);
}

.header-cta {
    flex-shrink: 0;
    padding: 12px 25px;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(47, 74, 153, 0.25);
    transition: 0.2s ease;
}

.header-cta:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 10px;
    background: #111827;
    transition: 0.2s ease;
}

.mobile-menu-button.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-button.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

/* Hero Section */
.about-hero {
    position: relative;
    overflow: hidden;
    background: #05070b;
    color: #ffffff;
}

.about-hero-bg {
    position: absolute;
    inset: 0 0 115px 0;
    z-index: 1;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center right;
}

.about-hero-overlay {
    position: absolute;
    inset: 0 auto 115px 0;
    width: 60%;
    z-index: 2;
    background: linear-gradient(90deg,
            rgba(5, 7, 11, 1) 0%,
            rgba(5, 7, 11, 0.5) 50%,
            rgba(5, 7, 11, 0) 100%);
}

.about-hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--container);
    padding-left: 20px;
    padding-right: 20px;
    min-height: 720px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.about-hero-content {
    max-width: 610px;
    padding: 82px 0 96px;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 34px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1267df;
}

.about-kicker span {
    width: 36px;
    height: 2px;
    border-radius: 999px;
    background: #1267df;
}

.about-hero-content h1 {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 76px;
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: -0.065em;
    text-transform: uppercase;
    color: #ffffff;
}

.about-hero-content h1 span {
    color: #1267df;
}

.about-hero-line {
    width: 78px;
    height: 4px;
    margin: 38px 0 36px;
    border-radius: 999px;
    background: #1267df;
}

.about-hero-content p {
    max-width: 560px;
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 21px;
    line-height: 1.55;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
}

.about-hero-button {
    width: fit-content;
    min-width: 250px;
    height: 62px;
    margin-top: 54px;
    padding: 0 36px;
    border-radius: 3px;
    background: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(18, 103, 223, 0.28);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.about-hero-button:hover {
    transform: translateY(-2px);
    background: var(--blue-dark);
    box-shadow: 0 22px 50px rgba(18, 103, 223, 0.38);
}

.about-hero-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.about-features-wrap {
    position: relative;
    z-index: 4;
    background: rgba(2, 8, 18, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-features {
    width: 100%;
    max-width: var(--container);
    min-height: 115px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-feature {
    padding: 32px 58px;
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.about-feature:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.about-feature:last-child {
    border-right-color: rgba(255, 255, 255, 0.08);
}

.about-feature-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: #d8a132;
}

.about-feature-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-feature h3 {
    margin: 0 0 8px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 17px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    color: #ffffff;
}

.about-feature p {
    max-width: 210px;
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.56);
}

/* Phylosophy Section */
.about-philosophy-section {
    background: #ffffff;
    padding: 86px 0 92px;
}

.about-philosophy-container {
    width: 100%;
    max-width: var(--container);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 560px 1fr;
    align-items: center;
    gap: 86px;
}

.about-philosophy-image {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 24px 56px rgba(16, 24, 40, 0.16);
}

.about-philosophy-image img {
    width: 100%;
    height: 620px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.about-philosophy-content {
    max-width: 640px;
}

.about-philosophy-kicker {
    display: block;
    margin-bottom: 22px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d8a132;
}

.about-philosophy-content h2 {
    margin: 0 0 38px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 52px;
    line-height: 1.12;
    font-weight: 850;
    letter-spacing: -0.06em;
    color: #101a3a;
}

.about-philosophy-content>p {
    margin: 0 0 28px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.75;
    font-weight: 400;
    color: #52627d;
}

.about-philosophy-content>p:last-of-type {
    margin-bottom: 0;
}

.about-philosophy-quote {
    margin-top: 52px;
    padding: 32px 34px;
    border-left: 4px solid #d8a132;
    border-radius: 0 14px 14px 0;
    background: #eaf1ff;
}

.about-philosophy-quote p {
    margin: 0 0 24px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 650;
    font-style: italic;
    color: #101a3a;
}

.about-philosophy-quote strong {
    display: block;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 850;
    color: #2f4a99;
}


/* Quality Section */
.about-quality-section {
    background: #14244b;
    padding: 76px 0 86px;
    color: #ffffff;
}

.about-quality-container {
    width: 100%;
    max-width: var(--container);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.about-quality-heading {
    margin: 0 auto 78px;
    text-align: center;
}

.about-quality-heading span {
    display: block;
    margin-bottom: 20px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: #d8a132;
}

.about-quality-heading h2 {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 850;
    letter-spacing: -0.055em;
    color: #ffffff;
}

.about-quality-heading div {
    width: 86px;
    height: 4px;
    margin: 30px auto 0;
    border-radius: 999px;
    background: #d8a132;
}

.about-quality-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.about-quality-card {
    min-height: 320px;
    padding: 36px 34px 34px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.055);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition:
        transform 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.about-quality-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.16);
}

.about-quality-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 34px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.09);
    color: #d8a132;
}

.about-quality-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-quality-card h3 {
    margin: 0 0 22px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 25px;
    line-height: 1.18;
    font-weight: 850;
    letter-spacing: -0.045em;
    color: #ffffff;
}

.about-quality-card p {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.58);
}


/* Region Section */
.about-region-section {
    background: #f5f8fc;
    padding: 86px 0 92px;
}

.about-region-container {
    width: 100%;
    max-width: var(--container);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 470px 1fr;
    align-items: center;
    gap: 70px;
}

.about-region-kicker {
    display: block;
    margin-bottom: 18px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #d8a132;
}

.about-region-content h2 {
    margin: 0 0 32px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 50px;
    line-height: 1.08;
    font-weight: 850;
    letter-spacing: -0.06em;
    color: #101a3a;
}

.about-region-text {
    margin: 0 0 48px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.75;
    font-weight: 400;
    color: #52627d;
}

.about-region-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-region-item {
    min-height: 86px;
    padding: 20px 24px;
    border: 1px solid #e2e8f2;
    border-radius: 14px;
    background: #ffffff;
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    gap: 22px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.035);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.about-region-item:hover {
    transform: translateX(4px);
    border-color: rgba(47, 74, 153, 0.22);
    box-shadow: 0 16px 38px rgba(16, 24, 40, 0.075);
}

.about-region-icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: #eef2fb;
    display: grid;
    place-items: center;
    color: #2f4a99;
}

.about-region-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-region-item h3 {
    margin: 0 0 6px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: -0.04em;
    color: #101a3a;
}

.about-region-item p {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 14.5px;
    line-height: 1.45;
    font-weight: 400;
    color: #687894;
}

.about-region-map-card {
    padding: 28px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 24px 58px rgba(16, 24, 40, 0.11);
}

.about-region-map {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #f4f7fb;
}

.about-region-leaflet-map {
    width: 100%;
    height: 490px;
    display: block;
    position: relative;
    border-radius: 14px;
    z-index: 1;
}

.map-consent {
    position: relative;
    width: 100%;
    height: 490px;
    border-radius: inherit;
    overflow: hidden;
}

.map-consent-placeholder {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: grid;
    place-items: center;
    padding: 24px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(47, 74, 153, 0.08), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(47, 74, 153, 0.14);
    text-align: center;
}

.map-consent.is-loaded .map-consent-placeholder {
    display: none;
}

.map-consent:not(.is-loaded) .about-region-leaflet-map {
    visibility: hidden;
    pointer-events: none;
}

.map-consent-content {
    max-width: 520px;
}

.map-consent-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2F4A99;
}

.map-consent-content h3 {
    margin: 0 0 10px;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.2;
    color: var(--color-heading, #111827);
}

.map-consent-content p {
    margin: 0;
    color: var(--color-text-muted, #667085);
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.map-consent-button {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: #2F4A99;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.map-consent-button:hover {
    transform: translateY(-1px);
    background: #17336f;
    box-shadow: 0 12px 28px rgba(47, 74, 153, 0.22);
}

.map-consent-button:focus-visible {
    outline: 3px solid rgba(47, 74, 153, 0.28);
    outline-offset: 3px;
}

.map-consent-note {
    margin-top: 12px !important;
    font-size: 0.85rem;
}

.map-consent-note a {
    color: #2F4A99;
    font-weight: 700;
    text-decoration: none;
}

.map-consent-note a:hover {
    text-decoration: underline;
}

@media (max-width: 560px) {
    .map-consent-placeholder {
        padding: 20px;
    }

    .map-consent-content h3 {
        font-size: 1.22rem;
    }
}

.about-region-map::before {
    content: none;
}

.about-region-map .leaflet-container {
    font-family: "Aptos", "Inter", Arial, sans-serif;
}

.about-region-map .leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, 0.16);
}

.about-region-map .leaflet-popup-content {
    margin: 11px 14px;
    font-size: 14px;
    font-weight: 700;
    color: #14213d;
}

.about-region-map .leaflet-popup-tip {
    box-shadow: 0 8px 18px rgba(16, 24, 40, 0.08);
}

.about-region-map .leaflet-control-attribution {
    font-size: 10px;
}

.about-region-city-marker {
    cursor: pointer;
    filter: drop-shadow(0 6px 12px rgba(47, 74, 153, 0.28));
    transition: filter 0.2s ease;
}

.about-region-city-marker:hover {
    filter: drop-shadow(0 8px 18px rgba(47, 74, 153, 0.42));
}

.about-region-tooltip {
    padding: 7px 10px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.14);
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    color: #101a3a;
}

.about-region-tooltip::before {
    display: none;
}

.about-region-map-badge {
    position: absolute;
    right: 8px;
    bottom: 8px;
    z-index: 2;
    width: 285px;
    padding: 26px 26px 24px;
    border-radius: 14px;
    background: #14244b;
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(16, 24, 40, 0.18);
}

.about-region-map-badge h3 {
    margin: 0 0 14px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: -0.025em;
    color: #ffffff;
}

.about-region-map-badge p {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 14.5px;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
}


/* Final CTA Section */
.about-final-cta-section {
    background: color-mix(in srgb, var(--blue) 10%, var(--white));
    padding: 86px 0 92px;
}

.about-final-cta-container {
    width: 100%;
    max-width: var(--container);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.about-final-cta-box {
    position: relative;
    min-height: 445px;
    padding: 70px 72px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    box-shadow: 0 24px 58px rgba(47, 74, 153, 0.18);
}

.about-final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 590px;
}

.about-final-cta-content h2 {
    margin: 0 0 28px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 50px;
    line-height: 1.1;
    font-weight: 850;
    letter-spacing: -0.06em;
    color: #ffffff;
}

.about-final-cta-content p {
    max-width: 560px;
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 19px;
    line-height: 1.65;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
}

.about-final-cta-actions {
    margin-top: 44px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.about-final-cta-button {
    min-height: 58px;
    padding: 0 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 850;
    text-align: center;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.about-final-cta-button-primary {
    min-width: 335px;
    background: var(--gold);
    border: 2px solid var(--gold);
    color: var(--anthracite);
    box-shadow: 0 18px 38px rgba(10, 22, 55, 0.18);
}

.about-final-cta-button-primary:hover {
    transform: translateY(-2px);
    background: #d8a132;
    border-color: #d8a132;
    box-shadow: 0 22px 46px rgba(10, 22, 55, 0.24);
}

.about-final-cta-button-secondary {
    min-width: 240px;
    border: 2px solid rgba(255, 255, 255, 0.32);
    background: transparent;
    color: #ffffff;
}

.about-final-cta-button-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
}

.about-final-cta-mark {
    position: relative;
    z-index: 1;
    width: 230px;
    height: 230px;
    flex: 0 0 230px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
}

.about-final-cta-mark-inner {
    width: 170px;
    height: 170px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    display: grid;
    place-items: center;
    color: #ffffff;
}

.about-final-cta-mark-inner svg {
    width: 76px;
    height: 76px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Footer */
.site-footer {
    background: #14244b;
    color: #ffffff;
    padding: 56px 0 34px;
}

.footer-container {
    width: 100%;
    max-width: var(--container);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #ffffff;
    text-decoration: none;
}

.footer-logo-img {
    display: block;
    width: auto;
    height: 100px;
    max-height: 100px;
    object-fit: contain;
}

.footer-description {
    max-width: 430px;
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.75;
    font-weight: 400;
    text-align: right;
    color: rgba(255, 255, 255, 0.58);
}

.footer-divider {
    width: 100%;
    height: 1px;
    margin: 70px 0 56px;
    background: rgba(255, 255, 255, 0.11);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 0.8fr;
    gap: 84px;
}

.footer-column h3 {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
}

.footer-title-line {
    display: block;
    width: 28px;
    height: 3px;
    margin: 23px 0 28px;
    border-radius: 999px;
    background: #d8a132;
}

.footer-contact-list,
.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.footer-contact-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.055);
    color: #d8a132;
}

.footer-contact-icon svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact-list a,
.footer-contact-list address {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 12.5px;
    line-height: 1.55;
    font-style: normal;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.footer-contact-list a:hover {
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 12.5px;
    line-height: 1.2;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-social {
    margin-top: 42px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.52);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    background: #3957b4;
    color: #ffffff;
}

.footer-social svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.footer-bottom {
    margin-top: 74px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 11px;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.42);
}



/* Responsive */
@media (max-width: 1200px) {

    /* Hero Section */
    .about-feature {
        padding: 28px 32px;
        gap: 16px;
        grid-template-columns: 30px 1fr;
    }

    .about-feature-icon {
        width: 30px;
        height: 30px;
    }

    .about-feature-icon svg {
        width: 25px;
        height: 25px;
    }

    .about-feature h3 {
        font-size: 15px;
        letter-spacing: 0.025em;
    }

    .about-feature p {
        max-width: 190px;
        font-size: 13.5px;
        line-height: 1.4;
    }
}


@media (max-width: 1100px) {

    /* Hero Section */
    .about-hero-bg,
    .about-hero-overlay {
        bottom: 230px;
    }

    .about-hero-container {
        min-height: 650px;
    }

    .about-hero-content h1 {
        font-size: 64px;
    }

    .about-feature {
        padding: 30px 30px;
    }
}

@media (max-width: 1050px) {

    /* Phylosophy Section */
    .about-philosophy-section {
        padding: 76px 0 82px;
    }

    .about-philosophy-container {
        grid-template-columns: 480px 1fr;
        gap: 58px;
    }

    .about-philosophy-image img {
        height: 540px;
    }

    .about-philosophy-content h2 {
        font-size: 42px;
    }

    .about-philosophy-content>p {
        font-size: 16.5px;
    }

    /* Quality Section */
    .about-quality-section {
        padding: 70px 0 78px;
    }

    .about-quality-heading {
        margin-bottom: 58px;
    }

    .about-quality-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .about-quality-card {
        min-height: 280px;
    }

    /* Region Section */
    .about-region-section {
        padding: 76px 0 82px;
    }

    .about-region-container {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .about-region-content {
        max-width: 720px;
        margin: auto;
    }

    .about-region-leaflet-map {
        height: 440px;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 54px 70px;
    }

    .footer-divider {
        margin: 56px 0 48px;
    }
}


@media (max-width: 1024px) {

    /* Header */
    .desktop-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .header-container {
        width: min(100%, var(--container));
        min-height: 96px;
        height: auto;
        margin: 0 auto;
        padding: 10px 32px;
        display: flex;
        align-items: center;
        gap: 32px;
    }

    .mobile-menu {
        display: block;
        max-height: 0;
        overflow: hidden;
        background: #fff;
        border-top: 1px solid rgba(17, 24, 39, 0.08);
        transition: max-height 0.28s ease;
    }

    .mobile-menu.is-open {
        max-height: 620px;
    }

    .mobile-nav {
        padding: 14px 20px 22px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .mobile-nav a,
    .mobile-dropdown-toggle {
        width: 100%;
        border: 0;
        background: transparent;
        padding: 14px 4px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
        font-weight: 700;
        color: #111827;
        text-align: left;
        cursor: pointer;
    }

    .mobile-dropdown-menu {
        display: none;
        padding: 4px 0 10px 14px;
    }

    .mobile-dropdown.is-open .mobile-dropdown-menu {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .mobile-dropdown-menu a {
        padding: 11px 12px;
        border-left: 2px solid rgba(47, 74, 153, 0.18);
        font-size: 14px;
        font-weight: 650;
        color: #344054;
    }

    .mobile-cta {
        margin-top: 10px;
        justify-content: center !important;
        padding: 15px 22px !important;
        border-radius: 999px;
        background: var(--blue) !important;
        color: var(--white) !important;
    }
}

@media (max-width: 1000px) {

    /* Final CTA Section */
    .about-final-cta-section {
        padding: 76px 0 82px;
    }

    .about-final-cta-box {
        padding: 58px 52px;
        gap: 48px;
    }

    .about-final-cta-content h2 {
        font-size: 42px;
    }

    .about-final-cta-content p {
        font-size: 17px;
    }

    .about-final-cta-mark {
        width: 190px;
        height: 190px;
        flex-basis: 190px;
    }

    .about-final-cta-mark-inner {
        width: 138px;
        height: 138px;
    }

    .about-final-cta-mark-inner svg {
        width: 62px;
        height: 62px;
    }
}

@media (max-width: 950px) {
    .about-final-cta-mark {
        display: none;
    }
}

@media (max-width: 860px) {

    /* Hero Section */
    .about-hero {
        position: relative;
        min-height: 700px;
        background: #05070b;
        overflow: hidden;
    }

    .about-hero-bg {
        position: absolute;
        inset: 0;
        height: 100%;
        z-index: 1;
    }

    .about-hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center right;
    }

    .about-hero-overlay {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        background:
            linear-gradient(180deg,
                rgba(5, 7, 11, 0.78) 0%,
                rgba(5, 7, 11, 0.56) 45%,
                rgba(5, 7, 11, 0.9) 100%);
    }

    .about-hero-container {
        position: relative;
        z-index: 3;
        min-height: 700px;
        display: flex;
        align-items: center;
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
    }


    .about-hero-content {
        max-width: 100%;
        padding: 46px 0 58px;
    }

    .about-kicker {
        color: var(--gold);
    }

    .about-kicker span,
    .about-hero-line {
        background: var(--gold);
    }

    .about-hero-content h1 {
        max-width: 650px;
        font-size: 52px;
        color: var(--white);
    }

    .about-hero-content h1 span {
        color: var(--gold);
    }

    .about-hero-content p {
        max-width: 680px;
        color: rgba(255, 255, 255, 0.84);
    }

    .about-features {
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-left: 1px solid rgba(255, 255, 255, 0.12);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .about-feature {
        padding: 30px 26px;
        border-right: 1px solid rgba(255, 255, 255, 0.12);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .about-feature:first-child {
        border-left: 0;
    }

    /* Phylosophy Section */
    .about-philosophy-container {
        grid-template-columns: 1fr;
        gap: 48px;
        justify-items: center;
    }

    .about-philosophy-image {
        max-width: 620px;
    }

    .about-philosophy-image img {
        height: 460px;
    }

    .about-philosophy-content {
        max-width: 720px;
    }
}

@media (max-width: 760px) {

    /* Final CTA Section */
    .about-final-cta-section {
        padding: 58px 0 64px;
    }

    .about-final-cta-container {
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
    }

    .about-final-cta-box {
        min-height: auto;
        padding: 44px 28px;
        border-radius: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 38px;
    }

    .about-final-cta-content {
        max-width: 100%;
    }

    .about-final-cta-content h2 {
        margin-bottom: 22px;
        font-size: 34px;
        line-height: 1.15;
    }

    .about-final-cta-content p {
        font-size: 15.5px;
        line-height: 1.7;
    }

    .about-final-cta-actions {
        width: 100%;
        margin-top: 34px;
        flex-direction: column;
        gap: 14px;
    }

    .about-final-cta-button {
        width: 100%;
        min-width: 0;
        min-height: 56px;
        padding: 0 24px;
        font-size: 15.5px;
    }

    .about-final-cta-mark {
        position: absolute;
        right: -42px;
        bottom: -48px;
        width: 160px;
        height: 160px;
        flex-basis: auto;
        opacity: 0.45;
    }

    .about-final-cta-mark-inner {
        width: 116px;
        height: 116px;
    }

    .about-final-cta-mark-inner svg {
        width: 52px;
        height: 52px;
    }

    /* Footer */
    .site-footer {
        padding: 46px 0 28px;
    }

    .footer-container {
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-top {
        flex-direction: column;
        gap: 26px;
    }

    .footer-description {
        max-width: 100%;
        text-align: left;
        font-size: 13px;
    }

    .footer-divider {
        margin: 42px 0 38px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-title-line {
        margin: 18px 0 22px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-social {
        margin-top: 28px;
    }

    .footer-bottom {
        margin-top: 44px;
        padding-top: 24px;
    }

    .footer-top {
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-logo-img {
        height: 86px;
        max-height: 100px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-description {
        text-align: center;
    }

    .footer-main {
        text-align: center;
    }

    .footer-column {
        align-items: center;
    }

    .footer-title-line {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-contact-list {
        align-items: center;
    }

    .footer-contact-list li {
        justify-content: center;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-social {
        display: flex;
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .header-container {
        min-height: 78px;
        height: auto;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .header-logo-img {
        height: 62px;
        max-height: 72px;
    }
}

@media (max-width: 680px) {

    /* Quality Section */
    .about-quality-section {
        padding: 58px 0 64px;
    }

    .about-quality-container {
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
    }

    .about-quality-heading {
        margin-bottom: 40px;
    }

    .about-quality-heading span {
        margin-bottom: 16px;
        font-size: 11px;
        letter-spacing: 0.26em;
    }

    .about-quality-heading h2 {
        font-size: 34px;
        line-height: 1.14;
    }

    .about-quality-heading div {
        width: 70px;
        height: 4px;
        margin-top: 22px;
    }

    .about-quality-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-quality-card {
        min-height: auto;
        padding: 30px 24px;
        border-radius: 16px;
    }

    .about-quality-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 26px;
    }

    .about-quality-icon svg {
        width: 24px;
        height: 24px;
    }

    .about-quality-card h3 {
        margin-bottom: 14px;
        font-size: 22px;
    }

    .about-quality-card p {
        font-size: 15px;
        line-height: 1.7;
    }

    /* Region Section */
    .about-region-section {
        padding: 58px 0 64px;
    }

    .about-region-container {
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
        gap: 42px;
    }

    .about-region-kicker {
        margin-bottom: 14px;
        font-size: 11px;
        letter-spacing: 0.18em;
    }

    .about-region-content h2 {
        margin-bottom: 22px;
        font-size: 34px;
        line-height: 1.14;
    }

    .about-region-text {
        margin-bottom: 34px;
        font-size: 15.5px;
        line-height: 1.7;
    }

    .about-region-list {
        gap: 14px;
    }

    .about-region-item {
        min-height: auto;
        padding: 18px;
        grid-template-columns: 44px 1fr;
        gap: 16px;
    }

    .about-region-icon {
        width: 42px;
        height: 42px;
    }

    .about-region-icon svg {
        width: 20px;
        height: 20px;
    }

    .about-region-item h3 {
        font-size: 18px;
    }

    .about-region-item p {
        font-size: 13.5px;
    }

    .about-region-map-card {
        padding: 14px;
        border-radius: 16px;
    }

    .about-region-leaflet-map {
        height: 330px;
    }

    .about-region-map-badge {
        position: static;
        width: auto;
        border-radius: 0 0 14px 14px;
    }
}

@media (max-width: 620px) {

    /* Phylosophy Section */
    .about-philosophy-section {
        padding: 58px 0 64px;
    }

    .about-philosophy-container {
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
        gap: 38px;
    }

    .about-philosophy-image {
        border-radius: 15px;
    }

    .about-philosophy-image img {
        height: 340px;
    }

    .about-philosophy-kicker {
        margin-bottom: 18px;
        font-size: 11px;
        letter-spacing: 0.17em;
    }

    .about-philosophy-content h2 {
        margin-bottom: 26px;
        font-size: 33px;
        line-height: 1.16;
    }

    .about-philosophy-content>p {
        margin-bottom: 22px;
        font-size: 15px;
        line-height: 1.7;
    }

    .about-philosophy-quote {
        margin-top: 36px;
        padding: 26px 24px;
        border-radius: 0 12px 12px 0;
    }

    .about-philosophy-quote p {
        margin-bottom: 18px;
        font-size: 15.5px;
        line-height: 1.65;
    }

    .about-philosophy-quote strong {
        font-size: 14.5px;
    }
}

@media (max-width: 560px) {

    /* Hero Section */
    .about-hero {
        min-height: 740px;
    }

    .about-hero-bg,
    .about-hero-overlay {
        height: 100%;
    }

    .about-hero-container {
        min-height: 740px;
    }

    .about-kicker {
        margin-bottom: 24px;
        font-size: 14px;
        letter-spacing: 0.14em;
    }

    .about-kicker span {
        width: 24px;
    }

    .about-hero-content h1 {
        font-size: 40px;
        line-height: 1.04;
    }

    .about-hero-line {
        width: 66px;
        height: 3px;
        margin: 30px 0 28px;
    }

    .about-hero-content p {
        font-size: 16.5px;
        line-height: 1.65;
    }

    .about-hero-button {
        width: 100%;
        min-width: 0;
        height: 58px;
        margin-top: 38px;
        font-size: 14px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-feature {
        grid-template-columns: 32px 1fr;
        padding: 28px 22px;
    }

    .about-feature p {
        max-width: 100%;
    }
}

@media (max-width: 420px) {

    /* Philosophy Section */
    .about-philosophy-image img {
        height: 300px;
    }

    .about-philosophy-content h2 {
        font-size: 30px;
    }

    /* Region Section */
    .about-region-leaflet-map {
        height: 280px;
    }

    .about-region-map-badge {
        padding: 22px;
    }

    .about-region-map-badge h3 {
        font-size: 17px;
    }

    /* Final CTA Section */
    .about-final-cta-box {
        padding: 38px 22px;
        border-radius: 20px;
    }

    .about-final-cta-content h2 {
        font-size: 30px;
    }

    .about-final-cta-button {
        font-size: 14.5px;
    }
}

@media (max-width: 480px) {
    .header-logo-img {
        height: 54px;
    }

    .footer-logo-img {
        height: 76px;
    }
}
