:root {
    --brand: #1550df;
    --brand-soft: #4d88dd;
    --text: #16314a;
    --text-soft: #49627d;
    --surface: #ffffff;
    --surface-strong: #ffffff;
    --line: rgba(21, 80, 223, 0.14);
    --shadow: 0 18px 50px rgba(13, 51, 143, 0.16);
    --header-height: 112px;
    --radius: 22px;
    --header-button-width: 228px;
    --mobile-hero-button-width: 190px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #ffffff;
}

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

a {
    text-decoration: none;
}

button {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}

.header-inner {
    min-height: var(--header-height);
    max-width: 1440px;
    margin: 0 auto;
    padding: 12px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    margin-left: auto;
    min-width: 0;
}

.desktop-nav-primary {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    width: 100%;
    flex-wrap: wrap;
}

.brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

.desktop-nav-primary .nav-button {
    white-space: nowrap;
}

.nav-button,
.mobile-link {
    border: 1px solid rgba(21, 80, 223, 0.18);
    background: #ffffff;
    color: var(--brand);
    padding: 7px 18px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-button {
    width: var(--header-button-width);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.nav-button:hover,
.mobile-link:hover,
.dropdown-menu a:hover,
.mobile-submenu a:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(21, 80, 223, 0.14);
}

.nav-button--primary,
.mobile-link--primary {
    background: var(--brand);
    color: #ffffff;
}

.mobile-menu-primary {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-primary .mobile-link {
    margin-top: 0;
}

.mobile-hero-actions {
    display: none;
}

.mobile-hero-button {
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(8px);
    white-space: nowrap;
    width: var(--mobile-hero-button-width);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-hero-button--primary {
    background: var(--brand);
    color: #ffffff;
    border-color: rgba(21, 80, 223, 0.9);
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.dropdown-arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
}

.nav-dropdown.open .dropdown-arrow,
.mobile-accordion.open .dropdown-arrow {
    transform: rotate(225deg) translateY(-1px);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: auto;
    min-width: 220px;
    display: none;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
}

.nav-dropdown.open .dropdown-menu {
    display: flex;
}

.dropdown-menu a,
.mobile-submenu a {
    color: var(--text);
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 700;
}

.mobile-menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(21, 80, 223, 0.18);
    background: #ffffff;
    color: var(--brand);
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(21, 80, 223, 0.12);
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--brand);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    padding: 0 18px 18px;
    background: #ffffff;
    border-top: 1px solid rgba(21, 80, 223, 0.08);
}

.mobile-menu.is-open {
    display: block;
}

.mobile-link,
.mobile-link--accordion {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    cursor: pointer;
}

.mobile-link--accordion {
    background: #ffffff;
}

.mobile-submenu {
    display: none;
    padding: 10px 6px 0;
}

.mobile-accordion.open .mobile-submenu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.page-main {
    margin-top: var(--header-height);
}

.carousel-section {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    background: #dfeaff;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--header-height));
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.carousel-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.carousel-slide-image,
.carousel-slide-overlay {
    position: absolute;
    inset: 0;
}

.carousel-slide-image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel-slide-image--fallback {
    background:
        radial-gradient(circle at top right, rgba(21, 80, 223, 0.42), transparent 30%),
        radial-gradient(circle at left center, rgba(77, 136, 221, 0.34), transparent 28%),
        linear-gradient(135deg, #dfeaff 0%, #edf4ff 50%, #ffffff 100%);
}

.carousel-slide-overlay {
    background: linear-gradient(90deg, rgba(7, 22, 49, 0.82) 0%, rgba(7, 22, 49, 0.56) 33%, rgba(7, 22, 49, 0.14) 66%, rgba(7, 22, 49, 0.08) 100%);
}

.carousel-slide-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    min-height: calc(100vh - var(--header-height));
    padding: 70px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff;
}

.carousel-slide-content h1 {
    font-size: clamp(34px, 5vw, 68px);
    line-height: 1.02;
    margin-bottom: 18px;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.carousel-slide-content p {
    max-width: 640px;
    font-size: clamp(17px, 2.1vw, 23px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.carousel-slide-controls {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.carousel-arrow {
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    backdrop-filter: blur(8px);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.32);
    transform: translateY(-1px);
}

.carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.is-active {
    background: #ffffff;
    transform: scale(1.15);
}

.presence-section {
    padding: 72px 0 88px;
    background:
        radial-gradient(circle at top center, rgba(21, 80, 223, 0.08), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.presence-wrap {
    width: min(80%, 1280px);
    margin: 0 auto;
}

.presence-title {
    text-align: center;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.15;
    color: var(--brand);
    margin-bottom: 34px;
}

.presence-highlight {
    background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
    border: 1px solid rgba(21, 80, 223, 0.12);
    border-radius: 30px;
    box-shadow: var(--shadow);
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.presence-card {
    min-height: 150px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 20px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(21, 80, 223, 0.1);
    box-shadow: 0 12px 34px rgba(13, 51, 143, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    text-align: left;
    cursor: pointer;
}

.presence-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(13, 51, 143, 0.14);
    border-color: rgba(21, 80, 223, 0.24);
}

.presence-card.is-active {
    border-color: rgba(21, 80, 223, 0.26);
    box-shadow: 0 18px 42px rgba(13, 51, 143, 0.16);
    transform: translateY(-2px);
}

.presence-card-image {
    width: 88px;
    height: 88px;
    flex: 0 0 88px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(21, 80, 223, 0.12) 0%, rgba(77, 136, 221, 0.24) 100%);
    color: var(--brand);
}

.presence-card-image svg {
    width: 52px;
    height: 52px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.presence-card-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.presence-card-text strong {
    font-size: 22px;
    line-height: 1.2;
    color: var(--brand);
}

.presence-card-text small {
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-soft);
}

.presence-panels {
    margin-top: 26px;
}

.presence-panel {
    display: none;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    align-items: center;
    gap: 28px;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
    border: 1px solid rgba(21, 80, 223, 0.12);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.presence-panel.is-active {
    display: grid;
}

.presence-panel-text {
    text-align: left;
}

.presence-panel-text h3 {
    font-size: clamp(28px, 2.8vw, 40px);
    line-height: 1.15;
    color: var(--brand);
    margin-bottom: 16px;
}

.presence-panel-text p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-soft);
}

.presence-panel-text p + p {
    margin-top: 12px;
}

.presence-panel-media {
    display: flex;
    justify-content: flex-end;
}

.presence-panel-illustration {
    width: min(100%, 420px);
    aspect-ratio: 1 / 1;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(21, 80, 223, 0.12) 0%, rgba(77, 136, 221, 0.26) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
}

.presence-panel-illustration svg {
    width: 68%;
    height: 68%;
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.partnerships-section {
    padding: 10px 0 96px;
    background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
}

.partnerships-wrap {
    width: min(90%, 1360px);
    margin: 0 auto;
}

.partnerships-title {
    text-align: center;
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.18;
    color: var(--brand);
    margin-bottom: 36px;
}

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

.partnership-card {
    background: #ffffff;
    border: 1px solid rgba(21, 80, 223, 0.12);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 320px;
}

.partnership-card-image {
    width: 100%;
    min-height: 154px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(21, 80, 223, 0.12) 0%, rgba(77, 136, 221, 0.28) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
}

.partnership-card-image svg {
    width: min(110px, 62%);
    height: min(110px, 62%);
    fill: none;
    stroke: currentColor;
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.partnership-card-text h3 {
    font-size: 24px;
    line-height: 1.2;
    color: var(--brand);
    margin-bottom: 10px;
}

.partnership-card-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-soft);
}

.partnerships-cta-wrap {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.partnerships-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 16px 32px;
    border-radius: 999px;
    background: var(--brand);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 18px 42px rgba(13, 51, 143, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partnerships-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(13, 51, 143, 0.24);
}

@media (max-width: 1100px) {
    :root {
        --header-height: 80px;
    }

    .desktop-nav,
    .desktop-nav-primary,
    .header-actions {
        display: none;
    }

    .mobile-menu-primary {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .header-inner {
        gap: 12px;
    }

    .carousel-section {
        position: relative;
    }

    .mobile-hero-actions {
        position: absolute;
        top: 16px;
        right: 16px;
        z-index: 6;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
        width: calc(100% - 32px);
        pointer-events: none;
    }

    .mobile-hero-actions .mobile-hero-button {
        pointer-events: auto;
        width: var(--mobile-hero-button-width);
        max-width: var(--mobile-hero-button-width);
    }

    .carousel-slide-content {
        max-width: 100%;
        padding: 170px 34px 56px;
    }

    .presence-wrap {
        width: min(88%, 1280px);
    }

    .presence-highlight {
        grid-template-columns: 1fr;
    }

    .presence-panel {
        grid-template-columns: 1fr;
    }

    .presence-panel-media {
        justify-content: center;
        order: 2;
    }

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

@media (max-width: 720px) {
    :root {
        --header-height: 83px;
    }

    .header-inner {
        padding: 12px 16px;
        min-height: var(--header-height);
    }

    .brand-logo {
        height: 52px;
    }

    .mobile-menu-toggle {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }

    .mobile-menu-toggle span {
        width: 20px;
    }

    .carousel-section,
    .carousel-track,
    .carousel-slide-content {
        min-height: calc(100vh - var(--header-height));
    }

    .carousel-slide-overlay {
        background: linear-gradient(180deg, rgba(7, 22, 49, 0.74) 0%, rgba(7, 22, 49, 0.56) 38%, rgba(7, 22, 49, 0.34) 100%);
    }

    .mobile-hero-actions {
        top: 12px;
        right: 12px;
        width: calc(100% - 24px);
        gap: 6px;
    }

    .mobile-hero-actions .mobile-hero-button {
        width: var(--mobile-hero-button-width);
        max-width: var(--mobile-hero-button-width);
        padding: 7px 12px;
        font-size: 11px;
    }

    .carousel-slide-content {
        padding: 156px 22px 78px;
        justify-content: flex-end;
    }

    .carousel-slide-content h1 {
        font-size: clamp(28px, 9vw, 42px);
        margin-bottom: 14px;
    }

    .carousel-slide-content p {
        font-size: 16px;
        line-height: 1.55;
    }

    .carousel-slide-controls {
        margin-top: 20px;
        gap: 10px;
    }

    .carousel-arrow {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .carousel-dots {
        bottom: 20px;
        gap: 8px;
    }

    .presence-section {
        padding: 52px 0 64px;
    }

    .presence-wrap {
        width: calc(100% - 32px);
    }

    .presence-title {
        margin-bottom: 24px;
        font-size: clamp(24px, 7vw, 34px);
    }

    .presence-highlight {
        padding: 16px;
        gap: 14px;
        border-radius: 24px;
    }

    .presence-card {
        min-height: auto;
        padding: 16px;
        gap: 14px;
        border-radius: 20px;
    }

    .presence-card-image {
        width: 70px;
        height: 70px;
        flex-basis: 70px;
        border-radius: 18px;
    }

    .presence-card-image svg {
        width: 42px;
        height: 42px;
    }

    .presence-card-text strong {
        font-size: 19px;
    }

    .presence-card-text small {
        font-size: 14px;
    }

    .presence-panels {
        margin-top: 18px;
    }

    .presence-panel {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px;
        border-radius: 24px;
    }

    .presence-panel-text h3 {
        font-size: clamp(24px, 6vw, 30px);
        margin-bottom: 12px;
    }

    .presence-panel-text p {
        font-size: 15px;
        line-height: 1.65;
    }

    .presence-panel-media {
        justify-content: center;
    }

    .presence-panel-illustration {
        width: min(100%, 260px);
        border-radius: 22px;
    }

    .partnerships-section {
        padding: 0 0 72px;
    }

    .partnerships-wrap {
        width: calc(100% - 32px);
    }

    .partnerships-title {
        font-size: clamp(24px, 7vw, 34px);
        margin-bottom: 26px;
    }

    .partnerships-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .partnership-card {
        min-height: auto;
        padding: 18px;
        border-radius: 22px;
    }

    .partnership-card-image {
        min-height: 132px;
        border-radius: 20px;
    }

    .partnership-card-text h3 {
        font-size: 21px;
    }

    .partnership-card-text p {
        font-size: 15px;
        line-height: 1.65;
    }

    .partnerships-cta {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
    }
}


.about-section {
    padding: 0 0 104px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.about-wrap {
    width: min(90%, 1360px);
    margin: 0 auto;
}

.about-title {
    text-align: center;
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.18;
    color: var(--brand);
    margin-bottom: 32px;
}

.about-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 28px;
    align-items: center;
    padding: 32px;
    border-radius: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
    border: 1px solid rgba(21, 80, 223, 0.12);
    box-shadow: var(--shadow);
}

.about-card-text {
    text-align: left;
}

.about-card-text h3 {
    font-size: clamp(28px, 2.8vw, 40px);
    line-height: 1.15;
    color: var(--brand);
    margin-bottom: 16px;
}

.about-card-text p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-soft);
}

.about-card-text p + p {
    margin-top: 12px;
}

.about-card-media {
    display: flex;
    justify-content: flex-end;
}

.about-card-illustration {
    width: min(100%, 430px);
    aspect-ratio: 1 / 1;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(21, 80, 223, 0.12) 0%, rgba(77, 136, 221, 0.26) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
}

.about-card-illustration svg {
    width: 70%;
    height: 70%;
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}



.about-community {
    margin-top: 34px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 28px;
    align-items: start;
}

.about-community-title {
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.18;
    color: var(--brand);
    margin-bottom: 16px;
}

.about-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(21, 80, 223, 0.14);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, #dfeaff 0%, #f5f9ff 100%);
}

.about-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.about-community-comments {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.associate-comment {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
    border: 1px solid rgba(21, 80, 223, 0.12);
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(13, 51, 143, 0.08);
}

.associate-comment-avatar {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(21, 80, 223, 0.12);
}

.associate-comment-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.associate-comment-body strong {
    font-size: 18px;
    line-height: 1.2;
    color: var(--brand);
}

.associate-comment-body span {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-soft);
}

.associate-comment-body p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-soft);
}

@media (max-width: 1100px) {
    .about-card {
        grid-template-columns: 1fr;
    }

    .about-card-media {
        justify-content: center;
    }
}

@media (max-width: 720px) {
    .about-section {
        padding: 0 0 72px;
    }

    .about-wrap {
        width: calc(100% - 32px);
    }

    .about-title {
        font-size: clamp(24px, 7vw, 34px);
        margin-bottom: 24px;
    }

    .about-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px;
        border-radius: 24px;
    }

    .about-card-text h3 {
        font-size: clamp(24px, 6vw, 30px);
        margin-bottom: 12px;
    }

    .about-card-text p {
        font-size: 15px;
        line-height: 1.65;
    }

    .about-card-media {
        justify-content: center;
    }

    .about-card-illustration {
        width: min(100%, 260px);
        border-radius: 22px;
    }
}


@media (max-width: 1100px) {
    .about-community {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .about-community {
        margin-top: 24px;
        gap: 18px;
    }

    .about-community-title {
        font-size: clamp(22px, 6vw, 28px);
        margin-bottom: 12px;
    }

    .about-video-frame {
        border-radius: 22px;
    }

    .associate-comment {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 12px;
        padding: 16px;
        border-radius: 20px;
    }

    .associate-comment-avatar {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }

    .associate-comment-body strong {
        font-size: 16px;
    }

    .associate-comment-body p {
        font-size: 14px;
        line-height: 1.6;
    }
}


.partners-showcase-section {
    padding: 0 0 96px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.partners-showcase-wrap {
    width: min(90%, 1440px);
    margin: 0 auto;
}

.partners-showcase-title {
    text-align: center;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.15;
    color: var(--brand);
    margin-bottom: 34px;
}

.partners-showcase-rows {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.partners-showcase-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.partners-showcase-item {
    width: min(17%, 190px);
    min-width: 150px;
    min-height: 108px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(21, 80, 223, 0.12);
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(13, 51, 143, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-showcase-item img {
    width: 100%;
    max-width: 150px;
    max-height: 72px;
    object-fit: contain;
    filter: saturate(1.02);
}

.partners-showcase-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 72px;
    padding: 12px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(21, 80, 223, 0.10) 0%, rgba(77, 136, 221, 0.18) 100%);
    color: var(--brand);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

@media (max-width: 1100px) {
    .partners-showcase-wrap {
        width: min(92%, 1440px);
    }

    .partners-showcase-item {
        width: min(30%, 190px);
    }
}

@media (max-width: 720px) {
    .partners-showcase-section {
        padding: 0 0 72px;
    }

    .partners-showcase-wrap {
        width: calc(100% - 32px);
    }

    .partners-showcase-title {
        font-size: clamp(24px, 7vw, 34px);
        margin-bottom: 24px;
    }

    .partners-showcase-row {
        gap: 14px;
    }

    .partners-showcase-item {
        width: calc(50% - 7px);
        min-width: 0;
        min-height: 92px;
        padding: 14px;
        border-radius: 20px;
    }

    .partners-showcase-item img {
        max-width: 120px;
        max-height: 54px;
    }

    .partners-showcase-placeholder {
        min-height: 54px;
        font-size: 14px;
        border-radius: 16px;
    }
}


.site-footer {
    background: #4636ae;
    color: #ffffff;
    padding: 52px 0 28px;
}

.site-footer-inner {
    width: min(90%, 1440px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.site-footer-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.site-footer-logo {
    height: 66px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.site-footer-links-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.site-footer-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.site-footer-social a {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.site-footer-social a:hover,
.site-footer-nav a:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}

.site-footer-social svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 30px;
}

.site-footer-nav a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}

.site-footer-copy {
    margin-top: 52px;
    font-size: 17px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.96);
}

@media (max-width: 720px) {
    .site-footer {
        padding: 40px 0 24px;
    }

    .site-footer-inner {
        width: calc(100% - 32px);
    }

    .site-footer-logo {
        height: 52px;
    }

    .site-footer-links-wrap {
        gap: 18px;
    }

    .site-footer-social {
        gap: 12px;
    }

    .site-footer-social a {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .site-footer-social svg {
        width: 24px;
        height: 24px;
    }

    .site-footer-nav {
        gap: 14px 18px;
    }

    .site-footer-nav a {
        font-size: 16px;
    }

    .site-footer-copy {
        margin-top: 34px;
        font-size: 15px;
    }
}
